diff --git a/2008-displacement/README b/2008-displacement/README index fe8f20f..84f27bb 100644 --- a/2008-displacement/README +++ b/2008-displacement/README @@ -15,9 +15,15 @@ for x in part2/*txt ; do grep '^.2' $x | awk '{ print $3,$5 }' >| $x.clean; done for x in part2/*txt ; do grep '^.2' $x | awk '{ print $3,$9 }' >| $x.clean; done ; ./vote part2/*clean | sort -rnk3 | head -30 ; rm -f part2/*clean # Get phase 3 and phase 4 stuff -ssh canard.zoy.org "cd test-20080329; tar cz *raster.txt *serp.txt" | tar xz +# .. from canard +ssh canard.zoy.org "cd test-20080329; tar cz *raster.txt" | tar xz +ssh canard.zoy.org "cd test-20080329; tar cz *serp.txt" | tar xz for x in *-raster.txt; do y="$x"; y="${y%%-raster.txt}"; y="${y%%.tiff}"; y="${y##usc-sipi}"; \mv "$x" part3/"$y".txt; done for x in *-serp.txt; do y="$x"; y="${y%%-serp.txt}"; y="${y%%.tiff}"; y="${y##usc-sipi}"; \mv "$x" part4/"$y".txt; done +# .. from poulet (cpushare) +scp poulet.zoy.org:cpushare/'test*-*.txt' . +for f in test6-*.txt; do grep '###' $f|cut -f2 -d'`'|cut -f1 -d"'"|tr / .|while read i ; do sed -ne '/`'$i'/,/limit/p' $f | cut -b61- >| part3/$(echo $i | cut -f5 -d.).txt ; done; done; rm -f test6-*.txt +for f in test7-*.txt; do grep '###' $f|cut -f2 -d'`'|cut -f1 -d"'"|tr / .|while read i ; do sed -ne '/`'$i'/,/limit/p' $f | cut -b61- >| part4/$(echo $i | cut -f5 -d.).txt ; done; done; rm -f test7-*.txt # Condorcet voting for part 3 and 4 for x in part3/*txt ; do cat $x | awk '{ print $2,$4 }' >| $x.clean; done ; ./vote part3/*clean | sort -rnk3 | head -20 ; rm -f part3/*clean @@ -37,6 +43,31 @@ cat part3/aerials2.1.01.txt | grep K | while read x k y ; do grep $k part3/* | a cat part4/aerials2.1.01.txt | grep K | while read x k y ; do grep $k part4/* | awk '{ dx+=$10; dy+=$12; n+=1 } END { print dx/n, dy/n }' | read dx dy; echo "$k $(grep $k part4/* | awk 'BEGIN { dx='$dx'; dy='$dy' } { x=dx-$10; y=dy-$12; t+=2.^-5*(x*x+y*y); a+=t*$4; n+=t } END { print a/n, n }')"; done | sort -nk2 | head -20 cat part4/aerials2.1.01.txt | grep K | while read x k y ; do grep $k part4/* | awk '{ dx+=$10; dy+=$12; n+=1 } END { print dx/n, dy/n }' | read dx dy; echo "$k $(grep $k part4/* | awk 'BEGIN { dx='$dx'; dy='$dy' } { x=dx-$10; y=dy-$12; t+=2.^-5*(x*x+y*y); a+=t*$8; n+=t } END { print a/n, n }')"; done | sort -nk2 | head -20 +# Plot lena displacement +set contour +unset surface +set view 0,0 +set cntrparam levels discrete 0.31, 0.35, 0.42, 0.52, 0.7, 1, 1.5 +set xrange [-1:1] +set yrange [1:-1] +set mxtics 2 +set mytics 2 +set size square +set xzeroaxis +set yzeroaxis +set xlabel "dx" font "Italic,32" +splot 'part0/lena-values.txt' with lines + + +#set border 0 +set style line 1 lt 1 lw 1 +set style line 2 lt 2 lw 1 +set style line 3 lt 3 lw 1 +set style line 4 lt 6 lw 1 +set style line 5 lt 1 lw 3 +set style line 6 lt 2 lw 3 +set style line 7 lt 3 lw 3 +set style line 8 lt 6 lw 3 ### ### ### diff --git a/2008-displacement/main-cpushare b/2008-displacement/main-cpushare index 3acc3b2..7aac61b 100755 --- a/2008-displacement/main-cpushare +++ b/2008-displacement/main-cpushare @@ -16,7 +16,7 @@ todo = 0 if len(sys.argv) < 4: print 'Usage: %s - [image list]' % (sys.argv[0],) sys.exit(-1) -mode = sys.argv[2][1] +mode = sys.argv[2] done = 0 source = sys.argv[3:] result = [False] * len(source) @@ -33,19 +33,25 @@ class buy_state_machine_class(object): self.handler = self.stringReceived def start(self): - global todo, source + global mode, todo, source + gd.gdMaxColors = 256 * 256 * 256 + while todo < len(source): + try: + self.index = todo + im = gd.image(source[self.index]) + break + except: + todo += 1 + self.result = "Error\n" if todo >= len(source): - return # We're finished... FIXME: is the transaction kept stuck? - self.index = todo + return # We're finished... FIXME: isn't the transaction stuck? todo += 1 - gd.gdMaxColors = 256 * 256 * 256 - im = gd.image(source[self.index]) # Send argument count self.protocol.sendString(PROTO_SECCOMP_FORWARD + chr(3)) # Send arguments msg = chr(3) msg += "bytecode\0" - msg += "-1\0" + msg += mode + "\0" msg += source[self.index] + "\0" self.protocol.sendString(PROTO_SECCOMP_FORWARD + msg) # Send image size diff --git a/2008-displacement/main.c b/2008-displacement/main.c index d09723f..613575e 100644 --- a/2008-displacement/main.c +++ b/2008-displacement/main.c @@ -24,7 +24,7 @@ static int WIDTH, HEIGHT; int main(int, char *[]); #ifdef BYTECODE -# define MAXIMAGES 128 +# define MAXIMAGES 6 static int slots[MAXIMAGES]; static double slotbuf[MAXIMAGES * MAXWIDTH * MAXHEIGHT]; @@ -382,36 +382,24 @@ static double dist(double const *p1, double const *p2, double max) static double *load(char const *name) { double *floats; - int x, y; + int w, h, x, y; #ifdef BYTECODE char c; if(sys_read(0, &c, 1) != 1) sys_exit(-5); - WIDTH = ((int)(unsigned char)c) << 8; + w = ((int)(unsigned char)c) << 8; if(sys_read(0, &c, 1) != 1) sys_exit(-5); - WIDTH |= (int)(unsigned char)c; + w |= (int)(unsigned char)c; if(sys_read(0, &c, 1) != 1) sys_exit(-5); - HEIGHT = ((int)(unsigned char)c) << 8; + h = ((int)(unsigned char)c) << 8; if(sys_read(0, &c, 1) != 1) sys_exit(-5); - HEIGHT |= (int)(unsigned char)c; - - floats = new(); - if(!floats) - return NULL; - - for(y = 0; y < HEIGHT; y++) - for(x = 0; x < WIDTH; x++) - { - if(sys_read(0, &c, 1) != 1) - sys_exit(-5); - put(floats, x, y, (double)(unsigned char)c / 0xff); - } + h |= (int)(unsigned char)c; #else SDL_Surface *tmp, *surface; uint32_t *pixels; @@ -420,12 +408,28 @@ static double *load(char const *name) if(!tmp) return NULL; - WIDTH = tmp->w > MAXWIDTH ? MAXWIDTH : tmp->w; - HEIGHT = tmp->h > MAXHEIGHT ? MAXHEIGHT : tmp->h; + w = tmp->w; + h = tmp->h; +#endif + + WIDTH = w > MAXWIDTH ? MAXWIDTH : w; + HEIGHT = h > MAXHEIGHT ? MAXHEIGHT : h; + floats = new(); if(!floats) return NULL; +#ifdef BYTECODE + for(y = 0; y < h; y++) + for(x = 0; x < w; x++) + { + if(sys_read(0, &c, 1) != 1) + sys_exit(-5); + if(x >= WIDTH || y >= HEIGHT) + continue; + put(floats, x, y, (double)(unsigned char)c / 0xff); + } +#else surface = SDL_CreateRGBSurface(SDL_SWSURFACE, WIDTH, HEIGHT, 32, 0xff0000, 0xff00, 0xff, 0x0); pixels = (uint32_t *)surface->pixels; @@ -858,6 +862,7 @@ static void usage(char *argv[]) msg(" -5 exhaustive displacement study on src\n"); msg(" -6 restrained (a,b,c,d) ED kernel analysis on src\n"); msg(" -7 restrained displacement study on src\n"); + msg(" -8 displacement values on src\n"); } int main(int argc, char *argv[]) @@ -890,8 +895,8 @@ int main(int argc, char *argv[]) case 1: { double *dest = ed(src, false, 7, 0, - 0, 3, 5, 1, 0, - 0, 0, 0, 0, 0); + 0, 3, 5, 1, 0, + 0, 0, 0, 0, 0); study(src, dest, 1.2, 0.001, .16, .28); del(dest); del(src); @@ -1067,6 +1072,38 @@ int main(int argc, char *argv[]) } break; + case 8: + { + const int STEP = 32; + double mat[NN][NN]; + double *dest = ed(src, false, 7, 0, + 0, 3, 5, 1, 0, + 0, 0, 0, 0, 0); + double *tmp, *tmp2; + int dx, dy; + + makegauss(mat, 1.2, 0., 0.); + tmp = gauss(src, mat); + for(dy = 0; dy <= STEP; dy++) + { + for(dx = 0; dx <= STEP; dx++) + { + double fy = 2. / STEP * (dy - STEP / 2.); + double fx = 2. / STEP * (dx - STEP / 2.); + + makegauss(mat, 1.2, fx, fy); + tmp2 = gauss(dest, mat); + msg("%g %g %g\n", fy, fx, 1000. * dist(tmp, tmp2, 1.)); + del(tmp2); + } + msg("\n"); + } + del(tmp); + del(dest); + del(src); + } + break; + #if 0 tmp = ed(src, 7, 0, 0, 3, 5, 1, 0, 0, 0, 0, 0, 0); //dest = dbs(src, tmp, 0., 0.); @@ -1098,25 +1135,6 @@ int main(int argc, char *argv[]) #endif #if 0 -# define STEP 32 - dest = ed(src, 7, 0, 0, 3, 5, 1, 0, 0, 0, 0, 0, 0); - makegauss(mat, 1.2, 0., 0.); - tmp = gauss(src, mat); - for(dy = 0; dy < STEP; dy++) - { - for(dx = 0; dx < STEP; dx++) - { - double fy = 2. / STEP * (dy - STEP / 2.); - double fx = 2. / STEP * (dx - STEP / 2.); - - makegauss(mat, 1.2, fx, fy); - tmp2 = gauss(dest, mat); - msg("%g %g %g\n", fy, fx, 1000. * dist(tmp, tmp2, 1.)); - fflush(stdout); - del(tmp2); - } - msg("\n"); - } save(dest, "output.bmp"); #endif diff --git a/2008-displacement/part0/lena-values.txt b/2008-displacement/part0/lena-values.txt new file mode 100644 index 0000000..572e384 --- /dev/null +++ b/2008-displacement/part0/lena-values.txt @@ -0,0 +1,1123 @@ +### mode 8 on `/home/sam/lenna.png' ### +-1 -1 2.0799 +-1 -0.9375 1.96924 +-1 -0.875 1.86322 +-1 -0.8125 1.76195 +-1 -0.75 1.66556 +-1 -0.6875 1.57415 +-1 -0.625 1.48783 +-1 -0.5625 1.40671 +-1 -0.5 1.33088 +-1 -0.4375 1.26042 +-1 -0.375 1.19543 +-1 -0.3125 1.13596 +-1 -0.25 1.08211 +-1 -0.1875 1.03391 +-1 -0.125 0.991431 +-1 -0.0625 0.954713 +-1 0 0.923796 +-1 0.0625 0.898711 +-1 0.125 0.879484 +-1 0.1875 0.866131 +-1 0.25 0.858663 +-1 0.3125 0.857081 +-1 0.375 0.86138 +-1 0.4375 0.871547 +-1 0.5 0.887559 +-1 0.5625 0.909388 +-1 0.625 0.936994 +-1 0.6875 0.970333 +-1 0.75 1.00935 +-1 0.8125 1.05399 +-1 0.875 1.10418 +-1 0.9375 1.15984 +-1 1 1.22091 + +-0.9375 -1 2.02407 +-0.9375 -0.9375 1.91332 +-0.9375 -0.875 1.80724 +-0.9375 -0.8125 1.70594 +-0.9375 -0.75 1.60955 +-0.9375 -0.6875 1.51817 +-0.9375 -0.625 1.43193 +-0.9375 -0.5625 1.35091 +-0.9375 -0.5 1.27521 +-0.9375 -0.4375 1.20493 +-0.9375 -0.375 1.14014 +-0.9375 -0.3125 1.08093 +-0.9375 -0.25 1.02736 +-0.9375 -0.1875 0.979482 +-0.9375 -0.125 0.937361 +-0.9375 -0.0625 0.90104 +-0.9375 0 0.870557 +-0.9375 0.0625 0.845944 +-0.9375 0.125 0.827226 +-0.9375 0.1875 0.814419 +-0.9375 0.25 0.807533 +-0.9375 0.3125 0.80657 +-0.9375 0.375 0.811524 +-0.9375 0.4375 0.82238 +-0.9375 0.5 0.839117 +-0.9375 0.5625 0.861703 +-0.9375 0.625 0.890099 +-0.9375 0.6875 0.92426 +-0.9375 0.75 0.96413 +-0.9375 0.8125 1.00965 +-0.9375 0.875 1.06075 +-0.9375 0.9375 1.11735 +-0.9375 1 1.17938 + +-0.875 -1 1.97006 +-0.875 -0.9375 1.85925 +-0.875 -0.875 1.75314 +-0.875 -0.8125 1.65184 +-0.875 -0.75 1.55548 +-0.875 -0.6875 1.46417 +-0.875 -0.625 1.37802 +-0.875 -0.5625 1.29713 +-0.875 -0.5 1.22159 +-0.875 -0.4375 1.15151 +-0.875 -0.375 1.08696 +-0.875 -0.3125 1.02801 +-0.875 -0.25 0.974742 +-0.875 -0.1875 0.927208 +-0.875 -0.125 0.885463 +-0.875 -0.0625 0.849554 +-0.875 0 0.819519 +-0.875 0.0625 0.795391 +-0.875 0.125 0.777193 +-0.875 0.1875 0.764942 +-0.875 0.25 0.758647 +-0.875 0.3125 0.75831 +-0.875 0.375 0.763923 +-0.875 0.4375 0.775473 +-0.875 0.5 0.792935 +-0.875 0.5625 0.816279 +-0.875 0.625 0.845465 +-0.875 0.6875 0.880444 +-0.875 0.75 0.921163 +-0.875 0.8125 0.967558 +-0.875 0.875 1.01956 +-0.875 0.9375 1.07709 +-0.875 1 1.14007 + +-0.8125 -1 1.91794 +-0.8125 -0.9375 1.8071 +-0.8125 -0.875 1.70098 +-0.8125 -0.8125 1.59971 +-0.8125 -0.75 1.50341 +-0.8125 -0.6875 1.41219 +-0.8125 -0.625 1.32616 +-0.8125 -0.5625 1.24543 +-0.8125 -0.5 1.17008 +-0.8125 -0.4375 1.10022 +-0.8125 -0.375 1.03592 +-0.8125 -0.3125 0.977264 +-0.8125 -0.25 0.924317 +-0.8125 -0.1875 0.877141 +-0.8125 -0.125 0.835789 +-0.8125 -0.0625 0.800307 +-0.8125 0 0.770735 +-0.8125 0.0625 0.747104 +-0.8125 0.125 0.729437 +-0.8125 0.1875 0.717751 +-0.8125 0.25 0.712054 +-0.8125 0.3125 0.712349 +-0.8125 0.375 0.718627 +-0.8125 0.4375 0.730872 +-0.8125 0.5 0.749062 +-0.8125 0.5625 0.773164 +-0.8125 0.625 0.803137 +-0.8125 0.6875 0.838933 +-0.8125 0.75 0.880495 +-0.8125 0.8125 0.927759 +-0.8125 0.875 0.980656 +-0.8125 0.9375 1.03911 +-0.8125 1 1.10303 + +-0.75 -1 1.86773 +-0.75 -0.9375 1.75689 +-0.75 -0.875 1.65081 +-0.75 -0.8125 1.5496 +-0.75 -0.75 1.45339 +-0.75 -0.6875 1.36229 +-0.75 -0.625 1.27641 +-0.75 -0.5625 1.19585 +-0.75 -0.5 1.12072 +-0.75 -0.4375 1.0511 +-0.75 -0.375 0.987081 +-0.75 -0.3125 0.928735 +-0.75 -0.25 0.876131 +-0.75 -0.1875 0.829332 +-0.75 -0.125 0.788389 +-0.75 -0.0625 0.753351 +-0.75 0 0.724254 +-0.75 0.0625 0.701132 +-0.75 0.125 0.684006 +-0.75 0.1875 0.672894 +-0.75 0.25 0.667804 +-0.75 0.3125 0.668736 +-0.75 0.375 0.675682 +-0.75 0.4375 0.688626 +-0.75 0.5 0.707544 +-0.75 0.5625 0.732403 +-0.75 0.625 0.763161 +-0.75 0.6875 0.799769 +-0.75 0.75 0.842168 +-0.75 0.8125 0.890296 +-0.75 0.875 0.944079 +-0.75 0.9375 1.00344 +-0.75 1 1.06829 + +-0.6875 -1 1.81949 +-0.6875 -0.9375 1.70869 +-0.6875 -0.875 1.60267 +-0.6875 -0.8125 1.50155 +-0.6875 -0.75 1.40546 +-0.6875 -0.6875 1.3145 +-0.6875 -0.625 1.2288 +-0.6875 -0.5625 1.14845 +-0.6875 -0.5 1.07356 +-0.6875 -0.4375 1.00421 +-0.6875 -0.375 0.94049 +-0.6875 -0.3125 0.882475 +-0.6875 -0.25 0.830234 +-0.6875 -0.1875 0.783829 +-0.6875 -0.125 0.743313 +-0.6875 -0.0625 0.708732 +-0.6875 0 0.680125 +-0.6875 0.0625 0.657523 +-0.6875 0.125 0.64095 +-0.6875 0.1875 0.63042 +-0.6875 0.25 0.625943 +-0.6875 0.3125 0.627517 +-0.6875 0.375 0.635135 +-0.6875 0.4375 0.64878 +-0.6875 0.5 0.668426 +-0.6875 0.5625 0.69404 +-0.6875 0.625 0.72558 +-0.6875 0.6875 0.762995 +-0.6875 0.75 0.806226 +-0.6875 0.8125 0.855208 +-0.6875 0.875 0.909867 +-0.6875 0.9375 0.970126 +-0.6875 1 1.0359 + +-0.625 -1 1.77326 +-0.625 -0.9375 1.66253 +-0.625 -0.875 1.5566 +-0.625 -0.8125 1.45561 +-0.625 -0.75 1.35966 +-0.625 -0.6875 1.26889 +-0.625 -0.625 1.18339 +-0.625 -0.5625 1.10328 +-0.625 -0.5 1.02865 +-0.625 -0.4375 0.95959 +-0.625 -0.375 0.896192 +-0.625 -0.3125 0.83853 +-0.625 -0.25 0.786672 +-0.625 -0.1875 0.740679 +-0.625 -0.125 0.700606 +-0.625 -0.0625 0.666498 +-0.625 0 0.638394 +-0.625 0.0625 0.616324 +-0.625 0.125 0.600312 +-0.625 0.1875 0.590374 +-0.625 0.25 0.586515 +-0.625 0.3125 0.588737 +-0.625 0.375 0.59703 +-0.625 0.4375 0.611376 +-0.625 0.5 0.631751 +-0.625 0.5625 0.658118 +-0.625 0.625 0.690435 +-0.625 0.6875 0.728651 +-0.625 0.75 0.772706 +-0.625 0.8125 0.822533 +-0.625 0.875 0.878059 +-0.625 0.9375 0.939203 +-0.625 1 1.00588 + +-0.5625 -1 1.72908 +-0.5625 -0.9375 1.61845 +-0.5625 -0.875 1.51266 +-0.5625 -0.8125 1.41181 +-0.5625 -0.75 1.31605 +-0.5625 -0.6875 1.22548 +-0.5625 -0.625 1.14022 +-0.5625 -0.5625 1.06037 +-0.5625 -0.5 0.986026 +-0.5625 -0.4375 0.917287 +-0.5625 -0.375 0.854235 +-0.5625 -0.3125 0.796946 +-0.5625 -0.25 0.74549 +-0.5625 -0.1875 0.699928 +-0.5625 -0.125 0.660314 +-0.5625 -0.0625 0.626694 +-0.5625 0 0.599105 +-0.5625 0.0625 0.577579 +-0.5625 0.125 0.562138 +-0.5625 0.1875 0.552797 +-0.5625 0.25 0.549564 +-0.5625 0.3125 0.552437 +-0.5625 0.375 0.561407 +-0.5625 0.4375 0.576456 +-0.5625 0.5 0.597557 +-0.5625 0.5625 0.624674 +-0.5625 0.625 0.657764 +-0.5625 0.6875 0.696774 +-0.5625 0.75 0.741645 +-0.5625 0.8125 0.792308 +-0.5625 0.875 0.848689 +-0.5625 0.9375 0.910705 +-0.5625 1 0.978269 + +-0.5 -1 1.687 +-0.5 -0.9375 1.57651 +-0.5 -0.875 1.47087 +-0.5 -0.8125 1.37022 +-0.5 -0.75 1.27466 +-0.5 -0.6875 1.18433 +-0.5 -0.625 1.09933 +-0.5 -0.5625 1.01977 +-0.5 -0.5 0.945741 +-0.5 -0.4375 0.877343 +-0.5 -0.375 0.814659 +-0.5 -0.3125 0.757765 +-0.5 -0.25 0.706731 +-0.5 -0.1875 0.661617 +-0.5 -0.125 0.622478 +-0.5 -0.0625 0.58936 +-0.5 0 0.562299 +-0.5 0.0625 0.541328 +-0.5 0.125 0.526467 +-0.5 0.1875 0.517732 +-0.5 0.25 0.515129 +-0.5 0.3125 0.518658 +-0.5 0.375 0.528306 +-0.5 0.4375 0.544057 +-0.5 0.5 0.565882 +-0.5 0.5625 0.593746 +-0.5 0.625 0.627603 +-0.5 0.6875 0.667401 +-0.5 0.75 0.713079 +-0.5 0.8125 0.764567 +-0.5 0.875 0.821789 +-0.5 0.9375 0.884663 +-0.5 1 0.953101 + +-0.4375 -1 1.64704 +-0.4375 -0.9375 1.53673 +-0.4375 -0.875 1.43129 +-0.4375 -0.8125 1.33085 +-0.4375 -0.75 1.23554 +-0.4375 -0.6875 1.14547 +-0.4375 -0.625 1.06077 +-0.4375 -0.5625 0.981518 +-0.4375 -0.5 0.907832 +-0.4375 -0.4375 0.839799 +-0.4375 -0.375 0.777506 +-0.4375 -0.3125 0.721028 +-0.4375 -0.25 0.670434 +-0.4375 -0.1875 0.625787 +-0.4375 -0.125 0.587139 +-0.4375 -0.0625 0.554536 +-0.4375 0 0.528017 +-0.4375 0.0625 0.50761 +-0.4375 0.125 0.493338 +-0.4375 0.1875 0.485215 +-0.4375 0.25 0.483248 +-0.4375 0.3125 0.487434 +-0.4375 0.375 0.497763 +-0.4375 0.4375 0.514215 +-0.4375 0.5 0.536762 +-0.4375 0.5625 0.565368 +-0.4375 0.625 0.599986 +-0.4375 0.6875 0.640564 +-0.4375 0.75 0.687038 +-0.4375 0.8125 0.739339 +-0.4375 0.875 0.79739 +-0.4375 0.9375 0.861108 +-0.4375 1 0.930402 + +-0.375 -1 1.60926 +-0.375 -0.9375 1.49915 +-0.375 -0.875 1.39394 +-0.375 -0.8125 1.29376 +-0.375 -0.75 1.19872 +-0.375 -0.6875 1.10895 +-0.375 -0.625 1.02456 +-0.375 -0.5625 0.945655 +-0.375 -0.5 0.872336 +-0.375 -0.4375 0.804693 +-0.375 -0.375 0.742813 +-0.375 -0.3125 0.686771 +-0.375 -0.25 0.636638 +-0.375 -0.1875 0.592474 +-0.375 -0.125 0.554333 +-0.375 -0.0625 0.52226 +-0.375 0 0.496293 +-0.375 0.0625 0.476461 +-0.375 0.125 0.462786 +-0.375 0.1875 0.455282 +-0.375 0.25 0.453955 +-0.375 0.3125 0.458801 +-0.375 0.375 0.46981 +-0.375 0.4375 0.486962 +-0.375 0.5 0.510228 +-0.375 0.5625 0.539571 +-0.375 0.625 0.574943 +-0.375 0.6875 0.616291 +-0.375 0.75 0.663551 +-0.375 0.8125 0.716653 +-0.375 0.875 0.775519 +-0.375 0.9375 0.840064 +-0.375 1 0.910197 + +-0.3125 -1 1.57369 +-0.3125 -0.9375 1.46382 +-0.3125 -0.875 1.35887 +-0.3125 -0.8125 1.25897 +-0.3125 -0.75 1.16424 +-0.3125 -0.6875 1.07479 +-0.3125 -0.625 0.990751 +-0.3125 -0.5625 0.912216 +-0.3125 -0.5 0.839288 +-0.3125 -0.4375 0.772059 +-0.3125 -0.375 0.710614 +-0.3125 -0.3125 0.65503 +-0.3125 -0.25 0.605376 +-0.3125 -0.1875 0.561713 +-0.3125 -0.125 0.524094 +-0.3125 -0.0625 0.492564 +-0.3125 0 0.467161 +-0.3125 0.0625 0.447914 +-0.3125 0.125 0.434844 +-0.3125 0.1875 0.427964 +-0.3125 0.25 0.427281 +-0.3125 0.3125 0.43279 +-0.3125 0.375 0.444479 +-0.3125 0.4375 0.462329 +-0.3125 0.5 0.48631 +-0.3125 0.5625 0.516383 +-0.3125 0.625 0.552502 +-0.3125 0.6875 0.594611 +-0.3125 0.75 0.642646 +-0.3125 0.8125 0.696535 +-0.3125 0.875 0.7562 +-0.3125 0.9375 0.821556 +-0.3125 1 0.892509 + +-0.25 -1 1.54035 +-0.25 -0.9375 1.43075 +-0.25 -0.875 1.3261 +-0.25 -0.8125 1.22652 +-0.25 -0.75 1.13212 +-0.25 -0.6875 1.04304 +-0.25 -0.625 0.959371 +-0.25 -0.5625 0.881233 +-0.25 -0.5 0.808723 +-0.25 -0.4375 0.741931 +-0.25 -0.375 0.680944 +-0.25 -0.3125 0.625838 +-0.25 -0.25 0.576682 +-0.25 -0.1875 0.533536 +-0.25 -0.125 0.496454 +-0.25 -0.0625 0.465481 +-0.25 0 0.440653 +-0.25 0.0625 0.421999 +-0.25 0.125 0.409541 +-0.25 0.1875 0.403291 +-0.25 0.25 0.403255 +-0.25 0.3125 0.409427 +-0.25 0.375 0.421797 +-0.25 0.4375 0.440342 +-0.25 0.5 0.465033 +-0.25 0.5625 0.495831 +-0.25 0.625 0.532688 +-0.25 0.6875 0.575547 +-0.25 0.75 0.624344 +-0.25 0.8125 0.679007 +-0.25 0.875 0.739455 +-0.25 0.9375 0.805604 +-0.25 1 0.877359 + +-0.1875 -1 1.50927 +-0.1875 -0.9375 1.39999 +-0.1875 -0.875 1.29567 +-0.1875 -0.8125 1.19644 +-0.1875 -0.75 1.10241 +-0.1875 -0.6875 1.01371 +-0.1875 -0.625 0.93045 +-0.1875 -0.5625 0.852736 +-0.1875 -0.5 0.780668 +-0.1875 -0.4375 0.714338 +-0.1875 -0.375 0.653831 +-0.1875 -0.3125 0.599223 +-0.1875 -0.25 0.550583 +-0.1875 -0.1875 0.507971 +-0.1875 -0.125 0.471441 +-0.1875 -0.0625 0.441037 +-0.1875 0 0.416795 +-0.1875 0.0625 0.398744 +-0.1875 0.125 0.386905 +-0.1875 0.1875 0.38129 +-0.1875 0.25 0.381903 +-0.1875 0.3125 0.38874 +-0.1875 0.375 0.401788 +-0.1875 0.4375 0.421026 +-0.1875 0.5 0.446422 +-0.1875 0.5625 0.477936 +-0.1875 0.625 0.515522 +-0.1875 0.6875 0.55912 +-0.1875 0.75 0.608667 +-0.1875 0.8125 0.664088 +-0.1875 0.875 0.725304 +-0.1875 0.9375 0.792226 +-0.1875 1 0.864763 + +-0.125 -1 1.48049 +-0.125 -0.9375 1.37156 +-0.125 -0.875 1.26761 +-0.125 -0.8125 1.16875 +-0.125 -0.75 1.07513 +-0.125 -0.6875 0.986842 +-0.125 -0.625 0.904016 +-0.125 -0.5625 0.826753 +-0.125 -0.5 0.755153 +-0.125 -0.4375 0.689308 +-0.125 -0.375 0.629302 +-0.125 -0.3125 0.575212 +-0.125 -0.25 0.527107 +-0.125 -0.1875 0.485045 +-0.125 -0.125 0.449081 +-0.125 -0.0625 0.419258 +-0.125 0 0.395613 +-0.125 0.0625 0.378173 +-0.125 0.125 0.366959 +-0.125 0.1875 0.361983 +-0.125 0.25 0.363248 +-0.125 0.3125 0.37075 +-0.125 0.375 0.384475 +-0.125 0.4375 0.4044 +-0.125 0.5 0.430495 +-0.125 0.5625 0.462719 +-0.125 0.625 0.501023 +-0.125 0.6875 0.545349 +-0.125 0.75 0.595631 +-0.125 0.8125 0.651796 +-0.125 0.875 0.713761 +-0.125 0.9375 0.781439 +-0.125 1 0.854735 + +-0.0625 -1 1.45403 +-0.0625 -0.9375 1.34549 +-0.0625 -0.875 1.24193 +-0.0625 -0.8125 1.14349 +-0.0625 -0.75 1.05029 +-0.0625 -0.6875 0.962458 +-0.0625 -0.625 0.880095 +-0.0625 -0.5625 0.803309 +-0.0625 -0.5 0.732202 +-0.0625 -0.4375 0.666865 +-0.0625 -0.375 0.607382 +-0.0625 -0.3125 0.55383 +-0.0625 -0.25 0.506276 +-0.0625 -0.1875 0.464782 +-0.0625 -0.125 0.429397 +-0.0625 -0.0625 0.400168 +-0.0625 0 0.377129 +-0.0625 0.0625 0.360308 +-0.0625 0.125 0.349724 +-0.0625 0.1875 0.345391 +-0.0625 0.25 0.34731 +-0.0625 0.3125 0.355476 +-0.0625 0.375 0.369875 +-0.0625 0.4375 0.390484 +-0.0625 0.5 0.417272 +-0.0625 0.5625 0.450196 +-0.0625 0.625 0.489208 +-0.0625 0.6875 0.534249 +-0.0625 0.75 0.585253 +-0.0625 0.8125 0.642144 +-0.0625 0.875 0.70484 +-0.0625 0.9375 0.773253 +-0.0625 1 0.847288 + +0 -1 1.42992 +0 -0.9375 1.32179 +0 -0.875 1.21867 +0 -0.8125 1.12068 +0 -0.75 1.02794 +0 -0.6875 0.940582 +0 -0.625 0.858708 +0 -0.5625 0.782427 +0 -0.5 0.711838 +0 -0.4375 0.647032 +0 -0.375 0.588093 +0 -0.3125 0.535098 +0 -0.25 0.488114 +0 -0.1875 0.4472 +0 -0.125 0.41241 +0 -0.0625 0.383785 +0 0 0.361361 +0 0.0625 0.345166 +0 0.125 0.335219 +0 0.1875 0.331532 +0 0.25 0.334105 +0 0.3125 0.342934 +0 0.375 0.358005 +0 0.4375 0.379293 +0 0.5 0.406765 +0 0.5625 0.440381 +0 0.625 0.480091 +0 0.6875 0.525833 +0 0.75 0.577543 +0 0.8125 0.635143 +0 0.875 0.698552 +0 0.9375 0.76768 +0 1 0.842431 + +0.0625 -1 1.40817 +0.0625 -0.9375 1.3005 +0.0625 -0.875 1.19784 +0.0625 -0.8125 1.10033 +0.0625 -0.75 1.00809 +0.0625 -0.6875 0.921233 +0.0625 -0.625 0.839877 +0.0625 -0.5625 0.764126 +0.0625 -0.5 0.694079 +0.0625 -0.4375 0.629827 +0.0625 -0.375 0.571453 +0.0625 -0.3125 0.519034 +0.0625 -0.25 0.472636 +0.0625 -0.1875 0.432319 +0.0625 -0.125 0.398135 +0.0625 -0.0625 0.370126 +0.0625 0 0.348327 +0.0625 0.0625 0.332765 +0.0625 0.125 0.323459 +0.0625 0.1875 0.32042 +0.0625 0.25 0.323649 +0.0625 0.3125 0.33314 +0.0625 0.375 0.348878 +0.0625 0.4375 0.370838 +0.0625 0.5 0.398988 +0.0625 0.5625 0.433286 +0.0625 0.625 0.47368 +0.0625 0.6875 0.520111 +0.0625 0.75 0.572511 +0.0625 0.8125 0.630803 +0.0625 0.875 0.694905 +0.0625 0.9375 0.764726 +0.0625 1 0.84017 + +0.125 -1 1.38881 +0.125 -0.9375 1.28163 +0.125 -0.875 1.17947 +0.125 -0.8125 1.08247 +0.125 -0.75 0.990751 +0.125 -0.6875 0.90443 +0.125 -0.625 0.82362 +0.125 -0.5625 0.748425 +0.125 -0.5 0.678944 +0.125 -0.4375 0.615267 +0.125 -0.375 0.557479 +0.125 -0.3125 0.505654 +0.125 -0.25 0.459859 +0.125 -0.1875 0.420154 +0.125 -0.125 0.386588 +0.125 -0.0625 0.359205 +0.125 0 0.33804 +0.125 0.0625 0.323117 +0.125 0.125 0.314456 +0.125 0.1875 0.312067 +0.125 0.25 0.315951 +0.125 0.3125 0.326102 +0.125 0.375 0.342503 +0.125 0.4375 0.36513 +0.125 0.5 0.393949 +0.125 0.5625 0.428918 +0.125 0.625 0.469985 +0.125 0.6875 0.517089 +0.125 0.75 0.570163 +0.125 0.8125 0.629129 +0.125 0.875 0.693904 +0.125 0.9375 0.764396 +0.125 1 0.84051 + +0.1875 -1 1.37186 +0.1875 -0.9375 1.26519 +0.1875 -0.875 1.16357 +0.1875 -0.8125 1.06711 +0.1875 -0.75 0.975947 +0.1875 -0.6875 0.890189 +0.1875 -0.625 0.809951 +0.1875 -0.5625 0.735338 +0.1875 -0.5 0.666446 +0.1875 -0.4375 0.603367 +0.1875 -0.375 0.546184 +0.1875 -0.3125 0.494972 +0.1875 -0.25 0.449796 +0.1875 -0.1875 0.410716 +0.1875 -0.125 0.377781 +0.1875 -0.0625 0.351034 +0.1875 0 0.330509 +0.1875 0.0625 0.316232 +0.1875 0.125 0.30822 +0.1875 0.1875 0.306483 +0.1875 0.25 0.311022 +0.1875 0.3125 0.321829 +0.1875 0.375 0.338889 +0.1875 0.4375 0.362175 +0.1875 0.5 0.391655 +0.1875 0.5625 0.427283 +0.1875 0.625 0.46901 +0.1875 0.6875 0.516773 +0.1875 0.75 0.570503 +0.1875 0.8125 0.630124 +0.1875 0.875 0.69555 +0.1875 0.9375 0.766692 +0.1875 1 0.84345 + +0.25 -1 1.35732 +0.25 -0.9375 1.25121 +0.25 -0.875 1.15015 +0.25 -0.8125 1.05427 +0.25 -0.75 0.963689 +0.25 -0.6875 0.878523 +0.25 -0.625 0.798884 +0.25 -0.5625 0.724876 +0.25 -0.5 0.656598 +0.25 -0.4375 0.594138 +0.25 -0.375 0.53758 +0.25 -0.3125 0.486997 +0.25 -0.25 0.442456 +0.25 -0.1875 0.404014 +0.25 -0.125 0.371722 +0.25 -0.0625 0.345621 +0.25 0 0.325744 +0.25 0.0625 0.312117 +0.25 0.125 0.304757 +0.25 0.1875 0.303672 +0.25 0.25 0.308865 +0.25 0.3125 0.320326 +0.25 0.375 0.338038 +0.25 0.4375 0.361977 +0.25 0.5 0.392107 +0.25 0.5625 0.428384 +0.25 0.625 0.470756 +0.25 0.6875 0.519162 +0.25 0.75 0.573531 +0.25 0.8125 0.633787 +0.25 0.875 0.699845 +0.25 0.9375 0.771612 +0.25 1 0.84899 + +0.3125 -1 1.34521 +0.3125 -0.9375 1.23969 +0.3125 -0.875 1.13923 +0.3125 -0.8125 1.04396 +0.3125 -0.75 0.953988 +0.3125 -0.6875 0.869441 +0.3125 -0.625 0.790427 +0.3125 -0.5625 0.71705 +0.3125 -0.5 0.649407 +0.3125 -0.4375 0.587587 +0.3125 -0.375 0.531672 +0.3125 -0.3125 0.481736 +0.3125 -0.25 0.437845 +0.3125 -0.1875 0.400055 +0.3125 -0.125 0.368416 +0.3125 -0.0625 0.342969 +0.3125 0 0.323747 +0.3125 0.0625 0.310775 +0.3125 0.125 0.304069 +0.3125 0.1875 0.303639 +0.3125 0.25 0.309483 +0.3125 0.3125 0.321593 +0.3125 0.375 0.339953 +0.3125 0.4375 0.364535 +0.3125 0.5 0.395306 +0.3125 0.5625 0.432219 +0.3125 0.625 0.475223 +0.3125 0.6875 0.524255 +0.3125 0.75 0.579246 +0.3125 0.8125 0.640117 +0.3125 0.875 0.706783 +0.3125 0.9375 0.779152 +0.3125 1 0.857126 + +0.375 -1 1.33554 +0.375 -0.9375 1.23065 +0.375 -0.875 1.13082 +0.375 -0.8125 1.03618 +0.375 -0.75 0.946852 +0.375 -0.6875 0.862952 +0.375 -0.625 0.784589 +0.375 -0.5625 0.711866 +0.375 -0.5 0.64488 +0.375 -0.4375 0.583721 +0.375 -0.375 0.528468 +0.375 -0.3125 0.479195 +0.375 -0.25 0.435967 +0.375 -0.1875 0.398841 +0.375 -0.125 0.367866 +0.375 -0.0625 0.343082 +0.375 0 0.324521 +0.375 0.0625 0.312208 +0.375 0.125 0.306158 +0.375 0.1875 0.306381 +0.375 0.25 0.312874 +0.375 0.3125 0.32563 +0.375 0.375 0.34463 +0.375 0.4375 0.369848 +0.375 0.5 0.401248 +0.375 0.5625 0.438785 +0.375 0.625 0.482406 +0.375 0.6875 0.532048 +0.375 0.75 0.587641 +0.375 0.8125 0.649107 +0.375 0.875 0.71636 +0.375 0.9375 0.789307 +0.375 1 0.867849 + +0.4375 -1 1.32832 +0.4375 -0.9375 1.22408 +0.4375 -0.875 1.12491 +0.4375 -0.8125 1.03094 +0.4375 -0.75 0.942285 +0.4375 -0.6875 0.859059 +0.4375 -0.625 0.781372 +0.4375 -0.5625 0.709327 +0.4375 -0.5 0.64302 +0.4375 -0.4375 0.58254 +0.4375 -0.375 0.527966 +0.4375 -0.3125 0.479373 +0.4375 -0.25 0.436823 +0.4375 -0.1875 0.400373 +0.4375 -0.125 0.370071 +0.4375 -0.0625 0.345957 +0.4375 0 0.328063 +0.4375 0.0625 0.316412 +0.4375 0.125 0.31102 +0.4375 0.1875 0.311895 +0.4375 0.25 0.319035 +0.4375 0.3125 0.332431 +0.4375 0.375 0.352065 +0.4375 0.4375 0.377909 +0.4375 0.5 0.409927 +0.4375 0.5625 0.448074 +0.4375 0.625 0.492297 +0.4375 0.6875 0.542532 +0.4375 0.75 0.598708 +0.4375 0.8125 0.660748 +0.4375 0.875 0.728565 +0.4375 0.9375 0.802065 +0.4375 1 0.881151 + +0.5 -1 1.32355 +0.5 -0.9375 1.22 +0.5 -0.875 1.12153 +0.5 -0.8125 1.02825 +0.5 -0.75 0.940291 +0.5 -0.6875 0.857764 +0.5 -0.625 0.780777 +0.5 -0.5625 0.709433 +0.5 -0.5 0.643826 +0.5 -0.4375 0.584044 +0.5 -0.375 0.530167 +0.5 -0.3125 0.482268 +0.5 -0.25 0.440408 +0.5 -0.1875 0.404646 +0.5 -0.125 0.375026 +0.5 -0.0625 0.35159 +0.5 0 0.334367 +0.5 0.0625 0.323382 +0.5 0.125 0.318649 +0.5 0.1875 0.320174 +0.5 0.25 0.327958 +0.5 0.3125 0.341988 +0.5 0.375 0.362248 +0.5 0.4375 0.388708 +0.5 0.5 0.421333 +0.5 0.5625 0.460077 +0.5 0.625 0.504885 +0.5 0.6875 0.555696 +0.5 0.75 0.612436 +0.5 0.8125 0.675028 +0.5 0.875 0.743385 +0.5 0.9375 0.817415 +0.5 1 0.897016 + +0.5625 -1 1.32123 +0.5625 -0.9375 1.21841 +0.5625 -0.875 1.12066 +0.5625 -0.8125 1.0281 +0.5625 -0.75 0.940868 +0.5625 -0.6875 0.859065 +0.5625 -0.625 0.782802 +0.5625 -0.5625 0.71218 +0.5625 -0.5 0.647293 +0.5625 -0.4375 0.588228 +0.5625 -0.375 0.535065 +0.5625 -0.3125 0.487874 +0.5625 -0.25 0.446718 +0.5625 -0.1875 0.411653 +0.5625 -0.125 0.382724 +0.5625 -0.0625 0.359972 +0.5625 0 0.343425 +0.5625 0.0625 0.333107 +0.5625 0.125 0.329033 +0.5625 0.1875 0.331208 +0.5625 0.25 0.33963 +0.5625 0.3125 0.35429 +0.5625 0.375 0.375167 +0.5625 0.4375 0.402233 +0.5625 0.5 0.435453 +0.5625 0.5625 0.474779 +0.5625 0.625 0.520157 +0.5625 0.6875 0.571525 +0.5625 0.75 0.628809 +0.5625 0.8125 0.691932 +0.5625 0.875 0.760806 +0.5625 0.9375 0.835339 +0.5625 1 0.91543 + +0.625 -1 1.32137 +0.625 -0.9375 1.2193 +0.625 -0.875 1.1223 +0.625 -0.8125 1.03049 +0.625 -0.75 0.944012 +0.625 -0.6875 0.862958 +0.625 -0.625 0.787442 +0.625 -0.5625 0.717563 +0.625 -0.5 0.653416 +0.625 -0.4375 0.595086 +0.625 -0.375 0.542651 +0.625 -0.3125 0.496182 +0.625 -0.25 0.455742 +0.625 -0.1875 0.421384 +0.625 -0.125 0.393155 +0.625 -0.0625 0.371091 +0.625 0 0.355225 +0.625 0.0625 0.345576 +0.625 0.125 0.34216 +0.625 0.1875 0.344981 +0.625 0.25 0.354038 +0.625 0.3125 0.36932 +0.625 0.375 0.390806 +0.625 0.4375 0.418468 +0.625 0.5 0.45227 +0.625 0.5625 0.492164 +0.625 0.625 0.538095 +0.625 0.6875 0.590001 +0.625 0.75 0.64781 +0.625 0.8125 0.711441 +0.625 0.875 0.780808 +0.625 0.9375 0.855819 +0.625 1 0.936372 + +0.6875 -1 1.32396 +0.6875 -0.9375 1.22266 +0.6875 -0.875 1.12644 +0.6875 -0.8125 1.03542 +0.6875 -0.75 0.949715 +0.6875 -0.6875 0.869435 +0.6875 -0.625 0.794688 +0.6875 -0.5625 0.725573 +0.6875 -0.5 0.662184 +0.6875 -0.4375 0.604605 +0.6875 -0.375 0.552914 +0.6875 -0.3125 0.507181 +0.6875 -0.25 0.467467 +0.6875 -0.1875 0.433826 +0.6875 -0.125 0.406302 +0.6875 -0.0625 0.384934 +0.6875 0 0.36975 +0.6875 0.0625 0.360772 +0.6875 0.125 0.358013 +0.6875 0.1875 0.361478 +0.6875 0.25 0.371164 +0.6875 0.3125 0.387061 +0.6875 0.375 0.409147 +0.6875 0.4375 0.437394 +0.6875 0.5 0.471764 +0.6875 0.5625 0.51221 +0.6875 0.625 0.558679 +0.6875 0.6875 0.611104 +0.6875 0.75 0.669416 +0.6875 0.8125 0.733533 +0.6875 0.875 0.80337 +0.6875 0.9375 0.878832 +0.6875 1 0.959821 + +0.75 -1 1.32899 +0.75 -0.9375 1.2285 +0.75 -0.875 1.13309 +0.75 -0.8125 1.04287 +0.75 -0.75 0.957968 +0.75 -0.6875 0.878484 +0.75 -0.625 0.804528 +0.75 -0.5625 0.736197 +0.75 -0.5 0.673583 +0.75 -0.4375 0.616772 +0.75 -0.375 0.565839 +0.75 -0.3125 0.520854 +0.75 -0.25 0.481877 +0.75 -0.1875 0.448961 +0.75 -0.125 0.42215 +0.75 -0.0625 0.40148 +0.75 0 0.386982 +0.75 0.0625 0.378674 +0.75 0.125 0.376571 +0.75 0.1875 0.380676 +0.75 0.25 0.390987 +0.75 0.3125 0.40749 +0.75 0.375 0.430167 +0.75 0.4375 0.458987 +0.75 0.5 0.493912 +0.75 0.5625 0.534896 +0.75 0.625 0.581883 +0.75 0.6875 0.63481 +0.75 0.75 0.693603 +0.75 0.8125 0.758184 +0.75 0.875 0.828466 +0.75 0.9375 0.904355 +0.75 1 0.985751 + +0.8125 -1 1.33645 +0.8125 -0.9375 1.2368 +0.8125 -0.875 1.14223 +0.8125 -0.8125 1.05284 +0.8125 -0.75 0.968758 +0.8125 -0.6875 0.890093 +0.8125 -0.625 0.816947 +0.8125 -0.5625 0.749419 +0.8125 -0.5 0.687599 +0.8125 -0.4375 0.63157 +0.8125 -0.375 0.581409 +0.8125 -0.3125 0.537183 +0.8125 -0.25 0.498953 +0.8125 -0.1875 0.466769 +0.8125 -0.125 0.440676 +0.8125 -0.0625 0.42071 +0.8125 0 0.406899 +0.8125 0.0625 0.399262 +0.8125 0.125 0.397812 +0.8125 0.1875 0.402553 +0.8125 0.25 0.413481 +0.8125 0.3125 0.430584 +0.8125 0.375 0.453841 +0.8125 0.4375 0.483222 +0.8125 0.5 0.518688 +0.8125 0.5625 0.560194 +0.8125 0.625 0.607683 +0.8125 0.6875 0.661091 +0.8125 0.75 0.720345 +0.8125 0.8125 0.785367 +0.8125 0.875 0.856069 +0.8125 0.9375 0.932358 +0.8125 1 1.01413 + +0.875 -1 1.34633 +0.875 -0.9375 1.24755 +0.875 -0.875 1.15383 +0.875 -0.8125 1.0653 +0.875 -0.75 0.982069 +0.875 -0.6875 0.904244 +0.875 -0.625 0.831929 +0.875 -0.5625 0.765221 +0.875 -0.5 0.704211 +0.875 -0.4375 0.648979 +0.875 -0.375 0.599602 +0.875 -0.3125 0.556147 +0.875 -0.25 0.518672 +0.875 -0.1875 0.487228 +0.875 -0.125 0.461858 +0.875 -0.0625 0.442598 +0.875 0 0.429475 +0.875 0.0625 0.422508 +0.875 0.125 0.421709 +0.875 0.1875 0.427082 +0.875 0.25 0.438621 +0.875 0.3125 0.456315 +0.875 0.375 0.480141 +0.875 0.4375 0.51007 +0.875 0.5 0.546064 +0.875 0.5625 0.588075 +0.875 0.625 0.636048 +0.875 0.6875 0.689917 +0.875 0.75 0.749612 +0.875 0.8125 0.815051 +0.875 0.875 0.886149 +0.875 0.9375 0.962811 +0.875 1 1.04494 + +0.9375 -1 1.35862 +0.9375 -0.9375 1.26073 +0.9375 -0.875 1.1679 +0.9375 -0.8125 1.08025 +0.9375 -0.75 0.997884 +0.9375 -0.6875 0.920919 +0.9375 -0.625 0.849454 +0.9375 -0.5625 0.783583 +0.9375 -0.5 0.723397 +0.9375 -0.4375 0.668977 +0.9375 -0.375 0.620396 +0.9375 -0.3125 0.577721 +0.9375 -0.25 0.541009 +0.9375 -0.1875 0.510311 +0.9375 -0.125 0.485669 +0.9375 -0.0625 0.467118 +0.9375 0 0.454684 +0.9375 0.0625 0.448386 +0.9375 0.125 0.448234 +0.9375 0.1875 0.454232 +0.9375 0.25 0.466376 +0.9375 0.3125 0.484651 +0.9375 0.375 0.509036 +0.9375 0.4375 0.539501 +0.9375 0.5 0.576008 +0.9375 0.5625 0.618508 +0.9375 0.625 0.666946 +0.9375 0.6875 0.721257 +0.9375 0.75 0.78137 +0.9375 0.8125 0.847204 +0.9375 0.875 0.918672 +0.9375 0.9375 0.995683 +0.9375 1 1.07813 + +1 -1 1.3733 +1 -0.9375 1.27633 +1 -0.875 1.18441 +1 -0.8125 1.09765 +1 -0.75 1.01618 +1 -0.6875 0.940096 +1 -0.625 0.869498 +1 -0.5625 0.804482 +1 -0.5 0.745135 +1 -0.4375 0.691538 +1 -0.375 0.643764 +1 -0.3125 0.601878 +1 -0.25 0.565937 +1 -0.1875 0.535991 +1 -0.125 0.512081 +1 -0.0625 0.49424 +1 0 0.482494 +1 0.0625 0.476862 +1 0.125 0.477355 +1 0.1875 0.483973 +1 0.25 0.496713 +1 0.3125 0.51556 +1 0.375 0.540493 +1 0.4375 0.571481 +1 0.5 0.608485 +1 0.5625 0.651457 +1 0.625 0.700342 +1 0.6875 0.755075 +1 0.75 0.815584 +1 0.8125 0.88179 +1 0.875 0.953605 +1 0.9375 1.03094 +1 1 1.11369 +