How to average first 7 values of all the column and put into new row then next 7 untill the end of data

2 views (last 30 days)
Hi,
I have been looking around the internet how to insert the empty row after 7 rows vice versa but failed to find any thing. Attached is the excel. Can anyone help!

Accepted Answer

Voss
Voss on 13 Jul 2022
Does this work for what you want to do?
% read the file, skipping the first 8 lines, and make a table t
% using the variable names on line 9:
t = readtable('Export.6u55jl8n.000000.csv', ...
'NumHeaderLines',8, ...
'PreserveVariableNames',true)
t = 21306×12 table
x y x (pix)[pix] y (pix)[pix] x (mm)[mm] y (mm)[mm] U pix[pix] V pix[pix] U[m/s] V[m/s] Length[m/s] Status __ _ ____________ ____________ __________ __________ __________ __________ ______ ______ ___________ ______ 0 0 -1173.5 -248.5 -218.58 -46.287 0 0 0 0 0 4 1 0 -1157.5 -248.5 -215.6 -46.287 0 0 0 0 0 4 2 0 -1141.5 -248.5 -212.62 -46.287 0 0 0 0 0 4 3 0 -1125.5 -248.5 -209.64 -46.287 0 0 0 0 0 4 4 0 -1109.5 -248.5 -206.66 -46.287 0 0 0 0 0 4 5 0 -1093.5 -248.5 -203.68 -46.287 0 0 0 0 0 4 6 0 -1077.5 -248.5 -200.7 -46.287 0 0 0 0 0 4 7 0 -1061.5 -248.5 -197.72 -46.287 0 0 0 0 0 4 8 0 -1045.5 -248.5 -194.74 -46.287 0 0 0 0 0 4 9 0 -1029.5 -248.5 -191.76 -46.287 0 0 0 0 0 4 10 0 -1013.5 -248.5 -188.78 -46.287 0 0 0 0 0 4 11 0 -997.5 -248.5 -185.8 -46.287 0 0 0 0 0 4 12 0 -981.5 -248.5 -182.82 -46.287 0 0 0 0 0 4 13 0 -965.5 -248.5 -179.84 -46.287 0 0 0 0 0 4 14 0 -949.5 -248.5 -176.86 -46.287 0 0 0 0 0 4 15 0 -933.5 -248.5 -173.88 -46.287 0 0 0 0 0 4
  3 Comments
Voss
Voss on 13 Jul 2022
OK
t = readtable('Export.6u55jl8n.000000.csv', ...
'NumHeaderLines',8, ...
'PreserveVariableNames',true);
% easier to work with a matrix of data:
data = table2array(t);
% in case the total number of rows is not a multiple of 7,
% add rows of NaNs to fill it out:
[N,M] = size(data);
n = mod(N,7);
if n ~= 0
data = [data; NaN(7-n,M)];
N = N+7-n;
end
% reshape data to have size 7 in the third dimension
data = permute(reshape(data.',[M 7 N/7]),[3 1 2]);
size(data)
ans = 1×3
3044 12 7
% calculate the mean in the third dimension
% and append it to the end of data
% (using 'omitnan' to prevent NaNs from affecting the mean)
data(:,:,end+1) = mean(data,3,'omitnan');
% reshape back to 2D with M columns
data = reshape(permute(data,[3 1 2]),[],M)
data = 24352×12
1.0e+03 * 0 0 -1.1735 -0.2485 -0.2186 -0.0463 0 0 0 0 0 0.0040 0.0010 0 -1.1575 -0.2485 -0.2156 -0.0463 0 0 0 0 0 0.0040 0.0020 0 -1.1415 -0.2485 -0.2126 -0.0463 0 0 0 0 0 0.0040 0.0030 0 -1.1255 -0.2485 -0.2096 -0.0463 0 0 0 0 0 0.0040 0.0040 0 -1.1095 -0.2485 -0.2067 -0.0463 0 0 0 0 0 0.0040 0.0050 0 -1.0935 -0.2485 -0.2037 -0.0463 0 0 0 0 0 0.0040 0.0060 0 -1.0775 -0.2485 -0.2007 -0.0463 0 0 0 0 0 0.0040 0.0030 0 -1.1255 -0.2485 -0.2096 -0.0463 0 0 0 0 0 0.0040 0.0070 0 -1.0615 -0.2485 -0.1977 -0.0463 0 0 0 0 0 0.0040 0.0080 0 -1.0455 -0.2485 -0.1947 -0.0463 0 0 0 0 0 0.0040
% the first few new "average" rows:
data([8 16 24 32],:)
ans = 4×12
1.0e+03 * 0.0030 0 -1.1255 -0.2485 -0.2096 -0.0463 0 0 0 0 0 0.0040 0.0100 0 -1.0135 -0.2485 -0.1888 -0.0463 0 0 0 0 0 0.0040 0.0170 0 -0.9015 -0.2485 -0.1679 -0.0463 0 0 0 0 0 0.0040 0.0240 0 -0.7895 -0.2485 -0.1471 -0.0463 0 0 0 0 0 0.0040
Voss
Voss on 13 Jul 2022
You can write the new data to file, with the same header, as follows:
% get the header separately:
C = readcell('Export.6u55jl8n.000000.csv');
header = C(1:9,:);
% with some conditioning to handle missing cells for writecell later on:
header(cellfun(@(x)all(ismissing(x)),header)) = {[]}
header = 9×12 cell array
{'>>*HEADER*<<' } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double} {0×0 double} {0×0 double } {0×0 double} {'FileID:DSExport.CSV' } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double} {0×0 double} {0×0 double } {0×0 double} {'Version:2' } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double} {0×0 double} {0×0 double } {0×0 double} {'GridSize:{Width=159' } {'Height=134}'} {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double} {0×0 double} {0×0 double } {0×0 double} {'Originator:exp4.Project 2021-12-02 13:18:27.Run 13:32:04.Adaptive PIV'} {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double} {0×0 double} {0×0 double } {0×0 double} {'CameraInfo:HiSenseZyla.0' } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double} {0×0 double} {0×0 double } {0×0 double} {'TimeStamp:#2' } {'0.067 s' } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double} {0×0 double} {0×0 double } {0×0 double} {'>>*DATA*<<' } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double } {0×0 double} {0×0 double} {0×0 double } {0×0 double} {'x' } {'y' } {'x (pix)[pix]'} {'y (pix)[pix]'} {'x (mm)[mm]'} {'y (mm)[mm]'} {'U pix[pix]'} {'V pix[pix]'} {'U[m/s]' } {'V[m/s]' } {'Length[m/s]'} {'Status' }
% this time, don't have to do readtable, just get the data from the
% cell array we already have:
data = cell2mat(C(10:end,:));
% ---- begin same averaging process as before ----
% in case the total number of rows is not a multiple of 7,
% add rows of NaNs to fill it out:
[N,M] = size(data);
n = mod(N,7);
if n ~= 0
data = [data; NaN(7-n,M)];
N = N+7-n;
end
% reshape data to have size 7 in the third dimension
data = permute(reshape(data.',[M 7 N/7]),[3 1 2]);
% calculate the mean in the third dimension
% and append it to the end of data
% (using 'omitnan' to prevent NaNs from affecting the mean)
data(:,:,end+1) = mean(data,3,'omitnan');
% reshape back to 2D with M columns
data = reshape(permute(data,[3 1 2]),[],M);
% ---- end same averaging process as before ----
% now combine the header with the new data and write to file:
writecell([header; num2cell(data)],'new_Export.csv');
% check the contents (note the average rows are there):
type new_Export.csv
>>*HEADER*<<,,,,,,,,,,, FileID:DSExport.CSV,,,,,,,,,,, Version:2,,,,,,,,,,, GridSize:{Width=159,Height=134},,,,,,,,,, Originator:exp4.Project 2021-12-02 13:18:27.Run 13:32:04.Adaptive PIV,,,,,,,,,,, CameraInfo:HiSenseZyla.0,,,,,,,,,,, TimeStamp:#2,0.067 s,,,,,,,,,, >>*DATA*<<,,,,,,,,,,, x,y,x (pix)[pix],y (pix)[pix],x (mm)[mm],y (mm)[mm],U pix[pix],V pix[pix],U[m/s],V[m/s],Length[m/s],Status 0,0,-1173.5,-248.5,-218.5810953,-46.2866649,0,0,0,0,0,4 1,0,-1157.5,-248.5,-215.6008631,-46.2866649,0,0,0,0,0,4 2,0,-1141.5,-248.5,-212.6206309,-46.2866649,0,0,0,0,0,4 3,0,-1125.5,-248.5,-209.6404135,-46.2866649,0,0,0,0,0,4 4,0,-1109.5,-248.5,-206.6601813,-46.2866649,0,0,0,0,0,4 5,0,-1093.5,-248.5,-203.679949,-46.2866649,0,0,0,0,0,4 6,0,-1077.5,-248.5,-200.6997317,-46.2866649,0,0,0,0,0,4 3,0,-1125.5,-248.5,-209.640409257143,-46.2866649,0,0,0,0,0,4 7,0,-1061.5,-248.5,-197.7194995,-46.2866649,0,0,0,0,0,4 8,0,-1045.5,-248.5,-194.7392672,-46.2866649,0,0,0,0,0,4 9,0,-1029.5,-248.5,-191.759035,-46.2866649,0,0,0,0,0,4 10,0,-1013.5,-248.5,-188.7788177,-46.2866649,0,0,0,0,0,4 11,0,-997.5,-248.5,-185.7985854,-46.2866649,0,0,0,0,0,4 12,0,-981.5,-248.5,-182.8183532,-46.2866649,0,0,0,0,0,4 13,0,-965.5,-248.5,-179.8381358,-46.2866649,0,0,0,0,0,4 10,0,-1013.5,-248.5,-188.7788134,-46.2866649,0,0,0,0,0,4 14,0,-949.5,-248.5,-176.8579036,-46.2866649,0,0,0,0,0,4 15,0,-933.5,-248.5,-173.8776714,-46.2866649,0,0,0,0,0,4 16,0,-917.5,-248.5,-170.8974391,-46.2866649,0,0,0,0,0,4 17,0,-901.5,-248.5,-167.9172218,-46.2866649,0,0,0,0,0,4 18,0,-885.5,-248.5,-164.9369895,-46.2866649,0,0,0,0,0,4 19,0,-869.5,-248.5,-161.9567573,-46.2866649,0,0,0,0,0,4 20,0,-853.5,-248.5,-158.97654,-46.2866649,0,0,0,0,0,4 17,0,-901.5,-248.5,-167.917217528571,-46.2866649,0,0,0,0,0,4 21,0,-837.5,-248.5,-155.9963077,-46.2866649,0,0,0,0,0,4 22,0,-821.5,-248.5,-153.0160755,-46.2866649,0,0,0,0,0,4 23,0,-805.5,-248.5,-150.0358433,-46.2866649,0,0,0,0,0,4 24,0,-789.5,-248.5,-147.0556259,-46.2866649,0,0,0,0,0,4 25,0,-773.5,-248.5,-144.0753937,-46.2866649,0,0,0,0,0,4 26,0,-757.5,-248.5,-141.0951614,-46.2866649,0,0,0,0,0,4 27,0,-741.5,-248.5,-138.1149441,-46.2866649,0,0,0,0,0,4 24,0,-789.5,-248.5,-147.055621657143,-46.2866649,0,0,0,0,0,4 28,0,-725.5,-248.5,-135.1347119,-46.2866649,0,0,0,0,0,4 29,0,-709.5,-248.5,-132.1544796,-46.2866649,0,0,0,0,0,4 30,0,-693.5,-248.5,-129.1742623,-46.2866649,0,0,0,0,0,4 31,0,-677.5,-248.5,-126.19403,-46.2866649,0,0,0,0,0,4 32,0,-661.5,-248.5,-123.2137978,-46.2866649,0,0,0,0,0,4 33,0,-645.5,-248.5,-120.233573,-46.2866649,0,0,0,0,0,4 34,0,-629.5,-248.5,-117.2533408,-46.2866649,0,0,0,0,0,4 31,0,-677.5,-248.5,-126.194027914286,-46.2866649,0,0,0,0,0,4 35,0,-613.5,-248.5,-114.273116,-46.2866649,0,0,0,0,0,4 36,0,-597.5,-248.5,-111.2928838,-46.2866649,0,0,0,0,0,4 37,0,-581.5,-248.5,-108.312659,-46.2866649,0,0,0,0,0,4 38,0,-565.5,-248.5,-105.3324342,-46.2866649,0,0,0,0,0,4 39,0,-549.5,-248.5,-102.3522019,-46.2866649,0,0,0,0,0,4 40,0,-533.5,-248.5,-99.37197715,-46.2866649,0,0,0,0,0,4 41,0,-517.5,-248.5,-96.39174491,-46.2866649,0,0,0,0,0,4 38,0,-565.5,-248.5,-105.332430994286,-46.2866649,0,0,0,0,0,4 42,0,-501.5,-248.5,-93.41152012,-46.2866649,0,0,0,0,0,4 43,0,-485.5,-248.5,-90.43129534,-46.2866649,0,0,0,0,0,4 44,0,-469.5,-248.5,-87.4510631,-46.2866649,0,0,0,0,0,4 45,0,-453.5,-248.5,-84.47083831,-46.2866649,0,0,0,0,0,4 46,0,-437.5,-248.5,-81.49060607,-46.2866649,0,0,0,0,0,4 47,0,-421.5,-248.5,-78.51038128,-46.2866649,0,0,0,0,0,4 48,0,-405.5,-248.5,-75.53014904,-46.2866649,0,0,0,0,0,4 45,0,-453.5,-248.5,-84.47083618,-46.2866649,0,0,0,0,0,4 49,0,-389.5,-248.5,-72.54992425,-46.2866649,0,0,0,0,0,4 50,0,-373.5,-248.5,-69.56969947,-46.2866649,0,0,0,0,0,4 51,0,-357.5,-248.5,-66.58946723,-46.2866649,0,0,0,0,0,4 52,0,-341.5,-248.5,-63.60924244,-46.2866649,0,0,0,0,0,4 53,0,-325.5,-248.5,-60.62901393,-46.2866649,0,0,0,0,0,4 54,0,-309.5,-248.5,-57.64878541,-46.2866649,0,0,0,0,0,4 55,0,-293.5,-248.5,-54.6685569,-46.2866649,0,0,0,0,0,4 52,0,-341.5,-248.5,-63.6092413757143,-46.2866649,0,0,0,0,0,4 56,0,-277.5,-248.5,-51.68832839,-46.2866649,0,0,0,0,0,4 57,0,-261.5,-248.5,-48.70809987,-46.2866649,0,0,0,0,0,4 58,0,-245.5,-248.5,-45.72787136,-46.2866649,0,0,0,0,0,4 59,0,-229.5,-248.5,-42.74764284,-46.2866649,0,0,0,0,0,4 60,0,-213.5,-248.5,-39.76741806,-46.2866649,0,0,0,0,0,4 61,0,-197.5,-248.5,-36.78718954,-46.2866649,0,0,0,0,0,4 62,0,-181.5,-248.5,-33.80696103,-46.2866649,0,0,0,0,0,4 59,0,-229.5,-248.5,-42.7476444414286,-46.2866649,0,0,0,0,0,4 63,0,-165.5,-248.5,-30.82673252,-46.2866649,0,0,0,0,0,4 64,0,-149.5,-248.5,-27.846504,-46.2866649,0,0,0,0,0,4 65,0,-133.5,-248.5,-24.86627735,-46.2866649,0,0,0,0,0,4 66,0,-117.5,-248.5,-21.88604884,-46.2866649,0,0,0,0,0,4 67,0,-101.5,-248.5,-18.90582033,-46.2866649,0,0,0,0,0,4 68,0,-85.5,-248.5,-15.92559367,-46.2866649,0,0,0,0,0,4 69,0,-69.5,-248.5,-12.94536516,-46.2866649,0,0,0,0,0,4 66,0,-117.5,-248.5,-21.8860488385714,-46.2866649,0,0,0,0,0,4 70,0,-53.5,-248.5,-9.965137579,-46.2866649,0,0,0,0,0,4 71,0,-37.5,-248.5,-6.984909065,-46.2866649,0,0,0,0,0,4 72,0,-21.5,-248.5,-4.004681483,-46.2866649,0,0,0,0,0,4 73,0,-5.5,-248.5,-1.024453319,-46.2866649,0,0,0,0,0,4 74,0,10.5,-248.5,1.955774613,-46.2866649,0,0,0,0,0,4 75,0,26.5,-248.5,4.936002661,-46.2866649,0,0,0,0,0,4 76,0,42.5,-248.5,7.916230708,-46.2866649,0,0,0,0,0,4 73,0,-5.5,-248.5,-1.024453352,-46.2866649,0,0,0,0,0,4 77,0,58.5,-248.5,10.89645829,-46.2866649,0,0,0,0,0,4 78,0,74.5,-248.5,13.8766868,-46.2866649,0,0,0,0,0,4 79,0,90.5,-248.5,16.85691439,-46.2866649,0,0,0,0,0,4 80,0,106.5,-248.5,19.8371429,-46.2866649,0,0,0,0,0,4 81,0,122.5,-248.5,22.81736955,-46.2866649,0,0,0,0,0,4 82,0,138.5,-248.5,25.79759806,-46.2866649,0,0,0,0,0,4 83,0,154.5,-248.5,28.77782658,-46.2866649,0,0,0,0,0,4 80,0,106.5,-248.5,19.8371423671429,-46.2866649,0,0,0,0,0,4 84,0,170.5,-248.5,31.75805509,-46.2866649,0,0,0,0,0,4 85,0,186.5,-248.5,34.7382836,-46.2866649,0,0,0,0,0,4 86,0,202.5,-248.5,37.71850839,-46.2866649,0,0,0,0,0,4 87,0,218.5,-248.5,40.69873691,-46.2866649,0,0,0,0,0,4 88,0,234.5,-248.5,43.67896542,-46.2866649,0,0,0,0,0,4 89,0,250.5,-248.5,46.65919393,-46.2866649,0,0,0,0,0,4 90,0,266.5,-248.5,49.63942245,-46.2866649,0,0,0,0,0,4 87,0,218.5,-248.5,40.69873797,-46.2866649,0,0,0,0,0,4 91,0,282.5,-248.5,52.61965096,-46.2866649,0,0,0,0,0,4 92,0,298.5,-248.5,55.59987947,-46.2866649,0,0,0,0,0,4 93,0,314.5,-248.5,58.58010426,-46.2866649,0,0,0,0,0,4 94,0,330.5,-248.5,61.56033278,-46.2866649,0,0,0,0,0,4 95,0,346.5,-248.5,64.54056501,-46.2866649,0,0,0,0,0,4 96,0,362.5,-248.5,67.5207898,-46.2866649,0,0,0,0,0,4 97,0,378.5,-248.5,70.50101459,-46.2866649,0,0,0,0,0,4 94,0,330.5,-248.5,61.5603338385714,-46.2866649,0,0,0,0,0,4 98,0,394.5,-248.5,73.48124683,-46.2866649,0,0,0,0,0,4 99,0,410.5,-248.5,76.46147162,-46.2866649,0,0,0,0,0,4 100,0,426.5,-248.5,79.44170386,-46.2866649,0,0,0,0,0,4 101,0,442.5,-248.5,82.42192864,-46.2866649,0,0,0,0,0,4 102,0,458.5,-248.5,85.40215343,-46.2866649,0,0,0,0,0,4 103,0,474.5,-248.5,88.38238567,-46.2866649,0,0,0,0,0,4 104,0,490.5,-248.5,91.36261046,-46.2866649,0,0,0,0,0,4 101,0,442.5,-248.5,82.4219286442857,-46.2866649,0,0,0,0,0,4 105,0,506.5,-248.5,94.3428427,-46.2866649,0,0,0,0,0,4 106,0,522.5,-248.5,97.32306749,-46.2866649,0,0,0,0,0,4 107,0,538.5,-248.5,100.3032997,-46.2866649,0,0,0,0,0,4 108,0,554.5,-248.5,103.2835245,-46.2866649,0,0,0,0,0,4 109,0,570.5,-248.5,106.2637493,-46.2866649,0,0,0,0,0,4 110,0,586.5,-248.5,109.2439815,-46.2866649,0,0,0,0,0,4 111,0,602.5,-248.5,112.2242063,-46.2866649,0,0,0,0,0,4 108,0,554.5,-248.5,103.283524498571,-46.2866649,0,0,0,0,0,4 112,0,618.5,-248.5,115.2044386,-46.2866649,0,0,0,0,0,4 113,0,634.5,-248.5,118.1846634,-46.2866649,0,0,0,0,0,4 114,0,650.5,-248.5,121.1648956,-46.2866649,0,0,0,0,0,4 115,0,666.5,-248.5,124.1451204,-46.2866649,0,0,0,0,0,4 116,0,682.5,-248.5,127.1253526,-46.2866649,0,0,0,0,0,4 117,0,698.5,-248.5,130.10557,-46.2866649,0,0,0,0,0,4 118,0,714.5,-248.5,133.0858022,-46.2866649,0,0,0,0,0,4 115,0,666.5,-248.5,124.1451204,-46.2866649,0,0,0,0,0,4 119,0,730.5,-248.5,136.0660344,-46.2866649,0,0,0,0,0,4 120,0,746.5,-248.5,139.0462667,-46.2866649,0,0,0,0,0,4 121,0,762.5,-248.5,142.026484,-46.2866649,0,0,0,0,0,4 122,0,778.5,-248.5,145.0067163,-46.2866649,0,0,0,0,0,4 123,0,794.5,-248.5,147.9869485,-46.2866649,0,0,0,0,0,4 124,0,810.5,-248.5,150.9671658,-46.2866649,0,0,0,0,0,4 125,0,826.5,-248.5,153.9473981,-46.2866649,0,0,0,0,0,4 122,0,778.5,-248.5,145.006716257143,-46.2866649,0,0,0,0,0,4 126,0,842.5,-248.5,156.9276303,-46.2866649,0,0,0,0,0,4 127,0,858.5,-248.5,159.9078625,-46.2866649,0,0,0,0,0,4 128,0,874.5,-248.5,162.8880799,-46.2866649,0,0,0,0,0,4 129,0,890.5,-248.5,165.8683121,-46.2866649,0,0,0,0,0,4 130,0,906.5,-248.5,168.8485444,-46.2866649,0,0,0,0,0,4 131,0,922.5,-248.5,171.8287617,-46.2866649,0,0,0,0,0,4 132,0,938.5,-248.5,174.8089939,-46.2866649,0,0,0,0,0,4 129,0,890.5,-248.5,165.868312114286,-46.2866649,0,0,0,0,0,4 133,0,954.5,-248.5,177.7892262,-46.2866649,0,0,0,0,0,4 134,0,970.5,-248.5,180.7694584,-46.2866649,0,0,0,0,0,4 135,0,986.5,-248.5,183.7496758,-46.2866649,0,0,0,0,0,4 136,0,1002.5,-248.5,186.729908,-46.2866649,0,0,0,0,0,4 137,0,1018.5,-248.5,189.7101402,-46.2866649,0,0,0,0,0,4 138,0,1034.5,-248.5,192.6903576,-46.2866649,0,0,0,0,0,4 139,0,1050.5,-248.5,195.6705898,-46.2866649,0,0,0,0,0,4 136,0,1002.5,-248.5,186.729908,-46.2866649,0,0,0,0,0,4 140,0,1066.5,-248.5,198.650822,-46.2866649,0,0,0,0,0,4 141,0,1082.5,-248.5,201.6310543,-46.2866649,0,0,0,0,0,4 142,0,1098.5,-248.5,204.6112716,-46.2866649,0,0,0,0,0,4 143,0,1114.5,-248.5,207.5915039,-46.2866649,0,0,0,0,0,4 144,0,1130.5,-248.5,210.5717361,-46.2866649,0,0,0,0,0,4 145,0,1146.5,-248.5,213.5519534,-46.2866649,0,0,0,0,0,4 146,0,1162.5,-248.5,216.5321857,-46.2866649,0,0,0,0,0,4 143,0,1114.5,-248.5,207.591503857143,-46.2866649,0,0,0,0,0,4 147,0,1178.5,-248.5,219.5124179,-46.2866649,0,0,0,0,0,4 148,0,1194.5,-248.5,222.4926353,-46.2866649,0,0,0,0,0,4 149,0,1210.5,-248.5,225.4728675,-46.2866649,0,0,0,0,0,4 150,0,1226.5,-248.5,228.4530997,-46.2866649,0,0,0,0,0,4 151,0,1242.5,-248.5,231.433332,-46.2866649,0,0,0,0,0,4 152,0,1258.5,-248.5,234.4135493,-46.2866649,0,0,0,0,0,4 153,0,1274.5,-248.5,237.3937815,-46.2866649,0,0,0,0,0,4 150,0,1226.5,-248.5,228.4530976,-46.2866649,0,0,0,0,0,4 154,0,1290.5,-248.5,240.3740138,-46.2866649,0,0,0,0,0,4 155,0,1306.5,-248.5,243.3542311,-46.2866649,0,0,0,0,0,4 156,0,1322.5,-248.5,246.3344634,-46.2866649,0,0,0,0,0,4 157,0,1338.5,-248.5,249.3146956,-46.2866649,0,0,0,0,0,4 158,0,1354.5,-248.5,252.2949278,-46.2866649,0,0,0,0,0,4 0,1,-1173.5,-232.5,-218.5810953,-43.30643639,0,0,0,0,0,4 1,1,-1157.5,-232.5,-215.6008631,-43.30643639,0,0,0,0,0,4 111.571428571429,0.285714285714286,611.642857142857,-243.928571428571,113.927196185714,-45.43517104,0,0,0,0,0,4 2,1,-1141.5,-232.5,-212.6206309,-43.30643639,0,0,0,0,0,4 3,1,-1125.5,-232.5,-209.6404135,-43.30643639,0,0,0,0,0,4 4,1,-1109.5,-232.5,-206.6601813,-43.30643639,0,0,0,0,0,4 5,1,-1093.5,-232.5,-203.679949,-43.30643639,0,0,0,0,0,4 6,1,-1077.5,-232.5,-200.6997317,-43.30643639,0,0,0,0,0,4 7,1,-1061.5,-232.5,-197.7194995,-43.30643639,0,0,0,0,0,4 8,1,-1045.5,-232.5,-194.7392672,-43.30643639,0,0,0,0,0,4 5,1,-1093.5,-232.5,-203.6799533,-43.30643639,0,0,0,0,0,4 9,1,-1029.5,-232.5,-191.759035,-43.30643639,0,0,0,0,0,4 10,1,-1013.5,-232.5,-188.7788177,-43.30643639,0,0,0,0,0,4 11,1,-997.5,-232.5,-185.7985854,-43.30643639,0,0,0,0,0,4 12,1,-981.5,-232.5,-182.8183532,-43.30643639,0,0,0,0,0,4 13,1,-965.5,-232.5,-179.8381358,-43.30643639,0,0,0,0,0,4 14,1,-949.5,-232.5,-176.8579036,-43.30643639,0,0,0,0,0,4 15,1,-933.5,-232.5,-173.8776714,-43.30643639,0,0,0,0,0,4 12,1,-981.5,-232.5,-182.818357442857,-43.30643639,0,0,0,0,0,4 16,1,-917.5,-232.5,-170.8974391,-43.30643639,0,0,0,0,0,4 17,1,-901.5,-232.5,-167.9172218,-43.30643639,0,0,0,0,0,4 18,1,-885.5,-232.5,-164.9369895,-43.30643639,0,0,0,0,0,4 19,1,-869.5,-232.5,-161.9567573,-43.30643639,0,0,0,0,0,4 20,1,-853.5,-232.5,-158.97654,-43.30643639,0,0,0,0,0,4 21,1,-837.5,-232.5,-155.9963077,-43.30643639,0,0,0,0,0,4 22,1,-821.5,-232.5,-153.0160755,-43.30643639,0,0,0,0,0,4 19,1,-869.5,-232.5,-161.956761557143,-43.30643639,0,0,0,0,0,4 23,1,-805.5,-232.5,-150.0358433,-43.30643639,0,0,0,0,0,4 24,1,-789.5,-232.5,-147.0556259,-43.30643639,0,0,0,0,0,4 25,1,-773.5,-232.5,-144.0753937,-43.30643639,0,0,0,0,0,4 26,1,-757.5,-232.5,-141.0951614,-43.30643639,0,0,0,0,0,4 27,1,-741.5,-232.5,-138.1149441,-43.30643639,0,0,0,0,0,4 28,1,-725.5,-232.5,-135.1347119,-43.30643639,0,0,0,0,0,4 29,1,-709.5,-232.5,-132.1544796,-43.30643639,0,0,0,0,0,4 26,1,-757.5,-232.5,-141.0951657,-43.30643639,0,0,0,0,0,4 30,1,-693.5,-232.5,-129.1742623,-43.30643639,0,0,0,0,0,4 31,1,-677.5,-232.5,-126.19403,-43.30643639,0,0,0,0,0,4 32,1,-661.5,-232.5,-123.2137978,-43.30643639,0,0,0,0,0,4 33,1,-645.5,-232.5,-120.233573,-43.30643639,0,0,0,0,0,4 34,1,-629.5,-232.5,-117.2533408,-43.30643639,0,0,0,0,0,4 35,1,-613.5,-232.5,-114.273116,-43.30643639,0,0,0,0,0,4 36,1,-597.5,-232.5,-111.2928838,-43.30643639,0,0,0,0,0,4 33,1,-645.5,-232.5,-120.233571957143,-43.30643639,0,0,0,0,0,4 37,1,-581.5,-232.5,-108.312659,-43.30643639,0,0,0,0,0,4 38,1,-565.5,-232.5,-105.3324342,-43.30643639,0,0,0,0,0,4 39,1,-549.5,-232.5,-102.3522019,-43.30643639,0,0,0,0,0,4 40,1,-533.5,-232.5,-99.37197715,-43.30643639,0,0,0,0,0,4 41,1,-517.5,-232.5,-96.39174491,-43.30643639,0,0,0,0,0,4 42,1,-501.5,-232.5,-93.41152012,-43.30643639,0,0,0,0,0,4 43,1,-485.5,-232.5,-90.43129534,-43.30643639,0,0,0,0,0,4 40,1,-533.5,-232.5,-99.3719760885714,-43.30643639,0,0,0,0,0,4 44,1,-469.5,-232.5,-87.4510631,-43.30643639,0,0,0,0,0,4 45,1,-453.5,-232.5,-84.47083831,-43.30643639,0,0,0,0,0,4 46,1,-437.5,-232.5,-81.49060607,-43.30643639,0,0,0,0,0,4 47,1,-421.5,-232.5,-78.51038128,-43.30643639,0,0,0,0,0,4 48,1,-405.5,-232.5,-75.53014904,-43.30643639,0,0,0,0,0,4 49,1,-389.5,-232.5,-72.54992425,-43.30643639,0,0,0,0,0,4 50,1,-373.5,-232.5,-69.56969947,-43.30643639,0,0,0,0,0,4 47,1,-421.5,-232.5,-78.5103802171429,-43.30643639,0,0,0,0,0,4 51,1,-357.5,-232.5,-66.58946723,-43.30643639,0,0,0,0,0,4 52,1,-341.5,-232.5,-63.60924244,-43.30643639,0,0,0,0,0,4 53,1,-325.5,-232.5,-60.62901393,-43.30643639,0,0,0,0,0,4 54,1,-309.5,-232.5,-57.64878541,-43.30643639,0,0,0,0,0,4 55,1,-293.5,-232.5,-54.6685569,-43.30643639,0,0,0,0,0,4 56,1,-277.5,-232.5,-51.68832839,-43.30643639,0,0,0,0,0,4 57,1,-261.5,-232.5,-48.70809987,-43.30643639,0,0,0,0,0,4 54,1,-309.5,-232.5,-57.6487848814286,-43.30643639,0,0,0,0,0,4 58,1,-245.5,-232.5,-45.72787136,-43.30643639,0,0,0,0,0,4 59,1,-229.5,-232.5,-42.74764284,-43.30643639,0,0,0,0,0,4 60,1,-213.5,-232.5,-39.76741806,-43.30643639,0,0,0,0,0,4 61,1,-197.5,-232.5,-36.78718954,-43.30643639,0,0,0,0,0,4 62,1,-181.5,-232.5,-33.80696103,-43.30643639,0,0,0,0,0,4 63,1,-165.5,-232.5,-30.82673252,-43.30643639,0,0,0,0,0,4 64,1,-149.5,-232.5,-27.846504,-43.30643639,0,0,0,0,0,4 61,1,-197.5,-232.5,-36.7871884785714,-43.30643639,0,0,0,0,0,4 65,1,-133.5,-232.5,-24.86627735,-43.30643639,0,0,0,0,0,4 66,1,-117.5,-232.5,-21.88604884,-43.30643639,0,0,0,0,0,4 67,1,-101.5,-232.5,-18.90582033,-43.30643639,0,0,0,0,0,4 68,1,-85.5,-232.5,-15.92559367,-43.30643639,0,0,0,0,0,4 69,1,-69.5,-232.5,-12.94536516,-43.30643639,0,0,0,0,0,4 70,1,-53.5,-232.5,-9.965137579,-43.30643639,0,0,0,0,0,4 71,1,-37.5,-232.5,-6.984909065,-43.30643639,0,0,0,0,0,4 68,1,-85.5,-232.5,-15.925593142,-43.30643639,0,0,0,0,0,4 72,1,-21.5,-232.5,-4.004681483,-43.30643639,0,0,0,0,0,4 73,1,-5.5,-232.5,-1.024453319,-43.30643639,0,0,0,0,0,4 74,1,10.5,-232.5,1.955774613,-43.30643639,0,0,0,0,0,4 75,1,26.5,-232.5,4.936002661,-43.30643639,0,0,0,0,0,4 76,1,42.5,-232.5,7.916230708,-43.30643639,0,0,0,0,0,4 77,1,58.5,-232.5,10.89645829,-43.30643639,0,0,0,0,0,4 78,1,74.5,-232.5,13.8766868,-43.30643639,0,0,0,0,0,4 75,1,26.5,-232.5,4.93600261,-43.30643639,0,0,0,0,0,4 79,1,90.5,-232.5,16.85691439,-43.30643639,0,0,0,0,0,4 80,1,106.5,-232.5,19.8371429,-43.30643639,0,0,0,0,0,4 81,1,122.5,-232.5,22.81736955,-43.30643639,0,0,0,0,0,4 82,1,138.5,-232.5,25.79759806,-43.30643639,0,0,0,0,0,4 83,1,154.5,-232.5,28.77782658,-43.30643639,0,0,0,0,0,4 84,1,170.5,-232.5,31.75805509,-43.30643639,0,0,0,0,0,4 85,1,186.5,-232.5,34.7382836,-43.30643639,0,0,0,0,0,4 82,1,138.5,-232.5,25.7975985957143,-43.30643639,0,0,0,0,0,4 86,1,202.5,-232.5,37.71850839,-43.30643639,0,0,0,0,0,4 87,1,218.5,-232.5,40.69873691,-43.30643639,0,0,0,0,0,4 88,1,234.5,-232.5,43.67896542,-43.30643639,0,0,0,0,0,4 89,1,250.5,-232.5,46.65919393,-43.30643639,0,0,0,0,0,4 90,1,266.5,-232.5,49.63942245,-43.30643639,0,0,0,0,0,4 91,1,282.5,-232.5,52.61965096,-43.30643639,0,0,0,0,0,4 92,1,298.5,-232.5,55.59987947,-43.30643639,0,0,0,0,0,4 89,1,250.5,-232.5,46.6591939328571,-43.30643639,0,0,0,0,0,4 93,1,314.5,-232.5,58.58010426,-43.30643639,0,0,0,0,0,4 94,1,330.5,-232.5,61.56033278,-43.30643639,0,0,0,0,0,4 95,1,346.5,-232.5,64.54056501,-43.30643639,0,0,0,0,0,4 96,1,362.5,-232.5,67.5207898,-43.30643639,0,0,0,0,0,4 97,1,378.5,-232.5,70.50101459,-43.30643639,0,0,0,0,0,4 98,1,394.5,-232.5,73.48124683,-43.30643639,0,0,0,0,0,4 99,1,410.5,-232.5,76.46147162,-43.30643639,0,0,0,0,0,4 96,1,362.5,-232.5,67.52078927,-43.30643639,0,0,0,0,0,4 100,1,426.5,-232.5,79.44170386,-43.30643639,0,0,0,0,0,4 101,1,442.5,-232.5,82.42192864,-43.30643639,0,0,0,0,0,4 102,1,458.5,-232.5,85.40215343,-43.30643639,0,0,0,0,0,4 103,1,474.5,-232.5,88.38238567,-43.30643639,0,0,0,0,0,4 104,1,490.5,-232.5,91.36261046,-43.30643639,0,0,0,0,0,4 105,1,506.5,-232.5,94.3428427,-43.30643639,0,0,0,0,0,4 106,1,522.5,-232.5,97.32306749,-43.30643639,0,0,0,0,0,4 103,1,474.5,-232.5,88.3823846071429,-43.30643639,0,0,0,0,0,4 107,1,538.5,-232.5,100.3032997,-43.30643639,0,0,0,0,0,4 108,1,554.5,-232.5,103.2835245,-43.30643639,0,0,0,0,0,4 109,1,570.5,-232.5,106.2637493,-43.30643639,0,0,0,0,0,4 110,1,586.5,-232.5,109.2439815,-43.30643639,0,0,0,0,0,4 111,1,602.5,-232.5,112.2242063,-43.30643639,0,0,0,0,0,4 112,1,618.5,-232.5,115.2044386,-43.30643639,0,0,0,0,0,4 113,1,634.5,-232.5,118.1846634,-43.30643639,0,0,0,0,0,4 110,1,586.5,-232.5,109.243980471429,-43.30643639,0,0,0,0,0,4 114,1,650.5,-232.5,121.1648956,-43.30643639,0,0,0,0,0,4 115,1,666.5,-232.5,124.1451204,-43.30643639,0,0,0,0,0,4 116,1,682.5,-232.5,127.1253526,-43.30643639,0,0,0,0,0,4 117,1,698.5,-232.5,130.10557,-43.30643639,0,0,0,0,0,4 118,1,714.5,-232.5,133.0858022,-43.30643639,0,0,0,0,0,4 119,1,730.5,-232.5,136.0660344,-43.30643639,0,0,0,0,0,4 120,1,746.5,-232.5,139.0462667,-43.30643639,0,0,0,0,0,4 117,1,698.5,-232.5,130.105577414286,-43.30643639,0,0,0,0,0,4 121,1,762.5,-232.5,142.026484,-43.30643639,0,0,0,0,0,4 122,1,778.5,-232.5,145.0067163,-43.30643639,0,0,0,0,0,4 123,1,794.5,-232.5,147.9869485,-43.30643639,0,0,0,0,0,4 124,1,810.5,-232.5,150.9671658,-43.30643639,0,0,0,0,0,4 125,1,826.5,-232.5,153.9473981,-43.30643639,0,0,0,0,0,4 126,1,842.5,-232.5,156.9276303,-43.30643639,0,0,0,0,0,4 127,1,858.5,-232.5,159.9078625,-43.30643639,0,0,0,0,0,4 124,1,810.5,-232.5,150.967172214286,-43.30643639,0,0,0,0,0,4 128,1,874.5,-232.5,162.8880799,-43.30643639,0,0,0,0,0,4 129,1,890.5,-232.5,165.8683121,-43.30643639,0,0,0,0,0,4 130,1,906.5,-232.5,168.8485444,-43.30643639,0,0,0,0,0,4 131,1,922.5,-232.5,171.8287617,-43.30643639,0,0,0,0,0,4 132,1,938.5,-232.5,174.8089939,-43.30643639,0,0,0,0,0,4 133,1,954.5,-232.5,177.7892262,-43.30643639,0,0,0,0,0,4 134,1,970.5,-232.5,180.7694584,-43.30643639,0,0,0,0,0,4 131,1,922.5,-232.5,171.828768085714,-43.30643639,0,0,0,0,0,4 135,1,986.5,-232.5,183.7496758,-43.30643639,0,0,0,0,0,4 136,1,1002.5,-232.5,186.729908,-43.30643639,0,0,0,0,0,4 137,1,1018.5,-232.5,189.7101402,-43.30643639,0,0,0,0,0,4 138,1,1034.5,-232.5,192.6903576,-43.30643639,0,0,0,0,0,4 139,1,1050.5,-232.5,195.6705898,-43.30643639,0,0,0,0,0,4 140,1,1066.5,-232.5,198.650822,-43.30643639,0,0,0,0,0,4 141,1,1082.5,-232.5,201.6310543,-43.30643639,0,0,0,0,0,4 138,1,1034.5,-232.5,192.690363957143,-43.30643639,0,0,0,0,0,4 142,1,1098.5,-232.5,204.6112716,-43.30643639,0,0,0,0,0,4 143,1,1114.5,-232.5,207.5915039,-43.30643639,0,0,0,0,0,4 144,1,1130.5,-232.5,210.5717361,-43.30643639,0,0,0,0,0,4 145,1,1146.5,-232.5,213.5519534,-43.30643639,0,0,0,0,0,4 146,1,1162.5,-232.5,216.5321857,-43.30643639,0,0,0,0,0,4 147,1,1178.5,-232.5,219.5124179,-43.30643639,0,0,0,0,0,4 148,1,1194.5,-232.5,222.4926353,-43.30643639,0,0,0,0,0,4 145,1,1146.5,-232.5,213.5519577,-43.30643639,0,0,0,0,0,4 149,1,1210.5,-232.5,225.4728675,-43.30643639,0,0,0,0,0,4 150,1,1226.5,-232.5,228.4530997,-43.30643639,0,0,0,0,0,4 151,1,1242.5,-232.5,231.433332,-43.30643639,0,0,0,0,0,4 152,1,1258.5,-232.5,234.4135493,-43.30643639,0,0,0,0,0,4 153,1,1274.5,-232.5,237.3937815,-43.30643639,0,0,0,0,0,4 154,1,1290.5,-232.5,240.3740138,-43.30643639,0,0,0,0,0,4 155,1,1306.5,-232.5,243.3542311,-43.30643639,0,0,0,0,0,4 152,1,1258.5,-232.5,234.413553557143,-43.30643639,0,0,0,0,0,4 156,1,1322.5,-232.5,246.3344634,-43.30643639,0,0,0,0,0,4 157,1,1338.5,-232.5,249.3146956,-43.30643639,0,0,0,0,0,4 158,1,1354.5,-232.5,252.2949278,-43.30643639,0,0,0,0,0,4 0,2,-1173.5,-216.5,-218.5810953,-40.32620788,0,0,0,0,0,4 1,2,-1157.5,-216.5,-215.6008631,-40.32620788,0,0,0,0,0,4 2,2,-1141.5,-216.5,-212.6206309,-40.32620788,0,0,0,0,0,4 3,2,-1125.5,-216.5,-209.6404135,-40.32620788,0,0,0,0,0,4 68.1428571428571,1.57142857142857,-83.2142857142857,-223.357142857143,-15.4998451428571,-41.60344867,0,0,0,0,0,4 4,2,-1109.5,-216.5,-206.6601813,-40.32620788,0,0,0,0,0,4 5,2,-1093.5,-216.5,-203.679949,-40.32620788,0,0,0,0,0,4 6,2,-1077.5,-216.5,-200.6997317,-40.32620788,0,0,0,0,0,4 7,2,-1061.5,-216.5,-197.7194995,-40.32620788,0,0,0,0,0,4 8,2,-1045.5,-216.5,-194.7392672,-40.32620788,0,0,0,0,0,4 9,2,-1029.5,-216.5,-191.759035,-40.32620788,0,0,0,0,0,4 10,2,-1013.5,-216.5,-188.7788177,-40.32620788,0,0,0,0,0,4 7,2,-1061.5,-216.5,-197.719497342857,-40.32620788,0,0,0,0,0,4 11,2,-997.5,-216.5,-185.7985854,-40.32620788,0,0,0,0,0,4 12,2,-981.5,-216.5,-182.8183532,-40.32620788,0,0,0,0,0,4 13,2,-965.5,-216.5,-179.8381358,-40.32620788,0,0,0,0,0,4 14,2,-949.5,-216.5,-176.8579036,-40.32620788,0,0,0,0,0,4 15,2,-933.5,-216.5,-173.8776714,-40.32620788,0,0,0,0,0,4 16,2,-917.5,-216.5,-170.8974391,-40.32620788,0,0,0,0,0,4 17,2,-901.5,-216.5,-167.9172218,-40.32620788,0,0,0,0,0,4 14,2,-949.5,-216.5,-176.857901471429,-40.32620788,0,0,0,0,0,4 18,2,-885.5,-216.5,-164.9369895,-40.32620788,0,0,0,0,0,4 19,2,-869.5,-216.5,-161.9567573,-40.32620788,0,0,0,0,0,4 20,2,-853.5,-216.5,-158.97654,-40.32620788,0,0,0,0,0,4 21,2,-837.5,-216.5,-155.9963077,-40.32620788,0,0,0,0,0,4 22,2,-821.5,-216.5,-153.0160755,-40.32620788,0,0,0,0,0,4 23,2,-805.5,-216.5,-150.0358433,-40.32620788,0,0,0,0,0,4 24,2,-789.5,-216.5,-147.0556259,-40.32620788,0,0,0,0,0,4 21,2,-837.5,-216.5,-155.9963056,-40.32620788,0,0,0,0,0,4 25,2,-773.5,-216.5,-144.0753937,-40.32620788,0,0,0,0,0,4 26,2,-757.5,-216.5,-141.0951614,-40.32620788,0,0,0,0,0,4 27,2,-741.5,-216.5,-138.1149441,-40.32620788,0,0,0,0,0,4 28,2,-725.5,-216.5,-135.1347119,-40.32620788,0,0,0,0,0,4 29,2,-709.5,-216.5,-132.1544796,-40.32620788,0,0,0,0,0,4 30,2,-693.5,-216.5,-129.1742623,-40.32620788,0,0,0,0,0,4 31,2,-677.5,-216.5,-126.19403,-40.32620788,0,0,0,0,0,4 28,2,-725.5,-216.5,-135.134711857143,-40.32620788,0,0,0,0,0,4 32,2,-661.5,-216.5,-123.2137978,-40.32620788,0,0,0,0,0,4 33,2,-645.5,-216.5,-120.233573,-40.32620788,0,0,0,0,0,4 34,2,-629.5,-216.5,-117.2533408,-40.32620788,0,0,0,0,0,4 35,2,-613.5,-216.5,-114.273116,-40.32620788,0,0,0,0,0,4 36,2,-597.5,-216.5,-111.2928838,-40.32620788,0,0,0,0,0,4 37,2,-581.5,-216.5,-108.312659,-40.32620788,0,0,0,0,0,4 38,2,-565.5,-216.5,-105.3324342,-40.32620788,0,0,0,0,0,4 35,2,-613.5,-216.5,-114.273114942857,-40.32620788,0,0,0,0,0,4 39,2,-549.5,-216.5,-102.3522019,-40.32620788,0,0,0,0,0,4 40,2,-533.5,-216.5,-99.37197715,-40.32620788,0,0,0,0,0,4 41,2,-517.5,-216.5,-96.39174491,-40.32620788,0,0,0,0,0,4 42,2,-501.5,-216.5,-93.41152012,-40.32620788,0,0,0,0,0,4 43,2,-485.5,-216.5,-90.43129534,-40.32620788,0,0,0,0,0,4 44,2,-469.5,-216.5,-87.4510631,-40.32620788,0,0,0,0,0,4 45,2,-453.5,-216.5,-84.47083831,-40.32620788,0,0,0,0,0,4 42,2,-501.5,-216.5,-93.4115201185714,-40.32620788,0,0,0,0,0,4 46,2,-437.5,-216.5,-81.49060607,-40.32620788,0,0,0,0,0,4 47,2,-421.5,-216.5,-78.51038128,-40.32620788,0,0,0,0,0,4 48,2,-405.5,-216.5,-75.53014904,-40.32620788,0,0,0,0,0,4 49,2,-389.5,-216.5,-72.54992425,-40.32620788,0,0,0,0,0,4 50,2,-373.5,-216.5,-69.56969947,-40.32620788,0,0,0,0,0,4 51,2,-357.5,-216.5,-66.58946723,-40.32620788,0,0,0,0,0,4 52,2,-341.5,-216.5,-63.60924244,-40.32620788,0,0,0,0,0,4 49,2,-389.5,-216.5,-72.5499242542857,-40.32620788,0,0,0,0,0,4 53,2,-325.5,-216.5,-60.62901393,-40.32620788,0,0,0,0,0,4 54,2,-309.5,-216.5,-57.64878541,-40.32620788,0,0,0,0,0,4 55,2,-293.5,-216.5,-54.6685569,-40.32620788,0,0,0,0,0,4 56,2,-277.5,-216.5,-51.68832839,-40.32620788,0,0,0,0,0,4 57,2,-261.5,-216.5,-48.70809987,-40.32620788,0,0,0,0,0,4 58,2,-245.5,-216.5,-45.72787136,-40.32620788,0,0,0,0,0,4 59,2,-229.5,-216.5,-42.74764284,-40.32620788,0,0,0,0,0,4 56,2,-277.5,-216.5,-51.6883283857143,-40.32620788,0,0,0,0,0,4 60,2,-213.5,-216.5,-39.76741806,-40.32620788,0,0,0,0,0,4 61,2,-197.5,-216.5,-36.78718954,-40.32620788,0,0,0,0,0,4 62,2,-181.5,-216.5,-33.80696103,-40.32620788,0,0,0,0,0,4 63,2,-165.5,-216.5,-30.82673252,-40.32620788,0,0,0,0,0,4 64,2,-149.5,-216.5,-27.846504,-40.32620788,0,0,0,0,0,4 65,2,-133.5,-216.5,-24.86627735,-40.32620788,0,0,0,0,0,4 66,2,-117.5,-216.5,-21.88604884,-40.32620788,0,0,0,0,0,4 63,2,-165.5,-216.5,-30.8267330485714,-40.32620788,0,0,0,0,0,4 67,2,-101.5,-216.5,-18.90582033,-40.32620788,0,0,0,0,0,4 68,2,-85.5,-216.5,-15.92559367,-40.32620788,0,0,0,0,0,4 69,2,-69.5,-216.5,-12.94536516,-40.32620788,0,0,0,0,0,4 70,2,-53.5,-216.5,-9.965137579,-40.32620788,0,0,0,0,0,4 71,2,-37.5,-216.5,-6.984909065,-40.32620788,0,0,0,0,0,4 72,2,-21.5,-216.5,-4.004681483,-40.32620788,0,0,0,0,0,4 73,2,-5.5,-216.5,-1.024453319,-40.32620788,0,0,0,0,0,4 70,2,-53.5,-216.5,-9.96513722942857,-40.32620788,0,0,0,0,0,4 74,2,10.5,-216.5,1.955774613,-40.32620788,0,0,0,0,0,4 75,2,26.5,-216.5,4.936002661,-40.32620788,0,0,0,0,0,4 76,2,42.5,-216.5,7.916230708,-40.32620788,0,0,0,0,0,4 77,2,58.5,-216.5,10.89645829,-40.32620788,0,0,0,0,0,4 78,2,74.5,-216.5,13.8766868,-40.32620788,0,0,0,0,0,4 79,2,90.5,-216.5,16.85691439,-40.32620788,0,0,0,0,0,4 80,2,106.5,-216.5,19.8371429,-40.32620788,0,0,0,0,0,4 77,2,58.5,-216.5,10.8964586231429,-40.32620788,0,0,0,0,0,4 81,2,122.5,-216.5,22.81736955,-40.32620788,0,0,0,0,0,4 82,2,138.5,-216.5,25.79759806,-40.32620788,0,0,0,0,0,4 83,2,154.5,-216.5,28.77782658,-40.32620788,0,0,0,0,0,4 84,2,170.5,-216.5,31.75805509,-40.32620788,0,0,0,0,0,4 85,2,186.5,-216.5,34.7382836,-40.32620788,0,0,0,0,0,4 86,2,202.5,-216.5,37.71850839,-40.32620788,0,0,0,0,0,4 87,2,218.5,-216.5,40.69873691,-40.32620788,0,0,0,0,0,4 84,2,170.5,-216.5,31.7580540257143,-40.32620788,0,0,0,0,0,4 88,2,234.5,-216.5,43.67896542,-40.32620788,0,0,0,0,0,4 89,2,250.5,-216.5,46.65919393,-40.32620788,0,0,0,0,0,4 90,2,266.5,-216.5,49.63942245,-40.32620788,0,0,0,0,0,4 91,2,282.5,-216.5,52.61965096,-40.32620788,0,0,0,0,0,4 92,2,298.5,-216.5,55.59987947,-40.32620788,0,0,0,0,0,4 93,2,314.5,-216.5,58.58010426,-40.32620788,0,0,0,0,0,4 94,2,330.5,-216.5,61.56033278,-40.32620788,0,0,0,0,0,4 91,2,282.5,-216.5,52.6196498957143,-40.32620788,0,0,0,0,0,4 95,2,346.5,-216.5,64.54056501,-40.32620788,0,0,0,0,0,4 96,2,362.5,-216.5,67.5207898,-40.32620788,0,0,0,0,0,4 97,2,378.5,-216.5,70.50101459,-40.32620788,0,0,0,0,0,4 98,2,394.5,-216.5,73.48124683,-40.32620788,0,0,0,0,0,4 99,2,410.5,-216.5,76.46147162,-40.32620788,0,0,0,0,0,4 100,2,426.5,-216.5,79.44170386,-40.32620788,0,0,0,0,0,4 101,2,442.5,-216.5,82.42192864,-40.32620788,0,0,0,0,0,4 98,2,394.5,-216.5,73.4812457642857,-40.32620788,0,0,0,0,0,4 102,2,458.5,-216.5,85.40215343,-40.32620788,0,0,0,0,0,4 103,2,474.5,-216.5,88.38238567,-40.32620788,0,0,0,0,0,4 104,2,490.5,-216.5,91.36261046,-40.32620788,0,0,0,0,0,4 105,2,506.5,-216.5,94.3428427,-40.32620788,0,0,0,0,0,4 106,2,522.5,-216.5,97.32306749,-40.32620788,0,0,0,0,0,4 107,2,538.5,-216.5,100.3032997,-40.32620788,0,0,0,0,0,4 108,2,554.5,-216.5,103.2835245,-40.32620788,0,0,0,0,0,4 105,2,506.5,-216.5,94.3428405642857,-40.32620788,0,0,0,0,0,4 109,2,570.5,-216.5,106.2637493,-40.32620788,0,0,0,0,0,4 110,2,586.5,-216.5,109.2439815,-40.32620788,0,0,0,0,0,4 111,2,602.5,-216.5,112.2242063,-40.32620788,0,0,0,0,0,4 112,2,618.5,-216.5,115.2044386,-40.32620788,0,0,0,0,0,4 113,2,634.5,-216.5,118.1846634,-40.32620788,0,0,0,0,0,4 114,2,650.5,-216.5,121.1648956,-40.32620788,0,0,0,0,0,4 115,2,666.5,-216.5,124.1451204,-40.32620788,0,0,0,0,0,4 112,2,618.5,-216.5,115.204436442857,-40.32620788,0,0,0,0,0,4 116,2,682.5,-216.5,127.1253526,-40.32620788,0,0,0,0,0,4 117,2,698.5,-216.5,130.10557,-40.32620788,0,0,0,0,0,4 118,2,714.5,-216.5,133.0858022,-40.32620788,0,0,0,0,0,4 119,2,730.5,-216.5,136.0660344,-40.32620788,0,0,0,0,0,4 120,2,746.5,-216.5,139.0462667,-40.32620788,0,0,0,0,0,4 121,2,762.5,-216.5,142.026484,-40.32620788,0,0,0,0,0,4 122,2,778.5,-216.5,145.0067163,-40.32620788,0,0,0,0,0,4 119,2,730.5,-216.5,136.066032314286,-40.32620788,0,0,0,0,0,4 123,2,794.5,-216.5,147.9869485,-40.32620788,0,0,0,0,0,4 124,2,810.5,-216.5,150.9671658,-40.32620788,0,0,0,0,0,4 125,2,826.5,-216.5,153.9473981,-40.32620788,0,0,0,0,0,4 126,2,842.5,-216.5,156.9276303,-40.32620788,0,0,0,0,0,4 127,2,858.5,-216.5,159.9078625,-40.32620788,0,0,0,0,0,4 128,2,874.5,-216.5,162.8880799,-40.32620788,0,0,0,0,0,4 129,2,890.5,-216.5,165.8683121,-40.32620788,0,0,0,0,0,4 126,2,842.5,-216.5,156.927628171429,-40.32620788,0,0,0,0,0,4 130,2,906.5,-216.5,168.8485444,-40.32620788,0,0,0,0,0,4 131,2,922.5,-216.5,171.8287617,-40.32620788,0,0,0,0,0,4 132,2,938.5,-216.5,174.8089939,-40.32620788,0,0,0,0,0,4 133,2,954.5,-216.5,177.7892262,-40.32620788,0,0,0,0,0,4 134,2,970.5,-216.5,180.7694584,-40.32620788,0,0,0,0,0,4 135,2,986.5,-216.5,183.7496758,-40.32620788,0,0,0,0,0,4 136,2,1002.5,-216.5,186.729908,-40.32620788,0,0,0,0,0,4 133,2,954.5,-216.5,177.789224057143,-40.32620788,0,0,0,0,0,4 137,2,1018.5,-216.5,189.7101402,-40.32620788,0,0,0,0,0,4 138,2,1034.5,-216.5,192.6903576,-40.32620788,0,0,0,0,0,4 139,2,1050.5,-216.5,195.6705898,-40.32620788,0,0,0,0,0,4 140,2,1066.5,-216.5,198.650822,-40.32620788,0,0,0,0,0,4 141,2,1082.5,-216.5,201.6310543,-40.32620788,0,0,0,0,0,4 142,2,1098.5,-216.5,204.6112716,-40.32620788,0,0,0,0,0,4 143,2,1114.5,-216.5,207.5915039,-40.32620788,0,0,0,0,0,4 140,2,1066.5,-216.5,198.650819914286,-40.32620788,0,0,0,0,0,4 144,2,1130.5,-216.5,210.5717361,-40.32620788,0,0,0,0,0,4 145,2,1146.5,-216.5,213.5519534,-40.32620788,0,0,0,0,0,4 146,2,1162.5,-216.5,216.5321857,-40.32620788,0,0,0,0,0,4 147,2,1178.5,-216.5,219.5124179,-40.32620788,0,0,0,0,0,4 148,2,1194.5,-216.5,222.4926353,-40.32620788,0,0,0,0,0,4 149,2,1210.5,-216.5,225.4728675,-40.32620788,0,0,0,0,0,4 150,2,1226.5,-216.5,228.4530997,-40.32620788,0,0,0,0,0,4 147,2,1178.5,-216.5,219.512413657143,-40.32620788,0,0,0,0,0,4 151,2,1242.5,-216.5,231.433332,-40.32620788,0,0,0,0,0,4 152,2,1258.5,-216.5,234.4135493,-40.32620788,0,0,0,0,0,4 153,2,1274.5,-216.5,237.3937815,-40.32620788,0,0,0,0,0,4 154,2,1290.5,-216.5,240.3740138,-40.32620788,0,0,0,0,0,4 155,2,1306.5,-216.5,243.3542311,-40.32620788,0,0,0,0,0,4 156,2,1322.5,-216.5,246.3344634,-40.32620788,0,0,0,0,0,4 157,2,1338.5,-216.5,249.3146956,-40.32620788,0,0,0,0,0,4 154,2,1290.5,-216.5,240.374009528571,-40.32620788,0,0,0,0,0,4 158,2,1354.5,-216.5,252.2949278,-40.32620788,0,0,0,0,0,4 0,3,-1173.5,-200.5,-218.5810953,-37.34598309,0,0,0,0,0,4 1,3,-1157.5,-200.5,-215.6008631,-37.34598309,0,0,0,0,0,4 2,3,-1141.5,-200.5,-212.6206309,-37.34598309,0,0,0,0,0,4 3,3,-1125.5,-200.5,-209.6404135,-37.34598309,0,0,0,0,0,4 4,3,-1109.5,-200.5,-206.6601813,-37.34598309,0,0,0,0,0,4 5,3,-1093.5,-200.5,-203.679949,-37.34598309,0,0,0,0,0,4 24.7142857142857,2.85714285714286,-778.071428571429,-202.785714285714,-144.926886471429,-37.7717294885714,0,0,0,0,0,4 6,3,-1077.5,-200.5,-200.6997317,-37.34598309,0,0,0,0,0,4 7,3,-1061.5,-200.5,-197.7194995,-37.34598309,0,0,0,0,0,4 8,3,-1045.5,-200.5,-194.7392672,-37.34598309,0,0,0,0,0,4 9,3,-1029.5,-200.5,-191.759035,-37.34598309,0,0,0,0,0,4 10,3,-1013.5,-200.5,-188.7788177,-37.34598309,0,0,0,0,0,4 11,3,-997.5,-200.5,-185.7985854,-37.34598309,0,0,0,0,0,4 12,3,-981.5,-200.5,-182.8183532,-37.34598309,0,0,0,0,0,4 9,3,-1029.5,-200.5,-191.759041385714,-37.34598309,0,0,0,0,0,4 13,3,-965.5,-200.5,-179.8381358,-37.34598309,0,0,0,0,0,4 14,3,-949.5,-200.5,-176.8579036,-37.34598309,0,0,0,0,0,4 15,3,-933.5,-200.5,-173.8776714,-37.34598309,0,0,0,0,0,4 16,3,-917.5,-200.5,-170.8974391,-37.34598309,0,0,0,0,0,4 17,3,-901.5,-200.5,-167.9172218,-37.34598309,0,0,0,0,0,4 18,3,-885.5,-200.5,-164.9369895,-37.34598309,0,0,0,0,0,4 19,3,-869.5,-200.5,-161.9567573,-37.34598309,0,0,0,0,0,4 16,3,-917.5,-200.5,-170.8974455,-37.34598309,0,0,0,0,0,4 20,3,-853.5,-200.5,-158.97654,-37.34598309,0,0,0,0,0,4 21,3,-837.5,-200.5,-155.9963077,-37.34598309,0,0,0,0,0,4 22,3,-821.5,-200.5,-153.0160755,-37.34598309,0,0,0,0,0,4 23,3,-805.5,-200.5,-150.0358433,-37.34598309,0,0,0,0,0,4 24,3,-789.5,-200.5,-147.0556259,-37.34598309,0,0,0,0,0,4 25,3,-773.5,-200.5,-144.0753937,-37.34598309,0,0,0,0,0,4 26,3,-757.5,-200.5,-141.0951614,-37.34598309,0,0,0,0,0,4 23,3,-805.5,-200.5,-150.035849642857,-37.34598309,0,0,0,0,0,4 27,3,-741.5,-200.5,-138.1149441,-37.34598309,0,0,0,0,0,4 28,3,-725.5,-200.5,-135.1347119,-37.34598309,0,0,0,0,0,4 29,3,-709.5,-200.5,-132.1544796,-37.34598309,0,0,0,0,0,4 30,3,-693.5,-200.5,-129.1742623,-37.34598309,0,0,0,0,0,4 31,3,-677.5,-200.5,-126.19403,-37.34598309,0,0,0,0,0,4 32,3,-661.5,-200.5,-123.2137978,-37.34598309,0,0,0,0,0,4 33,3,-645.5,-200.5,-120.233573,-37.34598309,0,0,0,0,0,4 30,3,-693.5,-200.5,-129.174256957143,-37.34598309,0,0,0,0,0,4 34,3,-629.5,-200.5,-117.2533408,-37.34598309,0,0,0,0,0,4 35,3,-613.5,-200.5,-114.273116,-37.34598309,0,0,0,0,0,4 36,3,-597.5,-200.5,-111.2928838,-37.34598309,0,0,0,0,0,4 37,3,-581.5,-200.5,-108.312659,-37.34598309,0,0,0,0,0,4 38,3,-565.5,-200.5,-105.3324342,-37.34598309,0,0,0,0,0,4 39,3,-549.5,-200.5,-102.3522019,-37.34598309,0,0,0,0,0,4 40,3,-533.5,-200.5,-99.37197715,-37.34598309,0,0,0,0,0,4 37,3,-581.5,-200.5,-108.312658978571,-37.34598309,0,0,0,0,0,4 41,3,-517.5,-200.5,-96.39174491,-37.34598309,0,0,0,0,0,4 42,3,-501.5,-200.5,-93.41152012,-37.34598309,0,0,0,0,0,4 43,3,-485.5,-200.5,-90.43129534,-37.34598309,0,0,0,0,0,4 44,3,-469.5,-200.5,-87.4510631,-37.34598309,0,0,0,0,0,4 45,3,-453.5,-200.5,-84.47083831,-37.34598309,0,0,0,0,0,4 46,3,-437.5,-200.5,-81.49060607,-37.34598309,0,0,0,0,0,4 47,3,-421.5,-200.5,-78.51038128,-37.34598309,0,0,0,0,0,4 44,3,-469.5,-200.5,-87.4510641614286,-37.34598309,0,0,0,0,0,4 48,3,-405.5,-200.5,-75.53014904,-37.34598309,0,0,0,0,0,4 49,3,-389.5,-200.5,-72.54992425,-37.34598309,0,0,0,0,0,4 50,3,-373.5,-200.5,-69.56969947,-37.34598309,0,0,0,0,0,4 51,3,-357.5,-200.5,-66.58946723,-37.34598309,0,0,0,0,0,4 52,3,-341.5,-200.5,-63.60924244,-37.34598309,0,0,0,0,0,4 53,3,-325.5,-200.5,-60.62901393,-37.34598309,0,0,0,0,0,4 54,3,-309.5,-200.5,-57.64878541,-37.34598309,0,0,0,0,0,4 51,3,-357.5,-200.5,-66.5894688242857,-37.34598309,0,0,0,0,0,4 55,3,-293.5,-200.5,-54.6685569,-37.34598309,0,0,0,0,0,4 56,3,-277.5,-200.5,-51.68832839,-37.34598309,0,0,0,0,0,4 57,3,-261.5,-200.5,-48.70809987,-37.34598309,0,0,0,0,0,4 58,3,-245.5,-200.5,-45.72787136,-37.34598309,0,0,0,0,0,4 59,3,-229.5,-200.5,-42.74764284,-37.34598309,0,0,0,0,0,4 60,3,-213.5,-200.5,-39.76741806,-37.34598309,0,0,0,0,0,4 61,3,-197.5,-200.5,-36.78718954,-37.34598309,0,0,0,0,0,4 58,3,-245.5,-200.5,-45.7278724228571,-37.34598309,0,0,0,0,0,4 62,3,-181.5,-200.5,-33.80696103,-37.34598309,0,0,0,0,0,4 63,3,-165.5,-200.5,-30.82673252,-37.34598309,0,0,0,0,0,4 64,3,-149.5,-200.5,-27.846504,-37.34598309,0,0,0,0,0,4 65,3,-133.5,-200.5,-24.86627735,-37.34598309,0,0,0,0,0,4 66,3,-117.5,-200.5,-21.88604884,-37.34598309,0,0,0,0,0,4 67,3,-101.5,-200.5,-18.90582033,-37.34598309,0,0,0,0,0,4 68,3,-85.5,-200.5,-15.92559367,-37.34598309,0,0,0,0,0,4 65,3,-133.5,-200.5,-24.86627682,-37.34598309,0,0,0,0,0,4 69,3,-69.5,-200.5,-12.94536516,-37.34598309,0,0,0,0,0,4 70,3,-53.5,-200.5,-9.965137579,-37.34598309,0,0,0,0,0,4 71,3,-37.5,-200.5,-6.984909065,-37.34598309,0,0,0,0,0,4 72,3,-21.5,-200.5,-4.004681483,-37.34598309,0,0,0,0,0,4 73,3,-5.5,-200.5,-1.024453319,-37.34598309,0,0,0,0,0,4 74,3,10.5,-200.5,1.955774613,-37.34598309,0,0,0,0,0,4 75,3,26.5,-200.5,4.936002661,-37.34598309,0,0,0,0,0,4 72,3,-21.5,-200.5,-4.00468133314286,-37.34598309,0,0,0,0,0,4 76,3,42.5,-200.5,7.916230708,-37.34598309,0,0,0,0,0,4 77,3,58.5,-200.5,10.89645829,-37.34598309,0,0,0,0,0,4 78,3,74.5,-200.5,13.8766868,-37.34598309,0,0,0,0,0,4 79,3,90.5,-200.5,16.85691439,-37.34598309,0,0,0,0,0,4 80,3,106.5,-200.5,19.8371429,-37.34598309,0,0,0,0,0,4 81,3,122.5,-200.5,22.81736955,-37.34598309,0,0,0,0,0,4 82,3,138.5,-200.5,25.79759806,-37.34598309,0,0,0,0,0,4 79,3,90.5,-200.5,16.8569143854286,-37.34598309,0,0,0,0,0,4 83,3,154.5,-200.5,28.77782658,-37.34598309,0,0,0,0,0,4 84,3,170.5,-200.5,31.75805509,-37.34598309,0,0,0,0,0,4 85,3,186.5,-200.5,34.7382836,-37.34598309,0,0,0,0,0,4 86,3,202.5,-200.5,37.71850839,-37.34598309,0,0,0,0,0,4 87,3,218.5,-200.5,40.69873691,-37.34598309,0,0,0,0,0,4 88,3,234.5,-200.5,43.67896542,-37.34598309,0,0,0,0,0,4 89,3,250.5,-200.5,46.65919393,-37.34598309,0,0,0,0,0,4 86,3,202.5,-200.5,37.7185099885714,-37.34598309,0,0,0,0,0,4 90,3,266.5,-200.5,49.63942245,-37.34598309,0,0,0,0,0,4 91,3,282.5,-200.5,52.61965096,-37.34598309,0,0,0,0,0,4 92,3,298.5,-200.5,55.59987947,-37.34598309,0,0,0,0,0,4 93,3,314.5,-200.5,58.58010426,-37.34598309,0,0,0,0,0,4 94,3,330.5,-200.5,61.56033278,-37.34598309,0,0,0,0,0,4 95,3,346.5,-200.5,64.54056501,-37.34598309,0,0,0,0,0,4 96,3,362.5,-200.5,67.5207898,-37.34598309,0,0,0,0,0,4 93,3,314.5,-200.5,58.58010639,-37.34598309,0,0,0,0,0,4 97,3,378.5,-200.5,70.50101459,-37.34598309,0,0,0,0,0,4 98,3,394.5,-200.5,73.48124683,-37.34598309,0,0,0,0,0,4 99,3,410.5,-200.5,76.46147162,-37.34598309,0,0,0,0,0,4 100,3,426.5,-200.5,79.44170386,-37.34598309,0,0,0,0,0,4 101,3,442.5,-200.5,82.42192864,-37.34598309,0,0,0,0,0,4 102,3,458.5,-200.5,85.40215343,-37.34598309,0,0,0,0,0,4 103,3,474.5,-200.5,88.38238567,-37.34598309,0,0,0,0,0,4 100,3,426.5,-200.5,79.4417006628571,-37.34598309,0,0,0,0,0,4 104,3,490.5,-200.5,91.36261046,-37.34598309,0,0,0,0,0,4 105,3,506.5,-200.5,94.3428427,-37.34598309,0,0,0,0,0,4 106,3,522.5,-200.5,97.32306749,-37.34598309,0,0,0,0,0,4 107,3,538.5,-200.5,100.3032997,-37.34598309,0,0,0,0,0,4 108,3,554.5,-200.5,103.2835245,-37.34598309,0,0,0,0,0,4 109,3,570.5,-200.5,106.2637493,-37.34598309,0,0,0,0,0,4 110,3,586.5,-200.5,109.2439815,-37.34598309,0,0,0,0,0,4 107,3,538.5,-200.5,100.303296521429,-37.34598309,0,0,0,0,0,4 111,3,602.5,-200.5,112.2242063,-37.34598309,0,0,0,0,0,4 112,3,618.5,-200.5,115.2044386,-37.34598309,0,0,0,0,0,4 113,3,634.5,-200.5,118.1846634,-37.34598309,0,0,0,0,0,4 114,3,650.5,-200.5,121.1648956,-37.34598309,0,0,0,0,0,4 115,3,666.5,-200.5,124.1451204,-37.34598309,0,0,0,0,0,4 116,3,682.5,-200.5,127.1253526,-37.34598309,0,0,0,0,0,4 117,3,698.5,-200.5,130.10557,-37.34598309,0,0,0,0,0,4 114,3,650.5,-200.5,121.164892414286,-37.34598309,0,0,0,0,0,4 118,3,714.5,-200.5,133.0858022,-37.34598309,0,0,0,0,0,4 119,3,730.5,-200.5,136.0660344,-37.34598309,0,0,0,0,0,4 120,3,746.5,-200.5,139.0462667,-37.34598309,0,0,0,0,0,4 121,3,762.5,-200.5,142.026484,-37.34598309,0,0,0,0,0,4 122,3,778.5,-200.5,145.0067163,-37.34598309,0,0,0,0,0,4 123,3,794.5,-200.5,147.9869485,-37.34598309,0,0,0,0,0,4 124,3,810.5,-200.5,150.9671658,-37.34598309,0,0,0,0,0,4 121,3,762.5,-200.5,142.026488271429,-37.34598309,0,0,0,0,0,4 125,3,826.5,-200.5,153.9473981,-37.34598309,0,0,0,0,0,4 126,3,842.5,-200.5,156.9276303,-37.34598309,0,0,0,0,0,4 127,3,858.5,-200.5,159.9078625,-37.34598309,0,0,0,0,0,4 128,3,874.5,-200.5,162.8880799,-37.34598309,0,0,0,0,0,4 129,3,890.5,-200.5,165.8683121,-37.34598309,0,0,0,0,0,4 130,3,906.5,-200.5,168.8485444,-37.34598309,0,0,0,0,0,4 131,3,922.5,-200.5,171.8287617,-37.34598309,0,0,0,0,0,4 128,3,874.5,-200.5,162.888084142857,-37.34598309,0,0,0,0,0,4 132,3,938.5,-200.5,174.8089939,-37.34598309,0,0,0,0,0,4 133,3,954.5,-200.5,177.7892262,-37.34598309,0,0,0,0,0,4 134,3,970.5,-200.5,180.7694584,-37.34598309,0,0,0,0,0,4 135,3,986.5,-200.5,183.7496758,-37.34598309,0,0,0,0,0,4 136,3,1002.5,-200.5,186.729908,-37.34598309,0,0,0,0,0,4 137,3,1018.5,-200.5,189.7101402,-37.34598309,0,0,0,0,0,4 138,3,1034.5,-200.5,192.6903576,-37.34598309,0,0,0,0,0,4 135,3,986.5,-200.5,183.749680014286,-37.34598309,0,0,0,0,0,4 139,3,1050.5,-200.5,195.6705898,-37.34598309,0,0,0,0,0,4 140,3,1066.5,-200.5,198.650822,-37.34598309,0,0,0,0,0,4 141,3,1082.5,-200.5,201.6310543,-37.34598309,0,0,0,0,0,4 142,3,1098.5,-200.5,204.6112716,-37.34598309,0,0,0,0,0,4 143,3,1114.5,-200.5,207.5915039,-37.34598309,0,0,0,0,0,4 144,3,1130.5,-200.5,210.5717361,-37.34598309,0,0,0,0,0,4 145,3,1146.5,-200.5,213.5519534,-37.34598309,0,0,0,0,0,4 142,3,1098.5,-200.5,204.611275871429,-37.34598309,0,0,0,0,0,4 146,3,1162.5,-200.5,216.5321857,-37.34598309,0,0,0,0,0,4 147,3,1178.5,-200.5,219.5124179,-37.34598309,0,0,0,0,0,4 148,3,1194.5,-200.5,222.4926353,-37.34598309,0,0,0,0,0,4 149,3,1210.5,-200.5,225.4728675,-37.34598309,0,0,0,0,0,4 150,3,1226.5,-200.5,228.4530997,-37.34598309,0,0,0,0,0,4 151,3,1242.5,-200.5,231.433332,-37.34598309,0,0,0,0,0,4 152,3,1258.5,-200.5,234.4135493,-37.34598309,0,0,0,0,0,4 149,3,1210.5,-200.5,225.472869628571,-37.34598309,0,0,0,0,0,4 153,3,1274.5,-200.5,237.3937815,-37.34598309,0,0,0,0,0,4 154,3,1290.5,-200.5,240.3740138,-37.34598309,0,0,0,0,0,4 155,3,1306.5,-200.5,243.3542311,-37.34598309,0,0,0,0,0,4 156,3,1322.5,-200.5,246.3344634,-37.34598309,0,0,0,0,0,4 157,3,1338.5,-200.5,249.3146956,-37.34598309,0,0,0,0,0,4 158,3,1354.5,-200.5,252.2949278,-37.34598309,0,0,0,0,0,4 0,4,-1173.5,-184.5,-218.5810953,-34.36575457,0,0,0,0,0,4 133.285714285714,3.14285714285714,959.071428571429,-198.214285714286,178.640716842857,-36.9202361585714,0,0,0,0,0,4 1,4,-1157.5,-184.5,-215.6008631,-34.36575457,0,0,0,0,0,4 2,4,-1141.5,-184.5,-212.6206309,-34.36575457,0,0,0,0,0,4 3,4,-1125.5,-184.5,-209.6404135,-34.36575457,0,0,0,0,0,4 4,4,-1109.5,-184.5,-206.6601813,-34.36575457,0,0,0,0,0,4 5,4,-1093.5,-184.5,-203.679949,-34.36575457,0,0,0,0,0,4 6,4,-1077.5,-184.5,-200.6997317,-34.36575457,0,0,0,0,0,4 7,4,-1061.5,-184.5,-197.7194995,-34.36575457,0,0,0,0,0,4 4,4,-1109.5,-184.5,-206.660181285714,-34.36575457,0,0,0,0,0,4 8,4,-1045.5,-184.5,-194.7392672,-34.36575457,0,0,0,0,0,4 9,4,-1029.5,-184.5,-191.759035,-34.36575457,0,0,0,0,0,4 10,4,-1013.5,-184.5,-188.7788177,-34.36575457,0,0,0,0,0,4 11,4,-997.5,-184.5,-185.7985854,-34.36575457,0,0,0,0,0,4 12,4,-981.5,-184.5,-182.8183532,-34.36575457,0,0,0,0,0,4 13,4,-965.5,-184.5,-179.8381358,-34.36575457,0,0,0,0,0,4 14,4,-949.5,-184.5,-176.8579036,-34.36575457,0,0,0,0,0,4 11,4,-997.5,-184.5,-185.798585414286,-34.36575457,0,0,0,0,0,4 15,4,-933.5,-184.5,-173.8776714,-34.36575457,0,0,0,0,0,4 16,4,-917.5,-184.5,-170.8974391,-34.36575457,0,0,0,0,0,4 17,4,-901.5,-184.5,-167.9172218,-34.36575457,0,0,0,0,0,4 18,4,-885.5,-184.5,-164.9369895,-34.36575457,0,0,0,0,0,4 19,4,-869.5,-184.5,-161.9567573,-34.36575457,0,0,0,0,0,4 20,4,-853.5,-184.5,-158.97654,-34.36575457,0,0,0,0,0,4 21,4,-837.5,-184.5,-155.9963077,-34.36575457,0,0,0,0,0,4 18,4,-885.5,-184.5,-164.936989542857,-34.36575457,0,0,0,0,0,4 22,4,-821.5,-184.5,-153.0160755,-34.36575457,0,0,0,0,0,4 23,4,-805.5,-184.5,-150.0358433,-34.36575457,0,0,0,0,0,4 24,4,-789.5,-184.5,-147.0556259,-34.36575457,0,0,0,0,0,4 25,4,-773.5,-184.5,-144.0753937,-34.36575457,0,0,0,0,0,4 26,4,-757.5,-184.5,-141.0951614,-34.36575457,0,0,0,0,0,4 27,4,-741.5,-184.5,-138.1149441,-34.36575457,0,0,0,0,0,4 28,4,-725.5,-184.5,-135.1347119,-34.36575457,0,0,0,0,0,4 25,4,-773.5,-184.5,-144.075393685714,-34.36575457,0,0,0,0,0,4 29,4,-709.5,-184.5,-132.1544796,-34.36575457,0,0,0,0,0,4 30,4,-693.5,-184.5,-129.1742623,-34.36575457,0,0,0,0,0,4 31,4,-677.5,-184.5,-126.19403,-34.36575457,0,0,0,0,0,4 32,4,-661.5,-184.5,-123.2137978,-34.36575457,0,0,0,0,0,4 33,4,-645.5,-184.5,-120.233573,-34.36575457,0,0,0,0,0,4 34,4,-629.5,-184.5,-117.2533408,-34.36575457,0,0,0,0,0,4 35,4,-613.5,-184.5,-114.273116,-34.36575457,0,0,0,0,0,4 32,4,-661.5,-184.5,-123.213799928571,-34.36575457,0,0,0,0,0,4 36,4,-597.5,-184.5,-111.2928838,-34.36575457,0,0,0,0,0,4 37,4,-581.5,-184.5,-108.312659,-34.36575457,0,0,0,0,0,4 38,4,-565.5,-184.5,-105.3324342,-34.36575457,0,0,0,0,0,4 39,4,-549.5,-184.5,-102.3522019,-34.36575457,0,0,0,0,0,4 40,4,-533.5,-184.5,-99.37197715,-34.36575457,0,0,0,0,0,4 41,4,-517.5,-184.5,-96.39174491,-34.36575457,0,0,0,0,0,4 42,4,-501.5,-184.5,-93.41152012,-34.36575457,0,0,0,0,0,4 39,4,-549.5,-184.5,-102.352203011429,-34.36575457,0,0,0,0,0,4 43,4,-485.5,-184.5,-90.43129534,-34.36575457,0,0,0,0,0,4 44,4,-469.5,-184.5,-87.4510631,-34.36575457,0,0,0,0,0,4 45,4,-453.5,-184.5,-84.47083831,-34.36575457,0,0,0,0,0,4 46,4,-437.5,-184.5,-81.49060607,-34.36575457,0,0,0,0,0,4 47,4,-421.5,-184.5,-78.51038128,-34.36575457,0,0,0,0,0,4 48,4,-405.5,-184.5,-75.53014904,-34.36575457,0,0,0,0,0,4 49,4,-389.5,-184.5,-72.54992425,-34.36575457,0,0,0,0,0,4 46,4,-437.5,-184.5,-81.4906081985714,-34.36575457,0,0,0,0,0,4 50,4,-373.5,-184.5,-69.56969947,-34.36575457,0,0,0,0,0,4 51,4,-357.5,-184.5,-66.58946723,-34.36575457,0,0,0,0,0,4 52,4,-341.5,-184.5,-63.60924244,-34.36575457,0,0,0,0,0,4 53,4,-325.5,-184.5,-60.62901393,-34.36575457,0,0,0,0,0,4 54,4,-309.5,-184.5,-57.64878541,-34.36575457,0,0,0,0,0,4 55,4,-293.5,-184.5,-54.6685569,-34.36575457,0,0,0,0,0,4 56,4,-277.5,-184.5,-51.68832839,-34.36575457,0,0,0,0,0,4 53,4,-325.5,-184.5,-60.6290133957143,-34.36575457,0,0,0,0,0,4 57,4,-261.5,-184.5,-48.70809987,-34.36575457,0,0,0,0,0,4 58,4,-245.5,-184.5,-45.72787136,-34.36575457,0,0,0,0,0,4 59,4,-229.5,-184.5,-42.74764284,-34.36575457,0,0,0,0,0,4 60,4,-213.5,-184.5,-39.76741806,-34.36575457,0,0,0,0,0,4 61,4,-197.5,-184.5,-36.78718954,-34.36575457,0,0,0,0,0,4 62,4,-181.5,-184.5,-33.80696103,-34.36575457,0,0,0,0,0,4 63,4,-165.5,-184.5,-30.82673252,-34.36575457,0,0,0,0,0,4 60,4,-213.5,-184.5,-39.76741646,-34.36575457,0,0,0,0,0,4 64,4,-149.5,-184.5,-27.846504,-34.36575457,0,0,0,0,0,4 65,4,-133.5,-184.5,-24.86627735,-34.36575457,0,0,0,0,0,4 66,4,-117.5,-184.5,-21.88604884,-34.36575457,0,0,0,0,0,4 67,4,-101.5,-184.5,-18.90582033,-34.36575457,0,0,0,0,0,4 68,4,-85.5,-184.5,-15.92559367,-34.36575457,0,0,0,0,0,4 69,4,-69.5,-184.5,-12.94536516,-34.36575457,0,0,0,0,0,4 70,4,-53.5,-184.5,-9.965137579,-34.36575457,0,0,0,0,0,4 67,4,-101.5,-184.5,-18.9058209898571,-34.36575457,0,0,0,0,0,4 71,4,-37.5,-184.5,-6.984909065,-34.36575457,0,0,0,0,0,4 72,4,-21.5,-184.5,-4.004681483,-34.36575457,0,0,0,0,0,4 73,4,-5.5,-184.5,-1.024453319,-34.36575457,0,0,0,0,0,4 74,4,10.5,-184.5,1.955774613,-34.36575457,0,0,0,0,0,4 75,4,26.5,-184.5,4.936002661,-34.36575457,0,0,0,0,0,4 76,4,42.5,-184.5,7.916230708,-34.36575457,0,0,0,0,0,4 77,4,58.5,-184.5,10.89645829,-34.36575457,0,0,0,0,0,4 74,4,10.5,-184.5,1.95577462928571,-34.36575457,0,0,0,0,0,4 78,4,74.5,-184.5,13.8766868,-34.36575457,0,0,0,0,0,4 79,4,90.5,-184.5,16.85691439,-34.36575457,0,0,0,0,0,4 80,4,106.5,-184.5,19.8371429,-34.36575457,0,0,0,0,0,4 81,4,122.5,-184.5,22.81736955,-34.36575457,0,0,0,0,0,4 82,4,138.5,-184.5,25.79759806,-34.36575457,0,0,0,0,0,4 83,4,154.5,-184.5,28.77782658,-34.36575457,0,0,0,0,0,4 84,4,170.5,-184.5,31.75805509,-34.36575457,0,0,0,0,0,4 81,4,122.5,-184.5,22.8173704814286,-34.36575457,0,0,0,0,0,4 85,4,186.5,-184.5,34.7382836,-34.36575457,0,0,0,0,0,4 86,4,202.5,-184.5,37.71850839,-34.36575457,0,0,0,0,0,4 87,4,218.5,-184.5,40.69873691,-34.36575457,0,0,0,0,0,4 88,4,234.5,-184.5,43.67896542,-34.36575457,0,0,0,0,0,4 89,4,250.5,-184.5,46.65919393,-34.36575457,0,0,0,0,0,4 90,4,266.5,-184.5,49.63942245,-34.36575457,0,0,0,0,0,4 91,4,282.5,-184.5,52.61965096,-34.36575457,0,0,0,0,0,4 88,4,234.5,-184.5,43.6789659514286,-34.36575457,0,0,0,0,0,4 92,4,298.5,-184.5,55.59987947,-34.36575457,0,0,0,0,0,4 93,4,314.5,-184.5,58.58010426,-34.36575457,0,0,0,0,0,4 94,4,330.5,-184.5,61.56033278,-34.36575457,0,0,0,0,0,4 95,4,346.5,-184.5,64.54056501,-34.36575457,0,0,0,0,0,4 96,4,362.5,-184.5,67.5207898,-34.36575457,0,0,0,0,0,4 97,4,378.5,-184.5,70.50101459,-34.36575457,0,0,0,0,0,4 98,4,394.5,-184.5,73.48124683,-34.36575457,0,0,0,0,0,4 95,4,346.5,-184.5,64.54056182,-34.36575457,0,0,0,0,0,4 99,4,410.5,-184.5,76.46147162,-34.36575457,0,0,0,0,0,4 100,4,426.5,-184.5,79.44170386,-34.36575457,0,0,0,0,0,4 101,4,442.5,-184.5,82.42192864,-34.36575457,0,0,0,0,0,4 102,4,458.5,-184.5,85.40215343,-34.36575457,0,0,0,0,0,4 103,4,474.5,-184.5,88.38238567,-34.36575457,0,0,0,0,0,4 104,4,490.5,-184.5,91.36261046,-34.36575457,0,0,0,0,0,4 105,4,506.5,-184.5,94.3428427,-34.36575457,0,0,0,0,0,4 102,4,458.5,-184.5,85.4021566257143,-34.36575457,0,0,0,0,0,4 106,4,522.5,-184.5,97.32306749,-34.36575457,0,0,0,0,0,4 107,4,538.5,-184.5,100.3032997,-34.36575457,0,0,0,0,0,4 108,4,554.5,-184.5,103.2835245,-34.36575457,0,0,0,0,0,4 109,4,570.5,-184.5,106.2637493,-34.36575457,0,0,0,0,0,4 110,4,586.5,-184.5,109.2439815,-34.36575457,0,0,0,0,0,4 111,4,602.5,-184.5,112.2242063,-34.36575457,0,0,0,0,0,4 112,4,618.5,-184.5,115.2044386,-34.36575457,0,0,0,0,0,4 109,4,570.5,-184.5,106.263752484286,-34.36575457,0,0,0,0,0,4 113,4,634.5,-184.5,118.1846634,-34.36575457,0,0,0,0,0,4 114,4,650.5,-184.5,121.1648956,-34.36575457,0,0,0,0,0,4 115,4,666.5,-184.5,124.1451204,-34.36575457,0,0,0,0,0,4 116,4,682.5,-184.5,127.1253526,-34.36575457,0,0,0,0,0,4 117,4,698.5,-184.5,130.10557,-34.36575457,0,0,0,0,0,4 118,4,714.5,-184.5,133.0858022,-34.36575457,0,0,0,0,0,4 119,4,730.5,-184.5,136.0660344,-34.36575457,0,0,0,0,0,4 116,4,682.5,-184.5,127.125348371429,-34.36575457,0,0,0,0,0,4 120,4,746.5,-184.5,139.0462667,-34.36575457,0,0,0,0,0,4 121,4,762.5,-184.5,142.026484,-34.36575457,0,0,0,0,0,4 122,4,778.5,-184.5,145.0067163,-34.36575457,0,0,0,0,0,4 123,4,794.5,-184.5,147.9869485,-34.36575457,0,0,0,0,0,4 124,4,810.5,-184.5,150.9671658,-34.36575457,0,0,0,0,0,4 125,4,826.5,-184.5,153.9473981,-34.36575457,0,0,0,0,0,4 126,4,842.5,-184.5,156.9276303,-34.36575457,0,0,0,0,0,4 123,4,794.5,-184.5,147.986944242857,-34.36575457,0,0,0,0,0,4 127,4,858.5,-184.5,159.9078625,-34.36575457,0,0,0,0,0,4 128,4,874.5,-184.5,162.8880799,-34.36575457,0,0,0,0,0,4 129,4,890.5,-184.5,165.8683121,-34.36575457,0,0,0,0,0,4 130,4,906.5,-184.5,168.8485444,-34.36575457,0,0,0,0,0,4 131,4,922.5,-184.5,171.8287617,-34.36575457,0,0,0,0,0,4 132,4,938.5,-184.5,174.8089939,-34.36575457,0,0,0,0,0,4 133,4,954.5,-184.5,177.7892262,-34.36575457,0,0,0,0,0,4 130,4,906.5,-184.5,168.8485401,-34.36575457,0,0,0,0,0,4 134,4,970.5,-184.5,180.7694584,-34.36575457,0,0,0,0,0,4 135,4,986.5,-184.5,183.7496758,-34.36575457,0,0,0,0,0,4 136,4,1002.5,-184.5,186.729908,-34.36575457,0,0,0,0,0,4 137,4,1018.5,-184.5,189.7101402,-34.36575457,0,0,0,0,0,4 138,4,1034.5,-184.5,192.6903576,-34.36575457,0,0,0,0,0,4 139,4,1050.5,-184.5,195.6705898,-34.36575457,0,0,0,0,0,4 140,4,1066.5,-184.5,198.650822,-34.36575457,0,0,0,0,0,4 137,4,1018.5,-184.5,189.710135971429,-34.36575457,0,0,0,0,0,4 141,4,1082.5,-184.5,201.6310543,-34.36575457,0,0,0,0,0,4 142,4,1098.5,-184.5,204.6112716,-34.36575457,0,0,0,0,0,4 143,4,1114.5,-184.5,207.5915039,-34.36575457,0,0,0,0,0,4 144,4,1130.5,-184.5,210.5717361,-34.36575457,0,0,0,0,0,4 145,4,1146.5,-184.5,213.5519534,-34.36575457,0,0,0,0,0,4 146,4,1162.5,-184.5,216.5321857,-34.36575457,0,0,0,0,0,4 147,4,1178.5,-184.5,219.5124179,-34.36575457,0,0,0,0,0,4 144,4,1130.5,-184.5,210.571731842857,-34.36575457,0,0,0,0,0,4 148,4,1194.5,-184.5,222.4926353,-34.36575457,0,0,0,0,0,4 149,4,1210.5,-184.5,225.4728675,-34.36575457,0,0,0,0,0,4 150,4,1226.5,-184.5,228.4530997,-34.36575457,0,0,0,0,0,4 151,4,1242.5,-184.5,231.433332,-34.36575457,0,0,0,0,0,4 152,4,1258.5,-184.5,234.4135493,-34.36575457,0,0,0,0,0,4 153,4,1274.5,-184.5,237.3937815,-34.36575457,0,0,0,0,0,4 154,4,1290.5,-184.5,240.3740138,-34.36575457,0,0,0,0,0,4 151,4,1242.5,-184.5,231.433325585714,-34.36575457,0,0,0,0,0,4 155,4,1306.5,-184.5,243.3542311,-34.36575457,0,0,0,0,0,4 156,4,1322.5,-184.5,246.3344634,-34.36575457,0,0,0,0,0,4 157,4,1338.5,-184.5,249.3146956,-34.36575457,0,0,0,0,0,4 158,4,1354.5,-184.5,252.2949278,-34.36575457,0,0,0,0,0,4 0,5,-1173.5,-168.5,-218.5810953,-31.38552606,0,0,0,0,0,4 1,5,-1157.5,-168.5,-215.6008631,-31.38552606,0,0,0,0,0,4 2,5,-1141.5,-168.5,-212.6206309,-31.38552606,0,0,0,0,0,4 89.8571428571429,4.42857142857143,264.214285714286,-177.642857142857,49.2136755142857,-33.08851378,0,0,0,0,0,4 3,5,-1125.5,-168.5,-209.6404135,-31.38552606,0,0,0,0,0,4 4,5,-1109.5,-168.5,-206.6601813,-31.38552606,0,0,0,0,0,4 5,5,-1093.5,-168.5,-203.679949,-31.38552606,0,0,0,0,0,4 6,5,-1077.5,-168.5,-200.6997317,-31.38552606,0,0,0,0,0,4 7,5,-1061.5,-168.5,-197.7194995,-31.38552606,0,0,0,0,0,4 8,5,-1045.5,-168.5,-194.7392672,-31.38552606,0,0,0,0,0,4 9,5,-1029.5,-168.5,-191.759035,-31.38552606,0,0,0,0,0,4 6,5,-1077.5,-168.5,-200.699725314286,-31.38552606,0,0,0,0,0,4 10,5,-1013.5,-168.5,-188.7788177,-31.38552606,0,0,0,0,0,4 11,5,-997.5,-168.5,-185.7985854,-31.38552606,0,0,0,0,0,4 12,5,-981.5,-168.5,-182.8183532,-31.38552606,0,0,0,0,0,4 13,5,-965.5,-168.5,-179.8381358,-31.38552606,0,0,0,0,0,4 14,5,-949.5,-168.5,-176.8579036,-31.38552606,0,0,0,0,0,4 15,5,-933.5,-168.5,-173.8776714,-31.38552606,0,0,0,0,0,4 16,5,-917.5,-168.5,-170.8974391,-31.38552606,0,0,0,0,0,4 13,5,-965.5,-168.5,-179.838129457143,-31.38552606,0,0,0,0,0,4 17,5,-901.5,-168.5,-167.9172218,-31.38552606,0,0,0,0,0,4 18,5,-885.5,-168.5,-164.9369895,-31.38552606,0,0,0,0,0,4 19,5,-869.5,-168.5,-161.9567573,-31.38552606,0,0,0,0,0,4 20,5,-853.5,-168.5,-158.97654,-31.38552606,0,0,0,0,0,4 21,5,-837.5,-168.5,-155.9963077,-31.38552606,0,0,0,0,0,4 22,5,-821.5,-168.5,-153.0160755,-31.38552606,0,0,0,0,0,4 23,5,-805.5,-168.5,-150.0358433,-31.38552606,0,0,0,0,0,4 20,5,-853.5,-168.5,-158.976533585714,-31.38552606,0,0,0,0,0,4 24,5,-789.5,-168.5,-147.0556259,-31.38552606,0,0,0,0,0,4 25,5,-773.5,-168.5,-144.0753937,-31.38552606,0,0,0,0,0,4 26,5,-757.5,-168.5,-141.0951614,-31.38552606,0,0,0,0,0,4 27,5,-741.5,-168.5,-138.1149441,-31.38552606,0,0,0,0,0,4 28,5,-725.5,-168.5,-135.1347119,-31.38552606,0,0,0,0,0,4 29,5,-709.5,-168.5,-132.1544796,-31.38552606,0,0,0,0,0,4 30,5,-693.5,-168.5,-129.1742623,-31.38552606,0,0,0,0,0,4 27,5,-741.5,-168.5,-138.114939842857,-31.38552606,0,0,0,0,0,4 31,5,-677.5,-168.5,-126.19403,-31.38552606,0,0,0,0,0,4 32,5,-661.5,-168.5,-123.2137978,-31.38552606,0,0,0,0,0,4 33,5,-645.5,-168.5,-120.233573,-31.38552606,0,0,0,0,0,4 34,5,-629.5,-168.5,-117.2533408,-31.38552606,0,0,0,0,0,4 35,5,-613.5,-168.5,-114.273116,-31.38552606,0,0,0,0,0,4 36,5,-597.5,-168.5,-111.2928838,-31.38552606,0,0,0,0,0,4 37,5,-581.5,-168.5,-108.312659,-31.38552606,0,0,0,0,0,4 34,5,-629.5,-168.5,-117.253342914286,-31.38552606,0,0,0,0,0,4 38,5,-565.5,-168.5,-105.3324342,-31.38552606,0,0,0,0,0,4 39,5,-549.5,-168.5,-102.3522019,-31.38552606,0,0,0,0,0,4 40,5,-533.5,-168.5,-99.37197715,-31.38552606,0,0,0,0,0,4 41,5,-517.5,-168.5,-96.39174491,-31.38552606,0,0,0,0,0,4 42,5,-501.5,-168.5,-93.41152012,-31.38552606,0,0,0,0,0,4 43,5,-485.5,-168.5,-90.43129534,-31.38552606,0,0,0,0,0,4 44,5,-469.5,-168.5,-87.4510631,-31.38552606,0,0,0,0,0,4 41,5,-517.5,-168.5,-96.3917481028571,-31.38552606,0,0,0,0,0,4 45,5,-453.5,-168.5,-84.47083831,-31.38552606,0,0,0,0,0,4 46,5,-437.5,-168.5,-81.49060607,-31.38552606,0,0,0,0,0,4 47,5,-421.5,-168.5,-78.51038128,-31.38552606,0,0,0,0,0,4 48,5,-405.5,-168.5,-75.53014904,-31.38552606,0,0,0,0,0,4 49,5,-389.5,-168.5,-72.54992425,-31.38552606,0,0,0,0,0,4 50,5,-373.5,-168.5,-69.56969947,-31.38552606,0,0,0,0,0,4 51,5,-357.5,-168.5,-66.58946723,-31.38552606,0,0,0,0,0,4 48,5,-405.5,-168.5,-75.5301522357143,-31.38552606,0,0,0,0,0,4 52,5,-341.5,-168.5,-63.60924244,-31.38552606,0,0,0,0,0,4 53,5,-325.5,-168.5,-60.62901393,-31.38552606,0,0,0,0,0,4 54,5,-309.5,-168.5,-57.64878541,-31.38552606,0,0,0,0,0,4 55,5,-293.5,-168.5,-54.6685569,-31.38552606,0,0,0,0,0,4 56,5,-277.5,-168.5,-51.68832839,-31.38552606,0,0,0,0,0,4 57,5,-261.5,-168.5,-48.70809987,-31.38552606,0,0,0,0,0,4 58,5,-245.5,-168.5,-45.72787136,-31.38552606,0,0,0,0,0,4 55,5,-293.5,-168.5,-54.6685569,-31.38552606,0,0,0,0,0,4 59,5,-229.5,-168.5,-42.74764284,-31.38552606,0,0,0,0,0,4 60,5,-213.5,-168.5,-39.76741806,-31.38552606,0,0,0,0,0,4 61,5,-197.5,-168.5,-36.78718954,-31.38552606,0,0,0,0,0,4 62,5,-181.5,-168.5,-33.80696103,-31.38552606,0,0,0,0,0,4 63,5,-165.5,-168.5,-30.82673252,-31.38552606,0,0,0,0,0,4 64,5,-149.5,-168.5,-27.846504,-31.38552606,0,0,0,0,0,4 65,5,-133.5,-168.5,-24.86627735,-31.38552606,0,0,0,0,0,4 62,5,-181.5,-168.5,-33.8069607628571,-31.38552606,0,0,0,0,0,4 66,5,-117.5,-168.5,-21.88604884,-31.38552606,0,0,0,0,0,4 67,5,-101.5,-168.5,-18.90582033,-31.38552606,0,0,0,0,0,4 68,5,-85.5,-168.5,-15.92559367,-31.38552606,0,0,0,0,0,4 69,5,-69.5,-168.5,-12.94536516,-31.38552606,0,0,0,0,0,4 70,5,-53.5,-168.5,-9.965137579,-31.38552606,0,0,0,0,0,4 71,5,-37.5,-168.5,-6.984909065,-31.38552606,0,0,0,0,0,4 72,5,-21.5,-168.5,-4.004681483,-31.38552606,0,0,0,0,0,4 69,5,-69.5,-168.5,-12.945365161,-31.38552606,0,0,0,0,0,4 73,5,-5.5,-168.5,-1.024453319,-31.38552606,0,0,0,0,0,4 74,5,10.5,-168.5,1.955774613,-31.38552606,0,0,0,0,0,4 75,5,26.5,-168.5,4.936002661,-31.38552606,0,0,0,0,0,4 76,5,42.5,-168.5,7.916230708,-31.38552606,0,0,0,0,0,4 77,5,58.5,-168.5,10.89645829,-31.38552606,0,0,0,0,0,4 78,5,74.5,-168.5,13.8766868,-31.38552606,0,0,0,0,0,4 79,5,90.5,-168.5,16.85691439,-31.38552606,0,0,0,0,0,4 76,5,42.5,-168.5,7.91623059185714,-31.38552606,0,0,0,0,0,4 80,5,106.5,-168.5,19.8371429,-31.38552606,0,0,0,0,0,4 81,5,122.5,-168.5,22.81736955,-31.38552606,0,0,0,0,0,4 82,5,138.5,-168.5,25.79759806,-31.38552606,0,0,0,0,0,4 83,5,154.5,-168.5,28.77782658,-31.38552606,0,0,0,0,0,4 84,5,170.5,-168.5,31.75805509,-31.38552606,0,0,0,0,0,4 85,5,186.5,-168.5,34.7382836,-31.38552606,0,0,0,0,0,4 86,5,202.5,-168.5,37.71850839,-31.38552606,0,0,0,0,0,4 83,5,154.5,-168.5,28.77782631,-31.38552606,0,0,0,0,0,4 87,5,218.5,-168.5,40.69873691,-31.38552606,0,0,0,0,0,4 88,5,234.5,-168.5,43.67896542,-31.38552606,0,0,0,0,0,4 89,5,250.5,-168.5,46.65919393,-31.38552606,0,0,0,0,0,4 90,5,266.5,-168.5,49.63942245,-31.38552606,0,0,0,0,0,4 91,5,282.5,-168.5,52.61965096,-31.38552606,0,0,0,0,0,4 92,5,298.5,-168.5,55.59987947,-31.38552606,0,0,0,0,0,4 93,5,314.5,-168.5,58.58010426,-31.38552606,0,0,0,0,0,4 90,5,266.5,-168.5,49.6394219142857,-31.38552606,0,0,0,0,0,4 94,5,330.5,-168.5,61.56033278,-31.38552606,0,0,0,0,0,4 95,5,346.5,-168.5,64.54056501,-31.38552606,0,0,0,0,0,4 96,5,362.5,-168.5,67.5207898,-31.38552606,0,0,0,0,0,4 97,5,378.5,-168.5,70.50101459,-31.38552606,0,0,0,0,0,4 98,5,394.5,-168.5,73.48124683,-31.38552606,0,0,0,0,0,4 99,5,410.5,-168.5,76.46147162,-31.38552606,0,0,0,0,0,4 100,5,426.5,-168.5,79.44170386,-31.38552606,0,0,0,0,0,4 97,5,378.5,-168.5,70.5010177842857,-31.38552606,0,0,0,0,0,4 101,5,442.5,-168.5,82.42192864,-31.38552606,0,0,0,0,0,4 102,5,458.5,-168.5,85.40215343,-31.38552606,0,0,0,0,0,4 103,5,474.5,-168.5,88.38238567,-31.38552606,0,0,0,0,0,4 104,5,490.5,-168.5,91.36261046,-31.38552606,0,0,0,0,0,4 105,5,506.5,-168.5,94.3428427,-31.38552606,0,0,0,0,0,4 106,5,522.5,-168.5,97.32306749,-31.38552606,0,0,0,0,0,4 107,5,538.5,-168.5,100.3032997,-31.38552606,0,0,0,0,0,4 104,5,490.5,-168.5,91.3626125842857,-31.38552606,0,0,0,0,0,4 108,5,554.5,-168.5,103.2835245,-31.38552606,0,0,0,0,0,4 109,5,570.5,-168.5,106.2637493,-31.38552606,0,0,0,0,0,4 110,5,586.5,-168.5,109.2439815,-31.38552606,0,0,0,0,0,4 111,5,602.5,-168.5,112.2242063,-31.38552606,0,0,0,0,0,4 112,5,618.5,-168.5,115.2044386,-31.38552606,0,0,0,0,0,4 113,5,634.5,-168.5,118.1846634,-31.38552606,0,0,0,0,0,4 114,5,650.5,-168.5,121.1648956,-31.38552606,0,0,0,0,0,4 111,5,602.5,-168.5,112.224208457143,-31.38552606,0,0,0,0,0,4 115,5,666.5,-168.5,124.1451204,-31.38552606,0,0,0,0,0,4 116,5,682.5,-168.5,127.1253526,-31.38552606,0,0,0,0,0,4 117,5,698.5,-168.5,130.10557,-31.38552606,0,0,0,0,0,4 118,5,714.5,-168.5,133.0858022,-31.38552606,0,0,0,0,0,4 119,5,730.5,-168.5,136.0660344,-31.38552606,0,0,0,0,0,4 120,5,746.5,-168.5,139.0462667,-31.38552606,0,0,0,0,0,4 121,5,762.5,-168.5,142.026484,-31.38552606,0,0,0,0,0,4 118,5,714.5,-168.5,133.085804328571,-31.38552606,0,0,0,0,0,4 122,5,778.5,-168.5,145.0067163,-31.38552606,0,0,0,0,0,4 123,5...

Sign in to comment.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!