From 1c40f679decd918184a1b72c9ef4bac7b751d0c0 Mon Sep 17 00:00:00 2001 From: apek Date: Sat, 22 Aug 2015 19:36:58 +0000 Subject: [PATCH 01/56] added berkhoff case --- src/initialization/SetupInitialConditions.f90 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/initialization/SetupInitialConditions.f90 b/src/initialization/SetupInitialConditions.f90 index f6b25e6..a302152 100644 --- a/src/initialization/SetupInitialConditions.f90 +++ b/src/initialization/SetupInitialConditions.f90 @@ -396,6 +396,9 @@ SUBROUTINE SetupInitialConditions ENDIF PRINT*,' dt = ',dt PRINT*,' Cr = ',SFsol%c*dt/MIN(dxmin,dymin) + CASE (9) ! Berkhoff (3D) + CALL BottomBerkoff(FineGrid) + DetermineBottomGradients = 1 CASE (10) ! GD: SWENSE, Flat bottom, depth defined from SF-wave IF (curvilinearONOFF == 1) THEN !Rotate the physical grid with a given angle... From 87d640348ac439d76296abf3baa610929dc6f2b3 Mon Sep 17 00:00:00 2001 From: apek Date: Sat, 22 Aug 2015 19:38:20 +0000 Subject: [PATCH 02/56] added berkhoff setup --- src/analyticalsolutions/bottomBerkoff.f90 | 64 +++++++++++++++++++++++ src/analyticalsolutions/makefile.inc | 1 + 2 files changed, 65 insertions(+) create mode 100644 src/analyticalsolutions/bottomBerkoff.f90 diff --git a/src/analyticalsolutions/bottomBerkoff.f90 b/src/analyticalsolutions/bottomBerkoff.f90 new file mode 100644 index 0000000..e590722 --- /dev/null +++ b/src/analyticalsolutions/bottomBerkoff.f90 @@ -0,0 +1,64 @@ +SUBROUTINE BottomBerkoff(FineGrid) +! +! Define bottom profile for Berkhoff experiment (3D) +! +! By Allan P. Engsig-Karup. +USE Precision +USE Constants +USE DataTypes +IMPLICIT NONE +TYPE (Level_def) :: FineGrid +REAL(KIND=long) :: y, x, xr, yr, k, angle, dxrdx, dxrdy, dyrdx, dyrdy +INTEGER :: Nx, Ny, i, j +Nx = FineGrid%Nx +Ny = FineGrid%Ny +angle = 20 +k = angle/180.0_long*pi +DO j = 1, Ny + y = FineGrid%y(j) - 11.0_long ! FIXME: translation relative to standard y-coordinates + DO i = 1 , Nx + x = FineGrid%x(i) - half*FineGrid%x(Nx) ! position shoal in middle relative to y-axis + xr = cos(k)*x - sin(k)*y + yr = sin(k)*x + cos(k)*y + dxrdx = cos(k) + dyrdx = sin(k) + dxrdy = -sin(k) + dyrdy = cos(k) + IF (yr<=-5.82_long) THEN + FineGrid%h(i,j) = 0.45_long + FineGrid%hx(i,j) = zero + FineGrid%hy(i,j) = zero + FineGrid%hxx(i,j) = zero + FineGrid%hyy(i,j) = zero + ELSE ! IF (yr>-5.82_long) THEN + FineGrid%h(i,j) = 0.45_long-0.02_long*(5.82_long+yr) + FineGrid%hx(i,j) = -0.02_long*dyrdx + FineGrid%hy(i,j) = -0.02_long*dyrdy + FineGrid%hxx(i,j) = zero + FineGrid%hyy(i,j) = zero + END IF + IF ((xr/four)**2 + (yr/three)**2<1) THEN + FineGrid%h(i,j) = FineGrid%h(i,j) + 0.3_long - half*sqrt(one-(xr/five)**2-(yr/3.75_long)**2) +!WRITE(*,*) ' WARNING: The bottom slopes for the Berkhoff experiment is not defined analytically (i.e. not implemented).' +!WRITE(*,*) ' WARNING: Therefore the derivatives of the bottom profile function is determined numerically.' + FineGrid%hx(i,j) = FineGrid%hx(i,j) + (0.02_long*xr*dxrdx + & + 0.0355556_long*yr*dyrdx)/sqrt(one-0.04_long*xr**2-0.0711111_long*yr**2) + FineGrid%hy(i,j) = FineGrid%hy(i,j) + (0.02_long*xr*dxrdy + & + 0.0355556_long*yr*dyrdy)/sqrt(one-0.04_long*xr**2-0.0711111_long*yr**2) +! FineGrid%hxx(i,j) = FineGrid%hxx(i,j) + +! FineGrid%hyy(i,j) = FineGrid%hyy(i,j) + + END IF + IF (FineGrid%h(i,j)<0.1_long) THEN + ! flat bottom profile after shoal + ! - this is very absorption zone should effectively damp outgoing waves + FineGrid%h(i,j) = 0.1_long + FineGrid%hx(i,j) = zero + FineGrid%hy(i,j) = zero + FineGrid%hxx(i,j) = zero + FineGrid%hyy(i,j) = zero + END IF + END DO +END DO +WRITE(*,*) ' WARNING: The bottom slopes for the Berkhoff experiment is not defined analytically (i.e. not implemented).' +WRITE(*,*) ' WARNING: Therefore the derivatives of the bottom profile function is determined numerically.' +END SUBROUTINE BottomBerkoff diff --git a/src/analyticalsolutions/makefile.inc b/src/analyticalsolutions/makefile.inc index f91c57f..cfff9eb 100644 --- a/src/analyticalsolutions/makefile.inc +++ b/src/analyticalsolutions/makefile.inc @@ -3,6 +3,7 @@ LDIR = src/analyticalsolutions # Sources and objects SOURCES += $(LDIR)/beachgen2.f90 SOURCES += $(LDIR)/beachgen3D.f90 +SOURCES += $(LDIR)/bottomBerkoff.f90 SOURCES += $(LDIR)/bottomWhalin.f90 SOURCES += $(LDIR)/disper.f90 SOURCES += $(LDIR)/linearstandingwave2D.f90 From 2bc23a307fb38c4cf7b4d9642d3a20f9606b5549 Mon Sep 17 00:00:00 2001 From: apek Date: Sat, 22 Aug 2015 19:40:13 +0000 Subject: [PATCH 03/56] added berkhoff config --- examples/inputfiles/OceanWave3D.inp.Berkhoff3D | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 examples/inputfiles/OceanWave3D.inp.Berkhoff3D diff --git a/examples/inputfiles/OceanWave3D.inp.Berkhoff3D b/examples/inputfiles/OceanWave3D.inp.Berkhoff3D new file mode 100644 index 0000000..17dcd4b --- /dev/null +++ b/examples/inputfiles/OceanWave3D.inp.Berkhoff3D @@ -0,0 +1,17 @@ +Berkhoff experiment (3D) (Release Version) +9 <- Initial condition +22 35 1 129 257 4 0 0 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) +2 2 2 1 <- alpha, beta, gamma +2000 0.025 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-ExtrapolationON/OFF +9.81 <- gravitational acceleration constant +0 1 0 14 1e-6 1e-4 1 ZLGS F 1 1 5 <- Solve (GMRES=0,DC=1), Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +0 0.0464 0.45 1.0 1.0 1 0 1 8 32 <- wavegeneration functions(0=sinusoidal, 1=SF), Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter +0 1 0 650 <- StoreDataOnOff, formattype +1 <- 0=linear, 1=nonlinear computations +0 6 10 <- SG-filtering on/off, filter half width, poly order +1 3 2 Y 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) + 0 25 0 3 10 5 Y 1 Y 0 ! Zone 1: Wave maker + 0 25 28 35 9 5 Y 0 Y 0 ! Zone 2: Wave absorber + + + From 0f3969551216f69c87ee810543bfaf8bf1f33d60 Mon Sep 17 00:00:00 2001 From: hbbi Date: Sun, 23 Aug 2015 14:06:16 +0000 Subject: [PATCH 04/56] Updated the Berkhoff test case to the main trunk version --- examples/inputfiles/OceanWave3D.inp.Berkhoff3D | 17 ++++++++++------- src/analyticalsolutions/bottomBerkoff.f90 | 5 +++-- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/examples/inputfiles/OceanWave3D.inp.Berkhoff3D b/examples/inputfiles/OceanWave3D.inp.Berkhoff3D index 17dcd4b..ebe703f 100644 --- a/examples/inputfiles/OceanWave3D.inp.Berkhoff3D +++ b/examples/inputfiles/OceanWave3D.inp.Berkhoff3D @@ -1,17 +1,20 @@ Berkhoff experiment (3D) (Release Version) -9 <- Initial condition -22 35 1 129 257 4 0 0 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) -2 2 2 1 <- alpha, beta, gamma +9 1 <- Initial condition (0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 3=Whalin bar, ... see Initialization.f90:SetupInitialConditions); IncWaveType (0=none, 1=stream function, 2=linear regular or irregular waves); Acceleration factor for the local smoothing filter "breaking model" (turned off if absent). +22 35 1 129 257 4 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) +2 2 2 1 1 1 <- alpha, beta, gamma; precond (alpha, beta, gamma) 2000 0.025 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-ExtrapolationON/OFF 9.81 <- gravitational acceleration constant -0 1 0 14 1e-6 1e-4 1 ZLGS F 1 1 5 <- Solve (GMRES=0,DC=1), Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven -0 0.0464 0.45 1.0 1.0 1 0 1 8 32 <- wavegeneration functions(0=sinusoidal, 1=SF), Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter +1 1 0 14 1e-6 1e-4 1 V 1 1 2 <- solver (0:DC, 1:GMRES), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +0.0464 0.45 1.0 1.0 1 0 1 8 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter 0 1 0 650 <- StoreDataOnOff, formattype -1 <- 0=linear, 1=nonlinear computations -0 6 10 <- SG-filtering on/off, filter half width, poly order +1 0 <- 0/1=linear/nonlinear computations, Dynamic pressure term on/off +0 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order, sigma_filt(1:3) 1 3 2 Y 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) 0 25 0 3 10 5 Y 1 Y 0 ! Zone 1: Wave maker 0 25 28 35 9 5 Y 0 Y 0 ! Zone 2: Wave absorber +0 0 <- Damping pressure zone: PDampingOnOff=0 (off), number of zones. For each zone include the line: x1, x2, y1, y2 (bounds of the zone), gamma0 (dynamic FSBC), Gamma0 (kinematic FSBC), i_damperType (0=friction on the velocity, 1=friction on the potential). +0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) +0 <- Curvilinear on/off diff --git a/src/analyticalsolutions/bottomBerkoff.f90 b/src/analyticalsolutions/bottomBerkoff.f90 index e590722..e8b6fd9 100644 --- a/src/analyticalsolutions/bottomBerkoff.f90 +++ b/src/analyticalsolutions/bottomBerkoff.f90 @@ -15,9 +15,10 @@ SUBROUTINE BottomBerkoff(FineGrid) angle = 20 k = angle/180.0_long*pi DO j = 1, Ny - y = FineGrid%y(j) - 11.0_long ! FIXME: translation relative to standard y-coordinates +!hbb x and y are 2D arrays in the FineGrid. What about the ghost points here? DO i = 1 , Nx - x = FineGrid%x(i) - half*FineGrid%x(Nx) ! position shoal in middle relative to y-axis + x = FineGrid%x(i,1) - half*FineGrid%x(Nx,1) ! position shoal in middle relative to y-axis + y = FineGrid%y(1,j) - 11.0_long ! FIXME: translation relative to standard y-coordinates xr = cos(k)*x - sin(k)*y yr = sin(k)*x + cos(k)*y dxrdx = cos(k) From 65496d6fc26d63eb55ba761e0292cf32a0822be2 Mon Sep 17 00:00:00 2001 From: hbbi Date: Mon, 24 Aug 2015 11:03:38 +0000 Subject: [PATCH 05/56] Numerical derivation of h is now implemented. -hbb --- src/IO/StoreDataAscii.f90 | 4 +- src/analyticalsolutions/bottomBerkoff.f90 | 12 +- src/initialization/Initialize.f90 | 5 +- src/initialization/SetupInitialConditions.f90 | 2 +- src/main/OceanWave3DT0Setup.f90 | 181 ++++++++++-------- src/utilities/random_wave_coefficients.f90 | 2 +- src/variabledefs/globalvariables.f90 | 2 +- 7 files changed, 112 insertions(+), 96 deletions(-) diff --git a/src/IO/StoreDataAscii.f90 b/src/IO/StoreDataAscii.f90 index 577ed07..7e5811d 100644 --- a/src/IO/StoreDataAscii.f90 +++ b/src/IO/StoreDataAscii.f90 @@ -28,8 +28,8 @@ SUBROUTINE StoreDataAscii(nx,ny,E,P,FineGrid,nr) WRITE(io,444) ENDDO CLOSE(io) -445 FORMAT(4e14.6) -446 FORMAT(100e14.6) +445 FORMAT(4e14.6e3) +446 FORMAT(100e14.6e3) 444 FORMAT() END SUBROUTINE StoreDataAscii diff --git a/src/analyticalsolutions/bottomBerkoff.f90 b/src/analyticalsolutions/bottomBerkoff.f90 index e8b6fd9..14c3329 100644 --- a/src/analyticalsolutions/bottomBerkoff.f90 +++ b/src/analyticalsolutions/bottomBerkoff.f90 @@ -1,4 +1,4 @@ -SUBROUTINE BottomBerkoff(FineGrid) +SUBROUTINE BottomBerkoff(FineGrid,GX,GY) ! ! Define bottom profile for Berkhoff experiment (3D) ! @@ -9,13 +9,15 @@ SUBROUTINE BottomBerkoff(FineGrid) IMPLICIT NONE TYPE (Level_def) :: FineGrid REAL(KIND=long) :: y, x, xr, yr, k, angle, dxrdx, dxrdy, dyrdx, dyrdy -INTEGER :: Nx, Ny, i, j -Nx = FineGrid%Nx -Ny = FineGrid%Ny +INTEGER :: Nx, Ny, i, j, GX, GY + +!hbb Added the ghost points here. +Nx = FineGrid%Nx+2*GX +Ny = FineGrid%Ny+2*GY angle = 20 k = angle/180.0_long*pi DO j = 1, Ny -!hbb x and y are 2D arrays in the FineGrid. What about the ghost points here? +!hbb x and y are 2D arrays in the FineGrid. DO i = 1 , Nx x = FineGrid%x(i,1) - half*FineGrid%x(Nx,1) ! position shoal in middle relative to y-axis y = FineGrid%y(1,j) - 11.0_long ! FIXME: translation relative to standard y-coordinates diff --git a/src/initialization/Initialize.f90 b/src/initialization/Initialize.f90 index b4d1f59..fe593f5 100644 --- a/src/initialization/Initialize.f90 +++ b/src/initialization/Initialize.f90 @@ -25,7 +25,7 @@ SUBROUTINE Initialize ! ! OUTPUT !FILEOP(1) = 8 ! LOG.txt -FILEOP(1:15) = (/ (i,i=8,22) /) +FILEOP(1:16) = (/ (i,i=8,23) /) ! First file is the log file. OPEN (UNIT=FILEOP(1),FILE='LOG.txt',STATUS='UNKNOWN') ! Files 2:11 are possible kinematics output files opened and written to in @@ -39,7 +39,8 @@ SUBROUTINE Initialize ! called by the main line. ! File 15 is the file 'Pdamp.chk' written to by subroutine PreprocessPDampingZones ! called by the main line. - +! File 16 is the file 'bathymetry.chk' written to by OceanWave3DT0Setup +! called by the main line. RETURN ! ERROR HANDLING diff --git a/src/initialization/SetupInitialConditions.f90 b/src/initialization/SetupInitialConditions.f90 index a302152..9811f6a 100644 --- a/src/initialization/SetupInitialConditions.f90 +++ b/src/initialization/SetupInitialConditions.f90 @@ -397,7 +397,7 @@ SUBROUTINE SetupInitialConditions PRINT*,' dt = ',dt PRINT*,' Cr = ',SFsol%c*dt/MIN(dxmin,dymin) CASE (9) ! Berkhoff (3D) - CALL BottomBerkoff(FineGrid) + CALL BottomBerkoff(FineGrid,GhostGridX,GhostGridY) DetermineBottomGradients = 1 CASE (10) ! GD: SWENSE, Flat bottom, depth defined from SF-wave IF (curvilinearONOFF == 1) THEN diff --git a/src/main/OceanWave3DT0Setup.f90 b/src/main/OceanWave3DT0Setup.f90 index f4b4a71..37ec8df 100644 --- a/src/main/OceanWave3DT0Setup.f90 +++ b/src/main/OceanWave3DT0Setup.f90 @@ -11,7 +11,7 @@ SUBROUTINE OceanWave3DT0Setup ! GD: to test the cross derivatives... REAL(KIND=long), DIMENSION(:,:,:), ALLOCATABLE :: tmpPHI TYPE (Diff_def) :: FullRankStencils - INTEGER i, j, k, n_cut + INTEGER i, j, k, n_cut, NxT, NyT ! OUTPUT HEADER TO SCREEN WRITE (6,2010) @@ -230,27 +230,27 @@ SUBROUTINE OceanWave3DT0Setup RandomWave(1)%beta, n_fft, RandomWave(i)%nx, RandomWave(i)%ny, & RandomWave(1)%beta0, RandomWave(1)%x0, RandomWave(1)%y0, & FineGrid%x(RelaxZones(i)%idx(1):RelaxZones(i)%idx(2), & - RelaxZones(i)%idx(3):RelaxZones(i)%idx(4)), & + RelaxZones(i)%idx(3):RelaxZones(i)%idx(4)), & FineGrid%y(RelaxZones(i)%idx(1):RelaxZones(i)%idx(2), & - RelaxZones(i)%idx(3):RelaxZones(i)%idx(4)), & + RelaxZones(i)%idx(3):RelaxZones(i)%idx(4)), & dt, RandomWave(i)%Tp, RandomWave(i)%Hs, RandomWave(i)%h0, & g, RandomWave(i)%inc_wave_file, RandomWave(i)%kh_max, RandomWave(i)%seed, & RandomWave(i)%seed2, RandomWave(i)%eta, RandomWave(i)%Phis, time0 ) -!hbb -! write(201,*)RandomWave(i) + !hbb + ! write(201,*)RandomWave(i) END If END DO END If ENDIF ENDIF IF(IncWaveType==3) THEN - ! Wave generation by flux condition on western wall, botp - CALL setupWavePaddle() + ! Wave generation by flux condition on western wall, botp + CALL setupWavePaddle() ENDIF ! Uneumann is in all cases added to the western boundary. Only if ! IncWaveType==3 is it non-zero. - ! FIXME: Is there a better solution where this field is only loadded if needed? + ! FIXME: Is there a better solution where this field is only loaded if needed? ! botp ALLOCATE(Uneumann(FineGrid%Nz+GhostGridZ,FineGrid%Ny+2*GhostGridY)) Uneumann = zero @@ -279,24 +279,38 @@ SUBROUTINE OceanWave3DT0Setup END IF ! IF (DetermineBottomGradients==1) THEN - PRINT*,'Error: no support yet for determining bottom gradients numerically in current implementation. (APEK)' - STOP - ! ! Determine Bottom Gradients numerically - ! CALL PreProcessDiffStencils(FineGrid,FineGrid%DiffStencils,GhostGridX,GhostGridY,GhostGridZ,alpha,beta,gamma) - ! IF (FineGrid%Nx==1) THEN - ! FineGrid%hx = zero; FineGrid%hxx = zero; - ! ELSE - ! CALL DiffXEven(FineGrid%h,FineGrid%hx, 1,FineGrid%Nx,FineGrid%Ny,1,FineGrid%DiffStencils,alpha) - ! CALL DiffXEven(FineGrid%h,FineGrid%hxx,2,FineGrid%Nx,FineGrid%Ny,1,FineGrid%DiffStencils,alpha) - ! END IF - ! IF (FineGrid%Ny==1) THEN - ! FineGrid%hy = zero; FineGrid%hyy = zero; - ! ELSE - ! CALL DiffYEven(FineGrid%h,FineGrid%hy, 1,FineGrid%Nx,FineGrid%Ny,1,FineGrid%DiffStencils,beta) - ! CALL DiffYEven(FineGrid%h,FineGrid%hyy,2,FineGrid%Nx,FineGrid%Ny,1,FineGrid%DiffStencils,beta) - ! ENDIF - ! DEALLOCATE(FineGrid%DiffStencils%StencilX,FineGrid%DiffStencils%StencilY,FineGrid%DiffStencils%StencilZ) + PRINT*,'Warning: determining bottom gradients numerically, this is only implemented for rectangular grids. (HBB)' + ! Determine the bottom gradients numerically + CALL PreProcessDiffStencils(FineGrid,FineGrid%DiffStencils,GhostGridX,GhostGridY,GhostGridZ,alpha,beta,gamma) + NxT=FineGrid%Nx+2*GhostGridX; NyT=FineGrid%NY+2*GhostGridY + IF (FineGrid%Nx==1) THEN + FineGrid%hx = zero; FineGrid%hxx = zero; + ELSE + CALL DiffXEven(FineGrid%h,FineGrid%hx, 1,NxT,NyT,1,FineGrid%DiffStencils,alpha) + CALL DiffXEven(FineGrid%h,FineGrid%hxx,2,NxT,NyT,1,FineGrid%DiffStencils,alpha) + END IF + IF (FineGrid%Ny==1) THEN + FineGrid%hy = zero; FineGrid%hyy = zero; + ELSE + CALL DiffYEven(FineGrid%h,FineGrid%hy, 1,NxT,NyT,1,FineGrid%DiffStencils,beta) + CALL DiffYEven(FineGrid%h,FineGrid%hyy,2,NxT,NyT,1,FineGrid%DiffStencils,beta) + ENDIF + DEALLOCATE(FineGrid%DiffStencils%StencilX,FineGrid%DiffStencils%StencilY,FineGrid%DiffStencils%StencilZ) ENDIF +! +! Now that we are sure that we have all bottom gradients, save the bathymetry data file. +! + Open(FILEOP(16),file='bathymetry.chk',status='unknown') + Write(FILEOP(16),81) +81 FORMAT('% Bottom bathymetry: ((h(i,j),h_x,h_xx,h_y,h_yy),j=1,Ny),i=1,Nx)') + Do i=1,FineGrid%Nx+2*GhostGridX + Do j=1,FineGrid%Ny+2*GhostGridY + write(Fileop(16),82)FineGrid%h(i,j),FineGrid%hx(i,j),FineGrid%hxx(i,j), & + FineGrid%hy(i,j),FineGrid%hyy(i,j) + end Do + end Do + close(FILEOP(16)) +82 FORMAT(5e16.6) IF (Precond==1) THEN ! PREPARE FOR PRECONDITIONING ! DETERMINE LOW-ORDER FINITE DIFFERENCE STENCILS @@ -305,9 +319,9 @@ SUBROUTINE OceanWave3DT0Setup CALL PreparePreconditioner(FineGrid%PreconditioningMatrix,FineGrid,GhostGridX, GhostGridY, GhostGridZ, & alphaprecond, betaprecond, gammaprecond, Precond, CurvilinearONOFF) -! filename = "SparseMatrix.bin" -! CALL StoreSparseMatrix(FineGrid%PreconditioningMatrix,filename,formattype) -! print*,'Preconditioningmatrix stored in SparseMatrix.bin.' + ! filename = "SparseMatrix.bin" + ! CALL StoreSparseMatrix(FineGrid%PreconditioningMatrix,filename,formattype) + ! print*,'Preconditioningmatrix stored in SparseMatrix.bin.' CALL FactorPreconditioner(FineGrid%PreconditioningMatrix, & (FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ)) @@ -319,7 +333,6 @@ SUBROUTINE OceanWave3DT0Setup CALL MGPreProcess ( FineGrid, GhostGridX, GhostGridY, GhostGridZ, MGCoarseningStrategy, alphaprecond, betaprecond, & gammaprecond, Precond, MGmaxgrids, CurvilinearONOFF) ENDIF - ! ! DETERMINE HIGH-ORDER FINITE DIFFERENCE STENCILS ! Now, determine fullrank stencils for the x- , y- and z- directions; @@ -357,7 +370,7 @@ SUBROUTINE OceanWave3DT0Setup GhostGridX, GhostGridY, GhostGridZ) END IF print*,'...done!' -! + ! ! GD: Test to define correct initial spatail derivaties... CALL DifferentiationsFreeSurfacePlane(Wavefield,GhostGridX,GhostGridY,FineGrid,alpha,beta) @@ -371,71 +384,71 @@ SUBROUTINE OceanWave3DT0Setup IF (0==1) THEN - ! Output preconditioner - IF (Precond==1) THEN - filename = "SparseMatrix.bin" - CALL StoreSparseMatrix(FineGrid%PreconditioningMatrix,filename,formattype) - print*,'Preconditioningmatrix stored in SparseMatrix.bin.' - END IF - - ! IF SIMULATION IS LINEAR THEN DETERMINE THE SIGMA-COEFFICIENTS FOR THE TRANSFORMED LAPLACE PROBLEM - IF (LinearONOFF==0) THEN - CALL ALLOCATE_Wavefield_Type(Wavefield_tmp, FineGrid%Nx, FineGrid%Ny, FineGrid%Nz, GhostGridX, GhostGridy, GhostGridZ, 0) - CALL DetermineTransformationConstantsArray(FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY,& - FineGrid%Nz+GhostGridZ,FineGrid,FineGrid%dsigmanew,Wavefield_tmp) - CALL DEALLOCATE_Wavefield_Type(Wavefield_tmp, FineGrid%Nx, FineGrid%Ny, FineGrid%Nz, 0) - ENDIF - - ! Output linear system matrix - ALLOCATE(ee((FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ))) - ALLOCATE(tm((FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ))) - ALLOCATE(A((FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ),& - (FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ))) - ee = zero - tm = zero - A = zero - DO i = 1 , (FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ) + ! Output preconditioner + IF (Precond==1) THEN + filename = "SparseMatrix.bin" + CALL StoreSparseMatrix(FineGrid%PreconditioningMatrix,filename,formattype) + print*,'Preconditioningmatrix stored in SparseMatrix.bin.' + END IF + + ! IF SIMULATION IS LINEAR THEN DETERMINE THE SIGMA-COEFFICIENTS FOR THE TRANSFORMED LAPLACE PROBLEM + IF (LinearONOFF==0) THEN + CALL ALLOCATE_Wavefield_Type(Wavefield_tmp, FineGrid%Nx, FineGrid%Ny, FineGrid%Nz, GhostGridX, GhostGridy, GhostGridZ, 0) + CALL DetermineTransformationConstantsArray(FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY,& + FineGrid%Nz+GhostGridZ,FineGrid,FineGrid%dsigmanew,Wavefield_tmp) + CALL DEALLOCATE_Wavefield_Type(Wavefield_tmp, FineGrid%Nx, FineGrid%Ny, FineGrid%Nz, 0) + ENDIF + + ! Output linear system matrix + ALLOCATE(ee((FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ))) + ALLOCATE(tm((FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ))) + ALLOCATE(A((FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ),& + (FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ))) + ee = zero + tm = zero + A = zero + DO i = 1 , (FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ) ee(i) = one IF (curvilinearONOFF==1) THEN ! CALL BuildLinearSystemTransformedCurvilinear(FineGrid, ee, tm,GhostGridX,GhostGridY,GhostGridZ,kappa) CALL BuildLinearSystemTransformedCurvilinear(FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & - FineGrid%Nz+GhostGridZ,ee,tm,FineGrid,alpha,beta,gamma) + FineGrid%Nz+GhostGridZ,ee,tm,FineGrid,alpha,beta,gamma) ELSE CALL BuildLinearSystem(FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & - FineGrid%Nz+GhostGridZ,ee,tm,FineGrid,alpha,beta,gamma) + FineGrid%Nz+GhostGridZ,ee,tm,FineGrid,alpha,beta,gamma) END IF A(:,i) = tm ee(i) = zero - END DO - filename = "A.bin" - CALL StoreRealArray(A,(FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ),& - (FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ),filename,formattype) - IF (curvilinearONOFF==1) THEN + END DO + filename = "A.bin" + CALL StoreRealArray(A,(FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ),& + (FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ),filename,formattype) + IF (curvilinearONOFF==1) THEN print*,'Linear coefficient matrix A (curvilinear routine) stored in A.bin.' - ELSE + ELSE print*,'Linear coefficient matrix A stored in A.bin.' - END IF - print*,'curvilinearONOFF=',curvilinearONOFF - - ! save the vertical derivative for linear stability analysis... - ee = zero - tm = zero - A = zero - DO i = 1 , (FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ) + END IF + print*,'curvilinearONOFF=',curvilinearONOFF + + ! save the vertical derivative for linear stability analysis... + ee = zero + tm = zero + A = zero + DO i = 1 , (FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ) ee(i) = one CALL DiffZArbitrary(ee,tm,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY,FineGrid%Nz+GhostGridZ, & - FineGrid%DiffStencils,gamma) + FineGrid%DiffStencils,gamma) A(:,i) = tm ee(i) = zero - END DO - filename = "DMz.bin" - CALL StoreRealArray(A,(FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ),& - (FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ),filename,formattype) - print*,'Matrix DMz stored in DMz.bin.' - - DEALLOCATE(ee,tm,A) - ! print*,'stopped here for now...' - stop + END DO + filename = "DMz.bin" + CALL StoreRealArray(A,(FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ),& + (FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ),filename,formattype) + print*,'Matrix DMz stored in DMz.bin.' + + DEALLOCATE(ee,tm,A) + ! print*,'stopped here for now...' + stop END IF @@ -464,7 +477,7 @@ SUBROUTINE OceanWave3DT0Setup CALL StoreDataAscii(FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY,Wavefield%E,Wavefield%P,FineGrid,0) ! Also store bottom profile CALL StoreDataAscii(FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY,FineGrid%h,FineGrid%hx,FineGrid,899) -ENDIF + ENDIF ! ! Open and initialize the kinematics output file(s) if called for ! @@ -508,9 +521,9 @@ SUBROUTINE OceanWave3DT0Setup ! General problem!! !botp ALLOCATE( & - UOF(FineGrid%Nz+GhostGridZ,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY), & - VOF(FineGrid%Nz+GhostGridZ,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY), & - WOF(FineGrid%Nz+GhostGridZ,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY)) + UOF(FineGrid%Nz+GhostGridZ,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY), & + VOF(FineGrid%Nz+GhostGridZ,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY), & + WOF(FineGrid%Nz+GhostGridZ,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY)) ALLOCATE(dOF(FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY)) diff --git a/src/utilities/random_wave_coefficients.f90 b/src/utilities/random_wave_coefficients.f90 index 5833557..0ebbc13 100644 --- a/src/utilities/random_wave_coefficients.f90 +++ b/src/utilities/random_wave_coefficients.f90 @@ -61,7 +61,7 @@ SUBROUTINE random_wave_coefficients(i_spec, nt, beta0, dt, dx, Tp, Hs, depth, & ! A JONSWAP spectrum with a normal spreading CALL build_coeff_3D(eta0, beta, nt, Hs, Tp, dt, seed, seed2, beta0) ELSEIF(i_spec==34)THEN - ! A JONSWAP spectrum with a normal spreading + ! A JONSWAP spectrum with a cos^s spreading CALL build_coeff_3D_Cos(eta0, beta, nt, Hs, Tp, dt, seed, seed2, beta0, s0) ELSEIF(i_spec == 2) THEN open(21,file=inc_wave_file,status='old') diff --git a/src/variabledefs/globalvariables.f90 b/src/variabledefs/globalvariables.f90 index 6c3fd26..d509aeb 100644 --- a/src/variabledefs/globalvariables.f90 +++ b/src/variabledefs/globalvariables.f90 @@ -11,7 +11,7 @@ MODULE GlobalVariables IMPLICIT NONE ! I/O File handle arrays -INTEGER :: FILEIP(4), FILEOP(15) +INTEGER :: FILEIP(4), FILEOP(16) CHARACTER(len=2) fnt(10) CHARACTER(LEN=40) :: filenameINPUT, filename, fname_bottom INTEGER :: STAT From 04fbbe72cefd595f9f2076ce3831c7cd31e981eb Mon Sep 17 00:00:00 2001 From: hbbi Date: Mon, 24 Aug 2015 11:15:17 +0000 Subject: [PATCH 06/56] Updated Berkhoff test case. -hbb --- examples/inputfiles/OceanWave3D.inp.Berkhoff3D | 5 +++-- src/IO/StoreDataAscii.f90 | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/examples/inputfiles/OceanWave3D.inp.Berkhoff3D b/examples/inputfiles/OceanWave3D.inp.Berkhoff3D index ebe703f..992ef34 100644 --- a/examples/inputfiles/OceanWave3D.inp.Berkhoff3D +++ b/examples/inputfiles/OceanWave3D.inp.Berkhoff3D @@ -1,12 +1,13 @@ Berkhoff experiment (3D) (Release Version) 9 1 <- Initial condition (0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 3=Whalin bar, ... see Initialization.f90:SetupInitialConditions); IncWaveType (0=none, 1=stream function, 2=linear regular or irregular waves); Acceleration factor for the local smoothing filter "breaking model" (turned off if absent). -22 35 1 129 257 4 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) +22. 35. 1. 129 257 5 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) 2 2 2 1 1 1 <- alpha, beta, gamma; precond (alpha, beta, gamma) 2000 0.025 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-ExtrapolationON/OFF 9.81 <- gravitational acceleration constant 1 1 0 14 1e-6 1e-4 1 V 1 1 2 <- solver (0:DC, 1:GMRES), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven 0.0464 0.45 1.0 1.0 1 0 1 8 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter -0 1 0 650 <- StoreDataOnOff, formattype +-100 20 1 1 <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +65 65 1 100 170 1 1700 2000 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride 1 0 <- 0/1=linear/nonlinear computations, Dynamic pressure term on/off 0 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order, sigma_filt(1:3) 1 3 2 Y 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) diff --git a/src/IO/StoreDataAscii.f90 b/src/IO/StoreDataAscii.f90 index 7e5811d..99cd5d6 100644 --- a/src/IO/StoreDataAscii.f90 +++ b/src/IO/StoreDataAscii.f90 @@ -28,8 +28,8 @@ SUBROUTINE StoreDataAscii(nx,ny,E,P,FineGrid,nr) WRITE(io,444) ENDDO CLOSE(io) -445 FORMAT(4e14.6e3) -446 FORMAT(100e14.6e3) +445 FORMAT(4e16.6e3) +446 FORMAT(100e16.6e3) 444 FORMAT() END SUBROUTINE StoreDataAscii From 188c4cdb3326cfdb535f5facb6717445750a97aa Mon Sep 17 00:00:00 2001 From: mago Date: Fri, 4 Sep 2015 11:07:06 +0000 Subject: [PATCH 07/56] Definition of the Vincent and Briggs case (3D elliptical mound) --- examples/inputfiles/OceanWave3D.inp.Vincent | 18 + src/analyticalsolutions/bottomVincent.f90 | 48 + src/analyticalsolutions/makefile.inc | 23 +- src/initialization/Initialize.f90 | 2 +- src/initialization/SetupInitialConditions.f90 | 1599 +++++++++-------- 5 files changed, 880 insertions(+), 810 deletions(-) create mode 100644 examples/inputfiles/OceanWave3D.inp.Vincent create mode 100644 src/analyticalsolutions/bottomVincent.f90 diff --git a/examples/inputfiles/OceanWave3D.inp.Vincent b/examples/inputfiles/OceanWave3D.inp.Vincent new file mode 100644 index 0000000..d111fbd --- /dev/null +++ b/examples/inputfiles/OceanWave3D.inp.Vincent @@ -0,0 +1,18 @@ +Vincent and Briggs experiment (3D) (Release Version) +17 2 <- Initial condition (0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 3=Whalin bar, ... see Initialization.f90:SetupInitialConditions); IncWaveType (0=none, 1=stream function, 2=linear regular or irregular waves); Acceleration factor for the local smoothing filter "breaking model" (turned off if absent). +40.60 29.080 0.4572 257 129 5 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) +2 2 2 1 1 1 <- alpha, beta, gamma; precond (alpha, beta, gamma) +3120 0.025 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-ExtrapolationON/OFF +9.81 <- gravitational acceleration constant +1 1 0 14 1e-6 1e-4 1 V 1 1 2 <- solver (0:DC, 1:GMRES), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +0.048 0.4572 1.0 1.3 1 0 1 8 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter +-500 1 1 1 <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +1 0 <- 0/1=linear/nonlinear computations, Dynamic pressure term on/off +0 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order, sigma_filt(1:3) +1 3 2 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) +0 4.51 0 29.08 10 5 X 1 X 0 ! Zone 1: Wave maker +29.51 40.60 0 29.08 9 5 X 0 X 0 ! Zone 2: Wave absorber +0 0 <- Damping pressure zone: PDampingOnOff=0 (off), number of zones. For each zone include the line: x1, x2, y1, y2 (bounds of the zone), gamma0 (dynamic FSBC), Gamma0 (kinematic FSBC), i_damperType (0=friction on the velocity, 1=friction on the potential). +0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) +0 <- Curvilinear on/off +1 1.3 0.0254 0.4572 20. -1 34 14.54 4.51 run06.el 0.0 0.0 <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, inc_wave_file, (beta, S if 3D). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. \ No newline at end of file diff --git a/src/analyticalsolutions/bottomVincent.f90 b/src/analyticalsolutions/bottomVincent.f90 new file mode 100644 index 0000000..42b7f25 --- /dev/null +++ b/src/analyticalsolutions/bottomVincent.f90 @@ -0,0 +1,48 @@ +SUBROUTINE BottomVincent(FineGrid,GX,GY) +! +! Define bottom profile for Vincent and Briggs experiment (3D) +! +! By Maite Gouin. +USE Precision +USE Constants +USE DataTypes +IMPLICIT NONE +TYPE (Level_def) :: FineGrid +REAL(KIND=long) :: y, x, xr, yr, k, angle, dxrdx, dxrdy, dyrdx, dyrdy +INTEGER :: Nx, Ny, i, j, GX, GY + +!hbb Added the ghost points here. +Nx = FineGrid%Nx+2*GX +Ny = FineGrid%Ny+2*GY +angle = 0 +k = angle/180.0_long*pi +DO j = 1, Ny +!hbb x and y are 2D arrays in the FineGrid. + DO i = 1 , Nx + x = FineGrid%x(i,1) - 6.1_long -4.51_long ! FIXME: translation relative to standard y-coordinates + y = FineGrid%y(1,j) - 14.54_long !half*FineGrid%x(Nx,1) ! position shoal in middle relative to y-axis + yr = cos(k)*y - sin(k)*x + xr = sin(k)*y + cos(k)*x + dyrdy = cos(k) + dxrdy = sin(k) + dyrdx = -sin(k) + dxrdx = cos(k) + ! + FineGrid%h(i,j) = 0.4572_long + ! + IF ((yr/3.96_long)**2 + (xr/3.05_long)**2<1) THEN + FineGrid%h(i,j) = FineGrid%h(i,j) + 0.4572_long - 0.7620_long*sqrt(one-(yr/4.95_long)**2-(xr/3.81_long)**2) +!WRITE(*,*) ' WARNING: The bottom slopes for the Vincent and Briggs experiment is not defined analytically (i.e. not implemented).' +!WRITE(*,*) ' WARNING: Therefore the derivatives of the bottom profile function is determined numerically.' + !FineGrid%hx(i,j) = FineGrid%hx(i,j) + (0.02_long*xr*dxrdx + & + ! 0.0355556_long*yr*dyrdx)/sqrt(one-0.04_long*xr**2-0.0711111_long*yr**2) + !FineGrid%hy(i,j) = FineGrid%hy(i,j) + (0.02_long*xr*dxrdy + & + ! 0.0355556_long*yr*dyrdy)/sqrt(one-0.04_long*xr**2-0.0711111_long*yr**2) +! FineGrid%hxx(i,j) = FineGrid%hxx(i,j) + +! FineGrid%hyy(i,j) = FineGrid%hyy(i,j) + + END IF + END DO +END DO +WRITE(*,*) ' WARNING: The bottom slopes for the Vincent and Briggs experiment is not defined analytically (i.e. not implemented).' +WRITE(*,*) ' WARNING: Therefore the derivatives of the bottom profile function is determined numerically.' +END SUBROUTINE BottomVincent diff --git a/src/analyticalsolutions/makefile.inc b/src/analyticalsolutions/makefile.inc index cfff9eb..7ad989c 100644 --- a/src/analyticalsolutions/makefile.inc +++ b/src/analyticalsolutions/makefile.inc @@ -1,11 +1,12 @@ -LDIR = src/analyticalsolutions - -# Sources and objects -SOURCES += $(LDIR)/beachgen2.f90 -SOURCES += $(LDIR)/beachgen3D.f90 -SOURCES += $(LDIR)/bottomBerkoff.f90 -SOURCES += $(LDIR)/bottomWhalin.f90 -SOURCES += $(LDIR)/disper.f90 -SOURCES += $(LDIR)/linearstandingwave2D.f90 -SOURCES += $(LDIR)/submergedbar2D.f90 -SOURCES += $(LDIR)/nonlinearstandingwave1D.f90 +LDIR = src/analyticalsolutions + +# Sources and objects +SOURCES += $(LDIR)/beachgen2.f90 +SOURCES += $(LDIR)/beachgen3D.f90 +SOURCES += $(LDIR)/bottomBerkoff.f90 +SOURCES += $(LDIR)/bottomWhalin.f90 +SOURCES += $(LDIR)/bottomVincent.f90 +SOURCES += $(LDIR)/disper.f90 +SOURCES += $(LDIR)/linearstandingwave2D.f90 +SOURCES += $(LDIR)/submergedbar2D.f90 +SOURCES += $(LDIR)/nonlinearstandingwave1D.f90 diff --git a/src/initialization/Initialize.f90 b/src/initialization/Initialize.f90 index fe593f5..24d4606 100644 --- a/src/initialization/Initialize.f90 +++ b/src/initialization/Initialize.f90 @@ -14,7 +14,7 @@ SUBROUTINE Initialize CALL GETARG(1,filenameINPUT) IF (LEN_TRIM(filenameINPUT)==0) THEN ! Set standard input filename when not specified by user - filenameINPUT = 'OceanWave3D.inp' + filenameINPUT = 'OceanWave3D.inp.Vincent' ENDIF OPEN (UNIT=FILEIP(1),FILE=filenameINPUT,STATUS='UNKNOWN',ERR=100,IOSTAT=STAT) ! diff --git a/src/initialization/SetupInitialConditions.f90 b/src/initialization/SetupInitialConditions.f90 index 9811f6a..ce500db 100644 --- a/src/initialization/SetupInitialConditions.f90 +++ b/src/initialization/SetupInitialConditions.f90 @@ -1,798 +1,801 @@ -SUBROUTINE SetupInitialConditions - ! By Allan P. Engsig-Karup. - USE GlobalVariables - IMPLICIT NONE - INTEGER :: i, j, k, Nx, Ny, Nz - REAL(KIND=long) :: kh, kw, HH, kh_deep, kh_shallow, h_deep, h_shallow, kx, ky, y0 - REAL(KIND=long) :: tmpx(FineGrid%Nx+2*GhostGridX), tmpy(FineGrid%Ny+2*GhostGridY) - EXTERNAL BeachGen3Dver2, BuildLinearSystem - ! TEMPORARY POINTERS/VARIABLES - Nx = FineGrid%Nx - Ny = FineGrid%Ny - Nz = FineGrid%Nz - DetermineBottomGradients = 0 - print*,'IC chosen is case ',IC - SELECT CASE (IC) - - CASE (-1, 0) ! Initial condition determined by PressureTermOnOff and funPressureTerm.f90 or read from the init file 'OceanWave3D.init'. - IF (IC==-1)THEN - print *, 'Reading the initial conditions. ** Not implemented curvilinear! **' - - DO j=1+GhostGridY,FineGrid%Ny+GhostGridY - Do i=1+GhostGridX,FineGrid%Nx+GhostGridX - read(fileip(3),*)WaveField%E(i,j),WaveField%P(i,j) - END Do - END DO - - ELSE - IF(PressureTermOnOff==0)THEN - print*, 'Initial condition is still water.' - ELSEIF(PressureTermOnOff==1)THEN - print *, 'Initial condition determined by PressureTermOnOff is a 2D stationary Gaussian hump' - ELSEIF(PressureTermOnOff==2)THEN - print *, 'Initial condition determined by PressureTermOnOff is a 3D moving Gaussian hump' - END IF - Call funInitialFreeSurfaceElevation(g,FineGrid%Nx+2*GhostGridX,& - FineGrid%Ny+2*GhostGridY,FineGrid,WaveField) - END IF - IF (Lz <= 0)THEN - ! Read in the bottom contours from a file. - OPEN(unit=fileip(4),file=fname_bottom,status='old') - READ(fileip(4),'(A)')head(4) - PRINT *, 'SetUpInitialConditions: Reading the bottom contours from file:' - PRINT *,fname_bottom,' with header:' - PRINT *, head(4) - PRINT *, ' ' - READ(fileip(4),*) DetermineBottomGradients ! Read the gradient flag - - IF(DetermineBottomGradients==1)THEN - Print *, ' Reading h and computing derivatives of h numerically.' - ! Read in h(x,y) - do j=1,ny - DO i=1,nx - READ(fileip(4),*) FineGrid%h(i,j) - END DO - END do - ELSEIF(DetermineBottomGradients == 0) THEN - ! Read h(x,y),h_x,h_xx,h_y,h_yy - Print *, ' Reading h,h_x,h_xx,h_y,h_yy.' - print *, ' ' - ! - Do j=1+GhostGridY,ny+GhostGridY - DO i=1+GhostGridX,nx+GhostGridX - READ(fileip(4),*) FineGrid%h(i,j), FineGrid%hx(i,j), FineGrid%hxx(i,j), & - FineGrid%hy(i,j), FineGrid%hyy(i,j) - END DO - END Do - END IF - ! - ! Extend the bathymetry to the ghost points by copying the domain endpoint values. - ! - FineGrid%h(1,:)=FineGrid%h(1+GhostGridX,:); FineGrid%h(:,1)=FineGrid%h(:,1+GhostGridY); - FineGrid%h(nx+2*GhostGridX,:)=FineGrid%h(nx+GhostGridX,:); - FineGrid%h(:,ny+2*GhostGridY)=FineGrid%h(:,ny+GhostGridY) - FineGrid%hx(1,:)=FineGrid%hx(1+GhostGridX,:); FineGrid%hx(:,1)=FineGrid%hx(:,1+GhostGridY); - FineGrid%hx(nx+2*GhostGridX,:)=FineGrid%hx(nx+GhostGridX,:); - FineGrid%hx(:,ny+2*GhostGridY)=FineGrid%hx(:,ny+GhostGridY) - FineGrid%hxx(1,:)=FineGrid%hxx(1+GhostGridX,:); - FineGrid%hxx(:,1)=FineGrid%hxx(:,1+GhostGridY); - FineGrid%hxx(nx+2*GhostGridX,:)=FineGrid%hxx(nx+GhostGridX,:); - FineGrid%hxx(:,ny+2*GhostGridY)=FineGrid%hxx(:,ny+GhostGridY) - FineGrid%hy(1,:)=FineGrid%hy(1+GhostGridX,:); FineGrid%hy(:,1)=FineGrid%hy(:,1+GhostGridY); - FineGrid%hy(nx+2*GhostGridX,:)=FineGrid%hy(nx+GhostGridX,:); - FineGrid%hy(:,ny+2*GhostGridY)=FineGrid%hy(:,ny+GhostGridY) - FineGrid%hyy(1,:)=FineGrid%hyy(1+GhostGridX,:); - FineGrid%hyy(:,1)=FineGrid%hyy(:,1+GhostGridY); - FineGrid%hyy(nx+2*GhostGridX,:)=FineGrid%hyy(nx+GhostGridX,:); - FineGrid%hyy(:,ny+2*GhostGridY)=FineGrid%hyy(:,ny+GhostGridY) - ! - ! Re-set Lz to be max h(1,1) - ! - Lz=FineGrid%h(1,1) - ELSE - FineGrid%h = Lz; FineGrid%hx=zero; FineGrid%hxx=zero; FineGrid%hy=zero; FineGrid%hyy=zero; - END IF - - CASE (1) ! Mildly nonlinear standing wave, deep water (Agnon & Glozman (1996)) - print *, 'Mildly nonlinear standing wave (deep water) in a rectangular domain.' - IF (Nx>1) THEN - FineGrid%h = two; FineGrid%hx=zero; FineGrid%hxx=zero - CALL nonlinearstandingwave1D(pi,FineGrid%h(1,1),FineGrid%x,tmp2D,Wavefield%W,Wavefield%E, & - Wavefield%Ex,Wavefield%Exx,& - (Nx+2*GhostGridX)*(Ny+2*GhostGridY)) - ELSE IF (Ny>1) THEN - FineGrid%h = two; FineGrid%hy=zero; FineGrid%hyy=zero - CALL nonlinearstandingwave1D(pi,FineGrid%h(1,1),FineGrid%y,tmp2D,Wavefield%W,Wavefield%E, & - Wavefield%Ey,Wavefield%Eyy,& - (Nx+2*GhostGridX)*(Ny+2*GhostGridY)) - ENDIF - !GD: test in a curvilinear rotated domain... - IF (curvilinearONOFF == 1) THEN - !Rotate the physical grid with a given angle... - tmp2D = FineGrid%x - FineGrid%x = tmp2D*COS(20*PI/180)-FineGrid%y*SIN(20*PI/180) - FineGrid%y = tmp2D*SIN(20*PI/180)+FineGrid%y*COS(20*PI/180) - ENDIF - ! - ! - CASE (2) ! Shallow water to Deep water (3D) - kh_deep = pi - kh_shallow = half - kx = two*pi/Lx - ky = two*pi/Ly - kw = SQRT(kx**2 + ky**2) - h_deep = kh_deep/kw - h_shallow = kh_shallow/kw - CALL BeachGen3Dver2(FineGrid%h,h_deep,h_shallow,Lx,Ly,FineGrid%x,FineGrid%y,Nx,Ny) - HH = 0.4_long*h_shallow - Wavefield%E = HH*COS(kx*FineGrid%x)*COS(ky*FineGrid%y); - Wavefield%Ex = -HH*(kx)*SIN(kx*FineGrid%x)*COS(ky*FineGrid%y); - Wavefield%Exx = -HH*(kx)**2*COS(kx*FineGrid%x)*COS(ky*FineGrid%y); - Wavefield%Ey = -HH*(ky)*COS(kx*FineGrid%x)*SIN(ky*FineGrid%y); - Wavefield%Eyy = -HH*(ky)**2*COS(kx*FineGrid%x)*COS(ky*FineGrid%y); - DetermineBottomGradients = 1 - CASE (3) ! Whalin (3D) - IF (FineGrid%Nx>FineGrid%Ny) THEN - y0 = (FineGrid%y(1,2)-FineGrid%y(1,1))/two ! FIXME: x-index - ELSE - y0 = (FineGrid%x(2,1)-FineGrid%x(1,1))/two ! FIXME: y-index - ENDIF - ! Define bottom - CALL BottomWhalin(FineGrid,y0,GhostGridX, GhostGridY) - ! - IF(swenseONOFF==1)THEN - IF (LinearONOFF==0) THEN - print*,'it should be a nonlinear case!' - STOP - ! Linear incident wavefield - CALL incident_linear_wf_finite(swenseDir, Wavefield, & !ramp_type,& - Nx+2*GhostGridX,FineGrid%x,Ny+2*GhostGridY,FineGrid%y,Nz+GhostGridz,FineGrid%z,FineGrid%h,zero,& - SFsol%k,g,SFsol%HH,SFsol%h) - ELSE - ! Nonlinear incident wavefield - ! Initialize stream function coefficients - CALL stream_func_set_up(g,SFsol%h,SFsol%T,SFsol%i_wavel_or_per,SFsol%L, & - SFsol%k,SFsol%HH,SFsol%i_euler_or_stokes,SFsol%e_or_s_vel,SFsol%i_deep_or_finite, & - SFsol%n_h_steps,SFsol%n_four_modes,SFsol%nwrk,SFsol%yy,SFsol%zz) - CALL incident_wf_finite(swenseDir, Wavefield, & - Nx+2*GhostGridX,FineGrid%x,Ny+2*GhostGridY,FineGrid%y,Nz+GhostGridz,FineGrid%z,FineGrid%h,zero, & - SFsol%k,g,SFsol%n_four_modes,SFsol%zz,SFsol%yy) - ENDIF - ENDIF - CASE (4) ! Deep water, flat bottom, linear standing wave - IF (Nx>0) THEN - FineGrid%hx = zero - FineGrid%hxx = zero - ENDIF - IF (Ny>0) THEN - FineGrid%hy = zero - FineGrid%hyy = zero - ENDIF - IF (Nx>1) THEN - kh = two*pi - kw = two*pi/Lx - FineGrid%h = kh/kw - HH = Lx/ten ! initial wave height - Wavefield%E = HH/two*COS(kw*FineGrid%x) - Wavefield%Ex = -kw*HH/two*SIN(kw*FineGrid%x) - Wavefield%Exx = -kw**two*HH/two*COS(kw*FineGrid%x) - ELSE - kh = two*pi - kw = two*pi/Ly - FineGrid%h = kh/kw - HH = Ly/ten ! initial wave height - Wavefield%E = HH/two*COS(kw*FineGrid%y) - Wavefield%Ey = -kw*HH/two*SIN(kw*FineGrid%y) - Wavefield%Eyy = -kw**two*HH/two*COS(kw*FineGrid%y) - ENDIF - CASE (5) ! Shallow water, flat bottom - IF (Nx>1) THEN - FineGrid%hx = zero - FineGrid%hxx = zero - ENDIF - IF (Ny>1) THEN - FineGrid%hy = zero - FineGrid%hyy = zero - ENDIF - IF (Nx>1) THEN - kh = half - kw = two*pi/Lx - FineGrid%h = kh/kw - HH = FineGrid%h(1,1)*0.75_long ! initial wave height - Wavefield%E = HH/two*COS(kw*FineGrid%x) - Wavefield%Ex = -kw*HH/two*SIN(kw*FineGrid%x) - Wavefield%Exx = -kw**two*HH/two*COS(kw*FineGrid%x) - ELSE - kh = half - kw = two*pi/Ly - FineGrid%h = kh/kw - HH = FineGrid%h(1,1)*0.75_long ! initial wave height - Wavefield%E = HH/two*COS(kw*FineGrid%y) - Wavefield%Ey = -kw*HH/two*SIN(kw*FineGrid%y) - Wavefield%Eyy = -kw**2*HH/two*COS(kw*FineGrid%y) - ENDIF - CASE (6) ! Shallow to Deep Water - !$$$$$$ kh_deep = pi - !$$$$$$ kh_shallow = half - !$$$$$$ kw = two*pi/Lx - !$$$$$$ h_deep = kh_deep/kw - !$$$$$$ h_shallow = kh_shallow/kw - !$$$$$$ HH = 0.75_long*h_shallow - !$$$$$$ IF (Nx>1) THEN - !$$$$$$ CALL BeachGen2(h_deep,h_shallow,Lx,FineGrid%x,FineGrid%h,FineGrid%hx,FineGrid%hxx,FineGrid%Nx) - !$$$$$$ Wavefield%E = HH/two*COS(kw*FineGrid%x) - !$$$$$$ Wavefield%Ex = -kw*HH/two*SIN(kw*FineGrid%x) - !$$$$$$ Wavefield%Exx = -kw**2*HH/two*COS(kw*FineGrid%x) - !$$$$$$ ELSE - !$$$$$$ CALL BeachGen2(h_deep,h_shallow,Lx,FineGrid%y,FineGrid%h,FineGrid%hy,FineGrid%hyy,FineGrid%Ny) - !$$$$$$ Wavefield%E = HH/two*COS(kw*FineGrid%y) - !$$$$$$ Wavefield%Ey = -kw*HH/two*SIN(kw*FineGrid%y) - !$$$$$$ Wavefield%Eyy = -kw**2*HH/two*COS(kw*FineGrid%y) - !$$$$$$ ENDIF - ! GD: one has to define wave generation and absorption for this test case ? - kh_deep = pi - !kh_shallow = half - kh_shallow = pi/20.d0 - !kw = two*pi/Lx - kw = two*pi/SFsol%L - h_deep = kh_deep/kw - h_shallow = kh_shallow/kw - IF (SFsol%HH.GT.0.75_long*h_shallow) THEN - print*, 'reduce amplitude of incident wave...' - stop - ENDIF - HH = SFsol%HH !0.75_long*h_shallow - IF (Nx>1) THEN - ! use relaxation indexes to define correctly ... - ! First zone: generation on the left - !RelaxZones(1)%idx(1) !beginnning first zone (will be first point in this case) - !RelaxZones(1)%idx(2) !end first zone (beginning of the slope then) - !Second zone:absorption on the right - !RelaxZones(2)%idx(1) !beginnning first zone (end of the slope) - !RelaxZones(2)%idx(2) !end first zone (last point) - ! - CALL BeachGen2_bis(h_deep,h_shallow,RelaxZones(1)%idx(2),RelaxZones(2)%idx(1),FineGrid%x, & - FineGrid%h,FineGrid%hx,FineGrid%hxx,FineGrid%Nx+2*GhostGridX) - ! No intialisation one generates wave - !Wavefield%E = HH/two*COS(kw*FineGrid%x) - !Wavefield%Ex = -kw*HH/two*SIN(kw*FineGrid%x) - !Wavefield%Exx = -kw**2*HH/two*COS(kw*FineGrid%x) - ELSE - ! use relaxation indexes to define correctly ... - ! First zone: generation on the left - !RelaxZones(1)%idx(3) !beginnning first zone (will be first point in this case) - !RelaxZones(1)%idx(4) !end first zone (beginning of the slope then) - !Second zone:absorption on the right - !RelaxZones(2)%idx(3) !beginnning first zone (end of the slope) - !RelaxZones(2)%idx(4) !end first zone (last point) - CALL BeachGen2_bis(h_deep,h_shallow,RelaxZones(1)%idx(4),RelaxZones(2)%idx(3),FineGrid%y, & - FineGrid%h,FineGrid%hy,FineGrid%hyy,FineGrid%Ny+2*GhostGridZ) - ! No intialisation one generates wave - !Wavefield%E = HH/two*COS(kw*FineGrid%y) - !Wavefield%Ey = -kw*HH/two*SIN(kw*FineGrid%y) - !Wavefield%Eyy = -kw**2*HH/two*COS(kw*FineGrid%y) - ENDIF - ! Relaxation - IF (relaxONOFF==1) THEN - CALL RelaxationModule(Wavefield%E,Wavefield%P,0.d0) - ENDIF - print*, 'initialisation of Linear Shoaling' - - CASE (7) ! Flat bottom, depth defined from SF-wave - IF (Nx>1) THEN - FineGrid%hx = zero - FineGrid%hxx = zero - ENDIF - IF (Ny>1) THEN - FineGrid%hy = zero - FineGrid%hyy = zero - ENDIF - FineGrid%h = SFsol%h - ! - IF (curvilinearONOFF==1) THEN ! curvilinear coordinates... FIXME for make it work whatever transformation - ! In the curvilinear case, BBox have to be the indexes of the corresponding relaxation zones - ! FIXME: use Lx and Ly? Depends how x and y are defined... - DO j=1,FineGrid%Nx+2*GhostGridX - tmpx(j) = REAL(j-2,long)*(FineGrid%y(2,1)-FineGrid%y(1,1)) !/REAL((FineGrid%Nx+2*GhostGridX-1),long)*(8+PI)*Lx; !FIXME find a way to define in all situation... - ENDDO - DO j=1,FineGrid%Ny+2*GhostGridY - tmpy(j) = -REAL(j-2,long)*(FineGrid%x(1,2)-FineGrid%x(1,1)) !/REAL((FineGrid%Ny+2*GhostGridY-1),long)*(Ly-Lx); !FIXME find a way to define in all situation... - ENDDO - ELSE - tmpx(:) = FineGrid%x(:,1) - tmpy(:) = FineGrid%y(1,:) - ENDIF - IF (relaxONOFF==1) THEN - IF (relaxXorY=='X' .OR. relaxXorY=='x') THEN - IF (relaxDegrees==zero) THEN - CALL stream_func_wave_finite(FineGrid%Nx+2*GhostGridX,tmpx,time,SFsol%n_four_modes,SFsol%zz,SFsol%yy,& - SFsol%k,g,Wavefield%E(:,1),Wavefield%P(:,1)) - DO j=1,FineGrid%Ny+2*GhostGridY - Wavefield%E(:,j) = Wavefield%E(:,1) - Wavefield%P(:,j) = Wavefield%P(:,1) - END DO - ELSE - DO j=1,FineGrid%Ny+2*GhostGridY - CALL stream_func_wave_finite(FineGrid%Nx+2*GhostGridX,tmpx*COS(relaxDegrees/180.0_long*pi)+& - tmpy(j)*SIN(relaxDegrees/180.0_long*pi),time,SFsol%n_four_modes,SFsol%zz,& - SFsol%yy,SFsol%k,g,Wavefield%E(:,1),Wavefield%P(:,1)) - Wavefield%E(:,j) = Wavefield%E(:,1) - Wavefield%P(:,j) = Wavefield%P(:,1) - END DO - ENDIF - ELSE - IF (relaxDegrees==zero) THEN - CALL stream_func_wave_finite(FineGrid%Ny+2*GhostGridY,tmpy,time,SFsol%n_four_modes,SFsol%zz,SFsol%yy,& - SFsol%k,g,Wavefield%E(1,:),Wavefield%P(1,:)) - DO j=1,FineGrid%Nx+2*GhostGridX - Wavefield%E(j,:) = Wavefield%E(1,:) - Wavefield%P(j,:) = Wavefield%P(1,:) - END DO - ELSE - DO j=1,FineGrid%Nx+2*GhostGridX - CALL stream_func_wave_finite(FineGrid%Ny+2*GhostGridY,-tmpy*SIN(relaxDegrees/180.0_long*pi)+& - tmpx(j)*COS(relaxDegrees/180.0_long*pi),time,SFsol%n_four_modes,SFsol%zz,& - SFsol%yy,SFsol%k,g,Wavefield%E(1,:),Wavefield%P(1,:)) - Wavefield%E(j,:) = Wavefield%E(1,:) - Wavefield%P(j,:) = Wavefield%P(1,:) - END DO - ENDIF - ENDIF - ! Relax initial condition three times for full absorption - CALL RelaxationModule(Wavefield%E,Wavefield%P,time) - CALL RelaxationModule(Wavefield%E,Wavefield%P,time) - CALL RelaxationModule(Wavefield%E,Wavefield%P,time) - ENDIF - IF(curvilinearONOFF==1) THEN - ! FIXME: to add - ELSE - CALL PreProcessDiffStencils(FineGrid,FineGrid%DiffStencils,GhostGridX,GhostGridY,GhostGridZ, & - alpha,beta,gamma) - IF (FineGrid%Nx>1) THEN - CALL DiffXEven(Wavefield%E,Wavefield%Ex,1,FineGrid%Nx,FineGrid%Ny,1,FineGrid%DiffStencils,alpha) - CALL DiffXEven(Wavefield%E,Wavefield%Exx,2,FineGrid%Nx,FineGrid%Ny,1,FineGrid%DiffStencils,alpha) - CALL DiffXEven(Wavefield%P,Wavefield%Px,1,FineGrid%Nx,FineGrid%Ny,1,FineGrid%DiffStencils,alpha) - END IF - IF (FineGrid%Ny>1) THEN - CALL DiffYEven(Wavefield%E,Wavefield%Ey,1,FineGrid%Nx,FineGrid%Ny,1,FineGrid%DiffStencils,beta) - CALL DiffYEven(Wavefield%E,Wavefield%Eyy,2,FineGrid%Nx,FineGrid%Ny,1,FineGrid%DiffStencils, & - beta) - CALL DiffYEven(Wavefield%P,Wavefield%Py,1,FineGrid%Nx,FineGrid%Ny,1,FineGrid%DiffStencils, & - beta) - END IF - ENDIF - CASE (8) ! Linear standing wave (2D) + in curvilinear space rotation with an angle - FineGrid%h = SFsol%h - IF (Nx>1) THEN - FineGrid%hx=zero; FineGrid%hxx=zero - ENDIF - IF (Ny>1) THEN - FineGrid%hy=zero; FineGrid%hyy=zero - ENDIF - ! FIXME: Does not work for problems with only one spatial dimension in the horizontal /APEK - CALL linearstandingwave2D(g,zero,zero,SFsol,SFsol%L,SFsol%L,FineGrid%h(1,1),FineGrid%x,FineGrid%y& - ,Wavefield%P,tmp2D,tmp2D,Wavefield%W,Wavefield%E,Wavefield%Ex,Wavefield%Exx,Wavefield%Ey, & - Wavefield%Eyy,(Nx+2*GhostGridX)*(Ny+2*GhostGridY)) - IF (curvilinearONOFF == 1) THEN - !Rotate the physical grid with a given angle... - tmp2D = FineGrid%x - FineGrid%x = tmp2D*COS(20*PI/180)-FineGrid%y*SIN(20*PI/180) - FineGrid%y = tmp2D*SIN(20*PI/180)+FineGrid%y*COS(20*PI/180) - ENDIF - print*,' Linear standing wave parameters:' - print*,' kh = ',SFsol%k*SFsol%h - print*,' T = ',SFsol%T - print*,' c = ',SFsol%c - print*,' h = ',SFsol%h - IF (FineGrid%Nx>1) THEN - dxmin = dx - ELSE - dxmin = two*dy - ENDIF - IF (FineGrid%Ny>1) THEN - dymin = dy - ELSE - dymin = two*dx - ENDIF - PRINT*,' dt = ',dt - PRINT*,' Cr = ',SFsol%c*dt/MIN(dxmin,dymin) - CASE (9) ! Berkhoff (3D) - CALL BottomBerkoff(FineGrid,GhostGridX,GhostGridY) - DetermineBottomGradients = 1 - CASE (10) ! GD: SWENSE, Flat bottom, depth defined from SF-wave - IF (curvilinearONOFF == 1) THEN - !Rotate the physical grid with a given angle... - tmp2D = FineGrid%x - FineGrid%x = tmp2D*COS(20.d0*PI/180.d0)-FineGrid%y*SIN(20.d0*PI/180.d0) - FineGrid%y = tmp2D*SIN(20.d0*PI/180.d0)+FineGrid%y*COS(20.d0*PI/180.d0) - swenseDir = 20.d0 - ENDIF - IF (Nx>1) THEN - FineGrid%hx = zero - FineGrid%hxx = zero - ENDIF - IF (Ny>1) THEN - FineGrid%hy = zero - FineGrid%hyy = zero - ENDIF - FineGrid%h = SFsol%h - ! E,P and their derivatives are zero - ! - ! Initialization of incident wavefield - PRINT*,'Beginning of SWENSE Initialization' - IF(swenseONOFF==0)THEN - PRINT*,'We should use SWENSE... put swenseONOFF=1 !' - !STOP - ELSE - IF (LinearONOFF==0) THEN - ! Linear incident wavefield - CALL incident_linear_wf_finite(swenseDir, Wavefield, & !ramp_type,& - Nx+2*GhostGridX,FineGrid%x,Ny+2*GhostGridY,FineGrid%y,Nz+GhostGridz,FineGrid%z, & - FineGrid%h,zero,SFsol%k,g,SFsol%HH,SFsol%h) - ELSE - ! Nonlinear incident wavefield - print*,' this case is not available already... several checks to make...' - ! Initialize stream function coefficients - CALL stream_func_set_up(g,SFsol%h,SFsol%T,SFsol%i_wavel_or_per,SFsol%L, & - SFsol%k,SFsol%HH,SFsol%i_euler_or_stokes,SFsol%e_or_s_vel,SFsol%i_deep_or_finite, & - SFsol%n_h_steps,SFsol%n_four_modes,SFsol%nwrk,SFsol%yy,SFsol%zz) - CALL incident_wf_finite(swenseDir, Wavefield, & - Nx+2*GhostGridX,FineGrid%x,Ny+2*GhostGridY,FineGrid%y,Nz+GhostGridz,FineGrid%z, & - FineGrid%h,zero, & - SFsol%k,g,SFsol%n_four_modes,SFsol%zz,SFsol%yy) - ENDIF - PRINT*,'End of SWENSE Initialization' - ENDIF - CASE (11) ! Flat bottom, depth defined from SF-wave for semi circular channel... - IF (Nx>1) THEN - FineGrid%hx = zero - FineGrid%hxx = zero - ENDIF - IF (Ny>1) THEN - FineGrid%hy = zero - FineGrid%hyy = zero - ENDIF - FineGrid%h = SFsol%h - ! - IF (curvilinearONOFF==1) THEN ! curvilinear coordinates... FIXME for make it work whatever transformation - ! In the curvilinear case, BBox have to be the indexes of the corresponding relaxation zones - ! FIXME: use Lx and Ly? Depends how x and y are defined... save e and n directly ? - DO j=1,FineGrid%Nx+2*GhostGridX - tmpx(j) = REAL(j-2,long)*(FineGrid%y(2,1)-FineGrid%y(1,1)) !/REAL((FineGrid%Nx+2*GhostGridX-1),long)*(8+PI)*Lx; !FIXME find a way to define in all situation... - ENDDO - DO j=1,FineGrid%Ny+2*GhostGridY - tmpy(j) = -REAL(j-2,long)*(FineGrid%x(1,2)-FineGrid%x(1,1)) !/REAL((FineGrid%Ny+2*GhostGridY-1),long)*(Ly-Lx); !FIXME find a way to define in all situation... - ENDDO - ELSE - tmpx(:) = FineGrid%x(:,1) - tmpy(:) = FineGrid%y(1,:) - ENDIF - IF (relaxONOFF==1) THEN - ! Relax initial condition - CALL RelaxationModule(Wavefield%E,Wavefield%P,time) - CALL RelaxationModule(Wavefield%E,Wavefield%P,time) - CALL RelaxationModule(Wavefield%E,Wavefield%P,time) - ENDIF - IF(swenseONOFF==0)THEN - ! Nothing to do here - ELSE - IF (LinearONOFF==0) THEN - ! Linear incident wavefield - CALL incident_linear_wf_finite(swenseDir, Wavefield, & !ramp_type,& - Nx+2*GhostGridX,FineGrid%x,Ny+2*GhostGridY,FineGrid%y,Nz+GhostGridz,FineGrid%z, & - FineGrid%h,zero,& - SFsol%k,g,SFsol%HH,SFsol%h) - ELSE - ! Nonlinear incident wavefield - print*,' this case is not available already... several checks to make...' - ! Initialize stream function coefficients - CALL stream_func_set_up(g,SFsol%h,SFsol%T,SFsol%i_wavel_or_per,SFsol%L, & - SFsol%k,SFsol%HH,SFsol%i_euler_or_stokes,SFsol%e_or_s_vel,SFsol%i_deep_or_finite, & - SFsol%n_h_steps,SFsol%n_four_modes,SFsol%nwrk,SFsol%yy,SFsol%zz) - CALL incident_wf_finite(swenseDir, Wavefield, & - Nx+2*GhostGridX,FineGrid%x,Ny+2*GhostGridY,FineGrid%y,Nz+GhostGridz,FineGrid%z, & - FineGrid%h,zero, SFsol%k,g,SFsol%n_four_modes,SFsol%zz,SFsol%yy) - ENDIF - PRINT*,'End of SWENSE Initialization' - ENDIF - CASE (12) ! Flat bottom, depth defined from SF-wave to check convergence... - IF (Nx>1) THEN - FineGrid%hx = zero - FineGrid%hxx = zero - ENDIF - IF (Ny>1) THEN - FineGrid%hy = zero - FineGrid%hyy = zero - ENDIF - FineGrid%h = SFsol%h - kw = SFsol%k - HH = SFsol%HH ! initial wave height - Wavefield%E = HH/two*COS(kw*FineGrid%x)*COS(kw*FineGrid%y) - Wavefield%Ex = -kw*HH/two*SIN(kw*FineGrid%x)*COS(kw*FineGrid%y) - Wavefield%Exx = -kw**two*HH/two*COS(kw*FineGrid%x)*COS(kw*FineGrid%y) - Wavefield%Ey = -kw*HH/two*COS(kw*FineGrid%x)*SIN(kw*FineGrid%y) - Wavefield%Eyy = -kw**two*HH/two*COS(kw*FineGrid%x)*COS(kw*FineGrid%y) - ! Cross derivative Exy saved in Px - Wavefield%Px = kw**two*HH/two*SIN(kw*FineGrid%x)*SIN(kw*FineGrid%y) - ! Put corners to wrong value - Wavefield%E(1,1)=1000.0_long - Wavefield%E(Nx+2*GhostGridX,1)=1000.0_long - Wavefield%E(1,Ny+2*GhostGridY)=1000.0_long - Wavefield%E(Nx+2*GhostGridX,Ny+2*GhostGridY)=1000.0_long - ! - ! Test on thecross derivatives XZ and YZ... - DO j=1,FineGrid%Nz+GhostGridZ - PHI(j,:,:) = HH/two*COS(kw*FineGrid%x)*COS(kw*FineGrid%y) & - *COSH(kw*((FineGrid%z(j)-one)*FineGrid%h+FineGrid%h))/COSH(kw)!COSH(kw*FineGrid%h) - !DXZ - LASTPHI(j,:,:,1) = -kw**2*HH/two*SIN(kw*FineGrid%x)*COS(kw*FineGrid%y) & - *SINH(kw*((FineGrid%z(j)-one)& - *FineGrid%h+FineGrid%h))/COSH(kw)!COSH(kw*FineGrid%h) - !DYZ - LASTPHI(j,:,:,2) = -kw**2*HH/two*COS(kw*FineGrid%x)*SIN(kw*FineGrid%y) & - *SINH(kw*((FineGrid%z(j)-one)*FineGrid%h+FineGrid%h))/COSH(kw)!COSH(kw*FineGrid%h) - ENDDO - ! Put corners to zero... - !PHI(1,1,1) = 1000.0_long - !PHI(FineGrid%Nz+GhostGridZ,1,1) = 1000.0_long - !PHI(1,Nx+2*GhostGridX,1) = 1000.0_long - !PHI(FineGrid%Nz+GhostGridZ,Nx+2*GhostGridX,1) = 1000.0_long - !PHI(1,1,Ny+2*GhostGridY) = 1000.0_long - !PHI(FineGrid%Nz+GhostGridZ,1,Ny+2*GhostGridY) = 1000.0_long - !PHI(FineGrid%Nz+GhostGridZ,Nx+2*GhostGridX,Ny+2*GhostGridY) = 1000.0_long - !PHI(1,Nx+2*GhostGridX,Ny+2*GhostGridY) = 1000.0_long - ! This is the whole edges of the domain which are not treated OK ? - PHI(1:FineGrid%Nz+GhostGridZ,1,1) = 1000.0_long - PHI(1:FineGrid%Nz+GhostGridZ,Nx+2*GhostGridX,1) = 1000.0_long - PHI(1:FineGrid%Nz+GhostGridZ,1,Ny+2*GhostGridY) = 1000.0_long - PHI(1:FineGrid%Nz+GhostGridZ,Nx+2*GhostGridX,Ny+2*GhostGridY) = 1000.0_long - ! Bottom - PHI(1,1:Nx+2*GhostGridX,1) = 1000.0_long - PHI(1,1:Nx+2*GhostGridX,Ny+2*GhostGridY) = 1000.0_long - PHI(1,1,1:Ny+2*GhostGridY) = 1000.0_long - PHI(1,Nx+2*GhostGridX,1:Ny+2*GhostGridY) = 1000.0_long - ! Free surface... We can usr free surface points - !PHI(FineGrid%Nz+GhostGridZ,1:Nx+2*GhostGridX,1) = 1000.0_long - !PHI(FineGrid%Nz+GhostGridZ,1:Nx+2*GhostGridX,Ny+2*GhostGridY) = 1000.0_long - !PHI(FineGrid%Nz+GhostGridZ,1,1:Ny+2*GhostGridY) = 1000.0_long - !PHI(FineGrid%Nz+GhostGridZ,Nx+2*GhostGridX,1:Ny+2*GhostGridY) = 1000.0_long - CASE(13) ! Linear standing wave (2D) + in curvilinear space rotation with an angle - FineGrid%h = SFsol%h - IF (Nx>1) THEN - FineGrid%hx=zero; FineGrid%hxx=zero - ENDIF - IF (Ny>1) THEN - FineGrid%hy=zero; FineGrid%hyy=zero - ENDIF - IF(swenseONOFF==0)THEN - CALL linearstandingwave2D(g,zero,zero,SFsol,SFsol%L,SFsol%L,FineGrid%h(1,1),FineGrid%x, & - FineGrid%y& - ,Wavefield%P,tmp2D,tmp2D,Wavefield%W,Wavefield%E,Wavefield%Ex,Wavefield%Exx, & - Wavefield%Ey,Wavefield%Eyy,& - (Nx+2*GhostGridX)*(Ny+2*GhostGridY)) - IF (curvilinearONOFF == 1) THEN - !Rotate the physical grid with a given angle... - tmp2D = FineGrid%x - FineGrid%x = tmp2D*COS(20.d0*PI/180.d0)-FineGrid%y*SIN(20.d0*PI/180.d0) - FineGrid%y = tmp2D*SIN(20.d0*PI/180.d0)+FineGrid%y*COS(20.d0*PI/180.d0) - ENDIF - ELSE - IF (curvilinearONOFF == 1) THEN - !Rotate the physical grid with a given angle... - tmp2D = FineGrid%x - FineGrid%x = tmp2D*COS(20.d0*PI/180.d0)-FineGrid%y*SIN(20.d0*PI/180.d0) - FineGrid%y = tmp2D*SIN(20.d0*PI/180.d0)+FineGrid%y*COS(20.d0*PI/180.d0) - ENDIF - IF (LinearONOFF==0) THEN - ! Linear incident wavefield - CALL incident_linear_wf_finite_standing(swenseDir, Wavefield, & !ramp_type,& - Nx+2*GhostGridX,FineGrid%x,Ny+2*GhostGridY,FineGrid%y,Nz+GhostGridz,FineGrid%z, & - FineGrid%h,zero,& - SFsol%k,g,SFsol%HH,SFsol%h) - ELSE - ! Nonlinear incident wavefield - print*,' this case is not available already... several checks to make...' - stop - ENDIF - PRINT*,'End of SWENSE Initialization' - ENDIF - print*,' Linear standing wave parameters:' - print*,' kh = ',SFsol%k*SFsol%h - print*,' T = ',SFsol%T - print*,' c = ',SFsol%c - print*,' h = ',SFsol%h - IF (FineGrid%Nx>1) THEN - dxmin = dx - ELSE - dxmin = two*dy - ENDIF - IF (FineGrid%Ny>1) THEN - dymin = dy - ELSE - dymin = two*dx - ENDIF - PRINT*,' dt = ',dt - PRINT*,' Cr = ',SFsol%c*dt/MIN(dxmin,dymin) - CASE (14) ! Mildly nonlinear standing wave, deep water (Agnon & Glozman (1996)) with SWENSE - IF (Nx>1) THEN - FineGrid%h = two; FineGrid%hx=zero; FineGrid%hxx=zero - ELSE IF (Ny>1) THEN - FineGrid%h = two; FineGrid%hy=zero; FineGrid%hyy=zero - ENDIF - SFsol%h = FineGrid%h(1,1) - IF(swenseONOFF==0)THEN - IF (Nx>1) THEN - CALL nonlinearstandingwave1D(pi,FineGrid%h(1,1),FineGrid%x,tmp2D,Wavefield%W,Wavefield%E, & - Wavefield%Ex,Wavefield%Exx,& - (Nx+2*GhostGridX)*(Ny+2*GhostGridY)) - ELSE IF (Ny>1) THEN - CALL nonlinearstandingwave1D(pi,FineGrid%h(1,1),FineGrid%y,tmp2D,Wavefield%W,Wavefield%E, & - Wavefield%Ey,Wavefield%Eyy,& - (Nx+2*GhostGridX)*(Ny+2*GhostGridY)) - ENDIF - ENDIF - !GD: test in a curvilinear rotated domain... - IF (curvilinearONOFF == 1) THEN - !Rotate the physical grid with a given angle... - tmp2D = FineGrid%x - FineGrid%x = tmp2D*COS(20*PI/180)-FineGrid%y*SIN(20*PI/180) - FineGrid%y = tmp2D*SIN(20*PI/180)+FineGrid%y*COS(20*PI/180) - ENDIF - IF (LinearONOFF==1) THEN - ! Non-Linear incident wavefield - CALL incident_nonlinear_wf_finite_standing(swenseDir, Wavefield, & !ramp_type,& - Nx+2*GhostGridX,FineGrid%x,Ny+2*GhostGridY,FineGrid%y,Nz+GhostGridz,FineGrid%z, & - FineGrid%h,zero,& - SFsol%k,g,SFsol%HH,SFsol%h) - ELSE - ! Linear incident wavefield - print*,' this case is not available... for linear case 13' - stop - ENDIF - CASE(15) !2D submerged bar test - IF (Ny>1) THEN - print*,'Only 2D case along x for now' - STOP - ENDIF - ! Determine size of left relaxation zones... (assumed that this is defined in the 1st - ! relaxation zone) - y0 = FineGrid%x(RelaxZones(1)%idx(2),1) - ! Define bottom - CALL SubmergedBar_2D(FineGrid,y0,GhostGridX) - ! - IF(swenseONOFF==1)THEN - IF (LinearONOFF==0) THEN - print*,'it should be a nonlinear case!' - STOP - ! Linear incident wavefield - CALL incident_linear_wf_finite(swenseDir, Wavefield, & !ramp_type,& - Nx+2*GhostGridX,FineGrid%x,Ny+2*GhostGridY,FineGrid%y,Nz+GhostGridz,FineGrid%z, & - FineGrid%h,zero,& - SFsol%k,g,SFsol%HH,SFsol%h) - ELSE - ! Nonlinear incident wavefield - ! Initialize stream function coefficients - CALL stream_func_set_up(g,SFsol%h,SFsol%T,SFsol%i_wavel_or_per,SFsol%L, & - SFsol%k,SFsol%HH,SFsol%i_euler_or_stokes,SFsol%e_or_s_vel,SFsol%i_deep_or_finite, & - SFsol%n_h_steps,SFsol%n_four_modes,SFsol%nwrk,SFsol%yy,SFsol%zz) - CALL incident_wf_finite(swenseDir, Wavefield, & - Nx+2*GhostGridX,FineGrid%x,Ny+2*GhostGridY,FineGrid%y,Nz+GhostGridz,FineGrid%z, & - FineGrid%h,zero, & - SFsol%k,g,SFsol%n_four_modes,SFsol%zz,SFsol%yy) - ENDIF - ENDIF - CASE(16) - - !-------------------------------------------------------------------------- - ! Henrik Bredmose 2009 JFM paper setup. - !-------------------------------------------------------------------------- - - IF (Lz <= 0) THEN - - !------------------------------------------------------------------------- - ! Read in the bottom contours from a file: - !------------------------------------------------------------------------- - OPEN(unit=fileip(4),file=fname_bottom,status='old') - READ(fileip(4),'(A)')head(4) - PRINT *, 'SetUpInitialConditions: Reading the bottom contours from file:' - PRINT *,fname_bottom,' with header:' - PRINT *, head(4) - PRINT *, ' ' - READ(fileip(4),*) DetermineBottomGradients ! Read the gradient flag - - !------------------------------------------------------------------------- - ! Read h(x,y),h_x,h_xx,h_y,h_yy - !------------------------------------------------------------------------- - Print *, ' Reading h,h_x,h_xx,h_y,h_yy.' - print *, ' ' - Do j=1+GhostGridY,ny+GhostGridY - DO i=1+GhostGridX,nx+GhostGridX - READ(fileip(4),*) FineGrid%h(i,j), & - FineGrid%hx(i,j), & - FineGrid%hxx(i,j), & - FineGrid%hy(i,j), & - FineGrid%hyy(i,j) - END DO - END DO - - !------------------------------------------------------------------------- - ! Extend the bathymetry to the ghost points by copying the domain - ! endpoint values. - !------------------------------------------------------------------------- - FineGrid%h(1,:) = FineGrid%h(1+GhostGridX,:); - FineGrid%h(:,1) = FineGrid%h(:,1+GhostGridY); - FineGrid%h(nx+2*GhostGridX,:) = FineGrid%h(nx+GhostGridX,:); - FineGrid%h(:,ny+2*GhostGridY) = FineGrid%h(:,ny+GhostGridY) - FineGrid%hx(1,:) = FineGrid%hx(1+GhostGridX,:); - FineGrid%hx(:,1) = FineGrid%hx(:,1+GhostGridY); - FineGrid%hx(nx+2*GhostGridX,:) = FineGrid%hx(nx+GhostGridX,:); - FineGrid%hx(:,ny+2*GhostGridY) = FineGrid%hx(:,ny+GhostGridY) - FineGrid%hxx(1,:) = FineGrid%hxx(1+GhostGridX,:); - FineGrid%hxx(:,1) = FineGrid%hxx(:,1+GhostGridY); - FineGrid%hxx(nx+2*GhostGridX,:) = FineGrid%hxx(nx+GhostGridX,:); - FineGrid%hxx(:,ny+2*GhostGridY) = FineGrid%hxx(:,ny+GhostGridY) - FineGrid%hy(1,:) = FineGrid%hy(1+GhostGridX,:); - FineGrid%hy(:,1) = FineGrid%hy(:,1+GhostGridY); - FineGrid%hy(nx+2*GhostGridX,:) = FineGrid%hy(nx+GhostGridX,:); - FineGrid%hy(:,ny+2*GhostGridY) = FineGrid%hy(:,ny+GhostGridY) - FineGrid%hyy(1,:) = FineGrid%hyy(1+GhostGridX,:); - FineGrid%hyy(:,1) = FineGrid%hyy(:,1+GhostGridY); - FineGrid%hyy(nx+2*GhostGridX,:) = FineGrid%hyy(nx+GhostGridX,:); - FineGrid%hyy(:,ny+2*GhostGridY) = FineGrid%hyy(:,ny+GhostGridY) - - !------------------------------------------------------------------------- - ! Re-set Lz to be max h(1,1) - !------------------------------------------------------------------------- - Lz=FineGrid%h(1,1) - - ELSE - - FineGrid%h = Lz; - FineGrid%hx = zero; - FineGrid%hxx = zero; - FineGrid%hy = zero; - FineGrid%hyy = zero; - - END IF - - !--------------------------------------------------------------------------- - ! Set initial surface elevation and free surface potential: - !--------------------------------------------------------------------------- - CALL stream_func_set_up(g,SFsol%h,SFsol%T,SFsol%i_wavel_or_per,SFsol%L, & - SFsol%k,SFsol%HH,SFsol%i_euler_or_stokes, & - SFsol%e_or_s_vel,SFsol%i_deep_or_finite, & - SFsol%n_h_steps,SFsol%n_four_modes,SFsol%nwrk, & - SFsol%yy,SFsol%zz) - - CALL incident_wf_finite(swenseDir, Wavefield, & - Nx+2*GhostGridX,FineGrid%x, & - Ny+2*GhostGridY,FineGrid%y, & - Nz+GhostGridz ,FineGrid%z, & - FineGrid%h,zero,SFsol%k,g, & - SFsol%n_four_modes,SFsol%zz,SFsol%yy) - - !--------------------------------------------------------------------------- - ! Modify the free surface elevation and the free surface potential by the - ! envelope function sech(kx(x-x0)/4) = 1/cosh(kx(x-x0)/4): - !--------------------------------------------------------------------------- - Wavefield%E = 1.0/COSH(SFsol%k*(FineGrid%x - 200.0)/4.0)*Wavefield%E_I - Wavefield%P = 1.0/COSH(SFsol%k*(FineGrid%x - 200.0)/4.0)*Wavefield%P_I_s - - !--------------------------------------------------------------------------- - ! Calculate the derivatives of the initial condition numerically: - !--------------------------------------------------------------------------- - CALL PreProcessDiffStencils(FineGrid,FineGrid%DiffStencils,GhostGridX, & - GhostGridY,GhostGridZ,alpha,beta,gamma) - CALL DiffXEven(Wavefield%E,Wavefield%Ex,1,FineGrid%Nx,FineGrid%Ny,1, & - FineGrid%DiffStencils,alpha) - CALL DiffXEven(Wavefield%E,Wavefield%Exx,2, & - FineGrid%Nx,FineGrid%Ny,1,FineGrid%DiffStencils,alpha) - CALL DiffXEven(Wavefield%P,Wavefield%Px,1,FineGrid%Nx,FineGrid%Ny,1, & - FineGrid%DiffStencils,alpha) - - CASE DEFAULT - PRINT * ,'Error: Specified initial conditions are not valid.' - STOP - END SELECT - - END SUBROUTINE SetupInitialConditions +SUBROUTINE SetupInitialConditions + ! By Allan P. Engsig-Karup. + USE GlobalVariables + IMPLICIT NONE + INTEGER :: i, j, k, Nx, Ny, Nz + REAL(KIND=long) :: kh, kw, HH, kh_deep, kh_shallow, h_deep, h_shallow, kx, ky, y0 + REAL(KIND=long) :: tmpx(FineGrid%Nx+2*GhostGridX), tmpy(FineGrid%Ny+2*GhostGridY) + EXTERNAL BeachGen3Dver2, BuildLinearSystem + ! TEMPORARY POINTERS/VARIABLES + Nx = FineGrid%Nx + Ny = FineGrid%Ny + Nz = FineGrid%Nz + DetermineBottomGradients = 0 + print*,'IC chosen is case ',IC + SELECT CASE (IC) + + CASE (-1, 0) ! Initial condition determined by PressureTermOnOff and funPressureTerm.f90 or read from the init file 'OceanWave3D.init'. + IF (IC==-1)THEN + print *, 'Reading the initial conditions. ** Not implemented curvilinear! **' + + DO j=1+GhostGridY,FineGrid%Ny+GhostGridY + Do i=1+GhostGridX,FineGrid%Nx+GhostGridX + read(fileip(3),*)WaveField%E(i,j),WaveField%P(i,j) + END Do + END DO + + ELSE + IF(PressureTermOnOff==0)THEN + print*, 'Initial condition is still water.' + ELSEIF(PressureTermOnOff==1)THEN + print *, 'Initial condition determined by PressureTermOnOff is a 2D stationary Gaussian hump' + ELSEIF(PressureTermOnOff==2)THEN + print *, 'Initial condition determined by PressureTermOnOff is a 3D moving Gaussian hump' + END IF + Call funInitialFreeSurfaceElevation(g,FineGrid%Nx+2*GhostGridX,& + FineGrid%Ny+2*GhostGridY,FineGrid,WaveField) + END IF + IF (Lz <= 0)THEN + ! Read in the bottom contours from a file. + OPEN(unit=fileip(4),file=fname_bottom,status='old') + READ(fileip(4),'(A)')head(4) + PRINT *, 'SetUpInitialConditions: Reading the bottom contours from file:' + PRINT *,fname_bottom,' with header:' + PRINT *, head(4) + PRINT *, ' ' + READ(fileip(4),*) DetermineBottomGradients ! Read the gradient flag + + IF(DetermineBottomGradients==1)THEN + Print *, ' Reading h and computing derivatives of h numerically.' + ! Read in h(x,y) + do j=1,ny + DO i=1,nx + READ(fileip(4),*) FineGrid%h(i,j) + END DO + END do + ELSEIF(DetermineBottomGradients == 0) THEN + ! Read h(x,y),h_x,h_xx,h_y,h_yy + Print *, ' Reading h,h_x,h_xx,h_y,h_yy.' + print *, ' ' + ! + Do j=1+GhostGridY,ny+GhostGridY + DO i=1+GhostGridX,nx+GhostGridX + READ(fileip(4),*) FineGrid%h(i,j), FineGrid%hx(i,j), FineGrid%hxx(i,j), & + FineGrid%hy(i,j), FineGrid%hyy(i,j) + END DO + END Do + END IF + ! + ! Extend the bathymetry to the ghost points by copying the domain endpoint values. + ! + FineGrid%h(1,:)=FineGrid%h(1+GhostGridX,:); FineGrid%h(:,1)=FineGrid%h(:,1+GhostGridY); + FineGrid%h(nx+2*GhostGridX,:)=FineGrid%h(nx+GhostGridX,:); + FineGrid%h(:,ny+2*GhostGridY)=FineGrid%h(:,ny+GhostGridY) + FineGrid%hx(1,:)=FineGrid%hx(1+GhostGridX,:); FineGrid%hx(:,1)=FineGrid%hx(:,1+GhostGridY); + FineGrid%hx(nx+2*GhostGridX,:)=FineGrid%hx(nx+GhostGridX,:); + FineGrid%hx(:,ny+2*GhostGridY)=FineGrid%hx(:,ny+GhostGridY) + FineGrid%hxx(1,:)=FineGrid%hxx(1+GhostGridX,:); + FineGrid%hxx(:,1)=FineGrid%hxx(:,1+GhostGridY); + FineGrid%hxx(nx+2*GhostGridX,:)=FineGrid%hxx(nx+GhostGridX,:); + FineGrid%hxx(:,ny+2*GhostGridY)=FineGrid%hxx(:,ny+GhostGridY) + FineGrid%hy(1,:)=FineGrid%hy(1+GhostGridX,:); FineGrid%hy(:,1)=FineGrid%hy(:,1+GhostGridY); + FineGrid%hy(nx+2*GhostGridX,:)=FineGrid%hy(nx+GhostGridX,:); + FineGrid%hy(:,ny+2*GhostGridY)=FineGrid%hy(:,ny+GhostGridY) + FineGrid%hyy(1,:)=FineGrid%hyy(1+GhostGridX,:); + FineGrid%hyy(:,1)=FineGrid%hyy(:,1+GhostGridY); + FineGrid%hyy(nx+2*GhostGridX,:)=FineGrid%hyy(nx+GhostGridX,:); + FineGrid%hyy(:,ny+2*GhostGridY)=FineGrid%hyy(:,ny+GhostGridY) + ! + ! Re-set Lz to be max h(1,1) + ! + Lz=FineGrid%h(1,1) + ELSE + FineGrid%h = Lz; FineGrid%hx=zero; FineGrid%hxx=zero; FineGrid%hy=zero; FineGrid%hyy=zero; + END IF + + CASE (1) ! Mildly nonlinear standing wave, deep water (Agnon & Glozman (1996)) + print *, 'Mildly nonlinear standing wave (deep water) in a rectangular domain.' + IF (Nx>1) THEN + FineGrid%h = two; FineGrid%hx=zero; FineGrid%hxx=zero + CALL nonlinearstandingwave1D(pi,FineGrid%h(1,1),FineGrid%x,tmp2D,Wavefield%W,Wavefield%E, & + Wavefield%Ex,Wavefield%Exx,& + (Nx+2*GhostGridX)*(Ny+2*GhostGridY)) + ELSE IF (Ny>1) THEN + FineGrid%h = two; FineGrid%hy=zero; FineGrid%hyy=zero + CALL nonlinearstandingwave1D(pi,FineGrid%h(1,1),FineGrid%y,tmp2D,Wavefield%W,Wavefield%E, & + Wavefield%Ey,Wavefield%Eyy,& + (Nx+2*GhostGridX)*(Ny+2*GhostGridY)) + ENDIF + !GD: test in a curvilinear rotated domain... + IF (curvilinearONOFF == 1) THEN + !Rotate the physical grid with a given angle... + tmp2D = FineGrid%x + FineGrid%x = tmp2D*COS(20*PI/180)-FineGrid%y*SIN(20*PI/180) + FineGrid%y = tmp2D*SIN(20*PI/180)+FineGrid%y*COS(20*PI/180) + ENDIF + ! + ! + CASE (2) ! Shallow water to Deep water (3D) + kh_deep = pi + kh_shallow = half + kx = two*pi/Lx + ky = two*pi/Ly + kw = SQRT(kx**2 + ky**2) + h_deep = kh_deep/kw + h_shallow = kh_shallow/kw + CALL BeachGen3Dver2(FineGrid%h,h_deep,h_shallow,Lx,Ly,FineGrid%x,FineGrid%y,Nx,Ny) + HH = 0.4_long*h_shallow + Wavefield%E = HH*COS(kx*FineGrid%x)*COS(ky*FineGrid%y); + Wavefield%Ex = -HH*(kx)*SIN(kx*FineGrid%x)*COS(ky*FineGrid%y); + Wavefield%Exx = -HH*(kx)**2*COS(kx*FineGrid%x)*COS(ky*FineGrid%y); + Wavefield%Ey = -HH*(ky)*COS(kx*FineGrid%x)*SIN(ky*FineGrid%y); + Wavefield%Eyy = -HH*(ky)**2*COS(kx*FineGrid%x)*COS(ky*FineGrid%y); + DetermineBottomGradients = 1 + CASE (3) ! Whalin (3D) + IF (FineGrid%Nx>FineGrid%Ny) THEN + y0 = (FineGrid%y(1,2)-FineGrid%y(1,1))/two ! FIXME: x-index + ELSE + y0 = (FineGrid%x(2,1)-FineGrid%x(1,1))/two ! FIXME: y-index + ENDIF + ! Define bottom + CALL BottomWhalin(FineGrid,y0,GhostGridX, GhostGridY) + ! + IF(swenseONOFF==1)THEN + IF (LinearONOFF==0) THEN + print*,'it should be a nonlinear case!' + STOP + ! Linear incident wavefield + CALL incident_linear_wf_finite(swenseDir, Wavefield, & !ramp_type,& + Nx+2*GhostGridX,FineGrid%x,Ny+2*GhostGridY,FineGrid%y,Nz+GhostGridz,FineGrid%z,FineGrid%h,zero,& + SFsol%k,g,SFsol%HH,SFsol%h) + ELSE + ! Nonlinear incident wavefield + ! Initialize stream function coefficients + CALL stream_func_set_up(g,SFsol%h,SFsol%T,SFsol%i_wavel_or_per,SFsol%L, & + SFsol%k,SFsol%HH,SFsol%i_euler_or_stokes,SFsol%e_or_s_vel,SFsol%i_deep_or_finite, & + SFsol%n_h_steps,SFsol%n_four_modes,SFsol%nwrk,SFsol%yy,SFsol%zz) + CALL incident_wf_finite(swenseDir, Wavefield, & + Nx+2*GhostGridX,FineGrid%x,Ny+2*GhostGridY,FineGrid%y,Nz+GhostGridz,FineGrid%z,FineGrid%h,zero, & + SFsol%k,g,SFsol%n_four_modes,SFsol%zz,SFsol%yy) + ENDIF + ENDIF + CASE (4) ! Deep water, flat bottom, linear standing wave + IF (Nx>0) THEN + FineGrid%hx = zero + FineGrid%hxx = zero + ENDIF + IF (Ny>0) THEN + FineGrid%hy = zero + FineGrid%hyy = zero + ENDIF + IF (Nx>1) THEN + kh = two*pi + kw = two*pi/Lx + FineGrid%h = kh/kw + HH = Lx/ten ! initial wave height + Wavefield%E = HH/two*COS(kw*FineGrid%x) + Wavefield%Ex = -kw*HH/two*SIN(kw*FineGrid%x) + Wavefield%Exx = -kw**two*HH/two*COS(kw*FineGrid%x) + ELSE + kh = two*pi + kw = two*pi/Ly + FineGrid%h = kh/kw + HH = Ly/ten ! initial wave height + Wavefield%E = HH/two*COS(kw*FineGrid%y) + Wavefield%Ey = -kw*HH/two*SIN(kw*FineGrid%y) + Wavefield%Eyy = -kw**two*HH/two*COS(kw*FineGrid%y) + ENDIF + CASE (5) ! Shallow water, flat bottom + IF (Nx>1) THEN + FineGrid%hx = zero + FineGrid%hxx = zero + ENDIF + IF (Ny>1) THEN + FineGrid%hy = zero + FineGrid%hyy = zero + ENDIF + IF (Nx>1) THEN + kh = half + kw = two*pi/Lx + FineGrid%h = kh/kw + HH = FineGrid%h(1,1)*0.75_long ! initial wave height + Wavefield%E = HH/two*COS(kw*FineGrid%x) + Wavefield%Ex = -kw*HH/two*SIN(kw*FineGrid%x) + Wavefield%Exx = -kw**two*HH/two*COS(kw*FineGrid%x) + ELSE + kh = half + kw = two*pi/Ly + FineGrid%h = kh/kw + HH = FineGrid%h(1,1)*0.75_long ! initial wave height + Wavefield%E = HH/two*COS(kw*FineGrid%y) + Wavefield%Ey = -kw*HH/two*SIN(kw*FineGrid%y) + Wavefield%Eyy = -kw**2*HH/two*COS(kw*FineGrid%y) + ENDIF + CASE (6) ! Shallow to Deep Water + !$$$$$$ kh_deep = pi + !$$$$$$ kh_shallow = half + !$$$$$$ kw = two*pi/Lx + !$$$$$$ h_deep = kh_deep/kw + !$$$$$$ h_shallow = kh_shallow/kw + !$$$$$$ HH = 0.75_long*h_shallow + !$$$$$$ IF (Nx>1) THEN + !$$$$$$ CALL BeachGen2(h_deep,h_shallow,Lx,FineGrid%x,FineGrid%h,FineGrid%hx,FineGrid%hxx,FineGrid%Nx) + !$$$$$$ Wavefield%E = HH/two*COS(kw*FineGrid%x) + !$$$$$$ Wavefield%Ex = -kw*HH/two*SIN(kw*FineGrid%x) + !$$$$$$ Wavefield%Exx = -kw**2*HH/two*COS(kw*FineGrid%x) + !$$$$$$ ELSE + !$$$$$$ CALL BeachGen2(h_deep,h_shallow,Lx,FineGrid%y,FineGrid%h,FineGrid%hy,FineGrid%hyy,FineGrid%Ny) + !$$$$$$ Wavefield%E = HH/two*COS(kw*FineGrid%y) + !$$$$$$ Wavefield%Ey = -kw*HH/two*SIN(kw*FineGrid%y) + !$$$$$$ Wavefield%Eyy = -kw**2*HH/two*COS(kw*FineGrid%y) + !$$$$$$ ENDIF + ! GD: one has to define wave generation and absorption for this test case ? + kh_deep = pi + !kh_shallow = half + kh_shallow = pi/20.d0 + !kw = two*pi/Lx + kw = two*pi/SFsol%L + h_deep = kh_deep/kw + h_shallow = kh_shallow/kw + IF (SFsol%HH.GT.0.75_long*h_shallow) THEN + print*, 'reduce amplitude of incident wave...' + stop + ENDIF + HH = SFsol%HH !0.75_long*h_shallow + IF (Nx>1) THEN + ! use relaxation indexes to define correctly ... + ! First zone: generation on the left + !RelaxZones(1)%idx(1) !beginnning first zone (will be first point in this case) + !RelaxZones(1)%idx(2) !end first zone (beginning of the slope then) + !Second zone:absorption on the right + !RelaxZones(2)%idx(1) !beginnning first zone (end of the slope) + !RelaxZones(2)%idx(2) !end first zone (last point) + ! + CALL BeachGen2_bis(h_deep,h_shallow,RelaxZones(1)%idx(2),RelaxZones(2)%idx(1),FineGrid%x, & + FineGrid%h,FineGrid%hx,FineGrid%hxx,FineGrid%Nx+2*GhostGridX) + ! No intialisation one generates wave + !Wavefield%E = HH/two*COS(kw*FineGrid%x) + !Wavefield%Ex = -kw*HH/two*SIN(kw*FineGrid%x) + !Wavefield%Exx = -kw**2*HH/two*COS(kw*FineGrid%x) + ELSE + ! use relaxation indexes to define correctly ... + ! First zone: generation on the left + !RelaxZones(1)%idx(3) !beginnning first zone (will be first point in this case) + !RelaxZones(1)%idx(4) !end first zone (beginning of the slope then) + !Second zone:absorption on the right + !RelaxZones(2)%idx(3) !beginnning first zone (end of the slope) + !RelaxZones(2)%idx(4) !end first zone (last point) + CALL BeachGen2_bis(h_deep,h_shallow,RelaxZones(1)%idx(4),RelaxZones(2)%idx(3),FineGrid%y, & + FineGrid%h,FineGrid%hy,FineGrid%hyy,FineGrid%Ny+2*GhostGridZ) + ! No intialisation one generates wave + !Wavefield%E = HH/two*COS(kw*FineGrid%y) + !Wavefield%Ey = -kw*HH/two*SIN(kw*FineGrid%y) + !Wavefield%Eyy = -kw**2*HH/two*COS(kw*FineGrid%y) + ENDIF + ! Relaxation + IF (relaxONOFF==1) THEN + CALL RelaxationModule(Wavefield%E,Wavefield%P,0.d0) + ENDIF + print*, 'initialisation of Linear Shoaling' + + CASE (7) ! Flat bottom, depth defined from SF-wave + IF (Nx>1) THEN + FineGrid%hx = zero + FineGrid%hxx = zero + ENDIF + IF (Ny>1) THEN + FineGrid%hy = zero + FineGrid%hyy = zero + ENDIF + FineGrid%h = SFsol%h + ! + IF (curvilinearONOFF==1) THEN ! curvilinear coordinates... FIXME for make it work whatever transformation + ! In the curvilinear case, BBox have to be the indexes of the corresponding relaxation zones + ! FIXME: use Lx and Ly? Depends how x and y are defined... + DO j=1,FineGrid%Nx+2*GhostGridX + tmpx(j) = REAL(j-2,long)*(FineGrid%y(2,1)-FineGrid%y(1,1)) !/REAL((FineGrid%Nx+2*GhostGridX-1),long)*(8+PI)*Lx; !FIXME find a way to define in all situation... + ENDDO + DO j=1,FineGrid%Ny+2*GhostGridY + tmpy(j) = -REAL(j-2,long)*(FineGrid%x(1,2)-FineGrid%x(1,1)) !/REAL((FineGrid%Ny+2*GhostGridY-1),long)*(Ly-Lx); !FIXME find a way to define in all situation... + ENDDO + ELSE + tmpx(:) = FineGrid%x(:,1) + tmpy(:) = FineGrid%y(1,:) + ENDIF + IF (relaxONOFF==1) THEN + IF (relaxXorY=='X' .OR. relaxXorY=='x') THEN + IF (relaxDegrees==zero) THEN + CALL stream_func_wave_finite(FineGrid%Nx+2*GhostGridX,tmpx,time,SFsol%n_four_modes,SFsol%zz,SFsol%yy,& + SFsol%k,g,Wavefield%E(:,1),Wavefield%P(:,1)) + DO j=1,FineGrid%Ny+2*GhostGridY + Wavefield%E(:,j) = Wavefield%E(:,1) + Wavefield%P(:,j) = Wavefield%P(:,1) + END DO + ELSE + DO j=1,FineGrid%Ny+2*GhostGridY + CALL stream_func_wave_finite(FineGrid%Nx+2*GhostGridX,tmpx*COS(relaxDegrees/180.0_long*pi)+& + tmpy(j)*SIN(relaxDegrees/180.0_long*pi),time,SFsol%n_four_modes,SFsol%zz,& + SFsol%yy,SFsol%k,g,Wavefield%E(:,1),Wavefield%P(:,1)) + Wavefield%E(:,j) = Wavefield%E(:,1) + Wavefield%P(:,j) = Wavefield%P(:,1) + END DO + ENDIF + ELSE + IF (relaxDegrees==zero) THEN + CALL stream_func_wave_finite(FineGrid%Ny+2*GhostGridY,tmpy,time,SFsol%n_four_modes,SFsol%zz,SFsol%yy,& + SFsol%k,g,Wavefield%E(1,:),Wavefield%P(1,:)) + DO j=1,FineGrid%Nx+2*GhostGridX + Wavefield%E(j,:) = Wavefield%E(1,:) + Wavefield%P(j,:) = Wavefield%P(1,:) + END DO + ELSE + DO j=1,FineGrid%Nx+2*GhostGridX + CALL stream_func_wave_finite(FineGrid%Ny+2*GhostGridY,-tmpy*SIN(relaxDegrees/180.0_long*pi)+& + tmpx(j)*COS(relaxDegrees/180.0_long*pi),time,SFsol%n_four_modes,SFsol%zz,& + SFsol%yy,SFsol%k,g,Wavefield%E(1,:),Wavefield%P(1,:)) + Wavefield%E(j,:) = Wavefield%E(1,:) + Wavefield%P(j,:) = Wavefield%P(1,:) + END DO + ENDIF + ENDIF + ! Relax initial condition three times for full absorption + CALL RelaxationModule(Wavefield%E,Wavefield%P,time) + CALL RelaxationModule(Wavefield%E,Wavefield%P,time) + CALL RelaxationModule(Wavefield%E,Wavefield%P,time) + ENDIF + IF(curvilinearONOFF==1) THEN + ! FIXME: to add + ELSE + CALL PreProcessDiffStencils(FineGrid,FineGrid%DiffStencils,GhostGridX,GhostGridY,GhostGridZ, & + alpha,beta,gamma) + IF (FineGrid%Nx>1) THEN + CALL DiffXEven(Wavefield%E,Wavefield%Ex,1,FineGrid%Nx,FineGrid%Ny,1,FineGrid%DiffStencils,alpha) + CALL DiffXEven(Wavefield%E,Wavefield%Exx,2,FineGrid%Nx,FineGrid%Ny,1,FineGrid%DiffStencils,alpha) + CALL DiffXEven(Wavefield%P,Wavefield%Px,1,FineGrid%Nx,FineGrid%Ny,1,FineGrid%DiffStencils,alpha) + END IF + IF (FineGrid%Ny>1) THEN + CALL DiffYEven(Wavefield%E,Wavefield%Ey,1,FineGrid%Nx,FineGrid%Ny,1,FineGrid%DiffStencils,beta) + CALL DiffYEven(Wavefield%E,Wavefield%Eyy,2,FineGrid%Nx,FineGrid%Ny,1,FineGrid%DiffStencils, & + beta) + CALL DiffYEven(Wavefield%P,Wavefield%Py,1,FineGrid%Nx,FineGrid%Ny,1,FineGrid%DiffStencils, & + beta) + END IF + ENDIF + CASE (8) ! Linear standing wave (2D) + in curvilinear space rotation with an angle + FineGrid%h = SFsol%h + IF (Nx>1) THEN + FineGrid%hx=zero; FineGrid%hxx=zero + ENDIF + IF (Ny>1) THEN + FineGrid%hy=zero; FineGrid%hyy=zero + ENDIF + ! FIXME: Does not work for problems with only one spatial dimension in the horizontal /APEK + CALL linearstandingwave2D(g,zero,zero,SFsol,SFsol%L,SFsol%L,FineGrid%h(1,1),FineGrid%x,FineGrid%y& + ,Wavefield%P,tmp2D,tmp2D,Wavefield%W,Wavefield%E,Wavefield%Ex,Wavefield%Exx,Wavefield%Ey, & + Wavefield%Eyy,(Nx+2*GhostGridX)*(Ny+2*GhostGridY)) + IF (curvilinearONOFF == 1) THEN + !Rotate the physical grid with a given angle... + tmp2D = FineGrid%x + FineGrid%x = tmp2D*COS(20*PI/180)-FineGrid%y*SIN(20*PI/180) + FineGrid%y = tmp2D*SIN(20*PI/180)+FineGrid%y*COS(20*PI/180) + ENDIF + print*,' Linear standing wave parameters:' + print*,' kh = ',SFsol%k*SFsol%h + print*,' T = ',SFsol%T + print*,' c = ',SFsol%c + print*,' h = ',SFsol%h + IF (FineGrid%Nx>1) THEN + dxmin = dx + ELSE + dxmin = two*dy + ENDIF + IF (FineGrid%Ny>1) THEN + dymin = dy + ELSE + dymin = two*dx + ENDIF + PRINT*,' dt = ',dt + PRINT*,' Cr = ',SFsol%c*dt/MIN(dxmin,dymin) + CASE (9) ! Berkhoff (3D) + CALL BottomBerkoff(FineGrid,GhostGridX,GhostGridY) + DetermineBottomGradients = 1 + CASE (10) ! GD: SWENSE, Flat bottom, depth defined from SF-wave + IF (curvilinearONOFF == 1) THEN + !Rotate the physical grid with a given angle... + tmp2D = FineGrid%x + FineGrid%x = tmp2D*COS(20.d0*PI/180.d0)-FineGrid%y*SIN(20.d0*PI/180.d0) + FineGrid%y = tmp2D*SIN(20.d0*PI/180.d0)+FineGrid%y*COS(20.d0*PI/180.d0) + swenseDir = 20.d0 + ENDIF + IF (Nx>1) THEN + FineGrid%hx = zero + FineGrid%hxx = zero + ENDIF + IF (Ny>1) THEN + FineGrid%hy = zero + FineGrid%hyy = zero + ENDIF + FineGrid%h = SFsol%h + ! E,P and their derivatives are zero + ! + ! Initialization of incident wavefield + PRINT*,'Beginning of SWENSE Initialization' + IF(swenseONOFF==0)THEN + PRINT*,'We should use SWENSE... put swenseONOFF=1 !' + !STOP + ELSE + IF (LinearONOFF==0) THEN + ! Linear incident wavefield + CALL incident_linear_wf_finite(swenseDir, Wavefield, & !ramp_type,& + Nx+2*GhostGridX,FineGrid%x,Ny+2*GhostGridY,FineGrid%y,Nz+GhostGridz,FineGrid%z, & + FineGrid%h,zero,SFsol%k,g,SFsol%HH,SFsol%h) + ELSE + ! Nonlinear incident wavefield + print*,' this case is not available already... several checks to make...' + ! Initialize stream function coefficients + CALL stream_func_set_up(g,SFsol%h,SFsol%T,SFsol%i_wavel_or_per,SFsol%L, & + SFsol%k,SFsol%HH,SFsol%i_euler_or_stokes,SFsol%e_or_s_vel,SFsol%i_deep_or_finite, & + SFsol%n_h_steps,SFsol%n_four_modes,SFsol%nwrk,SFsol%yy,SFsol%zz) + CALL incident_wf_finite(swenseDir, Wavefield, & + Nx+2*GhostGridX,FineGrid%x,Ny+2*GhostGridY,FineGrid%y,Nz+GhostGridz,FineGrid%z, & + FineGrid%h,zero, & + SFsol%k,g,SFsol%n_four_modes,SFsol%zz,SFsol%yy) + ENDIF + PRINT*,'End of SWENSE Initialization' + ENDIF + CASE (11) ! Flat bottom, depth defined from SF-wave for semi circular channel... + IF (Nx>1) THEN + FineGrid%hx = zero + FineGrid%hxx = zero + ENDIF + IF (Ny>1) THEN + FineGrid%hy = zero + FineGrid%hyy = zero + ENDIF + FineGrid%h = SFsol%h + ! + IF (curvilinearONOFF==1) THEN ! curvilinear coordinates... FIXME for make it work whatever transformation + ! In the curvilinear case, BBox have to be the indexes of the corresponding relaxation zones + ! FIXME: use Lx and Ly? Depends how x and y are defined... save e and n directly ? + DO j=1,FineGrid%Nx+2*GhostGridX + tmpx(j) = REAL(j-2,long)*(FineGrid%y(2,1)-FineGrid%y(1,1)) !/REAL((FineGrid%Nx+2*GhostGridX-1),long)*(8+PI)*Lx; !FIXME find a way to define in all situation... + ENDDO + DO j=1,FineGrid%Ny+2*GhostGridY + tmpy(j) = -REAL(j-2,long)*(FineGrid%x(1,2)-FineGrid%x(1,1)) !/REAL((FineGrid%Ny+2*GhostGridY-1),long)*(Ly-Lx); !FIXME find a way to define in all situation... + ENDDO + ELSE + tmpx(:) = FineGrid%x(:,1) + tmpy(:) = FineGrid%y(1,:) + ENDIF + IF (relaxONOFF==1) THEN + ! Relax initial condition + CALL RelaxationModule(Wavefield%E,Wavefield%P,time) + CALL RelaxationModule(Wavefield%E,Wavefield%P,time) + CALL RelaxationModule(Wavefield%E,Wavefield%P,time) + ENDIF + IF(swenseONOFF==0)THEN + ! Nothing to do here + ELSE + IF (LinearONOFF==0) THEN + ! Linear incident wavefield + CALL incident_linear_wf_finite(swenseDir, Wavefield, & !ramp_type,& + Nx+2*GhostGridX,FineGrid%x,Ny+2*GhostGridY,FineGrid%y,Nz+GhostGridz,FineGrid%z, & + FineGrid%h,zero,& + SFsol%k,g,SFsol%HH,SFsol%h) + ELSE + ! Nonlinear incident wavefield + print*,' this case is not available already... several checks to make...' + ! Initialize stream function coefficients + CALL stream_func_set_up(g,SFsol%h,SFsol%T,SFsol%i_wavel_or_per,SFsol%L, & + SFsol%k,SFsol%HH,SFsol%i_euler_or_stokes,SFsol%e_or_s_vel,SFsol%i_deep_or_finite, & + SFsol%n_h_steps,SFsol%n_four_modes,SFsol%nwrk,SFsol%yy,SFsol%zz) + CALL incident_wf_finite(swenseDir, Wavefield, & + Nx+2*GhostGridX,FineGrid%x,Ny+2*GhostGridY,FineGrid%y,Nz+GhostGridz,FineGrid%z, & + FineGrid%h,zero, SFsol%k,g,SFsol%n_four_modes,SFsol%zz,SFsol%yy) + ENDIF + PRINT*,'End of SWENSE Initialization' + ENDIF + CASE (12) ! Flat bottom, depth defined from SF-wave to check convergence... + IF (Nx>1) THEN + FineGrid%hx = zero + FineGrid%hxx = zero + ENDIF + IF (Ny>1) THEN + FineGrid%hy = zero + FineGrid%hyy = zero + ENDIF + FineGrid%h = SFsol%h + kw = SFsol%k + HH = SFsol%HH ! initial wave height + Wavefield%E = HH/two*COS(kw*FineGrid%x)*COS(kw*FineGrid%y) + Wavefield%Ex = -kw*HH/two*SIN(kw*FineGrid%x)*COS(kw*FineGrid%y) + Wavefield%Exx = -kw**two*HH/two*COS(kw*FineGrid%x)*COS(kw*FineGrid%y) + Wavefield%Ey = -kw*HH/two*COS(kw*FineGrid%x)*SIN(kw*FineGrid%y) + Wavefield%Eyy = -kw**two*HH/two*COS(kw*FineGrid%x)*COS(kw*FineGrid%y) + ! Cross derivative Exy saved in Px + Wavefield%Px = kw**two*HH/two*SIN(kw*FineGrid%x)*SIN(kw*FineGrid%y) + ! Put corners to wrong value + Wavefield%E(1,1)=1000.0_long + Wavefield%E(Nx+2*GhostGridX,1)=1000.0_long + Wavefield%E(1,Ny+2*GhostGridY)=1000.0_long + Wavefield%E(Nx+2*GhostGridX,Ny+2*GhostGridY)=1000.0_long + ! + ! Test on thecross derivatives XZ and YZ... + DO j=1,FineGrid%Nz+GhostGridZ + PHI(j,:,:) = HH/two*COS(kw*FineGrid%x)*COS(kw*FineGrid%y) & + *COSH(kw*((FineGrid%z(j)-one)*FineGrid%h+FineGrid%h))/COSH(kw)!COSH(kw*FineGrid%h) + !DXZ + LASTPHI(j,:,:,1) = -kw**2*HH/two*SIN(kw*FineGrid%x)*COS(kw*FineGrid%y) & + *SINH(kw*((FineGrid%z(j)-one)& + *FineGrid%h+FineGrid%h))/COSH(kw)!COSH(kw*FineGrid%h) + !DYZ + LASTPHI(j,:,:,2) = -kw**2*HH/two*COS(kw*FineGrid%x)*SIN(kw*FineGrid%y) & + *SINH(kw*((FineGrid%z(j)-one)*FineGrid%h+FineGrid%h))/COSH(kw)!COSH(kw*FineGrid%h) + ENDDO + ! Put corners to zero... + !PHI(1,1,1) = 1000.0_long + !PHI(FineGrid%Nz+GhostGridZ,1,1) = 1000.0_long + !PHI(1,Nx+2*GhostGridX,1) = 1000.0_long + !PHI(FineGrid%Nz+GhostGridZ,Nx+2*GhostGridX,1) = 1000.0_long + !PHI(1,1,Ny+2*GhostGridY) = 1000.0_long + !PHI(FineGrid%Nz+GhostGridZ,1,Ny+2*GhostGridY) = 1000.0_long + !PHI(FineGrid%Nz+GhostGridZ,Nx+2*GhostGridX,Ny+2*GhostGridY) = 1000.0_long + !PHI(1,Nx+2*GhostGridX,Ny+2*GhostGridY) = 1000.0_long + ! This is the whole edges of the domain which are not treated OK ? + PHI(1:FineGrid%Nz+GhostGridZ,1,1) = 1000.0_long + PHI(1:FineGrid%Nz+GhostGridZ,Nx+2*GhostGridX,1) = 1000.0_long + PHI(1:FineGrid%Nz+GhostGridZ,1,Ny+2*GhostGridY) = 1000.0_long + PHI(1:FineGrid%Nz+GhostGridZ,Nx+2*GhostGridX,Ny+2*GhostGridY) = 1000.0_long + ! Bottom + PHI(1,1:Nx+2*GhostGridX,1) = 1000.0_long + PHI(1,1:Nx+2*GhostGridX,Ny+2*GhostGridY) = 1000.0_long + PHI(1,1,1:Ny+2*GhostGridY) = 1000.0_long + PHI(1,Nx+2*GhostGridX,1:Ny+2*GhostGridY) = 1000.0_long + ! Free surface... We can usr free surface points + !PHI(FineGrid%Nz+GhostGridZ,1:Nx+2*GhostGridX,1) = 1000.0_long + !PHI(FineGrid%Nz+GhostGridZ,1:Nx+2*GhostGridX,Ny+2*GhostGridY) = 1000.0_long + !PHI(FineGrid%Nz+GhostGridZ,1,1:Ny+2*GhostGridY) = 1000.0_long + !PHI(FineGrid%Nz+GhostGridZ,Nx+2*GhostGridX,1:Ny+2*GhostGridY) = 1000.0_long + CASE(13) ! Linear standing wave (2D) + in curvilinear space rotation with an angle + FineGrid%h = SFsol%h + IF (Nx>1) THEN + FineGrid%hx=zero; FineGrid%hxx=zero + ENDIF + IF (Ny>1) THEN + FineGrid%hy=zero; FineGrid%hyy=zero + ENDIF + IF(swenseONOFF==0)THEN + CALL linearstandingwave2D(g,zero,zero,SFsol,SFsol%L,SFsol%L,FineGrid%h(1,1),FineGrid%x, & + FineGrid%y& + ,Wavefield%P,tmp2D,tmp2D,Wavefield%W,Wavefield%E,Wavefield%Ex,Wavefield%Exx, & + Wavefield%Ey,Wavefield%Eyy,& + (Nx+2*GhostGridX)*(Ny+2*GhostGridY)) + IF (curvilinearONOFF == 1) THEN + !Rotate the physical grid with a given angle... + tmp2D = FineGrid%x + FineGrid%x = tmp2D*COS(20.d0*PI/180.d0)-FineGrid%y*SIN(20.d0*PI/180.d0) + FineGrid%y = tmp2D*SIN(20.d0*PI/180.d0)+FineGrid%y*COS(20.d0*PI/180.d0) + ENDIF + ELSE + IF (curvilinearONOFF == 1) THEN + !Rotate the physical grid with a given angle... + tmp2D = FineGrid%x + FineGrid%x = tmp2D*COS(20.d0*PI/180.d0)-FineGrid%y*SIN(20.d0*PI/180.d0) + FineGrid%y = tmp2D*SIN(20.d0*PI/180.d0)+FineGrid%y*COS(20.d0*PI/180.d0) + ENDIF + IF (LinearONOFF==0) THEN + ! Linear incident wavefield + CALL incident_linear_wf_finite_standing(swenseDir, Wavefield, & !ramp_type,& + Nx+2*GhostGridX,FineGrid%x,Ny+2*GhostGridY,FineGrid%y,Nz+GhostGridz,FineGrid%z, & + FineGrid%h,zero,& + SFsol%k,g,SFsol%HH,SFsol%h) + ELSE + ! Nonlinear incident wavefield + print*,' this case is not available already... several checks to make...' + stop + ENDIF + PRINT*,'End of SWENSE Initialization' + ENDIF + print*,' Linear standing wave parameters:' + print*,' kh = ',SFsol%k*SFsol%h + print*,' T = ',SFsol%T + print*,' c = ',SFsol%c + print*,' h = ',SFsol%h + IF (FineGrid%Nx>1) THEN + dxmin = dx + ELSE + dxmin = two*dy + ENDIF + IF (FineGrid%Ny>1) THEN + dymin = dy + ELSE + dymin = two*dx + ENDIF + PRINT*,' dt = ',dt + PRINT*,' Cr = ',SFsol%c*dt/MIN(dxmin,dymin) + CASE (14) ! Mildly nonlinear standing wave, deep water (Agnon & Glozman (1996)) with SWENSE + IF (Nx>1) THEN + FineGrid%h = two; FineGrid%hx=zero; FineGrid%hxx=zero + ELSE IF (Ny>1) THEN + FineGrid%h = two; FineGrid%hy=zero; FineGrid%hyy=zero + ENDIF + SFsol%h = FineGrid%h(1,1) + IF(swenseONOFF==0)THEN + IF (Nx>1) THEN + CALL nonlinearstandingwave1D(pi,FineGrid%h(1,1),FineGrid%x,tmp2D,Wavefield%W,Wavefield%E, & + Wavefield%Ex,Wavefield%Exx,& + (Nx+2*GhostGridX)*(Ny+2*GhostGridY)) + ELSE IF (Ny>1) THEN + CALL nonlinearstandingwave1D(pi,FineGrid%h(1,1),FineGrid%y,tmp2D,Wavefield%W,Wavefield%E, & + Wavefield%Ey,Wavefield%Eyy,& + (Nx+2*GhostGridX)*(Ny+2*GhostGridY)) + ENDIF + ENDIF + !GD: test in a curvilinear rotated domain... + IF (curvilinearONOFF == 1) THEN + !Rotate the physical grid with a given angle... + tmp2D = FineGrid%x + FineGrid%x = tmp2D*COS(20*PI/180)-FineGrid%y*SIN(20*PI/180) + FineGrid%y = tmp2D*SIN(20*PI/180)+FineGrid%y*COS(20*PI/180) + ENDIF + IF (LinearONOFF==1) THEN + ! Non-Linear incident wavefield + CALL incident_nonlinear_wf_finite_standing(swenseDir, Wavefield, & !ramp_type,& + Nx+2*GhostGridX,FineGrid%x,Ny+2*GhostGridY,FineGrid%y,Nz+GhostGridz,FineGrid%z, & + FineGrid%h,zero,& + SFsol%k,g,SFsol%HH,SFsol%h) + ELSE + ! Linear incident wavefield + print*,' this case is not available... for linear case 13' + stop + ENDIF + CASE(15) !2D submerged bar test + IF (Ny>1) THEN + print*,'Only 2D case along x for now' + STOP + ENDIF + ! Determine size of left relaxation zones... (assumed that this is defined in the 1st + ! relaxation zone) + y0 = FineGrid%x(RelaxZones(1)%idx(2),1) + ! Define bottom + CALL SubmergedBar_2D(FineGrid,y0,GhostGridX) + ! + IF(swenseONOFF==1)THEN + IF (LinearONOFF==0) THEN + print*,'it should be a nonlinear case!' + STOP + ! Linear incident wavefield + CALL incident_linear_wf_finite(swenseDir, Wavefield, & !ramp_type,& + Nx+2*GhostGridX,FineGrid%x,Ny+2*GhostGridY,FineGrid%y,Nz+GhostGridz,FineGrid%z, & + FineGrid%h,zero,& + SFsol%k,g,SFsol%HH,SFsol%h) + ELSE + ! Nonlinear incident wavefield + ! Initialize stream function coefficients + CALL stream_func_set_up(g,SFsol%h,SFsol%T,SFsol%i_wavel_or_per,SFsol%L, & + SFsol%k,SFsol%HH,SFsol%i_euler_or_stokes,SFsol%e_or_s_vel,SFsol%i_deep_or_finite, & + SFsol%n_h_steps,SFsol%n_four_modes,SFsol%nwrk,SFsol%yy,SFsol%zz) + CALL incident_wf_finite(swenseDir, Wavefield, & + Nx+2*GhostGridX,FineGrid%x,Ny+2*GhostGridY,FineGrid%y,Nz+GhostGridz,FineGrid%z, & + FineGrid%h,zero, & + SFsol%k,g,SFsol%n_four_modes,SFsol%zz,SFsol%yy) + ENDIF + ENDIF + CASE(16) + + !-------------------------------------------------------------------------- + ! Henrik Bredmose 2009 JFM paper setup. + !-------------------------------------------------------------------------- + + IF (Lz <= 0) THEN + + !------------------------------------------------------------------------- + ! Read in the bottom contours from a file: + !------------------------------------------------------------------------- + OPEN(unit=fileip(4),file=fname_bottom,status='old') + READ(fileip(4),'(A)')head(4) + PRINT *, 'SetUpInitialConditions: Reading the bottom contours from file:' + PRINT *,fname_bottom,' with header:' + PRINT *, head(4) + PRINT *, ' ' + READ(fileip(4),*) DetermineBottomGradients ! Read the gradient flag + + !------------------------------------------------------------------------- + ! Read h(x,y),h_x,h_xx,h_y,h_yy + !------------------------------------------------------------------------- + Print *, ' Reading h,h_x,h_xx,h_y,h_yy.' + print *, ' ' + Do j=1+GhostGridY,ny+GhostGridY + DO i=1+GhostGridX,nx+GhostGridX + READ(fileip(4),*) FineGrid%h(i,j), & + FineGrid%hx(i,j), & + FineGrid%hxx(i,j), & + FineGrid%hy(i,j), & + FineGrid%hyy(i,j) + END DO + END DO + + !------------------------------------------------------------------------- + ! Extend the bathymetry to the ghost points by copying the domain + ! endpoint values. + !------------------------------------------------------------------------- + FineGrid%h(1,:) = FineGrid%h(1+GhostGridX,:); + FineGrid%h(:,1) = FineGrid%h(:,1+GhostGridY); + FineGrid%h(nx+2*GhostGridX,:) = FineGrid%h(nx+GhostGridX,:); + FineGrid%h(:,ny+2*GhostGridY) = FineGrid%h(:,ny+GhostGridY) + FineGrid%hx(1,:) = FineGrid%hx(1+GhostGridX,:); + FineGrid%hx(:,1) = FineGrid%hx(:,1+GhostGridY); + FineGrid%hx(nx+2*GhostGridX,:) = FineGrid%hx(nx+GhostGridX,:); + FineGrid%hx(:,ny+2*GhostGridY) = FineGrid%hx(:,ny+GhostGridY) + FineGrid%hxx(1,:) = FineGrid%hxx(1+GhostGridX,:); + FineGrid%hxx(:,1) = FineGrid%hxx(:,1+GhostGridY); + FineGrid%hxx(nx+2*GhostGridX,:) = FineGrid%hxx(nx+GhostGridX,:); + FineGrid%hxx(:,ny+2*GhostGridY) = FineGrid%hxx(:,ny+GhostGridY) + FineGrid%hy(1,:) = FineGrid%hy(1+GhostGridX,:); + FineGrid%hy(:,1) = FineGrid%hy(:,1+GhostGridY); + FineGrid%hy(nx+2*GhostGridX,:) = FineGrid%hy(nx+GhostGridX,:); + FineGrid%hy(:,ny+2*GhostGridY) = FineGrid%hy(:,ny+GhostGridY) + FineGrid%hyy(1,:) = FineGrid%hyy(1+GhostGridX,:); + FineGrid%hyy(:,1) = FineGrid%hyy(:,1+GhostGridY); + FineGrid%hyy(nx+2*GhostGridX,:) = FineGrid%hyy(nx+GhostGridX,:); + FineGrid%hyy(:,ny+2*GhostGridY) = FineGrid%hyy(:,ny+GhostGridY) + + !------------------------------------------------------------------------- + ! Re-set Lz to be max h(1,1) + !------------------------------------------------------------------------- + Lz=FineGrid%h(1,1) + + ELSE + + FineGrid%h = Lz; + FineGrid%hx = zero; + FineGrid%hxx = zero; + FineGrid%hy = zero; + FineGrid%hyy = zero; + + END IF + + !--------------------------------------------------------------------------- + ! Set initial surface elevation and free surface potential: + !--------------------------------------------------------------------------- + CALL stream_func_set_up(g,SFsol%h,SFsol%T,SFsol%i_wavel_or_per,SFsol%L, & + SFsol%k,SFsol%HH,SFsol%i_euler_or_stokes, & + SFsol%e_or_s_vel,SFsol%i_deep_or_finite, & + SFsol%n_h_steps,SFsol%n_four_modes,SFsol%nwrk, & + SFsol%yy,SFsol%zz) + + CALL incident_wf_finite(swenseDir, Wavefield, & + Nx+2*GhostGridX,FineGrid%x, & + Ny+2*GhostGridY,FineGrid%y, & + Nz+GhostGridz ,FineGrid%z, & + FineGrid%h,zero,SFsol%k,g, & + SFsol%n_four_modes,SFsol%zz,SFsol%yy) + + !--------------------------------------------------------------------------- + ! Modify the free surface elevation and the free surface potential by the + ! envelope function sech(kx(x-x0)/4) = 1/cosh(kx(x-x0)/4): + !--------------------------------------------------------------------------- + Wavefield%E = 1.0/COSH(SFsol%k*(FineGrid%x - 200.0)/4.0)*Wavefield%E_I + Wavefield%P = 1.0/COSH(SFsol%k*(FineGrid%x - 200.0)/4.0)*Wavefield%P_I_s + + !--------------------------------------------------------------------------- + ! Calculate the derivatives of the initial condition numerically: + !--------------------------------------------------------------------------- + CALL PreProcessDiffStencils(FineGrid,FineGrid%DiffStencils,GhostGridX, & + GhostGridY,GhostGridZ,alpha,beta,gamma) + CALL DiffXEven(Wavefield%E,Wavefield%Ex,1,FineGrid%Nx,FineGrid%Ny,1, & + FineGrid%DiffStencils,alpha) + CALL DiffXEven(Wavefield%E,Wavefield%Exx,2, & + FineGrid%Nx,FineGrid%Ny,1,FineGrid%DiffStencils,alpha) + CALL DiffXEven(Wavefield%P,Wavefield%Px,1,FineGrid%Nx,FineGrid%Ny,1, & + FineGrid%DiffStencils,alpha) + ! + CASE (17) ! Vincent and Briggs(3D) + CALL BottomVincent(FineGrid,GhostGridX,GhostGridY) + DetermineBottomGradients = 1 + CASE DEFAULT + PRINT * ,'Error: Specified initial conditions are not valid.' + STOP + END SELECT + + END SUBROUTINE SetupInitialConditions From 378ec1b396474d208c1664ef29a8c516e4917cfe Mon Sep 17 00:00:00 2001 From: hbbi Date: Sat, 5 Sep 2015 18:51:50 +0000 Subject: [PATCH 08/56] Fixed some bugs in the Vincent & Briggs case --- src/analyticalsolutions/bottomVincent.f90 | 38 +++++++++-------------- src/initialization/Initialize.f90 | 2 +- 2 files changed, 15 insertions(+), 25 deletions(-) diff --git a/src/analyticalsolutions/bottomVincent.f90 b/src/analyticalsolutions/bottomVincent.f90 index 42b7f25..36fb24f 100644 --- a/src/analyticalsolutions/bottomVincent.f90 +++ b/src/analyticalsolutions/bottomVincent.f90 @@ -1,48 +1,38 @@ SUBROUTINE BottomVincent(FineGrid,GX,GY) ! -! Define bottom profile for Vincent and Briggs experiment (3D) +! Define bottom profile for Vincent and Briggs experiment (3D), waves are assumed to +! be in the x-direction and the shoal center is placed at x=10.61m, y=13.72. ! -! By Maite Gouin. +! By Maite Gouin. Modified by H.B. Bingham. USE Precision USE Constants USE DataTypes IMPLICIT NONE TYPE (Level_def) :: FineGrid -REAL(KIND=long) :: y, x, xr, yr, k, angle, dxrdx, dxrdy, dyrdx, dyrdy +REAL(KIND=long) :: y, x, xr, yr, k, angle, dy INTEGER :: Nx, Ny, i, j, GX, GY -!hbb Added the ghost points here. + Nx = FineGrid%Nx+2*GX Ny = FineGrid%Ny+2*GY -angle = 0 +dy = FineGrid%y(1,Ny)-FineGrid%y(1,Ny-1) +angle = 0 ! We assume waves in the x-direction. k = angle/180.0_long*pi DO j = 1, Ny -!hbb x and y are 2D arrays in the FineGrid. DO i = 1 , Nx - x = FineGrid%x(i,1) - 6.1_long -4.51_long ! FIXME: translation relative to standard y-coordinates - y = FineGrid%y(1,j) - 14.54_long !half*FineGrid%x(Nx,1) ! position shoal in middle relative to y-axis + x = FineGrid%x(i,1) - 6.1_long -4.51_long ! shoal is centered at 6.1 + 2 lambda in x. + y = FineGrid%y(1,j) - 13.72_long+GY*dy ! shoal at 13.72m in y. yr = cos(k)*y - sin(k)*x xr = sin(k)*y + cos(k)*x - dyrdy = cos(k) - dxrdy = sin(k) - dyrdx = -sin(k) - dxrdx = cos(k) - ! - FineGrid%h(i,j) = 0.4572_long + ! + FineGrid%h(i,j) = 0.4572_long ! IF ((yr/3.96_long)**2 + (xr/3.05_long)**2<1) THEN FineGrid%h(i,j) = FineGrid%h(i,j) + 0.4572_long - 0.7620_long*sqrt(one-(yr/4.95_long)**2-(xr/3.81_long)**2) -!WRITE(*,*) ' WARNING: The bottom slopes for the Vincent and Briggs experiment is not defined analytically (i.e. not implemented).' -!WRITE(*,*) ' WARNING: Therefore the derivatives of the bottom profile function is determined numerically.' - !FineGrid%hx(i,j) = FineGrid%hx(i,j) + (0.02_long*xr*dxrdx + & - ! 0.0355556_long*yr*dyrdx)/sqrt(one-0.04_long*xr**2-0.0711111_long*yr**2) - !FineGrid%hy(i,j) = FineGrid%hy(i,j) + (0.02_long*xr*dxrdy + & - ! 0.0355556_long*yr*dyrdy)/sqrt(one-0.04_long*xr**2-0.0711111_long*yr**2) -! FineGrid%hxx(i,j) = FineGrid%hxx(i,j) + -! FineGrid%hyy(i,j) = FineGrid%hyy(i,j) + END IF END DO END DO -WRITE(*,*) ' WARNING: The bottom slopes for the Vincent and Briggs experiment is not defined analytically (i.e. not implemented).' -WRITE(*,*) ' WARNING: Therefore the derivatives of the bottom profile function is determined numerically.' +WRITE(*,*) ' WARNING: The bottom slopes for the Vincent and Briggs experiment are not defined analytically.,' +WRITE(*,*) ' WARNING: Therefore the derivatives of the bottom profile function are determined numerically.' +WRITE(*,*) ' WARNING: Shoal center is at x=10.61m, y=13.72m. Waves should be in the x-direction' END SUBROUTINE BottomVincent diff --git a/src/initialization/Initialize.f90 b/src/initialization/Initialize.f90 index 24d4606..fe593f5 100644 --- a/src/initialization/Initialize.f90 +++ b/src/initialization/Initialize.f90 @@ -14,7 +14,7 @@ SUBROUTINE Initialize CALL GETARG(1,filenameINPUT) IF (LEN_TRIM(filenameINPUT)==0) THEN ! Set standard input filename when not specified by user - filenameINPUT = 'OceanWave3D.inp.Vincent' + filenameINPUT = 'OceanWave3D.inp' ENDIF OPEN (UNIT=FILEIP(1),FILE=filenameINPUT,STATUS='UNKNOWN',ERR=100,IOSTAT=STAT) ! From acbba524a329316f43708190aaf227ed7a6b24bb Mon Sep 17 00:00:00 2001 From: Harry Bingham Date: Thu, 1 Oct 2015 17:52:13 +0200 Subject: [PATCH 09/56] Added Ji's Cosine spreading for 3D linear wave generation, ispec=34. -hbb --- common.mk | 2 +- src/IO/ReadInputFileParameters.f90 | 2 +- src/main/OceanWave3DT0Setup.f90 | 18 +++++++- src/utilities/build_coeff_3D_Cos.f90 | 62 +++++++++++++++++++++++----- src/utilities/makefile.inc | 1 + src/variabledefs/datatypes.f90 | 2 +- 6 files changed, 71 insertions(+), 16 deletions(-) diff --git a/common.mk b/common.mk index add4fa7..80b897a 100644 --- a/common.mk +++ b/common.mk @@ -12,7 +12,7 @@ INSTALLDIR = $(HOME)/bin LIBINSTALLDIR = $(HOME)/lib # Build directory where object files are stored -BUILDDIR = $(PWD)/../build +BUILDDIR = $(PWD)/build # The build environment is set either by the choice of a compiler # flag, or by creating a block for a specific $USER. diff --git a/src/IO/ReadInputFileParameters.f90 b/src/IO/ReadInputFileParameters.f90 index e1d2965..8f1d51f 100644 --- a/src/IO/ReadInputFileParameters.f90 +++ b/src/IO/ReadInputFileParameters.f90 @@ -474,7 +474,7 @@ SUBROUTINE ReadInputFileParameters RandomWave(i)%h0=h0; RandomWave(i)%x0=x0; RandomWave(i)%y0=y0; RandomWave(i)%seed=seed; RandomWave(i)%seed2=seed2; RandomWave(i)%kh_max=kh_max; RandomWave(i)%inc_wave_file=inc_wave_file; RandomWave(i)%beta0=beta0; - RandomWave(i)%S=s0 + RandomWave(i)%S0=s0 If(RelaxZones(i)%XorYgen=='X' .AND. RelaxZones(i)%WavegenONOFF==1) THEN nGenZones=nGenZones+1 If( abs(RandomWave(i)%ispec) >= 30 .and. RelaxZones(i)%degrees /= 0) THEN diff --git a/src/main/OceanWave3DT0Setup.f90 b/src/main/OceanWave3DT0Setup.f90 index 37ec8df..b5ff0e3 100644 --- a/src/main/OceanWave3DT0Setup.f90 +++ b/src/main/OceanWave3DT0Setup.f90 @@ -130,8 +130,22 @@ SUBROUTINE OceanWave3DT0Setup RandomWave(1)%seed2 77 FORMAT(' The incident wave is a 3D JONSWAP spectrum with Normal spreading at heading angle ',e10.4,/, & ' deg. to the x-axis. T_p=', e10.4,' H_s=',e10.4,', seed values are:',/,2i10,//) + + ! 3D random waves with a cos^2s0 spreading + + ELSEIF(RandomWave(1)%ispec==34)THEN + WRITE(6,78)RandomWave(1)%beta0, RandomWave(1)%S0, RandomWave(1)%Tp, RandomWave(1)%Hs, & + RandomWave(1)%seed,RandomWave(1)%seed2 +78 FORMAT(' The incident wave is a 3D JONSWAP spectrum with Cos^(2S) spreading at heading angle ',e10.4,/, & + ' deg. to the x-axis. S=',e10.4,', T_p=', e10.4,' H_s=',e10.4,', seed values are:',/,2i10,//) + + open(unit=1107,file='S',status='unknown') + write(1107,*) RandomWave(1)%S0,RandomWave(1)%ispec + close(1107) + !!!!! + ELSE - PRINT *, 'ERROR: RandomWave%ispec must be -1,0,1,2 for 2D waves; or -30,30,31,33 for 3D waves.' + PRINT *, 'ERROR: RandomWave%ispec must be -1,0,1,2 for 2D waves; or -30,30,31,33,34 for 3D waves.' STOP END IF ! @@ -174,7 +188,7 @@ SUBROUTINE OceanWave3DT0Setup Call random_wave_coefficients( RandomWave(i)%ispec, n_fft, RandomWave(i)%beta0, & dt, dx, RandomWave(i)%Tp, RandomWave(i)%Hs, RandomWave(i)%h0, g, & RandomWave(i)%inc_wave_file, RandomWave(i)%kh_max, RandomWave(i)%seed, & - RandomWave(i)%seed2, RandomWave(1)%eta0, RandomWave(1)%beta, RandomWave(1)%S, n_cut ) + RandomWave(i)%seed2, RandomWave(1)%eta0, RandomWave(1)%beta, RandomWave(1)%S0, n_cut ) ! ! Count the total number of grid points in each generation zone and allocate space ! for eta and phiS and compute the elevation and surface potential time-histories. diff --git a/src/utilities/build_coeff_3D_Cos.f90 b/src/utilities/build_coeff_3D_Cos.f90 index 77664ec..339f01d 100644 --- a/src/utilities/build_coeff_3D_Cos.f90 +++ b/src/utilities/build_coeff_3D_Cos.f90 @@ -2,19 +2,18 @@ SUBROUTINE build_coeff_3D_Cos (ETA, beta, N, Hs, Tp, DELT, SEED, seed2, beta0, s ! ! This subroutine returns Z(w) and kvec, the Fourier transform of ! the wave elevation, zeta(t) and a direction beta(w) for each frequency. -! The coefficients are based on a JONSWAP spectrum with a normal spreading -! around the heading angle beta0. +! The coefficients are based on a JONSWAP spectrum with a Cosine spreading +! around the heading angle beta0. ! - USE Error_Function IMPLICIT none integer, parameter :: long=selected_real_kind(12,99) - INTEGER SEED, seed2, n + INTEGER SEED, seed2, n, ncta REAL(kind=long) :: Hs, Tp, delt, beta0, s0 REAL(kind=long) :: ETA(n), beta(n) ! Locals Integer i REAL gasdev, ran1_b - REAL(kind=long) :: pi, df, cst, freq, spec, & + REAL(kind=long) :: pi, df, cst, freq, spec, sf,amp,mr0, & jonswap_spectrum, zero=0._long, & one=1._long, two=2._long, four=4._long, half=.5_long, & twopi, ran1, psi, mag, deg2rad, fp, sigma, erf1, erf2, & @@ -35,6 +34,25 @@ SUBROUTINE build_coeff_3D_Cos (ETA, beta, N, Hs, Tp, DELT, SEED, seed2, beta0, s cst = sqrt(df) fp=1/Tp + ncta=n/2 !! number of angles + open(unit=1106,file='delt',status='unknown') + + write(1106,*) n,delt,Tp + close(1106) + +! m0 + mr0=0.0 + DO i = 1,n + freq=i*df + sf= jonswap_spectrum(freq, Hs, Tp) + mr0=mr0+sf*df + END DO + + amp=sqrt(2.0*mr0/real(n/2.0)) + + open(1108,file='amp',status='unknown') + write(1108,*) mr0,amp + close(1108) ! Initialize beta(:)=beta0 @@ -42,10 +60,29 @@ SUBROUTINE build_coeff_3D_Cos (ETA, beta, N, Hs, Tp, DELT, SEED, seed2, beta0, s eta (1) = zero; eta (2) = zero + +! get the angle from spreading + + CALL spreading(beta,pi,s0,beta0,seed2,ncta) + + do i=1,n + + beta(i)=beta(i)*rad2deg + end do + + ! Build the Fourier coefficients using the chosen Spectrum and a random ! phase. Each frequency has one heading angle which is also based on this ! random number and the accumulated PDF of the spectrum. + open(1110,file='angle.dat') + open(1111,file='angle1.dat') + do i=1,n + + write(1110,*)beta(i) + end do + close(1110) + DO i = 2, n / 2 freq = (i - 1) * df psi=ran1_b(seed2) @@ -62,11 +99,11 @@ SUBROUTINE build_coeff_3D_Cos (ETA, beta, N, Hs, Tp, DELT, SEED, seed2, beta0, s spec= jonswap_spectrum(freq, Hs, Tp) - sigma=0.2_long*(freq/fp)**2.5_long - erf1=Erf(pi/(two*sqrt(two*sigma))) - erf2=InvErf((two*psi-one)*erf1) + ! sigma=0.2_long*(freq/fp)**2.5_long + ! erf1=Erf(pi/(two*sqrt(two*sigma))) + ! erf2=InvErf((two*psi-one)*erf1) - beta(i)=beta0+rad2deg*sqrt(2*sigma)*erf2 + ! beta(i)=beta0+rad2deg*sqrt(2*sigma)*erf2 write(78,*)freq,1/freq,spec,beta(i) ! @@ -74,11 +111,14 @@ SUBROUTINE build_coeff_3D_Cos (ETA, beta, N, Hs, Tp, DELT, SEED, seed2, beta0, s ! ! Real part eta (2*i-1) = REAL(sqrt (two * spec) * cst * phase) + ! eta (2*i-1)=REAL(amp*phase) !eta (2*i-1) = REAL(sqrt (two * spec) * cst * phase) ! Imaginary part - eta (2*i) = AIMAG(sqrt (two * spec) * cst * phase) - + eta (2*i)= AIMAG(sqrt (two * spec) * cst * phase) + ! eta (2*i)=AIMAG(amp*phase) ! eta (2*i)= AIMAG(sqrt (two * spec) * cst * phase) + write(1111,*) eta(i) END DO close(78) + close(1111) RETURN END SUBROUTINE BUILD_COEFF_3D_COS diff --git a/src/utilities/makefile.inc b/src/utilities/makefile.inc index 684ee7e..2038f40 100644 --- a/src/utilities/makefile.inc +++ b/src/utilities/makefile.inc @@ -27,3 +27,4 @@ SOURCES += $(LDIR)/stream_func_coeffs.f SOURCES += $(LDIR)/stream_func_set_up.f90 SOURCES += $(LDIR)/stream_func_wave_finite.f SOURCES += $(LDIR)/waveGenerationFromPaddleSignal.f90 +SOURCES += $(LDIR)/spreading.f90 diff --git a/src/variabledefs/datatypes.f90 b/src/variabledefs/datatypes.f90 index 1cffc99..ddee240 100644 --- a/src/variabledefs/datatypes.f90 +++ b/src/variabledefs/datatypes.f90 @@ -146,7 +146,7 @@ MODULE DataTypes ! DEFINE a Structure for random and mono-chromatic wave generation parameters TYPE RandomWaveParam - REAL(KIND=long) :: Tp, Hs, h0, kh_max, dx, x0, y0, beta0, S + REAL(KIND=long) :: Tp, Hs, h0, kh_max, dx, x0, y0, beta0, S0 INTEGER :: ispec, seed, seed2, nf, nx, ny CHARACTER(len=30) inc_wave_file REAL(KIND=long), allocatable :: eta(:,:), Phis(:,:), eta0(:), Phis0(:), beta(:) From 8261042ae74697e78f4b0010d5c6eb612407caa0 Mon Sep 17 00:00:00 2001 From: Harry Bingham Date: Thu, 1 Oct 2015 18:24:39 +0200 Subject: [PATCH 10/56] Removed some debugging output files from the cosine spreading utilities -hbb --- src/main/OceanWave3DT0Setup.f90 | 4 -- src/utilities/build_coeff_3D_Cos.f90 | 83 +++++++++++----------------- 2 files changed, 32 insertions(+), 55 deletions(-) diff --git a/src/main/OceanWave3DT0Setup.f90 b/src/main/OceanWave3DT0Setup.f90 index b5ff0e3..4cb3f76 100644 --- a/src/main/OceanWave3DT0Setup.f90 +++ b/src/main/OceanWave3DT0Setup.f90 @@ -139,10 +139,6 @@ SUBROUTINE OceanWave3DT0Setup 78 FORMAT(' The incident wave is a 3D JONSWAP spectrum with Cos^(2S) spreading at heading angle ',e10.4,/, & ' deg. to the x-axis. S=',e10.4,', T_p=', e10.4,' H_s=',e10.4,', seed values are:',/,2i10,//) - open(unit=1107,file='S',status='unknown') - write(1107,*) RandomWave(1)%S0,RandomWave(1)%ispec - close(1107) - !!!!! ELSE PRINT *, 'ERROR: RandomWave%ispec must be -1,0,1,2 for 2D waves; or -30,30,31,33,34 for 3D waves.' diff --git a/src/utilities/build_coeff_3D_Cos.f90 b/src/utilities/build_coeff_3D_Cos.f90 index 339f01d..e381263 100644 --- a/src/utilities/build_coeff_3D_Cos.f90 +++ b/src/utilities/build_coeff_3D_Cos.f90 @@ -2,7 +2,7 @@ SUBROUTINE build_coeff_3D_Cos (ETA, beta, N, Hs, Tp, DELT, SEED, seed2, beta0, s ! ! This subroutine returns Z(w) and kvec, the Fourier transform of ! the wave elevation, zeta(t) and a direction beta(w) for each frequency. -! The coefficients are based on a JONSWAP spectrum with a Cosine spreading +! The coefficients are based on a JONSWAP spectrum with a cos^(2s0) spreading ! around the heading angle beta0. ! IMPLICIT none @@ -35,90 +35,71 @@ SUBROUTINE build_coeff_3D_Cos (ETA, beta, N, Hs, Tp, DELT, SEED, seed2, beta0, s fp=1/Tp ncta=n/2 !! number of angles - open(unit=1106,file='delt',status='unknown') - write(1106,*) n,delt,Tp - close(1106) - -! m0 + ! m0 mr0=0.0 - DO i = 1,n - freq=i*df - sf= jonswap_spectrum(freq, Hs, Tp) - mr0=mr0+sf*df - END DO + DO i = 1,n + freq=i*df + sf= jonswap_spectrum(freq, Hs, Tp) + mr0=mr0+sf*df + END DO amp=sqrt(2.0*mr0/real(n/2.0)) - open(1108,file='amp',status='unknown') - write(1108,*) mr0,amp - close(1108) -! Initialize + ! Initialize beta(:)=beta0 - -! Take care of zero and Nyquist frequencies. + + ! Take care of zero and Nyquist frequencies. eta (1) = zero; eta (2) = zero -! get the angle from spreading - - CALL spreading(beta,pi,s0,beta0,seed2,ncta) - - do i=1,n - - beta(i)=beta(i)*rad2deg - end do - - -! Build the Fourier coefficients using the chosen Spectrum and a random -! phase. Each frequency has one heading angle which is also based on this -! random number and the accumulated PDF of the spectrum. + ! get the angle from spreading + + CALL spreading(beta,pi,s0,beta0,seed2,ncta) - open(1110,file='angle.dat') - open(1111,file='angle1.dat') do i=1,n - write(1110,*)beta(i) + beta(i)=beta(i)*rad2deg end do - close(1110) + + ! Build the Fourier coefficients using the chosen Spectrum and a random + ! phase. Each frequency has one heading angle which is also based on this + ! random number and the accumulated PDF of the spectrum. + + DO i = 2, n / 2 freq = (i - 1) * df psi=ran1_b(seed2) -! -! Choose here whether the Fourier amplitudes should be exactly on the spectrum -! or Gaussianly distributed around the spectral value. -! + ! + ! Choose here whether the Fourier amplitudes should be exactly on the spectrum + ! or Gaussianly distributed around the spectral value. + ! mag=one -! mag=gasdev(seed) ! This will give a Guassian distribution of magnitude. -! + ! mag=gasdev(seed) ! This will give a Guassian distribution of magnitude. + ! phase=mag*cmplx(cos(twopi*psi),sin(twopi*psi)) -! Get the wave spectrum value and the direction at this frequency. + ! Get the wave spectrum value and the direction at this frequency. spec= jonswap_spectrum(freq, Hs, Tp) - ! sigma=0.2_long*(freq/fp)**2.5_long - ! erf1=Erf(pi/(two*sqrt(two*sigma))) - ! erf2=InvErf((two*psi-one)*erf1) - - ! beta(i)=beta0+rad2deg*sqrt(2*sigma)*erf2 - + ! + ! Write the spectral coefficients for inspection. + ! write(78,*)freq,1/freq,spec,beta(i) ! ! Load the Fourier coefficients for this frequency ! ! Real part eta (2*i-1) = REAL(sqrt (two * spec) * cst * phase) - ! eta (2*i-1)=REAL(amp*phase) !eta (2*i-1) = REAL(sqrt (two * spec) * cst * phase) + ! Imaginary part eta (2*i)= AIMAG(sqrt (two * spec) * cst * phase) - ! eta (2*i)=AIMAG(amp*phase) ! eta (2*i)= AIMAG(sqrt (two * spec) * cst * phase) - write(1111,*) eta(i) + END DO close(78) - close(1111) RETURN END SUBROUTINE BUILD_COEFF_3D_COS From 627850cdc69c2c7fe6706bc21546fe55b53758ea Mon Sep 17 00:00:00 2001 From: Harry Bingham Date: Thu, 1 Oct 2015 18:31:10 +0200 Subject: [PATCH 11/56] Forgot to add the new subroutine. -hbb --- src/utilities/spreading.f90 | 98 +++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 src/utilities/spreading.f90 diff --git a/src/utilities/spreading.f90 b/src/utilities/spreading.f90 new file mode 100644 index 0000000..e085aab --- /dev/null +++ b/src/utilities/spreading.f90 @@ -0,0 +1,98 @@ +SUBROUTINE SPREADING(BETA1,PI,S0,CTA0,SEED2,NCTA) + +INTEGER S,I,J,NT,NCTA,NCTA1,SEED2 +REAL*8 CTAMAX,CTAMIN,DCTA,CTA0,IPOW,DS,SUM1,AAA,DCTA1,S0,PI,SPM +REAL*8 CTA(16384),COSINT(16384),CC1(16384),BETA1(NCTA),PS(16384) + + + + IPOW=2*S0 + + NCTA1=16384 + +!!!!! out put +! OPEN(1110,FILE='spreading.dat') + +! write(1110,*) s0,cta0,ncta + +! close(1110) + + CTAMAX=CTA0+0.5*PI + CTAMIN=CTA0-0.5*PI + +!FOR THE MULTIDIRECTIONAL SPREADING 'G0' + + + DCTA1=(CTAMAX-CTAMIN)/FLOAT(NCTA1-1) + + DO I=1,NCTA1 + CC1(I)=CTAMIN+(I-1)*DCTA1 + END DO + + SUM1=0.0 + DO I=1,NCTA1 + AAA=CC1(I) + + SUM1=SUM1+((COS((AAA-CTA0)/2.))**IPOW)*DCTA1 + END DO + SPM=1./SUM1 + + + + + CTA(1)=CTAMIN + CTA(NCTA)=CTAMAX + + DS=0.0 + + DCTA=PI/REAL(NCTA) +! OPEN(1,FILE='1 ',status='unknown') +! OPEN(2,FILE='2.TXT') + DO I=1,NCTA + + CTA(I)=CTAMIN+(I-1)*DCTA + + DS=DS+((COS((CTA(I)-CTA0)/2.0))**IPOW)*DCTA + + COSINT(I)=DS*SPM +! WRITE(*,*) i +! WRITE(1,*) CTA(I) ,i + END DO + +! OPEN(4,FILE='4.TXT') +! OPEN(3,FILE='3.TXT') + DO J=1,NCTA + + + PS(J)=RAN1_b(SEED2) +! WRITE(2,*) PS(J),SEED2,J,spm + DO I=1,NCTA + + IF (COSINT(I).GE.PS(J)) then +! WRITE(4,*) CTA(I),COSINT(I),PS(J),I + GO TO 100 + + end if + + + + END DO + + 100 BETA1(J)=CTA(I) + + + ! WRITE(3,*) CTA(I),COSINT(I),PS(J),I + + END DO + +!!!! output +! OPEN(1110,FILE='anglespreading') +! do i=1,ncta +! write(1110,*) beta1(i) +! end do +! close(1110) + + return + END SUBROUTINE SPREADING + + From 04c0e0afa1c93730c31aba115babb9c07f0c5752 Mon Sep 17 00:00:00 2001 From: Bo Terp Paulsen Date: Sat, 10 Oct 2015 14:12:35 +0200 Subject: [PATCH 12/56] Added a qt based GUI for 2D computations --- GUI/MainWindow/aboutFunctions.cpp | 40 + GUI/MainWindow/check.cpp | 107 + GUI/MainWindow/errorMSG.cpp | 33 + GUI/MainWindow/externaloutput.cpp | 14 + GUI/MainWindow/externaloutput.h | 23 + GUI/MainWindow/externaloutput.ui | 19 + GUI/MainWindow/gridFunctions.cpp | 106 + GUI/MainWindow/postProcessing.cpp | 175 + GUI/MainWindow/runAndWrite.cpp | 574 + GUI/MainWindow/waveGeneration.cpp | 84 + GUI/OCW3D.pro | 82 + GUI/QTwidgets/qcustomplot.cpp | 23538 ++++++++++++++++++++++++++++ GUI/QTwidgets/qcustomplot.h | 3770 +++++ GUI/README | 59 + GUI/checkdialog.cpp | 216 + GUI/checkdialog.h | 35 + GUI/checkdialog.ui | 647 + GUI/convert.cpp | 616 + GUI/convert.h | 86 + GUI/customgrid.cpp | 248 + GUI/customgrid.h | 58 + GUI/main.cpp | 14 + GUI/mainwindow.cpp | 204 + GUI/mainwindow.h | 116 + GUI/mainwindow.ui | 4018 +++++ GUI/pictures/bad.png | Bin 0 -> 19997 bytes GUI/pictures/checkMark.png | Bin 0 -> 2667 bytes GUI/pictures/deltares.png | Bin 0 -> 12927 bytes GUI/pictures/dtu.png | Bin 0 -> 177363 bytes GUI/pictures/warning.png | Bin 0 -> 28584 bytes GUI/resources.qrc | 9 + GUI/versions.h | 10 + 32 files changed, 34901 insertions(+) create mode 100644 GUI/MainWindow/aboutFunctions.cpp create mode 100644 GUI/MainWindow/check.cpp create mode 100644 GUI/MainWindow/errorMSG.cpp create mode 100644 GUI/MainWindow/externaloutput.cpp create mode 100644 GUI/MainWindow/externaloutput.h create mode 100644 GUI/MainWindow/externaloutput.ui create mode 100644 GUI/MainWindow/gridFunctions.cpp create mode 100644 GUI/MainWindow/postProcessing.cpp create mode 100644 GUI/MainWindow/runAndWrite.cpp create mode 100644 GUI/MainWindow/waveGeneration.cpp create mode 100644 GUI/OCW3D.pro create mode 100644 GUI/QTwidgets/qcustomplot.cpp create mode 100644 GUI/QTwidgets/qcustomplot.h create mode 100644 GUI/README create mode 100644 GUI/checkdialog.cpp create mode 100644 GUI/checkdialog.h create mode 100644 GUI/checkdialog.ui create mode 100644 GUI/convert.cpp create mode 100644 GUI/convert.h create mode 100644 GUI/customgrid.cpp create mode 100644 GUI/customgrid.h create mode 100644 GUI/main.cpp create mode 100644 GUI/mainwindow.cpp create mode 100644 GUI/mainwindow.h create mode 100644 GUI/mainwindow.ui create mode 100644 GUI/pictures/bad.png create mode 100644 GUI/pictures/checkMark.png create mode 100644 GUI/pictures/deltares.png create mode 100644 GUI/pictures/dtu.png create mode 100644 GUI/pictures/warning.png create mode 100644 GUI/resources.qrc create mode 100644 GUI/versions.h diff --git a/GUI/MainWindow/aboutFunctions.cpp b/GUI/MainWindow/aboutFunctions.cpp new file mode 100644 index 0000000..add8ecf --- /dev/null +++ b/GUI/MainWindow/aboutFunctions.cpp @@ -0,0 +1,40 @@ +#include "mainwindow.h" +#include "ui_mainwindow.h" + +// Update about tab +void MainWindow::about_changed(int i){ + + QRect pos = ui->aboutText_OCW3D->geometry(); + + if (i==0){ + ui->aboutText_OCW3D->setVisible(true); + ui->aboutText_OCW3D_publications->setVisible(false); + ui->aboutText_OCW3dGUI->setVisible(false); + ui->aboutText_OCW3DVersion->setVisible(false); + } + if (i==1){ + ui->aboutText_OCW3dGUI->setGeometry(pos); + ui->aboutText_OCW3D->setVisible(false); + ui->aboutText_OCW3D_publications->setVisible(false); + ui->aboutText_OCW3dGUI->setVisible(true); + ui->aboutText_OCW3DVersion->setVisible(false); + } + + if (i==2){ + ui->aboutText_OCW3D_publications->setGeometry(pos); + ui->aboutText_OCW3D->setVisible(false); + ui->aboutText_OCW3dGUI->setVisible(false); + ui->aboutText_OCW3D_publications->setVisible(true); + ui->aboutText_OCW3DVersion->setVisible(false); + } + if (i==3){ + ui->aboutText_OCW3DVersion->setGeometry(pos); + ui->aboutText_OCW3D->setVisible(false); + ui->aboutText_OCW3dGUI->setVisible(false); + ui->aboutText_OCW3D_publications->setVisible(false); + ui->aboutText_OCW3DVersion->setVisible(true); + } + + + +} diff --git a/GUI/MainWindow/check.cpp b/GUI/MainWindow/check.cpp new file mode 100644 index 0000000..9a2f7db --- /dev/null +++ b/GUI/MainWindow/check.cpp @@ -0,0 +1,107 @@ +#include "mainwindow.h" +#include "checkdialog.h" +#include "ui_mainwindow.h" +#include + +bool MainWindow::checkCase() +{ + bool finalCheck = true; + checkDialog *check = new checkDialog(this); + double L; + // Spatial resolution + // +bool irr; + // wave length + if (ui->waveType->currentIndex()==1){ // stream function wave + + irr = false; + + if (ui->LorP_ComboBox->currentIndex()==0){ // Wave length specified + L = ui->SF_T->value(); + } + else { // wave period + if (ui->SF_h->value()==0){errorMsgSFhZero();return false;} + double k = dispersion_T(ui->SF_h->value(),ui->SF_T->value()); + L = 2*M_PI/k; + } + + + } else if ((ui->waveType->currentIndex()==2) | (ui->waveType->currentIndex()==3)) { // JONSWAP & PM + + irr = true; + + L = 2*3.1415/ui->maxkh->value()*ui->h->value(); + + } + else { + errorMsgParameterCheck(); + return false; + + } + + // dx + double dx = ui->length->value()/(ui->nx->value()-1); + + // ppwl + double spatialResolution = L/dx+1; + + check->spatialResolution(spatialResolution,irr) ? finalCheck=true : finalCheck = false; + + // Temporal resolution + // + double T; + if (ui->waveType->currentIndex()==1){ // stream function wave + + if (ui->LorP_ComboBox->currentIndex()==1){ // Wave period + T = ui->SF_T->value(); + } + else { // wave length + if (ui->SF_h->value()==0){errorMsgSFhZero();return false;} + double omega = dispersion_L(ui->SF_h->value(),ui->SF_T->value()); + T = 2*M_PI/omega; + } + + + } else if ((ui->waveType->currentIndex()==2) | (ui->waveType->currentIndex()==3)) { // JONSWAP & PM + L = 2*M_PI/ui->maxkh->value()*ui->depth->value(); + double omega = dispersion_L(ui->h->value(),L); + T = 2*M_PI/omega; + + + } + else { + errorMsgParameterCheck(); + return false; + + } + + check->temporalResolution(T/ui->dt->value(),irr) ? finalCheck=true : finalCheck=false; + + + // We don't want to base the relaxation zones on the sortest waves + // in the irregular spectrum - so we recompute based on the peak period + if ((ui->waveType->currentIndex()==2) | (ui->waveType->currentIndex()==3)){ + L = 2*M_PI/dispersion_T(ui->h->value(),ui->Tp->value()); + } + // Generation Zone + // + check->generationZone(ui->xGenStart->value(),ui->xGenEnd->value(),L) ? finalCheck=true : finalCheck=false; + + // Generation Zone + // + check->relaxationZone(ui->xAbsorbStart->value(),ui->xAbsorbEnd->value(),L,ui->length->value()) ? finalCheck=true : finalCheck = false; + + // depth + // + double depth; + irr ? depth = ui->h->value() : depth = ui->SF_h->value(); + + check->depth(ui->depth->value(),depth) ? finalCheck=true : finalCheck == false; + + check->show(); + if (finalCheck == false){ + return false; + } else { + return true; + } +} diff --git a/GUI/MainWindow/errorMSG.cpp b/GUI/MainWindow/errorMSG.cpp new file mode 100644 index 0000000..f27fde6 --- /dev/null +++ b/GUI/MainWindow/errorMSG.cpp @@ -0,0 +1,33 @@ +#include "mainwindow.h" +#include "ui_mainwindow.h" +#include +void MainWindow::error_grid_checkDomainLength() +{ + QMessageBox msgBox; + msgBox.setText("Please check that the domain (length, width and depth) is consistent with grid file.\nNote; depth is the depth at the left boundary."); + msgBox.exec(); +} + +void MainWindow::error_matlab() +{ + QMessageBox msgBox; + msgBox.setText("Sorry, this version is compiled without support for MATLAB. \nFor MATLAB support please contact bo.paulsen@deltares.nl.\n\nNote; MATLAB scripts for post-processing are distributed with the source code."); + msgBox.exec(); +} + + +void MainWindow::errorMsgParameterCheck(){ + + QMessageBox msgBox; + msgBox.setText("Error checks are only implemented for:\n\nStream function\nJONSWAP\nP-M"); + msgBox.exec(); + +} + +void MainWindow::errorMsgSFhZero(){ + + QMessageBox msgBox; + msgBox.setText("Incorrect water depth for stream function wave; h=0"); + msgBox.exec(); + +} diff --git a/GUI/MainWindow/externaloutput.cpp b/GUI/MainWindow/externaloutput.cpp new file mode 100644 index 0000000..f512fe5 --- /dev/null +++ b/GUI/MainWindow/externaloutput.cpp @@ -0,0 +1,14 @@ +#include "externaloutput.h" +#include "ui_externaloutput.h" + +externalOutput::externalOutput(const convert &data_, QWidget *parent) : + QWidget(parent), + ui(new Ui::externalOutput) +{ + ui->setupUi(this); +} + +externalOutput::~externalOutput() +{ + delete ui; +} diff --git a/GUI/MainWindow/externaloutput.h b/GUI/MainWindow/externaloutput.h new file mode 100644 index 0000000..1d088d7 --- /dev/null +++ b/GUI/MainWindow/externaloutput.h @@ -0,0 +1,23 @@ +#ifndef EXTERNALOUTPUT_H +#define EXTERNALOUTPUT_H + +#include +#include "convert.h" + +namespace Ui { +class externalOutput; +} + +class externalOutput : public QWidget +{ + Q_OBJECT + +public: + explicit externalOutput(const convert& data_,QWidget *parent = 0); + ~externalOutput(); + +private: + Ui::externalOutput *ui; +}; + +#endif // EXTERNALOUTPUT_H diff --git a/GUI/MainWindow/externaloutput.ui b/GUI/MainWindow/externaloutput.ui new file mode 100644 index 0000000..e238d35 --- /dev/null +++ b/GUI/MainWindow/externaloutput.ui @@ -0,0 +1,19 @@ + + + externalOutput + + + + 0 + 0 + 1028 + 318 + + + + Form + + + + + diff --git a/GUI/MainWindow/gridFunctions.cpp b/GUI/MainWindow/gridFunctions.cpp new file mode 100644 index 0000000..c2f856d --- /dev/null +++ b/GUI/MainWindow/gridFunctions.cpp @@ -0,0 +1,106 @@ +#include "mainwindow.h" +#include "ui_mainwindow.h" + + +// Select grid file +// + +void MainWindow::selectGridFile() +{ +QString fileName = QFileInfo(QFileDialog::getOpenFileName( + this, + "Select file", + dir.currentPath(), + "All files (*.*);;" + )).fileName(); + + ui->selectedGridFile->setText(fileName); + +} +// Change geometry type; Simple gometry, flat bed;Custom geometry (2D) +// +void MainWindow::geometryType_changed(int geometryType){ + + if (geometryType==0){ // simple geometry, flat bed +// ui->length->setEnabled(true);ui->width->setEnabled(true);ui->depth->setEnabled(true); + ui->customGridWidget->setVisible(false); + + } else { // Advanced geometry type + +// ui->length->setEnabled(false);ui->depth->setEnabled(false);ui->width->setEnabled(false); + ui->customGridWidget->setVisible(true); + + int nGridPoints = ui->nGridPoints->value(); + QDoubleSpinBox *sp; + + + if (nGridPoints>ui->geometry_table->columnCount()){ + for (int i =ui->geometry_table->columnCount();igeometry_table->insertColumn(i); + + for (int j = 0; j < 2 ; j++) { + ui->geometry_table->setCellWidget(j,i,new QDoubleSpinBox(ui->geometry_table)); + sp = (QDoubleSpinBox*)ui->geometry_table->cellWidget(j,i); + sp->setMaximum(9999999); + if ((j==0) & (i == 0)){sp->setEnabled(false);} + + } + } + } + + if (nGridPointsgeometry_table->columnCount()){ + for (int i=ui->geometry_table->columnCount();i>nGridPoints;i--){ + ui->geometry_table->removeColumn(i-1); + } + + } + + + } +} + +// Call smooth functon CustomGrid::laplaceSmoothing +// +void MainWindow::smooth(){ + grid.laplaceSmoothing(); + + // We always want a smooth grid, so we help the user a bit + // + for (int i=0;i<5;i++){ + grid.laplaceSmoothing(); + } + + // We update the grid file + grid.writeGridToFile(ui->selectedGridFile->text()); +} + +// Read grid table and generate grid +// +void MainWindow::generateGrid(){ + grid.readTabel(ui->geometry_table,ui->nx->value(),ui->nz->value(),ui->sz->isChecked()); + grid.generateGrid(); + grid.writeGridToFile(ui->selectedGridFile->text()); + // Enable smooth and showGrid functions + ui->showGrid->setEnabled(true); + ui->smooth->setEnabled(true); + ui->length->setValue(grid.L); + ui->depth->setValue(grid.d); +} + +void MainWindow::showGrid(){ + int plotType = ui->geometryType->currentIndex(); + if (plotType==0){ + grid.showGrid(ui->depth->value(),ui->length->value(),ui->nx->value(),ui->nz->value(),ui->sz->isChecked()); + } else if (plotType==1){ + grid.showGrid(); + } + + +} + +void MainWindow::nGridPoints_changed(){ + + geometryType_changed(1); +} + diff --git a/GUI/MainWindow/postProcessing.cpp b/GUI/MainWindow/postProcessing.cpp new file mode 100644 index 0000000..c7db77c --- /dev/null +++ b/GUI/MainWindow/postProcessing.cpp @@ -0,0 +1,175 @@ +#include "mainwindow.h" +#include "ui_mainwindow.h" + +// Make a system call to gnuplot and print *.fort +// +void MainWindow::gnuplot(){ + + QString fileName = ui->gnuplotFile->text(); + QString argument("/usr/bin/gnuplot -persist -e \"set grid;set autoscale fix;set xlabel \\\"x [m]\\\";set ylabel \\\" Free surface elevation, eta [m]\\\";plot \\\"" + fileName + "\\\" u 1:3 every ::2 w l;\" "); + std::system(qPrintable(argument)); + +} + +// Open a file dialog and slect a file *.fort to plot using gnuplot +// +void MainWindow::openFileDialog(){ + + QString fileName = QFileDialog::getOpenFileName( + this, + "Select file", + dir.currentPath(), + "OCW3D (fort.*);;" + ); + ui->gnuplotFile->setText(fileName); + gnuplot(); + +} + +// Read Kinematics.bin files +// +void MainWindow::readKinematicFile(){ + convertFiles.clearMem(); + ui->morisonX0->clear(); + ui->etaX0->clear(); + ui->convertStatus->clear();ui->convertStatus->repaint(); + ui->SelectOutput->setCurrentIndex(0); + ui->readProgressBar->setVisible(true); + convertFiles.read(ui->selectedPPfiles->text(),ui->readProgressBar); + ui->readProgressBar->setValue(100); + ui->convert->setEnabled(true); + ui->SelectOutput->setEnabled(true); + + +} + + +// +// +void MainWindow::convertTo_setup(int output){ + + if (output==1){ // morison force + for (int i=0;(unsigned)imorisonX0->addItem(QString::number(convertFiles.x[i])); + } + ui->morison_widget->setVisible(true); + ui->eta_widget->setVisible(false); + } else if (output==3){ + ui->etaX0->addItem("All locations"); + for (int i=0;(unsigned)ietaX0->addItem(QString::number(convertFiles.x[i])); + } + + + ui->eta_widget->setVisible(true); + ui->morison_widget->setVisible(false); + + + } else { + ui->morison_widget->setVisible(false); + ui->eta_widget->setVisible(false); + } + + +} + +// +// +void MainWindow::convertTo(){ + ui->convertStatus->setVisible(true); + ui->convertStatus->setText("Converting..."); + ui->convertStatus->repaint(); + + int output = ui->SelectOutput->currentIndex(); + + if (output==1){ // save morison Force + ui->convertStatus->setText("Computing Morison forces");ui->convertStatus->repaint(); + convertFiles.force(ui->morisonX0->currentIndex(),ui->morison_D->value(),ui->Density->value(),ui->morison_cd->value(),ui->morison_cm->value()); + ui->convertStatus->setText("Done; Morison forces saved to working directory"); + } + if (output==2){ +#if MATLAB>0 + convertFiles.matlab(); +#else + error_matlab(); +#endif + } + if (output==3){ + convertFiles.ascii(ui->selectedPPfiles->text(),ui->etaX0->currentIndex()-1); + ui->convertStatus->setText("Done; Ascii file saved to working directory"); + } + +#if externalOutputClass + if (output==4){ + + externalOutput *newOutputClass = new externalOutput(convertFiles,this); + + newOutputClass->show(); + ui->convertStatus->setText("Done; Input file to external code saved in working directory"); + + } +#endif + +} + + +void MainWindow::selectPPfile(){ + + QString fileName = QFileDialog::getOpenFileName( + this, + "Select file", + dir.currentPath(), + "OCW3D (Kinematics*.bin);;" + ); + // We change working directory to the directory of "fileName" + // + dir.setCurrent(QFileInfo(fileName).path()); + ui->selectedPPfiles->setText(fileName); + ui->workingDir->setText(QFileInfo(fileName).path()); +} + +// +// +void MainWindow::storeASCII(bool checked){ + if (checked){ + ui->ACCII_label->setVisible(true);ui->ASCII_label2->setVisible(true);ui->nASCII->setVisible(true);} + else {ui->ACCII_label->setVisible(false);ui->ASCII_label2->setVisible(false);ui->nASCII->setVisible(false); + } +} + +// +// +void MainWindow::on_outputWidgetChanged(int nFiles) +{ + QDoubleSpinBox *sp; + if ((nFiles>0)&(~ui->tableWidget->isVisible())){ + ui->tableWidget->setVisible(true); + } + + if (nFiles==0){ + ui->tableWidget->setVisible(false); + } + + if (nFiles>ui->tableWidget->rowCount()){ + for (int i =ui->tableWidget->rowCount();itableWidget->insertRow(i); + for (int j = 0; j < 6 ; j++) { + ui->tableWidget->setCellWidget(i,j,new QDoubleSpinBox(ui->tableWidget)); + sp = (QDoubleSpinBox*)ui->tableWidget->cellWidget(i,j); + sp->setMaximum(99999999); + if (j==4){sp->setValue(tStart);} + if (j==5){sp->setValue(ui->timeDuration->value());} + } + + } + } + + if (nFilestableWidget->rowCount()){ + for (int i=ui->tableWidget->rowCount();i>nFiles;i--){ + + ui->tableWidget->removeRow(i-1); + } + + } +} diff --git a/GUI/MainWindow/runAndWrite.cpp b/GUI/MainWindow/runAndWrite.cpp new file mode 100644 index 0000000..ac2580e --- /dev/null +++ b/GUI/MainWindow/runAndWrite.cpp @@ -0,0 +1,574 @@ +#include "mainwindow.h" +#include "ui_mainwindow.h" + +#include "math.h" +#include +#include + + +void MainWindow::run(){ + +// QTextStream out(stdout); +// out << QString("Some text"); + writeInputFile(); + QProcess *OCW = new QProcess(); + OCW->start("/usr/bin/xterm -hold -e \\\"OceanWave3D\\\""); +} + +void MainWindow::openWorkDirDialog(){ + + dialog.setFileMode(QFileDialog::Directory); + dialog.setOption(QFileDialog::ShowDirsOnly); + dialog.exec(); + + dir.setCurrent(dialog.directory().path()); + + ui->workingDir->setText(dialog.directory().path()); +} + + +void MainWindow::clearCase(){ + + QString argument("/bin/rm -f fort.* Kinematics*"); + std::system(qPrintable(argument)); + + +} +void MainWindow::openFile(){ + QString fileName = QFileDialog::getOpenFileName( + this, + "Select file", + dir.currentPath(), + "OCW3D (*.inp);;" + ); + + QFile inputFile(fileName); + QString tmp_line; + QStringList tmp_list; + + inputFile.open(QIODevice::ReadOnly); + QFileInfo fileInfo(inputFile.fileName()); + + + // set working directory + // + dir.setCurrent(fileInfo.path()); + ui->workingDir->setText(fileInfo.path()); + + // Header line + // + tmp_line = inputFile.readLine(); + ui->header_input->setText(tmp_line); + + // Second line: initial conditions, wave type, acceleration. + // + tmp_line = inputFile.readLine(); + tmp_list = tmp_line.split(" "); + +// if (tmp_list.size()>=1){ui->initialCondition->setCurrentIndex(tmp_list[0].toInt());} + if (tmp_list.size()>=2){ + if (tmp_list[1].toInt()==1) {ui->waveType->setCurrentIndex(1);} + if (tmp_list[1].toInt()==2) {ui->waveType->setCurrentIndex(2);} // we update with JONSWAP or PM later + if (tmp_list[1].toInt()==3) {ui->waveType->setCurrentIndex(5);} + } + if (tmp_list.size()>=3){ + if (tmp_list[2].toInt()>100){ + tmp_list[2] = "0"; + } + ui->breaking_beta0->setValue(tmp_list[2].toDouble()); + } + tmp_line.clear(); + tmp_list.clear(); + + // third line + // + tmp_line = inputFile.readLine(); + tmp_list = tmp_line.split(" "); + + ui->length->setValue(tmp_list[0].toDouble()); + ui->width->setValue(tmp_list[1].toDouble()); + ui->depth->setValue(tmp_list[2].toDouble()); + ui->nx->setValue(tmp_list[3].toInt()); + ui->ny->setValue(tmp_list[4].toInt()); + ui->nz->setValue(tmp_list[5].toInt()); + + double dx = tmp_list[0].toDouble()/(tmp_list[3].toDouble()-1); + double dy = tmp_list[1].toDouble()/(tmp_list[2].toDouble()-1); + ui->geometryType->setCurrentIndex(0); + tmp_list[8].toInt()>0 ? ui->sz->setChecked(true):ui->sz->setChecked(false); + if (tmp_list.length()>12){ + ui->selectedGridFile->setText(tmp_list[12].toLatin1()); + ui->depth->setValue(-1*tmp_list[2].toDouble()); + error_grid_checkDomainLength(); // throw warning to user + + ui->geometryType->setCurrentIndex(1); + ui->output->setCurrentIndex(1); + ui->length->setEnabled(true); + } + tmp_line.clear(); + tmp_list.clear(); + + // forth line, alpha, beta, gamma, a b c + // + tmp_line = inputFile.readLine(); + tmp_list = tmp_line.split(" "); + + ui->alpha->setValue(tmp_list[0].toInt()); + ui->beta->setValue(tmp_list[1].toInt()); + ui->gamma->setValue(tmp_list[2].toInt()); + ui->a->setValue(tmp_list[3].toInt()); + ui->b->setValue(tmp_list[4].toInt()); + ui->c->setValue(tmp_list[5].toInt()); + tmp_line.clear(); + tmp_list.clear(); + + // fith line: nt dt + // + tmp_line = inputFile.readLine(); + tmp_list = tmp_line.split(" "); + + double time = tmp_list[0].toDouble()*tmp_list[1].toDouble(); + double dt = tmp_list[1].toDouble(); // we need this value later + + ui->timeDuration->setValue(time); + ui->dt->setValue(tmp_list[1].toDouble()); + tmp_line.clear(); + tmp_list.clear(); + + // sixth line: g \rho + // + tmp_line = inputFile.readLine(); + tmp_list = tmp_line.split(" "); + + ui->gravity_input->setValue(tmp_list[0].toDouble()); + ui->Density->setValue(tmp_list[1].toDouble()); + tmp_line.clear(); + tmp_list.clear(); + + // seventh line: numerical settings (SKIP) + // + tmp_line = inputFile.readLine(); + + // stream function solution + // + tmp_line = inputFile.readLine(); + tmp_list = tmp_line.split(" "); + if (ui->waveType->currentIndex()==1){ + ui->SF_H->setValue(tmp_list[0].toDouble()); + ui->SF_h->setValue(tmp_list[1].toDouble()); + if (tmp_list[4].toInt()==0){ + ui->LorP_ComboBox->setCurrentIndex(0); + ui->SF_TLabel->setText("Wave length"); + ui->SF_TL_unit->setText("m"); + ui->SF_T->setValue(tmp_list[2].toDouble()); + } else { + ui->LorP_ComboBox->setCurrentIndex(1); + ui->SF_TLabel->setText("Wave period"); + ui->SF_TL_unit->setText("s"); + ui->SF_T->setValue(tmp_list[3].toDouble()); + } + ui->SF_U->setValue(tmp_list[5].toDouble()); + ui->stokesOrEuler->setCurrentIndex(tmp_list[6].toInt()); + ui->SF_n->setValue(tmp_list[8].toInt()); + } + + tmp_line.clear(); + tmp_list.clear(); + + // outputs + // + tmp_line = inputFile.readLine(); + tmp_list = tmp_line.split(" "); + + if ((tmp_list[0].toInt()==0) & (tmp_list[1].toInt()==0)){ + ui->storeAscii_onOff->setChecked(false); + ui->nOutFiles->setValue(0); + } else { + if (tmp_list[0].toInt()<0){// we store ascii files + ui->storeAscii_onOff->setChecked(true); + ui->ACCII_label->setVisible(true); + ui->ASCII_label2->setVisible(true); + ui->nASCII->setVisible(true); + ui->nASCII->setValue(-1*tmp_list[0].toInt()); + } + if (tmp_list[3].toInt()>0){// Kinematics files + ui->tableWidget->setVisible(true); + QDoubleSpinBox *sp; + int nFiles = tmp_list[3].toInt(); + + ui->nOutFiles->setValue(tmp_list[3].toInt()); + ui->tableWidget->setRowCount(0); + for (int i =ui->tableWidget->rowCount();i outPutList; + + outPutList.push_back((tmp_list[0].toDouble()-1)*dx); + outPutList.push_back((tmp_list[1].toDouble()-1)*dx); + outPutList.push_back((tmp_list[2].toDouble()-1)*dy); + outPutList.push_back((tmp_list[3].toDouble()-1)*dy); + outPutList.push_back((tmp_list[4].toDouble())*dt); + outPutList.push_back((tmp_list[5].toDouble())*dt); + + ui->tableWidget->insertRow(i); + + for (int j = 0; j < 6 ; j++) { + ui->tableWidget->setCellWidget(i,j,new QDoubleSpinBox(ui->tableWidget)); + sp = (QDoubleSpinBox*)ui->tableWidget->cellWidget(i,j); + sp->setMaximum(99999999); + sp->setValue(outPutList[j]); + } + tmp_line.clear(); + tmp_list.clear(); + } + + } + + } + tmp_line.clear(); + tmp_list.clear(); + + // linear or nonlinear + // + tmp_line = inputFile.readLine(); + tmp_list = tmp_line.split(" "); + + if (tmp_list[0].toInt()==1){ + ui->nonlin_onOff->setCurrentIndex(0); + } else { + ui->nonlin_onOff->setCurrentIndex(1); + + } + tmp_line.clear(); + tmp_list.clear(); + + // boudary smoothing (SKIP) + // + tmp_line = inputFile.readLine(); + tmp_line.clear(); + + // relaxation zones + // + tmp_line = inputFile.readLine(); + tmp_list = tmp_line.split(" "); + + if (tmp_list[0].toInt()==1){ + + ui->rampTime->setValue(tmp_list[1].toDouble()); + int relaxZone(tmp_list[2].toInt()); + + // we read the first zone + tmp_line = inputFile.readLine(); + tmp_list = tmp_line.split(" "); + + ui->xGenStart->setValue(tmp_list[0].toDouble()); + ui->xGenEnd->setValue(tmp_list[1].toDouble()); + ui->yGenStart->setValue(tmp_list[2].toDouble()); + ui->yGenEnd->setValue(tmp_list[3].toDouble()); + + if (relaxZone==2){ + tmp_line = inputFile.readLine(); + tmp_list = tmp_line.split(" "); + ui->xAbsorbStart->setValue(tmp_list[0].toDouble()); + ui->xAbsorbEnd->setValue(tmp_list[1].toDouble()); + ui->yAbsorbStart->setValue(tmp_list[2].toDouble()); + ui->yAbsorbEnd->setValue(tmp_list[3].toDouble()); + } + } + tmp_line.clear(); + tmp_list.clear(); + + // pressure damping zones + // + tmp_line = inputFile.readLine(); + tmp_list = tmp_line.split(" "); + + if (tmp_list[0].toInt()==1){// pressure damping is on + ui->pressureDampingOrRelax->setCurrentIndex(0); + tmp_line = inputFile.readLine(); + tmp_list = tmp_line.split(" "); + + ui->xAbsorbStart->setValue(tmp_list[0].toDouble()); + ui->xAbsorbEnd->setValue(tmp_list[1].toDouble()); + ui->yAbsorbStart->setValue(tmp_list[2].toDouble()); + ui->yAbsorbEnd->setValue(tmp_list[3].toDouble()); + + } + tmp_line.clear(); + tmp_list.clear(); + + // SWENSE (SKIP) + // + tmp_line = inputFile.readLine(); + tmp_list = tmp_line.split(" "); + tmp_line.clear(); + tmp_list.clear(); + + // curvelinear (SKIP) + // + tmp_line = inputFile.readLine(); + tmp_list = tmp_line.split(" "); + tmp_line.clear(); + tmp_list.clear(); + + // irregular wave parameters + // + if (ui->waveType->currentIndex()==2){ + tmp_line = inputFile.readLine(); + tmp_list = tmp_line.split(" "); + + if (tmp_list[0].toInt() == 0) { + ui->waveType->setCurrentIndex(3); + } else if (tmp_list[0].toInt() == 1) { + ui->waveType->setCurrentIndex(2); + } else if (tmp_list[0].toInt() == 2) { + ui->waveType->setCurrentIndex(4); + } + + } + if ((ui->waveType->currentIndex()==2) & (ui->waveType->currentIndex()==3) ) + { + ui->Hs->setValue(tmp_list[2].toDouble()); + ui->Tp->setValue(tmp_list[1].toDouble()); + ui->h->setValue(tmp_list[3].toDouble()); + ui->maxkh->setValue(tmp_list[4].toDouble()); + ui->seed->setValue(tmp_list[5].toInt()); + + tmp_line.clear(); + tmp_list.clear(); + + } + if (ui->waveType->currentIndex()==4) { + ui->Hs->setValue(tmp_list[2].toDouble()); + ui->Tp->setValue(tmp_list[1].toDouble()); + ui->h->setValue(tmp_list[3].toDouble()); + ui->maxkh->setValue(tmp_list[4].toDouble()); + ui->seed->setValue(tmp_list[5].toInt()); + ui->irr_x0->setValue(tmp_list[7].toDouble()); + ui->irr_y0->setValue(tmp_list[8].toDouble()); + QFileInfo waveFile(tmp_list[9].toLatin1()); + ui->selectedWaveFile_eta->setText(waveFile.fileName()); + } + if (ui->waveType->currentIndex()==5){ + tmp_line = inputFile.readLine(); + tmp_list = tmp_line.split(" "); + QFileInfo waveFile(tmp_list[2].toLatin1()); + ui->rampTime_waveFile->setValue(tmp_list[0].toDouble()); + ui->selectedWaveFile->setText(waveFile.fileName()); + } + +} + + + +void MainWindow::writeInputFile() +{ + // Read inputs from tab GENERAL + // Read header + QString header = ui->header_input->text(); + // Read mode + int mode; + ui->nonlin_onOff->currentIndex()==0 ? mode=1 : mode = 0; + + // Gravity + double gravity = ui->gravity_input->value(); + double Density = ui->Density->value(); + // Breaking filter + double breaking = ui->breaking_beta0->value(); + if (breaking==0){breaking = 1000;} + // Time duration + double timeDur = ui->timeDuration->value(); + tStart = 0; // ui->tStart->value(); We have removed this feature since it adds more confusion than functionality + + // Read initial conditions + int initialConditions = 0; // still water is hardcoded. Alternatives are 0) still water, 1) standing wave + + // read discretization + int alpha = ui->alpha->value(); + int beta = ui->beta->value(); + int gamma = ui->gamma->value(); + int a = ui->a->value(); + int b = ui->b->value(); + int c = ui->c->value(); + double dt = ui->dt->value(); + + // Compute the number of time steps + int Nsteps = timeDur/dt; + + + // Read geometry + double length = ui->length->value(); + double width = ui->width->value(); + double depth = ui->depth->value(); + int nx = ui->nx->value(); + int ny = ui->ny->value(); + int nz = ui->nz->value(); + bool sx = false; // This option is not supported by the GUI + bool sy = false; // This option is not supported by the GUI + bool sz = ui->sz->isChecked(); + double epsilon = 1e-12; + double dx = length/(nx-1); + double dy = (width+epsilon)/(ny-1); + + // Read wave generation + // wave theory + int waveTheory; + + if (ui->waveType->currentIndex()==1){ // Stream Fucntion + SF_H = ui->SF_H->value(); + SF_T = ui->SF_T->value(); + SF_h = ui->SF_h->value(); + SF_U = ui->SF_U->value(); + SorE = ui->stokesOrEuler->currentIndex(); + SF_n = ui->SF_n->value(); + LorT = ui->LorP_ComboBox->currentIndex(); + SF_L=100;//Dummy value + waveTheory = 1; + if (LorT==0) {SF_L =SF_T;} + } + if ((ui->waveType->currentIndex()==2) | (ui->waveType->currentIndex()==3)){ //JONSWAP or PM + irrFilename = 'dummyFile'; + Hs = ui->Hs->value(); + Tp = ui->Tp->value(); + h = ui->h->value(); + gamma = ui->gamma->value(); + seed = ui->seed->value(); + khmax = ui->maxkh->value(); + waveTheory=2; + ui->waveType->currentIndex()==2 ? i_spec=1 : i_spec=0; + } + if (ui->waveType->currentIndex()==5){ + waveTheory=3; + } + + if (ui->waveType->currentIndex()==4) { + irrFilename = ui->selectedWaveFile_eta->text(); + Hs = ui->Hs->value(); + Tp = ui->Tp->value(); + h = ui->h->value(); + gamma = ui->gamma->value(); + seed = ui->seed->value(); + khmax = 2*M_PI/dx*h; + waveTheory=2; + i_spec = 2; + } + + // Read relaxation / damping zones + //Generation + double xGen[2];double yGen[2]; + xGen[0] = ui->xGenStart->value();xGen[1] = ui->xGenEnd->value(); + yGen[0] = ui->yGenStart->value();yGen[1] = ui->yGenEnd->value(); + double rampTime = ui->rampTime->value(); + + double xAbsorb[2];double yAbsorb[2]; + xAbsorb[0] = ui->xAbsorbStart->value();xAbsorb[1] = ui->xAbsorbEnd->value(); + yAbsorb[0] = ui->yAbsorbStart->value();yAbsorb[1] = ui->yAbsorbEnd->value(); + + + // Read output files + bool storeAscii = ui->storeAscii_onOff->isChecked(); + int nASCIIsteps = ui->nASCII->value(); + + double resolution[] ={dx,dx,dy,dy,dt,dt}; + QDoubleSpinBox* sp; + Double2d outputValues(boost::extents[ui->tableWidget->rowCount()][ui->tableWidget->columnCount()]); +// Double2d outputValues[ui->tableWidget->rowCount()][ui->tableWidget->columnCount()]; + for (int i=0;itableWidget->rowCount();i++){ + for (int j = 0; j < 6 ; j++) { + sp = (QDoubleSpinBox*)ui->tableWidget->cellWidget(i,j); + outputValues[i][j]= round(sp->value()/resolution[j]+1); + + } + if (ny==1) {outputValues[i][2]=1;outputValues[i][3]=1;} + if (outputValues[i][5]>Nsteps){outputValues[i][5]=Nsteps;} + if (outputValues[i][4]==0){outputValues[i][4]=1;} + } + + // Write OceanWave3D input file + QFile myfile("OceanWave3D.inp"); + myfile.open (QIODevice::WriteOnly); + QTextStream outStream(&myfile); + outStream << header; + if (!header.endsWith("\n")){outStream << "\n";} + + outStream << initialConditions << " " << waveTheory << " " << breaking << "\n"; + + if (ui->geometryType->currentIndex()==0) { + outStream << length << " "<< width << " " << depth << " " << nx << " " << ny << " " << nz << " " << sx << " " << sy << " " << sz << " 1 1 1\n"; + } else { + QString gridName = ui->selectedGridFile->text(); + outStream << length << " "<< width << " " << -1*depth << " " << nx << " " << ny << " " << nz << " " << sx << " " << sy << " " << sz << " 1 1 1 " << gridName; + if (!gridName.endsWith("\n")){outStream << "\n";} + } + outStream << alpha << " " << beta << " " << gamma << " " << a << " " << b << " " << c << "\n"; + outStream << Nsteps << " " << dt << " " << "1 0 0 " << tStart << "\n"; + outStream << gravity <<" " << Density << "\n"; + outStream << "1 1 0 23 1e-8 1e-6 1 V 1 1 2 \n"; + if (waveTheory==1){ + outStream << SF_H << " " << SF_h << " " << SF_L << " " << SF_T << " "<< LorT << " " << SF_U << " " << SorE << " " << "8 " << SF_n << "\n"; + } else { outStream << "1 1 1 1 1 1 1 1 1\n";} + + if ((ui->nOutFiles->value()==0)&(~storeAscii)){ // No outputs requested + outStream << "0 0 \n"; + } else { // Outputs are requested + + if ((ui->nOutFiles->value()>0)&storeAscii){ // Both binary and ascii files + outStream << -1*nASCIIsteps << " 20 0 " << ui->nOutFiles->value() << "\n"; + } + if ((ui->nOutFiles->value()==0)&(storeAscii)){ // Only ASCII files + outStream << -1*nASCIIsteps << " 1 0 0\n"; + } + if ((ui->nOutFiles->value()>0)&(~storeAscii)){ // Only binary Files + outStream << "0 20 1 " << ui->nOutFiles->value() << "\n"; + } + + if (ui->nOutFiles->value()>0){ // Writing output positions for binary files + + for (int i = 0;inOutFiles->value();i++){ // loop over rows + for (int j = 0; j<6;j=j+2){ + outStream << outputValues[i][j] << " " << outputValues[i][j+1] << " 1 "; + } + outStream << "\n"; + } + + } + + } + + outStream << mode << " 0\n"; // We hardcode the surface pressure term + outStream << "1 6 10 0.08 0.08 0.4 \n"; // SG-filtering + if ((ui->waveType->currentIndex()==5) & (ui->pressureDampingOrRelax->currentIndex()==0)){ + outStream << "0 " << rampTime << " 0 X 0 \n"; // For wave paddle signal and pressure zone we don't need any relaxation zones + outStream << "1 1\n"; + outStream << xAbsorb[0] << " " << xAbsorb[1] << " " << yAbsorb[0] << " " << yAbsorb[1] << " 1 1 0\n"; + } else if ((ui->waveType->currentIndex()==5) & (ui->pressureDampingOrRelax->currentIndex()==1)){ // Only absorbing relaxation zone + outStream << "1 " << rampTime << " 1 X 0 \n"; + outStream << xAbsorb[0] << " " << xAbsorb[1] << " " << yAbsorb[0] << " " << yAbsorb[1] << " 1 9 3.5 X 0 X 0 \n"; + outStream << "0 0\n"; + } else if ((ui->waveType->currentIndex()!=5) & (ui->pressureDampingOrRelax->currentIndex()==0)) { + outStream << "1 " << rampTime << " 1 X 0 \n"; + outStream << xGen[0] << " " << xGen[1] << " " << yGen[0] << " " << yGen[1] << " -9 3.5 X 1 X 0 \n"; + outStream << "1 1\n"; + outStream << xAbsorb[0] << " " << xAbsorb[1] << " " << yAbsorb[0] << " " << yAbsorb[1] << " 1 1 0\n"; + } else if ((ui->waveType->currentIndex()!=5) & (ui->pressureDampingOrRelax->currentIndex()==1)) { + outStream << "1 " << rampTime << " 2 X 0 \n"; + outStream << xGen[0] << " " << xGen[1] << " " << yGen[0] << " " << yGen[1] << " -9 3.5 X 1 X 0 \n"; + outStream << xAbsorb[0] << " " << xAbsorb[1] << " " << yAbsorb[0] << " " << yAbsorb[1] << " 9 3.5 X 0 X 0 \n"; + outStream << "0 0\n"; + } + + outStream << "0 0 0 0 0 0 0\n"; // SWENSE + outStream << "0 \n"; + // Irregualr waves` + if (waveTheory==2){outStream << i_spec << " " << Tp << " " << Hs << " " << depth << " " << khmax << " " << seed << " " << seed << " " << ui->irr_x0->value() << " " << ui->irr_y0->value() << " " << irrFilename << " 3D-off1 0\n";} + if (waveTheory==3){ outStream << ui->rampTime_waveFile->value() << " " << 1 << " " << ui->selectedWaveFile->text(); } + // + myfile.close(); + ui->run->setEnabled(true); +} + + + diff --git a/GUI/MainWindow/waveGeneration.cpp b/GUI/MainWindow/waveGeneration.cpp new file mode 100644 index 0000000..ea1831b --- /dev/null +++ b/GUI/MainWindow/waveGeneration.cpp @@ -0,0 +1,84 @@ +#include "mainwindow.h" +#include "ui_mainwindow.h" + +void MainWindow::on_waveTheoryChanged() +{ + MainWindow::on_waveTheoryChanged(1); +} + +void MainWindow::on_waveTheoryChanged(int waveTheory) +{ + if (waveTheory==1) { + ui->widget_SF->setVisible(true);ui->LorP_ComboBox->setVisible(true); + + if (ui->LorP_ComboBox->currentIndex()==0){ + ui->SF_TL_unit->setText("m"); + ui->SF_TLabel->setText("Wave length"); + } + if (ui->LorP_ComboBox->currentIndex()==1) { + ui->SF_TL_unit->setText("s"); + ui->SF_TLabel->setText("Wave period"); + } + ui->widget_JONSWAP->setVisible(false); + ui->widget_waveFile->setVisible(false); + ui->waveGeneration_widget->setEnabled(true); + ui->widget_customSpectrum->setVisible(false); + } else if (waveTheory==2){ + ui->widget_SF->setVisible(false);ui->LorP_ComboBox->setVisible(false); + ui->widget_JONSWAP->setVisible(true); + ui->widget_waveFile->setVisible(false); + ui->waveGeneration_widget->setEnabled(true); + ui->widget_customSpectrum->setVisible(false); + } else if (waveTheory==3){ + ui->widget_JONSWAP->setVisible(true); + ui->widget_SF->setVisible(false); + ui->widget_waveFile->setVisible(false); + ui->waveGeneration_widget->setEnabled(true); + ui->widget_customSpectrum->setVisible(false); + } else if (waveTheory==4) { + ui->widget_customSpectrum->setVisible(true); + ui->widget_waveFile->setVisible(false); + ui->widget_JONSWAP->setVisible(false); + ui->widget_SF->setVisible(false);ui->LorP_ComboBox->setVisible(false); + ui->waveGeneration_widget->setEnabled(true); + } else if (waveTheory==5) { + ui->widget_waveFile->setVisible(true); + ui->widget_JONSWAP->setVisible(false); + ui->widget_customSpectrum->setVisible(false); + ui->widget_SF->setVisible(false);ui->LorP_ComboBox->setVisible(false); + ui->waveGeneration_widget->setEnabled(false); + + } else{ + ui->widget_customSpectrum->setVisible(false); + ui->widget_JONSWAP->setVisible(false); + ui->widget_SF->setVisible(false);ui->LorP_ComboBox->setVisible(false); + ui->widget_waveFile->setVisible(false); + ui->waveGeneration_widget->setEnabled(true); + } +} + +void MainWindow::selectWaveFile(){ + + QString fileName = QFileInfo(QFileDialog::getOpenFileName( + this, + "Select file", + dir.currentPath(), + "All files (*.*);;" + )).fileName(); + ui->selectedWaveFile->setText(fileName); + + +} + +void MainWindow::selectWaveFile_eta(){ + + QString fileName = QFileInfo(QFileDialog::getOpenFileName( + this, + "Select file", + dir.currentPath(), + "All files (*.*);;" + )).fileName(); + ui->selectedWaveFile_eta->setText(fileName); + + +} diff --git a/GUI/OCW3D.pro b/GUI/OCW3D.pro new file mode 100644 index 0000000..42342c7 --- /dev/null +++ b/GUI/OCW3D.pro @@ -0,0 +1,82 @@ +#------------------------------------------------- +# +# Project created by QtCreator 2015-03-22T19:30:47 +# +#------------------------------------------------- + +QT += core gui + + +greaterThan(QT_MAJOR_VERSION, 4): QT += widgets +TARGET = OCW3D +TEMPLATE = app + +# Release:DESTDIR = release +# Release:OBJECTS_DIR = release/.obj +# Release:MOC_DIR = release/.moc +# Release:RCC_DIR = release/.rcc +# Release:UI_DIR = release/.ui + +# Debug:DESTDIR = debug +# Debug:OBJECTS_DIR = debug/.obj +# Debug:MOC_DIR = debug/.moc +# Debug:RCC_DIR = debug/.rcc +# Debug:UI_DIR = debug/.ui + + +SOURCES += main.cpp\ + mainwindow.cpp \ + convert.cpp \ + QTwidgets/qcustomplot.cpp \ + customgrid.cpp \ + MainWindow/gridFunctions.cpp \ + MainWindow/aboutFunctions.cpp \ + MainWindow/runAndWrite.cpp \ + MainWindow/postProcessing.cpp \ + MainWindow/waveGeneration.cpp \ + MainWindow/errorMSG.cpp \ + MainWindow/check.cpp \ + checkdialog.cpp \ + MainWindow/externaloutput.cpp + + +HEADERS += mainwindow.h \ + convert.h \ + QTwidgets/qcustomplot.h \ + customgrid.h \ + checkdialog.h \ + versions.h \ + versions.h \ + MainWindow/externaloutput.h + +FORMS += mainwindow.ui \ + checkdialog.ui \ + MainWindow/externaloutput.ui + +CONFIG += link_pkgconfig console debug_and_release + + +PKGCONFIG += x11 + + + + +#if _WIN32 + +#INCLUDEPATH += ../QTwidgets/ \ +# C:\Program Files\boost\boost\ +#else +INCLUDEPATH += /home/paulsen/MATLAB2014b/extern/include/ \ + QTwidgets/ \ + + + +#if MATLAB +#INCLUDEPATH += /home/paulsen/MATLAB2014b/extern/include/ +#LIBS += -L/home/paulsen/MATLAB2014b/bin/glnxa64/ +#LIBS += -lmat +#LIBS += -lmx +#end + +RESOURCES += \ + resources.qrc diff --git a/GUI/QTwidgets/qcustomplot.cpp b/GUI/QTwidgets/qcustomplot.cpp new file mode 100644 index 0000000..6762c4f --- /dev/null +++ b/GUI/QTwidgets/qcustomplot.cpp @@ -0,0 +1,23538 @@ +/*************************************************************************** +** ** +** QCustomPlot, an easy to use, modern plotting widget for Qt ** +** Copyright (C) 2011-2015 Emanuel Eichhammer ** +** ** +** This program is free software: you can redistribute it and/or modify ** +** it under the terms of the GNU General Public License as published by ** +** the Free Software Foundation, either version 3 of the License, or ** +** (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, ** +** but WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program. If not, see http://www.gnu.org/licenses/. ** +** ** +**************************************************************************** +** Author: Emanuel Eichhammer ** +** Website/Contact: http://www.qcustomplot.com/ ** +** Date: 25.04.15 ** +** Version: 1.3.1 ** +****************************************************************************/ + +#include "qcustomplot.h" + + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPPainter +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPPainter + \brief QPainter subclass used internally + + This QPainter subclass is used to provide some extended functionality e.g. for tweaking position + consistency between antialiased and non-antialiased painting. Further it provides workarounds + for QPainter quirks. + + \warning This class intentionally hides non-virtual functions of QPainter, e.g. setPen, save and + restore. So while it is possible to pass a QCPPainter instance to a function that expects a + QPainter pointer, some of the workarounds and tweaks will be unavailable to the function (because + it will call the base class implementations of the functions actually hidden by QCPPainter). +*/ + +/*! + Creates a new QCPPainter instance and sets default values +*/ +QCPPainter::QCPPainter() : + QPainter(), + mModes(pmDefault), + mIsAntialiasing(false) +{ + // don't setRenderHint(QPainter::NonCosmeticDefautPen) here, because painter isn't active yet and + // a call to begin() will follow +} + +/*! + Creates a new QCPPainter instance on the specified paint \a device and sets default values. Just + like the analogous QPainter constructor, begins painting on \a device immediately. + + Like \ref begin, this method sets QPainter::NonCosmeticDefaultPen in Qt versions before Qt5. +*/ +QCPPainter::QCPPainter(QPaintDevice *device) : + QPainter(device), + mModes(pmDefault), + mIsAntialiasing(false) +{ +#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0) // before Qt5, default pens used to be cosmetic if NonCosmeticDefaultPen flag isn't set. So we set it to get consistency across Qt versions. + if (isActive()) + setRenderHint(QPainter::NonCosmeticDefaultPen); +#endif +} + +QCPPainter::~QCPPainter() +{ +} + +/*! + Sets the pen of the painter and applies certain fixes to it, depending on the mode of this + QCPPainter. + + \note this function hides the non-virtual base class implementation. +*/ +void QCPPainter::setPen(const QPen &pen) +{ + QPainter::setPen(pen); + if (mModes.testFlag(pmNonCosmetic)) + makeNonCosmetic(); +} + +/*! \overload + + Sets the pen (by color) of the painter and applies certain fixes to it, depending on the mode of + this QCPPainter. + + \note this function hides the non-virtual base class implementation. +*/ +void QCPPainter::setPen(const QColor &color) +{ + QPainter::setPen(color); + if (mModes.testFlag(pmNonCosmetic)) + makeNonCosmetic(); +} + +/*! \overload + + Sets the pen (by style) of the painter and applies certain fixes to it, depending on the mode of + this QCPPainter. + + \note this function hides the non-virtual base class implementation. +*/ +void QCPPainter::setPen(Qt::PenStyle penStyle) +{ + QPainter::setPen(penStyle); + if (mModes.testFlag(pmNonCosmetic)) + makeNonCosmetic(); +} + +/*! \overload + + Works around a Qt bug introduced with Qt 4.8 which makes drawing QLineF unpredictable when + antialiasing is disabled. Thus when antialiasing is disabled, it rounds the \a line to + integer coordinates and then passes it to the original drawLine. + + \note this function hides the non-virtual base class implementation. +*/ +void QCPPainter::drawLine(const QLineF &line) +{ + if (mIsAntialiasing || mModes.testFlag(pmVectorized)) + QPainter::drawLine(line); + else + QPainter::drawLine(line.toLine()); +} + +/*! + Sets whether painting uses antialiasing or not. Use this method instead of using setRenderHint + with QPainter::Antialiasing directly, as it allows QCPPainter to regain pixel exactness between + antialiased and non-antialiased painting (Since Qt < 5.0 uses slightly different coordinate systems for + AA/Non-AA painting). +*/ +void QCPPainter::setAntialiasing(bool enabled) +{ + setRenderHint(QPainter::Antialiasing, enabled); + if (mIsAntialiasing != enabled) + { + mIsAntialiasing = enabled; + if (!mModes.testFlag(pmVectorized)) // antialiasing half-pixel shift only needed for rasterized outputs + { + if (mIsAntialiasing) + translate(0.5, 0.5); + else + translate(-0.5, -0.5); + } + } +} + +/*! + Sets the mode of the painter. This controls whether the painter shall adjust its + fixes/workarounds optimized for certain output devices. +*/ +void QCPPainter::setModes(QCPPainter::PainterModes modes) +{ + mModes = modes; +} + +/*! + Sets the QPainter::NonCosmeticDefaultPen in Qt versions before Qt5 after beginning painting on \a + device. This is necessary to get cosmetic pen consistency across Qt versions, because since Qt5, + all pens are non-cosmetic by default, and in Qt4 this render hint must be set to get that + behaviour. + + The Constructor \ref QCPPainter(QPaintDevice *device) which directly starts painting also sets + the render hint as appropriate. + + \note this function hides the non-virtual base class implementation. +*/ +bool QCPPainter::begin(QPaintDevice *device) +{ + bool result = QPainter::begin(device); +#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0) // before Qt5, default pens used to be cosmetic if NonCosmeticDefaultPen flag isn't set. So we set it to get consistency across Qt versions. + if (result) + setRenderHint(QPainter::NonCosmeticDefaultPen); +#endif + return result; +} + +/*! \overload + + Sets the mode of the painter. This controls whether the painter shall adjust its + fixes/workarounds optimized for certain output devices. +*/ +void QCPPainter::setMode(QCPPainter::PainterMode mode, bool enabled) +{ + if (!enabled && mModes.testFlag(mode)) + mModes &= ~mode; + else if (enabled && !mModes.testFlag(mode)) + mModes |= mode; +} + +/*! + Saves the painter (see QPainter::save). Since QCPPainter adds some new internal state to + QPainter, the save/restore functions are reimplemented to also save/restore those members. + + \note this function hides the non-virtual base class implementation. + + \see restore +*/ +void QCPPainter::save() +{ + mAntialiasingStack.push(mIsAntialiasing); + QPainter::save(); +} + +/*! + Restores the painter (see QPainter::restore). Since QCPPainter adds some new internal state to + QPainter, the save/restore functions are reimplemented to also save/restore those members. + + \note this function hides the non-virtual base class implementation. + + \see save +*/ +void QCPPainter::restore() +{ + if (!mAntialiasingStack.isEmpty()) + mIsAntialiasing = mAntialiasingStack.pop(); + else + qDebug() << Q_FUNC_INFO << "Unbalanced save/restore"; + QPainter::restore(); +} + +/*! + Changes the pen width to 1 if it currently is 0. This function is called in the \ref setPen + overrides when the \ref pmNonCosmetic mode is set. +*/ +void QCPPainter::makeNonCosmetic() +{ + if (qFuzzyIsNull(pen().widthF())) + { + QPen p = pen(); + p.setWidth(1); + QPainter::setPen(p); + } +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPScatterStyle +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPScatterStyle + \brief Represents the visual appearance of scatter points + + This class holds information about shape, color and size of scatter points. In plottables like + QCPGraph it is used to store how scatter points shall be drawn. For example, \ref + QCPGraph::setScatterStyle takes a QCPScatterStyle instance. + + A scatter style consists of a shape (\ref setShape), a line color (\ref setPen) and possibly a + fill (\ref setBrush), if the shape provides a fillable area. Further, the size of the shape can + be controlled with \ref setSize. + + \section QCPScatterStyle-defining Specifying a scatter style + + You can set all these configurations either by calling the respective functions on an instance: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpscatterstyle-creation-1 + + Or you can use one of the various constructors that take different parameter combinations, making + it easy to specify a scatter style in a single call, like so: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpscatterstyle-creation-2 + + \section QCPScatterStyle-undefinedpen Leaving the color/pen up to the plottable + + There are two constructors which leave the pen undefined: \ref QCPScatterStyle() and \ref + QCPScatterStyle(ScatterShape shape, double size). If those constructors are used, a call to \ref + isPenDefined will return false. It leads to scatter points that inherit the pen from the + plottable that uses the scatter style. Thus, if such a scatter style is passed to QCPGraph, the line + color of the graph (\ref QCPGraph::setPen) will be used by the scatter points. This makes + it very convenient to set up typical scatter settings: + + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpscatterstyle-shortcreation + + Notice that it wasn't even necessary to explicitly call a QCPScatterStyle constructor. This works + because QCPScatterStyle provides a constructor that can transform a \ref ScatterShape directly + into a QCPScatterStyle instance (that's the \ref QCPScatterStyle(ScatterShape shape, double size) + constructor with a default for \a size). In those cases, C++ allows directly supplying a \ref + ScatterShape, where actually a QCPScatterStyle is expected. + + \section QCPScatterStyle-custompath-and-pixmap Custom shapes and pixmaps + + QCPScatterStyle supports drawing custom shapes and arbitrary pixmaps as scatter points. + + For custom shapes, you can provide a QPainterPath with the desired shape to the \ref + setCustomPath function or call the constructor that takes a painter path. The scatter shape will + automatically be set to \ref ssCustom. + + For pixmaps, you call \ref setPixmap with the desired QPixmap. Alternatively you can use the + constructor that takes a QPixmap. The scatter shape will automatically be set to \ref ssPixmap. + Note that \ref setSize does not influence the appearance of the pixmap. +*/ + +/* start documentation of inline functions */ + +/*! \fn bool QCPScatterStyle::isNone() const + + Returns whether the scatter shape is \ref ssNone. + + \see setShape +*/ + +/*! \fn bool QCPScatterStyle::isPenDefined() const + + Returns whether a pen has been defined for this scatter style. + + The pen is undefined if a constructor is called that does not carry \a pen as parameter. Those are + \ref QCPScatterStyle() and \ref QCPScatterStyle(ScatterShape shape, double size). If the pen is + left undefined, the scatter color will be inherited from the plottable that uses this scatter + style. + + \see setPen +*/ + +/* end documentation of inline functions */ + +/*! + Creates a new QCPScatterStyle instance with size set to 6. No shape, pen or brush is defined. + + Since the pen is undefined (\ref isPenDefined returns false), the scatter color will be inherited + from the plottable that uses this scatter style. +*/ +QCPScatterStyle::QCPScatterStyle() : + mSize(6), + mShape(ssNone), + mPen(Qt::NoPen), + mBrush(Qt::NoBrush), + mPenDefined(false) +{ +} + +/*! + Creates a new QCPScatterStyle instance with shape set to \a shape and size to \a size. No pen or + brush is defined. + + Since the pen is undefined (\ref isPenDefined returns false), the scatter color will be inherited + from the plottable that uses this scatter style. +*/ +QCPScatterStyle::QCPScatterStyle(ScatterShape shape, double size) : + mSize(size), + mShape(shape), + mPen(Qt::NoPen), + mBrush(Qt::NoBrush), + mPenDefined(false) +{ +} + +/*! + Creates a new QCPScatterStyle instance with shape set to \a shape, the pen color set to \a color, + and size to \a size. No brush is defined, i.e. the scatter point will not be filled. +*/ +QCPScatterStyle::QCPScatterStyle(ScatterShape shape, const QColor &color, double size) : + mSize(size), + mShape(shape), + mPen(QPen(color)), + mBrush(Qt::NoBrush), + mPenDefined(true) +{ +} + +/*! + Creates a new QCPScatterStyle instance with shape set to \a shape, the pen color set to \a color, + the brush color to \a fill (with a solid pattern), and size to \a size. +*/ +QCPScatterStyle::QCPScatterStyle(ScatterShape shape, const QColor &color, const QColor &fill, double size) : + mSize(size), + mShape(shape), + mPen(QPen(color)), + mBrush(QBrush(fill)), + mPenDefined(true) +{ +} + +/*! + Creates a new QCPScatterStyle instance with shape set to \a shape, the pen set to \a pen, the + brush to \a brush, and size to \a size. + + \warning In some cases it might be tempting to directly use a pen style like Qt::NoPen as \a pen + and a color like Qt::blue as \a brush. Notice however, that the corresponding call\n + QCPScatterStyle(QCPScatterShape::ssCircle, Qt::NoPen, Qt::blue, 5)\n + doesn't necessarily lead C++ to use this constructor in some cases, but might mistake + Qt::NoPen for a QColor and use the + \ref QCPScatterStyle(ScatterShape shape, const QColor &color, const QColor &fill, double size) + constructor instead (which will lead to an unexpected look of the scatter points). To prevent + this, be more explicit with the parameter types. For example, use QBrush(Qt::blue) + instead of just Qt::blue, to clearly point out to the compiler that this constructor is + wanted. +*/ +QCPScatterStyle::QCPScatterStyle(ScatterShape shape, const QPen &pen, const QBrush &brush, double size) : + mSize(size), + mShape(shape), + mPen(pen), + mBrush(brush), + mPenDefined(pen.style() != Qt::NoPen) +{ +} + +/*! + Creates a new QCPScatterStyle instance which will show the specified \a pixmap. The scatter shape + is set to \ref ssPixmap. +*/ +QCPScatterStyle::QCPScatterStyle(const QPixmap &pixmap) : + mSize(5), + mShape(ssPixmap), + mPen(Qt::NoPen), + mBrush(Qt::NoBrush), + mPixmap(pixmap), + mPenDefined(false) +{ +} + +/*! + Creates a new QCPScatterStyle instance with a custom shape that is defined via \a customPath. The + scatter shape is set to \ref ssCustom. + + The custom shape line will be drawn with \a pen and filled with \a brush. The size has a slightly + different meaning than for built-in scatter points: The custom path will be drawn scaled by a + factor of \a size/6.0. Since the default \a size is 6, the custom path will appear at a its + natural size by default. To double the size of the path for example, set \a size to 12. +*/ +QCPScatterStyle::QCPScatterStyle(const QPainterPath &customPath, const QPen &pen, const QBrush &brush, double size) : + mSize(size), + mShape(ssCustom), + mPen(pen), + mBrush(brush), + mCustomPath(customPath), + mPenDefined(pen.style() != Qt::NoPen) +{ +} + +/*! + Sets the size (pixel diameter) of the drawn scatter points to \a size. + + \see setShape +*/ +void QCPScatterStyle::setSize(double size) +{ + mSize = size; +} + +/*! + Sets the shape to \a shape. + + Note that the calls \ref setPixmap and \ref setCustomPath automatically set the shape to \ref + ssPixmap and \ref ssCustom, respectively. + + \see setSize +*/ +void QCPScatterStyle::setShape(QCPScatterStyle::ScatterShape shape) +{ + mShape = shape; +} + +/*! + Sets the pen that will be used to draw scatter points to \a pen. + + If the pen was previously undefined (see \ref isPenDefined), the pen is considered defined after + a call to this function, even if \a pen is Qt::NoPen. + + \see setBrush +*/ +void QCPScatterStyle::setPen(const QPen &pen) +{ + mPenDefined = true; + mPen = pen; +} + +/*! + Sets the brush that will be used to fill scatter points to \a brush. Note that not all scatter + shapes have fillable areas. For example, \ref ssPlus does not while \ref ssCircle does. + + \see setPen +*/ +void QCPScatterStyle::setBrush(const QBrush &brush) +{ + mBrush = brush; +} + +/*! + Sets the pixmap that will be drawn as scatter point to \a pixmap. + + Note that \ref setSize does not influence the appearance of the pixmap. + + The scatter shape is automatically set to \ref ssPixmap. +*/ +void QCPScatterStyle::setPixmap(const QPixmap &pixmap) +{ + setShape(ssPixmap); + mPixmap = pixmap; +} + +/*! + Sets the custom shape that will be drawn as scatter point to \a customPath. + + The scatter shape is automatically set to \ref ssCustom. +*/ +void QCPScatterStyle::setCustomPath(const QPainterPath &customPath) +{ + setShape(ssCustom); + mCustomPath = customPath; +} + +/*! + Applies the pen and the brush of this scatter style to \a painter. If this scatter style has an + undefined pen (\ref isPenDefined), sets the pen of \a painter to \a defaultPen instead. + + This function is used by plottables (or any class that wants to draw scatters) just before a + number of scatters with this style shall be drawn with the \a painter. + + \see drawShape +*/ +void QCPScatterStyle::applyTo(QCPPainter *painter, const QPen &defaultPen) const +{ + painter->setPen(mPenDefined ? mPen : defaultPen); + painter->setBrush(mBrush); +} + +/*! + Draws the scatter shape with \a painter at position \a pos. + + This function does not modify the pen or the brush on the painter, as \ref applyTo is meant to be + called before scatter points are drawn with \ref drawShape. + + \see applyTo +*/ +void QCPScatterStyle::drawShape(QCPPainter *painter, QPointF pos) const +{ + drawShape(painter, pos.x(), pos.y()); +} + +/*! \overload + Draws the scatter shape with \a painter at position \a x and \a y. +*/ +void QCPScatterStyle::drawShape(QCPPainter *painter, double x, double y) const +{ + double w = mSize/2.0; + switch (mShape) + { + case ssNone: break; + case ssDot: + { + painter->drawLine(QPointF(x, y), QPointF(x+0.0001, y)); + break; + } + case ssCross: + { + painter->drawLine(QLineF(x-w, y-w, x+w, y+w)); + painter->drawLine(QLineF(x-w, y+w, x+w, y-w)); + break; + } + case ssPlus: + { + painter->drawLine(QLineF(x-w, y, x+w, y)); + painter->drawLine(QLineF( x, y+w, x, y-w)); + break; + } + case ssCircle: + { + painter->drawEllipse(QPointF(x , y), w, w); + break; + } + case ssDisc: + { + QBrush b = painter->brush(); + painter->setBrush(painter->pen().color()); + painter->drawEllipse(QPointF(x , y), w, w); + painter->setBrush(b); + break; + } + case ssSquare: + { + painter->drawRect(QRectF(x-w, y-w, mSize, mSize)); + break; + } + case ssDiamond: + { + painter->drawLine(QLineF(x-w, y, x, y-w)); + painter->drawLine(QLineF( x, y-w, x+w, y)); + painter->drawLine(QLineF(x+w, y, x, y+w)); + painter->drawLine(QLineF( x, y+w, x-w, y)); + break; + } + case ssStar: + { + painter->drawLine(QLineF(x-w, y, x+w, y)); + painter->drawLine(QLineF( x, y+w, x, y-w)); + painter->drawLine(QLineF(x-w*0.707, y-w*0.707, x+w*0.707, y+w*0.707)); + painter->drawLine(QLineF(x-w*0.707, y+w*0.707, x+w*0.707, y-w*0.707)); + break; + } + case ssTriangle: + { + painter->drawLine(QLineF(x-w, y+0.755*w, x+w, y+0.755*w)); + painter->drawLine(QLineF(x+w, y+0.755*w, x, y-0.977*w)); + painter->drawLine(QLineF( x, y-0.977*w, x-w, y+0.755*w)); + break; + } + case ssTriangleInverted: + { + painter->drawLine(QLineF(x-w, y-0.755*w, x+w, y-0.755*w)); + painter->drawLine(QLineF(x+w, y-0.755*w, x, y+0.977*w)); + painter->drawLine(QLineF( x, y+0.977*w, x-w, y-0.755*w)); + break; + } + case ssCrossSquare: + { + painter->drawLine(QLineF(x-w, y-w, x+w*0.95, y+w*0.95)); + painter->drawLine(QLineF(x-w, y+w*0.95, x+w*0.95, y-w)); + painter->drawRect(QRectF(x-w, y-w, mSize, mSize)); + break; + } + case ssPlusSquare: + { + painter->drawLine(QLineF(x-w, y, x+w*0.95, y)); + painter->drawLine(QLineF( x, y+w, x, y-w)); + painter->drawRect(QRectF(x-w, y-w, mSize, mSize)); + break; + } + case ssCrossCircle: + { + painter->drawLine(QLineF(x-w*0.707, y-w*0.707, x+w*0.670, y+w*0.670)); + painter->drawLine(QLineF(x-w*0.707, y+w*0.670, x+w*0.670, y-w*0.707)); + painter->drawEllipse(QPointF(x, y), w, w); + break; + } + case ssPlusCircle: + { + painter->drawLine(QLineF(x-w, y, x+w, y)); + painter->drawLine(QLineF( x, y+w, x, y-w)); + painter->drawEllipse(QPointF(x, y), w, w); + break; + } + case ssPeace: + { + painter->drawLine(QLineF(x, y-w, x, y+w)); + painter->drawLine(QLineF(x, y, x-w*0.707, y+w*0.707)); + painter->drawLine(QLineF(x, y, x+w*0.707, y+w*0.707)); + painter->drawEllipse(QPointF(x, y), w, w); + break; + } + case ssPixmap: + { + painter->drawPixmap(x-mPixmap.width()*0.5, y-mPixmap.height()*0.5, mPixmap); + break; + } + case ssCustom: + { + QTransform oldTransform = painter->transform(); + painter->translate(x, y); + painter->scale(mSize/6.0, mSize/6.0); + painter->drawPath(mCustomPath); + painter->setTransform(oldTransform); + break; + } + } +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPLayer +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPLayer + \brief A layer that may contain objects, to control the rendering order + + The Layering system of QCustomPlot is the mechanism to control the rendering order of the + elements inside the plot. + + It is based on the two classes QCPLayer and QCPLayerable. QCustomPlot holds an ordered list of + one or more instances of QCPLayer (see QCustomPlot::addLayer, QCustomPlot::layer, + QCustomPlot::moveLayer, etc.). When replotting, QCustomPlot goes through the list of layers + bottom to top and successively draws the layerables of the layers. + + A QCPLayer contains an ordered list of QCPLayerable instances. QCPLayerable is an abstract base + class from which almost all visible objects derive, like axes, grids, graphs, items, etc. + + Initially, QCustomPlot has five layers: "background", "grid", "main", "axes" and "legend" (in + that order). The top two layers "axes" and "legend" contain the default axes and legend, so they + will be drawn on top. In the middle, there is the "main" layer. It is initially empty and set as + the current layer (see QCustomPlot::setCurrentLayer). This means, all new plottables, items etc. + are created on this layer by default. Then comes the "grid" layer which contains the QCPGrid + instances (which belong tightly to QCPAxis, see \ref QCPAxis::grid). The Axis rect background + shall be drawn behind everything else, thus the default QCPAxisRect instance is placed on the + "background" layer. Of course, the layer affiliation of the individual objects can be changed as + required (\ref QCPLayerable::setLayer). + + Controlling the ordering of objects is easy: Create a new layer in the position you want it to + be, e.g. above "main", with QCustomPlot::addLayer. Then set the current layer with + QCustomPlot::setCurrentLayer to that new layer and finally create the objects normally. They will + be placed on the new layer automatically, due to the current layer setting. Alternatively you + could have also ignored the current layer setting and just moved the objects with + QCPLayerable::setLayer to the desired layer after creating them. + + It is also possible to move whole layers. For example, If you want the grid to be shown in front + of all plottables/items on the "main" layer, just move it above "main" with + QCustomPlot::moveLayer. + + The rendering order within one layer is simply by order of creation or insertion. The item + created last (or added last to the layer), is drawn on top of all other objects on that layer. + + When a layer is deleted, the objects on it are not deleted with it, but fall on the layer below + the deleted layer, see QCustomPlot::removeLayer. +*/ + +/* start documentation of inline functions */ + +/*! \fn QList QCPLayer::children() const + + Returns a list of all layerables on this layer. The order corresponds to the rendering order: + layerables with higher indices are drawn above layerables with lower indices. +*/ + +/*! \fn int QCPLayer::index() const + + Returns the index this layer has in the QCustomPlot. The index is the integer number by which this layer can be + accessed via \ref QCustomPlot::layer. + + Layers with higher indices will be drawn above layers with lower indices. +*/ + +/* end documentation of inline functions */ + +/*! + Creates a new QCPLayer instance. + + Normally you shouldn't directly instantiate layers, use \ref QCustomPlot::addLayer instead. + + \warning It is not checked that \a layerName is actually a unique layer name in \a parentPlot. + This check is only performed by \ref QCustomPlot::addLayer. +*/ +QCPLayer::QCPLayer(QCustomPlot *parentPlot, const QString &layerName) : + QObject(parentPlot), + mParentPlot(parentPlot), + mName(layerName), + mIndex(-1), // will be set to a proper value by the QCustomPlot layer creation function + mVisible(true) +{ + // Note: no need to make sure layerName is unique, because layer + // management is done with QCustomPlot functions. +} + +QCPLayer::~QCPLayer() +{ + // If child layerables are still on this layer, detach them, so they don't try to reach back to this + // then invalid layer once they get deleted/moved themselves. This only happens when layers are deleted + // directly, like in the QCustomPlot destructor. (The regular layer removal procedure for the user is to + // call QCustomPlot::removeLayer, which moves all layerables off this layer before deleting it.) + + while (!mChildren.isEmpty()) + mChildren.last()->setLayer(0); // removes itself from mChildren via removeChild() + + if (mParentPlot->currentLayer() == this) + qDebug() << Q_FUNC_INFO << "The parent plot's mCurrentLayer will be a dangling pointer. Should have been set to a valid layer or 0 beforehand."; +} + +/*! + Sets whether this layer is visible or not. If \a visible is set to false, all layerables on this + layer will be invisible. + + This function doesn't change the visibility property of the layerables (\ref + QCPLayerable::setVisible), but the \ref QCPLayerable::realVisibility of each layerable takes the + visibility of the parent layer into account. +*/ +void QCPLayer::setVisible(bool visible) +{ + mVisible = visible; +} + +/*! \internal + + Adds the \a layerable to the list of this layer. If \a prepend is set to true, the layerable will + be prepended to the list, i.e. be drawn beneath the other layerables already in the list. + + This function does not change the \a mLayer member of \a layerable to this layer. (Use + QCPLayerable::setLayer to change the layer of an object, not this function.) + + \see removeChild +*/ +void QCPLayer::addChild(QCPLayerable *layerable, bool prepend) +{ + if (!mChildren.contains(layerable)) + { + if (prepend) + mChildren.prepend(layerable); + else + mChildren.append(layerable); + } else + qDebug() << Q_FUNC_INFO << "layerable is already child of this layer" << reinterpret_cast(layerable); +} + +/*! \internal + + Removes the \a layerable from the list of this layer. + + This function does not change the \a mLayer member of \a layerable. (Use QCPLayerable::setLayer + to change the layer of an object, not this function.) + + \see addChild +*/ +void QCPLayer::removeChild(QCPLayerable *layerable) +{ + if (!mChildren.removeOne(layerable)) + qDebug() << Q_FUNC_INFO << "layerable is not child of this layer" << reinterpret_cast(layerable); +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPLayerable +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPLayerable + \brief Base class for all drawable objects + + This is the abstract base class most visible objects derive from, e.g. plottables, axes, grid + etc. + + Every layerable is on a layer (QCPLayer) which allows controlling the rendering order by stacking + the layers accordingly. + + For details about the layering mechanism, see the QCPLayer documentation. +*/ + +/* start documentation of inline functions */ + +/*! \fn QCPLayerable *QCPLayerable::parentLayerable() const + + Returns the parent layerable of this layerable. The parent layerable is used to provide + visibility hierarchies in conjunction with the method \ref realVisibility. This way, layerables + only get drawn if their parent layerables are visible, too. + + Note that a parent layerable is not necessarily also the QObject parent for memory management. + Further, a layerable doesn't always have a parent layerable, so this function may return 0. + + A parent layerable is set implicitly with when placed inside layout elements and doesn't need to be + set manually by the user. +*/ + +/* end documentation of inline functions */ +/* start documentation of pure virtual functions */ + +/*! \fn virtual void QCPLayerable::applyDefaultAntialiasingHint(QCPPainter *painter) const = 0 + \internal + + This function applies the default antialiasing setting to the specified \a painter, using the + function \ref applyAntialiasingHint. It is the antialiasing state the painter is put in, when + \ref draw is called on the layerable. If the layerable has multiple entities whose antialiasing + setting may be specified individually, this function should set the antialiasing state of the + most prominent entity. In this case however, the \ref draw function usually calls the specialized + versions of this function before drawing each entity, effectively overriding the setting of the + default antialiasing hint. + + First example: QCPGraph has multiple entities that have an antialiasing setting: The graph + line, fills, scatters and error bars. Those can be configured via QCPGraph::setAntialiased, + QCPGraph::setAntialiasedFill, QCPGraph::setAntialiasedScatters etc. Consequently, there isn't + only the QCPGraph::applyDefaultAntialiasingHint function (which corresponds to the graph line's + antialiasing), but specialized ones like QCPGraph::applyFillAntialiasingHint and + QCPGraph::applyScattersAntialiasingHint. So before drawing one of those entities, QCPGraph::draw + calls the respective specialized applyAntialiasingHint function. + + Second example: QCPItemLine consists only of a line so there is only one antialiasing + setting which can be controlled with QCPItemLine::setAntialiased. (This function is inherited by + all layerables. The specialized functions, as seen on QCPGraph, must be added explicitly to the + respective layerable subclass.) Consequently it only has the normal + QCPItemLine::applyDefaultAntialiasingHint. The \ref QCPItemLine::draw function doesn't need to + care about setting any antialiasing states, because the default antialiasing hint is already set + on the painter when the \ref draw function is called, and that's the state it wants to draw the + line with. +*/ + +/*! \fn virtual void QCPLayerable::draw(QCPPainter *painter) const = 0 + \internal + + This function draws the layerable with the specified \a painter. It is only called by + QCustomPlot, if the layerable is visible (\ref setVisible). + + Before this function is called, the painter's antialiasing state is set via \ref + applyDefaultAntialiasingHint, see the documentation there. Further, the clipping rectangle was + set to \ref clipRect. +*/ + +/* end documentation of pure virtual functions */ +/* start documentation of signals */ + +/*! \fn void QCPLayerable::layerChanged(QCPLayer *newLayer); + + This signal is emitted when the layer of this layerable changes, i.e. this layerable is moved to + a different layer. + + \see setLayer +*/ + +/* end documentation of signals */ + +/*! + Creates a new QCPLayerable instance. + + Since QCPLayerable is an abstract base class, it can't be instantiated directly. Use one of the + derived classes. + + If \a plot is provided, it automatically places itself on the layer named \a targetLayer. If \a + targetLayer is an empty string, it places itself on the current layer of the plot (see \ref + QCustomPlot::setCurrentLayer). + + It is possible to provide 0 as \a plot. In that case, you should assign a parent plot at a later + time with \ref initializeParentPlot. + + The layerable's parent layerable is set to \a parentLayerable, if provided. Direct layerable parents + are mainly used to control visibility in a hierarchy of layerables. This means a layerable is + only drawn, if all its ancestor layerables are also visible. Note that \a parentLayerable does + not become the QObject-parent (for memory management) of this layerable, \a plot does. +*/ +QCPLayerable::QCPLayerable(QCustomPlot *plot, QString targetLayer, QCPLayerable *parentLayerable) : + QObject(plot), + mVisible(true), + mParentPlot(plot), + mParentLayerable(parentLayerable), + mLayer(0), + mAntialiased(true) +{ + if (mParentPlot) + { + if (targetLayer.isEmpty()) + setLayer(mParentPlot->currentLayer()); + else if (!setLayer(targetLayer)) + qDebug() << Q_FUNC_INFO << "setting QCPlayerable initial layer to" << targetLayer << "failed."; + } +} + +QCPLayerable::~QCPLayerable() +{ + if (mLayer) + { + mLayer->removeChild(this); + mLayer = 0; + } +} + +/*! + Sets the visibility of this layerable object. If an object is not visible, it will not be drawn + on the QCustomPlot surface, and user interaction with it (e.g. click and selection) is not + possible. +*/ +void QCPLayerable::setVisible(bool on) +{ + mVisible = on; +} + +/*! + Sets the \a layer of this layerable object. The object will be placed on top of the other objects + already on \a layer. + + Returns true on success, i.e. if \a layer is a valid layer. +*/ +bool QCPLayerable::setLayer(QCPLayer *layer) +{ + return moveToLayer(layer, false); +} + +/*! \overload + Sets the layer of this layerable object by name + + Returns true on success, i.e. if \a layerName is a valid layer name. +*/ +bool QCPLayerable::setLayer(const QString &layerName) +{ + if (!mParentPlot) + { + qDebug() << Q_FUNC_INFO << "no parent QCustomPlot set"; + return false; + } + if (QCPLayer *layer = mParentPlot->layer(layerName)) + { + return setLayer(layer); + } else + { + qDebug() << Q_FUNC_INFO << "there is no layer with name" << layerName; + return false; + } +} + +/*! + Sets whether this object will be drawn antialiased or not. + + Note that antialiasing settings may be overridden by QCustomPlot::setAntialiasedElements and + QCustomPlot::setNotAntialiasedElements. +*/ +void QCPLayerable::setAntialiased(bool enabled) +{ + mAntialiased = enabled; +} + +/*! + Returns whether this layerable is visible, taking the visibility of the layerable parent and the + visibility of the layer this layerable is on into account. This is the method that is consulted + to decide whether a layerable shall be drawn or not. + + If this layerable has a direct layerable parent (usually set via hierarchies implemented in + subclasses, like in the case of QCPLayoutElement), this function returns true only if this + layerable has its visibility set to true and the parent layerable's \ref realVisibility returns + true. + + If this layerable doesn't have a direct layerable parent, returns the state of this layerable's + visibility. +*/ +bool QCPLayerable::realVisibility() const +{ + return mVisible && (!mLayer || mLayer->visible()) && (!mParentLayerable || mParentLayerable.data()->realVisibility()); +} + +/*! + This function is used to decide whether a click hits a layerable object or not. + + \a pos is a point in pixel coordinates on the QCustomPlot surface. This function returns the + shortest pixel distance of this point to the object. If the object is either invisible or the + distance couldn't be determined, -1.0 is returned. Further, if \a onlySelectable is true and the + object is not selectable, -1.0 is returned, too. + + If the object is represented not by single lines but by an area like a \ref QCPItemText or the + bars of a \ref QCPBars plottable, a click inside the area should also be considered a hit. In + these cases this function thus returns a constant value greater zero but still below the parent + plot's selection tolerance. (typically the selectionTolerance multiplied by 0.99). + + Providing a constant value for area objects allows selecting line objects even when they are + obscured by such area objects, by clicking close to the lines (i.e. closer than + 0.99*selectionTolerance). + + The actual setting of the selection state is not done by this function. This is handled by the + parent QCustomPlot when the mouseReleaseEvent occurs, and the finally selected object is notified + via the selectEvent/deselectEvent methods. + + \a details is an optional output parameter. Every layerable subclass may place any information + in \a details. This information will be passed to \ref selectEvent when the parent QCustomPlot + decides on the basis of this selectTest call, that the object was successfully selected. The + subsequent call to \ref selectEvent will carry the \a details. This is useful for multi-part + objects (like QCPAxis). This way, a possibly complex calculation to decide which part was clicked + is only done once in \ref selectTest. The result (i.e. the actually clicked part) can then be + placed in \a details. So in the subsequent \ref selectEvent, the decision which part was + selected doesn't have to be done a second time for a single selection operation. + + You may pass 0 as \a details to indicate that you are not interested in those selection details. + + \see selectEvent, deselectEvent, QCustomPlot::setInteractions +*/ +double QCPLayerable::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(pos) + Q_UNUSED(onlySelectable) + Q_UNUSED(details) + return -1.0; +} + +/*! \internal + + Sets the parent plot of this layerable. Use this function once to set the parent plot if you have + passed 0 in the constructor. It can not be used to move a layerable from one QCustomPlot to + another one. + + Note that, unlike when passing a non-null parent plot in the constructor, this function does not + make \a parentPlot the QObject-parent of this layerable. If you want this, call + QObject::setParent(\a parentPlot) in addition to this function. + + Further, you will probably want to set a layer (\ref setLayer) after calling this function, to + make the layerable appear on the QCustomPlot. + + The parent plot change will be propagated to subclasses via a call to \ref parentPlotInitialized + so they can react accordingly (e.g. also initialize the parent plot of child layerables, like + QCPLayout does). +*/ +void QCPLayerable::initializeParentPlot(QCustomPlot *parentPlot) +{ + if (mParentPlot) + { + qDebug() << Q_FUNC_INFO << "called with mParentPlot already initialized"; + return; + } + + if (!parentPlot) + qDebug() << Q_FUNC_INFO << "called with parentPlot zero"; + + mParentPlot = parentPlot; + parentPlotInitialized(mParentPlot); +} + +/*! \internal + + Sets the parent layerable of this layerable to \a parentLayerable. Note that \a parentLayerable does not + become the QObject-parent (for memory management) of this layerable. + + The parent layerable has influence on the return value of the \ref realVisibility method. Only + layerables with a fully visible parent tree will return true for \ref realVisibility, and thus be + drawn. + + \see realVisibility +*/ +void QCPLayerable::setParentLayerable(QCPLayerable *parentLayerable) +{ + mParentLayerable = parentLayerable; +} + +/*! \internal + + Moves this layerable object to \a layer. If \a prepend is true, this object will be prepended to + the new layer's list, i.e. it will be drawn below the objects already on the layer. If it is + false, the object will be appended. + + Returns true on success, i.e. if \a layer is a valid layer. +*/ +bool QCPLayerable::moveToLayer(QCPLayer *layer, bool prepend) +{ + if (layer && !mParentPlot) + { + qDebug() << Q_FUNC_INFO << "no parent QCustomPlot set"; + return false; + } + if (layer && layer->parentPlot() != mParentPlot) + { + qDebug() << Q_FUNC_INFO << "layer" << layer->name() << "is not in same QCustomPlot as this layerable"; + return false; + } + + QCPLayer *oldLayer = mLayer; + if (mLayer) + mLayer->removeChild(this); + mLayer = layer; + if (mLayer) + mLayer->addChild(this, prepend); + if (mLayer != oldLayer) + emit layerChanged(mLayer); + return true; +} + +/*! \internal + + Sets the QCPainter::setAntialiasing state on the provided \a painter, depending on the \a + localAntialiased value as well as the overrides \ref QCustomPlot::setAntialiasedElements and \ref + QCustomPlot::setNotAntialiasedElements. Which override enum this function takes into account is + controlled via \a overrideElement. +*/ +void QCPLayerable::applyAntialiasingHint(QCPPainter *painter, bool localAntialiased, QCP::AntialiasedElement overrideElement) const +{ + if (mParentPlot && mParentPlot->notAntialiasedElements().testFlag(overrideElement)) + painter->setAntialiasing(false); + else if (mParentPlot && mParentPlot->antialiasedElements().testFlag(overrideElement)) + painter->setAntialiasing(true); + else + painter->setAntialiasing(localAntialiased); +} + +/*! \internal + + This function is called by \ref initializeParentPlot, to allow subclasses to react on the setting + of a parent plot. This is the case when 0 was passed as parent plot in the constructor, and the + parent plot is set at a later time. + + For example, QCPLayoutElement/QCPLayout hierarchies may be created independently of any + QCustomPlot at first. When they are then added to a layout inside the QCustomPlot, the top level + element of the hierarchy gets its parent plot initialized with \ref initializeParentPlot. To + propagate the parent plot to all the children of the hierarchy, the top level element then uses + this function to pass the parent plot on to its child elements. + + The default implementation does nothing. + + \see initializeParentPlot +*/ +void QCPLayerable::parentPlotInitialized(QCustomPlot *parentPlot) +{ + Q_UNUSED(parentPlot) +} + +/*! \internal + + Returns the selection category this layerable shall belong to. The selection category is used in + conjunction with \ref QCustomPlot::setInteractions to control which objects are selectable and + which aren't. + + Subclasses that don't fit any of the normal \ref QCP::Interaction values can use \ref + QCP::iSelectOther. This is what the default implementation returns. + + \see QCustomPlot::setInteractions +*/ +QCP::Interaction QCPLayerable::selectionCategory() const +{ + return QCP::iSelectOther; +} + +/*! \internal + + Returns the clipping rectangle of this layerable object. By default, this is the viewport of the + parent QCustomPlot. Specific subclasses may reimplement this function to provide different + clipping rects. + + The returned clipping rect is set on the painter before the draw function of the respective + object is called. +*/ +QRect QCPLayerable::clipRect() const +{ + if (mParentPlot) + return mParentPlot->viewport(); + else + return QRect(); +} + +/*! \internal + + This event is called when the layerable shall be selected, as a consequence of a click by the + user. Subclasses should react to it by setting their selection state appropriately. The default + implementation does nothing. + + \a event is the mouse event that caused the selection. \a additive indicates, whether the user + was holding the multi-select-modifier while performing the selection (see \ref + QCustomPlot::setMultiSelectModifier). if \a additive is true, the selection state must be toggled + (i.e. become selected when unselected and unselected when selected). + + Every selectEvent is preceded by a call to \ref selectTest, which has returned positively (i.e. + returned a value greater than 0 and less than the selection tolerance of the parent QCustomPlot). + The \a details data you output from \ref selectTest is fed back via \a details here. You may + use it to transport any kind of information from the selectTest to the possibly subsequent + selectEvent. Usually \a details is used to transfer which part was clicked, if it is a layerable + that has multiple individually selectable parts (like QCPAxis). This way selectEvent doesn't need + to do the calculation again to find out which part was actually clicked. + + \a selectionStateChanged is an output parameter. If the pointer is non-null, this function must + set the value either to true or false, depending on whether the selection state of this layerable + was actually changed. For layerables that only are selectable as a whole and not in parts, this + is simple: if \a additive is true, \a selectionStateChanged must also be set to true, because the + selection toggles. If \a additive is false, \a selectionStateChanged is only set to true, if the + layerable was previously unselected and now is switched to the selected state. + + \see selectTest, deselectEvent +*/ +void QCPLayerable::selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) +{ + Q_UNUSED(event) + Q_UNUSED(additive) + Q_UNUSED(details) + Q_UNUSED(selectionStateChanged) +} + +/*! \internal + + This event is called when the layerable shall be deselected, either as consequence of a user + interaction or a call to \ref QCustomPlot::deselectAll. Subclasses should react to it by + unsetting their selection appropriately. + + just as in \ref selectEvent, the output parameter \a selectionStateChanged (if non-null), must + return true or false when the selection state of this layerable has changed or not changed, + respectively. + + \see selectTest, selectEvent +*/ +void QCPLayerable::deselectEvent(bool *selectionStateChanged) +{ + Q_UNUSED(selectionStateChanged) +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPRange +//////////////////////////////////////////////////////////////////////////////////////////////////// +/*! \class QCPRange + \brief Represents the range an axis is encompassing. + + contains a \a lower and \a upper double value and provides convenience input, output and + modification functions. + + \see QCPAxis::setRange +*/ + +/*! + Minimum range size (\a upper - \a lower) the range changing functions will accept. Smaller + intervals would cause errors due to the 11-bit exponent of double precision numbers, + corresponding to a minimum magnitude of roughly 1e-308. + \see validRange, maxRange +*/ +const double QCPRange::minRange = 1e-280; + +/*! + Maximum values (negative and positive) the range will accept in range-changing functions. + Larger absolute values would cause errors due to the 11-bit exponent of double precision numbers, + corresponding to a maximum magnitude of roughly 1e308. + Since the number of planck-volumes in the entire visible universe is only ~1e183, this should + be enough. + \see validRange, minRange +*/ +const double QCPRange::maxRange = 1e250; + +/*! + Constructs a range with \a lower and \a upper set to zero. +*/ +QCPRange::QCPRange() : + lower(0), + upper(0) +{ +} + +/*! \overload + Constructs a range with the specified \a lower and \a upper values. +*/ +QCPRange::QCPRange(double lower, double upper) : + lower(lower), + upper(upper) +{ + normalize(); +} + +/*! + Returns the size of the range, i.e. \a upper-\a lower +*/ +double QCPRange::size() const +{ + return upper-lower; +} + +/*! + Returns the center of the range, i.e. (\a upper+\a lower)*0.5 +*/ +double QCPRange::center() const +{ + return (upper+lower)*0.5; +} + +/*! + Makes sure \a lower is numerically smaller than \a upper. If this is not the case, the values + are swapped. +*/ +void QCPRange::normalize() +{ + if (lower > upper) + qSwap(lower, upper); +} + +/*! + Expands this range such that \a otherRange is contained in the new range. It is assumed that both + this range and \a otherRange are normalized (see \ref normalize). + + If \a otherRange is already inside the current range, this function does nothing. + + \see expanded +*/ +void QCPRange::expand(const QCPRange &otherRange) +{ + if (lower > otherRange.lower) + lower = otherRange.lower; + if (upper < otherRange.upper) + upper = otherRange.upper; +} + + +/*! + Returns an expanded range that contains this and \a otherRange. It is assumed that both this + range and \a otherRange are normalized (see \ref normalize). + + \see expand +*/ +QCPRange QCPRange::expanded(const QCPRange &otherRange) const +{ + QCPRange result = *this; + result.expand(otherRange); + return result; +} + +/*! + Returns a sanitized version of the range. Sanitized means for logarithmic scales, that + the range won't span the positive and negative sign domain, i.e. contain zero. Further + \a lower will always be numerically smaller (or equal) to \a upper. + + If the original range does span positive and negative sign domains or contains zero, + the returned range will try to approximate the original range as good as possible. + If the positive interval of the original range is wider than the negative interval, the + returned range will only contain the positive interval, with lower bound set to \a rangeFac or + \a rangeFac *\a upper, whichever is closer to zero. Same procedure is used if the negative interval + is wider than the positive interval, this time by changing the \a upper bound. +*/ +QCPRange QCPRange::sanitizedForLogScale() const +{ + double rangeFac = 1e-3; + QCPRange sanitizedRange(lower, upper); + sanitizedRange.normalize(); + // can't have range spanning negative and positive values in log plot, so change range to fix it + //if (qFuzzyCompare(sanitizedRange.lower+1, 1) && !qFuzzyCompare(sanitizedRange.upper+1, 1)) + if (sanitizedRange.lower == 0.0 && sanitizedRange.upper != 0.0) + { + // case lower is 0 + if (rangeFac < sanitizedRange.upper*rangeFac) + sanitizedRange.lower = rangeFac; + else + sanitizedRange.lower = sanitizedRange.upper*rangeFac; + } //else if (!qFuzzyCompare(lower+1, 1) && qFuzzyCompare(upper+1, 1)) + else if (sanitizedRange.lower != 0.0 && sanitizedRange.upper == 0.0) + { + // case upper is 0 + if (-rangeFac > sanitizedRange.lower*rangeFac) + sanitizedRange.upper = -rangeFac; + else + sanitizedRange.upper = sanitizedRange.lower*rangeFac; + } else if (sanitizedRange.lower < 0 && sanitizedRange.upper > 0) + { + // find out whether negative or positive interval is wider to decide which sign domain will be chosen + if (-sanitizedRange.lower > sanitizedRange.upper) + { + // negative is wider, do same as in case upper is 0 + if (-rangeFac > sanitizedRange.lower*rangeFac) + sanitizedRange.upper = -rangeFac; + else + sanitizedRange.upper = sanitizedRange.lower*rangeFac; + } else + { + // positive is wider, do same as in case lower is 0 + if (rangeFac < sanitizedRange.upper*rangeFac) + sanitizedRange.lower = rangeFac; + else + sanitizedRange.lower = sanitizedRange.upper*rangeFac; + } + } + // due to normalization, case lower>0 && upper<0 should never occur, because that implies upper= lower && value <= upper; +} + +/*! + Checks, whether the specified range is within valid bounds, which are defined + as QCPRange::maxRange and QCPRange::minRange. + A valid range means: + \li range bounds within -maxRange and maxRange + \li range size above minRange + \li range size below maxRange +*/ +bool QCPRange::validRange(double lower, double upper) +{ + /* + return (lower > -maxRange && + upper < maxRange && + qAbs(lower-upper) > minRange && + (lower < -minRange || lower > minRange) && + (upper < -minRange || upper > minRange)); + */ + return (lower > -maxRange && + upper < maxRange && + qAbs(lower-upper) > minRange && + qAbs(lower-upper) < maxRange); +} + +/*! + \overload + Checks, whether the specified range is within valid bounds, which are defined + as QCPRange::maxRange and QCPRange::minRange. + A valid range means: + \li range bounds within -maxRange and maxRange + \li range size above minRange + \li range size below maxRange +*/ +bool QCPRange::validRange(const QCPRange &range) +{ + /* + return (range.lower > -maxRange && + range.upper < maxRange && + qAbs(range.lower-range.upper) > minRange && + qAbs(range.lower-range.upper) < maxRange && + (range.lower < -minRange || range.lower > minRange) && + (range.upper < -minRange || range.upper > minRange)); + */ + return (range.lower > -maxRange && + range.upper < maxRange && + qAbs(range.lower-range.upper) > minRange && + qAbs(range.lower-range.upper) < maxRange); +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPMarginGroup +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPMarginGroup + \brief A margin group allows synchronization of margin sides if working with multiple layout elements. + + QCPMarginGroup allows you to tie a margin side of two or more layout elements together, such that + they will all have the same size, based on the largest required margin in the group. + + \n + \image html QCPMarginGroup.png "Demonstration of QCPMarginGroup" + \n + + In certain situations it is desirable that margins at specific sides are synchronized across + layout elements. For example, if one QCPAxisRect is below another one in a grid layout, it will + provide a cleaner look to the user if the left and right margins of the two axis rects are of the + same size. The left axis of the top axis rect will then be at the same horizontal position as the + left axis of the lower axis rect, making them appear aligned. The same applies for the right + axes. This is what QCPMarginGroup makes possible. + + To add/remove a specific side of a layout element to/from a margin group, use the \ref + QCPLayoutElement::setMarginGroup method. To completely break apart the margin group, either call + \ref clear, or just delete the margin group. + + \section QCPMarginGroup-example Example + + First create a margin group: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpmargingroup-creation-1 + Then set this group on the layout element sides: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpmargingroup-creation-2 + Here, we've used the first two axis rects of the plot and synchronized their left margins with + each other and their right margins with each other. +*/ + +/* start documentation of inline functions */ + +/*! \fn QList QCPMarginGroup::elements(QCP::MarginSide side) const + + Returns a list of all layout elements that have their margin \a side associated with this margin + group. +*/ + +/* end documentation of inline functions */ + +/*! + Creates a new QCPMarginGroup instance in \a parentPlot. +*/ +QCPMarginGroup::QCPMarginGroup(QCustomPlot *parentPlot) : + QObject(parentPlot), + mParentPlot(parentPlot) +{ + mChildren.insert(QCP::msLeft, QList()); + mChildren.insert(QCP::msRight, QList()); + mChildren.insert(QCP::msTop, QList()); + mChildren.insert(QCP::msBottom, QList()); +} + +QCPMarginGroup::~QCPMarginGroup() +{ + clear(); +} + +/*! + Returns whether this margin group is empty. If this function returns true, no layout elements use + this margin group to synchronize margin sides. +*/ +bool QCPMarginGroup::isEmpty() const +{ + QHashIterator > it(mChildren); + while (it.hasNext()) + { + it.next(); + if (!it.value().isEmpty()) + return false; + } + return true; +} + +/*! + Clears this margin group. The synchronization of the margin sides that use this margin group is + lifted and they will use their individual margin sizes again. +*/ +void QCPMarginGroup::clear() +{ + // make all children remove themselves from this margin group: + QHashIterator > it(mChildren); + while (it.hasNext()) + { + it.next(); + const QList elements = it.value(); + for (int i=elements.size()-1; i>=0; --i) + elements.at(i)->setMarginGroup(it.key(), 0); // removes itself from mChildren via removeChild + } +} + +/*! \internal + + Returns the synchronized common margin for \a side. This is the margin value that will be used by + the layout element on the respective side, if it is part of this margin group. + + The common margin is calculated by requesting the automatic margin (\ref + QCPLayoutElement::calculateAutoMargin) of each element associated with \a side in this margin + group, and choosing the largest returned value. (QCPLayoutElement::minimumMargins is taken into + account, too.) +*/ +int QCPMarginGroup::commonMargin(QCP::MarginSide side) const +{ + // query all automatic margins of the layout elements in this margin group side and find maximum: + int result = 0; + const QList elements = mChildren.value(side); + for (int i=0; iautoMargins().testFlag(side)) + continue; + int m = qMax(elements.at(i)->calculateAutoMargin(side), QCP::getMarginValue(elements.at(i)->minimumMargins(), side)); + if (m > result) + result = m; + } + return result; +} + +/*! \internal + + Adds \a element to the internal list of child elements, for the margin \a side. + + This function does not modify the margin group property of \a element. +*/ +void QCPMarginGroup::addChild(QCP::MarginSide side, QCPLayoutElement *element) +{ + if (!mChildren[side].contains(element)) + mChildren[side].append(element); + else + qDebug() << Q_FUNC_INFO << "element is already child of this margin group side" << reinterpret_cast(element); +} + +/*! \internal + + Removes \a element from the internal list of child elements, for the margin \a side. + + This function does not modify the margin group property of \a element. +*/ +void QCPMarginGroup::removeChild(QCP::MarginSide side, QCPLayoutElement *element) +{ + if (!mChildren[side].removeOne(element)) + qDebug() << Q_FUNC_INFO << "element is not child of this margin group side" << reinterpret_cast(element); +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPLayoutElement +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPLayoutElement + \brief The abstract base class for all objects that form \ref thelayoutsystem "the layout system". + + This is an abstract base class. As such, it can't be instantiated directly, rather use one of its subclasses. + + A Layout element is a rectangular object which can be placed in layouts. It has an outer rect + (QCPLayoutElement::outerRect) and an inner rect (\ref QCPLayoutElement::rect). The difference + between outer and inner rect is called its margin. The margin can either be set to automatic or + manual (\ref setAutoMargins) on a per-side basis. If a side is set to manual, that margin can be + set explicitly with \ref setMargins and will stay fixed at that value. If it's set to automatic, + the layout element subclass will control the value itself (via \ref calculateAutoMargin). + + Layout elements can be placed in layouts (base class QCPLayout) like QCPLayoutGrid. The top level + layout is reachable via \ref QCustomPlot::plotLayout, and is a \ref QCPLayoutGrid. Since \ref + QCPLayout itself derives from \ref QCPLayoutElement, layouts can be nested. + + Thus in QCustomPlot one can divide layout elements into two categories: The ones that are + invisible by themselves, because they don't draw anything. Their only purpose is to manage the + position and size of other layout elements. This category of layout elements usually use + QCPLayout as base class. Then there is the category of layout elements which actually draw + something. For example, QCPAxisRect, QCPLegend and QCPPlotTitle are of this category. This does + not necessarily mean that the latter category can't have child layout elements. QCPLegend for + instance, actually derives from QCPLayoutGrid and the individual legend items are child layout + elements in the grid layout. +*/ + +/* start documentation of inline functions */ + +/*! \fn QCPLayout *QCPLayoutElement::layout() const + + Returns the parent layout of this layout element. +*/ + +/*! \fn QRect QCPLayoutElement::rect() const + + Returns the inner rect of this layout element. The inner rect is the outer rect (\ref + setOuterRect) shrinked by the margins (\ref setMargins, \ref setAutoMargins). + + In some cases, the area between outer and inner rect is left blank. In other cases the margin + area is used to display peripheral graphics while the main content is in the inner rect. This is + where automatic margin calculation becomes interesting because it allows the layout element to + adapt the margins to the peripheral graphics it wants to draw. For example, \ref QCPAxisRect + draws the axis labels and tick labels in the margin area, thus needs to adjust the margins (if + \ref setAutoMargins is enabled) according to the space required by the labels of the axes. +*/ + +/*! \fn virtual void QCPLayoutElement::mousePressEvent(QMouseEvent *event) + + This event is called, if the mouse was pressed while being inside the outer rect of this layout + element. +*/ + +/*! \fn virtual void QCPLayoutElement::mouseMoveEvent(QMouseEvent *event) + + This event is called, if the mouse is moved inside the outer rect of this layout element. +*/ + +/*! \fn virtual void QCPLayoutElement::mouseReleaseEvent(QMouseEvent *event) + + This event is called, if the mouse was previously pressed inside the outer rect of this layout + element and is now released. +*/ + +/*! \fn virtual void QCPLayoutElement::mouseDoubleClickEvent(QMouseEvent *event) + + This event is called, if the mouse is double-clicked inside the outer rect of this layout + element. +*/ + +/*! \fn virtual void QCPLayoutElement::wheelEvent(QWheelEvent *event) + + This event is called, if the mouse wheel is scrolled while the cursor is inside the rect of this + layout element. +*/ + +/* end documentation of inline functions */ + +/*! + Creates an instance of QCPLayoutElement and sets default values. +*/ +QCPLayoutElement::QCPLayoutElement(QCustomPlot *parentPlot) : + QCPLayerable(parentPlot), // parenthood is changed as soon as layout element gets inserted into a layout (except for top level layout) + mParentLayout(0), + mMinimumSize(), + mMaximumSize(QWIDGETSIZE_MAX, QWIDGETSIZE_MAX), + mRect(0, 0, 0, 0), + mOuterRect(0, 0, 0, 0), + mMargins(0, 0, 0, 0), + mMinimumMargins(0, 0, 0, 0), + mAutoMargins(QCP::msAll) +{ +} + +QCPLayoutElement::~QCPLayoutElement() +{ + setMarginGroup(QCP::msAll, 0); // unregister at margin groups, if there are any + // unregister at layout: + if (qobject_cast(mParentLayout)) // the qobject_cast is just a safeguard in case the layout forgets to call clear() in its dtor and this dtor is called by QObject dtor + mParentLayout->take(this); +} + +/*! + Sets the outer rect of this layout element. If the layout element is inside a layout, the layout + sets the position and size of this layout element using this function. + + Calling this function externally has no effect, since the layout will overwrite any changes to + the outer rect upon the next replot. + + The layout element will adapt its inner \ref rect by applying the margins inward to the outer rect. + + \see rect +*/ +void QCPLayoutElement::setOuterRect(const QRect &rect) +{ + if (mOuterRect != rect) + { + mOuterRect = rect; + mRect = mOuterRect.adjusted(mMargins.left(), mMargins.top(), -mMargins.right(), -mMargins.bottom()); + } +} + +/*! + Sets the margins of this layout element. If \ref setAutoMargins is disabled for some or all + sides, this function is used to manually set the margin on those sides. Sides that are still set + to be handled automatically are ignored and may have any value in \a margins. + + The margin is the distance between the outer rect (controlled by the parent layout via \ref + setOuterRect) and the inner \ref rect (which usually contains the main content of this layout + element). + + \see setAutoMargins +*/ +void QCPLayoutElement::setMargins(const QMargins &margins) +{ + if (mMargins != margins) + { + mMargins = margins; + mRect = mOuterRect.adjusted(mMargins.left(), mMargins.top(), -mMargins.right(), -mMargins.bottom()); + } +} + +/*! + If \ref setAutoMargins is enabled on some or all margins, this function is used to provide + minimum values for those margins. + + The minimum values are not enforced on margin sides that were set to be under manual control via + \ref setAutoMargins. + + \see setAutoMargins +*/ +void QCPLayoutElement::setMinimumMargins(const QMargins &margins) +{ + if (mMinimumMargins != margins) + { + mMinimumMargins = margins; + } +} + +/*! + Sets on which sides the margin shall be calculated automatically. If a side is calculated + automatically, a minimum margin value may be provided with \ref setMinimumMargins. If a side is + set to be controlled manually, the value may be specified with \ref setMargins. + + Margin sides that are under automatic control may participate in a \ref QCPMarginGroup (see \ref + setMarginGroup), to synchronize (align) it with other layout elements in the plot. + + \see setMinimumMargins, setMargins +*/ +void QCPLayoutElement::setAutoMargins(QCP::MarginSides sides) +{ + mAutoMargins = sides; +} + +/*! + Sets the minimum size for the inner \ref rect of this layout element. A parent layout tries to + respect the \a size here by changing row/column sizes in the layout accordingly. + + If the parent layout size is not sufficient to satisfy all minimum size constraints of its child + layout elements, the layout may set a size that is actually smaller than \a size. QCustomPlot + propagates the layout's size constraints to the outside by setting its own minimum QWidget size + accordingly, so violations of \a size should be exceptions. +*/ +void QCPLayoutElement::setMinimumSize(const QSize &size) +{ + if (mMinimumSize != size) + { + mMinimumSize = size; + if (mParentLayout) + mParentLayout->sizeConstraintsChanged(); + } +} + +/*! \overload + + Sets the minimum size for the inner \ref rect of this layout element. +*/ +void QCPLayoutElement::setMinimumSize(int width, int height) +{ + setMinimumSize(QSize(width, height)); +} + +/*! + Sets the maximum size for the inner \ref rect of this layout element. A parent layout tries to + respect the \a size here by changing row/column sizes in the layout accordingly. +*/ +void QCPLayoutElement::setMaximumSize(const QSize &size) +{ + if (mMaximumSize != size) + { + mMaximumSize = size; + if (mParentLayout) + mParentLayout->sizeConstraintsChanged(); + } +} + +/*! \overload + + Sets the maximum size for the inner \ref rect of this layout element. +*/ +void QCPLayoutElement::setMaximumSize(int width, int height) +{ + setMaximumSize(QSize(width, height)); +} + +/*! + Sets the margin \a group of the specified margin \a sides. + + Margin groups allow synchronizing specified margins across layout elements, see the documentation + of \ref QCPMarginGroup. + + To unset the margin group of \a sides, set \a group to 0. + + Note that margin groups only work for margin sides that are set to automatic (\ref + setAutoMargins). +*/ +void QCPLayoutElement::setMarginGroup(QCP::MarginSides sides, QCPMarginGroup *group) +{ + QVector sideVector; + if (sides.testFlag(QCP::msLeft)) sideVector.append(QCP::msLeft); + if (sides.testFlag(QCP::msRight)) sideVector.append(QCP::msRight); + if (sides.testFlag(QCP::msTop)) sideVector.append(QCP::msTop); + if (sides.testFlag(QCP::msBottom)) sideVector.append(QCP::msBottom); + + for (int i=0; iremoveChild(side, this); + + if (!group) // if setting to 0, remove hash entry. Else set hash entry to new group and register there + { + mMarginGroups.remove(side); + } else // setting to a new group + { + mMarginGroups[side] = group; + group->addChild(side, this); + } + } + } +} + +/*! + Updates the layout element and sub-elements. This function is automatically called before every + replot by the parent layout element. It is called multiple times, once for every \ref + UpdatePhase. The phases are run through in the order of the enum values. For details about what + happens at the different phases, see the documentation of \ref UpdatePhase. + + Layout elements that have child elements should call the \ref update method of their child + elements, and pass the current \a phase unchanged. + + The default implementation executes the automatic margin mechanism in the \ref upMargins phase. + Subclasses should make sure to call the base class implementation. +*/ +void QCPLayoutElement::update(UpdatePhase phase) +{ + if (phase == upMargins) + { + if (mAutoMargins != QCP::msNone) + { + // set the margins of this layout element according to automatic margin calculation, either directly or via a margin group: + QMargins newMargins = mMargins; + QList allMarginSides = QList() << QCP::msLeft << QCP::msRight << QCP::msTop << QCP::msBottom; + foreach (QCP::MarginSide side, allMarginSides) + { + if (mAutoMargins.testFlag(side)) // this side's margin shall be calculated automatically + { + if (mMarginGroups.contains(side)) + QCP::setMarginValue(newMargins, side, mMarginGroups[side]->commonMargin(side)); // this side is part of a margin group, so get the margin value from that group + else + QCP::setMarginValue(newMargins, side, calculateAutoMargin(side)); // this side is not part of a group, so calculate the value directly + // apply minimum margin restrictions: + if (QCP::getMarginValue(newMargins, side) < QCP::getMarginValue(mMinimumMargins, side)) + QCP::setMarginValue(newMargins, side, QCP::getMarginValue(mMinimumMargins, side)); + } + } + setMargins(newMargins); + } + } +} + +/*! + Returns the minimum size this layout element (the inner \ref rect) may be compressed to. + + if a minimum size (\ref setMinimumSize) was not set manually, parent layouts consult this + function to determine the minimum allowed size of this layout element. (A manual minimum size is + considered set if it is non-zero.) +*/ +QSize QCPLayoutElement::minimumSizeHint() const +{ + return mMinimumSize; +} + +/*! + Returns the maximum size this layout element (the inner \ref rect) may be expanded to. + + if a maximum size (\ref setMaximumSize) was not set manually, parent layouts consult this + function to determine the maximum allowed size of this layout element. (A manual maximum size is + considered set if it is smaller than Qt's QWIDGETSIZE_MAX.) +*/ +QSize QCPLayoutElement::maximumSizeHint() const +{ + return mMaximumSize; +} + +/*! + Returns a list of all child elements in this layout element. If \a recursive is true, all + sub-child elements are included in the list, too. + + \warning There may be entries with value 0 in the returned list. (For example, QCPLayoutGrid may have + empty cells which yield 0 at the respective index.) +*/ +QList QCPLayoutElement::elements(bool recursive) const +{ + Q_UNUSED(recursive) + return QList(); +} + +/*! + Layout elements are sensitive to events inside their outer rect. If \a pos is within the outer + rect, this method returns a value corresponding to 0.99 times the parent plot's selection + tolerance. However, layout elements are not selectable by default. So if \a onlySelectable is + true, -1.0 is returned. + + See \ref QCPLayerable::selectTest for a general explanation of this virtual method. + + QCPLayoutElement subclasses may reimplement this method to provide more specific selection test + behaviour. +*/ +double QCPLayoutElement::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + + if (onlySelectable) + return -1; + + if (QRectF(mOuterRect).contains(pos)) + { + if (mParentPlot) + return mParentPlot->selectionTolerance()*0.99; + else + { + qDebug() << Q_FUNC_INFO << "parent plot not defined"; + return -1; + } + } else + return -1; +} + +/*! \internal + + propagates the parent plot initialization to all child elements, by calling \ref + QCPLayerable::initializeParentPlot on them. +*/ +void QCPLayoutElement::parentPlotInitialized(QCustomPlot *parentPlot) +{ + foreach (QCPLayoutElement* el, elements(false)) + { + if (!el->parentPlot()) + el->initializeParentPlot(parentPlot); + } +} + +/*! \internal + + Returns the margin size for this \a side. It is used if automatic margins is enabled for this \a + side (see \ref setAutoMargins). If a minimum margin was set with \ref setMinimumMargins, the + returned value will not be smaller than the specified minimum margin. + + The default implementation just returns the respective manual margin (\ref setMargins) or the + minimum margin, whichever is larger. +*/ +int QCPLayoutElement::calculateAutoMargin(QCP::MarginSide side) +{ + return qMax(QCP::getMarginValue(mMargins, side), QCP::getMarginValue(mMinimumMargins, side)); +} + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPLayout +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPLayout + \brief The abstract base class for layouts + + This is an abstract base class for layout elements whose main purpose is to define the position + and size of other child layout elements. In most cases, layouts don't draw anything themselves + (but there are exceptions to this, e.g. QCPLegend). + + QCPLayout derives from QCPLayoutElement, and thus can itself be nested in other layouts. + + QCPLayout introduces a common interface for accessing and manipulating the child elements. Those + functions are most notably \ref elementCount, \ref elementAt, \ref takeAt, \ref take, \ref + simplify, \ref removeAt, \ref remove and \ref clear. Individual subclasses may add more functions + to this interface which are more specialized to the form of the layout. For example, \ref + QCPLayoutGrid adds functions that take row and column indices to access cells of the layout grid + more conveniently. + + Since this is an abstract base class, you can't instantiate it directly. Rather use one of its + subclasses like QCPLayoutGrid or QCPLayoutInset. + + For a general introduction to the layout system, see the dedicated documentation page \ref + thelayoutsystem "The Layout System". +*/ + +/* start documentation of pure virtual functions */ + +/*! \fn virtual int QCPLayout::elementCount() const = 0 + + Returns the number of elements/cells in the layout. + + \see elements, elementAt +*/ + +/*! \fn virtual QCPLayoutElement* QCPLayout::elementAt(int index) const = 0 + + Returns the element in the cell with the given \a index. If \a index is invalid, returns 0. + + Note that even if \a index is valid, the respective cell may be empty in some layouts (e.g. + QCPLayoutGrid), so this function may return 0 in those cases. You may use this function to check + whether a cell is empty or not. + + \see elements, elementCount, takeAt +*/ + +/*! \fn virtual QCPLayoutElement* QCPLayout::takeAt(int index) = 0 + + Removes the element with the given \a index from the layout and returns it. + + If the \a index is invalid or the cell with that index is empty, returns 0. + + Note that some layouts don't remove the respective cell right away but leave an empty cell after + successful removal of the layout element. To collapse empty cells, use \ref simplify. + + \see elementAt, take +*/ + +/*! \fn virtual bool QCPLayout::take(QCPLayoutElement* element) = 0 + + Removes the specified \a element from the layout and returns true on success. + + If the \a element isn't in this layout, returns false. + + Note that some layouts don't remove the respective cell right away but leave an empty cell after + successful removal of the layout element. To collapse empty cells, use \ref simplify. + + \see takeAt +*/ + +/* end documentation of pure virtual functions */ + +/*! + Creates an instance of QCPLayout and sets default values. Note that since QCPLayout + is an abstract base class, it can't be instantiated directly. +*/ +QCPLayout::QCPLayout() +{ +} + +/*! + First calls the QCPLayoutElement::update base class implementation to update the margins on this + layout. + + Then calls \ref updateLayout which subclasses reimplement to reposition and resize their cells. + + Finally, \ref update is called on all child elements. +*/ +void QCPLayout::update(UpdatePhase phase) +{ + QCPLayoutElement::update(phase); + + // set child element rects according to layout: + if (phase == upLayout) + updateLayout(); + + // propagate update call to child elements: + const int elCount = elementCount(); + for (int i=0; iupdate(phase); + } +} + +/* inherits documentation from base class */ +QList QCPLayout::elements(bool recursive) const +{ + const int c = elementCount(); + QList result; +#if QT_VERSION >= QT_VERSION_CHECK(4, 7, 0) + result.reserve(c); +#endif + for (int i=0; ielements(recursive); + } + } + return result; +} + +/*! + Simplifies the layout by collapsing empty cells. The exact behavior depends on subclasses, the + default implementation does nothing. + + Not all layouts need simplification. For example, QCPLayoutInset doesn't use explicit + simplification while QCPLayoutGrid does. +*/ +void QCPLayout::simplify() +{ +} + +/*! + Removes and deletes the element at the provided \a index. Returns true on success. If \a index is + invalid or points to an empty cell, returns false. + + This function internally uses \ref takeAt to remove the element from the layout and then deletes + the returned element. Note that some layouts don't remove the respective cell right away but leave an + empty cell after successful removal of the layout element. To collapse empty cells, use \ref + simplify. + + \see remove, takeAt +*/ +bool QCPLayout::removeAt(int index) +{ + if (QCPLayoutElement *el = takeAt(index)) + { + delete el; + return true; + } else + return false; +} + +/*! + Removes and deletes the provided \a element. Returns true on success. If \a element is not in the + layout, returns false. + + This function internally uses \ref takeAt to remove the element from the layout and then deletes + the element. Note that some layouts don't remove the respective cell right away but leave an + empty cell after successful removal of the layout element. To collapse empty cells, use \ref + simplify. + + \see removeAt, take +*/ +bool QCPLayout::remove(QCPLayoutElement *element) +{ + if (take(element)) + { + delete element; + return true; + } else + return false; +} + +/*! + Removes and deletes all layout elements in this layout. Finally calls \ref simplify to make sure + all empty cells are collapsed. + + \see remove, removeAt +*/ +void QCPLayout::clear() +{ + for (int i=elementCount()-1; i>=0; --i) + { + if (elementAt(i)) + removeAt(i); + } + simplify(); +} + +/*! + Subclasses call this method to report changed (minimum/maximum) size constraints. + + If the parent of this layout is again a QCPLayout, forwards the call to the parent's \ref + sizeConstraintsChanged. If the parent is a QWidget (i.e. is the \ref QCustomPlot::plotLayout of + QCustomPlot), calls QWidget::updateGeometry, so if the QCustomPlot widget is inside a Qt QLayout, + it may update itself and resize cells accordingly. +*/ +void QCPLayout::sizeConstraintsChanged() const +{ + if (QWidget *w = qobject_cast(parent())) + w->updateGeometry(); + else if (QCPLayout *l = qobject_cast(parent())) + l->sizeConstraintsChanged(); +} + +/*! \internal + + Subclasses reimplement this method to update the position and sizes of the child elements/cells + via calling their \ref QCPLayoutElement::setOuterRect. The default implementation does nothing. + + The geometry used as a reference is the inner \ref rect of this layout. Child elements should stay + within that rect. + + \ref getSectionSizes may help with the reimplementation of this function. + + \see update +*/ +void QCPLayout::updateLayout() +{ +} + + +/*! \internal + + Associates \a el with this layout. This is done by setting the \ref QCPLayoutElement::layout, the + \ref QCPLayerable::parentLayerable and the QObject parent to this layout. + + Further, if \a el didn't previously have a parent plot, calls \ref + QCPLayerable::initializeParentPlot on \a el to set the paret plot. + + This method is used by subclass specific methods that add elements to the layout. Note that this + method only changes properties in \a el. The removal from the old layout and the insertion into + the new layout must be done additionally. +*/ +void QCPLayout::adoptElement(QCPLayoutElement *el) +{ + if (el) + { + el->mParentLayout = this; + el->setParentLayerable(this); + el->setParent(this); + if (!el->parentPlot()) + el->initializeParentPlot(mParentPlot); + } else + qDebug() << Q_FUNC_INFO << "Null element passed"; +} + +/*! \internal + + Disassociates \a el from this layout. This is done by setting the \ref QCPLayoutElement::layout + and the \ref QCPLayerable::parentLayerable to zero. The QObject parent is set to the parent + QCustomPlot. + + This method is used by subclass specific methods that remove elements from the layout (e.g. \ref + take or \ref takeAt). Note that this method only changes properties in \a el. The removal from + the old layout must be done additionally. +*/ +void QCPLayout::releaseElement(QCPLayoutElement *el) +{ + if (el) + { + el->mParentLayout = 0; + el->setParentLayerable(0); + el->setParent(mParentPlot); + // Note: Don't initializeParentPlot(0) here, because layout element will stay in same parent plot + } else + qDebug() << Q_FUNC_INFO << "Null element passed"; +} + +/*! \internal + + This is a helper function for the implementation of \ref updateLayout in subclasses. + + It calculates the sizes of one-dimensional sections with provided constraints on maximum section + sizes, minimum section sizes, relative stretch factors and the final total size of all sections. + + The QVector entries refer to the sections. Thus all QVectors must have the same size. + + \a maxSizes gives the maximum allowed size of each section. If there shall be no maximum size + imposed, set all vector values to Qt's QWIDGETSIZE_MAX. + + \a minSizes gives the minimum allowed size of each section. If there shall be no minimum size + imposed, set all vector values to zero. If the \a minSizes entries add up to a value greater than + \a totalSize, sections will be scaled smaller than the proposed minimum sizes. (In other words, + not exceeding the allowed total size is taken to be more important than not going below minimum + section sizes.) + + \a stretchFactors give the relative proportions of the sections to each other. If all sections + shall be scaled equally, set all values equal. If the first section shall be double the size of + each individual other section, set the first number of \a stretchFactors to double the value of + the other individual values (e.g. {2, 1, 1, 1}). + + \a totalSize is the value that the final section sizes will add up to. Due to rounding, the + actual sum may differ slightly. If you want the section sizes to sum up to exactly that value, + you could distribute the remaining difference on the sections. + + The return value is a QVector containing the section sizes. +*/ +QVector QCPLayout::getSectionSizes(QVector maxSizes, QVector minSizes, QVector stretchFactors, int totalSize) const +{ + if (maxSizes.size() != minSizes.size() || minSizes.size() != stretchFactors.size()) + { + qDebug() << Q_FUNC_INFO << "Passed vector sizes aren't equal:" << maxSizes << minSizes << stretchFactors; + return QVector(); + } + if (stretchFactors.isEmpty()) + return QVector(); + int sectionCount = stretchFactors.size(); + QVector sectionSizes(sectionCount); + // if provided total size is forced smaller than total minimum size, ignore minimum sizes (squeeze sections): + int minSizeSum = 0; + for (int i=0; i minimumLockedSections; + QList unfinishedSections; + for (int i=0; i result(sectionCount); + for (int i=0; i= 0 && row < mElements.size()) + { + if (column >= 0 && column < mElements.first().size()) + { + if (QCPLayoutElement *result = mElements.at(row).at(column)) + return result; + else + qDebug() << Q_FUNC_INFO << "Requested cell is empty. Row:" << row << "Column:" << column; + } else + qDebug() << Q_FUNC_INFO << "Invalid column. Row:" << row << "Column:" << column; + } else + qDebug() << Q_FUNC_INFO << "Invalid row. Row:" << row << "Column:" << column; + return 0; +} + +/*! + Returns the number of rows in the layout. + + \see columnCount +*/ +int QCPLayoutGrid::rowCount() const +{ + return mElements.size(); +} + +/*! + Returns the number of columns in the layout. + + \see rowCount +*/ +int QCPLayoutGrid::columnCount() const +{ + if (mElements.size() > 0) + return mElements.first().size(); + else + return 0; +} + +/*! + Adds the \a element to cell with \a row and \a column. If \a element is already in a layout, it + is first removed from there. If \a row or \a column don't exist yet, the layout is expanded + accordingly. + + Returns true if the element was added successfully, i.e. if the cell at \a row and \a column + didn't already have an element. + + \see element, hasElement, take, remove +*/ +bool QCPLayoutGrid::addElement(int row, int column, QCPLayoutElement *element) +{ + if (element) + { + if (!hasElement(row, column)) + { + if (element->layout()) // remove from old layout first + element->layout()->take(element); + expandTo(row+1, column+1); + mElements[row][column] = element; + adoptElement(element); + return true; + } else + qDebug() << Q_FUNC_INFO << "There is already an element in the specified row/column:" << row << column; + } else + qDebug() << Q_FUNC_INFO << "Can't add null element to row/column:" << row << column; + return false; +} + +/*! + Returns whether the cell at \a row and \a column exists and contains a valid element, i.e. isn't + empty. + + \see element +*/ +bool QCPLayoutGrid::hasElement(int row, int column) +{ + if (row >= 0 && row < rowCount() && column >= 0 && column < columnCount()) + return mElements.at(row).at(column); + else + return false; +} + +/*! + Sets the stretch \a factor of \a column. + + Stretch factors control the relative sizes of rows and columns. Cells will not be resized beyond + their minimum and maximum widths/heights (\ref QCPLayoutElement::setMinimumSize, \ref + QCPLayoutElement::setMaximumSize), regardless of the stretch factor. + + The default stretch factor of newly created rows/columns is 1. + + \see setColumnStretchFactors, setRowStretchFactor +*/ +void QCPLayoutGrid::setColumnStretchFactor(int column, double factor) +{ + if (column >= 0 && column < columnCount()) + { + if (factor > 0) + mColumnStretchFactors[column] = factor; + else + qDebug() << Q_FUNC_INFO << "Invalid stretch factor, must be positive:" << factor; + } else + qDebug() << Q_FUNC_INFO << "Invalid column:" << column; +} + +/*! + Sets the stretch \a factors of all columns. \a factors must have the size \ref columnCount. + + Stretch factors control the relative sizes of rows and columns. Cells will not be resized beyond + their minimum and maximum widths/heights (\ref QCPLayoutElement::setMinimumSize, \ref + QCPLayoutElement::setMaximumSize), regardless of the stretch factor. + + The default stretch factor of newly created rows/columns is 1. + + \see setColumnStretchFactor, setRowStretchFactors +*/ +void QCPLayoutGrid::setColumnStretchFactors(const QList &factors) +{ + if (factors.size() == mColumnStretchFactors.size()) + { + mColumnStretchFactors = factors; + for (int i=0; i= 0 && row < rowCount()) + { + if (factor > 0) + mRowStretchFactors[row] = factor; + else + qDebug() << Q_FUNC_INFO << "Invalid stretch factor, must be positive:" << factor; + } else + qDebug() << Q_FUNC_INFO << "Invalid row:" << row; +} + +/*! + Sets the stretch \a factors of all rows. \a factors must have the size \ref rowCount. + + Stretch factors control the relative sizes of rows and columns. Cells will not be resized beyond + their minimum and maximum widths/heights (\ref QCPLayoutElement::setMinimumSize, \ref + QCPLayoutElement::setMaximumSize), regardless of the stretch factor. + + The default stretch factor of newly created rows/columns is 1. + + \see setRowStretchFactor, setColumnStretchFactors +*/ +void QCPLayoutGrid::setRowStretchFactors(const QList &factors) +{ + if (factors.size() == mRowStretchFactors.size()) + { + mRowStretchFactors = factors; + for (int i=0; i()); + mRowStretchFactors.append(1); + } + // go through rows and expand columns as necessary: + int newColCount = qMax(columnCount(), newColumnCount); + for (int i=0; i rowCount()) + newIndex = rowCount(); + + mRowStretchFactors.insert(newIndex, 1); + QList newRow; + for (int col=0; col columnCount()) + newIndex = columnCount(); + + mColumnStretchFactors.insert(newIndex, 1); + for (int row=0; row minColWidths, minRowHeights, maxColWidths, maxRowHeights; + getMinimumRowColSizes(&minColWidths, &minRowHeights); + getMaximumRowColSizes(&maxColWidths, &maxRowHeights); + + int totalRowSpacing = (rowCount()-1) * mRowSpacing; + int totalColSpacing = (columnCount()-1) * mColumnSpacing; + QVector colWidths = getSectionSizes(maxColWidths, minColWidths, mColumnStretchFactors.toVector(), mRect.width()-totalColSpacing); + QVector rowHeights = getSectionSizes(maxRowHeights, minRowHeights, mRowStretchFactors.toVector(), mRect.height()-totalRowSpacing); + + // go through cells and set rects accordingly: + int yOffset = mRect.top(); + for (int row=0; row 0) + yOffset += rowHeights.at(row-1)+mRowSpacing; + int xOffset = mRect.left(); + for (int col=0; col 0) + xOffset += colWidths.at(col-1)+mColumnSpacing; + if (mElements.at(row).at(col)) + mElements.at(row).at(col)->setOuterRect(QRect(xOffset, yOffset, colWidths.at(col), rowHeights.at(row))); + } + } +} + +/* inherits documentation from base class */ +int QCPLayoutGrid::elementCount() const +{ + return rowCount()*columnCount(); +} + +/* inherits documentation from base class */ +QCPLayoutElement *QCPLayoutGrid::elementAt(int index) const +{ + if (index >= 0 && index < elementCount()) + return mElements.at(index / columnCount()).at(index % columnCount()); + else + return 0; +} + +/* inherits documentation from base class */ +QCPLayoutElement *QCPLayoutGrid::takeAt(int index) +{ + if (QCPLayoutElement *el = elementAt(index)) + { + releaseElement(el); + mElements[index / columnCount()][index % columnCount()] = 0; + return el; + } else + { + qDebug() << Q_FUNC_INFO << "Attempt to take invalid index:" << index; + return 0; + } +} + +/* inherits documentation from base class */ +bool QCPLayoutGrid::take(QCPLayoutElement *element) +{ + if (element) + { + for (int i=0; i QCPLayoutGrid::elements(bool recursive) const +{ + QList result; + int colC = columnCount(); + int rowC = rowCount(); +#if QT_VERSION >= QT_VERSION_CHECK(4, 7, 0) + result.reserve(colC*rowC); +#endif + for (int row=0; rowelements(recursive); + } + } + return result; +} + +/*! + Simplifies the layout by collapsing rows and columns which only contain empty cells. +*/ +void QCPLayoutGrid::simplify() +{ + // remove rows with only empty cells: + for (int row=rowCount()-1; row>=0; --row) + { + bool hasElements = false; + for (int col=0; col=0; --col) + { + bool hasElements = false; + for (int row=0; row minColWidths, minRowHeights; + getMinimumRowColSizes(&minColWidths, &minRowHeights); + QSize result(0, 0); + for (int i=0; i maxColWidths, maxRowHeights; + getMaximumRowColSizes(&maxColWidths, &maxRowHeights); + + QSize result(0, 0); + for (int i=0; i *minColWidths, QVector *minRowHeights) const +{ + *minColWidths = QVector(columnCount(), 0); + *minRowHeights = QVector(rowCount(), 0); + for (int row=0; rowminimumSizeHint(); + QSize min = mElements.at(row).at(col)->minimumSize(); + QSize final(min.width() > 0 ? min.width() : minHint.width(), min.height() > 0 ? min.height() : minHint.height()); + if (minColWidths->at(col) < final.width()) + (*minColWidths)[col] = final.width(); + if (minRowHeights->at(row) < final.height()) + (*minRowHeights)[row] = final.height(); + } + } + } +} + +/*! \internal + + Places the maximum column widths and row heights into \a maxColWidths and \a maxRowHeights + respectively. + + The maximum height of a row is the smallest maximum height of any element in that row. The + maximum width of a column is the smallest maximum width of any element in that column. + + This is a helper function for \ref updateLayout. + + \see getMinimumRowColSizes +*/ +void QCPLayoutGrid::getMaximumRowColSizes(QVector *maxColWidths, QVector *maxRowHeights) const +{ + *maxColWidths = QVector(columnCount(), QWIDGETSIZE_MAX); + *maxRowHeights = QVector(rowCount(), QWIDGETSIZE_MAX); + for (int row=0; rowmaximumSizeHint(); + QSize max = mElements.at(row).at(col)->maximumSize(); + QSize final(max.width() < QWIDGETSIZE_MAX ? max.width() : maxHint.width(), max.height() < QWIDGETSIZE_MAX ? max.height() : maxHint.height()); + if (maxColWidths->at(col) > final.width()) + (*maxColWidths)[col] = final.width(); + if (maxRowHeights->at(row) > final.height()) + (*maxRowHeights)[row] = final.height(); + } + } + } +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPLayoutInset +//////////////////////////////////////////////////////////////////////////////////////////////////// +/*! \class QCPLayoutInset + \brief A layout that places child elements aligned to the border or arbitrarily positioned + + Elements are placed either aligned to the border or at arbitrary position in the area of the + layout. Which placement applies is controlled with the \ref InsetPlacement (\ref + setInsetPlacement). + + Elements are added via \ref addElement(QCPLayoutElement *element, Qt::Alignment alignment) or + addElement(QCPLayoutElement *element, const QRectF &rect). If the first method is used, the inset + placement will default to \ref ipBorderAligned and the element will be aligned according to the + \a alignment parameter. The second method defaults to \ref ipFree and allows placing elements at + arbitrary position and size, defined by \a rect. + + The alignment or rect can be set via \ref setInsetAlignment or \ref setInsetRect, respectively. + + This is the layout that every QCPAxisRect has as \ref QCPAxisRect::insetLayout. +*/ + +/* start documentation of inline functions */ + +/*! \fn virtual void QCPLayoutInset::simplify() + + The QCPInsetLayout does not need simplification since it can never have empty cells due to its + linear index structure. This method does nothing. +*/ + +/* end documentation of inline functions */ + +/*! + Creates an instance of QCPLayoutInset and sets default values. +*/ +QCPLayoutInset::QCPLayoutInset() +{ +} + +QCPLayoutInset::~QCPLayoutInset() +{ + // clear all child layout elements. This is important because only the specific layouts know how + // to handle removing elements (clear calls virtual removeAt method to do that). + clear(); +} + +/*! + Returns the placement type of the element with the specified \a index. +*/ +QCPLayoutInset::InsetPlacement QCPLayoutInset::insetPlacement(int index) const +{ + if (elementAt(index)) + return mInsetPlacement.at(index); + else + { + qDebug() << Q_FUNC_INFO << "Invalid element index:" << index; + return ipFree; + } +} + +/*! + Returns the alignment of the element with the specified \a index. The alignment only has a + meaning, if the inset placement (\ref setInsetPlacement) is \ref ipBorderAligned. +*/ +Qt::Alignment QCPLayoutInset::insetAlignment(int index) const +{ + if (elementAt(index)) + return mInsetAlignment.at(index); + else + { + qDebug() << Q_FUNC_INFO << "Invalid element index:" << index; + return 0; + } +} + +/*! + Returns the rect of the element with the specified \a index. The rect only has a + meaning, if the inset placement (\ref setInsetPlacement) is \ref ipFree. +*/ +QRectF QCPLayoutInset::insetRect(int index) const +{ + if (elementAt(index)) + return mInsetRect.at(index); + else + { + qDebug() << Q_FUNC_INFO << "Invalid element index:" << index; + return QRectF(); + } +} + +/*! + Sets the inset placement type of the element with the specified \a index to \a placement. + + \see InsetPlacement +*/ +void QCPLayoutInset::setInsetPlacement(int index, QCPLayoutInset::InsetPlacement placement) +{ + if (elementAt(index)) + mInsetPlacement[index] = placement; + else + qDebug() << Q_FUNC_INFO << "Invalid element index:" << index; +} + +/*! + If the inset placement (\ref setInsetPlacement) is \ref ipBorderAligned, this function + is used to set the alignment of the element with the specified \a index to \a alignment. + + \a alignment is an or combination of the following alignment flags: Qt::AlignLeft, + Qt::AlignHCenter, Qt::AlighRight, Qt::AlignTop, Qt::AlignVCenter, Qt::AlignBottom. Any other + alignment flags will be ignored. +*/ +void QCPLayoutInset::setInsetAlignment(int index, Qt::Alignment alignment) +{ + if (elementAt(index)) + mInsetAlignment[index] = alignment; + else + qDebug() << Q_FUNC_INFO << "Invalid element index:" << index; +} + +/*! + If the inset placement (\ref setInsetPlacement) is \ref ipFree, this function is used to set the + position and size of the element with the specified \a index to \a rect. + + \a rect is given in fractions of the whole inset layout rect. So an inset with rect (0, 0, 1, 1) + will span the entire layout. An inset with rect (0.6, 0.1, 0.35, 0.35) will be in the top right + corner of the layout, with 35% width and height of the parent layout. + + Note that the minimum and maximum sizes of the embedded element (\ref + QCPLayoutElement::setMinimumSize, \ref QCPLayoutElement::setMaximumSize) are enforced. +*/ +void QCPLayoutInset::setInsetRect(int index, const QRectF &rect) +{ + if (elementAt(index)) + mInsetRect[index] = rect; + else + qDebug() << Q_FUNC_INFO << "Invalid element index:" << index; +} + +/* inherits documentation from base class */ +void QCPLayoutInset::updateLayout() +{ + for (int i=0; iminimumSizeHint(); + QSize maxSizeHint = mElements.at(i)->maximumSizeHint(); + finalMinSize.setWidth(mElements.at(i)->minimumSize().width() > 0 ? mElements.at(i)->minimumSize().width() : minSizeHint.width()); + finalMinSize.setHeight(mElements.at(i)->minimumSize().height() > 0 ? mElements.at(i)->minimumSize().height() : minSizeHint.height()); + finalMaxSize.setWidth(mElements.at(i)->maximumSize().width() < QWIDGETSIZE_MAX ? mElements.at(i)->maximumSize().width() : maxSizeHint.width()); + finalMaxSize.setHeight(mElements.at(i)->maximumSize().height() < QWIDGETSIZE_MAX ? mElements.at(i)->maximumSize().height() : maxSizeHint.height()); + if (mInsetPlacement.at(i) == ipFree) + { + insetRect = QRect(rect().x()+rect().width()*mInsetRect.at(i).x(), + rect().y()+rect().height()*mInsetRect.at(i).y(), + rect().width()*mInsetRect.at(i).width(), + rect().height()*mInsetRect.at(i).height()); + if (insetRect.size().width() < finalMinSize.width()) + insetRect.setWidth(finalMinSize.width()); + if (insetRect.size().height() < finalMinSize.height()) + insetRect.setHeight(finalMinSize.height()); + if (insetRect.size().width() > finalMaxSize.width()) + insetRect.setWidth(finalMaxSize.width()); + if (insetRect.size().height() > finalMaxSize.height()) + insetRect.setHeight(finalMaxSize.height()); + } else if (mInsetPlacement.at(i) == ipBorderAligned) + { + insetRect.setSize(finalMinSize); + Qt::Alignment al = mInsetAlignment.at(i); + if (al.testFlag(Qt::AlignLeft)) insetRect.moveLeft(rect().x()); + else if (al.testFlag(Qt::AlignRight)) insetRect.moveRight(rect().x()+rect().width()); + else insetRect.moveLeft(rect().x()+rect().width()*0.5-finalMinSize.width()*0.5); // default to Qt::AlignHCenter + if (al.testFlag(Qt::AlignTop)) insetRect.moveTop(rect().y()); + else if (al.testFlag(Qt::AlignBottom)) insetRect.moveBottom(rect().y()+rect().height()); + else insetRect.moveTop(rect().y()+rect().height()*0.5-finalMinSize.height()*0.5); // default to Qt::AlignVCenter + } + mElements.at(i)->setOuterRect(insetRect); + } +} + +/* inherits documentation from base class */ +int QCPLayoutInset::elementCount() const +{ + return mElements.size(); +} + +/* inherits documentation from base class */ +QCPLayoutElement *QCPLayoutInset::elementAt(int index) const +{ + if (index >= 0 && index < mElements.size()) + return mElements.at(index); + else + return 0; +} + +/* inherits documentation from base class */ +QCPLayoutElement *QCPLayoutInset::takeAt(int index) +{ + if (QCPLayoutElement *el = elementAt(index)) + { + releaseElement(el); + mElements.removeAt(index); + mInsetPlacement.removeAt(index); + mInsetAlignment.removeAt(index); + mInsetRect.removeAt(index); + return el; + } else + { + qDebug() << Q_FUNC_INFO << "Attempt to take invalid index:" << index; + return 0; + } +} + +/* inherits documentation from base class */ +bool QCPLayoutInset::take(QCPLayoutElement *element) +{ + if (element) + { + for (int i=0; irealVisibility() && mElements.at(i)->selectTest(pos, onlySelectable) >= 0) + return mParentPlot->selectionTolerance()*0.99; + } + return -1; +} + +/*! + Adds the specified \a element to the layout as an inset aligned at the border (\ref + setInsetAlignment is initialized with \ref ipBorderAligned). The alignment is set to \a + alignment. + + \a alignment is an or combination of the following alignment flags: Qt::AlignLeft, + Qt::AlignHCenter, Qt::AlighRight, Qt::AlignTop, Qt::AlignVCenter, Qt::AlignBottom. Any other + alignment flags will be ignored. + + \see addElement(QCPLayoutElement *element, const QRectF &rect) +*/ +void QCPLayoutInset::addElement(QCPLayoutElement *element, Qt::Alignment alignment) +{ + if (element) + { + if (element->layout()) // remove from old layout first + element->layout()->take(element); + mElements.append(element); + mInsetPlacement.append(ipBorderAligned); + mInsetAlignment.append(alignment); + mInsetRect.append(QRectF(0.6, 0.6, 0.4, 0.4)); + adoptElement(element); + } else + qDebug() << Q_FUNC_INFO << "Can't add null element"; +} + +/*! + Adds the specified \a element to the layout as an inset with free positioning/sizing (\ref + setInsetAlignment is initialized with \ref ipFree). The position and size is set to \a + rect. + + \a rect is given in fractions of the whole inset layout rect. So an inset with rect (0, 0, 1, 1) + will span the entire layout. An inset with rect (0.6, 0.1, 0.35, 0.35) will be in the top right + corner of the layout, with 35% width and height of the parent layout. + + \see addElement(QCPLayoutElement *element, Qt::Alignment alignment) +*/ +void QCPLayoutInset::addElement(QCPLayoutElement *element, const QRectF &rect) +{ + if (element) + { + if (element->layout()) // remove from old layout first + element->layout()->take(element); + mElements.append(element); + mInsetPlacement.append(ipFree); + mInsetAlignment.append(Qt::AlignRight|Qt::AlignTop); + mInsetRect.append(rect); + adoptElement(element); + } else + qDebug() << Q_FUNC_INFO << "Can't add null element"; +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPLineEnding +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPLineEnding + \brief Handles the different ending decorations for line-like items + + \image html QCPLineEnding.png "The various ending styles currently supported" + + For every ending a line-like item has, an instance of this class exists. For example, QCPItemLine + has two endings which can be set with QCPItemLine::setHead and QCPItemLine::setTail. + + The styles themselves are defined via the enum QCPLineEnding::EndingStyle. Most decorations can + be modified regarding width and length, see \ref setWidth and \ref setLength. The direction of + the ending decoration (e.g. direction an arrow is pointing) is controlled by the line-like item. + For example, when both endings of a QCPItemLine are set to be arrows, they will point to opposite + directions, e.g. "outward". This can be changed by \ref setInverted, which would make the + respective arrow point inward. + + Note that due to the overloaded QCPLineEnding constructor, you may directly specify a + QCPLineEnding::EndingStyle where actually a QCPLineEnding is expected, e.g. + \snippet documentation/doc-code-snippets/mainwindow.cpp qcplineending-sethead +*/ + +/*! + Creates a QCPLineEnding instance with default values (style \ref esNone). +*/ +QCPLineEnding::QCPLineEnding() : + mStyle(esNone), + mWidth(8), + mLength(10), + mInverted(false) +{ +} + +/*! + Creates a QCPLineEnding instance with the specified values. +*/ +QCPLineEnding::QCPLineEnding(QCPLineEnding::EndingStyle style, double width, double length, bool inverted) : + mStyle(style), + mWidth(width), + mLength(length), + mInverted(inverted) +{ +} + +/*! + Sets the style of the ending decoration. +*/ +void QCPLineEnding::setStyle(QCPLineEnding::EndingStyle style) +{ + mStyle = style; +} + +/*! + Sets the width of the ending decoration, if the style supports it. On arrows, for example, the + width defines the size perpendicular to the arrow's pointing direction. + + \see setLength +*/ +void QCPLineEnding::setWidth(double width) +{ + mWidth = width; +} + +/*! + Sets the length of the ending decoration, if the style supports it. On arrows, for example, the + length defines the size in pointing direction. + + \see setWidth +*/ +void QCPLineEnding::setLength(double length) +{ + mLength = length; +} + +/*! + Sets whether the ending decoration shall be inverted. For example, an arrow decoration will point + inward when \a inverted is set to true. + + Note that also the \a width direction is inverted. For symmetrical ending styles like arrows or + discs, this doesn't make a difference. However, asymmetric styles like \ref esHalfBar are + affected by it, which can be used to control to which side the half bar points to. +*/ +void QCPLineEnding::setInverted(bool inverted) +{ + mInverted = inverted; +} + +/*! \internal + + Returns the maximum pixel radius the ending decoration might cover, starting from the position + the decoration is drawn at (typically a line ending/\ref QCPItemPosition of an item). + + This is relevant for clipping. Only omit painting of the decoration when the position where the + decoration is supposed to be drawn is farther away from the clipping rect than the returned + distance. +*/ +double QCPLineEnding::boundingDistance() const +{ + switch (mStyle) + { + case esNone: + return 0; + + case esFlatArrow: + case esSpikeArrow: + case esLineArrow: + case esSkewedBar: + return qSqrt(mWidth*mWidth+mLength*mLength); // items that have width and length + + case esDisc: + case esSquare: + case esDiamond: + case esBar: + case esHalfBar: + return mWidth*1.42; // items that only have a width -> width*sqrt(2) + + } + return 0; +} + +/*! + Starting from the origin of this line ending (which is style specific), returns the length + covered by the line ending symbol, in backward direction. + + For example, the \ref esSpikeArrow has a shorter real length than a \ref esFlatArrow, even if + both have the same \ref setLength value, because the spike arrow has an inward curved back, which + reduces the length along its center axis (the drawing origin for arrows is at the tip). + + This function is used for precise, style specific placement of line endings, for example in + QCPAxes. +*/ +double QCPLineEnding::realLength() const +{ + switch (mStyle) + { + case esNone: + case esLineArrow: + case esSkewedBar: + case esBar: + case esHalfBar: + return 0; + + case esFlatArrow: + return mLength; + + case esDisc: + case esSquare: + case esDiamond: + return mWidth*0.5; + + case esSpikeArrow: + return mLength*0.8; + } + return 0; +} + +/*! \internal + + Draws the line ending with the specified \a painter at the position \a pos. The direction of the + line ending is controlled with \a dir. +*/ +void QCPLineEnding::draw(QCPPainter *painter, const QVector2D &pos, const QVector2D &dir) const +{ + if (mStyle == esNone) + return; + + QVector2D lengthVec(dir.normalized()); + if (lengthVec.isNull()) + lengthVec = QVector2D(1, 0); + QVector2D widthVec(-lengthVec.y(), lengthVec.x()); + lengthVec *= (float)(mLength*(mInverted ? -1 : 1)); + widthVec *= (float)(mWidth*0.5*(mInverted ? -1 : 1)); + + QPen penBackup = painter->pen(); + QBrush brushBackup = painter->brush(); + QPen miterPen = penBackup; + miterPen.setJoinStyle(Qt::MiterJoin); // to make arrow heads spikey + QBrush brush(painter->pen().color(), Qt::SolidPattern); + switch (mStyle) + { + case esNone: break; + case esFlatArrow: + { + QPointF points[3] = {pos.toPointF(), + (pos-lengthVec+widthVec).toPointF(), + (pos-lengthVec-widthVec).toPointF() + }; + painter->setPen(miterPen); + painter->setBrush(brush); + painter->drawConvexPolygon(points, 3); + painter->setBrush(brushBackup); + painter->setPen(penBackup); + break; + } + case esSpikeArrow: + { + QPointF points[4] = {pos.toPointF(), + (pos-lengthVec+widthVec).toPointF(), + (pos-lengthVec*0.8f).toPointF(), + (pos-lengthVec-widthVec).toPointF() + }; + painter->setPen(miterPen); + painter->setBrush(brush); + painter->drawConvexPolygon(points, 4); + painter->setBrush(brushBackup); + painter->setPen(penBackup); + break; + } + case esLineArrow: + { + QPointF points[3] = {(pos-lengthVec+widthVec).toPointF(), + pos.toPointF(), + (pos-lengthVec-widthVec).toPointF() + }; + painter->setPen(miterPen); + painter->drawPolyline(points, 3); + painter->setPen(penBackup); + break; + } + case esDisc: + { + painter->setBrush(brush); + painter->drawEllipse(pos.toPointF(), mWidth*0.5, mWidth*0.5); + painter->setBrush(brushBackup); + break; + } + case esSquare: + { + QVector2D widthVecPerp(-widthVec.y(), widthVec.x()); + QPointF points[4] = {(pos-widthVecPerp+widthVec).toPointF(), + (pos-widthVecPerp-widthVec).toPointF(), + (pos+widthVecPerp-widthVec).toPointF(), + (pos+widthVecPerp+widthVec).toPointF() + }; + painter->setPen(miterPen); + painter->setBrush(brush); + painter->drawConvexPolygon(points, 4); + painter->setBrush(brushBackup); + painter->setPen(penBackup); + break; + } + case esDiamond: + { + QVector2D widthVecPerp(-widthVec.y(), widthVec.x()); + QPointF points[4] = {(pos-widthVecPerp).toPointF(), + (pos-widthVec).toPointF(), + (pos+widthVecPerp).toPointF(), + (pos+widthVec).toPointF() + }; + painter->setPen(miterPen); + painter->setBrush(brush); + painter->drawConvexPolygon(points, 4); + painter->setBrush(brushBackup); + painter->setPen(penBackup); + break; + } + case esBar: + { + painter->drawLine((pos+widthVec).toPointF(), (pos-widthVec).toPointF()); + break; + } + case esHalfBar: + { + painter->drawLine((pos+widthVec).toPointF(), pos.toPointF()); + break; + } + case esSkewedBar: + { + if (qFuzzyIsNull(painter->pen().widthF()) && !painter->modes().testFlag(QCPPainter::pmNonCosmetic)) + { + // if drawing with cosmetic pen (perfectly thin stroke, happens only in vector exports), draw bar exactly on tip of line + painter->drawLine((pos+widthVec+lengthVec*0.2f*(mInverted?-1:1)).toPointF(), + (pos-widthVec-lengthVec*0.2f*(mInverted?-1:1)).toPointF()); + } else + { + // if drawing with thick (non-cosmetic) pen, shift bar a little in line direction to prevent line from sticking through bar slightly + painter->drawLine((pos+widthVec+lengthVec*0.2f*(mInverted?-1:1)+dir.normalized()*qMax(1.0f, (float)painter->pen().widthF())*0.5f).toPointF(), + (pos-widthVec-lengthVec*0.2f*(mInverted?-1:1)+dir.normalized()*qMax(1.0f, (float)painter->pen().widthF())*0.5f).toPointF()); + } + break; + } + } +} + +/*! \internal + \overload + + Draws the line ending. The direction is controlled with the \a angle parameter in radians. +*/ +void QCPLineEnding::draw(QCPPainter *painter, const QVector2D &pos, double angle) const +{ + draw(painter, pos, QVector2D(qCos(angle), qSin(angle))); +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPGrid +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPGrid + \brief Responsible for drawing the grid of a QCPAxis. + + This class is tightly bound to QCPAxis. Every axis owns a grid instance and uses it to draw the + grid lines, sub grid lines and zero-line. You can interact with the grid of an axis via \ref + QCPAxis::grid. Normally, you don't need to create an instance of QCPGrid yourself. + + The axis and grid drawing was split into two classes to allow them to be placed on different + layers (both QCPAxis and QCPGrid inherit from QCPLayerable). Thus it is possible to have the grid + in the background and the axes in the foreground, and any plottables/items in between. This + described situation is the default setup, see the QCPLayer documentation. +*/ + +/*! + Creates a QCPGrid instance and sets default values. + + You shouldn't instantiate grids on their own, since every QCPAxis brings its own QCPGrid. +*/ +QCPGrid::QCPGrid(QCPAxis *parentAxis) : + QCPLayerable(parentAxis->parentPlot(), QString(), parentAxis), + mParentAxis(parentAxis) +{ + // warning: this is called in QCPAxis constructor, so parentAxis members should not be accessed/called + setParent(parentAxis); + setPen(QPen(QColor(200,200,200), 0, Qt::DotLine)); + setSubGridPen(QPen(QColor(220,220,220), 0, Qt::DotLine)); + setZeroLinePen(QPen(QColor(200,200,200), 0, Qt::SolidLine)); + setSubGridVisible(false); + setAntialiased(false); + setAntialiasedSubGrid(false); + setAntialiasedZeroLine(false); +} + +/*! + Sets whether grid lines at sub tick marks are drawn. + + \see setSubGridPen +*/ +void QCPGrid::setSubGridVisible(bool visible) +{ + mSubGridVisible = visible; +} + +/*! + Sets whether sub grid lines are drawn antialiased. +*/ +void QCPGrid::setAntialiasedSubGrid(bool enabled) +{ + mAntialiasedSubGrid = enabled; +} + +/*! + Sets whether zero lines are drawn antialiased. +*/ +void QCPGrid::setAntialiasedZeroLine(bool enabled) +{ + mAntialiasedZeroLine = enabled; +} + +/*! + Sets the pen with which (major) grid lines are drawn. +*/ +void QCPGrid::setPen(const QPen &pen) +{ + mPen = pen; +} + +/*! + Sets the pen with which sub grid lines are drawn. +*/ +void QCPGrid::setSubGridPen(const QPen &pen) +{ + mSubGridPen = pen; +} + +/*! + Sets the pen with which zero lines are drawn. + + Zero lines are lines at value coordinate 0 which may be drawn with a different pen than other grid + lines. To disable zero lines and just draw normal grid lines at zero, set \a pen to Qt::NoPen. +*/ +void QCPGrid::setZeroLinePen(const QPen &pen) +{ + mZeroLinePen = pen; +} + +/*! \internal + + A convenience function to easily set the QPainter::Antialiased hint on the provided \a painter + before drawing the major grid lines. + + This is the antialiasing state the painter passed to the \ref draw method is in by default. + + This function takes into account the local setting of the antialiasing flag as well as the + overrides set with \ref QCustomPlot::setAntialiasedElements and \ref + QCustomPlot::setNotAntialiasedElements. + + \see setAntialiased +*/ +void QCPGrid::applyDefaultAntialiasingHint(QCPPainter *painter) const +{ + applyAntialiasingHint(painter, mAntialiased, QCP::aeGrid); +} + +/*! \internal + + Draws grid lines and sub grid lines at the positions of (sub) ticks of the parent axis, spanning + over the complete axis rect. Also draws the zero line, if appropriate (\ref setZeroLinePen). +*/ +void QCPGrid::draw(QCPPainter *painter) +{ + if (!mParentAxis) { qDebug() << Q_FUNC_INFO << "invalid parent axis"; return; } + + if (mSubGridVisible) + drawSubGridLines(painter); + drawGridLines(painter); +} + +/*! \internal + + Draws the main grid lines and possibly a zero line with the specified painter. + + This is a helper function called by \ref draw. +*/ +void QCPGrid::drawGridLines(QCPPainter *painter) const +{ + if (!mParentAxis) { qDebug() << Q_FUNC_INFO << "invalid parent axis"; return; } + + int lowTick = mParentAxis->mLowestVisibleTick; + int highTick = mParentAxis->mHighestVisibleTick; + double t; // helper variable, result of coordinate-to-pixel transforms + if (mParentAxis->orientation() == Qt::Horizontal) + { + // draw zeroline: + int zeroLineIndex = -1; + if (mZeroLinePen.style() != Qt::NoPen && mParentAxis->mRange.lower < 0 && mParentAxis->mRange.upper > 0) + { + applyAntialiasingHint(painter, mAntialiasedZeroLine, QCP::aeZeroLine); + painter->setPen(mZeroLinePen); + double epsilon = mParentAxis->range().size()*1E-6; // for comparing double to zero + for (int i=lowTick; i <= highTick; ++i) + { + if (qAbs(mParentAxis->mTickVector.at(i)) < epsilon) + { + zeroLineIndex = i; + t = mParentAxis->coordToPixel(mParentAxis->mTickVector.at(i)); // x + painter->drawLine(QLineF(t, mParentAxis->mAxisRect->bottom(), t, mParentAxis->mAxisRect->top())); + break; + } + } + } + // draw grid lines: + applyDefaultAntialiasingHint(painter); + painter->setPen(mPen); + for (int i=lowTick; i <= highTick; ++i) + { + if (i == zeroLineIndex) continue; // don't draw a gridline on top of the zeroline + t = mParentAxis->coordToPixel(mParentAxis->mTickVector.at(i)); // x + painter->drawLine(QLineF(t, mParentAxis->mAxisRect->bottom(), t, mParentAxis->mAxisRect->top())); + } + } else + { + // draw zeroline: + int zeroLineIndex = -1; + if (mZeroLinePen.style() != Qt::NoPen && mParentAxis->mRange.lower < 0 && mParentAxis->mRange.upper > 0) + { + applyAntialiasingHint(painter, mAntialiasedZeroLine, QCP::aeZeroLine); + painter->setPen(mZeroLinePen); + double epsilon = mParentAxis->mRange.size()*1E-6; // for comparing double to zero + for (int i=lowTick; i <= highTick; ++i) + { + if (qAbs(mParentAxis->mTickVector.at(i)) < epsilon) + { + zeroLineIndex = i; + t = mParentAxis->coordToPixel(mParentAxis->mTickVector.at(i)); // y + painter->drawLine(QLineF(mParentAxis->mAxisRect->left(), t, mParentAxis->mAxisRect->right(), t)); + break; + } + } + } + // draw grid lines: + applyDefaultAntialiasingHint(painter); + painter->setPen(mPen); + for (int i=lowTick; i <= highTick; ++i) + { + if (i == zeroLineIndex) continue; // don't draw a gridline on top of the zeroline + t = mParentAxis->coordToPixel(mParentAxis->mTickVector.at(i)); // y + painter->drawLine(QLineF(mParentAxis->mAxisRect->left(), t, mParentAxis->mAxisRect->right(), t)); + } + } +} + +/*! \internal + + Draws the sub grid lines with the specified painter. + + This is a helper function called by \ref draw. +*/ +void QCPGrid::drawSubGridLines(QCPPainter *painter) const +{ + if (!mParentAxis) { qDebug() << Q_FUNC_INFO << "invalid parent axis"; return; } + + applyAntialiasingHint(painter, mAntialiasedSubGrid, QCP::aeSubGrid); + double t; // helper variable, result of coordinate-to-pixel transforms + painter->setPen(mSubGridPen); + if (mParentAxis->orientation() == Qt::Horizontal) + { + for (int i=0; imSubTickVector.size(); ++i) + { + t = mParentAxis->coordToPixel(mParentAxis->mSubTickVector.at(i)); // x + painter->drawLine(QLineF(t, mParentAxis->mAxisRect->bottom(), t, mParentAxis->mAxisRect->top())); + } + } else + { + for (int i=0; imSubTickVector.size(); ++i) + { + t = mParentAxis->coordToPixel(mParentAxis->mSubTickVector.at(i)); // y + painter->drawLine(QLineF(mParentAxis->mAxisRect->left(), t, mParentAxis->mAxisRect->right(), t)); + } + } +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPAxis +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPAxis + \brief Manages a single axis inside a QCustomPlot. + + Usually doesn't need to be instantiated externally. Access %QCustomPlot's default four axes via + QCustomPlot::xAxis (bottom), QCustomPlot::yAxis (left), QCustomPlot::xAxis2 (top) and + QCustomPlot::yAxis2 (right). + + Axes are always part of an axis rect, see QCPAxisRect. + \image html AxisNamesOverview.png +
Naming convention of axis parts
+ \n + + \image html AxisRectSpacingOverview.png +
Overview of the spacings and paddings that define the geometry of an axis. The dashed gray line + on the left represents the QCustomPlot widget border.
+ +*/ + +/* start of documentation of inline functions */ + +/*! \fn Qt::Orientation QCPAxis::orientation() const + + Returns the orientation of this axis. The axis orientation (horizontal or vertical) is deduced + from the axis type (left, top, right or bottom). + + \see orientation(AxisType type) +*/ + +/*! \fn QCPGrid *QCPAxis::grid() const + + Returns the \ref QCPGrid instance belonging to this axis. Access it to set details about the way the + grid is displayed. +*/ + +/*! \fn static Qt::Orientation QCPAxis::orientation(AxisType type) + + Returns the orientation of the specified axis type + + \see orientation() +*/ + +/* end of documentation of inline functions */ +/* start of documentation of signals */ + +/*! \fn void QCPAxis::ticksRequest() + + This signal is emitted when \ref setAutoTicks is false and the axis is about to generate tick + labels for a replot. + + Modifying the tick positions can be done with \ref setTickVector. If you also want to control the + tick labels, set \ref setAutoTickLabels to false and also provide the labels with \ref + setTickVectorLabels. + + If you only want static ticks you probably don't need this signal, since you can just set the + tick vector (and possibly tick label vector) once. However, if you want to provide ticks (and + maybe labels) dynamically, e.g. depending on the current axis range, connect a slot to this + signal and set the vector/vectors there. +*/ + +/*! \fn void QCPAxis::rangeChanged(const QCPRange &newRange) + + This signal is emitted when the range of this axis has changed. You can connect it to the \ref + setRange slot of another axis to communicate the new range to the other axis, in order for it to + be synchronized. + + You may also manipulate/correct the range with \ref setRange in a slot connected to this signal. + This is useful if for example a maximum range span shall not be exceeded, or if the lower/upper + range shouldn't go beyond certain values. For example, the following slot would limit the x axis + to only positive ranges: + \code + if (newRange.lower < 0) + plot->xAxis->setRange(0, newRange.size()); + \endcode +*/ + +/*! \fn void QCPAxis::rangeChanged(const QCPRange &newRange, const QCPRange &oldRange) + \overload + + Additionally to the new range, this signal also provides the previous range held by the axis as + \a oldRange. +*/ + +/*! \fn void QCPAxis::scaleTypeChanged(QCPAxis::ScaleType scaleType); + + This signal is emitted when the scale type changes, by calls to \ref setScaleType +*/ + +/*! \fn void QCPAxis::selectionChanged(QCPAxis::SelectableParts selection) + + This signal is emitted when the selection state of this axis has changed, either by user interaction + or by a direct call to \ref setSelectedParts. +*/ + +/*! \fn void QCPAxis::selectableChanged(const QCPAxis::SelectableParts &parts); + + This signal is emitted when the selectability changes, by calls to \ref setSelectableParts +*/ + +/* end of documentation of signals */ + +/*! + Constructs an Axis instance of Type \a type for the axis rect \a parent. + + Usually it isn't necessary to instantiate axes directly, because you can let QCustomPlot create + them for you with \ref QCPAxisRect::addAxis. If you want to use own QCPAxis-subclasses however, + create them manually and then inject them also via \ref QCPAxisRect::addAxis. +*/ +QCPAxis::QCPAxis(QCPAxisRect *parent, AxisType type) : + QCPLayerable(parent->parentPlot(), QString(), parent), + // axis base: + mAxisType(type), + mAxisRect(parent), + mPadding(5), + mOrientation(orientation(type)), + mSelectableParts(spAxis | spTickLabels | spAxisLabel), + mSelectedParts(spNone), + mBasePen(QPen(Qt::black, 0, Qt::SolidLine, Qt::SquareCap)), + mSelectedBasePen(QPen(Qt::blue, 2)), + // axis label: + mLabel(), + mLabelFont(mParentPlot->font()), + mSelectedLabelFont(QFont(mLabelFont.family(), mLabelFont.pointSize(), QFont::Bold)), + mLabelColor(Qt::black), + mSelectedLabelColor(Qt::blue), + // tick labels: + mTickLabels(true), + mAutoTickLabels(true), + mTickLabelType(ltNumber), + mTickLabelFont(mParentPlot->font()), + mSelectedTickLabelFont(QFont(mTickLabelFont.family(), mTickLabelFont.pointSize(), QFont::Bold)), + mTickLabelColor(Qt::black), + mSelectedTickLabelColor(Qt::blue), + mDateTimeFormat(QLatin1String("hh:mm:ss\ndd.MM.yy")), + mDateTimeSpec(Qt::LocalTime), + mNumberPrecision(6), + mNumberFormatChar('g'), + mNumberBeautifulPowers(true), + // ticks and subticks: + mTicks(true), + mTickStep(1), + mSubTickCount(4), + mAutoTickCount(6), + mAutoTicks(true), + mAutoTickStep(true), + mAutoSubTicks(true), + mTickPen(QPen(Qt::black, 0, Qt::SolidLine, Qt::SquareCap)), + mSelectedTickPen(QPen(Qt::blue, 2)), + mSubTickPen(QPen(Qt::black, 0, Qt::SolidLine, Qt::SquareCap)), + mSelectedSubTickPen(QPen(Qt::blue, 2)), + // scale and range: + mRange(0, 5), + mRangeReversed(false), + mScaleType(stLinear), + mScaleLogBase(10), + mScaleLogBaseLogInv(1.0/qLn(mScaleLogBase)), + // internal members: + mGrid(new QCPGrid(this)), + mAxisPainter(new QCPAxisPainterPrivate(parent->parentPlot())), + mLowestVisibleTick(0), + mHighestVisibleTick(-1), + mCachedMarginValid(false), + mCachedMargin(0) +{ + mGrid->setVisible(false); + setAntialiased(false); + setLayer(mParentPlot->currentLayer()); // it's actually on that layer already, but we want it in front of the grid, so we place it on there again + + if (type == atTop) + { + setTickLabelPadding(3); + setLabelPadding(6); + } else if (type == atRight) + { + setTickLabelPadding(7); + setLabelPadding(12); + } else if (type == atBottom) + { + setTickLabelPadding(3); + setLabelPadding(3); + } else if (type == atLeft) + { + setTickLabelPadding(5); + setLabelPadding(10); + } +} + +QCPAxis::~QCPAxis() +{ + delete mAxisPainter; + delete mGrid; // delete grid here instead of via parent ~QObject for better defined deletion order +} + +/* No documentation as it is a property getter */ +int QCPAxis::tickLabelPadding() const +{ + return mAxisPainter->tickLabelPadding; +} + +/* No documentation as it is a property getter */ +double QCPAxis::tickLabelRotation() const +{ + return mAxisPainter->tickLabelRotation; +} + +/* No documentation as it is a property getter */ +QCPAxis::LabelSide QCPAxis::tickLabelSide() const +{ + return mAxisPainter->tickLabelSide; +} + +/* No documentation as it is a property getter */ +QString QCPAxis::numberFormat() const +{ + QString result; + result.append(mNumberFormatChar); + if (mNumberBeautifulPowers) + { + result.append(QLatin1Char('b')); + if (mAxisPainter->numberMultiplyCross) + result.append(QLatin1Char('c')); + } + return result; +} + +/* No documentation as it is a property getter */ +int QCPAxis::tickLengthIn() const +{ + return mAxisPainter->tickLengthIn; +} + +/* No documentation as it is a property getter */ +int QCPAxis::tickLengthOut() const +{ + return mAxisPainter->tickLengthOut; +} + +/* No documentation as it is a property getter */ +int QCPAxis::subTickLengthIn() const +{ + return mAxisPainter->subTickLengthIn; +} + +/* No documentation as it is a property getter */ +int QCPAxis::subTickLengthOut() const +{ + return mAxisPainter->subTickLengthOut; +} + +/* No documentation as it is a property getter */ +int QCPAxis::labelPadding() const +{ + return mAxisPainter->labelPadding; +} + +/* No documentation as it is a property getter */ +int QCPAxis::offset() const +{ + return mAxisPainter->offset; +} + +/* No documentation as it is a property getter */ +QCPLineEnding QCPAxis::lowerEnding() const +{ + return mAxisPainter->lowerEnding; +} + +/* No documentation as it is a property getter */ +QCPLineEnding QCPAxis::upperEnding() const +{ + return mAxisPainter->upperEnding; +} + +/*! + Sets whether the axis uses a linear scale or a logarithmic scale. If \a type is set to \ref + stLogarithmic, the logarithm base can be set with \ref setScaleLogBase. In logarithmic axis + scaling, major tick marks appear at all powers of the logarithm base. Properties like tick step + (\ref setTickStep) don't apply in logarithmic scaling. If you wish a decimal base but less major + ticks, consider choosing a logarithm base of 100, 1000 or even higher. + + If \a type is \ref stLogarithmic and the number format (\ref setNumberFormat) uses the 'b' option + (beautifully typeset decimal powers), the display usually is "1 [multiplication sign] 10 + [superscript] n", which looks unnatural for logarithmic scaling (the "1 [multiplication sign]" + part). To only display the decimal power, set the number precision to zero with + \ref setNumberPrecision. +*/ +void QCPAxis::setScaleType(QCPAxis::ScaleType type) +{ + if (mScaleType != type) + { + mScaleType = type; + if (mScaleType == stLogarithmic) + setRange(mRange.sanitizedForLogScale()); + mCachedMarginValid = false; + emit scaleTypeChanged(mScaleType); + } +} + +/*! + If \ref setScaleType is set to \ref stLogarithmic, \a base will be the logarithm base of the + scaling. In logarithmic axis scaling, major tick marks appear at all powers of \a base. + + Properties like tick step (\ref setTickStep) don't apply in logarithmic scaling. If you wish a decimal base but + less major ticks, consider choosing \a base 100, 1000 or even higher. +*/ +void QCPAxis::setScaleLogBase(double base) +{ + if (base > 1) + { + mScaleLogBase = base; + mScaleLogBaseLogInv = 1.0/qLn(mScaleLogBase); // buffer for faster baseLog() calculation + mCachedMarginValid = false; + } else + qDebug() << Q_FUNC_INFO << "Invalid logarithmic scale base (must be greater 1):" << base; +} + +/*! + Sets the range of the axis. + + This slot may be connected with the \ref rangeChanged signal of another axis so this axis + is always synchronized with the other axis range, when it changes. + + To invert the direction of an axis, use \ref setRangeReversed. +*/ +void QCPAxis::setRange(const QCPRange &range) +{ + if (range.lower == mRange.lower && range.upper == mRange.upper) + return; + + if (!QCPRange::validRange(range)) return; + QCPRange oldRange = mRange; + if (mScaleType == stLogarithmic) + { + mRange = range.sanitizedForLogScale(); + } else + { + mRange = range.sanitizedForLinScale(); + } + mCachedMarginValid = false; + emit rangeChanged(mRange); + emit rangeChanged(mRange, oldRange); +} + +/*! + Sets whether the user can (de-)select the parts in \a selectable by clicking on the QCustomPlot surface. + (When \ref QCustomPlot::setInteractions contains iSelectAxes.) + + However, even when \a selectable is set to a value not allowing the selection of a specific part, + it is still possible to set the selection of this part manually, by calling \ref setSelectedParts + directly. + + \see SelectablePart, setSelectedParts +*/ +void QCPAxis::setSelectableParts(const SelectableParts &selectable) +{ + if (mSelectableParts != selectable) + { + mSelectableParts = selectable; + emit selectableChanged(mSelectableParts); + } +} + +/*! + Sets the selected state of the respective axis parts described by \ref SelectablePart. When a part + is selected, it uses a different pen/font. + + The entire selection mechanism for axes is handled automatically when \ref + QCustomPlot::setInteractions contains iSelectAxes. You only need to call this function when you + wish to change the selection state manually. + + This function can change the selection state of a part, independent of the \ref setSelectableParts setting. + + emits the \ref selectionChanged signal when \a selected is different from the previous selection state. + + \see SelectablePart, setSelectableParts, selectTest, setSelectedBasePen, setSelectedTickPen, setSelectedSubTickPen, + setSelectedTickLabelFont, setSelectedLabelFont, setSelectedTickLabelColor, setSelectedLabelColor +*/ +void QCPAxis::setSelectedParts(const SelectableParts &selected) +{ + if (mSelectedParts != selected) + { + mSelectedParts = selected; + emit selectionChanged(mSelectedParts); + } +} + +/*! + \overload + + Sets the lower and upper bound of the axis range. + + To invert the direction of an axis, use \ref setRangeReversed. + + There is also a slot to set a range, see \ref setRange(const QCPRange &range). +*/ +void QCPAxis::setRange(double lower, double upper) +{ + if (lower == mRange.lower && upper == mRange.upper) + return; + + if (!QCPRange::validRange(lower, upper)) return; + QCPRange oldRange = mRange; + mRange.lower = lower; + mRange.upper = upper; + if (mScaleType == stLogarithmic) + { + mRange = mRange.sanitizedForLogScale(); + } else + { + mRange = mRange.sanitizedForLinScale(); + } + mCachedMarginValid = false; + emit rangeChanged(mRange); + emit rangeChanged(mRange, oldRange); +} + +/*! + \overload + + Sets the range of the axis. + + The \a position coordinate indicates together with the \a alignment parameter, where the new + range will be positioned. \a size defines the size of the new axis range. \a alignment may be + Qt::AlignLeft, Qt::AlignRight or Qt::AlignCenter. This will cause the left border, right border, + or center of the range to be aligned with \a position. Any other values of \a alignment will + default to Qt::AlignCenter. +*/ +void QCPAxis::setRange(double position, double size, Qt::AlignmentFlag alignment) +{ + if (alignment == Qt::AlignLeft) + setRange(position, position+size); + else if (alignment == Qt::AlignRight) + setRange(position-size, position); + else // alignment == Qt::AlignCenter + setRange(position-size/2.0, position+size/2.0); +} + +/*! + Sets the lower bound of the axis range. The upper bound is not changed. + \see setRange +*/ +void QCPAxis::setRangeLower(double lower) +{ + if (mRange.lower == lower) + return; + + QCPRange oldRange = mRange; + mRange.lower = lower; + if (mScaleType == stLogarithmic) + { + mRange = mRange.sanitizedForLogScale(); + } else + { + mRange = mRange.sanitizedForLinScale(); + } + mCachedMarginValid = false; + emit rangeChanged(mRange); + emit rangeChanged(mRange, oldRange); +} + +/*! + Sets the upper bound of the axis range. The lower bound is not changed. + \see setRange +*/ +void QCPAxis::setRangeUpper(double upper) +{ + if (mRange.upper == upper) + return; + + QCPRange oldRange = mRange; + mRange.upper = upper; + if (mScaleType == stLogarithmic) + { + mRange = mRange.sanitizedForLogScale(); + } else + { + mRange = mRange.sanitizedForLinScale(); + } + mCachedMarginValid = false; + emit rangeChanged(mRange); + emit rangeChanged(mRange, oldRange); +} + +/*! + Sets whether the axis range (direction) is displayed reversed. Normally, the values on horizontal + axes increase left to right, on vertical axes bottom to top. When \a reversed is set to true, the + direction of increasing values is inverted. + + Note that the range and data interface stays the same for reversed axes, e.g. the \a lower part + of the \ref setRange interface will still reference the mathematically smaller number than the \a + upper part. +*/ +void QCPAxis::setRangeReversed(bool reversed) +{ + if (mRangeReversed != reversed) + { + mRangeReversed = reversed; + mCachedMarginValid = false; + } +} + +/*! + Sets whether the tick positions should be calculated automatically (either from an automatically + generated tick step or a tick step provided manually via \ref setTickStep, see \ref setAutoTickStep). + + If \a on is set to false, you must provide the tick positions manually via \ref setTickVector. + For these manual ticks you may let QCPAxis generate the appropriate labels automatically by + leaving \ref setAutoTickLabels set to true. If you also wish to control the displayed labels + manually, set \ref setAutoTickLabels to false and provide the label strings with \ref + setTickVectorLabels. + + If you need dynamically calculated tick vectors (and possibly tick label vectors), set the + vectors in a slot connected to the \ref ticksRequest signal. + + \see setAutoTickLabels, setAutoSubTicks, setAutoTickCount, setAutoTickStep +*/ +void QCPAxis::setAutoTicks(bool on) +{ + if (mAutoTicks != on) + { + mAutoTicks = on; + mCachedMarginValid = false; + } +} + +/*! + When \ref setAutoTickStep is true, \a approximateCount determines how many ticks should be + generated in the visible range, approximately. + + It's not guaranteed that this number of ticks is met exactly, but approximately within a + tolerance of about two. + + Only values greater than zero are accepted as \a approximateCount. + + \see setAutoTickStep, setAutoTicks, setAutoSubTicks +*/ +void QCPAxis::setAutoTickCount(int approximateCount) +{ + if (mAutoTickCount != approximateCount) + { + if (approximateCount > 0) + { + mAutoTickCount = approximateCount; + mCachedMarginValid = false; + } else + qDebug() << Q_FUNC_INFO << "approximateCount must be greater than zero:" << approximateCount; + } +} + +/*! + Sets whether the tick labels are generated automatically. Depending on the tick label type (\ref + ltNumber or \ref ltDateTime), the labels will either show the coordinate as floating point + number (\ref setNumberFormat), or a date/time formatted according to \ref setDateTimeFormat. + + If \a on is set to false, you should provide the tick labels via \ref setTickVectorLabels. This + is usually used in a combination with \ref setAutoTicks set to false for complete control over + tick positions and labels, e.g. when the ticks should be at multiples of pi and show "2pi", "3pi" + etc. as tick labels. + + If you need dynamically calculated tick vectors (and possibly tick label vectors), set the + vectors in a slot connected to the \ref ticksRequest signal. + + \see setAutoTicks +*/ +void QCPAxis::setAutoTickLabels(bool on) +{ + if (mAutoTickLabels != on) + { + mAutoTickLabels = on; + mCachedMarginValid = false; + } +} + +/*! + Sets whether the tick step, i.e. the interval between two (major) ticks, is calculated + automatically. If \a on is set to true, the axis finds a tick step that is reasonable for human + readable plots. + + The number of ticks the algorithm aims for within the visible range can be specified with \ref + setAutoTickCount. + + If \a on is set to false, you may set the tick step manually with \ref setTickStep. + + \see setAutoTicks, setAutoSubTicks, setAutoTickCount +*/ +void QCPAxis::setAutoTickStep(bool on) +{ + if (mAutoTickStep != on) + { + mAutoTickStep = on; + mCachedMarginValid = false; + } +} + +/*! + Sets whether the number of sub ticks in one tick interval is determined automatically. This + works, as long as the tick step mantissa is a multiple of 0.5. When \ref setAutoTickStep is + enabled, this is always the case. + + When \a on is set to false, you may set the sub tick count with \ref setSubTickCount manually. + + \see setAutoTickCount, setAutoTicks, setAutoTickStep +*/ +void QCPAxis::setAutoSubTicks(bool on) +{ + if (mAutoSubTicks != on) + { + mAutoSubTicks = on; + mCachedMarginValid = false; + } +} + +/*! + Sets whether tick marks are displayed. + + Note that setting \a show to false does not imply that tick labels are invisible, too. To achieve + that, see \ref setTickLabels. +*/ +void QCPAxis::setTicks(bool show) +{ + if (mTicks != show) + { + mTicks = show; + mCachedMarginValid = false; + } +} + +/*! + Sets whether tick labels are displayed. Tick labels are the numbers drawn next to tick marks. +*/ +void QCPAxis::setTickLabels(bool show) +{ + if (mTickLabels != show) + { + mTickLabels = show; + mCachedMarginValid = false; + } +} + +/*! + Sets the distance between the axis base line (including any outward ticks) and the tick labels. + \see setLabelPadding, setPadding +*/ +void QCPAxis::setTickLabelPadding(int padding) +{ + if (mAxisPainter->tickLabelPadding != padding) + { + mAxisPainter->tickLabelPadding = padding; + mCachedMarginValid = false; + } +} + +/*! + Sets whether the tick labels display numbers or dates/times. + + If \a type is set to \ref ltNumber, the format specifications of \ref setNumberFormat apply. + + If \a type is set to \ref ltDateTime, the format specifications of \ref setDateTimeFormat apply. + + In QCustomPlot, date/time coordinates are double numbers representing the seconds since + 1970-01-01T00:00:00 UTC. This format can be retrieved from QDateTime objects with the + QDateTime::toTime_t() function. Since this only gives a resolution of one second, there is also + the QDateTime::toMSecsSinceEpoch() function which returns the timespan described above in + milliseconds. Divide its return value by 1000.0 to get a value with the format needed for + date/time plotting, with a resolution of one millisecond. + + Using the toMSecsSinceEpoch function allows dates that go back to 2nd January 4713 B.C. + (represented by a negative number), unlike the toTime_t function, which works with unsigned + integers and thus only goes back to 1st January 1970. So both for range and accuracy, use of + toMSecsSinceEpoch()/1000.0 should be preferred as key coordinate for date/time axes. + + \see setTickLabels +*/ +void QCPAxis::setTickLabelType(LabelType type) +{ + if (mTickLabelType != type) + { + mTickLabelType = type; + mCachedMarginValid = false; + } +} + +/*! + Sets the font of the tick labels. + + \see setTickLabels, setTickLabelColor +*/ +void QCPAxis::setTickLabelFont(const QFont &font) +{ + if (font != mTickLabelFont) + { + mTickLabelFont = font; + mCachedMarginValid = false; + } +} + +/*! + Sets the color of the tick labels. + + \see setTickLabels, setTickLabelFont +*/ +void QCPAxis::setTickLabelColor(const QColor &color) +{ + if (color != mTickLabelColor) + { + mTickLabelColor = color; + mCachedMarginValid = false; + } +} + +/*! + Sets the rotation of the tick labels. If \a degrees is zero, the labels are drawn normally. Else, + the tick labels are drawn rotated by \a degrees clockwise. The specified angle is bound to values + from -90 to 90 degrees. + + If \a degrees is exactly -90, 0 or 90, the tick labels are centered on the tick coordinate. For + other angles, the label is drawn with an offset such that it seems to point toward or away from + the tick mark. +*/ +void QCPAxis::setTickLabelRotation(double degrees) +{ + if (!qFuzzyIsNull(degrees-mAxisPainter->tickLabelRotation)) + { + mAxisPainter->tickLabelRotation = qBound(-90.0, degrees, 90.0); + mCachedMarginValid = false; + } +} + +/*! + Sets whether the tick labels (numbers) shall appear inside or outside the axis rect. + + The usual and default setting is \ref lsOutside. Very compact plots sometimes require tick labels + to be inside the axis rect, to save space. If \a side is set to \ref lsInside, the tick labels + appear on the inside are additionally clipped to the axis rect. +*/ +void QCPAxis::setTickLabelSide(LabelSide side) +{ + mAxisPainter->tickLabelSide = side; + mCachedMarginValid = false; +} + +/*! + Sets the format in which dates and times are displayed as tick labels, if \ref setTickLabelType is \ref ltDateTime. + for details about the \a format string, see the documentation of QDateTime::toString(). + + Newlines can be inserted with "\n". + + \see setDateTimeSpec +*/ +void QCPAxis::setDateTimeFormat(const QString &format) +{ + if (mDateTimeFormat != format) + { + mDateTimeFormat = format; + mCachedMarginValid = false; + } +} + +/*! + Sets the time spec that is used for the date time values when \ref setTickLabelType is \ref + ltDateTime. + + The default value of QDateTime objects (and also QCustomPlot) is Qt::LocalTime. However, + if the date time values passed to QCustomPlot are given in the UTC spec, set \a + timeSpec to Qt::UTC to get the correct axis labels. + + \see setDateTimeFormat +*/ +void QCPAxis::setDateTimeSpec(const Qt::TimeSpec &timeSpec) +{ + mDateTimeSpec = timeSpec; +} + +/*! + Sets the number format for the numbers drawn as tick labels (if tick label type is \ref + ltNumber). This \a formatCode is an extended version of the format code used e.g. by + QString::number() and QLocale::toString(). For reference about that, see the "Argument Formats" + section in the detailed description of the QString class. \a formatCode is a string of one, two + or three characters. The first character is identical to the normal format code used by Qt. In + short, this means: 'e'/'E' scientific format, 'f' fixed format, 'g'/'G' scientific or fixed, + whichever is shorter. + + The second and third characters are optional and specific to QCustomPlot:\n + If the first char was 'e' or 'g', numbers are/might be displayed in the scientific format, e.g. + "5.5e9", which is ugly in a plot. So when the second char of \a formatCode is set to 'b' (for + "beautiful"), those exponential numbers are formatted in a more natural way, i.e. "5.5 + [multiplication sign] 10 [superscript] 9". By default, the multiplication sign is a centered dot. + If instead a cross should be shown (as is usual in the USA), the third char of \a formatCode can + be set to 'c'. The inserted multiplication signs are the UTF-8 characters 215 (0xD7) for the + cross and 183 (0xB7) for the dot. + + If the scale type (\ref setScaleType) is \ref stLogarithmic and the \a formatCode uses the 'b' + option (beautifully typeset decimal powers), the display usually is "1 [multiplication sign] 10 + [superscript] n", which looks unnatural for logarithmic scaling (the "1 [multiplication sign]" + part). To only display the decimal power, set the number precision to zero with \ref + setNumberPrecision. + + Examples for \a formatCode: + \li \c g normal format code behaviour. If number is small, fixed format is used, if number is large, + normal scientific format is used + \li \c gb If number is small, fixed format is used, if number is large, scientific format is used with + beautifully typeset decimal powers and a dot as multiplication sign + \li \c ebc All numbers are in scientific format with beautifully typeset decimal power and a cross as + multiplication sign + \li \c fb illegal format code, since fixed format doesn't support (or need) beautifully typeset decimal + powers. Format code will be reduced to 'f'. + \li \c hello illegal format code, since first char is not 'e', 'E', 'f', 'g' or 'G'. Current format + code will not be changed. +*/ +void QCPAxis::setNumberFormat(const QString &formatCode) +{ + if (formatCode.isEmpty()) + { + qDebug() << Q_FUNC_INFO << "Passed formatCode is empty"; + return; + } + mCachedMarginValid = false; + + // interpret first char as number format char: + QString allowedFormatChars(QLatin1String("eEfgG")); + if (allowedFormatChars.contains(formatCode.at(0))) + { + mNumberFormatChar = QLatin1Char(formatCode.at(0).toLatin1()); + } else + { + qDebug() << Q_FUNC_INFO << "Invalid number format code (first char not in 'eEfgG'):" << formatCode; + return; + } + if (formatCode.length() < 2) + { + mNumberBeautifulPowers = false; + mAxisPainter->numberMultiplyCross = false; + return; + } + + // interpret second char as indicator for beautiful decimal powers: + if (formatCode.at(1) == QLatin1Char('b') && (mNumberFormatChar == QLatin1Char('e') || mNumberFormatChar == QLatin1Char('g'))) + { + mNumberBeautifulPowers = true; + } else + { + qDebug() << Q_FUNC_INFO << "Invalid number format code (second char not 'b' or first char neither 'e' nor 'g'):" << formatCode; + return; + } + if (formatCode.length() < 3) + { + mAxisPainter->numberMultiplyCross = false; + return; + } + + // interpret third char as indicator for dot or cross multiplication symbol: + if (formatCode.at(2) == QLatin1Char('c')) + { + mAxisPainter->numberMultiplyCross = true; + } else if (formatCode.at(2) == QLatin1Char('d')) + { + mAxisPainter->numberMultiplyCross = false; + } else + { + qDebug() << Q_FUNC_INFO << "Invalid number format code (third char neither 'c' nor 'd'):" << formatCode; + return; + } +} + +/*! + Sets the precision of the tick label numbers. See QLocale::toString(double i, char f, int prec) + for details. The effect of precisions are most notably for number Formats starting with 'e', see + \ref setNumberFormat + + If the scale type (\ref setScaleType) is \ref stLogarithmic and the number format (\ref + setNumberFormat) uses the 'b' format code (beautifully typeset decimal powers), the display + usually is "1 [multiplication sign] 10 [superscript] n", which looks unnatural for logarithmic + scaling (the redundant "1 [multiplication sign]" part). To only display the decimal power "10 + [superscript] n", set \a precision to zero. +*/ +void QCPAxis::setNumberPrecision(int precision) +{ + if (mNumberPrecision != precision) + { + mNumberPrecision = precision; + mCachedMarginValid = false; + } +} + +/*! + If \ref setAutoTickStep is set to false, use this function to set the tick step manually. + The tick step is the interval between (major) ticks, in plot coordinates. + \see setSubTickCount +*/ +void QCPAxis::setTickStep(double step) +{ + if (mTickStep != step) + { + mTickStep = step; + mCachedMarginValid = false; + } +} + +/*! + If you want full control over what ticks (and possibly labels) the axes show, this function is + used to set the coordinates at which ticks will appear.\ref setAutoTicks must be disabled, else + the provided tick vector will be overwritten with automatically generated tick coordinates upon + replot. The labels of the ticks can be generated automatically when \ref setAutoTickLabels is + left enabled. If it is disabled, you can set the labels manually with \ref setTickVectorLabels. + + \a vec is a vector containing the positions of the ticks, in plot coordinates. + + \warning \a vec must be sorted in ascending order, no additional checks are made to ensure this. + + \see setTickVectorLabels +*/ +void QCPAxis::setTickVector(const QVector &vec) +{ + // don't check whether mTickVector != vec here, because it takes longer than we would save + mTickVector = vec; + mCachedMarginValid = false; +} + +/*! + If you want full control over what ticks and labels the axes show, this function is used to set a + number of QStrings that will be displayed at the tick positions which you need to provide with + \ref setTickVector. These two vectors should have the same size. (Note that you need to disable + \ref setAutoTicks and \ref setAutoTickLabels first.) + + \a vec is a vector containing the labels of the ticks. The entries correspond to the respective + indices in the tick vector, passed via \ref setTickVector. + + \see setTickVector +*/ +void QCPAxis::setTickVectorLabels(const QVector &vec) +{ + // don't check whether mTickVectorLabels != vec here, because it takes longer than we would save + mTickVectorLabels = vec; + mCachedMarginValid = false; +} + +/*! + Sets the length of the ticks in pixels. \a inside is the length the ticks will reach inside the + plot and \a outside is the length they will reach outside the plot. If \a outside is greater than + zero, the tick labels and axis label will increase their distance to the axis accordingly, so + they won't collide with the ticks. + + \see setSubTickLength, setTickLengthIn, setTickLengthOut +*/ +void QCPAxis::setTickLength(int inside, int outside) +{ + setTickLengthIn(inside); + setTickLengthOut(outside); +} + +/*! + Sets the length of the inward ticks in pixels. \a inside is the length the ticks will reach + inside the plot. + + \see setTickLengthOut, setTickLength, setSubTickLength +*/ +void QCPAxis::setTickLengthIn(int inside) +{ + if (mAxisPainter->tickLengthIn != inside) + { + mAxisPainter->tickLengthIn = inside; + } +} + +/*! + Sets the length of the outward ticks in pixels. \a outside is the length the ticks will reach + outside the plot. If \a outside is greater than zero, the tick labels and axis label will + increase their distance to the axis accordingly, so they won't collide with the ticks. + + \see setTickLengthIn, setTickLength, setSubTickLength +*/ +void QCPAxis::setTickLengthOut(int outside) +{ + if (mAxisPainter->tickLengthOut != outside) + { + mAxisPainter->tickLengthOut = outside; + mCachedMarginValid = false; // only outside tick length can change margin + } +} + +/*! + Sets the number of sub ticks in one (major) tick step. A sub tick count of three for example, + divides the tick intervals in four sub intervals. + + By default, the number of sub ticks is chosen automatically in a reasonable manner as long as the + mantissa of the tick step is a multiple of 0.5. When \ref setAutoTickStep is enabled, this is + always the case. + + If you want to disable automatic sub tick count and use this function to set the count manually, + see \ref setAutoSubTicks. +*/ +void QCPAxis::setSubTickCount(int count) +{ + mSubTickCount = count; +} + +/*! + Sets the length of the subticks in pixels. \a inside is the length the subticks will reach inside + the plot and \a outside is the length they will reach outside the plot. If \a outside is greater + than zero, the tick labels and axis label will increase their distance to the axis accordingly, + so they won't collide with the ticks. + + \see setTickLength, setSubTickLengthIn, setSubTickLengthOut +*/ +void QCPAxis::setSubTickLength(int inside, int outside) +{ + setSubTickLengthIn(inside); + setSubTickLengthOut(outside); +} + +/*! + Sets the length of the inward subticks in pixels. \a inside is the length the subticks will reach inside + the plot. + + \see setSubTickLengthOut, setSubTickLength, setTickLength +*/ +void QCPAxis::setSubTickLengthIn(int inside) +{ + if (mAxisPainter->subTickLengthIn != inside) + { + mAxisPainter->subTickLengthIn = inside; + } +} + +/*! + Sets the length of the outward subticks in pixels. \a outside is the length the subticks will reach + outside the plot. If \a outside is greater than zero, the tick labels will increase their + distance to the axis accordingly, so they won't collide with the ticks. + + \see setSubTickLengthIn, setSubTickLength, setTickLength +*/ +void QCPAxis::setSubTickLengthOut(int outside) +{ + if (mAxisPainter->subTickLengthOut != outside) + { + mAxisPainter->subTickLengthOut = outside; + mCachedMarginValid = false; // only outside tick length can change margin + } +} + +/*! + Sets the pen, the axis base line is drawn with. + + \see setTickPen, setSubTickPen +*/ +void QCPAxis::setBasePen(const QPen &pen) +{ + mBasePen = pen; +} + +/*! + Sets the pen, tick marks will be drawn with. + + \see setTickLength, setBasePen +*/ +void QCPAxis::setTickPen(const QPen &pen) +{ + mTickPen = pen; +} + +/*! + Sets the pen, subtick marks will be drawn with. + + \see setSubTickCount, setSubTickLength, setBasePen +*/ +void QCPAxis::setSubTickPen(const QPen &pen) +{ + mSubTickPen = pen; +} + +/*! + Sets the font of the axis label. + + \see setLabelColor +*/ +void QCPAxis::setLabelFont(const QFont &font) +{ + if (mLabelFont != font) + { + mLabelFont = font; + mCachedMarginValid = false; + } +} + +/*! + Sets the color of the axis label. + + \see setLabelFont +*/ +void QCPAxis::setLabelColor(const QColor &color) +{ + mLabelColor = color; +} + +/*! + Sets the text of the axis label that will be shown below/above or next to the axis, depending on + its orientation. To disable axis labels, pass an empty string as \a str. +*/ +void QCPAxis::setLabel(const QString &str) +{ + if (mLabel != str) + { + mLabel = str; + mCachedMarginValid = false; + } +} + +/*! + Sets the distance between the tick labels and the axis label. + + \see setTickLabelPadding, setPadding +*/ +void QCPAxis::setLabelPadding(int padding) +{ + if (mAxisPainter->labelPadding != padding) + { + mAxisPainter->labelPadding = padding; + mCachedMarginValid = false; + } +} + +/*! + Sets the padding of the axis. + + When \ref QCPAxisRect::setAutoMargins is enabled, the padding is the additional outer most space, + that is left blank. + + The axis padding has no meaning if \ref QCPAxisRect::setAutoMargins is disabled. + + \see setLabelPadding, setTickLabelPadding +*/ +void QCPAxis::setPadding(int padding) +{ + if (mPadding != padding) + { + mPadding = padding; + mCachedMarginValid = false; + } +} + +/*! + Sets the offset the axis has to its axis rect side. + + If an axis rect side has multiple axes and automatic margin calculation is enabled for that side, + only the offset of the inner most axis has meaning (even if it is set to be invisible). The + offset of the other, outer axes is controlled automatically, to place them at appropriate + positions. +*/ +void QCPAxis::setOffset(int offset) +{ + mAxisPainter->offset = offset; +} + +/*! + Sets the font that is used for tick labels when they are selected. + + \see setTickLabelFont, setSelectableParts, setSelectedParts, QCustomPlot::setInteractions +*/ +void QCPAxis::setSelectedTickLabelFont(const QFont &font) +{ + if (font != mSelectedTickLabelFont) + { + mSelectedTickLabelFont = font; + // don't set mCachedMarginValid to false here because margin calculation is always done with non-selected fonts + } +} + +/*! + Sets the font that is used for the axis label when it is selected. + + \see setLabelFont, setSelectableParts, setSelectedParts, QCustomPlot::setInteractions +*/ +void QCPAxis::setSelectedLabelFont(const QFont &font) +{ + mSelectedLabelFont = font; + // don't set mCachedMarginValid to false here because margin calculation is always done with non-selected fonts +} + +/*! + Sets the color that is used for tick labels when they are selected. + + \see setTickLabelColor, setSelectableParts, setSelectedParts, QCustomPlot::setInteractions +*/ +void QCPAxis::setSelectedTickLabelColor(const QColor &color) +{ + if (color != mSelectedTickLabelColor) + { + mSelectedTickLabelColor = color; + } +} + +/*! + Sets the color that is used for the axis label when it is selected. + + \see setLabelColor, setSelectableParts, setSelectedParts, QCustomPlot::setInteractions +*/ +void QCPAxis::setSelectedLabelColor(const QColor &color) +{ + mSelectedLabelColor = color; +} + +/*! + Sets the pen that is used to draw the axis base line when selected. + + \see setBasePen, setSelectableParts, setSelectedParts, QCustomPlot::setInteractions +*/ +void QCPAxis::setSelectedBasePen(const QPen &pen) +{ + mSelectedBasePen = pen; +} + +/*! + Sets the pen that is used to draw the (major) ticks when selected. + + \see setTickPen, setSelectableParts, setSelectedParts, QCustomPlot::setInteractions +*/ +void QCPAxis::setSelectedTickPen(const QPen &pen) +{ + mSelectedTickPen = pen; +} + +/*! + Sets the pen that is used to draw the subticks when selected. + + \see setSubTickPen, setSelectableParts, setSelectedParts, QCustomPlot::setInteractions +*/ +void QCPAxis::setSelectedSubTickPen(const QPen &pen) +{ + mSelectedSubTickPen = pen; +} + +/*! + Sets the style for the lower axis ending. See the documentation of QCPLineEnding for available + styles. + + For horizontal axes, this method refers to the left ending, for vertical axes the bottom ending. + Note that this meaning does not change when the axis range is reversed with \ref + setRangeReversed. + + \see setUpperEnding +*/ +void QCPAxis::setLowerEnding(const QCPLineEnding &ending) +{ + mAxisPainter->lowerEnding = ending; +} + +/*! + Sets the style for the upper axis ending. See the documentation of QCPLineEnding for available + styles. + + For horizontal axes, this method refers to the right ending, for vertical axes the top ending. + Note that this meaning does not change when the axis range is reversed with \ref + setRangeReversed. + + \see setLowerEnding +*/ +void QCPAxis::setUpperEnding(const QCPLineEnding &ending) +{ + mAxisPainter->upperEnding = ending; +} + +/*! + If the scale type (\ref setScaleType) is \ref stLinear, \a diff is added to the lower and upper + bounds of the range. The range is simply moved by \a diff. + + If the scale type is \ref stLogarithmic, the range bounds are multiplied by \a diff. This + corresponds to an apparent "linear" move in logarithmic scaling by a distance of log(diff). +*/ +void QCPAxis::moveRange(double diff) +{ + QCPRange oldRange = mRange; + if (mScaleType == stLinear) + { + mRange.lower += diff; + mRange.upper += diff; + } else // mScaleType == stLogarithmic + { + mRange.lower *= diff; + mRange.upper *= diff; + } + mCachedMarginValid = false; + emit rangeChanged(mRange); + emit rangeChanged(mRange, oldRange); +} + +/*! + Scales the range of this axis by \a factor around the coordinate \a center. For example, if \a + factor is 2.0, \a center is 1.0, then the axis range will double its size, and the point at + coordinate 1.0 won't have changed its position in the QCustomPlot widget (i.e. coordinates + around 1.0 will have moved symmetrically closer to 1.0). +*/ +void QCPAxis::scaleRange(double factor, double center) +{ + QCPRange oldRange = mRange; + if (mScaleType == stLinear) + { + QCPRange newRange; + newRange.lower = (mRange.lower-center)*factor + center; + newRange.upper = (mRange.upper-center)*factor + center; + if (QCPRange::validRange(newRange)) + mRange = newRange.sanitizedForLinScale(); + } else // mScaleType == stLogarithmic + { + if ((mRange.upper < 0 && center < 0) || (mRange.upper > 0 && center > 0)) // make sure center has same sign as range + { + QCPRange newRange; + newRange.lower = qPow(mRange.lower/center, factor)*center; + newRange.upper = qPow(mRange.upper/center, factor)*center; + if (QCPRange::validRange(newRange)) + mRange = newRange.sanitizedForLogScale(); + } else + qDebug() << Q_FUNC_INFO << "Center of scaling operation doesn't lie in same logarithmic sign domain as range:" << center; + } + mCachedMarginValid = false; + emit rangeChanged(mRange); + emit rangeChanged(mRange, oldRange); +} + +/*! + Scales the range of this axis to have a certain scale \a ratio to \a otherAxis. The scaling will + be done around the center of the current axis range. + + For example, if \a ratio is 1, this axis is the \a yAxis and \a otherAxis is \a xAxis, graphs + plotted with those axes will appear in a 1:1 aspect ratio, independent of the aspect ratio the + axis rect has. + + This is an operation that changes the range of this axis once, it doesn't fix the scale ratio + indefinitely. Note that calling this function in the constructor of the QCustomPlot's parent + won't have the desired effect, since the widget dimensions aren't defined yet, and a resizeEvent + will follow. +*/ +void QCPAxis::setScaleRatio(const QCPAxis *otherAxis, double ratio) +{ + int otherPixelSize, ownPixelSize; + + if (otherAxis->orientation() == Qt::Horizontal) + otherPixelSize = otherAxis->axisRect()->width(); + else + otherPixelSize = otherAxis->axisRect()->height(); + + if (orientation() == Qt::Horizontal) + ownPixelSize = axisRect()->width(); + else + ownPixelSize = axisRect()->height(); + + double newRangeSize = ratio*otherAxis->range().size()*ownPixelSize/(double)otherPixelSize; + setRange(range().center(), newRangeSize, Qt::AlignCenter); +} + +/*! + Changes the axis range such that all plottables associated with this axis are fully visible in + that dimension. + + \see QCPAbstractPlottable::rescaleAxes, QCustomPlot::rescaleAxes +*/ +void QCPAxis::rescale(bool onlyVisiblePlottables) +{ + QList p = plottables(); + QCPRange newRange; + bool haveRange = false; + for (int i=0; irealVisibility() && onlyVisiblePlottables) + continue; + QCPRange plottableRange; + bool currentFoundRange; + QCPAbstractPlottable::SignDomain signDomain = QCPAbstractPlottable::sdBoth; + if (mScaleType == stLogarithmic) + signDomain = (mRange.upper < 0 ? QCPAbstractPlottable::sdNegative : QCPAbstractPlottable::sdPositive); + if (p.at(i)->keyAxis() == this) + plottableRange = p.at(i)->getKeyRange(currentFoundRange, signDomain); + else + plottableRange = p.at(i)->getValueRange(currentFoundRange, signDomain); + if (currentFoundRange) + { + if (!haveRange) + newRange = plottableRange; + else + newRange.expand(plottableRange); + haveRange = true; + } + } + if (haveRange) + { + if (!QCPRange::validRange(newRange)) // likely due to range being zero (plottable has only constant data in this axis dimension), shift current range to at least center the plottable + { + double center = (newRange.lower+newRange.upper)*0.5; // upper and lower should be equal anyway, but just to make sure, incase validRange returned false for other reason + if (mScaleType == stLinear) + { + newRange.lower = center-mRange.size()/2.0; + newRange.upper = center+mRange.size()/2.0; + } else // mScaleType == stLogarithmic + { + newRange.lower = center/qSqrt(mRange.upper/mRange.lower); + newRange.upper = center*qSqrt(mRange.upper/mRange.lower); + } + } + setRange(newRange); + } +} + +/*! + Transforms \a value, in pixel coordinates of the QCustomPlot widget, to axis coordinates. +*/ +double QCPAxis::pixelToCoord(double value) const +{ + if (orientation() == Qt::Horizontal) + { + if (mScaleType == stLinear) + { + if (!mRangeReversed) + return (value-mAxisRect->left())/(double)mAxisRect->width()*mRange.size()+mRange.lower; + else + return -(value-mAxisRect->left())/(double)mAxisRect->width()*mRange.size()+mRange.upper; + } else // mScaleType == stLogarithmic + { + if (!mRangeReversed) + return qPow(mRange.upper/mRange.lower, (value-mAxisRect->left())/(double)mAxisRect->width())*mRange.lower; + else + return qPow(mRange.upper/mRange.lower, (mAxisRect->left()-value)/(double)mAxisRect->width())*mRange.upper; + } + } else // orientation() == Qt::Vertical + { + if (mScaleType == stLinear) + { + if (!mRangeReversed) + return (mAxisRect->bottom()-value)/(double)mAxisRect->height()*mRange.size()+mRange.lower; + else + return -(mAxisRect->bottom()-value)/(double)mAxisRect->height()*mRange.size()+mRange.upper; + } else // mScaleType == stLogarithmic + { + if (!mRangeReversed) + return qPow(mRange.upper/mRange.lower, (mAxisRect->bottom()-value)/(double)mAxisRect->height())*mRange.lower; + else + return qPow(mRange.upper/mRange.lower, (value-mAxisRect->bottom())/(double)mAxisRect->height())*mRange.upper; + } + } +} + +/*! + Transforms \a value, in coordinates of the axis, to pixel coordinates of the QCustomPlot widget. +*/ +double QCPAxis::coordToPixel(double value) const +{ + if (orientation() == Qt::Horizontal) + { + if (mScaleType == stLinear) + { + if (!mRangeReversed) + return (value-mRange.lower)/mRange.size()*mAxisRect->width()+mAxisRect->left(); + else + return (mRange.upper-value)/mRange.size()*mAxisRect->width()+mAxisRect->left(); + } else // mScaleType == stLogarithmic + { + if (value >= 0 && mRange.upper < 0) // invalid value for logarithmic scale, just draw it outside visible range + return !mRangeReversed ? mAxisRect->right()+200 : mAxisRect->left()-200; + else if (value <= 0 && mRange.upper > 0) // invalid value for logarithmic scale, just draw it outside visible range + return !mRangeReversed ? mAxisRect->left()-200 : mAxisRect->right()+200; + else + { + if (!mRangeReversed) + return baseLog(value/mRange.lower)/baseLog(mRange.upper/mRange.lower)*mAxisRect->width()+mAxisRect->left(); + else + return baseLog(mRange.upper/value)/baseLog(mRange.upper/mRange.lower)*mAxisRect->width()+mAxisRect->left(); + } + } + } else // orientation() == Qt::Vertical + { + if (mScaleType == stLinear) + { + if (!mRangeReversed) + return mAxisRect->bottom()-(value-mRange.lower)/mRange.size()*mAxisRect->height(); + else + return mAxisRect->bottom()-(mRange.upper-value)/mRange.size()*mAxisRect->height(); + } else // mScaleType == stLogarithmic + { + if (value >= 0 && mRange.upper < 0) // invalid value for logarithmic scale, just draw it outside visible range + return !mRangeReversed ? mAxisRect->top()-200 : mAxisRect->bottom()+200; + else if (value <= 0 && mRange.upper > 0) // invalid value for logarithmic scale, just draw it outside visible range + return !mRangeReversed ? mAxisRect->bottom()+200 : mAxisRect->top()-200; + else + { + if (!mRangeReversed) + return mAxisRect->bottom()-baseLog(value/mRange.lower)/baseLog(mRange.upper/mRange.lower)*mAxisRect->height(); + else + return mAxisRect->bottom()-baseLog(mRange.upper/value)/baseLog(mRange.upper/mRange.lower)*mAxisRect->height(); + } + } + } +} + +/*! + Returns the part of the axis that is hit by \a pos (in pixels). The return value of this function + is independent of the user-selectable parts defined with \ref setSelectableParts. Further, this + function does not change the current selection state of the axis. + + If the axis is not visible (\ref setVisible), this function always returns \ref spNone. + + \see setSelectedParts, setSelectableParts, QCustomPlot::setInteractions +*/ +QCPAxis::SelectablePart QCPAxis::getPartAt(const QPointF &pos) const +{ + if (!mVisible) + return spNone; + + if (mAxisPainter->axisSelectionBox().contains(pos.toPoint())) + return spAxis; + else if (mAxisPainter->tickLabelsSelectionBox().contains(pos.toPoint())) + return spTickLabels; + else if (mAxisPainter->labelSelectionBox().contains(pos.toPoint())) + return spAxisLabel; + else + return spNone; +} + +/* inherits documentation from base class */ +double QCPAxis::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + if (!mParentPlot) return -1; + SelectablePart part = getPartAt(pos); + if ((onlySelectable && !mSelectableParts.testFlag(part)) || part == spNone) + return -1; + + if (details) + details->setValue(part); + return mParentPlot->selectionTolerance()*0.99; +} + +/*! + Returns a list of all the plottables that have this axis as key or value axis. + + If you are only interested in plottables of type QCPGraph, see \ref graphs. + + \see graphs, items +*/ +QList QCPAxis::plottables() const +{ + QList result; + if (!mParentPlot) return result; + + for (int i=0; imPlottables.size(); ++i) + { + if (mParentPlot->mPlottables.at(i)->keyAxis() == this ||mParentPlot->mPlottables.at(i)->valueAxis() == this) + result.append(mParentPlot->mPlottables.at(i)); + } + return result; +} + +/*! + Returns a list of all the graphs that have this axis as key or value axis. + + \see plottables, items +*/ +QList QCPAxis::graphs() const +{ + QList result; + if (!mParentPlot) return result; + + for (int i=0; imGraphs.size(); ++i) + { + if (mParentPlot->mGraphs.at(i)->keyAxis() == this || mParentPlot->mGraphs.at(i)->valueAxis() == this) + result.append(mParentPlot->mGraphs.at(i)); + } + return result; +} + +/*! + Returns a list of all the items that are associated with this axis. An item is considered + associated with an axis if at least one of its positions uses the axis as key or value axis. + + \see plottables, graphs +*/ +QList QCPAxis::items() const +{ + QList result; + if (!mParentPlot) return result; + + for (int itemId=0; itemIdmItems.size(); ++itemId) + { + QList positions = mParentPlot->mItems.at(itemId)->positions(); + for (int posId=0; posIdkeyAxis() == this || positions.at(posId)->valueAxis() == this) + { + result.append(mParentPlot->mItems.at(itemId)); + break; + } + } + } + return result; +} + +/*! + Transforms a margin side to the logically corresponding axis type. (QCP::msLeft to + QCPAxis::atLeft, QCP::msRight to QCPAxis::atRight, etc.) +*/ +QCPAxis::AxisType QCPAxis::marginSideToAxisType(QCP::MarginSide side) +{ + switch (side) + { + case QCP::msLeft: return atLeft; + case QCP::msRight: return atRight; + case QCP::msTop: return atTop; + case QCP::msBottom: return atBottom; + default: break; + } + qDebug() << Q_FUNC_INFO << "Invalid margin side passed:" << (int)side; + return atLeft; +} + +/*! + Returns the axis type that describes the opposite axis of an axis with the specified \a type. +*/ +QCPAxis::AxisType QCPAxis::opposite(QCPAxis::AxisType type) +{ + switch (type) + { + case atLeft: return atRight; break; + case atRight: return atLeft; break; + case atBottom: return atTop; break; + case atTop: return atBottom; break; + default: qDebug() << Q_FUNC_INFO << "invalid axis type"; return atLeft; break; + } +} + +/*! \internal + + This function is called to prepare the tick vector, sub tick vector and tick label vector. If + \ref setAutoTicks is set to true, appropriate tick values are determined automatically via \ref + generateAutoTicks. If it's set to false, the signal ticksRequest is emitted, which can be used to + provide external tick positions. Then the sub tick vectors and tick label vectors are created. +*/ +void QCPAxis::setupTickVectors() +{ + if (!mParentPlot) return; + if ((!mTicks && !mTickLabels && !mGrid->visible()) || mRange.size() <= 0) return; + + // fill tick vectors, either by auto generating or by notifying user to fill the vectors himself + if (mAutoTicks) + { + generateAutoTicks(); + } else + { + emit ticksRequest(); + } + + visibleTickBounds(mLowestVisibleTick, mHighestVisibleTick); + if (mTickVector.isEmpty()) + { + mSubTickVector.clear(); + return; + } + + // generate subticks between ticks: + mSubTickVector.resize((mTickVector.size()-1)*mSubTickCount); + if (mSubTickCount > 0) + { + double subTickStep = 0; + double subTickPosition = 0; + int subTickIndex = 0; + bool done = false; + int lowTick = mLowestVisibleTick > 0 ? mLowestVisibleTick-1 : mLowestVisibleTick; + int highTick = mHighestVisibleTick < mTickVector.size()-1 ? mHighestVisibleTick+1 : mHighestVisibleTick; + for (int i=lowTick+1; i<=highTick; ++i) + { + subTickStep = (mTickVector.at(i)-mTickVector.at(i-1))/(double)(mSubTickCount+1); + for (int k=1; k<=mSubTickCount; ++k) + { + subTickPosition = mTickVector.at(i-1) + k*subTickStep; + if (subTickPosition < mRange.lower) + continue; + if (subTickPosition > mRange.upper) + { + done = true; + break; + } + mSubTickVector[subTickIndex] = subTickPosition; + subTickIndex++; + } + if (done) break; + } + mSubTickVector.resize(subTickIndex); + } + + // generate tick labels according to tick positions: + if (mAutoTickLabels) + { + int vecsize = mTickVector.size(); + mTickVectorLabels.resize(vecsize); + if (mTickLabelType == ltNumber) + { + for (int i=mLowestVisibleTick; i<=mHighestVisibleTick; ++i) + mTickVectorLabels[i] = mParentPlot->locale().toString(mTickVector.at(i), mNumberFormatChar.toLatin1(), mNumberPrecision); + } else if (mTickLabelType == ltDateTime) + { + for (int i=mLowestVisibleTick; i<=mHighestVisibleTick; ++i) + { +#if QT_VERSION < QT_VERSION_CHECK(4, 7, 0) // use fromMSecsSinceEpoch function if available, to gain sub-second accuracy on tick labels (e.g. for format "hh:mm:ss:zzz") + mTickVectorLabels[i] = mParentPlot->locale().toString(QDateTime::fromTime_t(mTickVector.at(i)).toTimeSpec(mDateTimeSpec), mDateTimeFormat); +#else + mTickVectorLabels[i] = mParentPlot->locale().toString(QDateTime::fromMSecsSinceEpoch(mTickVector.at(i)*1000).toTimeSpec(mDateTimeSpec), mDateTimeFormat); +#endif + } + } + } else // mAutoTickLabels == false + { + if (mAutoTicks) // ticks generated automatically, but not ticklabels, so emit ticksRequest here for labels + { + emit ticksRequest(); + } + // make sure provided tick label vector has correct (minimal) length: + if (mTickVectorLabels.size() < mTickVector.size()) + mTickVectorLabels.resize(mTickVector.size()); + } +} + +/*! \internal + + If \ref setAutoTicks is set to true, this function is called by \ref setupTickVectors to + generate reasonable tick positions (and subtick count). The algorithm tries to create + approximately mAutoTickCount ticks (set via \ref setAutoTickCount). + + If the scale is logarithmic, \ref setAutoTickCount is ignored, and one tick is generated at every + power of the current logarithm base, set via \ref setScaleLogBase. +*/ +void QCPAxis::generateAutoTicks() +{ + if (mScaleType == stLinear) + { + if (mAutoTickStep) + { + // Generate tick positions according to linear scaling: + mTickStep = mRange.size()/(double)(mAutoTickCount+1e-10); // mAutoTickCount ticks on average, the small addition is to prevent jitter on exact integers + double magnitudeFactor = qPow(10.0, qFloor(qLn(mTickStep)/qLn(10.0))); // get magnitude factor e.g. 0.01, 1, 10, 1000 etc. + double tickStepMantissa = mTickStep/magnitudeFactor; + if (tickStepMantissa < 5) + { + // round digit after decimal point to 0.5 + mTickStep = (int)(tickStepMantissa*2)/2.0*magnitudeFactor; + } else + { + // round to first digit in multiples of 2 + mTickStep = (int)(tickStepMantissa/2.0)*2.0*magnitudeFactor; + } + } + if (mAutoSubTicks) + mSubTickCount = calculateAutoSubTickCount(mTickStep); + // Generate tick positions according to mTickStep: + qint64 firstStep = floor(mRange.lower/mTickStep); // do not use qFloor here, or we'll lose 64 bit precision + qint64 lastStep = ceil(mRange.upper/mTickStep); // do not use qCeil here, or we'll lose 64 bit precision + int tickcount = lastStep-firstStep+1; + if (tickcount < 0) tickcount = 0; + mTickVector.resize(tickcount); + for (int i=0; i 0 && mRange.upper > 0) // positive range + { + double lowerMag = basePow(qFloor(baseLog(mRange.lower))); + double currentMag = lowerMag; + mTickVector.clear(); + mTickVector.append(currentMag); + while (currentMag < mRange.upper && currentMag > 0) // currentMag might be zero for ranges ~1e-300, just cancel in that case + { + currentMag *= mScaleLogBase; + mTickVector.append(currentMag); + } + } else if (mRange.lower < 0 && mRange.upper < 0) // negative range + { + double lowerMag = -basePow(qCeil(baseLog(-mRange.lower))); + double currentMag = lowerMag; + mTickVector.clear(); + mTickVector.append(currentMag); + while (currentMag < mRange.upper && currentMag < 0) // currentMag might be zero for ranges ~1e-300, just cancel in that case + { + currentMag /= mScaleLogBase; + mTickVector.append(currentMag); + } + } else // invalid range for logarithmic scale, because lower and upper have different sign + { + mTickVector.clear(); + qDebug() << Q_FUNC_INFO << "Invalid range for logarithmic plot: " << mRange.lower << "-" << mRange.upper; + } + } +} + +/*! \internal + + Called by generateAutoTicks when \ref setAutoSubTicks is set to true. Depending on the \a + tickStep between two major ticks on the axis, a different number of sub ticks is appropriate. For + Example taking 4 sub ticks for a \a tickStep of 1 makes more sense than taking 5 sub ticks, + because this corresponds to a sub tick step of 0.2, instead of the less intuitive 0.16667. Note + that a subtick count of 4 means dividing the major tick step into 5 sections. + + This is implemented by a hand made lookup for integer tick steps as well as fractional tick steps + with a fractional part of (approximately) 0.5. If a tick step is different (i.e. has no + fractional part close to 0.5), the currently set sub tick count (\ref setSubTickCount) is + returned. +*/ +int QCPAxis::calculateAutoSubTickCount(double tickStep) const +{ + int result = mSubTickCount; // default to current setting, if no proper value can be found + + // get mantissa of tickstep: + double magnitudeFactor = qPow(10.0, qFloor(qLn(tickStep)/qLn(10.0))); // get magnitude factor e.g. 0.01, 1, 10, 1000 etc. + double tickStepMantissa = tickStep/magnitudeFactor; + + // separate integer and fractional part of mantissa: + double epsilon = 0.01; + double intPartf; + int intPart; + double fracPart = modf(tickStepMantissa, &intPartf); + intPart = intPartf; + + // handle cases with (almost) integer mantissa: + if (fracPart < epsilon || 1.0-fracPart < epsilon) + { + if (1.0-fracPart < epsilon) + ++intPart; + switch (intPart) + { + case 1: result = 4; break; // 1.0 -> 0.2 substep + case 2: result = 3; break; // 2.0 -> 0.5 substep + case 3: result = 2; break; // 3.0 -> 1.0 substep + case 4: result = 3; break; // 4.0 -> 1.0 substep + case 5: result = 4; break; // 5.0 -> 1.0 substep + case 6: result = 2; break; // 6.0 -> 2.0 substep + case 7: result = 6; break; // 7.0 -> 1.0 substep + case 8: result = 3; break; // 8.0 -> 2.0 substep + case 9: result = 2; break; // 9.0 -> 3.0 substep + } + } else + { + // handle cases with significantly fractional mantissa: + if (qAbs(fracPart-0.5) < epsilon) // *.5 mantissa + { + switch (intPart) + { + case 1: result = 2; break; // 1.5 -> 0.5 substep + case 2: result = 4; break; // 2.5 -> 0.5 substep + case 3: result = 4; break; // 3.5 -> 0.7 substep + case 4: result = 2; break; // 4.5 -> 1.5 substep + case 5: result = 4; break; // 5.5 -> 1.1 substep (won't occur with autoTickStep from here on) + case 6: result = 4; break; // 6.5 -> 1.3 substep + case 7: result = 2; break; // 7.5 -> 2.5 substep + case 8: result = 4; break; // 8.5 -> 1.7 substep + case 9: result = 4; break; // 9.5 -> 1.9 substep + } + } + // if mantissa fraction isnt 0.0 or 0.5, don't bother finding good sub tick marks, leave default + } + + return result; +} + +/* inherits documentation from base class */ +void QCPAxis::selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) +{ + Q_UNUSED(event) + SelectablePart part = details.value(); + if (mSelectableParts.testFlag(part)) + { + SelectableParts selBefore = mSelectedParts; + setSelectedParts(additive ? mSelectedParts^part : part); + if (selectionStateChanged) + *selectionStateChanged = mSelectedParts != selBefore; + } +} + +/* inherits documentation from base class */ +void QCPAxis::deselectEvent(bool *selectionStateChanged) +{ + SelectableParts selBefore = mSelectedParts; + setSelectedParts(mSelectedParts & ~mSelectableParts); + if (selectionStateChanged) + *selectionStateChanged = mSelectedParts != selBefore; +} + +/*! \internal + + A convenience function to easily set the QPainter::Antialiased hint on the provided \a painter + before drawing axis lines. + + This is the antialiasing state the painter passed to the \ref draw method is in by default. + + This function takes into account the local setting of the antialiasing flag as well as the + overrides set with \ref QCustomPlot::setAntialiasedElements and \ref + QCustomPlot::setNotAntialiasedElements. + + \see setAntialiased +*/ +void QCPAxis::applyDefaultAntialiasingHint(QCPPainter *painter) const +{ + applyAntialiasingHint(painter, mAntialiased, QCP::aeAxes); +} + +/*! \internal + + Draws the axis with the specified \a painter, using the internal QCPAxisPainterPrivate instance. + +*/ +void QCPAxis::draw(QCPPainter *painter) +{ + const int lowTick = mLowestVisibleTick; + const int highTick = mHighestVisibleTick; + QVector subTickPositions; // the final coordToPixel transformed vector passed to QCPAxisPainter + QVector tickPositions; // the final coordToPixel transformed vector passed to QCPAxisPainter + QVector tickLabels; // the final vector passed to QCPAxisPainter + tickPositions.reserve(highTick-lowTick+1); + tickLabels.reserve(highTick-lowTick+1); + subTickPositions.reserve(mSubTickVector.size()); + + if (mTicks) + { + for (int i=lowTick; i<=highTick; ++i) + { + tickPositions.append(coordToPixel(mTickVector.at(i))); + if (mTickLabels) + tickLabels.append(mTickVectorLabels.at(i)); + } + + if (mSubTickCount > 0) + { + const int subTickCount = mSubTickVector.size(); + for (int i=0; itype = mAxisType; + mAxisPainter->basePen = getBasePen(); + mAxisPainter->labelFont = getLabelFont(); + mAxisPainter->labelColor = getLabelColor(); + mAxisPainter->label = mLabel; + mAxisPainter->substituteExponent = mAutoTickLabels && mNumberBeautifulPowers && mTickLabelType == ltNumber; + mAxisPainter->tickPen = getTickPen(); + mAxisPainter->subTickPen = getSubTickPen(); + mAxisPainter->tickLabelFont = getTickLabelFont(); + mAxisPainter->tickLabelColor = getTickLabelColor(); + mAxisPainter->axisRect = mAxisRect->rect(); + mAxisPainter->viewportRect = mParentPlot->viewport(); + mAxisPainter->abbreviateDecimalPowers = mScaleType == stLogarithmic; + mAxisPainter->reversedEndings = mRangeReversed; + mAxisPainter->tickPositions = tickPositions; + mAxisPainter->tickLabels = tickLabels; + mAxisPainter->subTickPositions = subTickPositions; + mAxisPainter->draw(painter); +} + +/*! \internal + + Returns via \a lowIndex and \a highIndex, which ticks in the current tick vector are visible in + the current range. The return values are indices of the tick vector, not the positions of the + ticks themselves. + + The actual use of this function is when an external tick vector is provided, since it might + exceed far beyond the currently displayed range, and would cause unnecessary calculations e.g. of + subticks. + + If all ticks are outside the axis range, an inverted range is returned, i.e. highIndex will be + smaller than lowIndex. There is one case, where this function returns indices that are not really + visible in the current axis range: When the tick spacing is larger than the axis range size and + one tick is below the axis range and the next tick is already above the axis range. Because in + such cases it is usually desirable to know the tick pair, to draw proper subticks. +*/ +void QCPAxis::visibleTickBounds(int &lowIndex, int &highIndex) const +{ + bool lowFound = false; + bool highFound = false; + lowIndex = 0; + highIndex = -1; + + for (int i=0; i < mTickVector.size(); ++i) + { + if (mTickVector.at(i) >= mRange.lower) + { + lowFound = true; + lowIndex = i; + break; + } + } + for (int i=mTickVector.size()-1; i >= 0; --i) + { + if (mTickVector.at(i) <= mRange.upper) + { + highFound = true; + highIndex = i; + break; + } + } + + if (!lowFound && highFound) + lowIndex = highIndex+1; + else if (lowFound && !highFound) + highIndex = lowIndex-1; +} + +/*! \internal + + A log function with the base mScaleLogBase, used mostly for coordinate transforms in logarithmic + scales with arbitrary log base. Uses the buffered mScaleLogBaseLogInv for faster calculation. + This is set to 1.0/qLn(mScaleLogBase) in \ref setScaleLogBase. + + \see basePow, setScaleLogBase, setScaleType +*/ +double QCPAxis::baseLog(double value) const +{ + return qLn(value)*mScaleLogBaseLogInv; +} + +/*! \internal + + A power function with the base mScaleLogBase, used mostly for coordinate transforms in + logarithmic scales with arbitrary log base. + + \see baseLog, setScaleLogBase, setScaleType +*/ +double QCPAxis::basePow(double value) const +{ + return qPow(mScaleLogBase, value); +} + +/*! \internal + + Returns the pen that is used to draw the axis base line. Depending on the selection state, this + is either mSelectedBasePen or mBasePen. +*/ +QPen QCPAxis::getBasePen() const +{ + return mSelectedParts.testFlag(spAxis) ? mSelectedBasePen : mBasePen; +} + +/*! \internal + + Returns the pen that is used to draw the (major) ticks. Depending on the selection state, this + is either mSelectedTickPen or mTickPen. +*/ +QPen QCPAxis::getTickPen() const +{ + return mSelectedParts.testFlag(spAxis) ? mSelectedTickPen : mTickPen; +} + +/*! \internal + + Returns the pen that is used to draw the subticks. Depending on the selection state, this + is either mSelectedSubTickPen or mSubTickPen. +*/ +QPen QCPAxis::getSubTickPen() const +{ + return mSelectedParts.testFlag(spAxis) ? mSelectedSubTickPen : mSubTickPen; +} + +/*! \internal + + Returns the font that is used to draw the tick labels. Depending on the selection state, this + is either mSelectedTickLabelFont or mTickLabelFont. +*/ +QFont QCPAxis::getTickLabelFont() const +{ + return mSelectedParts.testFlag(spTickLabels) ? mSelectedTickLabelFont : mTickLabelFont; +} + +/*! \internal + + Returns the font that is used to draw the axis label. Depending on the selection state, this + is either mSelectedLabelFont or mLabelFont. +*/ +QFont QCPAxis::getLabelFont() const +{ + return mSelectedParts.testFlag(spAxisLabel) ? mSelectedLabelFont : mLabelFont; +} + +/*! \internal + + Returns the color that is used to draw the tick labels. Depending on the selection state, this + is either mSelectedTickLabelColor or mTickLabelColor. +*/ +QColor QCPAxis::getTickLabelColor() const +{ + return mSelectedParts.testFlag(spTickLabels) ? mSelectedTickLabelColor : mTickLabelColor; +} + +/*! \internal + + Returns the color that is used to draw the axis label. Depending on the selection state, this + is either mSelectedLabelColor or mLabelColor. +*/ +QColor QCPAxis::getLabelColor() const +{ + return mSelectedParts.testFlag(spAxisLabel) ? mSelectedLabelColor : mLabelColor; +} + +/*! \internal + + Returns the appropriate outward margin for this axis. It is needed if \ref + QCPAxisRect::setAutoMargins is set to true on the parent axis rect. An axis with axis type \ref + atLeft will return an appropriate left margin, \ref atBottom will return an appropriate bottom + margin and so forth. For the calculation, this function goes through similar steps as \ref draw, + so changing one function likely requires the modification of the other one as well. + + The margin consists of the outward tick length, tick label padding, tick label size, label + padding, label size, and padding. + + The margin is cached internally, so repeated calls while leaving the axis range, fonts, etc. + unchanged are very fast. +*/ +int QCPAxis::calculateMargin() +{ + if (!mVisible) // if not visible, directly return 0, don't cache 0 because we can't react to setVisible in QCPAxis + return 0; + + if (mCachedMarginValid) + return mCachedMargin; + + // run through similar steps as QCPAxis::draw, and caluclate margin needed to fit axis and its labels + int margin = 0; + + int lowTick, highTick; + visibleTickBounds(lowTick, highTick); + QVector tickPositions; // the final coordToPixel transformed vector passed to QCPAxisPainter + QVector tickLabels; // the final vector passed to QCPAxisPainter + tickPositions.reserve(highTick-lowTick+1); + tickLabels.reserve(highTick-lowTick+1); + if (mTicks) + { + for (int i=lowTick; i<=highTick; ++i) + { + tickPositions.append(coordToPixel(mTickVector.at(i))); + if (mTickLabels) + tickLabels.append(mTickVectorLabels.at(i)); + } + } + // transfer all properties of this axis to QCPAxisPainterPrivate which it needs to calculate the size. + // Note that some axis painter properties are already set by direct feed-through with QCPAxis setters + mAxisPainter->type = mAxisType; + mAxisPainter->labelFont = getLabelFont(); + mAxisPainter->label = mLabel; + mAxisPainter->tickLabelFont = mTickLabelFont; + mAxisPainter->axisRect = mAxisRect->rect(); + mAxisPainter->viewportRect = mParentPlot->viewport(); + mAxisPainter->tickPositions = tickPositions; + mAxisPainter->tickLabels = tickLabels; + margin += mAxisPainter->size(); + margin += mPadding; + + mCachedMargin = margin; + mCachedMarginValid = true; + return margin; +} + +/* inherits documentation from base class */ +QCP::Interaction QCPAxis::selectionCategory() const +{ + return QCP::iSelectAxes; +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPAxisPainterPrivate +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPAxisPainterPrivate + + \internal + \brief (Private) + + This is a private class and not part of the public QCustomPlot interface. + + It is used by QCPAxis to do the low-level drawing of axis backbone, tick marks, tick labels and + axis label. It also buffers the labels to reduce replot times. The parameters are configured by + directly accessing the public member variables. +*/ + +/*! + Constructs a QCPAxisPainterPrivate instance. Make sure to not create a new instance on every + redraw, to utilize the caching mechanisms. +*/ +QCPAxisPainterPrivate::QCPAxisPainterPrivate(QCustomPlot *parentPlot) : + type(QCPAxis::atLeft), + basePen(QPen(Qt::black, 0, Qt::SolidLine, Qt::SquareCap)), + lowerEnding(QCPLineEnding::esNone), + upperEnding(QCPLineEnding::esNone), + labelPadding(0), + tickLabelPadding(0), + tickLabelRotation(0), + tickLabelSide(QCPAxis::lsOutside), + substituteExponent(true), + numberMultiplyCross(false), + tickLengthIn(5), + tickLengthOut(0), + subTickLengthIn(2), + subTickLengthOut(0), + tickPen(QPen(Qt::black, 0, Qt::SolidLine, Qt::SquareCap)), + subTickPen(QPen(Qt::black, 0, Qt::SolidLine, Qt::SquareCap)), + offset(0), + abbreviateDecimalPowers(false), + reversedEndings(false), + mParentPlot(parentPlot), + mLabelCache(16) // cache at most 16 (tick) labels +{ +} + +QCPAxisPainterPrivate::~QCPAxisPainterPrivate() +{ +} + +/*! \internal + + Draws the axis with the specified \a painter. + + The selection boxes (mAxisSelectionBox, mTickLabelsSelectionBox, mLabelSelectionBox) are set + here, too. +*/ +void QCPAxisPainterPrivate::draw(QCPPainter *painter) +{ + QByteArray newHash = generateLabelParameterHash(); + if (newHash != mLabelParameterHash) + { + mLabelCache.clear(); + mLabelParameterHash = newHash; + } + + QPoint origin; + switch (type) + { + case QCPAxis::atLeft: origin = axisRect.bottomLeft() +QPoint(-offset, 0); break; + case QCPAxis::atRight: origin = axisRect.bottomRight()+QPoint(+offset, 0); break; + case QCPAxis::atTop: origin = axisRect.topLeft() +QPoint(0, -offset); break; + case QCPAxis::atBottom: origin = axisRect.bottomLeft() +QPoint(0, +offset); break; + } + + double xCor = 0, yCor = 0; // paint system correction, for pixel exact matches (affects baselines and ticks of top/right axes) + switch (type) + { + case QCPAxis::atTop: yCor = -1; break; + case QCPAxis::atRight: xCor = 1; break; + default: break; + } + int margin = 0; + // draw baseline: + QLineF baseLine; + painter->setPen(basePen); + if (QCPAxis::orientation(type) == Qt::Horizontal) + baseLine.setPoints(origin+QPointF(xCor, yCor), origin+QPointF(axisRect.width()+xCor, yCor)); + else + baseLine.setPoints(origin+QPointF(xCor, yCor), origin+QPointF(xCor, -axisRect.height()+yCor)); + if (reversedEndings) + baseLine = QLineF(baseLine.p2(), baseLine.p1()); // won't make a difference for line itself, but for line endings later + painter->drawLine(baseLine); + + // draw ticks: + if (!tickPositions.isEmpty()) + { + painter->setPen(tickPen); + int tickDir = (type == QCPAxis::atBottom || type == QCPAxis::atRight) ? -1 : 1; // direction of ticks ("inward" is right for left axis and left for right axis) + if (QCPAxis::orientation(type) == Qt::Horizontal) + { + for (int i=0; idrawLine(QLineF(tickPositions.at(i)+xCor, origin.y()-tickLengthOut*tickDir+yCor, tickPositions.at(i)+xCor, origin.y()+tickLengthIn*tickDir+yCor)); + } else + { + for (int i=0; idrawLine(QLineF(origin.x()-tickLengthOut*tickDir+xCor, tickPositions.at(i)+yCor, origin.x()+tickLengthIn*tickDir+xCor, tickPositions.at(i)+yCor)); + } + } + + // draw subticks: + if (!subTickPositions.isEmpty()) + { + painter->setPen(subTickPen); + // direction of ticks ("inward" is right for left axis and left for right axis) + int tickDir = (type == QCPAxis::atBottom || type == QCPAxis::atRight) ? -1 : 1; + if (QCPAxis::orientation(type) == Qt::Horizontal) + { + for (int i=0; idrawLine(QLineF(subTickPositions.at(i)+xCor, origin.y()-subTickLengthOut*tickDir+yCor, subTickPositions.at(i)+xCor, origin.y()+subTickLengthIn*tickDir+yCor)); + } else + { + for (int i=0; idrawLine(QLineF(origin.x()-subTickLengthOut*tickDir+xCor, subTickPositions.at(i)+yCor, origin.x()+subTickLengthIn*tickDir+xCor, subTickPositions.at(i)+yCor)); + } + } + margin += qMax(0, qMax(tickLengthOut, subTickLengthOut)); + + // draw axis base endings: + bool antialiasingBackup = painter->antialiasing(); + painter->setAntialiasing(true); // always want endings to be antialiased, even if base and ticks themselves aren't + painter->setBrush(QBrush(basePen.color())); + QVector2D baseLineVector(baseLine.dx(), baseLine.dy()); + if (lowerEnding.style() != QCPLineEnding::esNone) + lowerEnding.draw(painter, QVector2D(baseLine.p1())-baseLineVector.normalized()*lowerEnding.realLength()*(lowerEnding.inverted()?-1:1), -baseLineVector); + if (upperEnding.style() != QCPLineEnding::esNone) + upperEnding.draw(painter, QVector2D(baseLine.p2())+baseLineVector.normalized()*upperEnding.realLength()*(upperEnding.inverted()?-1:1), baseLineVector); + painter->setAntialiasing(antialiasingBackup); + + // tick labels: + QRect oldClipRect; + if (tickLabelSide == QCPAxis::lsInside) // if using inside labels, clip them to the axis rect + { + oldClipRect = painter->clipRegion().boundingRect(); + painter->setClipRect(axisRect); + } + QSize tickLabelsSize(0, 0); // size of largest tick label, for offset calculation of axis label + if (!tickLabels.isEmpty()) + { + if (tickLabelSide == QCPAxis::lsOutside) + margin += tickLabelPadding; + painter->setFont(tickLabelFont); + painter->setPen(QPen(tickLabelColor)); + const int maxLabelIndex = qMin(tickPositions.size(), tickLabels.size()); + int distanceToAxis = margin; + if (tickLabelSide == QCPAxis::lsInside) + distanceToAxis = -(qMax(tickLengthIn, subTickLengthIn)+tickLabelPadding); + for (int i=0; isetClipRect(oldClipRect); + + // axis label: + QRect labelBounds; + if (!label.isEmpty()) + { + margin += labelPadding; + painter->setFont(labelFont); + painter->setPen(QPen(labelColor)); + labelBounds = painter->fontMetrics().boundingRect(0, 0, 0, 0, Qt::TextDontClip, label); + if (type == QCPAxis::atLeft) + { + QTransform oldTransform = painter->transform(); + painter->translate((origin.x()-margin-labelBounds.height()), origin.y()); + painter->rotate(-90); + painter->drawText(0, 0, axisRect.height(), labelBounds.height(), Qt::TextDontClip | Qt::AlignCenter, label); + painter->setTransform(oldTransform); + } + else if (type == QCPAxis::atRight) + { + QTransform oldTransform = painter->transform(); + painter->translate((origin.x()+margin+labelBounds.height()), origin.y()-axisRect.height()); + painter->rotate(90); + painter->drawText(0, 0, axisRect.height(), labelBounds.height(), Qt::TextDontClip | Qt::AlignCenter, label); + painter->setTransform(oldTransform); + } + else if (type == QCPAxis::atTop) + painter->drawText(origin.x(), origin.y()-margin-labelBounds.height(), axisRect.width(), labelBounds.height(), Qt::TextDontClip | Qt::AlignCenter, label); + else if (type == QCPAxis::atBottom) + painter->drawText(origin.x(), origin.y()+margin, axisRect.width(), labelBounds.height(), Qt::TextDontClip | Qt::AlignCenter, label); + } + + // set selection boxes: + int selectionTolerance = 0; + if (mParentPlot) + selectionTolerance = mParentPlot->selectionTolerance(); + else + qDebug() << Q_FUNC_INFO << "mParentPlot is null"; + int selAxisOutSize = qMax(qMax(tickLengthOut, subTickLengthOut), selectionTolerance); + int selAxisInSize = selectionTolerance; + int selTickLabelSize; + int selTickLabelOffset; + if (tickLabelSide == QCPAxis::lsOutside) + { + selTickLabelSize = (QCPAxis::orientation(type) == Qt::Horizontal ? tickLabelsSize.height() : tickLabelsSize.width()); + selTickLabelOffset = qMax(tickLengthOut, subTickLengthOut)+tickLabelPadding; + } else + { + selTickLabelSize = -(QCPAxis::orientation(type) == Qt::Horizontal ? tickLabelsSize.height() : tickLabelsSize.width()); + selTickLabelOffset = -(qMax(tickLengthIn, subTickLengthIn)+tickLabelPadding); + } + int selLabelSize = labelBounds.height(); + int selLabelOffset = qMax(tickLengthOut, subTickLengthOut)+(!tickLabels.isEmpty() && tickLabelSide == QCPAxis::lsOutside ? tickLabelPadding+selTickLabelSize : 0)+labelPadding; + if (type == QCPAxis::atLeft) + { + mAxisSelectionBox.setCoords(origin.x()-selAxisOutSize, axisRect.top(), origin.x()+selAxisInSize, axisRect.bottom()); + mTickLabelsSelectionBox.setCoords(origin.x()-selTickLabelOffset-selTickLabelSize, axisRect.top(), origin.x()-selTickLabelOffset, axisRect.bottom()); + mLabelSelectionBox.setCoords(origin.x()-selLabelOffset-selLabelSize, axisRect.top(), origin.x()-selLabelOffset, axisRect.bottom()); + } else if (type == QCPAxis::atRight) + { + mAxisSelectionBox.setCoords(origin.x()-selAxisInSize, axisRect.top(), origin.x()+selAxisOutSize, axisRect.bottom()); + mTickLabelsSelectionBox.setCoords(origin.x()+selTickLabelOffset+selTickLabelSize, axisRect.top(), origin.x()+selTickLabelOffset, axisRect.bottom()); + mLabelSelectionBox.setCoords(origin.x()+selLabelOffset+selLabelSize, axisRect.top(), origin.x()+selLabelOffset, axisRect.bottom()); + } else if (type == QCPAxis::atTop) + { + mAxisSelectionBox.setCoords(axisRect.left(), origin.y()-selAxisOutSize, axisRect.right(), origin.y()+selAxisInSize); + mTickLabelsSelectionBox.setCoords(axisRect.left(), origin.y()-selTickLabelOffset-selTickLabelSize, axisRect.right(), origin.y()-selTickLabelOffset); + mLabelSelectionBox.setCoords(axisRect.left(), origin.y()-selLabelOffset-selLabelSize, axisRect.right(), origin.y()-selLabelOffset); + } else if (type == QCPAxis::atBottom) + { + mAxisSelectionBox.setCoords(axisRect.left(), origin.y()-selAxisInSize, axisRect.right(), origin.y()+selAxisOutSize); + mTickLabelsSelectionBox.setCoords(axisRect.left(), origin.y()+selTickLabelOffset+selTickLabelSize, axisRect.right(), origin.y()+selTickLabelOffset); + mLabelSelectionBox.setCoords(axisRect.left(), origin.y()+selLabelOffset+selLabelSize, axisRect.right(), origin.y()+selLabelOffset); + } + mAxisSelectionBox = mAxisSelectionBox.normalized(); + mTickLabelsSelectionBox = mTickLabelsSelectionBox.normalized(); + mLabelSelectionBox = mLabelSelectionBox.normalized(); + // draw hitboxes for debug purposes: + //painter->setBrush(Qt::NoBrush); + //painter->drawRects(QVector() << mAxisSelectionBox << mTickLabelsSelectionBox << mLabelSelectionBox); +} + +/*! \internal + + Returns the size ("margin" in QCPAxisRect context, so measured perpendicular to the axis backbone + direction) needed to fit the axis. +*/ +int QCPAxisPainterPrivate::size() const +{ + int result = 0; + + // get length of tick marks pointing outwards: + if (!tickPositions.isEmpty()) + result += qMax(0, qMax(tickLengthOut, subTickLengthOut)); + + // calculate size of tick labels: + if (tickLabelSide == QCPAxis::lsOutside) + { + QSize tickLabelsSize(0, 0); + if (!tickLabels.isEmpty()) + { + for (int i=0; iplottingHints().testFlag(QCP::phCacheLabels) && !painter->modes().testFlag(QCPPainter::pmNoCaching)) // label caching enabled + { + CachedLabel *cachedLabel = mLabelCache.take(text); // attempt to get label from cache + if (!cachedLabel) // no cached label existed, create it + { + cachedLabel = new CachedLabel; + TickLabelData labelData = getTickLabelData(painter->font(), text); + cachedLabel->offset = getTickLabelDrawOffset(labelData)+labelData.rotatedTotalBounds.topLeft(); + cachedLabel->pixmap = QPixmap(labelData.rotatedTotalBounds.size()); + cachedLabel->pixmap.fill(Qt::transparent); + QCPPainter cachePainter(&cachedLabel->pixmap); + cachePainter.setPen(painter->pen()); + drawTickLabel(&cachePainter, -labelData.rotatedTotalBounds.topLeft().x(), -labelData.rotatedTotalBounds.topLeft().y(), labelData); + } + // if label would be partly clipped by widget border on sides, don't draw it (only for outside tick labels): + bool labelClippedByBorder = false; + if (tickLabelSide == QCPAxis::lsOutside) + { + if (QCPAxis::orientation(type) == Qt::Horizontal) + labelClippedByBorder = labelAnchor.x()+cachedLabel->offset.x()+cachedLabel->pixmap.width() > viewportRect.right() || labelAnchor.x()+cachedLabel->offset.x() < viewportRect.left(); + else + labelClippedByBorder = labelAnchor.y()+cachedLabel->offset.y()+cachedLabel->pixmap.height() > viewportRect.bottom() || labelAnchor.y()+cachedLabel->offset.y() < viewportRect.top(); + } + if (!labelClippedByBorder) + { + painter->drawPixmap(labelAnchor+cachedLabel->offset, cachedLabel->pixmap); + finalSize = cachedLabel->pixmap.size(); + } + mLabelCache.insert(text, cachedLabel); // return label to cache or insert for the first time if newly created + } else // label caching disabled, draw text directly on surface: + { + TickLabelData labelData = getTickLabelData(painter->font(), text); + QPointF finalPosition = labelAnchor + getTickLabelDrawOffset(labelData); + // if label would be partly clipped by widget border on sides, don't draw it (only for outside tick labels): + bool labelClippedByBorder = false; + if (tickLabelSide == QCPAxis::lsOutside) + { + if (QCPAxis::orientation(type) == Qt::Horizontal) + labelClippedByBorder = finalPosition.x()+(labelData.rotatedTotalBounds.width()+labelData.rotatedTotalBounds.left()) > viewportRect.right() || finalPosition.x()+labelData.rotatedTotalBounds.left() < viewportRect.left(); + else + labelClippedByBorder = finalPosition.y()+(labelData.rotatedTotalBounds.height()+labelData.rotatedTotalBounds.top()) > viewportRect.bottom() || finalPosition.y()+labelData.rotatedTotalBounds.top() < viewportRect.top(); + } + if (!labelClippedByBorder) + { + drawTickLabel(painter, finalPosition.x(), finalPosition.y(), labelData); + finalSize = labelData.rotatedTotalBounds.size(); + } + } + + // expand passed tickLabelsSize if current tick label is larger: + if (finalSize.width() > tickLabelsSize->width()) + tickLabelsSize->setWidth(finalSize.width()); + if (finalSize.height() > tickLabelsSize->height()) + tickLabelsSize->setHeight(finalSize.height()); +} + +/*! \internal + + This is a \ref placeTickLabel helper function. + + Draws the tick label specified in \a labelData with \a painter at the pixel positions \a x and \a + y. This function is used by \ref placeTickLabel to create new tick labels for the cache, or to + directly draw the labels on the QCustomPlot surface when label caching is disabled, i.e. when + QCP::phCacheLabels plotting hint is not set. +*/ +void QCPAxisPainterPrivate::drawTickLabel(QCPPainter *painter, double x, double y, const TickLabelData &labelData) const +{ + // backup painter settings that we're about to change: + QTransform oldTransform = painter->transform(); + QFont oldFont = painter->font(); + + // transform painter to position/rotation: + painter->translate(x, y); + if (!qFuzzyIsNull(tickLabelRotation)) + painter->rotate(tickLabelRotation); + + // draw text: + if (!labelData.expPart.isEmpty()) // indicator that beautiful powers must be used + { + painter->setFont(labelData.baseFont); + painter->drawText(0, 0, 0, 0, Qt::TextDontClip, labelData.basePart); + painter->setFont(labelData.expFont); + painter->drawText(labelData.baseBounds.width()+1, 0, labelData.expBounds.width(), labelData.expBounds.height(), Qt::TextDontClip, labelData.expPart); + } else + { + painter->setFont(labelData.baseFont); + painter->drawText(0, 0, labelData.totalBounds.width(), labelData.totalBounds.height(), Qt::TextDontClip | Qt::AlignHCenter, labelData.basePart); + } + + // reset painter settings to what it was before: + painter->setTransform(oldTransform); + painter->setFont(oldFont); +} + +/*! \internal + + This is a \ref placeTickLabel helper function. + + Transforms the passed \a text and \a font to a tickLabelData structure that can then be further + processed by \ref getTickLabelDrawOffset and \ref drawTickLabel. It splits the text into base and + exponent if necessary (member substituteExponent) and calculates appropriate bounding boxes. +*/ +QCPAxisPainterPrivate::TickLabelData QCPAxisPainterPrivate::getTickLabelData(const QFont &font, const QString &text) const +{ + TickLabelData result; + + // determine whether beautiful decimal powers should be used + bool useBeautifulPowers = false; + int ePos = -1; + if (substituteExponent) + { + ePos = text.indexOf(QLatin1Char('e')); + if (ePos > -1) + useBeautifulPowers = true; + } + + // calculate text bounding rects and do string preparation for beautiful decimal powers: + result.baseFont = font; + if (result.baseFont.pointSizeF() > 0) // might return -1 if specified with setPixelSize, in that case we can't do correction in next line + result.baseFont.setPointSizeF(result.baseFont.pointSizeF()+0.05); // QFontMetrics.boundingRect has a bug for exact point sizes that make the results oscillate due to internal rounding + if (useBeautifulPowers) + { + // split text into parts of number/symbol that will be drawn normally and part that will be drawn as exponent: + result.basePart = text.left(ePos); + // in log scaling, we want to turn "1*10^n" into "10^n", else add multiplication sign and decimal base: + if (abbreviateDecimalPowers && result.basePart == QLatin1String("1")) + result.basePart = QLatin1String("10"); + else + result.basePart += (numberMultiplyCross ? QString(QChar(215)) : QString(QChar(183))) + QLatin1String("10"); + result.expPart = text.mid(ePos+1); + // clip "+" and leading zeros off expPart: + while (result.expPart.length() > 2 && result.expPart.at(1) == QLatin1Char('0')) // length > 2 so we leave one zero when numberFormatChar is 'e' + result.expPart.remove(1, 1); + if (!result.expPart.isEmpty() && result.expPart.at(0) == QLatin1Char('+')) + result.expPart.remove(0, 1); + // prepare smaller font for exponent: + result.expFont = font; + if (result.expFont.pointSize() > 0) + result.expFont.setPointSize(result.expFont.pointSize()*0.75); + else + result.expFont.setPixelSize(result.expFont.pixelSize()*0.75); + // calculate bounding rects of base part, exponent part and total one: + result.baseBounds = QFontMetrics(result.baseFont).boundingRect(0, 0, 0, 0, Qt::TextDontClip, result.basePart); + result.expBounds = QFontMetrics(result.expFont).boundingRect(0, 0, 0, 0, Qt::TextDontClip, result.expPart); + result.totalBounds = result.baseBounds.adjusted(0, 0, result.expBounds.width()+2, 0); // +2 consists of the 1 pixel spacing between base and exponent (see drawTickLabel) and an extra pixel to include AA + } else // useBeautifulPowers == false + { + result.basePart = text; + result.totalBounds = QFontMetrics(result.baseFont).boundingRect(0, 0, 0, 0, Qt::TextDontClip | Qt::AlignHCenter, result.basePart); + } + result.totalBounds.moveTopLeft(QPoint(0, 0)); // want bounding box aligned top left at origin, independent of how it was created, to make further processing simpler + + // calculate possibly different bounding rect after rotation: + result.rotatedTotalBounds = result.totalBounds; + if (!qFuzzyIsNull(tickLabelRotation)) + { + QTransform transform; + transform.rotate(tickLabelRotation); + result.rotatedTotalBounds = transform.mapRect(result.rotatedTotalBounds); + } + + return result; +} + +/*! \internal + + This is a \ref placeTickLabel helper function. + + Calculates the offset at which the top left corner of the specified tick label shall be drawn. + The offset is relative to a point right next to the tick the label belongs to. + + This function is thus responsible for e.g. centering tick labels under ticks and positioning them + appropriately when they are rotated. +*/ +QPointF QCPAxisPainterPrivate::getTickLabelDrawOffset(const TickLabelData &labelData) const +{ + /* + calculate label offset from base point at tick (non-trivial, for best visual appearance): short + explanation for bottom axis: The anchor, i.e. the point in the label that is placed + horizontally under the corresponding tick is always on the label side that is closer to the + axis (e.g. the left side of the text when we're rotating clockwise). On that side, the height + is halved and the resulting point is defined the anchor. This way, a 90 degree rotated text + will be centered under the tick (i.e. displaced horizontally by half its height). At the same + time, a 45 degree rotated text will "point toward" its tick, as is typical for rotated tick + labels. + */ + bool doRotation = !qFuzzyIsNull(tickLabelRotation); + bool flip = qFuzzyCompare(qAbs(tickLabelRotation), 90.0); // perfect +/-90 degree flip. Indicates vertical label centering on vertical axes. + double radians = tickLabelRotation/180.0*M_PI; + int x=0, y=0; + if ((type == QCPAxis::atLeft && tickLabelSide == QCPAxis::lsOutside) || (type == QCPAxis::atRight && tickLabelSide == QCPAxis::lsInside)) // Anchor at right side of tick label + { + if (doRotation) + { + if (tickLabelRotation > 0) + { + x = -qCos(radians)*labelData.totalBounds.width(); + y = flip ? -labelData.totalBounds.width()/2.0 : -qSin(radians)*labelData.totalBounds.width()-qCos(radians)*labelData.totalBounds.height()/2.0; + } else + { + x = -qCos(-radians)*labelData.totalBounds.width()-qSin(-radians)*labelData.totalBounds.height(); + y = flip ? +labelData.totalBounds.width()/2.0 : +qSin(-radians)*labelData.totalBounds.width()-qCos(-radians)*labelData.totalBounds.height()/2.0; + } + } else + { + x = -labelData.totalBounds.width(); + y = -labelData.totalBounds.height()/2.0; + } + } else if ((type == QCPAxis::atRight && tickLabelSide == QCPAxis::lsOutside) || (type == QCPAxis::atLeft && tickLabelSide == QCPAxis::lsInside)) // Anchor at left side of tick label + { + if (doRotation) + { + if (tickLabelRotation > 0) + { + x = +qSin(radians)*labelData.totalBounds.height(); + y = flip ? -labelData.totalBounds.width()/2.0 : -qCos(radians)*labelData.totalBounds.height()/2.0; + } else + { + x = 0; + y = flip ? +labelData.totalBounds.width()/2.0 : -qCos(-radians)*labelData.totalBounds.height()/2.0; + } + } else + { + x = 0; + y = -labelData.totalBounds.height()/2.0; + } + } else if ((type == QCPAxis::atTop && tickLabelSide == QCPAxis::lsOutside) || (type == QCPAxis::atBottom && tickLabelSide == QCPAxis::lsInside)) // Anchor at bottom side of tick label + { + if (doRotation) + { + if (tickLabelRotation > 0) + { + x = -qCos(radians)*labelData.totalBounds.width()+qSin(radians)*labelData.totalBounds.height()/2.0; + y = -qSin(radians)*labelData.totalBounds.width()-qCos(radians)*labelData.totalBounds.height(); + } else + { + x = -qSin(-radians)*labelData.totalBounds.height()/2.0; + y = -qCos(-radians)*labelData.totalBounds.height(); + } + } else + { + x = -labelData.totalBounds.width()/2.0; + y = -labelData.totalBounds.height(); + } + } else if ((type == QCPAxis::atBottom && tickLabelSide == QCPAxis::lsOutside) || (type == QCPAxis::atTop && tickLabelSide == QCPAxis::lsInside)) // Anchor at top side of tick label + { + if (doRotation) + { + if (tickLabelRotation > 0) + { + x = +qSin(radians)*labelData.totalBounds.height()/2.0; + y = 0; + } else + { + x = -qCos(-radians)*labelData.totalBounds.width()-qSin(-radians)*labelData.totalBounds.height()/2.0; + y = +qSin(-radians)*labelData.totalBounds.width(); + } + } else + { + x = -labelData.totalBounds.width()/2.0; + y = 0; + } + } + + return QPointF(x, y); +} + +/*! \internal + + Simulates the steps done by \ref placeTickLabel by calculating bounding boxes of the text label + to be drawn, depending on number format etc. Since only the largest tick label is wanted for the + margin calculation, the passed \a tickLabelsSize is only expanded, if it's currently set to a + smaller width/height. +*/ +void QCPAxisPainterPrivate::getMaxTickLabelSize(const QFont &font, const QString &text, QSize *tickLabelsSize) const +{ + // note: this function must return the same tick label sizes as the placeTickLabel function. + QSize finalSize; + if (mParentPlot->plottingHints().testFlag(QCP::phCacheLabels) && mLabelCache.contains(text)) // label caching enabled and have cached label + { + const CachedLabel *cachedLabel = mLabelCache.object(text); + finalSize = cachedLabel->pixmap.size(); + } else // label caching disabled or no label with this text cached: + { + TickLabelData labelData = getTickLabelData(font, text); + finalSize = labelData.rotatedTotalBounds.size(); + } + + // expand passed tickLabelsSize if current tick label is larger: + if (finalSize.width() > tickLabelsSize->width()) + tickLabelsSize->setWidth(finalSize.width()); + if (finalSize.height() > tickLabelsSize->height()) + tickLabelsSize->setHeight(finalSize.height()); +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPAbstractPlottable +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPAbstractPlottable + \brief The abstract base class for all data representing objects in a plot. + + It defines a very basic interface like name, pen, brush, visibility etc. Since this class is + abstract, it can't be instantiated. Use one of the subclasses or create a subclass yourself to + create new ways of displaying data (see "Creating own plottables" below). + + All further specifics are in the subclasses, for example: + \li A normal graph with possibly a line, scatter points and error bars: \ref QCPGraph + (typically created with \ref QCustomPlot::addGraph) + \li A parametric curve: \ref QCPCurve + \li A bar chart: \ref QCPBars + \li A statistical box plot: \ref QCPStatisticalBox + \li A color encoded two-dimensional map: \ref QCPColorMap + \li An OHLC/Candlestick chart: \ref QCPFinancial + + \section plottables-subclassing Creating own plottables + + To create an own plottable, you implement a subclass of QCPAbstractPlottable. These are the pure + virtual functions, you must implement: + \li \ref clearData + \li \ref selectTest + \li \ref draw + \li \ref drawLegendIcon + \li \ref getKeyRange + \li \ref getValueRange + + See the documentation of those functions for what they need to do. + + For drawing your plot, you can use the \ref coordsToPixels functions to translate a point in plot + coordinates to pixel coordinates. This function is quite convenient, because it takes the + orientation of the key and value axes into account for you (x and y are swapped when the key axis + is vertical and the value axis horizontal). If you are worried about performance (i.e. you need + to translate many points in a loop like QCPGraph), you can directly use \ref + QCPAxis::coordToPixel. However, you must then take care about the orientation of the axis + yourself. + + Here are some important members you inherit from QCPAbstractPlottable: + + + + + + + + + + + + + + + + + + + + + + + + + + +
QCustomPlot *\b mParentPlotA pointer to the parent QCustomPlot instance. The parent plot is inferred from the axes that are passed in the constructor.
QString \b mNameThe name of the plottable.
QPen \b mPenThe generic pen of the plottable. You should use this pen for the most prominent data representing lines in the plottable (e.g QCPGraph uses this pen for its graph lines and scatters)
QPen \b mSelectedPenThe generic pen that should be used when the plottable is selected (hint: \ref mainPen gives you the right pen, depending on selection state).
QBrush \b mBrushThe generic brush of the plottable. You should use this brush for the most prominent fillable structures in the plottable (e.g. QCPGraph uses this brush to control filling under the graph)
QBrush \b mSelectedBrushThe generic brush that should be used when the plottable is selected (hint: \ref mainBrush gives you the right brush, depending on selection state).
QPointer\b mKeyAxis, \b mValueAxisThe key and value axes this plottable is attached to. Call their QCPAxis::coordToPixel functions to translate coordinates to pixels in either the key or value dimension. + Make sure to check whether the pointer is null before using it. If one of the axes is null, don't draw the plottable.
bool \b mSelectedindicates whether the plottable is selected or not.
+*/ + +/* start of documentation of pure virtual functions */ + +/*! \fn void QCPAbstractPlottable::clearData() = 0 + Clears all data in the plottable. +*/ + +/*! \fn void QCPAbstractPlottable::drawLegendIcon(QCPPainter *painter, const QRect &rect) const = 0 + \internal + + called by QCPLegend::draw (via QCPPlottableLegendItem::draw) to create a graphical representation + of this plottable inside \a rect, next to the plottable name. + + The passed \a painter has its cliprect set to \a rect, so painting outside of \a rect won't + appear outside the legend icon border. +*/ + +/*! \fn QCPRange QCPAbstractPlottable::getKeyRange(bool &foundRange, SignDomain inSignDomain) const = 0 + \internal + + called by rescaleAxes functions to get the full data key bounds. For logarithmic plots, one can + set \a inSignDomain to either \ref sdNegative or \ref sdPositive in order to restrict the + returned range to that sign domain. E.g. when only negative range is wanted, set \a inSignDomain + to \ref sdNegative and all positive points will be ignored for range calculation. For no + restriction, just set \a inSignDomain to \ref sdBoth (default). \a foundRange is an output + parameter that indicates whether a range could be found or not. If this is false, you shouldn't + use the returned range (e.g. no points in data). + + Note that \a foundRange is not the same as \ref QCPRange::validRange, since the range returned by + this function may have size zero, which wouldn't count as a valid range. + + \see rescaleAxes, getValueRange +*/ + +/*! \fn QCPRange QCPAbstractPlottable::getValueRange(bool &foundRange, SignDomain inSignDomain) const = 0 + \internal + + called by rescaleAxes functions to get the full data value bounds. For logarithmic plots, one can + set \a inSignDomain to either \ref sdNegative or \ref sdPositive in order to restrict the + returned range to that sign domain. E.g. when only negative range is wanted, set \a inSignDomain + to \ref sdNegative and all positive points will be ignored for range calculation. For no + restriction, just set \a inSignDomain to \ref sdBoth (default). \a foundRange is an output + parameter that indicates whether a range could be found or not. If this is false, you shouldn't + use the returned range (e.g. no points in data). + + Note that \a foundRange is not the same as \ref QCPRange::validRange, since the range returned by + this function may have size zero, which wouldn't count as a valid range. + + \see rescaleAxes, getKeyRange +*/ + +/* end of documentation of pure virtual functions */ +/* start of documentation of signals */ + +/*! \fn void QCPAbstractPlottable::selectionChanged(bool selected) + + This signal is emitted when the selection state of this plottable has changed, either by user + interaction or by a direct call to \ref setSelected. +*/ + +/*! \fn void QCPAbstractPlottable::selectableChanged(bool selectable); + + This signal is emitted when the selectability of this plottable has changed. + + \see setSelectable +*/ + +/* end of documentation of signals */ + +/*! + Constructs an abstract plottable which uses \a keyAxis as its key axis ("x") and \a valueAxis as + its value axis ("y"). \a keyAxis and \a valueAxis must reside in the same QCustomPlot instance + and have perpendicular orientations. If either of these restrictions is violated, a corresponding + message is printed to the debug output (qDebug), the construction is not aborted, though. + + Since QCPAbstractPlottable is an abstract class that defines the basic interface to plottables, + it can't be directly instantiated. + + You probably want one of the subclasses like \ref QCPGraph or \ref QCPCurve instead. +*/ +QCPAbstractPlottable::QCPAbstractPlottable(QCPAxis *keyAxis, QCPAxis *valueAxis) : + QCPLayerable(keyAxis->parentPlot(), QString(), keyAxis->axisRect()), + mName(), + mAntialiasedFill(true), + mAntialiasedScatters(true), + mAntialiasedErrorBars(false), + mPen(Qt::black), + mSelectedPen(Qt::black), + mBrush(Qt::NoBrush), + mSelectedBrush(Qt::NoBrush), + mKeyAxis(keyAxis), + mValueAxis(valueAxis), + mSelectable(true), + mSelected(false) +{ + if (keyAxis->parentPlot() != valueAxis->parentPlot()) + qDebug() << Q_FUNC_INFO << "Parent plot of keyAxis is not the same as that of valueAxis."; + if (keyAxis->orientation() == valueAxis->orientation()) + qDebug() << Q_FUNC_INFO << "keyAxis and valueAxis must be orthogonal to each other."; +} + +/*! + The name is the textual representation of this plottable as it is displayed in the legend + (\ref QCPLegend). It may contain any UTF-8 characters, including newlines. +*/ +void QCPAbstractPlottable::setName(const QString &name) +{ + mName = name; +} + +/*! + Sets whether fills of this plottable are drawn antialiased or not. + + Note that this setting may be overridden by \ref QCustomPlot::setAntialiasedElements and \ref + QCustomPlot::setNotAntialiasedElements. +*/ +void QCPAbstractPlottable::setAntialiasedFill(bool enabled) +{ + mAntialiasedFill = enabled; +} + +/*! + Sets whether the scatter symbols of this plottable are drawn antialiased or not. + + Note that this setting may be overridden by \ref QCustomPlot::setAntialiasedElements and \ref + QCustomPlot::setNotAntialiasedElements. +*/ +void QCPAbstractPlottable::setAntialiasedScatters(bool enabled) +{ + mAntialiasedScatters = enabled; +} + +/*! + Sets whether the error bars of this plottable are drawn antialiased or not. + + Note that this setting may be overridden by \ref QCustomPlot::setAntialiasedElements and \ref + QCustomPlot::setNotAntialiasedElements. +*/ +void QCPAbstractPlottable::setAntialiasedErrorBars(bool enabled) +{ + mAntialiasedErrorBars = enabled; +} + + +/*! + The pen is used to draw basic lines that make up the plottable representation in the + plot. + + For example, the \ref QCPGraph subclass draws its graph lines with this pen. + + \see setBrush +*/ +void QCPAbstractPlottable::setPen(const QPen &pen) +{ + mPen = pen; +} + +/*! + When the plottable is selected, this pen is used to draw basic lines instead of the normal + pen set via \ref setPen. + + \see setSelected, setSelectable, setSelectedBrush, selectTest +*/ +void QCPAbstractPlottable::setSelectedPen(const QPen &pen) +{ + mSelectedPen = pen; +} + +/*! + The brush is used to draw basic fills of the plottable representation in the + plot. The Fill can be a color, gradient or texture, see the usage of QBrush. + + For example, the \ref QCPGraph subclass draws the fill under the graph with this brush, when + it's not set to Qt::NoBrush. + + \see setPen +*/ +void QCPAbstractPlottable::setBrush(const QBrush &brush) +{ + mBrush = brush; +} + +/*! + When the plottable is selected, this brush is used to draw fills instead of the normal + brush set via \ref setBrush. + + \see setSelected, setSelectable, setSelectedPen, selectTest +*/ +void QCPAbstractPlottable::setSelectedBrush(const QBrush &brush) +{ + mSelectedBrush = brush; +} + +/*! + The key axis of a plottable can be set to any axis of a QCustomPlot, as long as it is orthogonal + to the plottable's value axis. This function performs no checks to make sure this is the case. + The typical mathematical choice is to use the x-axis (QCustomPlot::xAxis) as key axis and the + y-axis (QCustomPlot::yAxis) as value axis. + + Normally, the key and value axes are set in the constructor of the plottable (or \ref + QCustomPlot::addGraph when working with QCPGraphs through the dedicated graph interface). + + \see setValueAxis +*/ +void QCPAbstractPlottable::setKeyAxis(QCPAxis *axis) +{ + mKeyAxis = axis; +} + +/*! + The value axis of a plottable can be set to any axis of a QCustomPlot, as long as it is + orthogonal to the plottable's key axis. This function performs no checks to make sure this is the + case. The typical mathematical choice is to use the x-axis (QCustomPlot::xAxis) as key axis and + the y-axis (QCustomPlot::yAxis) as value axis. + + Normally, the key and value axes are set in the constructor of the plottable (or \ref + QCustomPlot::addGraph when working with QCPGraphs through the dedicated graph interface). + + \see setKeyAxis +*/ +void QCPAbstractPlottable::setValueAxis(QCPAxis *axis) +{ + mValueAxis = axis; +} + +/*! + Sets whether the user can (de-)select this plottable by clicking on the QCustomPlot surface. + (When \ref QCustomPlot::setInteractions contains iSelectPlottables.) + + However, even when \a selectable was set to false, it is possible to set the selection manually, + by calling \ref setSelected directly. + + \see setSelected +*/ +void QCPAbstractPlottable::setSelectable(bool selectable) +{ + if (mSelectable != selectable) + { + mSelectable = selectable; + emit selectableChanged(mSelectable); + } +} + +/*! + Sets whether this plottable is selected or not. When selected, it uses a different pen and brush + to draw its lines and fills, see \ref setSelectedPen and \ref setSelectedBrush. + + The entire selection mechanism for plottables is handled automatically when \ref + QCustomPlot::setInteractions contains iSelectPlottables. You only need to call this function when + you wish to change the selection state manually. + + This function can change the selection state even when \ref setSelectable was set to false. + + emits the \ref selectionChanged signal when \a selected is different from the previous selection state. + + \see setSelectable, selectTest +*/ +void QCPAbstractPlottable::setSelected(bool selected) +{ + if (mSelected != selected) + { + mSelected = selected; + emit selectionChanged(mSelected); + } +} + +/*! + Rescales the key and value axes associated with this plottable to contain all displayed data, so + the whole plottable is visible. If the scaling of an axis is logarithmic, rescaleAxes will make + sure not to rescale to an illegal range i.e. a range containing different signs and/or zero. + Instead it will stay in the current sign domain and ignore all parts of the plottable that lie + outside of that domain. + + \a onlyEnlarge makes sure the ranges are only expanded, never reduced. So it's possible to show + multiple plottables in their entirety by multiple calls to rescaleAxes where the first call has + \a onlyEnlarge set to false (the default), and all subsequent set to true. + + \see rescaleKeyAxis, rescaleValueAxis, QCustomPlot::rescaleAxes, QCPAxis::rescale +*/ +void QCPAbstractPlottable::rescaleAxes(bool onlyEnlarge) const +{ + rescaleKeyAxis(onlyEnlarge); + rescaleValueAxis(onlyEnlarge); +} + +/*! + Rescales the key axis of the plottable so the whole plottable is visible. + + See \ref rescaleAxes for detailed behaviour. +*/ +void QCPAbstractPlottable::rescaleKeyAxis(bool onlyEnlarge) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + if (!keyAxis) { qDebug() << Q_FUNC_INFO << "invalid key axis"; return; } + + SignDomain signDomain = sdBoth; + if (keyAxis->scaleType() == QCPAxis::stLogarithmic) + signDomain = (keyAxis->range().upper < 0 ? sdNegative : sdPositive); + + bool foundRange; + QCPRange newRange = getKeyRange(foundRange, signDomain); + if (foundRange) + { + if (onlyEnlarge) + newRange.expand(keyAxis->range()); + if (!QCPRange::validRange(newRange)) // likely due to range being zero (plottable has only constant data in this axis dimension), shift current range to at least center the plottable + { + double center = (newRange.lower+newRange.upper)*0.5; // upper and lower should be equal anyway, but just to make sure, incase validRange returned false for other reason + if (keyAxis->scaleType() == QCPAxis::stLinear) + { + newRange.lower = center-keyAxis->range().size()/2.0; + newRange.upper = center+keyAxis->range().size()/2.0; + } else // scaleType() == stLogarithmic + { + newRange.lower = center/qSqrt(keyAxis->range().upper/keyAxis->range().lower); + newRange.upper = center*qSqrt(keyAxis->range().upper/keyAxis->range().lower); + } + } + keyAxis->setRange(newRange); + } +} + +/*! + Rescales the value axis of the plottable so the whole plottable is visible. + + Returns true if the axis was actually scaled. This might not be the case if this plottable has an + invalid range, e.g. because it has no data points. + + See \ref rescaleAxes for detailed behaviour. +*/ +void QCPAbstractPlottable::rescaleValueAxis(bool onlyEnlarge) const +{ + QCPAxis *valueAxis = mValueAxis.data(); + if (!valueAxis) { qDebug() << Q_FUNC_INFO << "invalid value axis"; return; } + + SignDomain signDomain = sdBoth; + if (valueAxis->scaleType() == QCPAxis::stLogarithmic) + signDomain = (valueAxis->range().upper < 0 ? sdNegative : sdPositive); + + bool foundRange; + QCPRange newRange = getValueRange(foundRange, signDomain); + if (foundRange) + { + if (onlyEnlarge) + newRange.expand(valueAxis->range()); + if (!QCPRange::validRange(newRange)) // likely due to range being zero (plottable has only constant data in this axis dimension), shift current range to at least center the plottable + { + double center = (newRange.lower+newRange.upper)*0.5; // upper and lower should be equal anyway, but just to make sure, incase validRange returned false for other reason + if (valueAxis->scaleType() == QCPAxis::stLinear) + { + newRange.lower = center-valueAxis->range().size()/2.0; + newRange.upper = center+valueAxis->range().size()/2.0; + } else // scaleType() == stLogarithmic + { + newRange.lower = center/qSqrt(valueAxis->range().upper/valueAxis->range().lower); + newRange.upper = center*qSqrt(valueAxis->range().upper/valueAxis->range().lower); + } + } + valueAxis->setRange(newRange); + } +} + +/*! + Adds this plottable to the legend of the parent QCustomPlot (QCustomPlot::legend). + + Normally, a QCPPlottableLegendItem is created and inserted into the legend. If the plottable + needs a more specialized representation in the legend, this function will take this into account + and instead create the specialized subclass of QCPAbstractLegendItem. + + Returns true on success, i.e. when the legend exists and a legend item associated with this plottable isn't already in + the legend. + + \see removeFromLegend, QCPLegend::addItem +*/ +bool QCPAbstractPlottable::addToLegend() +{ + if (!mParentPlot || !mParentPlot->legend) + return false; + + if (!mParentPlot->legend->hasItemWithPlottable(this)) + { + mParentPlot->legend->addItem(new QCPPlottableLegendItem(mParentPlot->legend, this)); + return true; + } else + return false; +} + +/*! + Removes the plottable from the legend of the parent QCustomPlot. This means the + QCPAbstractLegendItem (usually a QCPPlottableLegendItem) that is associated with this plottable + is removed. + + Returns true on success, i.e. if the legend exists and a legend item associated with this + plottable was found and removed. + + \see addToLegend, QCPLegend::removeItem +*/ +bool QCPAbstractPlottable::removeFromLegend() const +{ + if (!mParentPlot->legend) + return false; + + if (QCPPlottableLegendItem *lip = mParentPlot->legend->itemWithPlottable(this)) + return mParentPlot->legend->removeItem(lip); + else + return false; +} + +/* inherits documentation from base class */ +QRect QCPAbstractPlottable::clipRect() const +{ + if (mKeyAxis && mValueAxis) + return mKeyAxis.data()->axisRect()->rect() & mValueAxis.data()->axisRect()->rect(); + else + return QRect(); +} + +/* inherits documentation from base class */ +QCP::Interaction QCPAbstractPlottable::selectionCategory() const +{ + return QCP::iSelectPlottables; +} + +/*! \internal + + Convenience function for transforming a key/value pair to pixels on the QCustomPlot surface, + taking the orientations of the axes associated with this plottable into account (e.g. whether key + represents x or y). + + \a key and \a value are transformed to the coodinates in pixels and are written to \a x and \a y. + + \see pixelsToCoords, QCPAxis::coordToPixel +*/ +void QCPAbstractPlottable::coordsToPixels(double key, double value, double &x, double &y) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + + if (keyAxis->orientation() == Qt::Horizontal) + { + x = keyAxis->coordToPixel(key); + y = valueAxis->coordToPixel(value); + } else + { + y = keyAxis->coordToPixel(key); + x = valueAxis->coordToPixel(value); + } +} + +/*! \internal + \overload + + Returns the input as pixel coordinates in a QPointF. +*/ +const QPointF QCPAbstractPlottable::coordsToPixels(double key, double value) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return QPointF(); } + + if (keyAxis->orientation() == Qt::Horizontal) + return QPointF(keyAxis->coordToPixel(key), valueAxis->coordToPixel(value)); + else + return QPointF(valueAxis->coordToPixel(value), keyAxis->coordToPixel(key)); +} + +/*! \internal + + Convenience function for transforming a x/y pixel pair on the QCustomPlot surface to plot coordinates, + taking the orientations of the axes associated with this plottable into account (e.g. whether key + represents x or y). + + \a x and \a y are transformed to the plot coodinates and are written to \a key and \a value. + + \see coordsToPixels, QCPAxis::coordToPixel +*/ +void QCPAbstractPlottable::pixelsToCoords(double x, double y, double &key, double &value) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + + if (keyAxis->orientation() == Qt::Horizontal) + { + key = keyAxis->pixelToCoord(x); + value = valueAxis->pixelToCoord(y); + } else + { + key = keyAxis->pixelToCoord(y); + value = valueAxis->pixelToCoord(x); + } +} + +/*! \internal + \overload + + Returns the pixel input \a pixelPos as plot coordinates \a key and \a value. +*/ +void QCPAbstractPlottable::pixelsToCoords(const QPointF &pixelPos, double &key, double &value) const +{ + pixelsToCoords(pixelPos.x(), pixelPos.y(), key, value); +} + +/*! \internal + + Returns the pen that should be used for drawing lines of the plottable. Returns mPen when the + graph is not selected and mSelectedPen when it is. +*/ +QPen QCPAbstractPlottable::mainPen() const +{ + return mSelected ? mSelectedPen : mPen; +} + +/*! \internal + + Returns the brush that should be used for drawing fills of the plottable. Returns mBrush when the + graph is not selected and mSelectedBrush when it is. +*/ +QBrush QCPAbstractPlottable::mainBrush() const +{ + return mSelected ? mSelectedBrush : mBrush; +} + +/*! \internal + + A convenience function to easily set the QPainter::Antialiased hint on the provided \a painter + before drawing plottable lines. + + This is the antialiasing state the painter passed to the \ref draw method is in by default. + + This function takes into account the local setting of the antialiasing flag as well as the + overrides set with \ref QCustomPlot::setAntialiasedElements and \ref + QCustomPlot::setNotAntialiasedElements. + + \see setAntialiased, applyFillAntialiasingHint, applyScattersAntialiasingHint, applyErrorBarsAntialiasingHint +*/ +void QCPAbstractPlottable::applyDefaultAntialiasingHint(QCPPainter *painter) const +{ + applyAntialiasingHint(painter, mAntialiased, QCP::aePlottables); +} + +/*! \internal + + A convenience function to easily set the QPainter::Antialiased hint on the provided \a painter + before drawing plottable fills. + + This function takes into account the local setting of the antialiasing flag as well as the + overrides set with \ref QCustomPlot::setAntialiasedElements and \ref + QCustomPlot::setNotAntialiasedElements. + + \see setAntialiased, applyDefaultAntialiasingHint, applyScattersAntialiasingHint, applyErrorBarsAntialiasingHint +*/ +void QCPAbstractPlottable::applyFillAntialiasingHint(QCPPainter *painter) const +{ + applyAntialiasingHint(painter, mAntialiasedFill, QCP::aeFills); +} + +/*! \internal + + A convenience function to easily set the QPainter::Antialiased hint on the provided \a painter + before drawing plottable scatter points. + + This function takes into account the local setting of the antialiasing flag as well as the + overrides set with \ref QCustomPlot::setAntialiasedElements and \ref + QCustomPlot::setNotAntialiasedElements. + + \see setAntialiased, applyFillAntialiasingHint, applyDefaultAntialiasingHint, applyErrorBarsAntialiasingHint +*/ +void QCPAbstractPlottable::applyScattersAntialiasingHint(QCPPainter *painter) const +{ + applyAntialiasingHint(painter, mAntialiasedScatters, QCP::aeScatters); +} + +/*! \internal + + A convenience function to easily set the QPainter::Antialiased hint on the provided \a painter + before drawing plottable error bars. + + This function takes into account the local setting of the antialiasing flag as well as the + overrides set with \ref QCustomPlot::setAntialiasedElements and \ref + QCustomPlot::setNotAntialiasedElements. + + \see setAntialiased, applyFillAntialiasingHint, applyScattersAntialiasingHint, applyDefaultAntialiasingHint +*/ +void QCPAbstractPlottable::applyErrorBarsAntialiasingHint(QCPPainter *painter) const +{ + applyAntialiasingHint(painter, mAntialiasedErrorBars, QCP::aeErrorBars); +} + +/*! \internal + + Finds the shortest squared distance of \a point to the line segment defined by \a start and \a + end. + + This function may be used to help with the implementation of the \ref selectTest function for + specific plottables. + + \note This function is identical to QCPAbstractItem::distSqrToLine +*/ +double QCPAbstractPlottable::distSqrToLine(const QPointF &start, const QPointF &end, const QPointF &point) const +{ + QVector2D a(start); + QVector2D b(end); + QVector2D p(point); + QVector2D v(b-a); + + double vLengthSqr = v.lengthSquared(); + if (!qFuzzyIsNull(vLengthSqr)) + { + double mu = QVector2D::dotProduct(p-a, v)/vLengthSqr; + if (mu < 0) + return (a-p).lengthSquared(); + else if (mu > 1) + return (b-p).lengthSquared(); + else + return ((a + mu*v)-p).lengthSquared(); + } else + return (a-p).lengthSquared(); +} + +/* inherits documentation from base class */ +void QCPAbstractPlottable::selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) +{ + Q_UNUSED(event) + Q_UNUSED(details) + if (mSelectable) + { + bool selBefore = mSelected; + setSelected(additive ? !mSelected : true); + if (selectionStateChanged) + *selectionStateChanged = mSelected != selBefore; + } +} + +/* inherits documentation from base class */ +void QCPAbstractPlottable::deselectEvent(bool *selectionStateChanged) +{ + if (mSelectable) + { + bool selBefore = mSelected; + setSelected(false); + if (selectionStateChanged) + *selectionStateChanged = mSelected != selBefore; + } +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPItemAnchor +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPItemAnchor + \brief An anchor of an item to which positions can be attached to. + + An item (QCPAbstractItem) may have one or more anchors. Unlike QCPItemPosition, an anchor doesn't + control anything on its item, but provides a way to tie other items via their positions to the + anchor. + + For example, a QCPItemRect is defined by its positions \a topLeft and \a bottomRight. + Additionally it has various anchors like \a top, \a topRight or \a bottomLeft etc. So you can + attach the \a start (which is a QCPItemPosition) of a QCPItemLine to one of the anchors by + calling QCPItemPosition::setParentAnchor on \a start, passing the wanted anchor of the + QCPItemRect. This way the start of the line will now always follow the respective anchor location + on the rect item. + + Note that QCPItemPosition derives from QCPItemAnchor, so every position can also serve as an + anchor to other positions. + + To learn how to provide anchors in your own item subclasses, see the subclassing section of the + QCPAbstractItem documentation. +*/ + +/* start documentation of inline functions */ + +/*! \fn virtual QCPItemPosition *QCPItemAnchor::toQCPItemPosition() + + Returns 0 if this instance is merely a QCPItemAnchor, and a valid pointer of type QCPItemPosition* if + it actually is a QCPItemPosition (which is a subclass of QCPItemAnchor). + + This safe downcast functionality could also be achieved with a dynamic_cast. However, QCustomPlot avoids + dynamic_cast to work with projects that don't have RTTI support enabled (e.g. -fno-rtti flag with + gcc compiler). +*/ + +/* end documentation of inline functions */ + +/*! + Creates a new QCPItemAnchor. You shouldn't create QCPItemAnchor instances directly, even if + you want to make a new item subclass. Use \ref QCPAbstractItem::createAnchor instead, as + explained in the subclassing section of the QCPAbstractItem documentation. +*/ +QCPItemAnchor::QCPItemAnchor(QCustomPlot *parentPlot, QCPAbstractItem *parentItem, const QString name, int anchorId) : + mName(name), + mParentPlot(parentPlot), + mParentItem(parentItem), + mAnchorId(anchorId) +{ +} + +QCPItemAnchor::~QCPItemAnchor() +{ + // unregister as parent at children: + foreach (QCPItemPosition *child, mChildrenX.toList()) + { + if (child->parentAnchorX() == this) + child->setParentAnchorX(0); // this acts back on this anchor and child removes itself from mChildrenX + } + foreach (QCPItemPosition *child, mChildrenY.toList()) + { + if (child->parentAnchorY() == this) + child->setParentAnchorY(0); // this acts back on this anchor and child removes itself from mChildrenY + } +} + +/*! + Returns the final absolute pixel position of the QCPItemAnchor on the QCustomPlot surface. + + The pixel information is internally retrieved via QCPAbstractItem::anchorPixelPosition of the + parent item, QCPItemAnchor is just an intermediary. +*/ +QPointF QCPItemAnchor::pixelPoint() const +{ + if (mParentItem) + { + if (mAnchorId > -1) + { + return mParentItem->anchorPixelPoint(mAnchorId); + } else + { + qDebug() << Q_FUNC_INFO << "no valid anchor id set:" << mAnchorId; + return QPointF(); + } + } else + { + qDebug() << Q_FUNC_INFO << "no parent item set"; + return QPointF(); + } +} + +/*! \internal + + Adds \a pos to the childX list of this anchor, which keeps track of which children use this + anchor as parent anchor for the respective coordinate. This is necessary to notify the children + prior to destruction of the anchor. + + Note that this function does not change the parent setting in \a pos. +*/ +void QCPItemAnchor::addChildX(QCPItemPosition *pos) +{ + if (!mChildrenX.contains(pos)) + mChildrenX.insert(pos); + else + qDebug() << Q_FUNC_INFO << "provided pos is child already" << reinterpret_cast(pos); +} + +/*! \internal + + Removes \a pos from the childX list of this anchor. + + Note that this function does not change the parent setting in \a pos. +*/ +void QCPItemAnchor::removeChildX(QCPItemPosition *pos) +{ + if (!mChildrenX.remove(pos)) + qDebug() << Q_FUNC_INFO << "provided pos isn't child" << reinterpret_cast(pos); +} + +/*! \internal + + Adds \a pos to the childY list of this anchor, which keeps track of which children use this + anchor as parent anchor for the respective coordinate. This is necessary to notify the children + prior to destruction of the anchor. + + Note that this function does not change the parent setting in \a pos. +*/ +void QCPItemAnchor::addChildY(QCPItemPosition *pos) +{ + if (!mChildrenY.contains(pos)) + mChildrenY.insert(pos); + else + qDebug() << Q_FUNC_INFO << "provided pos is child already" << reinterpret_cast(pos); +} + +/*! \internal + + Removes \a pos from the childY list of this anchor. + + Note that this function does not change the parent setting in \a pos. +*/ +void QCPItemAnchor::removeChildY(QCPItemPosition *pos) +{ + if (!mChildrenY.remove(pos)) + qDebug() << Q_FUNC_INFO << "provided pos isn't child" << reinterpret_cast(pos); +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPItemPosition +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPItemPosition + \brief Manages the position of an item. + + Every item has at least one public QCPItemPosition member pointer which provides ways to position the + item on the QCustomPlot surface. Some items have multiple positions, for example QCPItemRect has two: + \a topLeft and \a bottomRight. + + QCPItemPosition has a type (\ref PositionType) that can be set with \ref setType. This type + defines how coordinates passed to \ref setCoords are to be interpreted, e.g. as absolute pixel + coordinates, as plot coordinates of certain axes, etc. For more advanced plots it is also + possible to assign different types per X/Y coordinate of the position (see \ref setTypeX, \ref + setTypeY). This way an item could be positioned at a fixed pixel distance from the top in the Y + direction, while following a plot coordinate in the X direction. + + A QCPItemPosition may have a parent QCPItemAnchor, see \ref setParentAnchor. This way you can tie + multiple items together. If the QCPItemPosition has a parent, its coordinates (\ref setCoords) + are considered to be absolute pixels in the reference frame of the parent anchor, where (0, 0) + means directly ontop of the parent anchor. For example, You could attach the \a start position of + a QCPItemLine to the \a bottom anchor of a QCPItemText to make the starting point of the line + always be centered under the text label, no matter where the text is moved to. For more advanced + plots, it is possible to assign different parent anchors per X/Y coordinate of the position, see + \ref setParentAnchorX, \ref setParentAnchorY. This way an item could follow another item in the X + direction but stay at a fixed position in the Y direction. Or even follow item A in X, and item B + in Y. + + Note that every QCPItemPosition inherits from QCPItemAnchor and thus can itself be used as parent + anchor for other positions. + + To set the apparent pixel position on the QCustomPlot surface directly, use \ref setPixelPoint. This + works no matter what type this QCPItemPosition is or what parent-child situation it is in, as \ref + setPixelPoint transforms the coordinates appropriately, to make the position appear at the specified + pixel values. +*/ + +/* start documentation of inline functions */ + +/*! \fn QCPItemPosition::PositionType *QCPItemPosition::type() const + + Returns the current position type. + + If different types were set for X and Y (\ref setTypeX, \ref setTypeY), this method returns the + type of the X coordinate. In that case rather use \a typeX() and \a typeY(). + + \see setType +*/ + +/*! \fn QCPItemAnchor *QCPItemPosition::parentAnchor() const + + Returns the current parent anchor. + + If different parent anchors were set for X and Y (\ref setParentAnchorX, \ref setParentAnchorY), + this method returns the parent anchor of the Y coordinate. In that case rather use \a + parentAnchorX() and \a parentAnchorY(). + + \see setParentAnchor +*/ + +/* end documentation of inline functions */ + +/*! + Creates a new QCPItemPosition. You shouldn't create QCPItemPosition instances directly, even if + you want to make a new item subclass. Use \ref QCPAbstractItem::createPosition instead, as + explained in the subclassing section of the QCPAbstractItem documentation. +*/ +QCPItemPosition::QCPItemPosition(QCustomPlot *parentPlot, QCPAbstractItem *parentItem, const QString name) : + QCPItemAnchor(parentPlot, parentItem, name), + mPositionTypeX(ptAbsolute), + mPositionTypeY(ptAbsolute), + mKey(0), + mValue(0), + mParentAnchorX(0), + mParentAnchorY(0) +{ +} + +QCPItemPosition::~QCPItemPosition() +{ + // unregister as parent at children: + // Note: this is done in ~QCPItemAnchor again, but it's important QCPItemPosition does it itself, because only then + // the setParentAnchor(0) call the correct QCPItemPosition::pixelPoint function instead of QCPItemAnchor::pixelPoint + foreach (QCPItemPosition *child, mChildrenX.toList()) + { + if (child->parentAnchorX() == this) + child->setParentAnchorX(0); // this acts back on this anchor and child removes itself from mChildrenX + } + foreach (QCPItemPosition *child, mChildrenY.toList()) + { + if (child->parentAnchorY() == this) + child->setParentAnchorY(0); // this acts back on this anchor and child removes itself from mChildrenY + } + // unregister as child in parent: + if (mParentAnchorX) + mParentAnchorX->removeChildX(this); + if (mParentAnchorY) + mParentAnchorY->removeChildY(this); +} + +/* can't make this a header inline function, because QPointer breaks with forward declared types, see QTBUG-29588 */ +QCPAxisRect *QCPItemPosition::axisRect() const +{ + return mAxisRect.data(); +} + +/*! + Sets the type of the position. The type defines how the coordinates passed to \ref setCoords + should be handled and how the QCPItemPosition should behave in the plot. + + The possible values for \a type can be separated in two main categories: + + \li The position is regarded as a point in plot coordinates. This corresponds to \ref ptPlotCoords + and requires two axes that define the plot coordinate system. They can be specified with \ref setAxes. + By default, the QCustomPlot's x- and yAxis are used. + + \li The position is fixed on the QCustomPlot surface, i.e. independent of axis ranges. This + corresponds to all other types, i.e. \ref ptAbsolute, \ref ptViewportRatio and \ref + ptAxisRectRatio. They differ only in the way the absolute position is described, see the + documentation of \ref PositionType for details. For \ref ptAxisRectRatio, note that you can specify + the axis rect with \ref setAxisRect. By default this is set to the main axis rect. + + Note that the position type \ref ptPlotCoords is only available (and sensible) when the position + has no parent anchor (\ref setParentAnchor). + + If the type is changed, the apparent pixel position on the plot is preserved. This means + the coordinates as retrieved with coords() and set with \ref setCoords may change in the process. + + This method sets the type for both X and Y directions. It is also possible to set different types + for X and Y, see \ref setTypeX, \ref setTypeY. +*/ +void QCPItemPosition::setType(QCPItemPosition::PositionType type) +{ + setTypeX(type); + setTypeY(type); +} + +/*! + This method sets the position type of the X coordinate to \a type. + + For a detailed description of what a position type is, see the documentation of \ref setType. + + \see setType, setTypeY +*/ +void QCPItemPosition::setTypeX(QCPItemPosition::PositionType type) +{ + if (mPositionTypeX != type) + { + // if switching from or to coordinate type that isn't valid (e.g. because axes or axis rect + // were deleted), don't try to recover the pixelPoint() because it would output a qDebug warning. + bool retainPixelPosition = true; + if ((mPositionTypeX == ptPlotCoords || type == ptPlotCoords) && (!mKeyAxis || !mValueAxis)) + retainPixelPosition = false; + if ((mPositionTypeX == ptAxisRectRatio || type == ptAxisRectRatio) && (!mAxisRect)) + retainPixelPosition = false; + + QPointF pixel; + if (retainPixelPosition) + pixel = pixelPoint(); + + mPositionTypeX = type; + + if (retainPixelPosition) + setPixelPoint(pixel); + } +} + +/*! + This method sets the position type of the Y coordinate to \a type. + + For a detailed description of what a position type is, see the documentation of \ref setType. + + \see setType, setTypeX +*/ +void QCPItemPosition::setTypeY(QCPItemPosition::PositionType type) +{ + if (mPositionTypeY != type) + { + // if switching from or to coordinate type that isn't valid (e.g. because axes or axis rect + // were deleted), don't try to recover the pixelPoint() because it would output a qDebug warning. + bool retainPixelPosition = true; + if ((mPositionTypeY == ptPlotCoords || type == ptPlotCoords) && (!mKeyAxis || !mValueAxis)) + retainPixelPosition = false; + if ((mPositionTypeY == ptAxisRectRatio || type == ptAxisRectRatio) && (!mAxisRect)) + retainPixelPosition = false; + + QPointF pixel; + if (retainPixelPosition) + pixel = pixelPoint(); + + mPositionTypeY = type; + + if (retainPixelPosition) + setPixelPoint(pixel); + } +} + +/*! + Sets the parent of this QCPItemPosition to \a parentAnchor. This means the position will now + follow any position changes of the anchor. The local coordinate system of positions with a parent + anchor always is absolute pixels, with (0, 0) being exactly on top of the parent anchor. (Hence + the type shouldn't be set to \ref ptPlotCoords for positions with parent anchors.) + + if \a keepPixelPosition is true, the current pixel position of the QCPItemPosition is preserved + during reparenting. If it's set to false, the coordinates are set to (0, 0), i.e. the position + will be exactly on top of the parent anchor. + + To remove this QCPItemPosition from any parent anchor, set \a parentAnchor to 0. + + If the QCPItemPosition previously had no parent and the type is \ref ptPlotCoords, the type is + set to \ref ptAbsolute, to keep the position in a valid state. + + This method sets the parent anchor for both X and Y directions. It is also possible to set + different parents for X and Y, see \ref setParentAnchorX, \ref setParentAnchorY. +*/ +bool QCPItemPosition::setParentAnchor(QCPItemAnchor *parentAnchor, bool keepPixelPosition) +{ + bool successX = setParentAnchorX(parentAnchor, keepPixelPosition); + bool successY = setParentAnchorY(parentAnchor, keepPixelPosition); + return successX && successY; +} + +/*! + This method sets the parent anchor of the X coordinate to \a parentAnchor. + + For a detailed description of what a parent anchor is, see the documentation of \ref setParentAnchor. + + \see setParentAnchor, setParentAnchorY +*/ +bool QCPItemPosition::setParentAnchorX(QCPItemAnchor *parentAnchor, bool keepPixelPosition) +{ + // make sure self is not assigned as parent: + if (parentAnchor == this) + { + qDebug() << Q_FUNC_INFO << "can't set self as parent anchor" << reinterpret_cast(parentAnchor); + return false; + } + // make sure no recursive parent-child-relationships are created: + QCPItemAnchor *currentParent = parentAnchor; + while (currentParent) + { + if (QCPItemPosition *currentParentPos = currentParent->toQCPItemPosition()) + { + // is a QCPItemPosition, might have further parent, so keep iterating + if (currentParentPos == this) + { + qDebug() << Q_FUNC_INFO << "can't create recursive parent-child-relationship" << reinterpret_cast(parentAnchor); + return false; + } + currentParent = currentParentPos->parentAnchorX(); + } else + { + // is a QCPItemAnchor, can't have further parent. Now make sure the parent items aren't the + // same, to prevent a position being child of an anchor which itself depends on the position, + // because they're both on the same item: + if (currentParent->mParentItem == mParentItem) + { + qDebug() << Q_FUNC_INFO << "can't set parent to be an anchor which itself depends on this position" << reinterpret_cast(parentAnchor); + return false; + } + break; + } + } + + // if previously no parent set and PosType is still ptPlotCoords, set to ptAbsolute: + if (!mParentAnchorX && mPositionTypeX == ptPlotCoords) + setTypeX(ptAbsolute); + + // save pixel position: + QPointF pixelP; + if (keepPixelPosition) + pixelP = pixelPoint(); + // unregister at current parent anchor: + if (mParentAnchorX) + mParentAnchorX->removeChildX(this); + // register at new parent anchor: + if (parentAnchor) + parentAnchor->addChildX(this); + mParentAnchorX = parentAnchor; + // restore pixel position under new parent: + if (keepPixelPosition) + setPixelPoint(pixelP); + else + setCoords(0, coords().y()); + return true; +} + +/*! + This method sets the parent anchor of the Y coordinate to \a parentAnchor. + + For a detailed description of what a parent anchor is, see the documentation of \ref setParentAnchor. + + \see setParentAnchor, setParentAnchorX +*/ +bool QCPItemPosition::setParentAnchorY(QCPItemAnchor *parentAnchor, bool keepPixelPosition) +{ + // make sure self is not assigned as parent: + if (parentAnchor == this) + { + qDebug() << Q_FUNC_INFO << "can't set self as parent anchor" << reinterpret_cast(parentAnchor); + return false; + } + // make sure no recursive parent-child-relationships are created: + QCPItemAnchor *currentParent = parentAnchor; + while (currentParent) + { + if (QCPItemPosition *currentParentPos = currentParent->toQCPItemPosition()) + { + // is a QCPItemPosition, might have further parent, so keep iterating + if (currentParentPos == this) + { + qDebug() << Q_FUNC_INFO << "can't create recursive parent-child-relationship" << reinterpret_cast(parentAnchor); + return false; + } + currentParent = currentParentPos->parentAnchorY(); + } else + { + // is a QCPItemAnchor, can't have further parent. Now make sure the parent items aren't the + // same, to prevent a position being child of an anchor which itself depends on the position, + // because they're both on the same item: + if (currentParent->mParentItem == mParentItem) + { + qDebug() << Q_FUNC_INFO << "can't set parent to be an anchor which itself depends on this position" << reinterpret_cast(parentAnchor); + return false; + } + break; + } + } + + // if previously no parent set and PosType is still ptPlotCoords, set to ptAbsolute: + if (!mParentAnchorY && mPositionTypeY == ptPlotCoords) + setTypeY(ptAbsolute); + + // save pixel position: + QPointF pixelP; + if (keepPixelPosition) + pixelP = pixelPoint(); + // unregister at current parent anchor: + if (mParentAnchorY) + mParentAnchorY->removeChildY(this); + // register at new parent anchor: + if (parentAnchor) + parentAnchor->addChildY(this); + mParentAnchorY = parentAnchor; + // restore pixel position under new parent: + if (keepPixelPosition) + setPixelPoint(pixelP); + else + setCoords(coords().x(), 0); + return true; +} + +/*! + Sets the coordinates of this QCPItemPosition. What the coordinates mean, is defined by the type + (\ref setType, \ref setTypeX, \ref setTypeY). + + For example, if the type is \ref ptAbsolute, \a key and \a value mean the x and y pixel position + on the QCustomPlot surface. In that case the origin (0, 0) is in the top left corner of the + QCustomPlot viewport. If the type is \ref ptPlotCoords, \a key and \a value mean a point in the + plot coordinate system defined by the axes set by \ref setAxes. By default those are the + QCustomPlot's xAxis and yAxis. See the documentation of \ref setType for other available + coordinate types and their meaning. + + If different types were configured for X and Y (\ref setTypeX, \ref setTypeY), \a key and \a + value must also be provided in the different coordinate systems. Here, the X type refers to \a + key, and the Y type refers to \a value. + + \see setPixelPoint +*/ +void QCPItemPosition::setCoords(double key, double value) +{ + mKey = key; + mValue = value; +} + +/*! \overload + + Sets the coordinates as a QPointF \a pos where pos.x has the meaning of \a key and pos.y the + meaning of \a value of the \ref setCoords(double key, double value) method. +*/ +void QCPItemPosition::setCoords(const QPointF &pos) +{ + setCoords(pos.x(), pos.y()); +} + +/*! + Returns the final absolute pixel position of the QCPItemPosition on the QCustomPlot surface. It + includes all effects of type (\ref setType) and possible parent anchors (\ref setParentAnchor). + + \see setPixelPoint +*/ +QPointF QCPItemPosition::pixelPoint() const +{ + QPointF result; + + // determine X: + switch (mPositionTypeX) + { + case ptAbsolute: + { + result.rx() = mKey; + if (mParentAnchorX) + result.rx() += mParentAnchorX->pixelPoint().x(); + break; + } + case ptViewportRatio: + { + result.rx() = mKey*mParentPlot->viewport().width(); + if (mParentAnchorX) + result.rx() += mParentAnchorX->pixelPoint().x(); + else + result.rx() += mParentPlot->viewport().left(); + break; + } + case ptAxisRectRatio: + { + if (mAxisRect) + { + result.rx() = mKey*mAxisRect.data()->width(); + if (mParentAnchorX) + result.rx() += mParentAnchorX->pixelPoint().x(); + else + result.rx() += mAxisRect.data()->left(); + } else + qDebug() << Q_FUNC_INFO << "Item position type x is ptAxisRectRatio, but no axis rect was defined"; + break; + } + case ptPlotCoords: + { + if (mKeyAxis && mKeyAxis.data()->orientation() == Qt::Horizontal) + result.rx() = mKeyAxis.data()->coordToPixel(mKey); + else if (mValueAxis && mValueAxis.data()->orientation() == Qt::Horizontal) + result.rx() = mValueAxis.data()->coordToPixel(mValue); + else + qDebug() << Q_FUNC_INFO << "Item position type x is ptPlotCoords, but no axes were defined"; + break; + } + } + + // determine Y: + switch (mPositionTypeY) + { + case ptAbsolute: + { + result.ry() = mValue; + if (mParentAnchorY) + result.ry() += mParentAnchorY->pixelPoint().y(); + break; + } + case ptViewportRatio: + { + result.ry() = mValue*mParentPlot->viewport().height(); + if (mParentAnchorY) + result.ry() += mParentAnchorY->pixelPoint().y(); + else + result.ry() += mParentPlot->viewport().top(); + break; + } + case ptAxisRectRatio: + { + if (mAxisRect) + { + result.ry() = mValue*mAxisRect.data()->height(); + if (mParentAnchorY) + result.ry() += mParentAnchorY->pixelPoint().y(); + else + result.ry() += mAxisRect.data()->top(); + } else + qDebug() << Q_FUNC_INFO << "Item position type y is ptAxisRectRatio, but no axis rect was defined"; + break; + } + case ptPlotCoords: + { + if (mKeyAxis && mKeyAxis.data()->orientation() == Qt::Vertical) + result.ry() = mKeyAxis.data()->coordToPixel(mKey); + else if (mValueAxis && mValueAxis.data()->orientation() == Qt::Vertical) + result.ry() = mValueAxis.data()->coordToPixel(mValue); + else + qDebug() << Q_FUNC_INFO << "Item position type y is ptPlotCoords, but no axes were defined"; + break; + } + } + + return result; +} + +/*! + When \ref setType is \ref ptPlotCoords, this function may be used to specify the axes the + coordinates set with \ref setCoords relate to. By default they are set to the initial xAxis and + yAxis of the QCustomPlot. +*/ +void QCPItemPosition::setAxes(QCPAxis *keyAxis, QCPAxis *valueAxis) +{ + mKeyAxis = keyAxis; + mValueAxis = valueAxis; +} + +/*! + When \ref setType is \ref ptAxisRectRatio, this function may be used to specify the axis rect the + coordinates set with \ref setCoords relate to. By default this is set to the main axis rect of + the QCustomPlot. +*/ +void QCPItemPosition::setAxisRect(QCPAxisRect *axisRect) +{ + mAxisRect = axisRect; +} + +/*! + Sets the apparent pixel position. This works no matter what type (\ref setType) this + QCPItemPosition is or what parent-child situation it is in, as coordinates are transformed + appropriately, to make the position finally appear at the specified pixel values. + + Only if the type is \ref ptAbsolute and no parent anchor is set, this function's effect is + identical to that of \ref setCoords. + + \see pixelPoint, setCoords +*/ +void QCPItemPosition::setPixelPoint(const QPointF &pixelPoint) +{ + double x = pixelPoint.x(); + double y = pixelPoint.y(); + + switch (mPositionTypeX) + { + case ptAbsolute: + { + if (mParentAnchorX) + x -= mParentAnchorX->pixelPoint().x(); + break; + } + case ptViewportRatio: + { + if (mParentAnchorX) + x -= mParentAnchorX->pixelPoint().x(); + else + x -= mParentPlot->viewport().left(); + x /= (double)mParentPlot->viewport().width(); + break; + } + case ptAxisRectRatio: + { + if (mAxisRect) + { + if (mParentAnchorX) + x -= mParentAnchorX->pixelPoint().x(); + else + x -= mAxisRect.data()->left(); + x /= (double)mAxisRect.data()->width(); + } else + qDebug() << Q_FUNC_INFO << "Item position type x is ptAxisRectRatio, but no axis rect was defined"; + break; + } + case ptPlotCoords: + { + if (mKeyAxis && mKeyAxis.data()->orientation() == Qt::Horizontal) + x = mKeyAxis.data()->pixelToCoord(x); + else if (mValueAxis && mValueAxis.data()->orientation() == Qt::Horizontal) + y = mValueAxis.data()->pixelToCoord(x); + else + qDebug() << Q_FUNC_INFO << "Item position type x is ptPlotCoords, but no axes were defined"; + break; + } + } + + switch (mPositionTypeY) + { + case ptAbsolute: + { + if (mParentAnchorY) + y -= mParentAnchorY->pixelPoint().y(); + break; + } + case ptViewportRatio: + { + if (mParentAnchorY) + y -= mParentAnchorY->pixelPoint().y(); + else + y -= mParentPlot->viewport().top(); + y /= (double)mParentPlot->viewport().height(); + break; + } + case ptAxisRectRatio: + { + if (mAxisRect) + { + if (mParentAnchorY) + y -= mParentAnchorY->pixelPoint().y(); + else + y -= mAxisRect.data()->top(); + y /= (double)mAxisRect.data()->height(); + } else + qDebug() << Q_FUNC_INFO << "Item position type y is ptAxisRectRatio, but no axis rect was defined"; + break; + } + case ptPlotCoords: + { + if (mKeyAxis && mKeyAxis.data()->orientation() == Qt::Vertical) + x = mKeyAxis.data()->pixelToCoord(y); + else if (mValueAxis && mValueAxis.data()->orientation() == Qt::Vertical) + y = mValueAxis.data()->pixelToCoord(y); + else + qDebug() << Q_FUNC_INFO << "Item position type y is ptPlotCoords, but no axes were defined"; + break; + } + } + + setCoords(x, y); +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPAbstractItem +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPAbstractItem + \brief The abstract base class for all items in a plot. + + In QCustomPlot, items are supplemental graphical elements that are neither plottables + (QCPAbstractPlottable) nor axes (QCPAxis). While plottables are always tied to two axes and thus + plot coordinates, items can also be placed in absolute coordinates independent of any axes. Each + specific item has at least one QCPItemPosition member which controls the positioning. Some items + are defined by more than one coordinate and thus have two or more QCPItemPosition members (For + example, QCPItemRect has \a topLeft and \a bottomRight). + + This abstract base class defines a very basic interface like visibility and clipping. Since this + class is abstract, it can't be instantiated. Use one of the subclasses or create a subclass + yourself to create new items. + + The built-in items are: + + + + + + + + + + +
QCPItemLineA line defined by a start and an end point. May have different ending styles on each side (e.g. arrows).
QCPItemStraightLineA straight line defined by a start and a direction point. Unlike QCPItemLine, the straight line is infinitely long and has no endings.
QCPItemCurveA curve defined by start, end and two intermediate control points. May have different ending styles on each side (e.g. arrows).
QCPItemRectA rectangle
QCPItemEllipseAn ellipse
QCPItemPixmapAn arbitrary pixmap
QCPItemTextA text label
QCPItemBracketA bracket which may be used to reference/highlight certain parts in the plot.
QCPItemTracerAn item that can be attached to a QCPGraph and sticks to its data points, given a key coordinate.
+ + \section items-clipping Clipping + + Items are by default clipped to the main axis rect (they are only visible inside the axis rect). + To make an item visible outside that axis rect, disable clipping via \ref setClipToAxisRect + "setClipToAxisRect(false)". + + On the other hand if you want the item to be clipped to a different axis rect, specify it via + \ref setClipAxisRect. This clipAxisRect property of an item is only used for clipping behaviour, and + in principle is independent of the coordinate axes the item might be tied to via its position + members (\ref QCPItemPosition::setAxes). However, it is common that the axis rect for clipping + also contains the axes used for the item positions. + + \section items-using Using items + + First you instantiate the item you want to use and add it to the plot: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpitemline-creation-1 + by default, the positions of the item are bound to the x- and y-Axis of the plot. So we can just + set the plot coordinates where the line should start/end: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpitemline-creation-2 + If we don't want the line to be positioned in plot coordinates but a different coordinate system, + e.g. absolute pixel positions on the QCustomPlot surface, we need to change the position type like this: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpitemline-creation-3 + Then we can set the coordinates, this time in pixels: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpitemline-creation-4 + and make the line visible on the entire QCustomPlot, by disabling clipping to the axis rect: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpitemline-creation-5 + + For more advanced plots, it is even possible to set different types and parent anchors per X/Y + coordinate of an item position, using for example \ref QCPItemPosition::setTypeX or \ref + QCPItemPosition::setParentAnchorX. For details, see the documentation of \ref QCPItemPosition. + + \section items-subclassing Creating own items + + To create an own item, you implement a subclass of QCPAbstractItem. These are the pure + virtual functions, you must implement: + \li \ref selectTest + \li \ref draw + + See the documentation of those functions for what they need to do. + + \subsection items-positioning Allowing the item to be positioned + + As mentioned, item positions are represented by QCPItemPosition members. Let's assume the new item shall + have only one point as its position (as opposed to two like a rect or multiple like a polygon). You then add + a public member of type QCPItemPosition like so: + + \code QCPItemPosition * const myPosition;\endcode + + the const makes sure the pointer itself can't be modified from the user of your new item (the QCPItemPosition + instance it points to, can be modified, of course). + The initialization of this pointer is made easy with the \ref createPosition function. Just assign + the return value of this function to each QCPItemPosition in the constructor of your item. \ref createPosition + takes a string which is the name of the position, typically this is identical to the variable name. + For example, the constructor of QCPItemExample could look like this: + + \code + QCPItemExample::QCPItemExample(QCustomPlot *parentPlot) : + QCPAbstractItem(parentPlot), + myPosition(createPosition("myPosition")) + { + // other constructor code + } + \endcode + + \subsection items-drawing The draw function + + To give your item a visual representation, reimplement the \ref draw function and use the passed + QCPPainter to draw the item. You can retrieve the item position in pixel coordinates from the + position member(s) via \ref QCPItemPosition::pixelPoint. + + To optimize performance you should calculate a bounding rect first (don't forget to take the pen + width into account), check whether it intersects the \ref clipRect, and only draw the item at all + if this is the case. + + \subsection items-selection The selectTest function + + Your implementation of the \ref selectTest function may use the helpers \ref distSqrToLine and + \ref rectSelectTest. With these, the implementation of the selection test becomes significantly + simpler for most items. See the documentation of \ref selectTest for what the function parameters + mean and what the function should return. + + \subsection anchors Providing anchors + + Providing anchors (QCPItemAnchor) starts off like adding a position. First you create a public + member, e.g. + + \code QCPItemAnchor * const bottom;\endcode + + and create it in the constructor with the \ref createAnchor function, assigning it a name and an + anchor id (an integer enumerating all anchors on the item, you may create an own enum for this). + Since anchors can be placed anywhere, relative to the item's position(s), your item needs to + provide the position of every anchor with the reimplementation of the \ref anchorPixelPoint(int + anchorId) function. + + In essence the QCPItemAnchor is merely an intermediary that itself asks your item for the pixel + position when anything attached to the anchor needs to know the coordinates. +*/ + +/* start of documentation of inline functions */ + +/*! \fn QList QCPAbstractItem::positions() const + + Returns all positions of the item in a list. + + \see anchors, position +*/ + +/*! \fn QList QCPAbstractItem::anchors() const + + Returns all anchors of the item in a list. Note that since a position (QCPItemPosition) is always + also an anchor, the list will also contain the positions of this item. + + \see positions, anchor +*/ + +/* end of documentation of inline functions */ +/* start documentation of pure virtual functions */ + +/*! \fn void QCPAbstractItem::draw(QCPPainter *painter) = 0 + \internal + + Draws this item with the provided \a painter. + + The cliprect of the provided painter is set to the rect returned by \ref clipRect before this + function is called. The clipRect depends on the clipping settings defined by \ref + setClipToAxisRect and \ref setClipAxisRect. +*/ + +/* end documentation of pure virtual functions */ +/* start documentation of signals */ + +/*! \fn void QCPAbstractItem::selectionChanged(bool selected) + This signal is emitted when the selection state of this item has changed, either by user interaction + or by a direct call to \ref setSelected. +*/ + +/* end documentation of signals */ + +/*! + Base class constructor which initializes base class members. +*/ +QCPAbstractItem::QCPAbstractItem(QCustomPlot *parentPlot) : + QCPLayerable(parentPlot), + mClipToAxisRect(false), + mSelectable(true), + mSelected(false) +{ + QList rects = parentPlot->axisRects(); + if (rects.size() > 0) + { + setClipToAxisRect(true); + setClipAxisRect(rects.first()); + } +} + +QCPAbstractItem::~QCPAbstractItem() +{ + // don't delete mPositions because every position is also an anchor and thus in mAnchors + qDeleteAll(mAnchors); +} + +/* can't make this a header inline function, because QPointer breaks with forward declared types, see QTBUG-29588 */ +QCPAxisRect *QCPAbstractItem::clipAxisRect() const +{ + return mClipAxisRect.data(); +} + +/*! + Sets whether the item shall be clipped to an axis rect or whether it shall be visible on the + entire QCustomPlot. The axis rect can be set with \ref setClipAxisRect. + + \see setClipAxisRect +*/ +void QCPAbstractItem::setClipToAxisRect(bool clip) +{ + mClipToAxisRect = clip; + if (mClipToAxisRect) + setParentLayerable(mClipAxisRect.data()); +} + +/*! + Sets the clip axis rect. It defines the rect that will be used to clip the item when \ref + setClipToAxisRect is set to true. + + \see setClipToAxisRect +*/ +void QCPAbstractItem::setClipAxisRect(QCPAxisRect *rect) +{ + mClipAxisRect = rect; + if (mClipToAxisRect) + setParentLayerable(mClipAxisRect.data()); +} + +/*! + Sets whether the user can (de-)select this item by clicking on the QCustomPlot surface. + (When \ref QCustomPlot::setInteractions contains QCustomPlot::iSelectItems.) + + However, even when \a selectable was set to false, it is possible to set the selection manually, + by calling \ref setSelected. + + \see QCustomPlot::setInteractions, setSelected +*/ +void QCPAbstractItem::setSelectable(bool selectable) +{ + if (mSelectable != selectable) + { + mSelectable = selectable; + emit selectableChanged(mSelectable); + } +} + +/*! + Sets whether this item is selected or not. When selected, it might use a different visual + appearance (e.g. pen and brush), this depends on the specific item though. + + The entire selection mechanism for items is handled automatically when \ref + QCustomPlot::setInteractions contains QCustomPlot::iSelectItems. You only need to call this + function when you wish to change the selection state manually. + + This function can change the selection state even when \ref setSelectable was set to false. + + emits the \ref selectionChanged signal when \a selected is different from the previous selection state. + + \see setSelectable, selectTest +*/ +void QCPAbstractItem::setSelected(bool selected) +{ + if (mSelected != selected) + { + mSelected = selected; + emit selectionChanged(mSelected); + } +} + +/*! + Returns the QCPItemPosition with the specified \a name. If this item doesn't have a position by + that name, returns 0. + + This function provides an alternative way to access item positions. Normally, you access + positions direcly by their member pointers (which typically have the same variable name as \a + name). + + \see positions, anchor +*/ +QCPItemPosition *QCPAbstractItem::position(const QString &name) const +{ + for (int i=0; iname() == name) + return mPositions.at(i); + } + qDebug() << Q_FUNC_INFO << "position with name not found:" << name; + return 0; +} + +/*! + Returns the QCPItemAnchor with the specified \a name. If this item doesn't have an anchor by + that name, returns 0. + + This function provides an alternative way to access item anchors. Normally, you access + anchors direcly by their member pointers (which typically have the same variable name as \a + name). + + \see anchors, position +*/ +QCPItemAnchor *QCPAbstractItem::anchor(const QString &name) const +{ + for (int i=0; iname() == name) + return mAnchors.at(i); + } + qDebug() << Q_FUNC_INFO << "anchor with name not found:" << name; + return 0; +} + +/*! + Returns whether this item has an anchor with the specified \a name. + + Note that you can check for positions with this function, too. This is because every position is + also an anchor (QCPItemPosition inherits from QCPItemAnchor). + + \see anchor, position +*/ +bool QCPAbstractItem::hasAnchor(const QString &name) const +{ + for (int i=0; iname() == name) + return true; + } + return false; +} + +/*! \internal + + Returns the rect the visual representation of this item is clipped to. This depends on the + current setting of \ref setClipToAxisRect as well as the axis rect set with \ref setClipAxisRect. + + If the item is not clipped to an axis rect, the \ref QCustomPlot::viewport rect is returned. + + \see draw +*/ +QRect QCPAbstractItem::clipRect() const +{ + if (mClipToAxisRect && mClipAxisRect) + return mClipAxisRect.data()->rect(); + else + return mParentPlot->viewport(); +} + +/*! \internal + + A convenience function to easily set the QPainter::Antialiased hint on the provided \a painter + before drawing item lines. + + This is the antialiasing state the painter passed to the \ref draw method is in by default. + + This function takes into account the local setting of the antialiasing flag as well as the + overrides set with \ref QCustomPlot::setAntialiasedElements and \ref + QCustomPlot::setNotAntialiasedElements. + + \see setAntialiased +*/ +void QCPAbstractItem::applyDefaultAntialiasingHint(QCPPainter *painter) const +{ + applyAntialiasingHint(painter, mAntialiased, QCP::aeItems); +} + +/*! \internal + + Finds the shortest squared distance of \a point to the line segment defined by \a start and \a + end. + + This function may be used to help with the implementation of the \ref selectTest function for + specific items. + + \note This function is identical to QCPAbstractPlottable::distSqrToLine + + \see rectSelectTest +*/ +double QCPAbstractItem::distSqrToLine(const QPointF &start, const QPointF &end, const QPointF &point) const +{ + QVector2D a(start); + QVector2D b(end); + QVector2D p(point); + QVector2D v(b-a); + + double vLengthSqr = v.lengthSquared(); + if (!qFuzzyIsNull(vLengthSqr)) + { + double mu = QVector2D::dotProduct(p-a, v)/vLengthSqr; + if (mu < 0) + return (a-p).lengthSquared(); + else if (mu > 1) + return (b-p).lengthSquared(); + else + return ((a + mu*v)-p).lengthSquared(); + } else + return (a-p).lengthSquared(); +} + +/*! \internal + + A convenience function which returns the selectTest value for a specified \a rect and a specified + click position \a pos. \a filledRect defines whether a click inside the rect should also be + considered a hit or whether only the rect border is sensitive to hits. + + This function may be used to help with the implementation of the \ref selectTest function for + specific items. + + For example, if your item consists of four rects, call this function four times, once for each + rect, in your \ref selectTest reimplementation. Finally, return the minimum of all four returned + values. + + \see distSqrToLine +*/ +double QCPAbstractItem::rectSelectTest(const QRectF &rect, const QPointF &pos, bool filledRect) const +{ + double result = -1; + + // distance to border: + QList lines; + lines << QLineF(rect.topLeft(), rect.topRight()) << QLineF(rect.bottomLeft(), rect.bottomRight()) + << QLineF(rect.topLeft(), rect.bottomLeft()) << QLineF(rect.topRight(), rect.bottomRight()); + double minDistSqr = std::numeric_limits::max(); + for (int i=0; i mParentPlot->selectionTolerance()*0.99) + { + if (rect.contains(pos)) + result = mParentPlot->selectionTolerance()*0.99; + } + return result; +} + +/*! \internal + + Returns the pixel position of the anchor with Id \a anchorId. This function must be reimplemented in + item subclasses if they want to provide anchors (QCPItemAnchor). + + For example, if the item has two anchors with id 0 and 1, this function takes one of these anchor + ids and returns the respective pixel points of the specified anchor. + + \see createAnchor +*/ +QPointF QCPAbstractItem::anchorPixelPoint(int anchorId) const +{ + qDebug() << Q_FUNC_INFO << "called on item which shouldn't have any anchors (this method not reimplemented). anchorId" << anchorId; + return QPointF(); +} + +/*! \internal + + Creates a QCPItemPosition, registers it with this item and returns a pointer to it. The specified + \a name must be a unique string that is usually identical to the variable name of the position + member (This is needed to provide the name-based \ref position access to positions). + + Don't delete positions created by this function manually, as the item will take care of it. + + Use this function in the constructor (initialization list) of the specific item subclass to + create each position member. Don't create QCPItemPositions with \b new yourself, because they + won't be registered with the item properly. + + \see createAnchor +*/ +QCPItemPosition *QCPAbstractItem::createPosition(const QString &name) +{ + if (hasAnchor(name)) + qDebug() << Q_FUNC_INFO << "anchor/position with name exists already:" << name; + QCPItemPosition *newPosition = new QCPItemPosition(mParentPlot, this, name); + mPositions.append(newPosition); + mAnchors.append(newPosition); // every position is also an anchor + newPosition->setAxes(mParentPlot->xAxis, mParentPlot->yAxis); + newPosition->setType(QCPItemPosition::ptPlotCoords); + if (mParentPlot->axisRect()) + newPosition->setAxisRect(mParentPlot->axisRect()); + newPosition->setCoords(0, 0); + return newPosition; +} + +/*! \internal + + Creates a QCPItemAnchor, registers it with this item and returns a pointer to it. The specified + \a name must be a unique string that is usually identical to the variable name of the anchor + member (This is needed to provide the name based \ref anchor access to anchors). + + The \a anchorId must be a number identifying the created anchor. It is recommended to create an + enum (e.g. "AnchorIndex") for this on each item that uses anchors. This id is used by the anchor + to identify itself when it calls QCPAbstractItem::anchorPixelPoint. That function then returns + the correct pixel coordinates for the passed anchor id. + + Don't delete anchors created by this function manually, as the item will take care of it. + + Use this function in the constructor (initialization list) of the specific item subclass to + create each anchor member. Don't create QCPItemAnchors with \b new yourself, because then they + won't be registered with the item properly. + + \see createPosition +*/ +QCPItemAnchor *QCPAbstractItem::createAnchor(const QString &name, int anchorId) +{ + if (hasAnchor(name)) + qDebug() << Q_FUNC_INFO << "anchor/position with name exists already:" << name; + QCPItemAnchor *newAnchor = new QCPItemAnchor(mParentPlot, this, name, anchorId); + mAnchors.append(newAnchor); + return newAnchor; +} + +/* inherits documentation from base class */ +void QCPAbstractItem::selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) +{ + Q_UNUSED(event) + Q_UNUSED(details) + if (mSelectable) + { + bool selBefore = mSelected; + setSelected(additive ? !mSelected : true); + if (selectionStateChanged) + *selectionStateChanged = mSelected != selBefore; + } +} + +/* inherits documentation from base class */ +void QCPAbstractItem::deselectEvent(bool *selectionStateChanged) +{ + if (mSelectable) + { + bool selBefore = mSelected; + setSelected(false); + if (selectionStateChanged) + *selectionStateChanged = mSelected != selBefore; + } +} + +/* inherits documentation from base class */ +QCP::Interaction QCPAbstractItem::selectionCategory() const +{ + return QCP::iSelectItems; +} + + +/*! \file */ + + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCustomPlot +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCustomPlot + + \brief The central class of the library. This is the QWidget which displays the plot and + interacts with the user. + + For tutorials on how to use QCustomPlot, see the website\n + http://www.qcustomplot.com/ +*/ + +/* start of documentation of inline functions */ + +/*! \fn QRect QCustomPlot::viewport() const + + Returns the viewport rect of this QCustomPlot instance. The viewport is the area the plot is + drawn in, all mechanisms, e.g. margin caluclation take the viewport to be the outer border of the + plot. The viewport normally is the rect() of the QCustomPlot widget, i.e. a rect with top left + (0, 0) and size of the QCustomPlot widget. + + Don't confuse the viewport with the axis rect (QCustomPlot::axisRect). An axis rect is typically + an area enclosed by four axes, where the graphs/plottables are drawn in. The viewport is larger + and contains also the axes themselves, their tick numbers, their labels, the plot title etc. + + Only when saving to a file (see \ref savePng, \ref savePdf etc.) the viewport is temporarily + modified to allow saving plots with sizes independent of the current widget size. +*/ + +/*! \fn QCPLayoutGrid *QCustomPlot::plotLayout() const + + Returns the top level layout of this QCustomPlot instance. It is a \ref QCPLayoutGrid, initially containing just + one cell with the main QCPAxisRect inside. +*/ + +/* end of documentation of inline functions */ +/* start of documentation of signals */ + +/*! \fn void QCustomPlot::mouseDoubleClick(QMouseEvent *event) + + This signal is emitted when the QCustomPlot receives a mouse double click event. +*/ + +/*! \fn void QCustomPlot::mousePress(QMouseEvent *event) + + This signal is emitted when the QCustomPlot receives a mouse press event. + + It is emitted before QCustomPlot handles any other mechanism like range dragging. So a slot + connected to this signal can still influence the behaviour e.g. with \ref QCPAxisRect::setRangeDrag or \ref + QCPAxisRect::setRangeDragAxes. +*/ + +/*! \fn void QCustomPlot::mouseMove(QMouseEvent *event) + + This signal is emitted when the QCustomPlot receives a mouse move event. + + It is emitted before QCustomPlot handles any other mechanism like range dragging. So a slot + connected to this signal can still influence the behaviour e.g. with \ref QCPAxisRect::setRangeDrag or \ref + QCPAxisRect::setRangeDragAxes. + + \warning It is discouraged to change the drag-axes with \ref QCPAxisRect::setRangeDragAxes here, + because the dragging starting point was saved the moment the mouse was pressed. Thus it only has + a meaning for the range drag axes that were set at that moment. If you want to change the drag + axes, consider doing this in the \ref mousePress signal instead. +*/ + +/*! \fn void QCustomPlot::mouseRelease(QMouseEvent *event) + + This signal is emitted when the QCustomPlot receives a mouse release event. + + It is emitted before QCustomPlot handles any other mechanisms like object selection. So a + slot connected to this signal can still influence the behaviour e.g. with \ref setInteractions or + \ref QCPAbstractPlottable::setSelectable. +*/ + +/*! \fn void QCustomPlot::mouseWheel(QMouseEvent *event) + + This signal is emitted when the QCustomPlot receives a mouse wheel event. + + It is emitted before QCustomPlot handles any other mechanisms like range zooming. So a slot + connected to this signal can still influence the behaviour e.g. with \ref QCPAxisRect::setRangeZoom, \ref + QCPAxisRect::setRangeZoomAxes or \ref QCPAxisRect::setRangeZoomFactor. +*/ + +/*! \fn void QCustomPlot::plottableClick(QCPAbstractPlottable *plottable, QMouseEvent *event) + + This signal is emitted when a plottable is clicked. + + \a event is the mouse event that caused the click and \a plottable is the plottable that received + the click. + + \see plottableDoubleClick +*/ + +/*! \fn void QCustomPlot::plottableDoubleClick(QCPAbstractPlottable *plottable, QMouseEvent *event) + + This signal is emitted when a plottable is double clicked. + + \a event is the mouse event that caused the click and \a plottable is the plottable that received + the click. + + \see plottableClick +*/ + +/*! \fn void QCustomPlot::itemClick(QCPAbstractItem *item, QMouseEvent *event) + + This signal is emitted when an item is clicked. + + \a event is the mouse event that caused the click and \a item is the item that received the + click. + + \see itemDoubleClick +*/ + +/*! \fn void QCustomPlot::itemDoubleClick(QCPAbstractItem *item, QMouseEvent *event) + + This signal is emitted when an item is double clicked. + + \a event is the mouse event that caused the click and \a item is the item that received the + click. + + \see itemClick +*/ + +/*! \fn void QCustomPlot::axisClick(QCPAxis *axis, QCPAxis::SelectablePart part, QMouseEvent *event) + + This signal is emitted when an axis is clicked. + + \a event is the mouse event that caused the click, \a axis is the axis that received the click and + \a part indicates the part of the axis that was clicked. + + \see axisDoubleClick +*/ + +/*! \fn void QCustomPlot::axisDoubleClick(QCPAxis *axis, QCPAxis::SelectablePart part, QMouseEvent *event) + + This signal is emitted when an axis is double clicked. + + \a event is the mouse event that caused the click, \a axis is the axis that received the click and + \a part indicates the part of the axis that was clicked. + + \see axisClick +*/ + +/*! \fn void QCustomPlot::legendClick(QCPLegend *legend, QCPAbstractLegendItem *item, QMouseEvent *event) + + This signal is emitted when a legend (item) is clicked. + + \a event is the mouse event that caused the click, \a legend is the legend that received the + click and \a item is the legend item that received the click. If only the legend and no item is + clicked, \a item is 0. This happens for a click inside the legend padding or the space between + two items. + + \see legendDoubleClick +*/ + +/*! \fn void QCustomPlot::legendDoubleClick(QCPLegend *legend, QCPAbstractLegendItem *item, QMouseEvent *event) + + This signal is emitted when a legend (item) is double clicked. + + \a event is the mouse event that caused the click, \a legend is the legend that received the + click and \a item is the legend item that received the click. If only the legend and no item is + clicked, \a item is 0. This happens for a click inside the legend padding or the space between + two items. + + \see legendClick +*/ + +/*! \fn void QCustomPlot:: titleClick(QMouseEvent *event, QCPPlotTitle *title) + + This signal is emitted when a plot title is clicked. + + \a event is the mouse event that caused the click and \a title is the plot title that received + the click. + + \see titleDoubleClick +*/ + +/*! \fn void QCustomPlot::titleDoubleClick(QMouseEvent *event, QCPPlotTitle *title) + + This signal is emitted when a plot title is double clicked. + + \a event is the mouse event that caused the click and \a title is the plot title that received + the click. + + \see titleClick +*/ + +/*! \fn void QCustomPlot::selectionChangedByUser() + + This signal is emitted after the user has changed the selection in the QCustomPlot, e.g. by + clicking. It is not emitted when the selection state of an object has changed programmatically by + a direct call to setSelected() on an object or by calling \ref deselectAll. + + In addition to this signal, selectable objects also provide individual signals, for example + QCPAxis::selectionChanged or QCPAbstractPlottable::selectionChanged. Note that those signals are + emitted even if the selection state is changed programmatically. + + See the documentation of \ref setInteractions for details about the selection mechanism. + + \see selectedPlottables, selectedGraphs, selectedItems, selectedAxes, selectedLegends +*/ + +/*! \fn void QCustomPlot::beforeReplot() + + This signal is emitted immediately before a replot takes place (caused by a call to the slot \ref + replot). + + It is safe to mutually connect the replot slot with this signal on two QCustomPlots to make them + replot synchronously, it won't cause an infinite recursion. + + \see replot, afterReplot +*/ + +/*! \fn void QCustomPlot::afterReplot() + + This signal is emitted immediately after a replot has taken place (caused by a call to the slot \ref + replot). + + It is safe to mutually connect the replot slot with this signal on two QCustomPlots to make them + replot synchronously, it won't cause an infinite recursion. + + \see replot, beforeReplot +*/ + +/* end of documentation of signals */ +/* start of documentation of public members */ + +/*! \var QCPAxis *QCustomPlot::xAxis + + A pointer to the primary x Axis (bottom) of the main axis rect of the plot. + + QCustomPlot offers convenient pointers to the axes (\ref xAxis, \ref yAxis, \ref xAxis2, \ref + yAxis2) and the \ref legend. They make it very easy working with plots that only have a single + axis rect and at most one axis at each axis rect side. If you use \link thelayoutsystem the + layout system\endlink to add multiple axis rects or multiple axes to one side, use the \ref + QCPAxisRect::axis interface to access the new axes. If one of the four default axes or the + default legend is removed due to manipulation of the layout system (e.g. by removing the main + axis rect), the corresponding pointers become 0. +*/ + +/*! \var QCPAxis *QCustomPlot::yAxis + + A pointer to the primary y Axis (left) of the main axis rect of the plot. + + QCustomPlot offers convenient pointers to the axes (\ref xAxis, \ref yAxis, \ref xAxis2, \ref + yAxis2) and the \ref legend. They make it very easy working with plots that only have a single + axis rect and at most one axis at each axis rect side. If you use \link thelayoutsystem the + layout system\endlink to add multiple axis rects or multiple axes to one side, use the \ref + QCPAxisRect::axis interface to access the new axes. If one of the four default axes or the + default legend is removed due to manipulation of the layout system (e.g. by removing the main + axis rect), the corresponding pointers become 0. +*/ + +/*! \var QCPAxis *QCustomPlot::xAxis2 + + A pointer to the secondary x Axis (top) of the main axis rect of the plot. Secondary axes are + invisible by default. Use QCPAxis::setVisible to change this (or use \ref + QCPAxisRect::setupFullAxesBox). + + QCustomPlot offers convenient pointers to the axes (\ref xAxis, \ref yAxis, \ref xAxis2, \ref + yAxis2) and the \ref legend. They make it very easy working with plots that only have a single + axis rect and at most one axis at each axis rect side. If you use \link thelayoutsystem the + layout system\endlink to add multiple axis rects or multiple axes to one side, use the \ref + QCPAxisRect::axis interface to access the new axes. If one of the four default axes or the + default legend is removed due to manipulation of the layout system (e.g. by removing the main + axis rect), the corresponding pointers become 0. +*/ + +/*! \var QCPAxis *QCustomPlot::yAxis2 + + A pointer to the secondary y Axis (right) of the main axis rect of the plot. Secondary axes are + invisible by default. Use QCPAxis::setVisible to change this (or use \ref + QCPAxisRect::setupFullAxesBox). + + QCustomPlot offers convenient pointers to the axes (\ref xAxis, \ref yAxis, \ref xAxis2, \ref + yAxis2) and the \ref legend. They make it very easy working with plots that only have a single + axis rect and at most one axis at each axis rect side. If you use \link thelayoutsystem the + layout system\endlink to add multiple axis rects or multiple axes to one side, use the \ref + QCPAxisRect::axis interface to access the new axes. If one of the four default axes or the + default legend is removed due to manipulation of the layout system (e.g. by removing the main + axis rect), the corresponding pointers become 0. +*/ + +/*! \var QCPLegend *QCustomPlot::legend + + A pointer to the default legend of the main axis rect. The legend is invisible by default. Use + QCPLegend::setVisible to change this. + + QCustomPlot offers convenient pointers to the axes (\ref xAxis, \ref yAxis, \ref xAxis2, \ref + yAxis2) and the \ref legend. They make it very easy working with plots that only have a single + axis rect and at most one axis at each axis rect side. If you use \link thelayoutsystem the + layout system\endlink to add multiple legends to the plot, use the layout system interface to + access the new legend. For example, legends can be placed inside an axis rect's \ref + QCPAxisRect::insetLayout "inset layout", and must then also be accessed via the inset layout. If + the default legend is removed due to manipulation of the layout system (e.g. by removing the main + axis rect), the corresponding pointer becomes 0. +*/ + +/* end of documentation of public members */ + +/*! + Constructs a QCustomPlot and sets reasonable default values. +*/ +QCustomPlot::QCustomPlot(QWidget *parent) : + QWidget(parent), + xAxis(0), + yAxis(0), + xAxis2(0), + yAxis2(0), + legend(0), + mPlotLayout(0), + mAutoAddPlottableToLegend(true), + mAntialiasedElements(QCP::aeNone), + mNotAntialiasedElements(QCP::aeNone), + mInteractions(0), + mSelectionTolerance(8), + mNoAntialiasingOnDrag(false), + mBackgroundBrush(Qt::white, Qt::SolidPattern), + mBackgroundScaled(true), + mBackgroundScaledMode(Qt::KeepAspectRatioByExpanding), + mCurrentLayer(0), + mPlottingHints(QCP::phCacheLabels|QCP::phForceRepaint), + mMultiSelectModifier(Qt::ControlModifier), + mPaintBuffer(size()), + mMouseEventElement(0), + mReplotting(false) +{ + setAttribute(Qt::WA_NoMousePropagation); + setAttribute(Qt::WA_OpaquePaintEvent); + setMouseTracking(true); + QLocale currentLocale = locale(); + currentLocale.setNumberOptions(QLocale::OmitGroupSeparator); + setLocale(currentLocale); + + // create initial layers: + mLayers.append(new QCPLayer(this, QLatin1String("background"))); + mLayers.append(new QCPLayer(this, QLatin1String("grid"))); + mLayers.append(new QCPLayer(this, QLatin1String("main"))); + mLayers.append(new QCPLayer(this, QLatin1String("axes"))); + mLayers.append(new QCPLayer(this, QLatin1String("legend"))); + updateLayerIndices(); + setCurrentLayer(QLatin1String("main")); + + // create initial layout, axis rect and legend: + mPlotLayout = new QCPLayoutGrid; + mPlotLayout->initializeParentPlot(this); + mPlotLayout->setParent(this); // important because if parent is QWidget, QCPLayout::sizeConstraintsChanged will call QWidget::updateGeometry + mPlotLayout->setLayer(QLatin1String("main")); + QCPAxisRect *defaultAxisRect = new QCPAxisRect(this, true); + mPlotLayout->addElement(0, 0, defaultAxisRect); + xAxis = defaultAxisRect->axis(QCPAxis::atBottom); + yAxis = defaultAxisRect->axis(QCPAxis::atLeft); + xAxis2 = defaultAxisRect->axis(QCPAxis::atTop); + yAxis2 = defaultAxisRect->axis(QCPAxis::atRight); + legend = new QCPLegend; + legend->setVisible(false); + defaultAxisRect->insetLayout()->addElement(legend, Qt::AlignRight|Qt::AlignTop); + defaultAxisRect->insetLayout()->setMargins(QMargins(12, 12, 12, 12)); + + defaultAxisRect->setLayer(QLatin1String("background")); + xAxis->setLayer(QLatin1String("axes")); + yAxis->setLayer(QLatin1String("axes")); + xAxis2->setLayer(QLatin1String("axes")); + yAxis2->setLayer(QLatin1String("axes")); + xAxis->grid()->setLayer(QLatin1String("grid")); + yAxis->grid()->setLayer(QLatin1String("grid")); + xAxis2->grid()->setLayer(QLatin1String("grid")); + yAxis2->grid()->setLayer(QLatin1String("grid")); + legend->setLayer(QLatin1String("legend")); + + setViewport(rect()); // needs to be called after mPlotLayout has been created + + replot(); +} + +QCustomPlot::~QCustomPlot() +{ + clearPlottables(); + clearItems(); + + if (mPlotLayout) + { + delete mPlotLayout; + mPlotLayout = 0; + } + + mCurrentLayer = 0; + qDeleteAll(mLayers); // don't use removeLayer, because it would prevent the last layer to be removed + mLayers.clear(); +} + +/*! + Sets which elements are forcibly drawn antialiased as an \a or combination of QCP::AntialiasedElement. + + This overrides the antialiasing settings for whole element groups, normally controlled with the + \a setAntialiasing function on the individual elements. If an element is neither specified in + \ref setAntialiasedElements nor in \ref setNotAntialiasedElements, the antialiasing setting on + each individual element instance is used. + + For example, if \a antialiasedElements contains \ref QCP::aePlottables, all plottables will be + drawn antialiased, no matter what the specific QCPAbstractPlottable::setAntialiased value was set + to. + + if an element in \a antialiasedElements is already set in \ref setNotAntialiasedElements, it is + removed from there. + + \see setNotAntialiasedElements +*/ +void QCustomPlot::setAntialiasedElements(const QCP::AntialiasedElements &antialiasedElements) +{ + mAntialiasedElements = antialiasedElements; + + // make sure elements aren't in mNotAntialiasedElements and mAntialiasedElements simultaneously: + if ((mNotAntialiasedElements & mAntialiasedElements) != 0) + mNotAntialiasedElements |= ~mAntialiasedElements; +} + +/*! + Sets whether the specified \a antialiasedElement is forcibly drawn antialiased. + + See \ref setAntialiasedElements for details. + + \see setNotAntialiasedElement +*/ +void QCustomPlot::setAntialiasedElement(QCP::AntialiasedElement antialiasedElement, bool enabled) +{ + if (!enabled && mAntialiasedElements.testFlag(antialiasedElement)) + mAntialiasedElements &= ~antialiasedElement; + else if (enabled && !mAntialiasedElements.testFlag(antialiasedElement)) + mAntialiasedElements |= antialiasedElement; + + // make sure elements aren't in mNotAntialiasedElements and mAntialiasedElements simultaneously: + if ((mNotAntialiasedElements & mAntialiasedElements) != 0) + mNotAntialiasedElements |= ~mAntialiasedElements; +} + +/*! + Sets which elements are forcibly drawn not antialiased as an \a or combination of + QCP::AntialiasedElement. + + This overrides the antialiasing settings for whole element groups, normally controlled with the + \a setAntialiasing function on the individual elements. If an element is neither specified in + \ref setAntialiasedElements nor in \ref setNotAntialiasedElements, the antialiasing setting on + each individual element instance is used. + + For example, if \a notAntialiasedElements contains \ref QCP::aePlottables, no plottables will be + drawn antialiased, no matter what the specific QCPAbstractPlottable::setAntialiased value was set + to. + + if an element in \a notAntialiasedElements is already set in \ref setAntialiasedElements, it is + removed from there. + + \see setAntialiasedElements +*/ +void QCustomPlot::setNotAntialiasedElements(const QCP::AntialiasedElements ¬AntialiasedElements) +{ + mNotAntialiasedElements = notAntialiasedElements; + + // make sure elements aren't in mNotAntialiasedElements and mAntialiasedElements simultaneously: + if ((mNotAntialiasedElements & mAntialiasedElements) != 0) + mAntialiasedElements |= ~mNotAntialiasedElements; +} + +/*! + Sets whether the specified \a notAntialiasedElement is forcibly drawn not antialiased. + + See \ref setNotAntialiasedElements for details. + + \see setAntialiasedElement +*/ +void QCustomPlot::setNotAntialiasedElement(QCP::AntialiasedElement notAntialiasedElement, bool enabled) +{ + if (!enabled && mNotAntialiasedElements.testFlag(notAntialiasedElement)) + mNotAntialiasedElements &= ~notAntialiasedElement; + else if (enabled && !mNotAntialiasedElements.testFlag(notAntialiasedElement)) + mNotAntialiasedElements |= notAntialiasedElement; + + // make sure elements aren't in mNotAntialiasedElements and mAntialiasedElements simultaneously: + if ((mNotAntialiasedElements & mAntialiasedElements) != 0) + mAntialiasedElements |= ~mNotAntialiasedElements; +} + +/*! + If set to true, adding a plottable (e.g. a graph) to the QCustomPlot automatically also adds the + plottable to the legend (QCustomPlot::legend). + + \see addPlottable, addGraph, QCPLegend::addItem +*/ +void QCustomPlot::setAutoAddPlottableToLegend(bool on) +{ + mAutoAddPlottableToLegend = on; +} + +/*! + Sets the possible interactions of this QCustomPlot as an or-combination of \ref QCP::Interaction + enums. There are the following types of interactions: + + Axis range manipulation is controlled via \ref QCP::iRangeDrag and \ref QCP::iRangeZoom. When the + respective interaction is enabled, the user may drag axes ranges and zoom with the mouse wheel. + For details how to control which axes the user may drag/zoom and in what orientations, see \ref + QCPAxisRect::setRangeDrag, \ref QCPAxisRect::setRangeZoom, \ref QCPAxisRect::setRangeDragAxes, + \ref QCPAxisRect::setRangeZoomAxes. + + Plottable selection is controlled by \ref QCP::iSelectPlottables. If \ref QCP::iSelectPlottables is + set, the user may select plottables (graphs, curves, bars,...) by clicking on them or in their + vicinity (\ref setSelectionTolerance). Whether the user can actually select a plottable can + further be restricted with the \ref QCPAbstractPlottable::setSelectable function on the specific + plottable. To find out whether a specific plottable is selected, call + QCPAbstractPlottable::selected(). To retrieve a list of all currently selected plottables, call + \ref selectedPlottables. If you're only interested in QCPGraphs, you may use the convenience + function \ref selectedGraphs. + + Item selection is controlled by \ref QCP::iSelectItems. If \ref QCP::iSelectItems is set, the user + may select items (QCPItemLine, QCPItemText,...) by clicking on them or in their vicinity. To find + out whether a specific item is selected, call QCPAbstractItem::selected(). To retrieve a list of + all currently selected items, call \ref selectedItems. + + Axis selection is controlled with \ref QCP::iSelectAxes. If \ref QCP::iSelectAxes is set, the user + may select parts of the axes by clicking on them. What parts exactly (e.g. Axis base line, tick + labels, axis label) are selectable can be controlled via \ref QCPAxis::setSelectableParts for + each axis. To retrieve a list of all axes that currently contain selected parts, call \ref + selectedAxes. Which parts of an axis are selected, can be retrieved with QCPAxis::selectedParts(). + + Legend selection is controlled with \ref QCP::iSelectLegend. If this is set, the user may + select the legend itself or individual items by clicking on them. What parts exactly are + selectable can be controlled via \ref QCPLegend::setSelectableParts. To find out whether the + legend or any of its child items are selected, check the value of QCPLegend::selectedParts. To + find out which child items are selected, call \ref QCPLegend::selectedItems. + + All other selectable elements The selection of all other selectable objects (e.g. + QCPPlotTitle, or your own layerable subclasses) is controlled with \ref QCP::iSelectOther. If set, the + user may select those objects by clicking on them. To find out which are currently selected, you + need to check their selected state explicitly. + + If the selection state has changed by user interaction, the \ref selectionChangedByUser signal is + emitted. Each selectable object additionally emits an individual selectionChanged signal whenever + their selection state has changed, i.e. not only by user interaction. + + To allow multiple objects to be selected by holding the selection modifier (\ref + setMultiSelectModifier), set the flag \ref QCP::iMultiSelect. + + \note In addition to the selection mechanism presented here, QCustomPlot always emits + corresponding signals, when an object is clicked or double clicked. see \ref plottableClick and + \ref plottableDoubleClick for example. + + \see setInteraction, setSelectionTolerance +*/ +void QCustomPlot::setInteractions(const QCP::Interactions &interactions) +{ + mInteractions = interactions; +} + +/*! + Sets the single \a interaction of this QCustomPlot to \a enabled. + + For details about the interaction system, see \ref setInteractions. + + \see setInteractions +*/ +void QCustomPlot::setInteraction(const QCP::Interaction &interaction, bool enabled) +{ + if (!enabled && mInteractions.testFlag(interaction)) + mInteractions &= ~interaction; + else if (enabled && !mInteractions.testFlag(interaction)) + mInteractions |= interaction; +} + +/*! + Sets the tolerance that is used to decide whether a click selects an object (e.g. a plottable) or + not. + + If the user clicks in the vicinity of the line of e.g. a QCPGraph, it's only regarded as a + potential selection when the minimum distance between the click position and the graph line is + smaller than \a pixels. Objects that are defined by an area (e.g. QCPBars) only react to clicks + directly inside the area and ignore this selection tolerance. In other words, it only has meaning + for parts of objects that are too thin to exactly hit with a click and thus need such a + tolerance. + + \see setInteractions, QCPLayerable::selectTest +*/ +void QCustomPlot::setSelectionTolerance(int pixels) +{ + mSelectionTolerance = pixels; +} + +/*! + Sets whether antialiasing is disabled for this QCustomPlot while the user is dragging axes + ranges. If many objects, especially plottables, are drawn antialiased, this greatly improves + performance during dragging. Thus it creates a more responsive user experience. As soon as the + user stops dragging, the last replot is done with normal antialiasing, to restore high image + quality. + + \see setAntialiasedElements, setNotAntialiasedElements +*/ +void QCustomPlot::setNoAntialiasingOnDrag(bool enabled) +{ + mNoAntialiasingOnDrag = enabled; +} + +/*! + Sets the plotting hints for this QCustomPlot instance as an \a or combination of QCP::PlottingHint. + + \see setPlottingHint +*/ +void QCustomPlot::setPlottingHints(const QCP::PlottingHints &hints) +{ + mPlottingHints = hints; +} + +/*! + Sets the specified plotting \a hint to \a enabled. + + \see setPlottingHints +*/ +void QCustomPlot::setPlottingHint(QCP::PlottingHint hint, bool enabled) +{ + QCP::PlottingHints newHints = mPlottingHints; + if (!enabled) + newHints &= ~hint; + else + newHints |= hint; + + if (newHints != mPlottingHints) + setPlottingHints(newHints); +} + +/*! + Sets the keyboard modifier that will be recognized as multi-select-modifier. + + If \ref QCP::iMultiSelect is specified in \ref setInteractions, the user may select multiple objects + by clicking on them one after the other while holding down \a modifier. + + By default the multi-select-modifier is set to Qt::ControlModifier. + + \see setInteractions +*/ +void QCustomPlot::setMultiSelectModifier(Qt::KeyboardModifier modifier) +{ + mMultiSelectModifier = modifier; +} + +/*! + Sets the viewport of this QCustomPlot. The Viewport is the area that the top level layout + (QCustomPlot::plotLayout()) uses as its rect. Normally, the viewport is the entire widget rect. + + This function is used to allow arbitrary size exports with \ref toPixmap, \ref savePng, \ref + savePdf, etc. by temporarily changing the viewport size. +*/ +void QCustomPlot::setViewport(const QRect &rect) +{ + mViewport = rect; + if (mPlotLayout) + mPlotLayout->setOuterRect(mViewport); +} + +/*! + Sets \a pm as the viewport background pixmap (see \ref setViewport). The pixmap is always drawn + below all other objects in the plot. + + For cases where the provided pixmap doesn't have the same size as the viewport, scaling can be + enabled with \ref setBackgroundScaled and the scaling mode (whether and how the aspect ratio is + preserved) can be set with \ref setBackgroundScaledMode. To set all these options in one call, + consider using the overloaded version of this function. + + If a background brush was set with \ref setBackground(const QBrush &brush), the viewport will + first be filled with that brush, before drawing the background pixmap. This can be useful for + background pixmaps with translucent areas. + + \see setBackgroundScaled, setBackgroundScaledMode +*/ +void QCustomPlot::setBackground(const QPixmap &pm) +{ + mBackgroundPixmap = pm; + mScaledBackgroundPixmap = QPixmap(); +} + +/*! + Sets the background brush of the viewport (see \ref setViewport). + + Before drawing everything else, the background is filled with \a brush. If a background pixmap + was set with \ref setBackground(const QPixmap &pm), this brush will be used to fill the viewport + before the background pixmap is drawn. This can be useful for background pixmaps with translucent + areas. + + Set \a brush to Qt::NoBrush or Qt::Transparent to leave background transparent. This can be + useful for exporting to image formats which support transparency, e.g. \ref savePng. + + \see setBackgroundScaled, setBackgroundScaledMode +*/ +void QCustomPlot::setBackground(const QBrush &brush) +{ + mBackgroundBrush = brush; +} + +/*! \overload + + Allows setting the background pixmap of the viewport, whether it shall be scaled and how it + shall be scaled in one call. + + \see setBackground(const QPixmap &pm), setBackgroundScaled, setBackgroundScaledMode +*/ +void QCustomPlot::setBackground(const QPixmap &pm, bool scaled, Qt::AspectRatioMode mode) +{ + mBackgroundPixmap = pm; + mScaledBackgroundPixmap = QPixmap(); + mBackgroundScaled = scaled; + mBackgroundScaledMode = mode; +} + +/*! + Sets whether the viewport background pixmap shall be scaled to fit the viewport. If \a scaled is + set to true, control whether and how the aspect ratio of the original pixmap is preserved with + \ref setBackgroundScaledMode. + + Note that the scaled version of the original pixmap is buffered, so there is no performance + penalty on replots. (Except when the viewport dimensions are changed continuously.) + + \see setBackground, setBackgroundScaledMode +*/ +void QCustomPlot::setBackgroundScaled(bool scaled) +{ + mBackgroundScaled = scaled; +} + +/*! + If scaling of the viewport background pixmap is enabled (\ref setBackgroundScaled), use this + function to define whether and how the aspect ratio of the original pixmap is preserved. + + \see setBackground, setBackgroundScaled +*/ +void QCustomPlot::setBackgroundScaledMode(Qt::AspectRatioMode mode) +{ + mBackgroundScaledMode = mode; +} + +/*! + Returns the plottable with \a index. If the index is invalid, returns 0. + + There is an overloaded version of this function with no parameter which returns the last added + plottable, see QCustomPlot::plottable() + + \see plottableCount, addPlottable +*/ +QCPAbstractPlottable *QCustomPlot::plottable(int index) +{ + if (index >= 0 && index < mPlottables.size()) + { + return mPlottables.at(index); + } else + { + qDebug() << Q_FUNC_INFO << "index out of bounds:" << index; + return 0; + } +} + +/*! \overload + + Returns the last plottable that was added with \ref addPlottable. If there are no plottables in + the plot, returns 0. + + \see plottableCount, addPlottable +*/ +QCPAbstractPlottable *QCustomPlot::plottable() +{ + if (!mPlottables.isEmpty()) + { + return mPlottables.last(); + } else + return 0; +} + +/*! + Adds the specified plottable to the plot and, if \ref setAutoAddPlottableToLegend is enabled, to + the legend (QCustomPlot::legend). QCustomPlot takes ownership of the plottable. + + Returns true on success, i.e. when \a plottable isn't already in the plot and the parent plot of + \a plottable is this QCustomPlot (the latter is controlled by what axes were passed in the + plottable's constructor). + + \see plottable, plottableCount, removePlottable, clearPlottables +*/ +bool QCustomPlot::addPlottable(QCPAbstractPlottable *plottable) +{ + if (mPlottables.contains(plottable)) + { + qDebug() << Q_FUNC_INFO << "plottable already added to this QCustomPlot:" << reinterpret_cast(plottable); + return false; + } + if (plottable->parentPlot() != this) + { + qDebug() << Q_FUNC_INFO << "plottable not created with this QCustomPlot as parent:" << reinterpret_cast(plottable); + return false; + } + + mPlottables.append(plottable); + // possibly add plottable to legend: + if (mAutoAddPlottableToLegend) + plottable->addToLegend(); + // special handling for QCPGraphs to maintain the simple graph interface: + if (QCPGraph *graph = qobject_cast(plottable)) + mGraphs.append(graph); + if (!plottable->layer()) // usually the layer is already set in the constructor of the plottable (via QCPLayerable constructor) + plottable->setLayer(currentLayer()); + return true; +} + +/*! + Removes the specified plottable from the plot and, if necessary, from the legend (QCustomPlot::legend). + + Returns true on success. + + \see addPlottable, clearPlottables +*/ +bool QCustomPlot::removePlottable(QCPAbstractPlottable *plottable) +{ + if (!mPlottables.contains(plottable)) + { + qDebug() << Q_FUNC_INFO << "plottable not in list:" << reinterpret_cast(plottable); + return false; + } + + // remove plottable from legend: + plottable->removeFromLegend(); + // special handling for QCPGraphs to maintain the simple graph interface: + if (QCPGraph *graph = qobject_cast(plottable)) + mGraphs.removeOne(graph); + // remove plottable: + delete plottable; + mPlottables.removeOne(plottable); + return true; +} + +/*! \overload + + Removes the plottable by its \a index. +*/ +bool QCustomPlot::removePlottable(int index) +{ + if (index >= 0 && index < mPlottables.size()) + return removePlottable(mPlottables[index]); + else + { + qDebug() << Q_FUNC_INFO << "index out of bounds:" << index; + return false; + } +} + +/*! + Removes all plottables from the plot (and the QCustomPlot::legend, if necessary). + + Returns the number of plottables removed. + + \see removePlottable +*/ +int QCustomPlot::clearPlottables() +{ + int c = mPlottables.size(); + for (int i=c-1; i >= 0; --i) + removePlottable(mPlottables[i]); + return c; +} + +/*! + Returns the number of currently existing plottables in the plot + + \see plottable, addPlottable +*/ +int QCustomPlot::plottableCount() const +{ + return mPlottables.size(); +} + +/*! + Returns a list of the selected plottables. If no plottables are currently selected, the list is empty. + + There is a convenience function if you're only interested in selected graphs, see \ref selectedGraphs. + + \see setInteractions, QCPAbstractPlottable::setSelectable, QCPAbstractPlottable::setSelected +*/ +QList QCustomPlot::selectedPlottables() const +{ + QList result; + foreach (QCPAbstractPlottable *plottable, mPlottables) + { + if (plottable->selected()) + result.append(plottable); + } + return result; +} + +/*! + Returns the plottable at the pixel position \a pos. Plottables that only consist of single lines + (like graphs) have a tolerance band around them, see \ref setSelectionTolerance. If multiple + plottables come into consideration, the one closest to \a pos is returned. + + If \a onlySelectable is true, only plottables that are selectable + (QCPAbstractPlottable::setSelectable) are considered. + + If there is no plottable at \a pos, the return value is 0. + + \see itemAt, layoutElementAt +*/ +QCPAbstractPlottable *QCustomPlot::plottableAt(const QPointF &pos, bool onlySelectable) const +{ + QCPAbstractPlottable *resultPlottable = 0; + double resultDistance = mSelectionTolerance; // only regard clicks with distances smaller than mSelectionTolerance as selections, so initialize with that value + + foreach (QCPAbstractPlottable *plottable, mPlottables) + { + if (onlySelectable && !plottable->selectable()) // we could have also passed onlySelectable to the selectTest function, but checking here is faster, because we have access to QCPabstractPlottable::selectable + continue; + if ((plottable->keyAxis()->axisRect()->rect() & plottable->valueAxis()->axisRect()->rect()).contains(pos.toPoint())) // only consider clicks inside the rect that is spanned by the plottable's key/value axes + { + double currentDistance = plottable->selectTest(pos, false); + if (currentDistance >= 0 && currentDistance < resultDistance) + { + resultPlottable = plottable; + resultDistance = currentDistance; + } + } + } + + return resultPlottable; +} + +/*! + Returns whether this QCustomPlot instance contains the \a plottable. + + \see addPlottable +*/ +bool QCustomPlot::hasPlottable(QCPAbstractPlottable *plottable) const +{ + return mPlottables.contains(plottable); +} + +/*! + Returns the graph with \a index. If the index is invalid, returns 0. + + There is an overloaded version of this function with no parameter which returns the last created + graph, see QCustomPlot::graph() + + \see graphCount, addGraph +*/ +QCPGraph *QCustomPlot::graph(int index) const +{ + if (index >= 0 && index < mGraphs.size()) + { + return mGraphs.at(index); + } else + { + qDebug() << Q_FUNC_INFO << "index out of bounds:" << index; + return 0; + } +} + +/*! \overload + + Returns the last graph, that was created with \ref addGraph. If there are no graphs in the plot, + returns 0. + + \see graphCount, addGraph +*/ +QCPGraph *QCustomPlot::graph() const +{ + if (!mGraphs.isEmpty()) + { + return mGraphs.last(); + } else + return 0; +} + +/*! + Creates a new graph inside the plot. If \a keyAxis and \a valueAxis are left unspecified (0), the + bottom (xAxis) is used as key and the left (yAxis) is used as value axis. If specified, \a + keyAxis and \a valueAxis must reside in this QCustomPlot. + + \a keyAxis will be used as key axis (typically "x") and \a valueAxis as value axis (typically + "y") for the graph. + + Returns a pointer to the newly created graph, or 0 if adding the graph failed. + + \see graph, graphCount, removeGraph, clearGraphs +*/ +QCPGraph *QCustomPlot::addGraph(QCPAxis *keyAxis, QCPAxis *valueAxis) +{ + if (!keyAxis) keyAxis = xAxis; + if (!valueAxis) valueAxis = yAxis; + if (!keyAxis || !valueAxis) + { + qDebug() << Q_FUNC_INFO << "can't use default QCustomPlot xAxis or yAxis, because at least one is invalid (has been deleted)"; + return 0; + } + if (keyAxis->parentPlot() != this || valueAxis->parentPlot() != this) + { + qDebug() << Q_FUNC_INFO << "passed keyAxis or valueAxis doesn't have this QCustomPlot as parent"; + return 0; + } + + QCPGraph *newGraph = new QCPGraph(keyAxis, valueAxis); + if (addPlottable(newGraph)) + { + newGraph->setName(QLatin1String("Graph ")+QString::number(mGraphs.size())); + return newGraph; + } else + { + delete newGraph; + return 0; + } +} + +/*! + Removes the specified \a graph from the plot and, if necessary, from the QCustomPlot::legend. If + any other graphs in the plot have a channel fill set towards the removed graph, the channel fill + property of those graphs is reset to zero (no channel fill). + + Returns true on success. + + \see clearGraphs +*/ +bool QCustomPlot::removeGraph(QCPGraph *graph) +{ + return removePlottable(graph); +} + +/*! \overload + + Removes the graph by its \a index. +*/ +bool QCustomPlot::removeGraph(int index) +{ + if (index >= 0 && index < mGraphs.size()) + return removeGraph(mGraphs[index]); + else + return false; +} + +/*! + Removes all graphs from the plot (and the QCustomPlot::legend, if necessary). + + Returns the number of graphs removed. + + \see removeGraph +*/ +int QCustomPlot::clearGraphs() +{ + int c = mGraphs.size(); + for (int i=c-1; i >= 0; --i) + removeGraph(mGraphs[i]); + return c; +} + +/*! + Returns the number of currently existing graphs in the plot + + \see graph, addGraph +*/ +int QCustomPlot::graphCount() const +{ + return mGraphs.size(); +} + +/*! + Returns a list of the selected graphs. If no graphs are currently selected, the list is empty. + + If you are not only interested in selected graphs but other plottables like QCPCurve, QCPBars, + etc., use \ref selectedPlottables. + + \see setInteractions, selectedPlottables, QCPAbstractPlottable::setSelectable, QCPAbstractPlottable::setSelected +*/ +QList QCustomPlot::selectedGraphs() const +{ + QList result; + foreach (QCPGraph *graph, mGraphs) + { + if (graph->selected()) + result.append(graph); + } + return result; +} + +/*! + Returns the item with \a index. If the index is invalid, returns 0. + + There is an overloaded version of this function with no parameter which returns the last added + item, see QCustomPlot::item() + + \see itemCount, addItem +*/ +QCPAbstractItem *QCustomPlot::item(int index) const +{ + if (index >= 0 && index < mItems.size()) + { + return mItems.at(index); + } else + { + qDebug() << Q_FUNC_INFO << "index out of bounds:" << index; + return 0; + } +} + +/*! \overload + + Returns the last item, that was added with \ref addItem. If there are no items in the plot, + returns 0. + + \see itemCount, addItem +*/ +QCPAbstractItem *QCustomPlot::item() const +{ + if (!mItems.isEmpty()) + { + return mItems.last(); + } else + return 0; +} + +/*! + Adds the specified item to the plot. QCustomPlot takes ownership of the item. + + Returns true on success, i.e. when \a item wasn't already in the plot and the parent plot of \a + item is this QCustomPlot. + + \see item, itemCount, removeItem, clearItems +*/ +bool QCustomPlot::addItem(QCPAbstractItem *item) +{ + if (!mItems.contains(item) && item->parentPlot() == this) + { + mItems.append(item); + return true; + } else + { + qDebug() << Q_FUNC_INFO << "item either already in list or not created with this QCustomPlot as parent:" << reinterpret_cast(item); + return false; + } +} + +/*! + Removes the specified item from the plot. + + Returns true on success. + + \see addItem, clearItems +*/ +bool QCustomPlot::removeItem(QCPAbstractItem *item) +{ + if (mItems.contains(item)) + { + delete item; + mItems.removeOne(item); + return true; + } else + { + qDebug() << Q_FUNC_INFO << "item not in list:" << reinterpret_cast(item); + return false; + } +} + +/*! \overload + + Removes the item by its \a index. +*/ +bool QCustomPlot::removeItem(int index) +{ + if (index >= 0 && index < mItems.size()) + return removeItem(mItems[index]); + else + { + qDebug() << Q_FUNC_INFO << "index out of bounds:" << index; + return false; + } +} + +/*! + Removes all items from the plot. + + Returns the number of items removed. + + \see removeItem +*/ +int QCustomPlot::clearItems() +{ + int c = mItems.size(); + for (int i=c-1; i >= 0; --i) + removeItem(mItems[i]); + return c; +} + +/*! + Returns the number of currently existing items in the plot + + \see item, addItem +*/ +int QCustomPlot::itemCount() const +{ + return mItems.size(); +} + +/*! + Returns a list of the selected items. If no items are currently selected, the list is empty. + + \see setInteractions, QCPAbstractItem::setSelectable, QCPAbstractItem::setSelected +*/ +QList QCustomPlot::selectedItems() const +{ + QList result; + foreach (QCPAbstractItem *item, mItems) + { + if (item->selected()) + result.append(item); + } + return result; +} + +/*! + Returns the item at the pixel position \a pos. Items that only consist of single lines (e.g. \ref + QCPItemLine or \ref QCPItemCurve) have a tolerance band around them, see \ref + setSelectionTolerance. If multiple items come into consideration, the one closest to \a pos is + returned. + + If \a onlySelectable is true, only items that are selectable (QCPAbstractItem::setSelectable) are + considered. + + If there is no item at \a pos, the return value is 0. + + \see plottableAt, layoutElementAt +*/ +QCPAbstractItem *QCustomPlot::itemAt(const QPointF &pos, bool onlySelectable) const +{ + QCPAbstractItem *resultItem = 0; + double resultDistance = mSelectionTolerance; // only regard clicks with distances smaller than mSelectionTolerance as selections, so initialize with that value + + foreach (QCPAbstractItem *item, mItems) + { + if (onlySelectable && !item->selectable()) // we could have also passed onlySelectable to the selectTest function, but checking here is faster, because we have access to QCPAbstractItem::selectable + continue; + if (!item->clipToAxisRect() || item->clipRect().contains(pos.toPoint())) // only consider clicks inside axis cliprect of the item if actually clipped to it + { + double currentDistance = item->selectTest(pos, false); + if (currentDistance >= 0 && currentDistance < resultDistance) + { + resultItem = item; + resultDistance = currentDistance; + } + } + } + + return resultItem; +} + +/*! + Returns whether this QCustomPlot contains the \a item. + + \see addItem +*/ +bool QCustomPlot::hasItem(QCPAbstractItem *item) const +{ + return mItems.contains(item); +} + +/*! + Returns the layer with the specified \a name. If there is no layer with the specified name, 0 is + returned. + + Layer names are case-sensitive. + + \see addLayer, moveLayer, removeLayer +*/ +QCPLayer *QCustomPlot::layer(const QString &name) const +{ + foreach (QCPLayer *layer, mLayers) + { + if (layer->name() == name) + return layer; + } + return 0; +} + +/*! \overload + + Returns the layer by \a index. If the index is invalid, 0 is returned. + + \see addLayer, moveLayer, removeLayer +*/ +QCPLayer *QCustomPlot::layer(int index) const +{ + if (index >= 0 && index < mLayers.size()) + { + return mLayers.at(index); + } else + { + qDebug() << Q_FUNC_INFO << "index out of bounds:" << index; + return 0; + } +} + +/*! + Returns the layer that is set as current layer (see \ref setCurrentLayer). +*/ +QCPLayer *QCustomPlot::currentLayer() const +{ + return mCurrentLayer; +} + +/*! + Sets the layer with the specified \a name to be the current layer. All layerables (\ref + QCPLayerable), e.g. plottables and items, are created on the current layer. + + Returns true on success, i.e. if there is a layer with the specified \a name in the QCustomPlot. + + Layer names are case-sensitive. + + \see addLayer, moveLayer, removeLayer, QCPLayerable::setLayer +*/ +bool QCustomPlot::setCurrentLayer(const QString &name) +{ + if (QCPLayer *newCurrentLayer = layer(name)) + { + return setCurrentLayer(newCurrentLayer); + } else + { + qDebug() << Q_FUNC_INFO << "layer with name doesn't exist:" << name; + return false; + } +} + +/*! \overload + + Sets the provided \a layer to be the current layer. + + Returns true on success, i.e. when \a layer is a valid layer in the QCustomPlot. + + \see addLayer, moveLayer, removeLayer +*/ +bool QCustomPlot::setCurrentLayer(QCPLayer *layer) +{ + if (!mLayers.contains(layer)) + { + qDebug() << Q_FUNC_INFO << "layer not a layer of this QCustomPlot:" << reinterpret_cast(layer); + return false; + } + + mCurrentLayer = layer; + return true; +} + +/*! + Returns the number of currently existing layers in the plot + + \see layer, addLayer +*/ +int QCustomPlot::layerCount() const +{ + return mLayers.size(); +} + +/*! + Adds a new layer to this QCustomPlot instance. The new layer will have the name \a name, which + must be unique. Depending on \a insertMode, it is positioned either below or above \a otherLayer. + + Returns true on success, i.e. if there is no other layer named \a name and \a otherLayer is a + valid layer inside this QCustomPlot. + + If \a otherLayer is 0, the highest layer in the QCustomPlot will be used. + + For an explanation of what layers are in QCustomPlot, see the documentation of \ref QCPLayer. + + \see layer, moveLayer, removeLayer +*/ +bool QCustomPlot::addLayer(const QString &name, QCPLayer *otherLayer, QCustomPlot::LayerInsertMode insertMode) +{ + if (!otherLayer) + otherLayer = mLayers.last(); + if (!mLayers.contains(otherLayer)) + { + qDebug() << Q_FUNC_INFO << "otherLayer not a layer of this QCustomPlot:" << reinterpret_cast(otherLayer); + return false; + } + if (layer(name)) + { + qDebug() << Q_FUNC_INFO << "A layer exists already with the name" << name; + return false; + } + + QCPLayer *newLayer = new QCPLayer(this, name); + mLayers.insert(otherLayer->index() + (insertMode==limAbove ? 1:0), newLayer); + updateLayerIndices(); + return true; +} + +/*! + Removes the specified \a layer and returns true on success. + + All layerables (e.g. plottables and items) on the removed layer will be moved to the layer below + \a layer. If \a layer is the bottom layer, the layerables are moved to the layer above. In both + cases, the total rendering order of all layerables in the QCustomPlot is preserved. + + If \a layer is the current layer (\ref setCurrentLayer), the layer below (or above, if bottom + layer) becomes the new current layer. + + It is not possible to remove the last layer of the plot. + + \see layer, addLayer, moveLayer +*/ +bool QCustomPlot::removeLayer(QCPLayer *layer) +{ + if (!mLayers.contains(layer)) + { + qDebug() << Q_FUNC_INFO << "layer not a layer of this QCustomPlot:" << reinterpret_cast(layer); + return false; + } + if (mLayers.size() < 2) + { + qDebug() << Q_FUNC_INFO << "can't remove last layer"; + return false; + } + + // append all children of this layer to layer below (if this is lowest layer, prepend to layer above) + int removedIndex = layer->index(); + bool isFirstLayer = removedIndex==0; + QCPLayer *targetLayer = isFirstLayer ? mLayers.at(removedIndex+1) : mLayers.at(removedIndex-1); + QList children = layer->children(); + if (isFirstLayer) // prepend in reverse order (so order relative to each other stays the same) + { + for (int i=children.size()-1; i>=0; --i) + children.at(i)->moveToLayer(targetLayer, true); + } else // append normally + { + for (int i=0; imoveToLayer(targetLayer, false); + } + // if removed layer is current layer, change current layer to layer below/above: + if (layer == mCurrentLayer) + setCurrentLayer(targetLayer); + // remove layer: + delete layer; + mLayers.removeOne(layer); + updateLayerIndices(); + return true; +} + +/*! + Moves the specified \a layer either above or below \a otherLayer. Whether it's placed above or + below is controlled with \a insertMode. + + Returns true on success, i.e. when both \a layer and \a otherLayer are valid layers in the + QCustomPlot. + + \see layer, addLayer, moveLayer +*/ +bool QCustomPlot::moveLayer(QCPLayer *layer, QCPLayer *otherLayer, QCustomPlot::LayerInsertMode insertMode) +{ + if (!mLayers.contains(layer)) + { + qDebug() << Q_FUNC_INFO << "layer not a layer of this QCustomPlot:" << reinterpret_cast(layer); + return false; + } + if (!mLayers.contains(otherLayer)) + { + qDebug() << Q_FUNC_INFO << "otherLayer not a layer of this QCustomPlot:" << reinterpret_cast(otherLayer); + return false; + } + + mLayers.move(layer->index(), otherLayer->index() + (insertMode==limAbove ? 1:0)); + updateLayerIndices(); + return true; +} + +/*! + Returns the number of axis rects in the plot. + + All axis rects can be accessed via QCustomPlot::axisRect(). + + Initially, only one axis rect exists in the plot. + + \see axisRect, axisRects +*/ +int QCustomPlot::axisRectCount() const +{ + return axisRects().size(); +} + +/*! + Returns the axis rect with \a index. + + Initially, only one axis rect (with index 0) exists in the plot. If multiple axis rects were + added, all of them may be accessed with this function in a linear fashion (even when they are + nested in a layout hierarchy or inside other axis rects via QCPAxisRect::insetLayout). + + \see axisRectCount, axisRects +*/ +QCPAxisRect *QCustomPlot::axisRect(int index) const +{ + const QList rectList = axisRects(); + if (index >= 0 && index < rectList.size()) + { + return rectList.at(index); + } else + { + qDebug() << Q_FUNC_INFO << "invalid axis rect index" << index; + return 0; + } +} + +/*! + Returns all axis rects in the plot. + + \see axisRectCount, axisRect +*/ +QList QCustomPlot::axisRects() const +{ + QList result; + QStack elementStack; + if (mPlotLayout) + elementStack.push(mPlotLayout); + + while (!elementStack.isEmpty()) + { + foreach (QCPLayoutElement *element, elementStack.pop()->elements(false)) + { + if (element) + { + elementStack.push(element); + if (QCPAxisRect *ar = qobject_cast(element)) + result.append(ar); + } + } + } + + return result; +} + +/*! + Returns the layout element at pixel position \a pos. If there is no element at that position, + returns 0. + + Only visible elements are used. If \ref QCPLayoutElement::setVisible on the element itself or on + any of its parent elements is set to false, it will not be considered. + + \see itemAt, plottableAt +*/ +QCPLayoutElement *QCustomPlot::layoutElementAt(const QPointF &pos) const +{ + QCPLayoutElement *currentElement = mPlotLayout; + bool searchSubElements = true; + while (searchSubElements && currentElement) + { + searchSubElements = false; + foreach (QCPLayoutElement *subElement, currentElement->elements(false)) + { + if (subElement && subElement->realVisibility() && subElement->selectTest(pos, false) >= 0) + { + currentElement = subElement; + searchSubElements = true; + break; + } + } + } + return currentElement; +} + +/*! + Returns the axes that currently have selected parts, i.e. whose selection state is not \ref + QCPAxis::spNone. + + \see selectedPlottables, selectedLegends, setInteractions, QCPAxis::setSelectedParts, + QCPAxis::setSelectableParts +*/ +QList QCustomPlot::selectedAxes() const +{ + QList result, allAxes; + foreach (QCPAxisRect *rect, axisRects()) + allAxes << rect->axes(); + + foreach (QCPAxis *axis, allAxes) + { + if (axis->selectedParts() != QCPAxis::spNone) + result.append(axis); + } + + return result; +} + +/*! + Returns the legends that currently have selected parts, i.e. whose selection state is not \ref + QCPLegend::spNone. + + \see selectedPlottables, selectedAxes, setInteractions, QCPLegend::setSelectedParts, + QCPLegend::setSelectableParts, QCPLegend::selectedItems +*/ +QList QCustomPlot::selectedLegends() const +{ + QList result; + + QStack elementStack; + if (mPlotLayout) + elementStack.push(mPlotLayout); + + while (!elementStack.isEmpty()) + { + foreach (QCPLayoutElement *subElement, elementStack.pop()->elements(false)) + { + if (subElement) + { + elementStack.push(subElement); + if (QCPLegend *leg = qobject_cast(subElement)) + { + if (leg->selectedParts() != QCPLegend::spNone) + result.append(leg); + } + } + } + } + + return result; +} + +/*! + Deselects all layerables (plottables, items, axes, legends,...) of the QCustomPlot. + + Since calling this function is not a user interaction, this does not emit the \ref + selectionChangedByUser signal. The individual selectionChanged signals are emitted though, if the + objects were previously selected. + + \see setInteractions, selectedPlottables, selectedItems, selectedAxes, selectedLegends +*/ +void QCustomPlot::deselectAll() +{ + foreach (QCPLayer *layer, mLayers) + { + foreach (QCPLayerable *layerable, layer->children()) + layerable->deselectEvent(0); + } +} + +/*! + Causes a complete replot into the internal buffer. Finally, update() is called, to redraw the + buffer on the QCustomPlot widget surface. This is the method that must be called to make changes, + for example on the axis ranges or data points of graphs, visible. + + Under a few circumstances, QCustomPlot causes a replot by itself. Those are resize events of the + QCustomPlot widget and user interactions (object selection and range dragging/zooming). + + Before the replot happens, the signal \ref beforeReplot is emitted. After the replot, \ref + afterReplot is emitted. It is safe to mutually connect the replot slot with any of those two + signals on two QCustomPlots to make them replot synchronously, it won't cause an infinite + recursion. +*/ +void QCustomPlot::replot(QCustomPlot::RefreshPriority refreshPriority) +{ + if (mReplotting) // incase signals loop back to replot slot + return; + mReplotting = true; + emit beforeReplot(); + + mPaintBuffer.fill(mBackgroundBrush.style() == Qt::SolidPattern ? mBackgroundBrush.color() : Qt::transparent); + QCPPainter painter; + painter.begin(&mPaintBuffer); + if (painter.isActive()) + { + painter.setRenderHint(QPainter::HighQualityAntialiasing); // to make Antialiasing look good if using the OpenGL graphicssystem + if (mBackgroundBrush.style() != Qt::SolidPattern && mBackgroundBrush.style() != Qt::NoBrush) + painter.fillRect(mViewport, mBackgroundBrush); + draw(&painter); + painter.end(); + if ((refreshPriority == rpHint && mPlottingHints.testFlag(QCP::phForceRepaint)) || refreshPriority==rpImmediate) + repaint(); + else + update(); + } else // might happen if QCustomPlot has width or height zero + qDebug() << Q_FUNC_INFO << "Couldn't activate painter on buffer. This usually happens because QCustomPlot has width or height zero."; + + emit afterReplot(); + mReplotting = false; +} + +/*! + Rescales the axes such that all plottables (like graphs) in the plot are fully visible. + + if \a onlyVisiblePlottables is set to true, only the plottables that have their visibility set to true + (QCPLayerable::setVisible), will be used to rescale the axes. + + \see QCPAbstractPlottable::rescaleAxes, QCPAxis::rescale +*/ +void QCustomPlot::rescaleAxes(bool onlyVisiblePlottables) +{ + QList allAxes; + foreach (QCPAxisRect *rect, axisRects()) + allAxes << rect->axes(); + + foreach (QCPAxis *axis, allAxes) + axis->rescale(onlyVisiblePlottables); +} + +/*! + Saves a PDF with the vectorized plot to the file \a fileName. The axis ratio as well as the scale + of texts and lines will be derived from the specified \a width and \a height. This means, the + output will look like the normal on-screen output of a QCustomPlot widget with the corresponding + pixel width and height. If either \a width or \a height is zero, the exported image will have the + same dimensions as the QCustomPlot widget currently has. + + \a noCosmeticPen disables the use of cosmetic pens when drawing to the PDF file. Cosmetic pens + are pens with numerical width 0, which are always drawn as a one pixel wide line, no matter what + zoom factor is set in the PDF-Viewer. For more information about cosmetic pens, see the QPainter + and QPen documentation. + + The objects of the plot will appear in the current selection state. If you don't want any + selected objects to be painted in their selected look, deselect everything with \ref deselectAll + before calling this function. + + Returns true on success. + + \warning + \li If you plan on editing the exported PDF file with a vector graphics editor like + Inkscape, it is advised to set \a noCosmeticPen to true to avoid losing those cosmetic lines + (which might be quite many, because cosmetic pens are the default for e.g. axes and tick marks). + \li If calling this function inside the constructor of the parent of the QCustomPlot widget + (i.e. the MainWindow constructor, if QCustomPlot is inside the MainWindow), always provide + explicit non-zero widths and heights. If you leave \a width or \a height as 0 (default), this + function uses the current width and height of the QCustomPlot widget. However, in Qt, these + aren't defined yet inside the constructor, so you would get an image that has strange + widths/heights. + + \a pdfCreator and \a pdfTitle may be used to set the according metadata fields in the resulting + PDF file. + + \note On Android systems, this method does nothing and issues an according qDebug warning + message. This is also the case if for other reasons the define flag QT_NO_PRINTER is set. + + \see savePng, saveBmp, saveJpg, saveRastered +*/ +bool QCustomPlot::savePdf(const QString &fileName, bool noCosmeticPen, int width, int height, const QString &pdfCreator, const QString &pdfTitle) +{ + bool success = false; +//#if QT_NO_PRINTER + Q_UNUSED(fileName) + Q_UNUSED(noCosmeticPen) + Q_UNUSED(width) + Q_UNUSED(height) + Q_UNUSED(pdfCreator) + Q_UNUSED(pdfTitle) + qDebug() << Q_FUNC_INFO << "Qt was built without printer support (QT_NO_PRINTER). PDF not created."; +//#else +// int newWidth, newHeight; +// if (width == 0 || height == 0) +// { +// newWidth = this->width(); +// newHeight = this->height(); +// } else +// { +// newWidth = width; +// newHeight = height; +// } +// +// QPrinter printer(QPrinter::ScreenResolution); +// printer.setOutputFileName(fileName); +// printer.setOutputFormat(QPrinter::PdfFormat); +// printer.setColorMode(QPrinter::Color); +// printer.printEngine()->setProperty(QPrintEngine::PPK_Creator, pdfCreator); +// printer.printEngine()->setProperty(QPrintEngine::PPK_DocumentName, pdfTitle); +// QRect oldViewport = viewport(); +// setViewport(QRect(0, 0, newWidth, newHeight)); +//#if QT_VERSION < QT_VERSION_CHECK(5, 3, 0) +// printer.setFullPage(true); +// printer.setPaperSize(viewport().size(), QPrinter::DevicePixel); +//#else +// QPageLayout pageLayout; +// pageLayout.setMode(QPageLayout::FullPageMode); +// pageLayout.setOrientation(QPageLayout::Portrait); +// pageLayout.setMargins(QMarginsF(0, 0, 0, 0)); +// pageLayout.setPageSize(QPageSize(viewport().size(), QPageSize::Point, QString(), QPageSize::ExactMatch)); +// printer.setPageLayout(pageLayout); +//#endif +// QCPPainter printpainter; +// if (printpainter.begin(&printer)) +// { +// printpainter.setMode(QCPPainter::pmVectorized); +// printpainter.setMode(QCPPainter::pmNoCaching); +// printpainter.setMode(QCPPainter::pmNonCosmetic, noCosmeticPen); +// printpainter.setWindow(mViewport); +// if (mBackgroundBrush.style() != Qt::NoBrush && +// mBackgroundBrush.color() != Qt::white && +// mBackgroundBrush.color() != Qt::transparent && +// mBackgroundBrush.color().alpha() > 0) // draw pdf background color if not white/transparent +// printpainter.fillRect(viewport(), mBackgroundBrush); +// draw(&printpainter); +// printpainter.end(); +// success = true; +// } +// setViewport(oldViewport); +//#endif // QT_NO_PRINTER + return success; +} + +/*! + Saves a PNG image file to \a fileName on disc. The output plot will have the dimensions \a width + and \a height in pixels. If either \a width or \a height is zero, the exported image will have + the same dimensions as the QCustomPlot widget currently has. Line widths and texts etc. are not + scaled up when larger widths/heights are used. If you want that effect, use the \a scale parameter. + + For example, if you set both \a width and \a height to 100 and \a scale to 2, you will end up with an + image file of size 200*200 in which all graphical elements are scaled up by factor 2 (line widths, + texts, etc.). This scaling is not done by stretching a 100*100 image, the result will have full + 200*200 pixel resolution. + + If you use a high scaling factor, it is recommended to enable antialiasing for all elements via + temporarily setting \ref QCustomPlot::setAntialiasedElements to \ref QCP::aeAll as this allows + QCustomPlot to place objects with sub-pixel accuracy. + + \warning If calling this function inside the constructor of the parent of the QCustomPlot widget + (i.e. the MainWindow constructor, if QCustomPlot is inside the MainWindow), always provide + explicit non-zero widths and heights. If you leave \a width or \a height as 0 (default), this + function uses the current width and height of the QCustomPlot widget. However, in Qt, these + aren't defined yet inside the constructor, so you would get an image that has strange + widths/heights. + + The objects of the plot will appear in the current selection state. If you don't want any selected + objects to be painted in their selected look, deselect everything with \ref deselectAll before calling + this function. + + If you want the PNG to have a transparent background, call \ref setBackground(const QBrush + &brush) with no brush (Qt::NoBrush) or a transparent color (Qt::transparent), before saving. + + PNG compression can be controlled with the \a quality parameter which must be between 0 and 100 or + -1 to use the default setting. + + Returns true on success. If this function fails, most likely the PNG format isn't supported by + the system, see Qt docs about QImageWriter::supportedImageFormats(). + + \see savePdf, saveBmp, saveJpg, saveRastered +*/ +bool QCustomPlot::savePng(const QString &fileName, int width, int height, double scale, int quality) +{ + return saveRastered(fileName, width, height, scale, "PNG", quality); +} + +/*! + Saves a JPG image file to \a fileName on disc. The output plot will have the dimensions \a width + and \a height in pixels. If either \a width or \a height is zero, the exported image will have + the same dimensions as the QCustomPlot widget currently has. Line widths and texts etc. are not + scaled up when larger widths/heights are used. If you want that effect, use the \a scale parameter. + + For example, if you set both \a width and \a height to 100 and \a scale to 2, you will end up with an + image file of size 200*200 in which all graphical elements are scaled up by factor 2 (line widths, + texts, etc.). This scaling is not done by stretching a 100*100 image, the result will have full + 200*200 pixel resolution. + + If you use a high scaling factor, it is recommended to enable antialiasing for all elements via + temporarily setting \ref QCustomPlot::setAntialiasedElements to \ref QCP::aeAll as this allows + QCustomPlot to place objects with sub-pixel accuracy. + + \warning If calling this function inside the constructor of the parent of the QCustomPlot widget + (i.e. the MainWindow constructor, if QCustomPlot is inside the MainWindow), always provide + explicit non-zero widths and heights. If you leave \a width or \a height as 0 (default), this + function uses the current width and height of the QCustomPlot widget. However, in Qt, these + aren't defined yet inside the constructor, so you would get an image that has strange + widths/heights. + + The objects of the plot will appear in the current selection state. If you don't want any selected + objects to be painted in their selected look, deselect everything with \ref deselectAll before calling + this function. + + JPG compression can be controlled with the \a quality parameter which must be between 0 and 100 or + -1 to use the default setting. + + Returns true on success. If this function fails, most likely the JPG format isn't supported by + the system, see Qt docs about QImageWriter::supportedImageFormats(). + + \see savePdf, savePng, saveBmp, saveRastered +*/ +bool QCustomPlot::saveJpg(const QString &fileName, int width, int height, double scale, int quality) +{ + return saveRastered(fileName, width, height, scale, "JPG", quality); +} + +/*! + Saves a BMP image file to \a fileName on disc. The output plot will have the dimensions \a width + and \a height in pixels. If either \a width or \a height is zero, the exported image will have + the same dimensions as the QCustomPlot widget currently has. Line widths and texts etc. are not + scaled up when larger widths/heights are used. If you want that effect, use the \a scale parameter. + + For example, if you set both \a width and \a height to 100 and \a scale to 2, you will end up with an + image file of size 200*200 in which all graphical elements are scaled up by factor 2 (line widths, + texts, etc.). This scaling is not done by stretching a 100*100 image, the result will have full + 200*200 pixel resolution. + + If you use a high scaling factor, it is recommended to enable antialiasing for all elements via + temporarily setting \ref QCustomPlot::setAntialiasedElements to \ref QCP::aeAll as this allows + QCustomPlot to place objects with sub-pixel accuracy. + + \warning If calling this function inside the constructor of the parent of the QCustomPlot widget + (i.e. the MainWindow constructor, if QCustomPlot is inside the MainWindow), always provide + explicit non-zero widths and heights. If you leave \a width or \a height as 0 (default), this + function uses the current width and height of the QCustomPlot widget. However, in Qt, these + aren't defined yet inside the constructor, so you would get an image that has strange + widths/heights. + + The objects of the plot will appear in the current selection state. If you don't want any selected + objects to be painted in their selected look, deselect everything with \ref deselectAll before calling + this function. + + Returns true on success. If this function fails, most likely the BMP format isn't supported by + the system, see Qt docs about QImageWriter::supportedImageFormats(). + + \see savePdf, savePng, saveJpg, saveRastered +*/ +bool QCustomPlot::saveBmp(const QString &fileName, int width, int height, double scale) +{ + return saveRastered(fileName, width, height, scale, "BMP"); +} + +/*! \internal + + Returns a minimum size hint that corresponds to the minimum size of the top level layout + (\ref plotLayout). To prevent QCustomPlot from being collapsed to size/width zero, set a minimum + size (setMinimumSize) either on the whole QCustomPlot or on any layout elements inside the plot. + This is especially important, when placed in a QLayout where other components try to take in as + much space as possible (e.g. QMdiArea). +*/ +QSize QCustomPlot::minimumSizeHint() const +{ + return mPlotLayout->minimumSizeHint(); +} + +/*! \internal + + Returns a size hint that is the same as \ref minimumSizeHint. + +*/ +QSize QCustomPlot::sizeHint() const +{ + return mPlotLayout->minimumSizeHint(); +} + +/*! \internal + + Event handler for when the QCustomPlot widget needs repainting. This does not cause a \ref replot, but + draws the internal buffer on the widget surface. +*/ +void QCustomPlot::paintEvent(QPaintEvent *event) +{ + Q_UNUSED(event); + QPainter painter(this); + painter.drawPixmap(0, 0, mPaintBuffer); +} + +/*! \internal + + Event handler for a resize of the QCustomPlot widget. Causes the internal buffer to be resized to + the new size. The viewport (which becomes the outer rect of mPlotLayout) is resized + appropriately. Finally a \ref replot is performed. +*/ +void QCustomPlot::resizeEvent(QResizeEvent *event) +{ + // resize and repaint the buffer: + mPaintBuffer = QPixmap(event->size()); + setViewport(rect()); + replot(rpQueued); // queued update is important here, to prevent painting issues in some contexts +} + +/*! \internal + + Event handler for when a double click occurs. Emits the \ref mouseDoubleClick signal, then emits + the specialized signals when certain objecs are clicked (e.g. \ref plottableDoubleClick, \ref + axisDoubleClick, etc.). Finally determines the affected layout element and forwards the event to + it. + + \see mousePressEvent, mouseReleaseEvent +*/ +void QCustomPlot::mouseDoubleClickEvent(QMouseEvent *event) +{ + emit mouseDoubleClick(event); + + QVariant details; + QCPLayerable *clickedLayerable = layerableAt(event->pos(), false, &details); + + // emit specialized object double click signals: + if (QCPAbstractPlottable *ap = qobject_cast(clickedLayerable)) + emit plottableDoubleClick(ap, event); + else if (QCPAxis *ax = qobject_cast(clickedLayerable)) + emit axisDoubleClick(ax, details.value(), event); + else if (QCPAbstractItem *ai = qobject_cast(clickedLayerable)) + emit itemDoubleClick(ai, event); + else if (QCPLegend *lg = qobject_cast(clickedLayerable)) + emit legendDoubleClick(lg, 0, event); + else if (QCPAbstractLegendItem *li = qobject_cast(clickedLayerable)) + emit legendDoubleClick(li->parentLegend(), li, event); + else if (QCPPlotTitle *pt = qobject_cast(clickedLayerable)) + emit titleDoubleClick(event, pt); + + // call double click event of affected layout element: + if (QCPLayoutElement *el = layoutElementAt(event->pos())) + el->mouseDoubleClickEvent(event); + + // call release event of affected layout element (as in mouseReleaseEvent, since the mouseDoubleClick replaces the second release event in double click case): + if (mMouseEventElement) + { + mMouseEventElement->mouseReleaseEvent(event); + mMouseEventElement = 0; + } + + //QWidget::mouseDoubleClickEvent(event); don't call base class implementation because it would just cause a mousePress/ReleaseEvent, which we don't want. +} + +/*! \internal + + Event handler for when a mouse button is pressed. Emits the mousePress signal. Then determines + the affected layout element and forwards the event to it. + + \see mouseMoveEvent, mouseReleaseEvent +*/ +void QCustomPlot::mousePressEvent(QMouseEvent *event) +{ + emit mousePress(event); + mMousePressPos = event->pos(); // need this to determine in releaseEvent whether it was a click (no position change between press and release) + + // call event of affected layout element: + mMouseEventElement = layoutElementAt(event->pos()); + if (mMouseEventElement) + mMouseEventElement->mousePressEvent(event); + + QWidget::mousePressEvent(event); +} + +/*! \internal + + Event handler for when the cursor is moved. Emits the \ref mouseMove signal. + + If a layout element has mouse capture focus (a mousePressEvent happened on top of the layout + element before), the mouseMoveEvent is forwarded to that element. + + \see mousePressEvent, mouseReleaseEvent +*/ +void QCustomPlot::mouseMoveEvent(QMouseEvent *event) +{ + emit mouseMove(event); + + // call event of affected layout element: + if (mMouseEventElement) + mMouseEventElement->mouseMoveEvent(event); + + QWidget::mouseMoveEvent(event); +} + +/*! \internal + + Event handler for when a mouse button is released. Emits the \ref mouseRelease signal. + + If the mouse was moved less than a certain threshold in any direction since the \ref + mousePressEvent, it is considered a click which causes the selection mechanism (if activated via + \ref setInteractions) to possibly change selection states accordingly. Further, specialized mouse + click signals are emitted (e.g. \ref plottableClick, \ref axisClick, etc.) + + If a layout element has mouse capture focus (a \ref mousePressEvent happened on top of the layout + element before), the \ref mouseReleaseEvent is forwarded to that element. + + \see mousePressEvent, mouseMoveEvent +*/ +void QCustomPlot::mouseReleaseEvent(QMouseEvent *event) +{ + emit mouseRelease(event); + bool doReplot = false; + + if ((mMousePressPos-event->pos()).manhattanLength() < 5) // determine whether it was a click operation + { + if (event->button() == Qt::LeftButton) + { + // handle selection mechanism: + QVariant details; + QCPLayerable *clickedLayerable = layerableAt(event->pos(), true, &details); + bool selectionStateChanged = false; + bool additive = mInteractions.testFlag(QCP::iMultiSelect) && event->modifiers().testFlag(mMultiSelectModifier); + // deselect all other layerables if not additive selection: + if (!additive) + { + foreach (QCPLayer *layer, mLayers) + { + foreach (QCPLayerable *layerable, layer->children()) + { + if (layerable != clickedLayerable && mInteractions.testFlag(layerable->selectionCategory())) + { + bool selChanged = false; + layerable->deselectEvent(&selChanged); + selectionStateChanged |= selChanged; + } + } + } + } + if (clickedLayerable && mInteractions.testFlag(clickedLayerable->selectionCategory())) + { + // a layerable was actually clicked, call its selectEvent: + bool selChanged = false; + clickedLayerable->selectEvent(event, additive, details, &selChanged); + selectionStateChanged |= selChanged; + } + if (selectionStateChanged) + { + doReplot = true; + emit selectionChangedByUser(); + } + } + + // emit specialized object click signals: + QVariant details; + QCPLayerable *clickedLayerable = layerableAt(event->pos(), false, &details); // for these signals, selectability is ignored, that's why we call this again with onlySelectable set to false + if (QCPAbstractPlottable *ap = qobject_cast(clickedLayerable)) + emit plottableClick(ap, event); + else if (QCPAxis *ax = qobject_cast(clickedLayerable)) + emit axisClick(ax, details.value(), event); + else if (QCPAbstractItem *ai = qobject_cast(clickedLayerable)) + emit itemClick(ai, event); + else if (QCPLegend *lg = qobject_cast(clickedLayerable)) + emit legendClick(lg, 0, event); + else if (QCPAbstractLegendItem *li = qobject_cast(clickedLayerable)) + emit legendClick(li->parentLegend(), li, event); + else if (QCPPlotTitle *pt = qobject_cast(clickedLayerable)) + emit titleClick(event, pt); + } + + // call event of affected layout element: + if (mMouseEventElement) + { + mMouseEventElement->mouseReleaseEvent(event); + mMouseEventElement = 0; + } + + if (doReplot || noAntialiasingOnDrag()) + replot(); + + QWidget::mouseReleaseEvent(event); +} + +/*! \internal + + Event handler for mouse wheel events. First, the \ref mouseWheel signal is emitted. Then + determines the affected layout element and forwards the event to it. + +*/ +void QCustomPlot::wheelEvent(QWheelEvent *event) +{ + emit mouseWheel(event); + + // call event of affected layout element: + if (QCPLayoutElement *el = layoutElementAt(event->pos())) + el->wheelEvent(event); + + QWidget::wheelEvent(event); +} + +/*! \internal + + This is the main draw function. It draws the entire plot, including background pixmap, with the + specified \a painter. Note that it does not fill the background with the background brush (as the + user may specify with \ref setBackground(const QBrush &brush)), this is up to the respective + functions calling this method (e.g. \ref replot, \ref toPixmap and \ref toPainter). +*/ +void QCustomPlot::draw(QCPPainter *painter) +{ + // run through layout phases: + mPlotLayout->update(QCPLayoutElement::upPreparation); + mPlotLayout->update(QCPLayoutElement::upMargins); + mPlotLayout->update(QCPLayoutElement::upLayout); + + // draw viewport background pixmap: + drawBackground(painter); + + // draw all layered objects (grid, axes, plottables, items, legend,...): + foreach (QCPLayer *layer, mLayers) + { + foreach (QCPLayerable *child, layer->children()) + { + if (child->realVisibility()) + { + painter->save(); + painter->setClipRect(child->clipRect().translated(0, -1)); + child->applyDefaultAntialiasingHint(painter); + child->draw(painter); + painter->restore(); + } + } + } + + /* Debug code to draw all layout element rects + foreach (QCPLayoutElement* el, findChildren()) + { + painter->setBrush(Qt::NoBrush); + painter->setPen(QPen(QColor(0, 0, 0, 100), 0, Qt::DashLine)); + painter->drawRect(el->rect()); + painter->setPen(QPen(QColor(255, 0, 0, 100), 0, Qt::DashLine)); + painter->drawRect(el->outerRect()); + } + */ +} + +/*! \internal + + Draws the viewport background pixmap of the plot. + + If a pixmap was provided via \ref setBackground, this function buffers the scaled version + depending on \ref setBackgroundScaled and \ref setBackgroundScaledMode and then draws it inside + the viewport with the provided \a painter. The scaled version is buffered in + mScaledBackgroundPixmap to prevent expensive rescaling at every redraw. It is only updated, when + the axis rect has changed in a way that requires a rescale of the background pixmap (this is + dependent on the \ref setBackgroundScaledMode), or when a differend axis background pixmap was + set. + + Note that this function does not draw a fill with the background brush (\ref setBackground(const + QBrush &brush)) beneath the pixmap. + + \see setBackground, setBackgroundScaled, setBackgroundScaledMode +*/ +void QCustomPlot::drawBackground(QCPPainter *painter) +{ + // Note: background color is handled in individual replot/save functions + + // draw background pixmap (on top of fill, if brush specified): + if (!mBackgroundPixmap.isNull()) + { + if (mBackgroundScaled) + { + // check whether mScaledBackground needs to be updated: + QSize scaledSize(mBackgroundPixmap.size()); + scaledSize.scale(mViewport.size(), mBackgroundScaledMode); + if (mScaledBackgroundPixmap.size() != scaledSize) + mScaledBackgroundPixmap = mBackgroundPixmap.scaled(mViewport.size(), mBackgroundScaledMode, Qt::SmoothTransformation); + painter->drawPixmap(mViewport.topLeft(), mScaledBackgroundPixmap, QRect(0, 0, mViewport.width(), mViewport.height()) & mScaledBackgroundPixmap.rect()); + } else + { + painter->drawPixmap(mViewport.topLeft(), mBackgroundPixmap, QRect(0, 0, mViewport.width(), mViewport.height())); + } + } +} + + +/*! \internal + + This method is used by \ref QCPAxisRect::removeAxis to report removed axes to the QCustomPlot + so it may clear its QCustomPlot::xAxis, yAxis, xAxis2 and yAxis2 members accordingly. +*/ +void QCustomPlot::axisRemoved(QCPAxis *axis) +{ + if (xAxis == axis) + xAxis = 0; + if (xAxis2 == axis) + xAxis2 = 0; + if (yAxis == axis) + yAxis = 0; + if (yAxis2 == axis) + yAxis2 = 0; + + // Note: No need to take care of range drag axes and range zoom axes, because they are stored in smart pointers +} + +/*! \internal + + This method is used by the QCPLegend destructor to report legend removal to the QCustomPlot so + it may clear its QCustomPlot::legend member accordingly. +*/ +void QCustomPlot::legendRemoved(QCPLegend *legend) +{ + if (this->legend == legend) + this->legend = 0; +} + +/*! \internal + + Assigns all layers their index (QCPLayer::mIndex) in the mLayers list. This method is thus called + after every operation that changes the layer indices, like layer removal, layer creation, layer + moving. +*/ +void QCustomPlot::updateLayerIndices() const +{ + for (int i=0; imIndex = i; +} + +/*! \internal + + Returns the layerable at pixel position \a pos. If \a onlySelectable is set to true, only those + layerables that are selectable will be considered. (Layerable subclasses communicate their + selectability via the QCPLayerable::selectTest method, by returning -1.) + + \a selectionDetails is an output parameter that contains selection specifics of the affected + layerable. This is useful if the respective layerable shall be given a subsequent + QCPLayerable::selectEvent (like in \ref mouseReleaseEvent). \a selectionDetails usually contains + information about which part of the layerable was hit, in multi-part layerables (e.g. + QCPAxis::SelectablePart). +*/ +QCPLayerable *QCustomPlot::layerableAt(const QPointF &pos, bool onlySelectable, QVariant *selectionDetails) const +{ + for (int layerIndex=mLayers.size()-1; layerIndex>=0; --layerIndex) + { + const QList layerables = mLayers.at(layerIndex)->children(); + double minimumDistance = selectionTolerance()*1.1; + QCPLayerable *minimumDistanceLayerable = 0; + for (int i=layerables.size()-1; i>=0; --i) + { + if (!layerables.at(i)->realVisibility()) + continue; + QVariant details; + double dist = layerables.at(i)->selectTest(pos, onlySelectable, &details); + if (dist >= 0 && dist < minimumDistance) + { + minimumDistance = dist; + minimumDistanceLayerable = layerables.at(i); + if (selectionDetails) *selectionDetails = details; + } + } + if (minimumDistance < selectionTolerance()) + return minimumDistanceLayerable; + } + return 0; +} + +/*! + Saves the plot to a rastered image file \a fileName in the image format \a format. The plot is + sized to \a width and \a height in pixels and scaled with \a scale. (width 100 and scale 2.0 lead + to a full resolution file with width 200.) If the \a format supports compression, \a quality may + be between 0 and 100 to control it. + + Returns true on success. If this function fails, most likely the given \a format isn't supported + by the system, see Qt docs about QImageWriter::supportedImageFormats(). + + \see saveBmp, saveJpg, savePng, savePdf +*/ +bool QCustomPlot::saveRastered(const QString &fileName, int width, int height, double scale, const char *format, int quality) +{ + QPixmap buffer = toPixmap(width, height, scale); + if (!buffer.isNull()) + return buffer.save(fileName, format, quality); + else + return false; +} + +/*! + Renders the plot to a pixmap and returns it. + + The plot is sized to \a width and \a height in pixels and scaled with \a scale. (width 100 and + scale 2.0 lead to a full resolution pixmap with width 200.) + + \see toPainter, saveRastered, saveBmp, savePng, saveJpg, savePdf +*/ +QPixmap QCustomPlot::toPixmap(int width, int height, double scale) +{ + // this method is somewhat similar to toPainter. Change something here, and a change in toPainter might be necessary, too. + int newWidth, newHeight; + if (width == 0 || height == 0) + { + newWidth = this->width(); + newHeight = this->height(); + } else + { + newWidth = width; + newHeight = height; + } + int scaledWidth = qRound(scale*newWidth); + int scaledHeight = qRound(scale*newHeight); + + QPixmap result(scaledWidth, scaledHeight); + result.fill(mBackgroundBrush.style() == Qt::SolidPattern ? mBackgroundBrush.color() : Qt::transparent); // if using non-solid pattern, make transparent now and draw brush pattern later + QCPPainter painter; + painter.begin(&result); + if (painter.isActive()) + { + QRect oldViewport = viewport(); + setViewport(QRect(0, 0, newWidth, newHeight)); + painter.setMode(QCPPainter::pmNoCaching); + if (!qFuzzyCompare(scale, 1.0)) + { + if (scale > 1.0) // for scale < 1 we always want cosmetic pens where possible, because else lines might disappear for very small scales + painter.setMode(QCPPainter::pmNonCosmetic); + painter.scale(scale, scale); + } + if (mBackgroundBrush.style() != Qt::SolidPattern && mBackgroundBrush.style() != Qt::NoBrush) // solid fills were done a few lines above with QPixmap::fill + painter.fillRect(mViewport, mBackgroundBrush); + draw(&painter); + setViewport(oldViewport); + painter.end(); + } else // might happen if pixmap has width or height zero + { + qDebug() << Q_FUNC_INFO << "Couldn't activate painter on pixmap"; + return QPixmap(); + } + return result; +} + +/*! + Renders the plot using the passed \a painter. + + The plot is sized to \a width and \a height in pixels. If the \a painter's scale is not 1.0, the resulting plot will + appear scaled accordingly. + + \note If you are restricted to using a QPainter (instead of QCPPainter), create a temporary QPicture and open a QCPPainter + on it. Then call \ref toPainter with this QCPPainter. After ending the paint operation on the picture, draw it with + the QPainter. This will reproduce the painter actions the QCPPainter took, with a QPainter. + + \see toPixmap +*/ +void QCustomPlot::toPainter(QCPPainter *painter, int width, int height) +{ + // this method is somewhat similar to toPixmap. Change something here, and a change in toPixmap might be necessary, too. + int newWidth, newHeight; + if (width == 0 || height == 0) + { + newWidth = this->width(); + newHeight = this->height(); + } else + { + newWidth = width; + newHeight = height; + } + + if (painter->isActive()) + { + QRect oldViewport = viewport(); + setViewport(QRect(0, 0, newWidth, newHeight)); + painter->setMode(QCPPainter::pmNoCaching); + if (mBackgroundBrush.style() != Qt::NoBrush) // unlike in toPixmap, we can't do QPixmap::fill for Qt::SolidPattern brush style, so we also draw solid fills with fillRect here + painter->fillRect(mViewport, mBackgroundBrush); + draw(painter); + setViewport(oldViewport); + } else + qDebug() << Q_FUNC_INFO << "Passed painter is not active"; +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPColorGradient +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPColorGradient + \brief Defines a color gradient for use with e.g. \ref QCPColorMap + + This class describes a color gradient which can be used to encode data with color. For example, + QCPColorMap and QCPColorScale have \ref QCPColorMap::setGradient "setGradient" methods which + take an instance of this class. Colors are set with \ref setColorStopAt(double position, const QColor &color) + with a \a position from 0 to 1. In between these defined color positions, the + color will be interpolated linearly either in RGB or HSV space, see \ref setColorInterpolation. + + Alternatively, load one of the preset color gradients shown in the image below, with \ref + loadPreset, or by directly specifying the preset in the constructor. + + \image html QCPColorGradient.png + + The fact that the \ref QCPColorGradient(GradientPreset preset) constructor allows directly + converting a \ref GradientPreset to a QCPColorGradient, you can also directly pass \ref + GradientPreset to all the \a setGradient methods, e.g.: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpcolorgradient-setgradient + + The total number of levels used in the gradient can be set with \ref setLevelCount. Whether the + color gradient shall be applied periodically (wrapping around) to data values that lie outside + the data range specified on the plottable instance can be controlled with \ref setPeriodic. +*/ + +/*! + Constructs a new QCPColorGradient initialized with the colors and color interpolation according + to \a preset. + + The color level count is initialized to 350. +*/ +QCPColorGradient::QCPColorGradient(GradientPreset preset) : + mLevelCount(350), + mColorInterpolation(ciRGB), + mPeriodic(false), + mColorBufferInvalidated(true) +{ + mColorBuffer.fill(qRgb(0, 0, 0), mLevelCount); + loadPreset(preset); +} + +/* undocumented operator */ +bool QCPColorGradient::operator==(const QCPColorGradient &other) const +{ + return ((other.mLevelCount == this->mLevelCount) && + (other.mColorInterpolation == this->mColorInterpolation) && + (other.mPeriodic == this->mPeriodic) && + (other.mColorStops == this->mColorStops)); +} + +/*! + Sets the number of discretization levels of the color gradient to \a n. The default is 350 which + is typically enough to create a smooth appearance. + + \image html QCPColorGradient-levelcount.png +*/ +void QCPColorGradient::setLevelCount(int n) +{ + if (n < 2) + { + qDebug() << Q_FUNC_INFO << "n must be greater or equal 2 but was" << n; + n = 2; + } + if (n != mLevelCount) + { + mLevelCount = n; + mColorBufferInvalidated = true; + } +} + +/*! + Sets at which positions from 0 to 1 which color shall occur. The positions are the keys, the + colors are the values of the passed QMap \a colorStops. In between these color stops, the color + is interpolated according to \ref setColorInterpolation. + + A more convenient way to create a custom gradient may be to clear all color stops with \ref + clearColorStops and then adding them one by one with \ref setColorStopAt. + + \see clearColorStops +*/ +void QCPColorGradient::setColorStops(const QMap &colorStops) +{ + mColorStops = colorStops; + mColorBufferInvalidated = true; +} + +/*! + Sets the \a color the gradient will have at the specified \a position (from 0 to 1). In between + these color stops, the color is interpolated according to \ref setColorInterpolation. + + \see setColorStops, clearColorStops +*/ +void QCPColorGradient::setColorStopAt(double position, const QColor &color) +{ + mColorStops.insert(position, color); + mColorBufferInvalidated = true; +} + +/*! + Sets whether the colors in between the configured color stops (see \ref setColorStopAt) shall be + interpolated linearly in RGB or in HSV color space. + + For example, a sweep in RGB space from red to green will have a muddy brown intermediate color, + whereas in HSV space the intermediate color is yellow. +*/ +void QCPColorGradient::setColorInterpolation(QCPColorGradient::ColorInterpolation interpolation) +{ + if (interpolation != mColorInterpolation) + { + mColorInterpolation = interpolation; + mColorBufferInvalidated = true; + } +} + +/*! + Sets whether data points that are outside the configured data range (e.g. \ref + QCPColorMap::setDataRange) are colored by periodically repeating the color gradient or whether + they all have the same color, corresponding to the respective gradient boundary color. + + \image html QCPColorGradient-periodic.png + + As shown in the image above, gradients that have the same start and end color are especially + suitable for a periodic gradient mapping, since they produce smooth color transitions throughout + the color map. A preset that has this property is \ref gpHues. + + In practice, using periodic color gradients makes sense when the data corresponds to a periodic + dimension, such as an angle or a phase. If this is not the case, the color encoding might become + ambiguous, because multiple different data values are shown as the same color. +*/ +void QCPColorGradient::setPeriodic(bool enabled) +{ + mPeriodic = enabled; +} + +/*! + This method is used to quickly convert a \a data array to colors. The colors will be output in + the array \a scanLine. Both \a data and \a scanLine must have the length \a n when passed to this + function. The data range that shall be used for mapping the data value to the gradient is passed + in \a range. \a logarithmic indicates whether the data values shall be mapped to colors + logarithmically. + + if \a data actually contains 2D-data linearized via [row*columnCount + column], you can + set \a dataIndexFactor to columnCount to convert a column instead of a row of the data + array, in \a scanLine. \a scanLine will remain a regular (1D) array. This works because \a data + is addressed data[i*dataIndexFactor]. +*/ +void QCPColorGradient::colorize(const double *data, const QCPRange &range, QRgb *scanLine, int n, int dataIndexFactor, bool logarithmic) +{ + // If you change something here, make sure to also adapt ::color() + if (!data) + { + qDebug() << Q_FUNC_INFO << "null pointer given as data"; + return; + } + if (!scanLine) + { + qDebug() << Q_FUNC_INFO << "null pointer given as scanLine"; + return; + } + if (mColorBufferInvalidated) + updateColorBuffer(); + + if (!logarithmic) + { + const double posToIndexFactor = (mLevelCount-1)/range.size(); + if (mPeriodic) + { + for (int i=0; i= mLevelCount) + index = mLevelCount-1; + scanLine[i] = mColorBuffer.at(index); + } + } + } else // logarithmic == true + { + if (mPeriodic) + { + for (int i=0; i= mLevelCount) + index = mLevelCount-1; + scanLine[i] = mColorBuffer.at(index); + } + } + } +} + +/*! \internal + + This method is used to colorize a single data value given in \a position, to colors. The data + range that shall be used for mapping the data value to the gradient is passed in \a range. \a + logarithmic indicates whether the data value shall be mapped to a color logarithmically. + + If an entire array of data values shall be converted, rather use \ref colorize, for better + performance. +*/ +QRgb QCPColorGradient::color(double position, const QCPRange &range, bool logarithmic) +{ + // If you change something here, make sure to also adapt ::colorize() + if (mColorBufferInvalidated) + updateColorBuffer(); + int index = 0; + if (!logarithmic) + index = (position-range.lower)*(mLevelCount-1)/range.size(); + else + index = qLn(position/range.lower)/qLn(range.upper/range.lower)*(mLevelCount-1); + if (mPeriodic) + { + index = index % mLevelCount; + if (index < 0) + index += mLevelCount; + } else + { + if (index < 0) + index = 0; + else if (index >= mLevelCount) + index = mLevelCount-1; + } + return mColorBuffer.at(index); +} + +/*! + Clears the current color stops and loads the specified \a preset. A preset consists of predefined + color stops and the corresponding color interpolation method. + + The available presets are: + \image html QCPColorGradient.png +*/ +void QCPColorGradient::loadPreset(GradientPreset preset) +{ + clearColorStops(); + switch (preset) + { + case gpGrayscale: + setColorInterpolation(ciRGB); + setColorStopAt(0, Qt::black); + setColorStopAt(1, Qt::white); + break; + case gpHot: + setColorInterpolation(ciRGB); + setColorStopAt(0, QColor(50, 0, 0)); + setColorStopAt(0.2, QColor(180, 10, 0)); + setColorStopAt(0.4, QColor(245, 50, 0)); + setColorStopAt(0.6, QColor(255, 150, 10)); + setColorStopAt(0.8, QColor(255, 255, 50)); + setColorStopAt(1, QColor(255, 255, 255)); + break; + case gpCold: + setColorInterpolation(ciRGB); + setColorStopAt(0, QColor(0, 0, 50)); + setColorStopAt(0.2, QColor(0, 10, 180)); + setColorStopAt(0.4, QColor(0, 50, 245)); + setColorStopAt(0.6, QColor(10, 150, 255)); + setColorStopAt(0.8, QColor(50, 255, 255)); + setColorStopAt(1, QColor(255, 255, 255)); + break; + case gpNight: + setColorInterpolation(ciHSV); + setColorStopAt(0, QColor(10, 20, 30)); + setColorStopAt(1, QColor(250, 255, 250)); + break; + case gpCandy: + setColorInterpolation(ciHSV); + setColorStopAt(0, QColor(0, 0, 255)); + setColorStopAt(1, QColor(255, 250, 250)); + break; + case gpGeography: + setColorInterpolation(ciRGB); + setColorStopAt(0, QColor(70, 170, 210)); + setColorStopAt(0.20, QColor(90, 160, 180)); + setColorStopAt(0.25, QColor(45, 130, 175)); + setColorStopAt(0.30, QColor(100, 140, 125)); + setColorStopAt(0.5, QColor(100, 140, 100)); + setColorStopAt(0.6, QColor(130, 145, 120)); + setColorStopAt(0.7, QColor(140, 130, 120)); + setColorStopAt(0.9, QColor(180, 190, 190)); + setColorStopAt(1, QColor(210, 210, 230)); + break; + case gpIon: + setColorInterpolation(ciHSV); + setColorStopAt(0, QColor(50, 10, 10)); + setColorStopAt(0.45, QColor(0, 0, 255)); + setColorStopAt(0.8, QColor(0, 255, 255)); + setColorStopAt(1, QColor(0, 255, 0)); + break; + case gpThermal: + setColorInterpolation(ciRGB); + setColorStopAt(0, QColor(0, 0, 50)); + setColorStopAt(0.15, QColor(20, 0, 120)); + setColorStopAt(0.33, QColor(200, 30, 140)); + setColorStopAt(0.6, QColor(255, 100, 0)); + setColorStopAt(0.85, QColor(255, 255, 40)); + setColorStopAt(1, QColor(255, 255, 255)); + break; + case gpPolar: + setColorInterpolation(ciRGB); + setColorStopAt(0, QColor(50, 255, 255)); + setColorStopAt(0.18, QColor(10, 70, 255)); + setColorStopAt(0.28, QColor(10, 10, 190)); + setColorStopAt(0.5, QColor(0, 0, 0)); + setColorStopAt(0.72, QColor(190, 10, 10)); + setColorStopAt(0.82, QColor(255, 70, 10)); + setColorStopAt(1, QColor(255, 255, 50)); + break; + case gpSpectrum: + setColorInterpolation(ciHSV); + setColorStopAt(0, QColor(50, 0, 50)); + setColorStopAt(0.15, QColor(0, 0, 255)); + setColorStopAt(0.35, QColor(0, 255, 255)); + setColorStopAt(0.6, QColor(255, 255, 0)); + setColorStopAt(0.75, QColor(255, 30, 0)); + setColorStopAt(1, QColor(50, 0, 0)); + break; + case gpJet: + setColorInterpolation(ciRGB); + setColorStopAt(0, QColor(0, 0, 100)); + setColorStopAt(0.15, QColor(0, 50, 255)); + setColorStopAt(0.35, QColor(0, 255, 255)); + setColorStopAt(0.65, QColor(255, 255, 0)); + setColorStopAt(0.85, QColor(255, 30, 0)); + setColorStopAt(1, QColor(100, 0, 0)); + break; + case gpHues: + setColorInterpolation(ciHSV); + setColorStopAt(0, QColor(255, 0, 0)); + setColorStopAt(1.0/3.0, QColor(0, 0, 255)); + setColorStopAt(2.0/3.0, QColor(0, 255, 0)); + setColorStopAt(1, QColor(255, 0, 0)); + break; + } +} + +/*! + Clears all color stops. + + \see setColorStops, setColorStopAt +*/ +void QCPColorGradient::clearColorStops() +{ + mColorStops.clear(); + mColorBufferInvalidated = true; +} + +/*! + Returns an inverted gradient. The inverted gradient has all properties as this \ref + QCPColorGradient, but the order of the color stops is inverted. + + \see setColorStops, setColorStopAt +*/ +QCPColorGradient QCPColorGradient::inverted() const +{ + QCPColorGradient result(*this); + result.clearColorStops(); + for (QMap::const_iterator it=mColorStops.constBegin(); it!=mColorStops.constEnd(); ++it) + result.setColorStopAt(1.0-it.key(), it.value()); + return result; +} + +/*! \internal + + Updates the internal color buffer which will be used by \ref colorize and \ref color, to quickly + convert positions to colors. This is where the interpolation between color stops is calculated. +*/ +void QCPColorGradient::updateColorBuffer() +{ + if (mColorBuffer.size() != mLevelCount) + mColorBuffer.resize(mLevelCount); + if (mColorStops.size() > 1) + { + double indexToPosFactor = 1.0/(double)(mLevelCount-1); + for (int i=0; i::const_iterator it = mColorStops.lowerBound(position); + if (it == mColorStops.constEnd()) // position is on or after last stop, use color of last stop + { + mColorBuffer[i] = (it-1).value().rgb(); + } else if (it == mColorStops.constBegin()) // position is on or before first stop, use color of first stop + { + mColorBuffer[i] = it.value().rgb(); + } else // position is in between stops (or on an intermediate stop), interpolate color + { + QMap::const_iterator high = it; + QMap::const_iterator low = it-1; + double t = (position-low.key())/(high.key()-low.key()); // interpolation factor 0..1 + switch (mColorInterpolation) + { + case ciRGB: + { + mColorBuffer[i] = qRgb((1-t)*low.value().red() + t*high.value().red(), + (1-t)*low.value().green() + t*high.value().green(), + (1-t)*low.value().blue() + t*high.value().blue()); + break; + } + case ciHSV: + { + QColor lowHsv = low.value().toHsv(); + QColor highHsv = high.value().toHsv(); + double hue = 0; + double hueDiff = highHsv.hueF()-lowHsv.hueF(); + if (hueDiff > 0.5) + hue = lowHsv.hueF() - t*(1.0-hueDiff); + else if (hueDiff < -0.5) + hue = lowHsv.hueF() + t*(1.0+hueDiff); + else + hue = lowHsv.hueF() + t*hueDiff; + if (hue < 0) hue += 1.0; + else if (hue >= 1.0) hue -= 1.0; + mColorBuffer[i] = QColor::fromHsvF(hue, (1-t)*lowHsv.saturationF() + t*highHsv.saturationF(), (1-t)*lowHsv.valueF() + t*highHsv.valueF()).rgb(); + break; + } + } + } + } + } else if (mColorStops.size() == 1) + { + mColorBuffer.fill(mColorStops.constBegin().value().rgb()); + } else // mColorStops is empty, fill color buffer with black + { + mColorBuffer.fill(qRgb(0, 0, 0)); + } + mColorBufferInvalidated = false; +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPAxisRect +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPAxisRect + \brief Holds multiple axes and arranges them in a rectangular shape. + + This class represents an axis rect, a rectangular area that is bounded on all sides with an + arbitrary number of axes. + + Initially QCustomPlot has one axis rect, accessible via QCustomPlot::axisRect(). However, the + layout system allows to have multiple axis rects, e.g. arranged in a grid layout + (QCustomPlot::plotLayout). + + By default, QCPAxisRect comes with four axes, at bottom, top, left and right. They can be + accessed via \ref axis by providing the respective axis type (\ref QCPAxis::AxisType) and index. + If you need all axes in the axis rect, use \ref axes. The top and right axes are set to be + invisible initially (QCPAxis::setVisible). To add more axes to a side, use \ref addAxis or \ref + addAxes. To remove an axis, use \ref removeAxis. + + The axis rect layerable itself only draws a background pixmap or color, if specified (\ref + setBackground). It is placed on the "background" layer initially (see \ref QCPLayer for an + explanation of the QCustomPlot layer system). The axes that are held by the axis rect can be + placed on other layers, independently of the axis rect. + + Every axis rect has a child layout of type \ref QCPLayoutInset. It is accessible via \ref + insetLayout and can be used to have other layout elements (or even other layouts with multiple + elements) hovering inside the axis rect. + + If an axis rect is clicked and dragged, it processes this by moving certain axis ranges. The + behaviour can be controlled with \ref setRangeDrag and \ref setRangeDragAxes. If the mouse wheel + is scrolled while the cursor is on the axis rect, certain axes are scaled. This is controllable + via \ref setRangeZoom, \ref setRangeZoomAxes and \ref setRangeZoomFactor. These interactions are + only enabled if \ref QCustomPlot::setInteractions contains \ref QCP::iRangeDrag and \ref + QCP::iRangeZoom. + + \image html AxisRectSpacingOverview.png +
Overview of the spacings and paddings that define the geometry of an axis. The dashed + line on the far left indicates the viewport/widget border.
+*/ + +/* start documentation of inline functions */ + +/*! \fn QCPLayoutInset *QCPAxisRect::insetLayout() const + + Returns the inset layout of this axis rect. It can be used to place other layout elements (or + even layouts with multiple other elements) inside/on top of an axis rect. + + \see QCPLayoutInset +*/ + +/*! \fn int QCPAxisRect::left() const + + Returns the pixel position of the left border of this axis rect. Margins are not taken into + account here, so the returned value is with respect to the inner \ref rect. +*/ + +/*! \fn int QCPAxisRect::right() const + + Returns the pixel position of the right border of this axis rect. Margins are not taken into + account here, so the returned value is with respect to the inner \ref rect. +*/ + +/*! \fn int QCPAxisRect::top() const + + Returns the pixel position of the top border of this axis rect. Margins are not taken into + account here, so the returned value is with respect to the inner \ref rect. +*/ + +/*! \fn int QCPAxisRect::bottom() const + + Returns the pixel position of the bottom border of this axis rect. Margins are not taken into + account here, so the returned value is with respect to the inner \ref rect. +*/ + +/*! \fn int QCPAxisRect::width() const + + Returns the pixel width of this axis rect. Margins are not taken into account here, so the + returned value is with respect to the inner \ref rect. +*/ + +/*! \fn int QCPAxisRect::height() const + + Returns the pixel height of this axis rect. Margins are not taken into account here, so the + returned value is with respect to the inner \ref rect. +*/ + +/*! \fn QSize QCPAxisRect::size() const + + Returns the pixel size of this axis rect. Margins are not taken into account here, so the + returned value is with respect to the inner \ref rect. +*/ + +/*! \fn QPoint QCPAxisRect::topLeft() const + + Returns the top left corner of this axis rect in pixels. Margins are not taken into account here, + so the returned value is with respect to the inner \ref rect. +*/ + +/*! \fn QPoint QCPAxisRect::topRight() const + + Returns the top right corner of this axis rect in pixels. Margins are not taken into account + here, so the returned value is with respect to the inner \ref rect. +*/ + +/*! \fn QPoint QCPAxisRect::bottomLeft() const + + Returns the bottom left corner of this axis rect in pixels. Margins are not taken into account + here, so the returned value is with respect to the inner \ref rect. +*/ + +/*! \fn QPoint QCPAxisRect::bottomRight() const + + Returns the bottom right corner of this axis rect in pixels. Margins are not taken into account + here, so the returned value is with respect to the inner \ref rect. +*/ + +/*! \fn QPoint QCPAxisRect::center() const + + Returns the center of this axis rect in pixels. Margins are not taken into account here, so the + returned value is with respect to the inner \ref rect. +*/ + +/* end documentation of inline functions */ + +/*! + Creates a QCPAxisRect instance and sets default values. An axis is added for each of the four + sides, the top and right axes are set invisible initially. +*/ +QCPAxisRect::QCPAxisRect(QCustomPlot *parentPlot, bool setupDefaultAxes) : + QCPLayoutElement(parentPlot), + mBackgroundBrush(Qt::NoBrush), + mBackgroundScaled(true), + mBackgroundScaledMode(Qt::KeepAspectRatioByExpanding), + mInsetLayout(new QCPLayoutInset), + mRangeDrag(Qt::Horizontal|Qt::Vertical), + mRangeZoom(Qt::Horizontal|Qt::Vertical), + mRangeZoomFactorHorz(0.85), + mRangeZoomFactorVert(0.85), + mDragging(false) +{ + mInsetLayout->initializeParentPlot(mParentPlot); + mInsetLayout->setParentLayerable(this); + mInsetLayout->setParent(this); + + setMinimumSize(50, 50); + setMinimumMargins(QMargins(15, 15, 15, 15)); + mAxes.insert(QCPAxis::atLeft, QList()); + mAxes.insert(QCPAxis::atRight, QList()); + mAxes.insert(QCPAxis::atTop, QList()); + mAxes.insert(QCPAxis::atBottom, QList()); + + if (setupDefaultAxes) + { + QCPAxis *xAxis = addAxis(QCPAxis::atBottom); + QCPAxis *yAxis = addAxis(QCPAxis::atLeft); + QCPAxis *xAxis2 = addAxis(QCPAxis::atTop); + QCPAxis *yAxis2 = addAxis(QCPAxis::atRight); + setRangeDragAxes(xAxis, yAxis); + setRangeZoomAxes(xAxis, yAxis); + xAxis2->setVisible(false); + yAxis2->setVisible(false); + xAxis->grid()->setVisible(true); + yAxis->grid()->setVisible(true); + xAxis2->grid()->setVisible(false); + yAxis2->grid()->setVisible(false); + xAxis2->grid()->setZeroLinePen(Qt::NoPen); + yAxis2->grid()->setZeroLinePen(Qt::NoPen); + xAxis2->grid()->setVisible(false); + yAxis2->grid()->setVisible(false); + } +} + +QCPAxisRect::~QCPAxisRect() +{ + delete mInsetLayout; + mInsetLayout = 0; + + QList axesList = axes(); + for (int i=0; i ax(mAxes.value(type)); + if (index >= 0 && index < ax.size()) + { + return ax.at(index); + } else + { + qDebug() << Q_FUNC_INFO << "Axis index out of bounds:" << index; + return 0; + } +} + +/*! + Returns all axes on the axis rect sides specified with \a types. + + \a types may be a single \ref QCPAxis::AxisType or an or-combination, to get the axes of + multiple sides. + + \see axis +*/ +QList QCPAxisRect::axes(QCPAxis::AxisTypes types) const +{ + QList result; + if (types.testFlag(QCPAxis::atLeft)) + result << mAxes.value(QCPAxis::atLeft); + if (types.testFlag(QCPAxis::atRight)) + result << mAxes.value(QCPAxis::atRight); + if (types.testFlag(QCPAxis::atTop)) + result << mAxes.value(QCPAxis::atTop); + if (types.testFlag(QCPAxis::atBottom)) + result << mAxes.value(QCPAxis::atBottom); + return result; +} + +/*! \overload + + Returns all axes of this axis rect. +*/ +QList QCPAxisRect::axes() const +{ + QList result; + QHashIterator > it(mAxes); + while (it.hasNext()) + { + it.next(); + result << it.value(); + } + return result; +} + +/*! + Adds a new axis to the axis rect side specified with \a type, and returns it. If \a axis is 0, a + new QCPAxis instance is created internally. + + You may inject QCPAxis instances (or sublasses of QCPAxis) by setting \a axis to an axis that was + previously created outside QCustomPlot. It is important to note that QCustomPlot takes ownership + of the axis, so you may not delete it afterwards. Further, the \a axis must have been created + with this axis rect as parent and with the same axis type as specified in \a type. If this is not + the case, a debug output is generated, the axis is not added, and the method returns 0. + + This method can not be used to move \a axis between axis rects. The same \a axis instance must + not be added multiple times to the same or different axis rects. + + If an axis rect side already contains one or more axes, the lower and upper endings of the new + axis (\ref QCPAxis::setLowerEnding, \ref QCPAxis::setUpperEnding) are set to \ref + QCPLineEnding::esHalfBar. + + \see addAxes, setupFullAxesBox +*/ +QCPAxis *QCPAxisRect::addAxis(QCPAxis::AxisType type, QCPAxis *axis) +{ + QCPAxis *newAxis = axis; + if (!newAxis) + { + newAxis = new QCPAxis(this, type); + } else // user provided existing axis instance, do some sanity checks + { + if (newAxis->axisType() != type) + { + qDebug() << Q_FUNC_INFO << "passed axis has different axis type than specified in type parameter"; + return 0; + } + if (newAxis->axisRect() != this) + { + qDebug() << Q_FUNC_INFO << "passed axis doesn't have this axis rect as parent axis rect"; + return 0; + } + if (axes().contains(newAxis)) + { + qDebug() << Q_FUNC_INFO << "passed axis is already owned by this axis rect"; + return 0; + } + } + if (mAxes[type].size() > 0) // multiple axes on one side, add half-bar axis ending to additional axes with offset + { + bool invert = (type == QCPAxis::atRight) || (type == QCPAxis::atBottom); + newAxis->setLowerEnding(QCPLineEnding(QCPLineEnding::esHalfBar, 6, 10, !invert)); + newAxis->setUpperEnding(QCPLineEnding(QCPLineEnding::esHalfBar, 6, 10, invert)); + } + mAxes[type].append(newAxis); + return newAxis; +} + +/*! + Adds a new axis with \ref addAxis to each axis rect side specified in \a types. This may be an + or-combination of QCPAxis::AxisType, so axes can be added to multiple sides at once. + + Returns a list of the added axes. + + \see addAxis, setupFullAxesBox +*/ +QList QCPAxisRect::addAxes(QCPAxis::AxisTypes types) +{ + QList result; + if (types.testFlag(QCPAxis::atLeft)) + result << addAxis(QCPAxis::atLeft); + if (types.testFlag(QCPAxis::atRight)) + result << addAxis(QCPAxis::atRight); + if (types.testFlag(QCPAxis::atTop)) + result << addAxis(QCPAxis::atTop); + if (types.testFlag(QCPAxis::atBottom)) + result << addAxis(QCPAxis::atBottom); + return result; +} + +/*! + Removes the specified \a axis from the axis rect and deletes it. + + Returns true on success, i.e. if \a axis was a valid axis in this axis rect. + + \see addAxis +*/ +bool QCPAxisRect::removeAxis(QCPAxis *axis) +{ + // don't access axis->axisType() to provide safety when axis is an invalid pointer, rather go through all axis containers: + QHashIterator > it(mAxes); + while (it.hasNext()) + { + it.next(); + if (it.value().contains(axis)) + { + mAxes[it.key()].removeOne(axis); + if (qobject_cast(parentPlot())) // make sure this isn't called from QObject dtor when QCustomPlot is already destructed (happens when the axis rect is not in any layout and thus QObject-child of QCustomPlot) + parentPlot()->axisRemoved(axis); + delete axis; + return true; + } + } + qDebug() << Q_FUNC_INFO << "Axis isn't in axis rect:" << reinterpret_cast(axis); + return false; +} + +/*! + Convenience function to create an axis on each side that doesn't have any axes yet and set their + visibility to true. Further, the top/right axes are assigned the following properties of the + bottom/left axes: + + \li range (\ref QCPAxis::setRange) + \li range reversed (\ref QCPAxis::setRangeReversed) + \li scale type (\ref QCPAxis::setScaleType) + \li scale log base (\ref QCPAxis::setScaleLogBase) + \li ticks (\ref QCPAxis::setTicks) + \li auto (major) tick count (\ref QCPAxis::setAutoTickCount) + \li sub tick count (\ref QCPAxis::setSubTickCount) + \li auto sub ticks (\ref QCPAxis::setAutoSubTicks) + \li tick step (\ref QCPAxis::setTickStep) + \li auto tick step (\ref QCPAxis::setAutoTickStep) + \li number format (\ref QCPAxis::setNumberFormat) + \li number precision (\ref QCPAxis::setNumberPrecision) + \li tick label type (\ref QCPAxis::setTickLabelType) + \li date time format (\ref QCPAxis::setDateTimeFormat) + \li date time spec (\ref QCPAxis::setDateTimeSpec) + + Tick labels (\ref QCPAxis::setTickLabels) of the right and top axes are set to false. + + If \a connectRanges is true, the \ref QCPAxis::rangeChanged "rangeChanged" signals of the bottom + and left axes are connected to the \ref QCPAxis::setRange slots of the top and right axes. +*/ +void QCPAxisRect::setupFullAxesBox(bool connectRanges) +{ + QCPAxis *xAxis, *yAxis, *xAxis2, *yAxis2; + if (axisCount(QCPAxis::atBottom) == 0) + xAxis = addAxis(QCPAxis::atBottom); + else + xAxis = axis(QCPAxis::atBottom); + + if (axisCount(QCPAxis::atLeft) == 0) + yAxis = addAxis(QCPAxis::atLeft); + else + yAxis = axis(QCPAxis::atLeft); + + if (axisCount(QCPAxis::atTop) == 0) + xAxis2 = addAxis(QCPAxis::atTop); + else + xAxis2 = axis(QCPAxis::atTop); + + if (axisCount(QCPAxis::atRight) == 0) + yAxis2 = addAxis(QCPAxis::atRight); + else + yAxis2 = axis(QCPAxis::atRight); + + xAxis->setVisible(true); + yAxis->setVisible(true); + xAxis2->setVisible(true); + yAxis2->setVisible(true); + xAxis2->setTickLabels(false); + yAxis2->setTickLabels(false); + + xAxis2->setRange(xAxis->range()); + xAxis2->setRangeReversed(xAxis->rangeReversed()); + xAxis2->setScaleType(xAxis->scaleType()); + xAxis2->setScaleLogBase(xAxis->scaleLogBase()); + xAxis2->setTicks(xAxis->ticks()); + xAxis2->setAutoTickCount(xAxis->autoTickCount()); + xAxis2->setSubTickCount(xAxis->subTickCount()); + xAxis2->setAutoSubTicks(xAxis->autoSubTicks()); + xAxis2->setTickStep(xAxis->tickStep()); + xAxis2->setAutoTickStep(xAxis->autoTickStep()); + xAxis2->setNumberFormat(xAxis->numberFormat()); + xAxis2->setNumberPrecision(xAxis->numberPrecision()); + xAxis2->setTickLabelType(xAxis->tickLabelType()); + xAxis2->setDateTimeFormat(xAxis->dateTimeFormat()); + xAxis2->setDateTimeSpec(xAxis->dateTimeSpec()); + + yAxis2->setRange(yAxis->range()); + yAxis2->setRangeReversed(yAxis->rangeReversed()); + yAxis2->setScaleType(yAxis->scaleType()); + yAxis2->setScaleLogBase(yAxis->scaleLogBase()); + yAxis2->setTicks(yAxis->ticks()); + yAxis2->setAutoTickCount(yAxis->autoTickCount()); + yAxis2->setSubTickCount(yAxis->subTickCount()); + yAxis2->setAutoSubTicks(yAxis->autoSubTicks()); + yAxis2->setTickStep(yAxis->tickStep()); + yAxis2->setAutoTickStep(yAxis->autoTickStep()); + yAxis2->setNumberFormat(yAxis->numberFormat()); + yAxis2->setNumberPrecision(yAxis->numberPrecision()); + yAxis2->setTickLabelType(yAxis->tickLabelType()); + yAxis2->setDateTimeFormat(yAxis->dateTimeFormat()); + yAxis2->setDateTimeSpec(yAxis->dateTimeSpec()); + + if (connectRanges) + { + connect(xAxis, SIGNAL(rangeChanged(QCPRange)), xAxis2, SLOT(setRange(QCPRange))); + connect(yAxis, SIGNAL(rangeChanged(QCPRange)), yAxis2, SLOT(setRange(QCPRange))); + } +} + +/*! + Returns a list of all the plottables that are associated with this axis rect. + + A plottable is considered associated with an axis rect if its key or value axis (or both) is in + this axis rect. + + \see graphs, items +*/ +QList QCPAxisRect::plottables() const +{ + // Note: don't append all QCPAxis::plottables() into a list, because we might get duplicate entries + QList result; + for (int i=0; imPlottables.size(); ++i) + { + if (mParentPlot->mPlottables.at(i)->keyAxis()->axisRect() == this ||mParentPlot->mPlottables.at(i)->valueAxis()->axisRect() == this) + result.append(mParentPlot->mPlottables.at(i)); + } + return result; +} + +/*! + Returns a list of all the graphs that are associated with this axis rect. + + A graph is considered associated with an axis rect if its key or value axis (or both) is in + this axis rect. + + \see plottables, items +*/ +QList QCPAxisRect::graphs() const +{ + // Note: don't append all QCPAxis::graphs() into a list, because we might get duplicate entries + QList result; + for (int i=0; imGraphs.size(); ++i) + { + if (mParentPlot->mGraphs.at(i)->keyAxis()->axisRect() == this || mParentPlot->mGraphs.at(i)->valueAxis()->axisRect() == this) + result.append(mParentPlot->mGraphs.at(i)); + } + return result; +} + +/*! + Returns a list of all the items that are associated with this axis rect. + + An item is considered associated with an axis rect if any of its positions has key or value axis + set to an axis that is in this axis rect, or if any of its positions has \ref + QCPItemPosition::setAxisRect set to the axis rect, or if the clip axis rect (\ref + QCPAbstractItem::setClipAxisRect) is set to this axis rect. + + \see plottables, graphs +*/ +QList QCPAxisRect::items() const +{ + // Note: don't just append all QCPAxis::items() into a list, because we might get duplicate entries + // and miss those items that have this axis rect as clipAxisRect. + QList result; + for (int itemId=0; itemIdmItems.size(); ++itemId) + { + if (mParentPlot->mItems.at(itemId)->clipAxisRect() == this) + { + result.append(mParentPlot->mItems.at(itemId)); + continue; + } + QList positions = mParentPlot->mItems.at(itemId)->positions(); + for (int posId=0; posIdaxisRect() == this || + positions.at(posId)->keyAxis()->axisRect() == this || + positions.at(posId)->valueAxis()->axisRect() == this) + { + result.append(mParentPlot->mItems.at(itemId)); + break; + } + } + } + return result; +} + +/*! + This method is called automatically upon replot and doesn't need to be called by users of + QCPAxisRect. + + Calls the base class implementation to update the margins (see \ref QCPLayoutElement::update), + and finally passes the \ref rect to the inset layout (\ref insetLayout) and calls its + QCPInsetLayout::update function. +*/ +void QCPAxisRect::update(UpdatePhase phase) +{ + QCPLayoutElement::update(phase); + + switch (phase) + { + case upPreparation: + { + QList allAxes = axes(); + for (int i=0; isetupTickVectors(); + break; + } + case upLayout: + { + mInsetLayout->setOuterRect(rect()); + break; + } + default: break; + } + + // pass update call on to inset layout (doesn't happen automatically, because QCPAxisRect doesn't derive from QCPLayout): + mInsetLayout->update(phase); +} + +/* inherits documentation from base class */ +QList QCPAxisRect::elements(bool recursive) const +{ + QList result; + if (mInsetLayout) + { + result << mInsetLayout; + if (recursive) + result << mInsetLayout->elements(recursive); + } + return result; +} + +/* inherits documentation from base class */ +void QCPAxisRect::applyDefaultAntialiasingHint(QCPPainter *painter) const +{ + painter->setAntialiasing(false); +} + +/* inherits documentation from base class */ +void QCPAxisRect::draw(QCPPainter *painter) +{ + drawBackground(painter); +} + +/*! + Sets \a pm as the axis background pixmap. The axis background pixmap will be drawn inside the + axis rect. Since axis rects place themselves on the "background" layer by default, the axis rect + backgrounds are usually drawn below everything else. + + For cases where the provided pixmap doesn't have the same size as the axis rect, scaling can be + enabled with \ref setBackgroundScaled and the scaling mode (i.e. whether and how the aspect ratio + is preserved) can be set with \ref setBackgroundScaledMode. To set all these options in one call, + consider using the overloaded version of this function. + + Below the pixmap, the axis rect may be optionally filled with a brush, if specified with \ref + setBackground(const QBrush &brush). + + \see setBackgroundScaled, setBackgroundScaledMode, setBackground(const QBrush &brush) +*/ +void QCPAxisRect::setBackground(const QPixmap &pm) +{ + mBackgroundPixmap = pm; + mScaledBackgroundPixmap = QPixmap(); +} + +/*! \overload + + Sets \a brush as the background brush. The axis rect background will be filled with this brush. + Since axis rects place themselves on the "background" layer by default, the axis rect backgrounds + are usually drawn below everything else. + + The brush will be drawn before (under) any background pixmap, which may be specified with \ref + setBackground(const QPixmap &pm). + + To disable drawing of a background brush, set \a brush to Qt::NoBrush. + + \see setBackground(const QPixmap &pm) +*/ +void QCPAxisRect::setBackground(const QBrush &brush) +{ + mBackgroundBrush = brush; +} + +/*! \overload + + Allows setting the background pixmap of the axis rect, whether it shall be scaled and how it + shall be scaled in one call. + + \see setBackground(const QPixmap &pm), setBackgroundScaled, setBackgroundScaledMode +*/ +void QCPAxisRect::setBackground(const QPixmap &pm, bool scaled, Qt::AspectRatioMode mode) +{ + mBackgroundPixmap = pm; + mScaledBackgroundPixmap = QPixmap(); + mBackgroundScaled = scaled; + mBackgroundScaledMode = mode; +} + +/*! + Sets whether the axis background pixmap shall be scaled to fit the axis rect or not. If \a scaled + is set to true, you may control whether and how the aspect ratio of the original pixmap is + preserved with \ref setBackgroundScaledMode. + + Note that the scaled version of the original pixmap is buffered, so there is no performance + penalty on replots. (Except when the axis rect dimensions are changed continuously.) + + \see setBackground, setBackgroundScaledMode +*/ +void QCPAxisRect::setBackgroundScaled(bool scaled) +{ + mBackgroundScaled = scaled; +} + +/*! + If scaling of the axis background pixmap is enabled (\ref setBackgroundScaled), use this function to + define whether and how the aspect ratio of the original pixmap passed to \ref setBackground is preserved. + \see setBackground, setBackgroundScaled +*/ +void QCPAxisRect::setBackgroundScaledMode(Qt::AspectRatioMode mode) +{ + mBackgroundScaledMode = mode; +} + +/*! + Returns the range drag axis of the \a orientation provided. + + \see setRangeDragAxes +*/ +QCPAxis *QCPAxisRect::rangeDragAxis(Qt::Orientation orientation) +{ + return (orientation == Qt::Horizontal ? mRangeDragHorzAxis.data() : mRangeDragVertAxis.data()); +} + +/*! + Returns the range zoom axis of the \a orientation provided. + + \see setRangeZoomAxes +*/ +QCPAxis *QCPAxisRect::rangeZoomAxis(Qt::Orientation orientation) +{ + return (orientation == Qt::Horizontal ? mRangeZoomHorzAxis.data() : mRangeZoomVertAxis.data()); +} + +/*! + Returns the range zoom factor of the \a orientation provided. + + \see setRangeZoomFactor +*/ +double QCPAxisRect::rangeZoomFactor(Qt::Orientation orientation) +{ + return (orientation == Qt::Horizontal ? mRangeZoomFactorHorz : mRangeZoomFactorVert); +} + +/*! + Sets which axis orientation may be range dragged by the user with mouse interaction. + What orientation corresponds to which specific axis can be set with + \ref setRangeDragAxes(QCPAxis *horizontal, QCPAxis *vertical). By + default, the horizontal axis is the bottom axis (xAxis) and the vertical axis + is the left axis (yAxis). + + To disable range dragging entirely, pass 0 as \a orientations or remove \ref QCP::iRangeDrag from \ref + QCustomPlot::setInteractions. To enable range dragging for both directions, pass Qt::Horizontal | + Qt::Vertical as \a orientations. + + In addition to setting \a orientations to a non-zero value, make sure \ref QCustomPlot::setInteractions + contains \ref QCP::iRangeDrag to enable the range dragging interaction. + + \see setRangeZoom, setRangeDragAxes, QCustomPlot::setNoAntialiasingOnDrag +*/ +void QCPAxisRect::setRangeDrag(Qt::Orientations orientations) +{ + mRangeDrag = orientations; +} + +/*! + Sets which axis orientation may be zoomed by the user with the mouse wheel. What orientation + corresponds to which specific axis can be set with \ref setRangeZoomAxes(QCPAxis *horizontal, + QCPAxis *vertical). By default, the horizontal axis is the bottom axis (xAxis) and the vertical + axis is the left axis (yAxis). + + To disable range zooming entirely, pass 0 as \a orientations or remove \ref QCP::iRangeZoom from \ref + QCustomPlot::setInteractions. To enable range zooming for both directions, pass Qt::Horizontal | + Qt::Vertical as \a orientations. + + In addition to setting \a orientations to a non-zero value, make sure \ref QCustomPlot::setInteractions + contains \ref QCP::iRangeZoom to enable the range zooming interaction. + + \see setRangeZoomFactor, setRangeZoomAxes, setRangeDrag +*/ +void QCPAxisRect::setRangeZoom(Qt::Orientations orientations) +{ + mRangeZoom = orientations; +} + +/*! + Sets the axes whose range will be dragged when \ref setRangeDrag enables mouse range dragging + on the QCustomPlot widget. + + \see setRangeZoomAxes +*/ +void QCPAxisRect::setRangeDragAxes(QCPAxis *horizontal, QCPAxis *vertical) +{ + mRangeDragHorzAxis = horizontal; + mRangeDragVertAxis = vertical; +} + +/*! + Sets the axes whose range will be zoomed when \ref setRangeZoom enables mouse wheel zooming on the + QCustomPlot widget. The two axes can be zoomed with different strengths, when different factors + are passed to \ref setRangeZoomFactor(double horizontalFactor, double verticalFactor). + + \see setRangeDragAxes +*/ +void QCPAxisRect::setRangeZoomAxes(QCPAxis *horizontal, QCPAxis *vertical) +{ + mRangeZoomHorzAxis = horizontal; + mRangeZoomVertAxis = vertical; +} + +/*! + Sets how strong one rotation step of the mouse wheel zooms, when range zoom was activated with + \ref setRangeZoom. The two parameters \a horizontalFactor and \a verticalFactor provide a way to + let the horizontal axis zoom at different rates than the vertical axis. Which axis is horizontal + and which is vertical, can be set with \ref setRangeZoomAxes. + + When the zoom factor is greater than one, scrolling the mouse wheel backwards (towards the user) + will zoom in (make the currently visible range smaller). For zoom factors smaller than one, the + same scrolling direction will zoom out. +*/ +void QCPAxisRect::setRangeZoomFactor(double horizontalFactor, double verticalFactor) +{ + mRangeZoomFactorHorz = horizontalFactor; + mRangeZoomFactorVert = verticalFactor; +} + +/*! \overload + + Sets both the horizontal and vertical zoom \a factor. +*/ +void QCPAxisRect::setRangeZoomFactor(double factor) +{ + mRangeZoomFactorHorz = factor; + mRangeZoomFactorVert = factor; +} + +/*! \internal + + Draws the background of this axis rect. It may consist of a background fill (a QBrush) and a + pixmap. + + If a brush was given via \ref setBackground(const QBrush &brush), this function first draws an + according filling inside the axis rect with the provided \a painter. + + Then, if a pixmap was provided via \ref setBackground, this function buffers the scaled version + depending on \ref setBackgroundScaled and \ref setBackgroundScaledMode and then draws it inside + the axis rect with the provided \a painter. The scaled version is buffered in + mScaledBackgroundPixmap to prevent expensive rescaling at every redraw. It is only updated, when + the axis rect has changed in a way that requires a rescale of the background pixmap (this is + dependant on the \ref setBackgroundScaledMode), or when a differend axis backgroud pixmap was + set. + + \see setBackground, setBackgroundScaled, setBackgroundScaledMode +*/ +void QCPAxisRect::drawBackground(QCPPainter *painter) +{ + // draw background fill: + if (mBackgroundBrush != Qt::NoBrush) + painter->fillRect(mRect, mBackgroundBrush); + + // draw background pixmap (on top of fill, if brush specified): + if (!mBackgroundPixmap.isNull()) + { + if (mBackgroundScaled) + { + // check whether mScaledBackground needs to be updated: + QSize scaledSize(mBackgroundPixmap.size()); + scaledSize.scale(mRect.size(), mBackgroundScaledMode); + if (mScaledBackgroundPixmap.size() != scaledSize) + mScaledBackgroundPixmap = mBackgroundPixmap.scaled(mRect.size(), mBackgroundScaledMode, Qt::SmoothTransformation); + painter->drawPixmap(mRect.topLeft()+QPoint(0, -1), mScaledBackgroundPixmap, QRect(0, 0, mRect.width(), mRect.height()) & mScaledBackgroundPixmap.rect()); + } else + { + painter->drawPixmap(mRect.topLeft()+QPoint(0, -1), mBackgroundPixmap, QRect(0, 0, mRect.width(), mRect.height())); + } + } +} + +/*! \internal + + This function makes sure multiple axes on the side specified with \a type don't collide, but are + distributed according to their respective space requirement (QCPAxis::calculateMargin). + + It does this by setting an appropriate offset (\ref QCPAxis::setOffset) on all axes except the + one with index zero. + + This function is called by \ref calculateAutoMargin. +*/ +void QCPAxisRect::updateAxesOffset(QCPAxis::AxisType type) +{ + const QList axesList = mAxes.value(type); + if (axesList.isEmpty()) + return; + + bool isFirstVisible = !axesList.first()->visible(); // if the first axis is visible, the second axis (which is where the loop starts) isn't the first visible axis, so initialize with false + for (int i=1; ioffset() + axesList.at(i-1)->calculateMargin(); + if (axesList.at(i)->visible()) // only add inner tick length to offset if this axis is visible and it's not the first visible one (might happen if true first axis is invisible) + { + if (!isFirstVisible) + offset += axesList.at(i)->tickLengthIn(); + isFirstVisible = false; + } + axesList.at(i)->setOffset(offset); + } +} + +/* inherits documentation from base class */ +int QCPAxisRect::calculateAutoMargin(QCP::MarginSide side) +{ + if (!mAutoMargins.testFlag(side)) + qDebug() << Q_FUNC_INFO << "Called with side that isn't specified as auto margin"; + + updateAxesOffset(QCPAxis::marginSideToAxisType(side)); + + // note: only need to look at the last (outer most) axis to determine the total margin, due to updateAxisOffset call + const QList axesList = mAxes.value(QCPAxis::marginSideToAxisType(side)); + if (axesList.size() > 0) + return axesList.last()->offset() + axesList.last()->calculateMargin(); + else + return 0; +} + +/*! \internal + + Event handler for when a mouse button is pressed on the axis rect. If the left mouse button is + pressed, the range dragging interaction is initialized (the actual range manipulation happens in + the \ref mouseMoveEvent). + + The mDragging flag is set to true and some anchor points are set that are needed to determine the + distance the mouse was dragged in the mouse move/release events later. + + \see mouseMoveEvent, mouseReleaseEvent +*/ +void QCPAxisRect::mousePressEvent(QMouseEvent *event) +{ + mDragStart = event->pos(); // need this even when not LeftButton is pressed, to determine in releaseEvent whether it was a full click (no position change between press and release) + if (event->buttons() & Qt::LeftButton) + { + mDragging = true; + // initialize antialiasing backup in case we start dragging: + if (mParentPlot->noAntialiasingOnDrag()) + { + mAADragBackup = mParentPlot->antialiasedElements(); + mNotAADragBackup = mParentPlot->notAntialiasedElements(); + } + // Mouse range dragging interaction: + if (mParentPlot->interactions().testFlag(QCP::iRangeDrag)) + { + if (mRangeDragHorzAxis) + mDragStartHorzRange = mRangeDragHorzAxis.data()->range(); + if (mRangeDragVertAxis) + mDragStartVertRange = mRangeDragVertAxis.data()->range(); + } + } +} + +/*! \internal + + Event handler for when the mouse is moved on the axis rect. If range dragging was activated in a + preceding \ref mousePressEvent, the range is moved accordingly. + + \see mousePressEvent, mouseReleaseEvent +*/ +void QCPAxisRect::mouseMoveEvent(QMouseEvent *event) +{ + // Mouse range dragging interaction: + if (mDragging && mParentPlot->interactions().testFlag(QCP::iRangeDrag)) + { + if (mRangeDrag.testFlag(Qt::Horizontal)) + { + if (QCPAxis *rangeDragHorzAxis = mRangeDragHorzAxis.data()) + { + if (rangeDragHorzAxis->mScaleType == QCPAxis::stLinear) + { + double diff = rangeDragHorzAxis->pixelToCoord(mDragStart.x()) - rangeDragHorzAxis->pixelToCoord(event->pos().x()); + rangeDragHorzAxis->setRange(mDragStartHorzRange.lower+diff, mDragStartHorzRange.upper+diff); + } else if (rangeDragHorzAxis->mScaleType == QCPAxis::stLogarithmic) + { + double diff = rangeDragHorzAxis->pixelToCoord(mDragStart.x()) / rangeDragHorzAxis->pixelToCoord(event->pos().x()); + rangeDragHorzAxis->setRange(mDragStartHorzRange.lower*diff, mDragStartHorzRange.upper*diff); + } + } + } + if (mRangeDrag.testFlag(Qt::Vertical)) + { + if (QCPAxis *rangeDragVertAxis = mRangeDragVertAxis.data()) + { + if (rangeDragVertAxis->mScaleType == QCPAxis::stLinear) + { + double diff = rangeDragVertAxis->pixelToCoord(mDragStart.y()) - rangeDragVertAxis->pixelToCoord(event->pos().y()); + rangeDragVertAxis->setRange(mDragStartVertRange.lower+diff, mDragStartVertRange.upper+diff); + } else if (rangeDragVertAxis->mScaleType == QCPAxis::stLogarithmic) + { + double diff = rangeDragVertAxis->pixelToCoord(mDragStart.y()) / rangeDragVertAxis->pixelToCoord(event->pos().y()); + rangeDragVertAxis->setRange(mDragStartVertRange.lower*diff, mDragStartVertRange.upper*diff); + } + } + } + if (mRangeDrag != 0) // if either vertical or horizontal drag was enabled, do a replot + { + if (mParentPlot->noAntialiasingOnDrag()) + mParentPlot->setNotAntialiasedElements(QCP::aeAll); + mParentPlot->replot(); + } + } +} + +/* inherits documentation from base class */ +void QCPAxisRect::mouseReleaseEvent(QMouseEvent *event) +{ + Q_UNUSED(event) + mDragging = false; + if (mParentPlot->noAntialiasingOnDrag()) + { + mParentPlot->setAntialiasedElements(mAADragBackup); + mParentPlot->setNotAntialiasedElements(mNotAADragBackup); + } +} + +/*! \internal + + Event handler for mouse wheel events. If rangeZoom is Qt::Horizontal, Qt::Vertical or both, the + ranges of the axes defined as rangeZoomHorzAxis and rangeZoomVertAxis are scaled. The center of + the scaling operation is the current cursor position inside the axis rect. The scaling factor is + dependant on the mouse wheel delta (which direction the wheel was rotated) to provide a natural + zooming feel. The Strength of the zoom can be controlled via \ref setRangeZoomFactor. + + Note, that event->delta() is usually +/-120 for single rotation steps. However, if the mouse + wheel is turned rapidly, many steps may bunch up to one event, so the event->delta() may then be + multiples of 120. This is taken into account here, by calculating \a wheelSteps and using it as + exponent of the range zoom factor. This takes care of the wheel direction automatically, by + inverting the factor, when the wheel step is negative (f^-1 = 1/f). +*/ +void QCPAxisRect::wheelEvent(QWheelEvent *event) +{ + // Mouse range zooming interaction: + if (mParentPlot->interactions().testFlag(QCP::iRangeZoom)) + { + if (mRangeZoom != 0) + { + double factor; + double wheelSteps = event->delta()/120.0; // a single step delta is +/-120 usually + if (mRangeZoom.testFlag(Qt::Horizontal)) + { + factor = qPow(mRangeZoomFactorHorz, wheelSteps); + if (mRangeZoomHorzAxis.data()) + mRangeZoomHorzAxis.data()->scaleRange(factor, mRangeZoomHorzAxis.data()->pixelToCoord(event->pos().x())); + } + if (mRangeZoom.testFlag(Qt::Vertical)) + { + factor = qPow(mRangeZoomFactorVert, wheelSteps); + if (mRangeZoomVertAxis.data()) + mRangeZoomVertAxis.data()->scaleRange(factor, mRangeZoomVertAxis.data()->pixelToCoord(event->pos().y())); + } + mParentPlot->replot(); + } + } +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPAbstractLegendItem +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPAbstractLegendItem + \brief The abstract base class for all entries in a QCPLegend. + + It defines a very basic interface for entries in a QCPLegend. For representing plottables in the + legend, the subclass \ref QCPPlottableLegendItem is more suitable. + + Only derive directly from this class when you need absolute freedom (e.g. a custom legend entry + that's not even associated with a plottable). + + You must implement the following pure virtual functions: + \li \ref draw (from QCPLayerable) + + You inherit the following members you may use: + + + + + + + + +
QCPLegend *\b mParentLegendA pointer to the parent QCPLegend.
QFont \b mFontThe generic font of the item. You should use this font for all or at least the most prominent text of the item.
+*/ + +/* start of documentation of signals */ + +/*! \fn void QCPAbstractLegendItem::selectionChanged(bool selected) + + This signal is emitted when the selection state of this legend item has changed, either by user + interaction or by a direct call to \ref setSelected. +*/ + +/* end of documentation of signals */ + +/*! + Constructs a QCPAbstractLegendItem and associates it with the QCPLegend \a parent. This does not + cause the item to be added to \a parent, so \ref QCPLegend::addItem must be called separately. +*/ +QCPAbstractLegendItem::QCPAbstractLegendItem(QCPLegend *parent) : + QCPLayoutElement(parent->parentPlot()), + mParentLegend(parent), + mFont(parent->font()), + mTextColor(parent->textColor()), + mSelectedFont(parent->selectedFont()), + mSelectedTextColor(parent->selectedTextColor()), + mSelectable(true), + mSelected(false) +{ + setLayer(QLatin1String("legend")); + setMargins(QMargins(8, 2, 8, 2)); +} + +/*! + Sets the default font of this specific legend item to \a font. + + \see setTextColor, QCPLegend::setFont +*/ +void QCPAbstractLegendItem::setFont(const QFont &font) +{ + mFont = font; +} + +/*! + Sets the default text color of this specific legend item to \a color. + + \see setFont, QCPLegend::setTextColor +*/ +void QCPAbstractLegendItem::setTextColor(const QColor &color) +{ + mTextColor = color; +} + +/*! + When this legend item is selected, \a font is used to draw generic text, instead of the normal + font set with \ref setFont. + + \see setFont, QCPLegend::setSelectedFont +*/ +void QCPAbstractLegendItem::setSelectedFont(const QFont &font) +{ + mSelectedFont = font; +} + +/*! + When this legend item is selected, \a color is used to draw generic text, instead of the normal + color set with \ref setTextColor. + + \see setTextColor, QCPLegend::setSelectedTextColor +*/ +void QCPAbstractLegendItem::setSelectedTextColor(const QColor &color) +{ + mSelectedTextColor = color; +} + +/*! + Sets whether this specific legend item is selectable. + + \see setSelectedParts, QCustomPlot::setInteractions +*/ +void QCPAbstractLegendItem::setSelectable(bool selectable) +{ + if (mSelectable != selectable) + { + mSelectable = selectable; + emit selectableChanged(mSelectable); + } +} + +/*! + Sets whether this specific legend item is selected. + + It is possible to set the selection state of this item by calling this function directly, even if + setSelectable is set to false. + + \see setSelectableParts, QCustomPlot::setInteractions +*/ +void QCPAbstractLegendItem::setSelected(bool selected) +{ + if (mSelected != selected) + { + mSelected = selected; + emit selectionChanged(mSelected); + } +} + +/* inherits documentation from base class */ +double QCPAbstractLegendItem::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (!mParentPlot) return -1; + if (onlySelectable && (!mSelectable || !mParentLegend->selectableParts().testFlag(QCPLegend::spItems))) + return -1; + + if (mRect.contains(pos.toPoint())) + return mParentPlot->selectionTolerance()*0.99; + else + return -1; +} + +/* inherits documentation from base class */ +void QCPAbstractLegendItem::applyDefaultAntialiasingHint(QCPPainter *painter) const +{ + applyAntialiasingHint(painter, mAntialiased, QCP::aeLegendItems); +} + +/* inherits documentation from base class */ +QRect QCPAbstractLegendItem::clipRect() const +{ + return mOuterRect; +} + +/* inherits documentation from base class */ +void QCPAbstractLegendItem::selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) +{ + Q_UNUSED(event) + Q_UNUSED(details) + if (mSelectable && mParentLegend->selectableParts().testFlag(QCPLegend::spItems)) + { + bool selBefore = mSelected; + setSelected(additive ? !mSelected : true); + if (selectionStateChanged) + *selectionStateChanged = mSelected != selBefore; + } +} + +/* inherits documentation from base class */ +void QCPAbstractLegendItem::deselectEvent(bool *selectionStateChanged) +{ + if (mSelectable && mParentLegend->selectableParts().testFlag(QCPLegend::spItems)) + { + bool selBefore = mSelected; + setSelected(false); + if (selectionStateChanged) + *selectionStateChanged = mSelected != selBefore; + } +} + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPPlottableLegendItem +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPPlottableLegendItem + \brief A legend item representing a plottable with an icon and the plottable name. + + This is the standard legend item for plottables. It displays an icon of the plottable next to the + plottable name. The icon is drawn by the respective plottable itself (\ref + QCPAbstractPlottable::drawLegendIcon), and tries to give an intuitive symbol for the plottable. + For example, the QCPGraph draws a centered horizontal line and/or a single scatter point in the + middle. + + Legend items of this type are always associated with one plottable (retrievable via the + plottable() function and settable with the constructor). You may change the font of the plottable + name with \ref setFont. Icon padding and border pen is taken from the parent QCPLegend, see \ref + QCPLegend::setIconBorderPen and \ref QCPLegend::setIconTextPadding. + + The function \ref QCPAbstractPlottable::addToLegend/\ref QCPAbstractPlottable::removeFromLegend + creates/removes legend items of this type in the default implementation. However, these functions + may be reimplemented such that a different kind of legend item (e.g a direct subclass of + QCPAbstractLegendItem) is used for that plottable. + + Since QCPLegend is based on QCPLayoutGrid, a legend item itself is just a subclass of + QCPLayoutElement. While it could be added to a legend (or any other layout) via the normal layout + interface, QCPLegend has specialized functions for handling legend items conveniently, see the + documentation of \ref QCPLegend. +*/ + +/*! + Creates a new legend item associated with \a plottable. + + Once it's created, it can be added to the legend via \ref QCPLegend::addItem. + + A more convenient way of adding/removing a plottable to/from the legend is via the functions \ref + QCPAbstractPlottable::addToLegend and \ref QCPAbstractPlottable::removeFromLegend. +*/ +QCPPlottableLegendItem::QCPPlottableLegendItem(QCPLegend *parent, QCPAbstractPlottable *plottable) : + QCPAbstractLegendItem(parent), + mPlottable(plottable) +{ +} + +/*! \internal + + Returns the pen that shall be used to draw the icon border, taking into account the selection + state of this item. +*/ +QPen QCPPlottableLegendItem::getIconBorderPen() const +{ + return mSelected ? mParentLegend->selectedIconBorderPen() : mParentLegend->iconBorderPen(); +} + +/*! \internal + + Returns the text color that shall be used to draw text, taking into account the selection state + of this item. +*/ +QColor QCPPlottableLegendItem::getTextColor() const +{ + return mSelected ? mSelectedTextColor : mTextColor; +} + +/*! \internal + + Returns the font that shall be used to draw text, taking into account the selection state of this + item. +*/ +QFont QCPPlottableLegendItem::getFont() const +{ + return mSelected ? mSelectedFont : mFont; +} + +/*! \internal + + Draws the item with \a painter. The size and position of the drawn legend item is defined by the + parent layout (typically a \ref QCPLegend) and the \ref minimumSizeHint and \ref maximumSizeHint + of this legend item. +*/ +void QCPPlottableLegendItem::draw(QCPPainter *painter) +{ + if (!mPlottable) return; + painter->setFont(getFont()); + painter->setPen(QPen(getTextColor())); + QSizeF iconSize = mParentLegend->iconSize(); + QRectF textRect = painter->fontMetrics().boundingRect(0, 0, 0, iconSize.height(), Qt::TextDontClip, mPlottable->name()); + QRectF iconRect(mRect.topLeft(), iconSize); + int textHeight = qMax(textRect.height(), iconSize.height()); // if text has smaller height than icon, center text vertically in icon height, else align tops + painter->drawText(mRect.x()+iconSize.width()+mParentLegend->iconTextPadding(), mRect.y(), textRect.width(), textHeight, Qt::TextDontClip, mPlottable->name()); + // draw icon: + painter->save(); + painter->setClipRect(iconRect, Qt::IntersectClip); + mPlottable->drawLegendIcon(painter, iconRect); + painter->restore(); + // draw icon border: + if (getIconBorderPen().style() != Qt::NoPen) + { + painter->setPen(getIconBorderPen()); + painter->setBrush(Qt::NoBrush); + painter->drawRect(iconRect); + } +} + +/*! \internal + + Calculates and returns the size of this item. This includes the icon, the text and the padding in + between. +*/ +QSize QCPPlottableLegendItem::minimumSizeHint() const +{ + if (!mPlottable) return QSize(); + QSize result(0, 0); + QRect textRect; + QFontMetrics fontMetrics(getFont()); + QSize iconSize = mParentLegend->iconSize(); + textRect = fontMetrics.boundingRect(0, 0, 0, iconSize.height(), Qt::TextDontClip, mPlottable->name()); + result.setWidth(iconSize.width() + mParentLegend->iconTextPadding() + textRect.width() + mMargins.left() + mMargins.right()); + result.setHeight(qMax(textRect.height(), iconSize.height()) + mMargins.top() + mMargins.bottom()); + return result; +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPLegend +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPLegend + \brief Manages a legend inside a QCustomPlot. + + A legend is a small box somewhere in the plot which lists plottables with their name and icon. + + Normally, the legend is populated by calling \ref QCPAbstractPlottable::addToLegend. The + respective legend item can be removed with \ref QCPAbstractPlottable::removeFromLegend. However, + QCPLegend also offers an interface to add and manipulate legend items directly: \ref item, \ref + itemWithPlottable, \ref itemCount, \ref addItem, \ref removeItem, etc. + + The QCPLegend derives from QCPLayoutGrid and as such can be placed in any position a + QCPLayoutElement may be positioned. The legend items are themselves QCPLayoutElements which are + placed in the grid layout of the legend. QCPLegend only adds an interface specialized for + handling child elements of type QCPAbstractLegendItem, as mentioned above. In principle, any + other layout elements may also be added to a legend via the normal \ref QCPLayoutGrid interface. + However, the QCPAbstractLegendItem-Interface will ignore those elements (e.g. \ref itemCount will + only return the number of items with QCPAbstractLegendItems type). + + By default, every QCustomPlot has one legend (QCustomPlot::legend) which is placed in the inset + layout of the main axis rect (\ref QCPAxisRect::insetLayout). To move the legend to another + position inside the axis rect, use the methods of the \ref QCPLayoutInset. To move the legend + outside of the axis rect, place it anywhere else with the QCPLayout/QCPLayoutElement interface. +*/ + +/* start of documentation of signals */ + +/*! \fn void QCPLegend::selectionChanged(QCPLegend::SelectableParts selection); + + This signal is emitted when the selection state of this legend has changed. + + \see setSelectedParts, setSelectableParts +*/ + +/* end of documentation of signals */ + +/*! + Constructs a new QCPLegend instance with \a parentPlot as the containing plot and default values. + + Note that by default, QCustomPlot already contains a legend ready to be used as + QCustomPlot::legend +*/ +QCPLegend::QCPLegend() +{ + setRowSpacing(0); + setColumnSpacing(10); + setMargins(QMargins(2, 3, 2, 2)); + setAntialiased(false); + setIconSize(32, 18); + + setIconTextPadding(7); + + setSelectableParts(spLegendBox | spItems); + setSelectedParts(spNone); + + setBorderPen(QPen(Qt::black)); + setSelectedBorderPen(QPen(Qt::blue, 2)); + setIconBorderPen(Qt::NoPen); + setSelectedIconBorderPen(QPen(Qt::blue, 2)); + setBrush(Qt::white); + setSelectedBrush(Qt::white); + setTextColor(Qt::black); + setSelectedTextColor(Qt::blue); +} + +QCPLegend::~QCPLegend() +{ + clearItems(); + if (qobject_cast(mParentPlot)) // make sure this isn't called from QObject dtor when QCustomPlot is already destructed (happens when the legend is not in any layout and thus QObject-child of QCustomPlot) + mParentPlot->legendRemoved(this); +} + +/* no doc for getter, see setSelectedParts */ +QCPLegend::SelectableParts QCPLegend::selectedParts() const +{ + // check whether any legend elements selected, if yes, add spItems to return value + bool hasSelectedItems = false; + for (int i=0; iselected()) + { + hasSelectedItems = true; + break; + } + } + if (hasSelectedItems) + return mSelectedParts | spItems; + else + return mSelectedParts & ~spItems; +} + +/*! + Sets the pen, the border of the entire legend is drawn with. +*/ +void QCPLegend::setBorderPen(const QPen &pen) +{ + mBorderPen = pen; +} + +/*! + Sets the brush of the legend background. +*/ +void QCPLegend::setBrush(const QBrush &brush) +{ + mBrush = brush; +} + +/*! + Sets the default font of legend text. Legend items that draw text (e.g. the name of a graph) will + use this font by default. However, a different font can be specified on a per-item-basis by + accessing the specific legend item. + + This function will also set \a font on all already existing legend items. + + \see QCPAbstractLegendItem::setFont +*/ +void QCPLegend::setFont(const QFont &font) +{ + mFont = font; + for (int i=0; isetFont(mFont); + } +} + +/*! + Sets the default color of legend text. Legend items that draw text (e.g. the name of a graph) + will use this color by default. However, a different colors can be specified on a per-item-basis + by accessing the specific legend item. + + This function will also set \a color on all already existing legend items. + + \see QCPAbstractLegendItem::setTextColor +*/ +void QCPLegend::setTextColor(const QColor &color) +{ + mTextColor = color; + for (int i=0; isetTextColor(color); + } +} + +/*! + Sets the size of legend icons. Legend items that draw an icon (e.g. a visual + representation of the graph) will use this size by default. +*/ +void QCPLegend::setIconSize(const QSize &size) +{ + mIconSize = size; +} + +/*! \overload +*/ +void QCPLegend::setIconSize(int width, int height) +{ + mIconSize.setWidth(width); + mIconSize.setHeight(height); +} + +/*! + Sets the horizontal space in pixels between the legend icon and the text next to it. + Legend items that draw an icon (e.g. a visual representation of the graph) and text (e.g. the + name of the graph) will use this space by default. +*/ +void QCPLegend::setIconTextPadding(int padding) +{ + mIconTextPadding = padding; +} + +/*! + Sets the pen used to draw a border around each legend icon. Legend items that draw an + icon (e.g. a visual representation of the graph) will use this pen by default. + + If no border is wanted, set this to \a Qt::NoPen. +*/ +void QCPLegend::setIconBorderPen(const QPen &pen) +{ + mIconBorderPen = pen; +} + +/*! + Sets whether the user can (de-)select the parts in \a selectable by clicking on the QCustomPlot surface. + (When \ref QCustomPlot::setInteractions contains \ref QCP::iSelectLegend.) + + However, even when \a selectable is set to a value not allowing the selection of a specific part, + it is still possible to set the selection of this part manually, by calling \ref setSelectedParts + directly. + + \see SelectablePart, setSelectedParts +*/ +void QCPLegend::setSelectableParts(const SelectableParts &selectable) +{ + if (mSelectableParts != selectable) + { + mSelectableParts = selectable; + emit selectableChanged(mSelectableParts); + } +} + +/*! + Sets the selected state of the respective legend parts described by \ref SelectablePart. When a part + is selected, it uses a different pen/font and brush. If some legend items are selected and \a selected + doesn't contain \ref spItems, those items become deselected. + + The entire selection mechanism is handled automatically when \ref QCustomPlot::setInteractions + contains iSelectLegend. You only need to call this function when you wish to change the selection + state manually. + + This function can change the selection state of a part even when \ref setSelectableParts was set to a + value that actually excludes the part. + + emits the \ref selectionChanged signal when \a selected is different from the previous selection state. + + Note that it doesn't make sense to set the selected state \ref spItems here when it wasn't set + before, because there's no way to specify which exact items to newly select. Do this by calling + \ref QCPAbstractLegendItem::setSelected directly on the legend item you wish to select. + + \see SelectablePart, setSelectableParts, selectTest, setSelectedBorderPen, setSelectedIconBorderPen, setSelectedBrush, + setSelectedFont +*/ +void QCPLegend::setSelectedParts(const SelectableParts &selected) +{ + SelectableParts newSelected = selected; + mSelectedParts = this->selectedParts(); // update mSelectedParts in case item selection changed + + if (mSelectedParts != newSelected) + { + if (!mSelectedParts.testFlag(spItems) && newSelected.testFlag(spItems)) // attempt to set spItems flag (can't do that) + { + qDebug() << Q_FUNC_INFO << "spItems flag can not be set, it can only be unset with this function"; + newSelected &= ~spItems; + } + if (mSelectedParts.testFlag(spItems) && !newSelected.testFlag(spItems)) // spItems flag was unset, so clear item selection + { + for (int i=0; isetSelected(false); + } + } + mSelectedParts = newSelected; + emit selectionChanged(mSelectedParts); + } +} + +/*! + When the legend box is selected, this pen is used to draw the border instead of the normal pen + set via \ref setBorderPen. + + \see setSelectedParts, setSelectableParts, setSelectedBrush +*/ +void QCPLegend::setSelectedBorderPen(const QPen &pen) +{ + mSelectedBorderPen = pen; +} + +/*! + Sets the pen legend items will use to draw their icon borders, when they are selected. + + \see setSelectedParts, setSelectableParts, setSelectedFont +*/ +void QCPLegend::setSelectedIconBorderPen(const QPen &pen) +{ + mSelectedIconBorderPen = pen; +} + +/*! + When the legend box is selected, this brush is used to draw the legend background instead of the normal brush + set via \ref setBrush. + + \see setSelectedParts, setSelectableParts, setSelectedBorderPen +*/ +void QCPLegend::setSelectedBrush(const QBrush &brush) +{ + mSelectedBrush = brush; +} + +/*! + Sets the default font that is used by legend items when they are selected. + + This function will also set \a font on all already existing legend items. + + \see setFont, QCPAbstractLegendItem::setSelectedFont +*/ +void QCPLegend::setSelectedFont(const QFont &font) +{ + mSelectedFont = font; + for (int i=0; isetSelectedFont(font); + } +} + +/*! + Sets the default text color that is used by legend items when they are selected. + + This function will also set \a color on all already existing legend items. + + \see setTextColor, QCPAbstractLegendItem::setSelectedTextColor +*/ +void QCPLegend::setSelectedTextColor(const QColor &color) +{ + mSelectedTextColor = color; + for (int i=0; isetSelectedTextColor(color); + } +} + +/*! + Returns the item with index \a i. + + \see itemCount +*/ +QCPAbstractLegendItem *QCPLegend::item(int index) const +{ + return qobject_cast(elementAt(index)); +} + +/*! + Returns the QCPPlottableLegendItem which is associated with \a plottable (e.g. a \ref QCPGraph*). + If such an item isn't in the legend, returns 0. + + \see hasItemWithPlottable +*/ +QCPPlottableLegendItem *QCPLegend::itemWithPlottable(const QCPAbstractPlottable *plottable) const +{ + for (int i=0; i(item(i))) + { + if (pli->plottable() == plottable) + return pli; + } + } + return 0; +} + +/*! + Returns the number of items currently in the legend. + \see item +*/ +int QCPLegend::itemCount() const +{ + return elementCount(); +} + +/*! + Returns whether the legend contains \a itm. +*/ +bool QCPLegend::hasItem(QCPAbstractLegendItem *item) const +{ + for (int i=0; iitem(i)) + return true; + } + return false; +} + +/*! + Returns whether the legend contains a QCPPlottableLegendItem which is associated with \a plottable (e.g. a \ref QCPGraph*). + If such an item isn't in the legend, returns false. + + \see itemWithPlottable +*/ +bool QCPLegend::hasItemWithPlottable(const QCPAbstractPlottable *plottable) const +{ + return itemWithPlottable(plottable); +} + +/*! + Adds \a item to the legend, if it's not present already. + + Returns true on sucess, i.e. if the item wasn't in the list already and has been successfuly added. + + The legend takes ownership of the item. +*/ +bool QCPLegend::addItem(QCPAbstractLegendItem *item) +{ + if (!hasItem(item)) + { + return addElement(rowCount(), 0, item); + } else + return false; +} + +/*! + Removes the item with index \a index from the legend. + + Returns true, if successful. + + \see itemCount, clearItems +*/ +bool QCPLegend::removeItem(int index) +{ + if (QCPAbstractLegendItem *ali = item(index)) + { + bool success = remove(ali); + simplify(); + return success; + } else + return false; +} + +/*! \overload + + Removes \a item from the legend. + + Returns true, if successful. + + \see clearItems +*/ +bool QCPLegend::removeItem(QCPAbstractLegendItem *item) +{ + bool success = remove(item); + simplify(); + return success; +} + +/*! + Removes all items from the legend. +*/ +void QCPLegend::clearItems() +{ + for (int i=itemCount()-1; i>=0; --i) + removeItem(i); +} + +/*! + Returns the legend items that are currently selected. If no items are selected, + the list is empty. + + \see QCPAbstractLegendItem::setSelected, setSelectable +*/ +QList QCPLegend::selectedItems() const +{ + QList result; + for (int i=0; iselected()) + result.append(ali); + } + } + return result; +} + +/*! \internal + + A convenience function to easily set the QPainter::Antialiased hint on the provided \a painter + before drawing main legend elements. + + This is the antialiasing state the painter passed to the \ref draw method is in by default. + + This function takes into account the local setting of the antialiasing flag as well as the + overrides set with \ref QCustomPlot::setAntialiasedElements and \ref + QCustomPlot::setNotAntialiasedElements. + + \see setAntialiased +*/ +void QCPLegend::applyDefaultAntialiasingHint(QCPPainter *painter) const +{ + applyAntialiasingHint(painter, mAntialiased, QCP::aeLegend); +} + +/*! \internal + + Returns the pen used to paint the border of the legend, taking into account the selection state + of the legend box. +*/ +QPen QCPLegend::getBorderPen() const +{ + return mSelectedParts.testFlag(spLegendBox) ? mSelectedBorderPen : mBorderPen; +} + +/*! \internal + + Returns the brush used to paint the background of the legend, taking into account the selection + state of the legend box. +*/ +QBrush QCPLegend::getBrush() const +{ + return mSelectedParts.testFlag(spLegendBox) ? mSelectedBrush : mBrush; +} + +/*! \internal + + Draws the legend box with the provided \a painter. The individual legend items are layerables + themselves, thus are drawn independently. +*/ +void QCPLegend::draw(QCPPainter *painter) +{ + // draw background rect: + painter->setBrush(getBrush()); + painter->setPen(getBorderPen()); + painter->drawRect(mOuterRect); +} + +/* inherits documentation from base class */ +double QCPLegend::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + if (!mParentPlot) return -1; + if (onlySelectable && !mSelectableParts.testFlag(spLegendBox)) + return -1; + + if (mOuterRect.contains(pos.toPoint())) + { + if (details) details->setValue(spLegendBox); + return mParentPlot->selectionTolerance()*0.99; + } + return -1; +} + +/* inherits documentation from base class */ +void QCPLegend::selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) +{ + Q_UNUSED(event) + mSelectedParts = selectedParts(); // in case item selection has changed + if (details.value() == spLegendBox && mSelectableParts.testFlag(spLegendBox)) + { + SelectableParts selBefore = mSelectedParts; + setSelectedParts(additive ? mSelectedParts^spLegendBox : mSelectedParts|spLegendBox); // no need to unset spItems in !additive case, because they will be deselected by QCustomPlot (they're normal QCPLayerables with own deselectEvent) + if (selectionStateChanged) + *selectionStateChanged = mSelectedParts != selBefore; + } +} + +/* inherits documentation from base class */ +void QCPLegend::deselectEvent(bool *selectionStateChanged) +{ + mSelectedParts = selectedParts(); // in case item selection has changed + if (mSelectableParts.testFlag(spLegendBox)) + { + SelectableParts selBefore = mSelectedParts; + setSelectedParts(selectedParts() & ~spLegendBox); + if (selectionStateChanged) + *selectionStateChanged = mSelectedParts != selBefore; + } +} + +/* inherits documentation from base class */ +QCP::Interaction QCPLegend::selectionCategory() const +{ + return QCP::iSelectLegend; +} + +/* inherits documentation from base class */ +QCP::Interaction QCPAbstractLegendItem::selectionCategory() const +{ + return QCP::iSelectLegend; +} + +/* inherits documentation from base class */ +void QCPLegend::parentPlotInitialized(QCustomPlot *parentPlot) +{ + Q_UNUSED(parentPlot) +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPPlotTitle +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPPlotTitle + \brief A layout element displaying a plot title text + + The text may be specified with \ref setText, theformatting can be controlled with \ref setFont + and \ref setTextColor. + + A plot title can be added as follows: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpplottitle-creation + + Since a plot title is a common requirement, QCustomPlot offers specialized selection signals for + easy interaction with QCPPlotTitle. If a layout element of type QCPPlotTitle is clicked, the + signal \ref QCustomPlot::titleClick is emitted. A double click emits the \ref + QCustomPlot::titleDoubleClick signal. +*/ + +/* start documentation of signals */ + +/*! \fn void QCPPlotTitle::selectionChanged(bool selected) + + This signal is emitted when the selection state has changed to \a selected, either by user + interaction or by a direct call to \ref setSelected. + + \see setSelected, setSelectable +*/ + +/* end documentation of signals */ + +/*! + Creates a new QCPPlotTitle instance and sets default values. The initial text is empty (\ref setText). + + To set the title text in the constructor, rather use \ref QCPPlotTitle(QCustomPlot *parentPlot, const QString &text). +*/ +QCPPlotTitle::QCPPlotTitle(QCustomPlot *parentPlot) : + QCPLayoutElement(parentPlot), + mFont(QFont(QLatin1String("sans serif"), 13*1.5, QFont::Bold)), + mTextColor(Qt::black), + mSelectedFont(QFont(QLatin1String("sans serif"), 13*1.6, QFont::Bold)), + mSelectedTextColor(Qt::blue), + mSelectable(false), + mSelected(false) +{ + if (parentPlot) + { + setLayer(parentPlot->currentLayer()); + mFont = QFont(parentPlot->font().family(), parentPlot->font().pointSize()*1.5, QFont::Bold); + mSelectedFont = QFont(parentPlot->font().family(), parentPlot->font().pointSize()*1.6, QFont::Bold); + } + setMargins(QMargins(5, 5, 5, 0)); +} + +/*! \overload + + Creates a new QCPPlotTitle instance and sets default values. The initial text is set to \a text. +*/ +QCPPlotTitle::QCPPlotTitle(QCustomPlot *parentPlot, const QString &text) : + QCPLayoutElement(parentPlot), + mText(text), + mFont(QFont(parentPlot->font().family(), parentPlot->font().pointSize()*1.5, QFont::Bold)), + mTextColor(Qt::black), + mSelectedFont(QFont(parentPlot->font().family(), parentPlot->font().pointSize()*1.6, QFont::Bold)), + mSelectedTextColor(Qt::blue), + mSelectable(false), + mSelected(false) +{ + setLayer(QLatin1String("axes")); + setMargins(QMargins(5, 5, 5, 0)); +} + +/*! + Sets the text that will be displayed to \a text. Multiple lines can be created by insertion of "\n". + + \see setFont, setTextColor +*/ +void QCPPlotTitle::setText(const QString &text) +{ + mText = text; +} + +/*! + Sets the \a font of the title text. + + \see setTextColor, setSelectedFont +*/ +void QCPPlotTitle::setFont(const QFont &font) +{ + mFont = font; +} + +/*! + Sets the \a color of the title text. + + \see setFont, setSelectedTextColor +*/ +void QCPPlotTitle::setTextColor(const QColor &color) +{ + mTextColor = color; +} + +/*! + Sets the \a font of the title text that will be used if the plot title is selected (\ref setSelected). + + \see setFont +*/ +void QCPPlotTitle::setSelectedFont(const QFont &font) +{ + mSelectedFont = font; +} + +/*! + Sets the \a color of the title text that will be used if the plot title is selected (\ref setSelected). + + \see setTextColor +*/ +void QCPPlotTitle::setSelectedTextColor(const QColor &color) +{ + mSelectedTextColor = color; +} + +/*! + Sets whether the user may select this plot title to \a selectable. + + Note that even when \a selectable is set to false, the selection state may be changed + programmatically via \ref setSelected. +*/ +void QCPPlotTitle::setSelectable(bool selectable) +{ + if (mSelectable != selectable) + { + mSelectable = selectable; + emit selectableChanged(mSelectable); + } +} + +/*! + Sets the selection state of this plot title to \a selected. If the selection has changed, \ref + selectionChanged is emitted. + + Note that this function can change the selection state independently of the current \ref + setSelectable state. +*/ +void QCPPlotTitle::setSelected(bool selected) +{ + if (mSelected != selected) + { + mSelected = selected; + emit selectionChanged(mSelected); + } +} + +/* inherits documentation from base class */ +void QCPPlotTitle::applyDefaultAntialiasingHint(QCPPainter *painter) const +{ + applyAntialiasingHint(painter, mAntialiased, QCP::aeNone); +} + +/* inherits documentation from base class */ +void QCPPlotTitle::draw(QCPPainter *painter) +{ + painter->setFont(mainFont()); + painter->setPen(QPen(mainTextColor())); + painter->drawText(mRect, Qt::AlignCenter, mText, &mTextBoundingRect); +} + +/* inherits documentation from base class */ +QSize QCPPlotTitle::minimumSizeHint() const +{ + QFontMetrics metrics(mFont); + QSize result = metrics.boundingRect(0, 0, 0, 0, Qt::AlignCenter, mText).size(); + result.rwidth() += mMargins.left() + mMargins.right(); + result.rheight() += mMargins.top() + mMargins.bottom(); + return result; +} + +/* inherits documentation from base class */ +QSize QCPPlotTitle::maximumSizeHint() const +{ + QFontMetrics metrics(mFont); + QSize result = metrics.boundingRect(0, 0, 0, 0, Qt::AlignCenter, mText).size(); + result.rheight() += mMargins.top() + mMargins.bottom(); + result.setWidth(QWIDGETSIZE_MAX); + return result; +} + +/* inherits documentation from base class */ +void QCPPlotTitle::selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) +{ + Q_UNUSED(event) + Q_UNUSED(details) + if (mSelectable) + { + bool selBefore = mSelected; + setSelected(additive ? !mSelected : true); + if (selectionStateChanged) + *selectionStateChanged = mSelected != selBefore; + } +} + +/* inherits documentation from base class */ +void QCPPlotTitle::deselectEvent(bool *selectionStateChanged) +{ + if (mSelectable) + { + bool selBefore = mSelected; + setSelected(false); + if (selectionStateChanged) + *selectionStateChanged = mSelected != selBefore; + } +} + +/* inherits documentation from base class */ +double QCPPlotTitle::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (onlySelectable && !mSelectable) + return -1; + + if (mTextBoundingRect.contains(pos.toPoint())) + return mParentPlot->selectionTolerance()*0.99; + else + return -1; +} + +/*! \internal + + Returns the main font to be used. This is mSelectedFont if \ref setSelected is set to + true, else mFont is returned. +*/ +QFont QCPPlotTitle::mainFont() const +{ + return mSelected ? mSelectedFont : mFont; +} + +/*! \internal + + Returns the main color to be used. This is mSelectedTextColor if \ref setSelected is set to + true, else mTextColor is returned. +*/ +QColor QCPPlotTitle::mainTextColor() const +{ + return mSelected ? mSelectedTextColor : mTextColor; +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPColorScale +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPColorScale + \brief A color scale for use with color coding data such as QCPColorMap + + This layout element can be placed on the plot to correlate a color gradient with data values. It + is usually used in combination with one or multiple \ref QCPColorMap "QCPColorMaps". + + \image html QCPColorScale.png + + The color scale can be either horizontal or vertical, as shown in the image above. The + orientation and the side where the numbers appear is controlled with \ref setType. + + Use \ref QCPColorMap::setColorScale to connect a color map with a color scale. Once they are + connected, they share their gradient, data range and data scale type (\ref setGradient, \ref + setDataRange, \ref setDataScaleType). Multiple color maps may be associated with a single color + scale, to make them all synchronize these properties. + + To have finer control over the number display and axis behaviour, you can directly access the + \ref axis. See the documentation of QCPAxis for details about configuring axes. For example, if + you want to change the number of automatically generated ticks, call + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpcolorscale-autotickcount + + Placing a color scale next to the main axis rect works like with any other layout element: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpcolorscale-creation + In this case we have placed it to the right of the default axis rect, so it wasn't necessary to + call \ref setType, since \ref QCPAxis::atRight is already the default. The text next to the color + scale can be set with \ref setLabel. + + For optimum appearance (like in the image above), it may be desirable to line up the axis rect and + the borders of the color scale. Use a \ref QCPMarginGroup to achieve this: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpcolorscale-margingroup + + Color scales are initialized with a non-zero minimum top and bottom margin (\ref + setMinimumMargins), because vertical color scales are most common and the minimum top/bottom + margin makes sure it keeps some distance to the top/bottom widget border. So if you change to a + horizontal color scale by setting \ref setType to \ref QCPAxis::atBottom or \ref QCPAxis::atTop, you + might want to also change the minimum margins accordingly, e.g. setMinimumMargins(QMargins(6, 0, 6, 0)). +*/ + +/* start documentation of inline functions */ + +/*! \fn QCPAxis *QCPColorScale::axis() const + + Returns the internal \ref QCPAxis instance of this color scale. You can access it to alter the + appearance and behaviour of the axis. \ref QCPColorScale duplicates some properties in its + interface for convenience. Those are \ref setDataRange (\ref QCPAxis::setRange), \ref + setDataScaleType (\ref QCPAxis::setScaleType), and the method \ref setLabel (\ref + QCPAxis::setLabel). As they each are connected, it does not matter whether you use the method on + the QCPColorScale or on its QCPAxis. + + If the type of the color scale is changed with \ref setType, the axis returned by this method + will change, too, to either the left, right, bottom or top axis, depending on which type was set. +*/ + +/* end documentation of signals */ +/* start documentation of signals */ + +/*! \fn void QCPColorScale::dataRangeChanged(QCPRange newRange); + + This signal is emitted when the data range changes. + + \see setDataRange +*/ + +/*! \fn void QCPColorScale::dataScaleTypeChanged(QCPAxis::ScaleType scaleType); + + This signal is emitted when the data scale type changes. + + \see setDataScaleType +*/ + +/*! \fn void QCPColorScale::gradientChanged(QCPColorGradient newGradient); + + This signal is emitted when the gradient changes. + + \see setGradient +*/ + +/* end documentation of signals */ + +/*! + Constructs a new QCPColorScale. +*/ +QCPColorScale::QCPColorScale(QCustomPlot *parentPlot) : + QCPLayoutElement(parentPlot), + mType(QCPAxis::atTop), // set to atTop such that setType(QCPAxis::atRight) below doesn't skip work because it thinks it's already atRight + mDataScaleType(QCPAxis::stLinear), + mBarWidth(20), + mAxisRect(new QCPColorScaleAxisRectPrivate(this)) +{ + setMinimumMargins(QMargins(0, 6, 0, 6)); // for default right color scale types, keep some room at bottom and top (important if no margin group is used) + setType(QCPAxis::atRight); + setDataRange(QCPRange(0, 6)); +} + +QCPColorScale::~QCPColorScale() +{ + delete mAxisRect; +} + +/* undocumented getter */ +QString QCPColorScale::label() const +{ + if (!mColorAxis) + { + qDebug() << Q_FUNC_INFO << "internal color axis undefined"; + return QString(); + } + + return mColorAxis.data()->label(); +} + +/* undocumented getter */ +bool QCPColorScale::rangeDrag() const +{ + if (!mAxisRect) + { + qDebug() << Q_FUNC_INFO << "internal axis rect was deleted"; + return false; + } + + return mAxisRect.data()->rangeDrag().testFlag(QCPAxis::orientation(mType)) && + mAxisRect.data()->rangeDragAxis(QCPAxis::orientation(mType)) && + mAxisRect.data()->rangeDragAxis(QCPAxis::orientation(mType))->orientation() == QCPAxis::orientation(mType); +} + +/* undocumented getter */ +bool QCPColorScale::rangeZoom() const +{ + if (!mAxisRect) + { + qDebug() << Q_FUNC_INFO << "internal axis rect was deleted"; + return false; + } + + return mAxisRect.data()->rangeZoom().testFlag(QCPAxis::orientation(mType)) && + mAxisRect.data()->rangeZoomAxis(QCPAxis::orientation(mType)) && + mAxisRect.data()->rangeZoomAxis(QCPAxis::orientation(mType))->orientation() == QCPAxis::orientation(mType); +} + +/*! + Sets at which side of the color scale the axis is placed, and thus also its orientation. + + Note that after setting \a type to a different value, the axis returned by \ref axis() will + be a different one. The new axis will adopt the following properties from the previous axis: The + range, scale type, log base and label. +*/ +void QCPColorScale::setType(QCPAxis::AxisType type) +{ + if (!mAxisRect) + { + qDebug() << Q_FUNC_INFO << "internal axis rect was deleted"; + return; + } + if (mType != type) + { + mType = type; + QCPRange rangeTransfer(0, 6); + double logBaseTransfer = 10; + QString labelTransfer; + // revert some settings on old axis: + if (mColorAxis) + { + rangeTransfer = mColorAxis.data()->range(); + labelTransfer = mColorAxis.data()->label(); + logBaseTransfer = mColorAxis.data()->scaleLogBase(); + mColorAxis.data()->setLabel(QString()); + disconnect(mColorAxis.data(), SIGNAL(rangeChanged(QCPRange)), this, SLOT(setDataRange(QCPRange))); + disconnect(mColorAxis.data(), SIGNAL(scaleTypeChanged(QCPAxis::ScaleType)), this, SLOT(setDataScaleType(QCPAxis::ScaleType))); + } + QList allAxisTypes = QList() << QCPAxis::atLeft << QCPAxis::atRight << QCPAxis::atBottom << QCPAxis::atTop; + foreach (QCPAxis::AxisType atype, allAxisTypes) + { + mAxisRect.data()->axis(atype)->setTicks(atype == mType); + mAxisRect.data()->axis(atype)->setTickLabels(atype== mType); + } + // set new mColorAxis pointer: + mColorAxis = mAxisRect.data()->axis(mType); + // transfer settings to new axis: + mColorAxis.data()->setRange(rangeTransfer); // transfer range of old axis to new one (necessary if axis changes from vertical to horizontal or vice versa) + mColorAxis.data()->setLabel(labelTransfer); + mColorAxis.data()->setScaleLogBase(logBaseTransfer); // scaleType is synchronized among axes in realtime via signals (connected in QCPColorScale ctor), so we only need to take care of log base here + connect(mColorAxis.data(), SIGNAL(rangeChanged(QCPRange)), this, SLOT(setDataRange(QCPRange))); + connect(mColorAxis.data(), SIGNAL(scaleTypeChanged(QCPAxis::ScaleType)), this, SLOT(setDataScaleType(QCPAxis::ScaleType))); + mAxisRect.data()->setRangeDragAxes(QCPAxis::orientation(mType) == Qt::Horizontal ? mColorAxis.data() : 0, + QCPAxis::orientation(mType) == Qt::Vertical ? mColorAxis.data() : 0); + } +} + +/*! + Sets the range spanned by the color gradient and that is shown by the axis in the color scale. + + It is equivalent to calling QCPColorMap::setDataRange on any of the connected color maps. It is + also equivalent to directly accessing the \ref axis and setting its range with \ref + QCPAxis::setRange. + + \see setDataScaleType, setGradient, rescaleDataRange +*/ +void QCPColorScale::setDataRange(const QCPRange &dataRange) +{ + if (mDataRange.lower != dataRange.lower || mDataRange.upper != dataRange.upper) + { + mDataRange = dataRange; + if (mColorAxis) + mColorAxis.data()->setRange(mDataRange); + emit dataRangeChanged(mDataRange); + } +} + +/*! + Sets the scale type of the color scale, i.e. whether values are linearly associated with colors + or logarithmically. + + It is equivalent to calling QCPColorMap::setDataScaleType on any of the connected color maps. It is + also equivalent to directly accessing the \ref axis and setting its scale type with \ref + QCPAxis::setScaleType. + + \see setDataRange, setGradient +*/ +void QCPColorScale::setDataScaleType(QCPAxis::ScaleType scaleType) +{ + if (mDataScaleType != scaleType) + { + mDataScaleType = scaleType; + if (mColorAxis) + mColorAxis.data()->setScaleType(mDataScaleType); + if (mDataScaleType == QCPAxis::stLogarithmic) + setDataRange(mDataRange.sanitizedForLogScale()); + emit dataScaleTypeChanged(mDataScaleType); + } +} + +/*! + Sets the color gradient that will be used to represent data values. + + It is equivalent to calling QCPColorMap::setGradient on any of the connected color maps. + + \see setDataRange, setDataScaleType +*/ +void QCPColorScale::setGradient(const QCPColorGradient &gradient) +{ + if (mGradient != gradient) + { + mGradient = gradient; + if (mAxisRect) + mAxisRect.data()->mGradientImageInvalidated = true; + emit gradientChanged(mGradient); + } +} + +/*! + Sets the axis label of the color scale. This is equivalent to calling \ref QCPAxis::setLabel on + the internal \ref axis. +*/ +void QCPColorScale::setLabel(const QString &str) +{ + if (!mColorAxis) + { + qDebug() << Q_FUNC_INFO << "internal color axis undefined"; + return; + } + + mColorAxis.data()->setLabel(str); +} + +/*! + Sets the width (or height, for horizontal color scales) the bar where the gradient is displayed + will have. +*/ +void QCPColorScale::setBarWidth(int width) +{ + mBarWidth = width; +} + +/*! + Sets whether the user can drag the data range (\ref setDataRange). + + Note that \ref QCP::iRangeDrag must be in the QCustomPlot's interactions (\ref + QCustomPlot::setInteractions) to allow range dragging. +*/ +void QCPColorScale::setRangeDrag(bool enabled) +{ + if (!mAxisRect) + { + qDebug() << Q_FUNC_INFO << "internal axis rect was deleted"; + return; + } + + if (enabled) + mAxisRect.data()->setRangeDrag(QCPAxis::orientation(mType)); + else + mAxisRect.data()->setRangeDrag(0); +} + +/*! + Sets whether the user can zoom the data range (\ref setDataRange) by scrolling the mouse wheel. + + Note that \ref QCP::iRangeZoom must be in the QCustomPlot's interactions (\ref + QCustomPlot::setInteractions) to allow range dragging. +*/ +void QCPColorScale::setRangeZoom(bool enabled) +{ + if (!mAxisRect) + { + qDebug() << Q_FUNC_INFO << "internal axis rect was deleted"; + return; + } + + if (enabled) + mAxisRect.data()->setRangeZoom(QCPAxis::orientation(mType)); + else + mAxisRect.data()->setRangeZoom(0); +} + +/*! + Returns a list of all the color maps associated with this color scale. +*/ +QList QCPColorScale::colorMaps() const +{ + QList result; + for (int i=0; iplottableCount(); ++i) + { + if (QCPColorMap *cm = qobject_cast(mParentPlot->plottable(i))) + if (cm->colorScale() == this) + result.append(cm); + } + return result; +} + +/*! + Changes the data range such that all color maps associated with this color scale are fully mapped + to the gradient in the data dimension. + + \see setDataRange +*/ +void QCPColorScale::rescaleDataRange(bool onlyVisibleMaps) +{ + QList maps = colorMaps(); + QCPRange newRange; + bool haveRange = false; + int sign = 0; // TODO: should change this to QCPAbstractPlottable::SignDomain later (currently is protected, maybe move to QCP namespace) + if (mDataScaleType == QCPAxis::stLogarithmic) + sign = (mDataRange.upper < 0 ? -1 : 1); + for (int i=0; irealVisibility() && onlyVisibleMaps) + continue; + QCPRange mapRange; + if (maps.at(i)->colorScale() == this) + { + bool currentFoundRange = true; + mapRange = maps.at(i)->data()->dataBounds(); + if (sign == 1) + { + if (mapRange.lower <= 0 && mapRange.upper > 0) + mapRange.lower = mapRange.upper*1e-3; + else if (mapRange.lower <= 0 && mapRange.upper <= 0) + currentFoundRange = false; + } else if (sign == -1) + { + if (mapRange.upper >= 0 && mapRange.lower < 0) + mapRange.upper = mapRange.lower*1e-3; + else if (mapRange.upper >= 0 && mapRange.lower >= 0) + currentFoundRange = false; + } + if (currentFoundRange) + { + if (!haveRange) + newRange = mapRange; + else + newRange.expand(mapRange); + haveRange = true; + } + } + } + if (haveRange) + { + if (!QCPRange::validRange(newRange)) // likely due to range being zero (plottable has only constant data in this dimension), shift current range to at least center the data + { + double center = (newRange.lower+newRange.upper)*0.5; // upper and lower should be equal anyway, but just to make sure, incase validRange returned false for other reason + if (mDataScaleType == QCPAxis::stLinear) + { + newRange.lower = center-mDataRange.size()/2.0; + newRange.upper = center+mDataRange.size()/2.0; + } else // mScaleType == stLogarithmic + { + newRange.lower = center/qSqrt(mDataRange.upper/mDataRange.lower); + newRange.upper = center*qSqrt(mDataRange.upper/mDataRange.lower); + } + } + setDataRange(newRange); + } +} + +/* inherits documentation from base class */ +void QCPColorScale::update(UpdatePhase phase) +{ + QCPLayoutElement::update(phase); + if (!mAxisRect) + { + qDebug() << Q_FUNC_INFO << "internal axis rect was deleted"; + return; + } + + mAxisRect.data()->update(phase); + + switch (phase) + { + case upMargins: + { + if (mType == QCPAxis::atBottom || mType == QCPAxis::atTop) + { + setMaximumSize(QWIDGETSIZE_MAX, mBarWidth+mAxisRect.data()->margins().top()+mAxisRect.data()->margins().bottom()+margins().top()+margins().bottom()); + setMinimumSize(0, mBarWidth+mAxisRect.data()->margins().top()+mAxisRect.data()->margins().bottom()+margins().top()+margins().bottom()); + } else + { + setMaximumSize(mBarWidth+mAxisRect.data()->margins().left()+mAxisRect.data()->margins().right()+margins().left()+margins().right(), QWIDGETSIZE_MAX); + setMinimumSize(mBarWidth+mAxisRect.data()->margins().left()+mAxisRect.data()->margins().right()+margins().left()+margins().right(), 0); + } + break; + } + case upLayout: + { + mAxisRect.data()->setOuterRect(rect()); + break; + } + default: break; + } +} + +/* inherits documentation from base class */ +void QCPColorScale::applyDefaultAntialiasingHint(QCPPainter *painter) const +{ + painter->setAntialiasing(false); +} + +/* inherits documentation from base class */ +void QCPColorScale::mousePressEvent(QMouseEvent *event) +{ + if (!mAxisRect) + { + qDebug() << Q_FUNC_INFO << "internal axis rect was deleted"; + return; + } + mAxisRect.data()->mousePressEvent(event); +} + +/* inherits documentation from base class */ +void QCPColorScale::mouseMoveEvent(QMouseEvent *event) +{ + if (!mAxisRect) + { + qDebug() << Q_FUNC_INFO << "internal axis rect was deleted"; + return; + } + mAxisRect.data()->mouseMoveEvent(event); +} + +/* inherits documentation from base class */ +void QCPColorScale::mouseReleaseEvent(QMouseEvent *event) +{ + if (!mAxisRect) + { + qDebug() << Q_FUNC_INFO << "internal axis rect was deleted"; + return; + } + mAxisRect.data()->mouseReleaseEvent(event); +} + +/* inherits documentation from base class */ +void QCPColorScale::wheelEvent(QWheelEvent *event) +{ + if (!mAxisRect) + { + qDebug() << Q_FUNC_INFO << "internal axis rect was deleted"; + return; + } + mAxisRect.data()->wheelEvent(event); +} + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPColorScaleAxisRectPrivate +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPColorScaleAxisRectPrivate + + \internal + \brief An axis rect subclass for use in a QCPColorScale + + This is a private class and not part of the public QCustomPlot interface. + + It provides the axis rect functionality for the QCPColorScale class. +*/ + + +/*! + Creates a new instance, as a child of \a parentColorScale. +*/ +QCPColorScaleAxisRectPrivate::QCPColorScaleAxisRectPrivate(QCPColorScale *parentColorScale) : + QCPAxisRect(parentColorScale->parentPlot(), true), + mParentColorScale(parentColorScale), + mGradientImageInvalidated(true) +{ + setParentLayerable(parentColorScale); + setMinimumMargins(QMargins(0, 0, 0, 0)); + QList allAxisTypes = QList() << QCPAxis::atBottom << QCPAxis::atTop << QCPAxis::atLeft << QCPAxis::atRight; + foreach (QCPAxis::AxisType type, allAxisTypes) + { + axis(type)->setVisible(true); + axis(type)->grid()->setVisible(false); + axis(type)->setPadding(0); + connect(axis(type), SIGNAL(selectionChanged(QCPAxis::SelectableParts)), this, SLOT(axisSelectionChanged(QCPAxis::SelectableParts))); + connect(axis(type), SIGNAL(selectableChanged(QCPAxis::SelectableParts)), this, SLOT(axisSelectableChanged(QCPAxis::SelectableParts))); + } + + connect(axis(QCPAxis::atLeft), SIGNAL(rangeChanged(QCPRange)), axis(QCPAxis::atRight), SLOT(setRange(QCPRange))); + connect(axis(QCPAxis::atRight), SIGNAL(rangeChanged(QCPRange)), axis(QCPAxis::atLeft), SLOT(setRange(QCPRange))); + connect(axis(QCPAxis::atBottom), SIGNAL(rangeChanged(QCPRange)), axis(QCPAxis::atTop), SLOT(setRange(QCPRange))); + connect(axis(QCPAxis::atTop), SIGNAL(rangeChanged(QCPRange)), axis(QCPAxis::atBottom), SLOT(setRange(QCPRange))); + connect(axis(QCPAxis::atLeft), SIGNAL(scaleTypeChanged(QCPAxis::ScaleType)), axis(QCPAxis::atRight), SLOT(setScaleType(QCPAxis::ScaleType))); + connect(axis(QCPAxis::atRight), SIGNAL(scaleTypeChanged(QCPAxis::ScaleType)), axis(QCPAxis::atLeft), SLOT(setScaleType(QCPAxis::ScaleType))); + connect(axis(QCPAxis::atBottom), SIGNAL(scaleTypeChanged(QCPAxis::ScaleType)), axis(QCPAxis::atTop), SLOT(setScaleType(QCPAxis::ScaleType))); + connect(axis(QCPAxis::atTop), SIGNAL(scaleTypeChanged(QCPAxis::ScaleType)), axis(QCPAxis::atBottom), SLOT(setScaleType(QCPAxis::ScaleType))); + + // make layer transfers of color scale transfer to axis rect and axes + // the axes must be set after axis rect, such that they appear above color gradient drawn by axis rect: + connect(parentColorScale, SIGNAL(layerChanged(QCPLayer*)), this, SLOT(setLayer(QCPLayer*))); + foreach (QCPAxis::AxisType type, allAxisTypes) + connect(parentColorScale, SIGNAL(layerChanged(QCPLayer*)), axis(type), SLOT(setLayer(QCPLayer*))); +} + +/*! \internal + Updates the color gradient image if necessary, by calling \ref updateGradientImage, then draws + it. Then the axes are drawn by calling the \ref QCPAxisRect::draw base class implementation. +*/ +void QCPColorScaleAxisRectPrivate::draw(QCPPainter *painter) +{ + if (mGradientImageInvalidated) + updateGradientImage(); + + bool mirrorHorz = false; + bool mirrorVert = false; + if (mParentColorScale->mColorAxis) + { + mirrorHorz = mParentColorScale->mColorAxis.data()->rangeReversed() && (mParentColorScale->type() == QCPAxis::atBottom || mParentColorScale->type() == QCPAxis::atTop); + mirrorVert = mParentColorScale->mColorAxis.data()->rangeReversed() && (mParentColorScale->type() == QCPAxis::atLeft || mParentColorScale->type() == QCPAxis::atRight); + } + + painter->drawImage(rect().adjusted(0, -1, 0, -1), mGradientImage.mirrored(mirrorHorz, mirrorVert)); + QCPAxisRect::draw(painter); +} + +/*! \internal + + Uses the current gradient of the parent \ref QCPColorScale (specified in the constructor) to + generate a gradient image. This gradient image will be used in the \ref draw method. +*/ +void QCPColorScaleAxisRectPrivate::updateGradientImage() +{ + if (rect().isEmpty()) + return; + + int n = mParentColorScale->mGradient.levelCount(); + int w, h; + QVector data(n); + for (int i=0; imType == QCPAxis::atBottom || mParentColorScale->mType == QCPAxis::atTop) + { + w = n; + h = rect().height(); + mGradientImage = QImage(w, h, QImage::Format_RGB32); + QVector pixels; + for (int y=0; y(mGradientImage.scanLine(y))); + mParentColorScale->mGradient.colorize(data.constData(), QCPRange(0, n-1), pixels.first(), n); + for (int y=1; y(mGradientImage.scanLine(y)); + const QRgb lineColor = mParentColorScale->mGradient.color(data[h-1-y], QCPRange(0, n-1)); + for (int x=0; x allAxisTypes = QList() << QCPAxis::atBottom << QCPAxis::atTop << QCPAxis::atLeft << QCPAxis::atRight; + foreach (QCPAxis::AxisType type, allAxisTypes) + { + if (QCPAxis *senderAxis = qobject_cast(sender())) + if (senderAxis->axisType() == type) + continue; + + if (axis(type)->selectableParts().testFlag(QCPAxis::spAxis)) + { + if (selectedParts.testFlag(QCPAxis::spAxis)) + axis(type)->setSelectedParts(axis(type)->selectedParts() | QCPAxis::spAxis); + else + axis(type)->setSelectedParts(axis(type)->selectedParts() & ~QCPAxis::spAxis); + } + } +} + +/*! \internal + + This slot is connected to the selectableChanged signals of the four axes in the constructor. It + synchronizes the selectability of the axes. +*/ +void QCPColorScaleAxisRectPrivate::axisSelectableChanged(QCPAxis::SelectableParts selectableParts) +{ + // synchronize axis base selectability: + QList allAxisTypes = QList() << QCPAxis::atBottom << QCPAxis::atTop << QCPAxis::atLeft << QCPAxis::atRight; + foreach (QCPAxis::AxisType type, allAxisTypes) + { + if (QCPAxis *senderAxis = qobject_cast(sender())) + if (senderAxis->axisType() == type) + continue; + + if (axis(type)->selectableParts().testFlag(QCPAxis::spAxis)) + { + if (selectableParts.testFlag(QCPAxis::spAxis)) + axis(type)->setSelectableParts(axis(type)->selectableParts() | QCPAxis::spAxis); + else + axis(type)->setSelectableParts(axis(type)->selectableParts() & ~QCPAxis::spAxis); + } + } +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPData +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPData + \brief Holds the data of one single data point for QCPGraph. + + The container for storing multiple data points is \ref QCPDataMap. + + The stored data is: + \li \a key: coordinate on the key axis of this data point + \li \a value: coordinate on the value axis of this data point + \li \a keyErrorMinus: negative error in the key dimension (for error bars) + \li \a keyErrorPlus: positive error in the key dimension (for error bars) + \li \a valueErrorMinus: negative error in the value dimension (for error bars) + \li \a valueErrorPlus: positive error in the value dimension (for error bars) + + \see QCPDataMap +*/ + +/*! + Constructs a data point with key, value and all errors set to zero. +*/ +QCPData::QCPData() : + key(0), + value(0), + keyErrorPlus(0), + keyErrorMinus(0), + valueErrorPlus(0), + valueErrorMinus(0) +{ +} + +/*! + Constructs a data point with the specified \a key and \a value. All errors are set to zero. +*/ +QCPData::QCPData(double key, double value) : + key(key), + value(value), + keyErrorPlus(0), + keyErrorMinus(0), + valueErrorPlus(0), + valueErrorMinus(0) +{ +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPGraph +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPGraph + \brief A plottable representing a graph in a plot. + + \image html QCPGraph.png + + Usually QCustomPlot creates graphs internally via QCustomPlot::addGraph and the resulting + instance is accessed via QCustomPlot::graph. + + To plot data, assign it with the \ref setData or \ref addData functions. Alternatively, you can + also access and modify the graph's data via the \ref data method, which returns a pointer to the + internal \ref QCPDataMap. + + Graphs are used to display single-valued data. Single-valued means that there should only be one + data point per unique key coordinate. In other words, the graph can't have \a loops. If you do + want to plot non-single-valued curves, rather use the QCPCurve plottable. + + Gaps in the graph line can be created by adding data points with NaN as value + (qQNaN() or std::numeric_limits::quiet_NaN()) in between the two data points that shall be + separated. + + \section appearance Changing the appearance + + The appearance of the graph is mainly determined by the line style, scatter style, brush and pen + of the graph (\ref setLineStyle, \ref setScatterStyle, \ref setBrush, \ref setPen). + + \subsection filling Filling under or between graphs + + QCPGraph knows two types of fills: Normal graph fills towards the zero-value-line parallel to + the key axis of the graph, and fills between two graphs, called channel fills. To enable a fill, + just set a brush with \ref setBrush which is neither Qt::NoBrush nor fully transparent. + + By default, a normal fill towards the zero-value-line will be drawn. To set up a channel fill + between this graph and another one, call \ref setChannelFillGraph with the other graph as + parameter. + + \see QCustomPlot::addGraph, QCustomPlot::graph +*/ + +/* start of documentation of inline functions */ + +/*! \fn QCPDataMap *QCPGraph::data() const + + Returns a pointer to the internal data storage of type \ref QCPDataMap. You may use it to + directly manipulate the data, which may be more convenient and faster than using the regular \ref + setData or \ref addData methods, in certain situations. +*/ + +/* end of documentation of inline functions */ + +/*! + Constructs a graph which uses \a keyAxis as its key axis ("x") and \a valueAxis as its value + axis ("y"). \a keyAxis and \a valueAxis must reside in the same QCustomPlot instance and not have + the same orientation. If either of these restrictions is violated, a corresponding message is + printed to the debug output (qDebug), the construction is not aborted, though. + + The constructed QCPGraph can be added to the plot with QCustomPlot::addPlottable, QCustomPlot + then takes ownership of the graph. + + To directly create a graph inside a plot, you can also use the simpler QCustomPlot::addGraph function. +*/ +QCPGraph::QCPGraph(QCPAxis *keyAxis, QCPAxis *valueAxis) : + QCPAbstractPlottable(keyAxis, valueAxis) +{ + mData = new QCPDataMap; + + setPen(QPen(Qt::blue, 0)); + setErrorPen(QPen(Qt::black)); + setBrush(Qt::NoBrush); + setSelectedPen(QPen(QColor(80, 80, 255), 2.5)); + setSelectedBrush(Qt::NoBrush); + + setLineStyle(lsLine); + setErrorType(etNone); + setErrorBarSize(6); + setErrorBarSkipSymbol(true); + setChannelFillGraph(0); + setAdaptiveSampling(true); +} + +QCPGraph::~QCPGraph() +{ + delete mData; +} + +/*! + Replaces the current data with the provided \a data. + + If \a copy is set to true, data points in \a data will only be copied. if false, the graph + takes ownership of the passed data and replaces the internal data pointer with it. This is + significantly faster than copying for large datasets. + + Alternatively, you can also access and modify the graph's data via the \ref data method, which + returns a pointer to the internal \ref QCPDataMap. +*/ +void QCPGraph::setData(QCPDataMap *data, bool copy) +{ + if (mData == data) + { + qDebug() << Q_FUNC_INFO << "The data pointer is already in (and owned by) this plottable" << reinterpret_cast(data); + return; + } + if (copy) + { + *mData = *data; + } else + { + delete mData; + mData = data; + } +} + +/*! \overload + + Replaces the current data with the provided points in \a key and \a value pairs. The provided + vectors should have equal length. Else, the number of added points will be the size of the + smallest vector. +*/ +void QCPGraph::setData(const QVector &key, const QVector &value) +{ + mData->clear(); + int n = key.size(); + n = qMin(n, value.size()); + QCPData newData; + for (int i=0; iinsertMulti(newData.key, newData); + } +} + +/*! + Replaces the current data with the provided points in \a key and \a value pairs. Additionally the + symmetrical value error of the data points are set to the values in \a valueError. + For error bars to show appropriately, see \ref setErrorType. + The provided vectors should have equal length. Else, the number of added points will be the size of the + smallest vector. + + For asymmetrical errors (plus different from minus), see the overloaded version of this function. +*/ +void QCPGraph::setDataValueError(const QVector &key, const QVector &value, const QVector &valueError) +{ + mData->clear(); + int n = key.size(); + n = qMin(n, value.size()); + n = qMin(n, valueError.size()); + QCPData newData; + for (int i=0; iinsertMulti(key[i], newData); + } +} + +/*! + \overload + Replaces the current data with the provided points in \a key and \a value pairs. Additionally the + negative value error of the data points are set to the values in \a valueErrorMinus, the positive + value error to \a valueErrorPlus. + For error bars to show appropriately, see \ref setErrorType. + The provided vectors should have equal length. Else, the number of added points will be the size of the + smallest vector. +*/ +void QCPGraph::setDataValueError(const QVector &key, const QVector &value, const QVector &valueErrorMinus, const QVector &valueErrorPlus) +{ + mData->clear(); + int n = key.size(); + n = qMin(n, value.size()); + n = qMin(n, valueErrorMinus.size()); + n = qMin(n, valueErrorPlus.size()); + QCPData newData; + for (int i=0; iinsertMulti(key[i], newData); + } +} + +/*! + Replaces the current data with the provided points in \a key and \a value pairs. Additionally the + symmetrical key error of the data points are set to the values in \a keyError. + For error bars to show appropriately, see \ref setErrorType. + The provided vectors should have equal length. Else, the number of added points will be the size of the + smallest vector. + + For asymmetrical errors (plus different from minus), see the overloaded version of this function. +*/ +void QCPGraph::setDataKeyError(const QVector &key, const QVector &value, const QVector &keyError) +{ + mData->clear(); + int n = key.size(); + n = qMin(n, value.size()); + n = qMin(n, keyError.size()); + QCPData newData; + for (int i=0; iinsertMulti(key[i], newData); + } +} + +/*! + \overload + Replaces the current data with the provided points in \a key and \a value pairs. Additionally the + negative key error of the data points are set to the values in \a keyErrorMinus, the positive + key error to \a keyErrorPlus. + For error bars to show appropriately, see \ref setErrorType. + The provided vectors should have equal length. Else, the number of added points will be the size of the + smallest vector. +*/ +void QCPGraph::setDataKeyError(const QVector &key, const QVector &value, const QVector &keyErrorMinus, const QVector &keyErrorPlus) +{ + mData->clear(); + int n = key.size(); + n = qMin(n, value.size()); + n = qMin(n, keyErrorMinus.size()); + n = qMin(n, keyErrorPlus.size()); + QCPData newData; + for (int i=0; iinsertMulti(key[i], newData); + } +} + +/*! + Replaces the current data with the provided points in \a key and \a value pairs. Additionally the + symmetrical key and value errors of the data points are set to the values in \a keyError and \a valueError. + For error bars to show appropriately, see \ref setErrorType. + The provided vectors should have equal length. Else, the number of added points will be the size of the + smallest vector. + + For asymmetrical errors (plus different from minus), see the overloaded version of this function. +*/ +void QCPGraph::setDataBothError(const QVector &key, const QVector &value, const QVector &keyError, const QVector &valueError) +{ + mData->clear(); + int n = key.size(); + n = qMin(n, value.size()); + n = qMin(n, valueError.size()); + n = qMin(n, keyError.size()); + QCPData newData; + for (int i=0; iinsertMulti(key[i], newData); + } +} + +/*! + \overload + Replaces the current data with the provided points in \a key and \a value pairs. Additionally the + negative key and value errors of the data points are set to the values in \a keyErrorMinus and \a valueErrorMinus. The positive + key and value errors are set to the values in \a keyErrorPlus \a valueErrorPlus. + For error bars to show appropriately, see \ref setErrorType. + The provided vectors should have equal length. Else, the number of added points will be the size of the + smallest vector. +*/ +void QCPGraph::setDataBothError(const QVector &key, const QVector &value, const QVector &keyErrorMinus, const QVector &keyErrorPlus, const QVector &valueErrorMinus, const QVector &valueErrorPlus) +{ + mData->clear(); + int n = key.size(); + n = qMin(n, value.size()); + n = qMin(n, valueErrorMinus.size()); + n = qMin(n, valueErrorPlus.size()); + n = qMin(n, keyErrorMinus.size()); + n = qMin(n, keyErrorPlus.size()); + QCPData newData; + for (int i=0; iinsertMulti(key[i], newData); + } +} + + +/*! + Sets how the single data points are connected in the plot. For scatter-only plots, set \a ls to + \ref lsNone and \ref setScatterStyle to the desired scatter style. + + \see setScatterStyle +*/ +void QCPGraph::setLineStyle(LineStyle ls) +{ + mLineStyle = ls; +} + +/*! + Sets the visual appearance of single data points in the plot. If set to \ref QCPScatterStyle::ssNone, no scatter points + are drawn (e.g. for line-only-plots with appropriate line style). + + \see QCPScatterStyle, setLineStyle +*/ +void QCPGraph::setScatterStyle(const QCPScatterStyle &style) +{ + mScatterStyle = style; +} + +/*! + Sets which kind of error bars (Key Error, Value Error or both) should be drawn on each data + point. If you set \a errorType to something other than \ref etNone, make sure to actually pass + error data via the specific setData functions along with the data points (e.g. \ref + setDataValueError, \ref setDataKeyError, \ref setDataBothError). + + \see ErrorType +*/ +void QCPGraph::setErrorType(ErrorType errorType) +{ + mErrorType = errorType; +} + +/*! + Sets the pen with which the error bars will be drawn. + \see setErrorBarSize, setErrorType +*/ +void QCPGraph::setErrorPen(const QPen &pen) +{ + mErrorPen = pen; +} + +/*! + Sets the width of the handles at both ends of an error bar in pixels. +*/ +void QCPGraph::setErrorBarSize(double size) +{ + mErrorBarSize = size; +} + +/*! + If \a enabled is set to true, the error bar will not be drawn as a solid line under the scatter symbol but + leave some free space around the symbol. + + This feature uses the current scatter size (\ref QCPScatterStyle::setSize) to determine the size + of the area to leave blank. So when drawing Pixmaps as scatter points (\ref + QCPScatterStyle::ssPixmap), the scatter size must be set manually to a value corresponding to the + size of the Pixmap, if the error bars should leave gaps to its boundaries. + + \ref setErrorType, setErrorBarSize, setScatterStyle +*/ +void QCPGraph::setErrorBarSkipSymbol(bool enabled) +{ + mErrorBarSkipSymbol = enabled; +} + +/*! + Sets the target graph for filling the area between this graph and \a targetGraph with the current + brush (\ref setBrush). + + When \a targetGraph is set to 0, a normal graph fill to the zero-value-line will be shown. To + disable any filling, set the brush to Qt::NoBrush. + + \see setBrush +*/ +void QCPGraph::setChannelFillGraph(QCPGraph *targetGraph) +{ + // prevent setting channel target to this graph itself: + if (targetGraph == this) + { + qDebug() << Q_FUNC_INFO << "targetGraph is this graph itself"; + mChannelFillGraph = 0; + return; + } + // prevent setting channel target to a graph not in the plot: + if (targetGraph && targetGraph->mParentPlot != mParentPlot) + { + qDebug() << Q_FUNC_INFO << "targetGraph not in same plot"; + mChannelFillGraph = 0; + return; + } + + mChannelFillGraph = targetGraph; +} + +/*! + Sets whether adaptive sampling shall be used when plotting this graph. QCustomPlot's adaptive + sampling technique can drastically improve the replot performance for graphs with a larger number + of points (e.g. above 10,000), without notably changing the appearance of the graph. + + By default, adaptive sampling is enabled. Even if enabled, QCustomPlot decides whether adaptive + sampling shall actually be used on a per-graph basis. So leaving adaptive sampling enabled has no + disadvantage in almost all cases. + + \image html adaptive-sampling-line.png "A line plot of 500,000 points without and with adaptive sampling" + + As can be seen, line plots experience no visual degradation from adaptive sampling. Outliers are + reproduced reliably, as well as the overall shape of the data set. The replot time reduces + dramatically though. This allows QCustomPlot to display large amounts of data in realtime. + + \image html adaptive-sampling-scatter.png "A scatter plot of 100,000 points without and with adaptive sampling" + + Care must be taken when using high-density scatter plots in combination with adaptive sampling. + The adaptive sampling algorithm treats scatter plots more carefully than line plots which still + gives a significant reduction of replot times, but not quite as much as for line plots. This is + because scatter plots inherently need more data points to be preserved in order to still resemble + the original, non-adaptive-sampling plot. As shown above, the results still aren't quite + identical, as banding occurs for the outer data points. This is in fact intentional, such that + the boundaries of the data cloud stay visible to the viewer. How strong the banding appears, + depends on the point density, i.e. the number of points in the plot. + + For some situations with scatter plots it might thus be desirable to manually turn adaptive + sampling off. For example, when saving the plot to disk. This can be achieved by setting \a + enabled to false before issuing a command like \ref QCustomPlot::savePng, and setting \a enabled + back to true afterwards. +*/ +void QCPGraph::setAdaptiveSampling(bool enabled) +{ + mAdaptiveSampling = enabled; +} + +/*! + Adds the provided data points in \a dataMap to the current data. + + Alternatively, you can also access and modify the graph's data via the \ref data method, which + returns a pointer to the internal \ref QCPDataMap. + + \see removeData +*/ +void QCPGraph::addData(const QCPDataMap &dataMap) +{ + mData->unite(dataMap); +} + +/*! \overload + Adds the provided single data point in \a data to the current data. + + Alternatively, you can also access and modify the graph's data via the \ref data method, which + returns a pointer to the internal \ref QCPDataMap. + + \see removeData +*/ +void QCPGraph::addData(const QCPData &data) +{ + mData->insertMulti(data.key, data); +} + +/*! \overload + Adds the provided single data point as \a key and \a value pair to the current data. + + Alternatively, you can also access and modify the graph's data via the \ref data method, which + returns a pointer to the internal \ref QCPDataMap. + + \see removeData +*/ +void QCPGraph::addData(double key, double value) +{ + QCPData newData; + newData.key = key; + newData.value = value; + mData->insertMulti(newData.key, newData); +} + +/*! \overload + Adds the provided data points as \a key and \a value pairs to the current data. + + Alternatively, you can also access and modify the graph's data via the \ref data method, which + returns a pointer to the internal \ref QCPDataMap. + + \see removeData +*/ +void QCPGraph::addData(const QVector &keys, const QVector &values) +{ + int n = qMin(keys.size(), values.size()); + QCPData newData; + for (int i=0; iinsertMulti(newData.key, newData); + } +} + +/*! + Removes all data points with keys smaller than \a key. + \see addData, clearData +*/ +void QCPGraph::removeDataBefore(double key) +{ + QCPDataMap::iterator it = mData->begin(); + while (it != mData->end() && it.key() < key) + it = mData->erase(it); +} + +/*! + Removes all data points with keys greater than \a key. + \see addData, clearData +*/ +void QCPGraph::removeDataAfter(double key) +{ + if (mData->isEmpty()) return; + QCPDataMap::iterator it = mData->upperBound(key); + while (it != mData->end()) + it = mData->erase(it); +} + +/*! + Removes all data points with keys between \a fromKey and \a toKey. + if \a fromKey is greater or equal to \a toKey, the function does nothing. To remove + a single data point with known key, use \ref removeData(double key). + + \see addData, clearData +*/ +void QCPGraph::removeData(double fromKey, double toKey) +{ + if (fromKey >= toKey || mData->isEmpty()) return; + QCPDataMap::iterator it = mData->upperBound(fromKey); + QCPDataMap::iterator itEnd = mData->upperBound(toKey); + while (it != itEnd) + it = mData->erase(it); +} + +/*! \overload + + Removes a single data point at \a key. If the position is not known with absolute precision, + consider using \ref removeData(double fromKey, double toKey) with a small fuzziness interval around + the suspected position, depeding on the precision with which the key is known. + + \see addData, clearData +*/ +void QCPGraph::removeData(double key) +{ + mData->remove(key); +} + +/*! + Removes all data points. + \see removeData, removeDataAfter, removeDataBefore +*/ +void QCPGraph::clearData() +{ + mData->clear(); +} + +/* inherits documentation from base class */ +double QCPGraph::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if ((onlySelectable && !mSelectable) || mData->isEmpty()) + return -1; + if (!mKeyAxis || !mValueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return -1; } + + if (mKeyAxis.data()->axisRect()->rect().contains(pos.toPoint())) + return pointDistance(pos); + else + return -1; +} + +/*! \overload + + Allows to define whether error bars are taken into consideration when determining the new axis + range. + + \see rescaleKeyAxis, rescaleValueAxis, QCPAbstractPlottable::rescaleAxes, QCustomPlot::rescaleAxes +*/ +void QCPGraph::rescaleAxes(bool onlyEnlarge, bool includeErrorBars) const +{ + rescaleKeyAxis(onlyEnlarge, includeErrorBars); + rescaleValueAxis(onlyEnlarge, includeErrorBars); +} + +/*! \overload + + Allows to define whether error bars (of kind \ref QCPGraph::etKey) are taken into consideration + when determining the new axis range. + + \see rescaleAxes, QCPAbstractPlottable::rescaleKeyAxis +*/ +void QCPGraph::rescaleKeyAxis(bool onlyEnlarge, bool includeErrorBars) const +{ + // this code is a copy of QCPAbstractPlottable::rescaleKeyAxis with the only change + // that getKeyRange is passed the includeErrorBars value. + if (mData->isEmpty()) return; + + QCPAxis *keyAxis = mKeyAxis.data(); + if (!keyAxis) { qDebug() << Q_FUNC_INFO << "invalid key axis"; return; } + + SignDomain signDomain = sdBoth; + if (keyAxis->scaleType() == QCPAxis::stLogarithmic) + signDomain = (keyAxis->range().upper < 0 ? sdNegative : sdPositive); + + bool foundRange; + QCPRange newRange = getKeyRange(foundRange, signDomain, includeErrorBars); + + if (foundRange) + { + if (onlyEnlarge) + { + if (keyAxis->range().lower < newRange.lower) + newRange.lower = keyAxis->range().lower; + if (keyAxis->range().upper > newRange.upper) + newRange.upper = keyAxis->range().upper; + } + keyAxis->setRange(newRange); + } +} + +/*! \overload + + Allows to define whether error bars (of kind \ref QCPGraph::etValue) are taken into consideration + when determining the new axis range. + + \see rescaleAxes, QCPAbstractPlottable::rescaleValueAxis +*/ +void QCPGraph::rescaleValueAxis(bool onlyEnlarge, bool includeErrorBars) const +{ + // this code is a copy of QCPAbstractPlottable::rescaleValueAxis with the only change + // is that getValueRange is passed the includeErrorBars value. + if (mData->isEmpty()) return; + + QCPAxis *valueAxis = mValueAxis.data(); + if (!valueAxis) { qDebug() << Q_FUNC_INFO << "invalid value axis"; return; } + + SignDomain signDomain = sdBoth; + if (valueAxis->scaleType() == QCPAxis::stLogarithmic) + signDomain = (valueAxis->range().upper < 0 ? sdNegative : sdPositive); + + bool foundRange; + QCPRange newRange = getValueRange(foundRange, signDomain, includeErrorBars); + + if (foundRange) + { + if (onlyEnlarge) + { + if (valueAxis->range().lower < newRange.lower) + newRange.lower = valueAxis->range().lower; + if (valueAxis->range().upper > newRange.upper) + newRange.upper = valueAxis->range().upper; + } + valueAxis->setRange(newRange); + } +} + +/* inherits documentation from base class */ +void QCPGraph::draw(QCPPainter *painter) +{ + if (!mKeyAxis || !mValueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + if (mKeyAxis.data()->range().size() <= 0 || mData->isEmpty()) return; + if (mLineStyle == lsNone && mScatterStyle.isNone()) return; + + // allocate line and (if necessary) point vectors: + QVector *lineData = new QVector; + QVector *scatterData = 0; + if (!mScatterStyle.isNone()) + scatterData = new QVector; + + // fill vectors with data appropriate to plot style: + getPlotData(lineData, scatterData); + + // check data validity if flag set: +#ifdef QCUSTOMPLOT_CHECK_DATA + QCPDataMap::const_iterator it; + for (it = mData->constBegin(); it != mData->constEnd(); ++it) + { + if (QCP::isInvalidData(it.value().key, it.value().value) || + QCP::isInvalidData(it.value().keyErrorPlus, it.value().keyErrorMinus) || + QCP::isInvalidData(it.value().valueErrorPlus, it.value().valueErrorPlus)) + qDebug() << Q_FUNC_INFO << "Data point at" << it.key() << "invalid." << "Plottable name:" << name(); + } +#endif + + // draw fill of graph: + drawFill(painter, lineData); + + // draw line: + if (mLineStyle == lsImpulse) + drawImpulsePlot(painter, lineData); + else if (mLineStyle != lsNone) + drawLinePlot(painter, lineData); // also step plots can be drawn as a line plot + + // draw scatters: + if (scatterData) + drawScatterPlot(painter, scatterData); + + // free allocated line and point vectors: + delete lineData; + if (scatterData) + delete scatterData; +} + +/* inherits documentation from base class */ +void QCPGraph::drawLegendIcon(QCPPainter *painter, const QRectF &rect) const +{ + // draw fill: + if (mBrush.style() != Qt::NoBrush) + { + applyFillAntialiasingHint(painter); + painter->fillRect(QRectF(rect.left(), rect.top()+rect.height()/2.0, rect.width(), rect.height()/3.0), mBrush); + } + // draw line vertically centered: + if (mLineStyle != lsNone) + { + applyDefaultAntialiasingHint(painter); + painter->setPen(mPen); + painter->drawLine(QLineF(rect.left(), rect.top()+rect.height()/2.0, rect.right()+5, rect.top()+rect.height()/2.0)); // +5 on x2 else last segment is missing from dashed/dotted pens + } + // draw scatter symbol: + if (!mScatterStyle.isNone()) + { + applyScattersAntialiasingHint(painter); + // scale scatter pixmap if it's too large to fit in legend icon rect: + if (mScatterStyle.shape() == QCPScatterStyle::ssPixmap && (mScatterStyle.pixmap().size().width() > rect.width() || mScatterStyle.pixmap().size().height() > rect.height())) + { + QCPScatterStyle scaledStyle(mScatterStyle); + scaledStyle.setPixmap(scaledStyle.pixmap().scaled(rect.size().toSize(), Qt::KeepAspectRatio, Qt::SmoothTransformation)); + scaledStyle.applyTo(painter, mPen); + scaledStyle.drawShape(painter, QRectF(rect).center()); + } else + { + mScatterStyle.applyTo(painter, mPen); + mScatterStyle.drawShape(painter, QRectF(rect).center()); + } + } +} + +/*! \internal + + This function branches out to the line style specific "get(...)PlotData" functions, according to + the line style of the graph. + + \a lineData will be filled with raw points that will be drawn with the according draw functions, + e.g. \ref drawLinePlot and \ref drawImpulsePlot. These aren't necessarily the original data + points, since for step plots for example, additional points are needed for drawing lines that + make up steps. If the line style of the graph is \ref lsNone, the \a lineData vector will be left + untouched. + + \a scatterData will be filled with the original data points so \ref drawScatterPlot can draw the + scatter symbols accordingly. If no scatters need to be drawn, i.e. the scatter style's shape is + \ref QCPScatterStyle::ssNone, pass 0 as \a scatterData, and this step will be skipped. + + \see getScatterPlotData, getLinePlotData, getStepLeftPlotData, getStepRightPlotData, + getStepCenterPlotData, getImpulsePlotData +*/ +void QCPGraph::getPlotData(QVector *lineData, QVector *scatterData) const +{ + switch(mLineStyle) + { + case lsNone: getScatterPlotData(scatterData); break; + case lsLine: getLinePlotData(lineData, scatterData); break; + case lsStepLeft: getStepLeftPlotData(lineData, scatterData); break; + case lsStepRight: getStepRightPlotData(lineData, scatterData); break; + case lsStepCenter: getStepCenterPlotData(lineData, scatterData); break; + case lsImpulse: getImpulsePlotData(lineData, scatterData); break; + } +} + +/*! \internal + + If line style is \ref lsNone and the scatter style's shape is not \ref QCPScatterStyle::ssNone, + this function serves at providing the visible data points in \a scatterData, so the \ref + drawScatterPlot function can draw the scatter points accordingly. + + If line style is not \ref lsNone, this function is not called and the data for the scatter points + are (if needed) calculated inside the corresponding other "get(...)PlotData" functions. + + \see drawScatterPlot +*/ +void QCPGraph::getScatterPlotData(QVector *scatterData) const +{ + getPreparedData(0, scatterData); +} + +/*! \internal + + Places the raw data points needed for a normal linearly connected graph in \a linePixelData. + + As for all plot data retrieval functions, \a scatterData just contains all unaltered data (scatter) + points that are visible for drawing scatter points, if necessary. If drawing scatter points is + disabled (i.e. the scatter style's shape is \ref QCPScatterStyle::ssNone), pass 0 as \a + scatterData, and the function will skip filling the vector. + + \see drawLinePlot +*/ +void QCPGraph::getLinePlotData(QVector *linePixelData, QVector *scatterData) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + if (!linePixelData) { qDebug() << Q_FUNC_INFO << "null pointer passed as linePixelData"; return; } + + QVector lineData; + getPreparedData(&lineData, scatterData); + linePixelData->reserve(lineData.size()+2); // added 2 to reserve memory for lower/upper fill base points that might be needed for fill + linePixelData->resize(lineData.size()); + + // transform lineData points to pixels: + if (keyAxis->orientation() == Qt::Vertical) + { + for (int i=0; icoordToPixel(lineData.at(i).value)); + (*linePixelData)[i].setY(keyAxis->coordToPixel(lineData.at(i).key)); + } + } else // key axis is horizontal + { + for (int i=0; icoordToPixel(lineData.at(i).key)); + (*linePixelData)[i].setY(valueAxis->coordToPixel(lineData.at(i).value)); + } + } +} + +/*! + \internal + Places the raw data points needed for a step plot with left oriented steps in \a lineData. + + As for all plot data retrieval functions, \a scatterData just contains all unaltered data (scatter) + points that are visible for drawing scatter points, if necessary. If drawing scatter points is + disabled (i.e. the scatter style's shape is \ref QCPScatterStyle::ssNone), pass 0 as \a + scatterData, and the function will skip filling the vector. + + \see drawLinePlot +*/ +void QCPGraph::getStepLeftPlotData(QVector *linePixelData, QVector *scatterData) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + if (!linePixelData) { qDebug() << Q_FUNC_INFO << "null pointer passed as lineData"; return; } + + QVector lineData; + getPreparedData(&lineData, scatterData); + linePixelData->reserve(lineData.size()*2+2); // added 2 to reserve memory for lower/upper fill base points that might be needed for fill + linePixelData->resize(lineData.size()*2); + + // calculate steps from lineData and transform to pixel coordinates: + if (keyAxis->orientation() == Qt::Vertical) + { + double lastValue = valueAxis->coordToPixel(lineData.first().value); + double key; + for (int i=0; icoordToPixel(lineData.at(i).key); + (*linePixelData)[i*2+0].setX(lastValue); + (*linePixelData)[i*2+0].setY(key); + lastValue = valueAxis->coordToPixel(lineData.at(i).value); + (*linePixelData)[i*2+1].setX(lastValue); + (*linePixelData)[i*2+1].setY(key); + } + } else // key axis is horizontal + { + double lastValue = valueAxis->coordToPixel(lineData.first().value); + double key; + for (int i=0; icoordToPixel(lineData.at(i).key); + (*linePixelData)[i*2+0].setX(key); + (*linePixelData)[i*2+0].setY(lastValue); + lastValue = valueAxis->coordToPixel(lineData.at(i).value); + (*linePixelData)[i*2+1].setX(key); + (*linePixelData)[i*2+1].setY(lastValue); + } + } +} + +/*! + \internal + Places the raw data points needed for a step plot with right oriented steps in \a lineData. + + As for all plot data retrieval functions, \a scatterData just contains all unaltered data (scatter) + points that are visible for drawing scatter points, if necessary. If drawing scatter points is + disabled (i.e. the scatter style's shape is \ref QCPScatterStyle::ssNone), pass 0 as \a + scatterData, and the function will skip filling the vector. + + \see drawLinePlot +*/ +void QCPGraph::getStepRightPlotData(QVector *linePixelData, QVector *scatterData) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + if (!linePixelData) { qDebug() << Q_FUNC_INFO << "null pointer passed as lineData"; return; } + + QVector lineData; + getPreparedData(&lineData, scatterData); + linePixelData->reserve(lineData.size()*2+2); // added 2 to reserve memory for lower/upper fill base points that might be needed for fill + linePixelData->resize(lineData.size()*2); + + // calculate steps from lineData and transform to pixel coordinates: + if (keyAxis->orientation() == Qt::Vertical) + { + double lastKey = keyAxis->coordToPixel(lineData.first().key); + double value; + for (int i=0; icoordToPixel(lineData.at(i).value); + (*linePixelData)[i*2+0].setX(value); + (*linePixelData)[i*2+0].setY(lastKey); + lastKey = keyAxis->coordToPixel(lineData.at(i).key); + (*linePixelData)[i*2+1].setX(value); + (*linePixelData)[i*2+1].setY(lastKey); + } + } else // key axis is horizontal + { + double lastKey = keyAxis->coordToPixel(lineData.first().key); + double value; + for (int i=0; icoordToPixel(lineData.at(i).value); + (*linePixelData)[i*2+0].setX(lastKey); + (*linePixelData)[i*2+0].setY(value); + lastKey = keyAxis->coordToPixel(lineData.at(i).key); + (*linePixelData)[i*2+1].setX(lastKey); + (*linePixelData)[i*2+1].setY(value); + } + } +} + +/*! + \internal + Places the raw data points needed for a step plot with centered steps in \a lineData. + + As for all plot data retrieval functions, \a scatterData just contains all unaltered data (scatter) + points that are visible for drawing scatter points, if necessary. If drawing scatter points is + disabled (i.e. the scatter style's shape is \ref QCPScatterStyle::ssNone), pass 0 as \a + scatterData, and the function will skip filling the vector. + + \see drawLinePlot +*/ +void QCPGraph::getStepCenterPlotData(QVector *linePixelData, QVector *scatterData) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + if (!linePixelData) { qDebug() << Q_FUNC_INFO << "null pointer passed as lineData"; return; } + + QVector lineData; + getPreparedData(&lineData, scatterData); + linePixelData->reserve(lineData.size()*2+2); // added 2 to reserve memory for lower/upper fill base points that might be needed for fill + linePixelData->resize(lineData.size()*2); + // calculate steps from lineData and transform to pixel coordinates: + if (keyAxis->orientation() == Qt::Vertical) + { + double lastKey = keyAxis->coordToPixel(lineData.first().key); + double lastValue = valueAxis->coordToPixel(lineData.first().value); + double key; + (*linePixelData)[0].setX(lastValue); + (*linePixelData)[0].setY(lastKey); + for (int i=1; icoordToPixel(lineData.at(i).key)+lastKey)*0.5; + (*linePixelData)[i*2-1].setX(lastValue); + (*linePixelData)[i*2-1].setY(key); + lastValue = valueAxis->coordToPixel(lineData.at(i).value); + lastKey = keyAxis->coordToPixel(lineData.at(i).key); + (*linePixelData)[i*2+0].setX(lastValue); + (*linePixelData)[i*2+0].setY(key); + } + (*linePixelData)[lineData.size()*2-1].setX(lastValue); + (*linePixelData)[lineData.size()*2-1].setY(lastKey); + } else // key axis is horizontal + { + double lastKey = keyAxis->coordToPixel(lineData.first().key); + double lastValue = valueAxis->coordToPixel(lineData.first().value); + double key; + (*linePixelData)[0].setX(lastKey); + (*linePixelData)[0].setY(lastValue); + for (int i=1; icoordToPixel(lineData.at(i).key)+lastKey)*0.5; + (*linePixelData)[i*2-1].setX(key); + (*linePixelData)[i*2-1].setY(lastValue); + lastValue = valueAxis->coordToPixel(lineData.at(i).value); + lastKey = keyAxis->coordToPixel(lineData.at(i).key); + (*linePixelData)[i*2+0].setX(key); + (*linePixelData)[i*2+0].setY(lastValue); + } + (*linePixelData)[lineData.size()*2-1].setX(lastKey); + (*linePixelData)[lineData.size()*2-1].setY(lastValue); + } + +} + +/*! + \internal + Places the raw data points needed for an impulse plot in \a lineData. + + As for all plot data retrieval functions, \a scatterData just contains all unaltered data (scatter) + points that are visible for drawing scatter points, if necessary. If drawing scatter points is + disabled (i.e. the scatter style's shape is \ref QCPScatterStyle::ssNone), pass 0 as \a + scatterData, and the function will skip filling the vector. + + \see drawImpulsePlot +*/ +void QCPGraph::getImpulsePlotData(QVector *linePixelData, QVector *scatterData) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + if (!linePixelData) { qDebug() << Q_FUNC_INFO << "null pointer passed as linePixelData"; return; } + + QVector lineData; + getPreparedData(&lineData, scatterData); + linePixelData->resize(lineData.size()*2); // no need to reserve 2 extra points because impulse plot has no fill + + // transform lineData points to pixels: + if (keyAxis->orientation() == Qt::Vertical) + { + double zeroPointX = valueAxis->coordToPixel(0); + double key; + for (int i=0; icoordToPixel(lineData.at(i).key); + (*linePixelData)[i*2+0].setX(zeroPointX); + (*linePixelData)[i*2+0].setY(key); + (*linePixelData)[i*2+1].setX(valueAxis->coordToPixel(lineData.at(i).value)); + (*linePixelData)[i*2+1].setY(key); + } + } else // key axis is horizontal + { + double zeroPointY = valueAxis->coordToPixel(0); + double key; + for (int i=0; icoordToPixel(lineData.at(i).key); + (*linePixelData)[i*2+0].setX(key); + (*linePixelData)[i*2+0].setY(zeroPointY); + (*linePixelData)[i*2+1].setX(key); + (*linePixelData)[i*2+1].setY(valueAxis->coordToPixel(lineData.at(i).value)); + } + } +} + +/*! \internal + + Draws the fill of the graph with the specified brush. + + If the fill is a normal fill towards the zero-value-line, only the \a lineData is required (and + two extra points at the zero-value-line, which are added by \ref addFillBasePoints and removed by + \ref removeFillBasePoints after the fill drawing is done). + + If the fill is a channel fill between this QCPGraph and another QCPGraph (mChannelFillGraph), the + more complex polygon is calculated with the \ref getChannelFillPolygon function. + + \see drawLinePlot +*/ +void QCPGraph::drawFill(QCPPainter *painter, QVector *lineData) const +{ + if (mLineStyle == lsImpulse) return; // fill doesn't make sense for impulse plot + if (mainBrush().style() == Qt::NoBrush || mainBrush().color().alpha() == 0) return; + + applyFillAntialiasingHint(painter); + if (!mChannelFillGraph) + { + // draw base fill under graph, fill goes all the way to the zero-value-line: + addFillBasePoints(lineData); + painter->setPen(Qt::NoPen); + painter->setBrush(mainBrush()); + painter->drawPolygon(QPolygonF(*lineData)); + removeFillBasePoints(lineData); + } else + { + // draw channel fill between this graph and mChannelFillGraph: + painter->setPen(Qt::NoPen); + painter->setBrush(mainBrush()); + painter->drawPolygon(getChannelFillPolygon(lineData)); + } +} + +/*! \internal + + Draws scatter symbols at every data point passed in \a scatterData. scatter symbols are independent + of the line style and are always drawn if the scatter style's shape is not \ref + QCPScatterStyle::ssNone. Hence, the \a scatterData vector is outputted by all "get(...)PlotData" + functions, together with the (line style dependent) line data. + + \see drawLinePlot, drawImpulsePlot +*/ +void QCPGraph::drawScatterPlot(QCPPainter *painter, QVector *scatterData) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + + // draw error bars: + if (mErrorType != etNone) + { + applyErrorBarsAntialiasingHint(painter); + painter->setPen(mErrorPen); + if (keyAxis->orientation() == Qt::Vertical) + { + for (int i=0; isize(); ++i) + drawError(painter, valueAxis->coordToPixel(scatterData->at(i).value), keyAxis->coordToPixel(scatterData->at(i).key), scatterData->at(i)); + } else + { + for (int i=0; isize(); ++i) + drawError(painter, keyAxis->coordToPixel(scatterData->at(i).key), valueAxis->coordToPixel(scatterData->at(i).value), scatterData->at(i)); + } + } + + // draw scatter point symbols: + applyScattersAntialiasingHint(painter); + mScatterStyle.applyTo(painter, mPen); + if (keyAxis->orientation() == Qt::Vertical) + { + for (int i=0; isize(); ++i) + if (!qIsNaN(scatterData->at(i).value)) + mScatterStyle.drawShape(painter, valueAxis->coordToPixel(scatterData->at(i).value), keyAxis->coordToPixel(scatterData->at(i).key)); + } else + { + for (int i=0; isize(); ++i) + if (!qIsNaN(scatterData->at(i).value)) + mScatterStyle.drawShape(painter, keyAxis->coordToPixel(scatterData->at(i).key), valueAxis->coordToPixel(scatterData->at(i).value)); + } +} + +/*! \internal + + Draws line graphs from the provided data. It connects all points in \a lineData, which was + created by one of the "get(...)PlotData" functions for line styles that require simple line + connections between the point vector they create. These are for example \ref getLinePlotData, + \ref getStepLeftPlotData, \ref getStepRightPlotData and \ref getStepCenterPlotData. + + \see drawScatterPlot, drawImpulsePlot +*/ +void QCPGraph::drawLinePlot(QCPPainter *painter, QVector *lineData) const +{ + // draw line of graph: + if (mainPen().style() != Qt::NoPen && mainPen().color().alpha() != 0) + { + applyDefaultAntialiasingHint(painter); + painter->setPen(mainPen()); + painter->setBrush(Qt::NoBrush); + + /* Draws polyline in batches, currently not used: + int p = 0; + while (p < lineData->size()) + { + int batch = qMin(25, lineData->size()-p); + if (p != 0) + { + ++batch; + --p; // to draw the connection lines between two batches + } + painter->drawPolyline(lineData->constData()+p, batch); + p += batch; + } + */ + + // if drawing solid line and not in PDF, use much faster line drawing instead of polyline: + if (mParentPlot->plottingHints().testFlag(QCP::phFastPolylines) && + painter->pen().style() == Qt::SolidLine && + !painter->modes().testFlag(QCPPainter::pmVectorized) && + !painter->modes().testFlag(QCPPainter::pmNoCaching)) + { + int i = 0; + bool lastIsNan = false; + const int lineDataSize = lineData->size(); + while (i < lineDataSize && (qIsNaN(lineData->at(i).y()) || qIsNaN(lineData->at(i).x()))) // make sure first point is not NaN + ++i; + ++i; // because drawing works in 1 point retrospect + while (i < lineDataSize) + { + if (!qIsNaN(lineData->at(i).y()) && !qIsNaN(lineData->at(i).x())) // NaNs create a gap in the line + { + if (!lastIsNan) + painter->drawLine(lineData->at(i-1), lineData->at(i)); + else + lastIsNan = false; + } else + lastIsNan = true; + ++i; + } + } else + { + int segmentStart = 0; + int i = 0; + const int lineDataSize = lineData->size(); + while (i < lineDataSize) + { + if (qIsNaN(lineData->at(i).y()) || qIsNaN(lineData->at(i).x())) // NaNs create a gap in the line + { + painter->drawPolyline(lineData->constData()+segmentStart, i-segmentStart); // i, because we don't want to include the current NaN point + segmentStart = i+1; + } + ++i; + } + // draw last segment: + painter->drawPolyline(lineData->constData()+segmentStart, lineDataSize-segmentStart); + } + } +} + +/*! \internal + + Draws impulses from the provided data, i.e. it connects all line pairs in \a lineData, which was + created by \ref getImpulsePlotData. + + \see drawScatterPlot, drawLinePlot +*/ +void QCPGraph::drawImpulsePlot(QCPPainter *painter, QVector *lineData) const +{ + // draw impulses: + if (mainPen().style() != Qt::NoPen && mainPen().color().alpha() != 0) + { + applyDefaultAntialiasingHint(painter); + QPen pen = mainPen(); + pen.setCapStyle(Qt::FlatCap); // so impulse line doesn't reach beyond zero-line + painter->setPen(pen); + painter->setBrush(Qt::NoBrush); + painter->drawLines(*lineData); + } +} + +/*! \internal + + Returns the \a lineData and \a scatterData that need to be plotted for this graph taking into + consideration the current axis ranges and, if \ref setAdaptiveSampling is enabled, local point + densities. + + 0 may be passed as \a lineData or \a scatterData to indicate that the respective dataset isn't + needed. For example, if the scatter style (\ref setScatterStyle) is \ref QCPScatterStyle::ssNone, \a + scatterData should be 0 to prevent unnecessary calculations. + + This method is used by the various "get(...)PlotData" methods to get the basic working set of data. +*/ +void QCPGraph::getPreparedData(QVector *lineData, QVector *scatterData) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + // get visible data range: + QCPDataMap::const_iterator lower, upper; // note that upper is the actual upper point, and not 1 step after the upper point + getVisibleDataBounds(lower, upper); + if (lower == mData->constEnd() || upper == mData->constEnd()) + return; + + // count points in visible range, taking into account that we only need to count to the limit maxCount if using adaptive sampling: + int maxCount = std::numeric_limits::max(); + if (mAdaptiveSampling) + { + int keyPixelSpan = qAbs(keyAxis->coordToPixel(lower.key())-keyAxis->coordToPixel(upper.key())); + maxCount = 2*keyPixelSpan+2; + } + int dataCount = countDataInBounds(lower, upper, maxCount); + + if (mAdaptiveSampling && dataCount >= maxCount) // use adaptive sampling only if there are at least two points per pixel on average + { + if (lineData) + { + QCPDataMap::const_iterator it = lower; + QCPDataMap::const_iterator upperEnd = upper+1; + double minValue = it.value().value; + double maxValue = it.value().value; + QCPDataMap::const_iterator currentIntervalFirstPoint = it; + int reversedFactor = keyAxis->rangeReversed() != (keyAxis->orientation()==Qt::Vertical) ? -1 : 1; // is used to calculate keyEpsilon pixel into the correct direction + int reversedRound = keyAxis->rangeReversed() != (keyAxis->orientation()==Qt::Vertical) ? 1 : 0; // is used to switch between floor (normal) and ceil (reversed) rounding of currentIntervalStartKey + double currentIntervalStartKey = keyAxis->pixelToCoord((int)(keyAxis->coordToPixel(lower.key())+reversedRound)); + double lastIntervalEndKey = currentIntervalStartKey; + double keyEpsilon = qAbs(currentIntervalStartKey-keyAxis->pixelToCoord(keyAxis->coordToPixel(currentIntervalStartKey)+1.0*reversedFactor)); // interval of one pixel on screen when mapped to plot key coordinates + bool keyEpsilonVariable = keyAxis->scaleType() == QCPAxis::stLogarithmic; // indicates whether keyEpsilon needs to be updated after every interval (for log axes) + int intervalDataCount = 1; + ++it; // advance iterator to second data point because adaptive sampling works in 1 point retrospect + while (it != upperEnd) + { + if (it.key() < currentIntervalStartKey+keyEpsilon) // data point is still within same pixel, so skip it and expand value span of this cluster if necessary + { + if (it.value().value < minValue) + minValue = it.value().value; + else if (it.value().value > maxValue) + maxValue = it.value().value; + ++intervalDataCount; + } else // new pixel interval started + { + if (intervalDataCount >= 2) // last pixel had multiple data points, consolidate them to a cluster + { + if (lastIntervalEndKey < currentIntervalStartKey-keyEpsilon) // last point is further away, so first point of this cluster must be at a real data point + lineData->append(QCPData(currentIntervalStartKey+keyEpsilon*0.2, currentIntervalFirstPoint.value().value)); + lineData->append(QCPData(currentIntervalStartKey+keyEpsilon*0.25, minValue)); + lineData->append(QCPData(currentIntervalStartKey+keyEpsilon*0.75, maxValue)); + if (it.key() > currentIntervalStartKey+keyEpsilon*2) // new pixel started further away from previous cluster, so make sure the last point of the cluster is at a real data point + lineData->append(QCPData(currentIntervalStartKey+keyEpsilon*0.8, (it-1).value().value)); + } else + lineData->append(QCPData(currentIntervalFirstPoint.key(), currentIntervalFirstPoint.value().value)); + lastIntervalEndKey = (it-1).value().key; + minValue = it.value().value; + maxValue = it.value().value; + currentIntervalFirstPoint = it; + currentIntervalStartKey = keyAxis->pixelToCoord((int)(keyAxis->coordToPixel(it.key())+reversedRound)); + if (keyEpsilonVariable) + keyEpsilon = qAbs(currentIntervalStartKey-keyAxis->pixelToCoord(keyAxis->coordToPixel(currentIntervalStartKey)+1.0*reversedFactor)); + intervalDataCount = 1; + } + ++it; + } + // handle last interval: + if (intervalDataCount >= 2) // last pixel had multiple data points, consolidate them to a cluster + { + if (lastIntervalEndKey < currentIntervalStartKey-keyEpsilon) // last point wasn't a cluster, so first point of this cluster must be at a real data point + lineData->append(QCPData(currentIntervalStartKey+keyEpsilon*0.2, currentIntervalFirstPoint.value().value)); + lineData->append(QCPData(currentIntervalStartKey+keyEpsilon*0.25, minValue)); + lineData->append(QCPData(currentIntervalStartKey+keyEpsilon*0.75, maxValue)); + } else + lineData->append(QCPData(currentIntervalFirstPoint.key(), currentIntervalFirstPoint.value().value)); + } + + if (scatterData) + { + double valueMaxRange = valueAxis->range().upper; + double valueMinRange = valueAxis->range().lower; + QCPDataMap::const_iterator it = lower; + QCPDataMap::const_iterator upperEnd = upper+1; + double minValue = it.value().value; + double maxValue = it.value().value; + QCPDataMap::const_iterator minValueIt = it; + QCPDataMap::const_iterator maxValueIt = it; + QCPDataMap::const_iterator currentIntervalStart = it; + int reversedFactor = keyAxis->rangeReversed() ? -1 : 1; // is used to calculate keyEpsilon pixel into the correct direction + int reversedRound = keyAxis->rangeReversed() ? 1 : 0; // is used to switch between floor (normal) and ceil (reversed) rounding of currentIntervalStartKey + double currentIntervalStartKey = keyAxis->pixelToCoord((int)(keyAxis->coordToPixel(lower.key())+reversedRound)); + double keyEpsilon = qAbs(currentIntervalStartKey-keyAxis->pixelToCoord(keyAxis->coordToPixel(currentIntervalStartKey)+1.0*reversedFactor)); // interval of one pixel on screen when mapped to plot key coordinates + bool keyEpsilonVariable = keyAxis->scaleType() == QCPAxis::stLogarithmic; // indicates whether keyEpsilon needs to be updated after every interval (for log axes) + int intervalDataCount = 1; + ++it; // advance iterator to second data point because adaptive sampling works in 1 point retrospect + while (it != upperEnd) + { + if (it.key() < currentIntervalStartKey+keyEpsilon) // data point is still within same pixel, so skip it and expand value span of this pixel if necessary + { + if (it.value().value < minValue && it.value().value > valueMinRange && it.value().value < valueMaxRange) + { + minValue = it.value().value; + minValueIt = it; + } else if (it.value().value > maxValue && it.value().value > valueMinRange && it.value().value < valueMaxRange) + { + maxValue = it.value().value; + maxValueIt = it; + } + ++intervalDataCount; + } else // new pixel started + { + if (intervalDataCount >= 2) // last pixel had multiple data points, consolidate them + { + // determine value pixel span and add as many points in interval to maintain certain vertical data density (this is specific to scatter plot): + double valuePixelSpan = qAbs(valueAxis->coordToPixel(minValue)-valueAxis->coordToPixel(maxValue)); + int dataModulo = qMax(1, qRound(intervalDataCount/(valuePixelSpan/4.0))); // approximately every 4 value pixels one data point on average + QCPDataMap::const_iterator intervalIt = currentIntervalStart; + int c = 0; + while (intervalIt != it) + { + if ((c % dataModulo == 0 || intervalIt == minValueIt || intervalIt == maxValueIt) && intervalIt.value().value > valueMinRange && intervalIt.value().value < valueMaxRange) + scatterData->append(intervalIt.value()); + ++c; + ++intervalIt; + } + } else if (currentIntervalStart.value().value > valueMinRange && currentIntervalStart.value().value < valueMaxRange) + scatterData->append(currentIntervalStart.value()); + minValue = it.value().value; + maxValue = it.value().value; + currentIntervalStart = it; + currentIntervalStartKey = keyAxis->pixelToCoord((int)(keyAxis->coordToPixel(it.key())+reversedRound)); + if (keyEpsilonVariable) + keyEpsilon = qAbs(currentIntervalStartKey-keyAxis->pixelToCoord(keyAxis->coordToPixel(currentIntervalStartKey)+1.0*reversedFactor)); + intervalDataCount = 1; + } + ++it; + } + // handle last interval: + if (intervalDataCount >= 2) // last pixel had multiple data points, consolidate them + { + // determine value pixel span and add as many points in interval to maintain certain vertical data density (this is specific to scatter plot): + double valuePixelSpan = qAbs(valueAxis->coordToPixel(minValue)-valueAxis->coordToPixel(maxValue)); + int dataModulo = qMax(1, qRound(intervalDataCount/(valuePixelSpan/4.0))); // approximately every 4 value pixels one data point on average + QCPDataMap::const_iterator intervalIt = currentIntervalStart; + int c = 0; + while (intervalIt != it) + { + if ((c % dataModulo == 0 || intervalIt == minValueIt || intervalIt == maxValueIt) && intervalIt.value().value > valueMinRange && intervalIt.value().value < valueMaxRange) + scatterData->append(intervalIt.value()); + ++c; + ++intervalIt; + } + } else if (currentIntervalStart.value().value > valueMinRange && currentIntervalStart.value().value < valueMaxRange) + scatterData->append(currentIntervalStart.value()); + } + } else // don't use adaptive sampling algorithm, transfer points one-to-one from the map into the output parameters + { + QVector *dataVector = 0; + if (lineData) + dataVector = lineData; + else if (scatterData) + dataVector = scatterData; + if (dataVector) + { + QCPDataMap::const_iterator it = lower; + QCPDataMap::const_iterator upperEnd = upper+1; + dataVector->reserve(dataCount+2); // +2 for possible fill end points + while (it != upperEnd) + { + dataVector->append(it.value()); + ++it; + } + } + if (lineData && scatterData) + *scatterData = *dataVector; + } +} + +/*! \internal + + called by the scatter drawing function (\ref drawScatterPlot) to draw the error bars on one data + point. \a x and \a y pixel positions of the data point are passed since they are already known in + pixel coordinates in the drawing function, so we save some extra coordToPixel transforms here. \a + data is therefore only used for the errors, not key and value. +*/ +void QCPGraph::drawError(QCPPainter *painter, double x, double y, const QCPData &data) const +{ + if (qIsNaN(data.value)) + return; + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + + double a, b; // positions of error bar bounds in pixels + double barWidthHalf = mErrorBarSize*0.5; + double skipSymbolMargin = mScatterStyle.size(); // pixels left blank per side, when mErrorBarSkipSymbol is true + + if (keyAxis->orientation() == Qt::Vertical) + { + // draw key error vertically and value error horizontally + if (mErrorType == etKey || mErrorType == etBoth) + { + a = keyAxis->coordToPixel(data.key-data.keyErrorMinus); + b = keyAxis->coordToPixel(data.key+data.keyErrorPlus); + if (keyAxis->rangeReversed()) + qSwap(a,b); + // draw spine: + if (mErrorBarSkipSymbol) + { + if (a-y > skipSymbolMargin) // don't draw spine if error is so small it's within skipSymbolmargin + painter->drawLine(QLineF(x, a, x, y+skipSymbolMargin)); + if (y-b > skipSymbolMargin) + painter->drawLine(QLineF(x, y-skipSymbolMargin, x, b)); + } else + painter->drawLine(QLineF(x, a, x, b)); + // draw handles: + painter->drawLine(QLineF(x-barWidthHalf, a, x+barWidthHalf, a)); + painter->drawLine(QLineF(x-barWidthHalf, b, x+barWidthHalf, b)); + } + if (mErrorType == etValue || mErrorType == etBoth) + { + a = valueAxis->coordToPixel(data.value-data.valueErrorMinus); + b = valueAxis->coordToPixel(data.value+data.valueErrorPlus); + if (valueAxis->rangeReversed()) + qSwap(a,b); + // draw spine: + if (mErrorBarSkipSymbol) + { + if (x-a > skipSymbolMargin) // don't draw spine if error is so small it's within skipSymbolmargin + painter->drawLine(QLineF(a, y, x-skipSymbolMargin, y)); + if (b-x > skipSymbolMargin) + painter->drawLine(QLineF(x+skipSymbolMargin, y, b, y)); + } else + painter->drawLine(QLineF(a, y, b, y)); + // draw handles: + painter->drawLine(QLineF(a, y-barWidthHalf, a, y+barWidthHalf)); + painter->drawLine(QLineF(b, y-barWidthHalf, b, y+barWidthHalf)); + } + } else // mKeyAxis->orientation() is Qt::Horizontal + { + // draw value error vertically and key error horizontally + if (mErrorType == etKey || mErrorType == etBoth) + { + a = keyAxis->coordToPixel(data.key-data.keyErrorMinus); + b = keyAxis->coordToPixel(data.key+data.keyErrorPlus); + if (keyAxis->rangeReversed()) + qSwap(a,b); + // draw spine: + if (mErrorBarSkipSymbol) + { + if (x-a > skipSymbolMargin) // don't draw spine if error is so small it's within skipSymbolmargin + painter->drawLine(QLineF(a, y, x-skipSymbolMargin, y)); + if (b-x > skipSymbolMargin) + painter->drawLine(QLineF(x+skipSymbolMargin, y, b, y)); + } else + painter->drawLine(QLineF(a, y, b, y)); + // draw handles: + painter->drawLine(QLineF(a, y-barWidthHalf, a, y+barWidthHalf)); + painter->drawLine(QLineF(b, y-barWidthHalf, b, y+barWidthHalf)); + } + if (mErrorType == etValue || mErrorType == etBoth) + { + a = valueAxis->coordToPixel(data.value-data.valueErrorMinus); + b = valueAxis->coordToPixel(data.value+data.valueErrorPlus); + if (valueAxis->rangeReversed()) + qSwap(a,b); + // draw spine: + if (mErrorBarSkipSymbol) + { + if (a-y > skipSymbolMargin) // don't draw spine if error is so small it's within skipSymbolmargin + painter->drawLine(QLineF(x, a, x, y+skipSymbolMargin)); + if (y-b > skipSymbolMargin) + painter->drawLine(QLineF(x, y-skipSymbolMargin, x, b)); + } else + painter->drawLine(QLineF(x, a, x, b)); + // draw handles: + painter->drawLine(QLineF(x-barWidthHalf, a, x+barWidthHalf, a)); + painter->drawLine(QLineF(x-barWidthHalf, b, x+barWidthHalf, b)); + } + } +} + +/*! \internal + + called by \ref getPreparedData to determine which data (key) range is visible at the current key + axis range setting, so only that needs to be processed. + + \a lower returns an iterator to the lowest data point that needs to be taken into account when + plotting. Note that in order to get a clean plot all the way to the edge of the axis rect, \a + lower may still be just outside the visible range. + + \a upper returns an iterator to the highest data point. Same as before, \a upper may also lie + just outside of the visible range. + + if the graph contains no data, both \a lower and \a upper point to constEnd. +*/ +void QCPGraph::getVisibleDataBounds(QCPDataMap::const_iterator &lower, QCPDataMap::const_iterator &upper) const +{ + if (!mKeyAxis) { qDebug() << Q_FUNC_INFO << "invalid key axis"; return; } + if (mData->isEmpty()) + { + lower = mData->constEnd(); + upper = mData->constEnd(); + return; + } + + // get visible data range as QMap iterators + QCPDataMap::const_iterator lbound = mData->lowerBound(mKeyAxis.data()->range().lower); + QCPDataMap::const_iterator ubound = mData->upperBound(mKeyAxis.data()->range().upper); + bool lowoutlier = lbound != mData->constBegin(); // indicates whether there exist points below axis range + bool highoutlier = ubound != mData->constEnd(); // indicates whether there exist points above axis range + + lower = (lowoutlier ? lbound-1 : lbound); // data point range that will be actually drawn + upper = (highoutlier ? ubound : ubound-1); // data point range that will be actually drawn +} + +/*! \internal + + Counts the number of data points between \a lower and \a upper (including them), up to a maximum + of \a maxCount. + + This function is used by \ref getPreparedData to determine whether adaptive sampling shall be + used (if enabled via \ref setAdaptiveSampling) or not. This is also why counting of data points + only needs to be done until \a maxCount is reached, which should be set to the number of data + points at which adaptive sampling sets in. +*/ +int QCPGraph::countDataInBounds(const QCPDataMap::const_iterator &lower, const QCPDataMap::const_iterator &upper, int maxCount) const +{ + if (upper == mData->constEnd() && lower == mData->constEnd()) + return 0; + QCPDataMap::const_iterator it = lower; + int count = 1; + while (it != upper && count < maxCount) + { + ++it; + ++count; + } + return count; +} + +/*! \internal + + The line data vector generated by e.g. getLinePlotData contains only the line that connects the + data points. If the graph needs to be filled, two additional points need to be added at the + value-zero-line in the lower and upper key positions of the graph. This function calculates these + points and adds them to the end of \a lineData. Since the fill is typically drawn before the line + stroke, these added points need to be removed again after the fill is done, with the + removeFillBasePoints function. + + The expanding of \a lineData by two points will not cause unnecessary memory reallocations, + because the data vector generation functions (getLinePlotData etc.) reserve two extra points when + they allocate memory for \a lineData. + + \see removeFillBasePoints, lowerFillBasePoint, upperFillBasePoint +*/ +void QCPGraph::addFillBasePoints(QVector *lineData) const +{ + if (!mKeyAxis) { qDebug() << Q_FUNC_INFO << "invalid key axis"; return; } + + // append points that close the polygon fill at the key axis: + if (mKeyAxis.data()->orientation() == Qt::Vertical) + { + *lineData << upperFillBasePoint(lineData->last().y()); + *lineData << lowerFillBasePoint(lineData->first().y()); + } else + { + *lineData << upperFillBasePoint(lineData->last().x()); + *lineData << lowerFillBasePoint(lineData->first().x()); + } +} + +/*! \internal + + removes the two points from \a lineData that were added by \ref addFillBasePoints. + + \see addFillBasePoints, lowerFillBasePoint, upperFillBasePoint +*/ +void QCPGraph::removeFillBasePoints(QVector *lineData) const +{ + lineData->remove(lineData->size()-2, 2); +} + +/*! \internal + + called by \ref addFillBasePoints to conveniently assign the point which closes the fill polygon + on the lower side of the zero-value-line parallel to the key axis. The logarithmic axis scale + case is a bit special, since the zero-value-line in pixel coordinates is in positive or negative + infinity. So this case is handled separately by just closing the fill polygon on the axis which + lies in the direction towards the zero value. + + \a lowerKey will be the the key (in pixels) of the returned point. Depending on whether the key + axis is horizontal or vertical, \a lowerKey will end up as the x or y value of the returned + point, respectively. + + \see upperFillBasePoint, addFillBasePoints +*/ +QPointF QCPGraph::lowerFillBasePoint(double lowerKey) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return QPointF(); } + + QPointF point; + if (valueAxis->scaleType() == QCPAxis::stLinear) + { + if (keyAxis->axisType() == QCPAxis::atLeft) + { + point.setX(valueAxis->coordToPixel(0)); + point.setY(lowerKey); + } else if (keyAxis->axisType() == QCPAxis::atRight) + { + point.setX(valueAxis->coordToPixel(0)); + point.setY(lowerKey); + } else if (keyAxis->axisType() == QCPAxis::atTop) + { + point.setX(lowerKey); + point.setY(valueAxis->coordToPixel(0)); + } else if (keyAxis->axisType() == QCPAxis::atBottom) + { + point.setX(lowerKey); + point.setY(valueAxis->coordToPixel(0)); + } + } else // valueAxis->mScaleType == QCPAxis::stLogarithmic + { + // In logarithmic scaling we can't just draw to value zero so we just fill all the way + // to the axis which is in the direction towards zero + if (keyAxis->orientation() == Qt::Vertical) + { + if ((valueAxis->range().upper < 0 && !valueAxis->rangeReversed()) || + (valueAxis->range().upper > 0 && valueAxis->rangeReversed())) // if range is negative, zero is on opposite side of key axis + point.setX(keyAxis->axisRect()->right()); + else + point.setX(keyAxis->axisRect()->left()); + point.setY(lowerKey); + } else if (keyAxis->axisType() == QCPAxis::atTop || keyAxis->axisType() == QCPAxis::atBottom) + { + point.setX(lowerKey); + if ((valueAxis->range().upper < 0 && !valueAxis->rangeReversed()) || + (valueAxis->range().upper > 0 && valueAxis->rangeReversed())) // if range is negative, zero is on opposite side of key axis + point.setY(keyAxis->axisRect()->top()); + else + point.setY(keyAxis->axisRect()->bottom()); + } + } + return point; +} + +/*! \internal + + called by \ref addFillBasePoints to conveniently assign the point which closes the fill + polygon on the upper side of the zero-value-line parallel to the key axis. The logarithmic axis + scale case is a bit special, since the zero-value-line in pixel coordinates is in positive or + negative infinity. So this case is handled separately by just closing the fill polygon on the + axis which lies in the direction towards the zero value. + + \a upperKey will be the the key (in pixels) of the returned point. Depending on whether the key + axis is horizontal or vertical, \a upperKey will end up as the x or y value of the returned + point, respectively. + + \see lowerFillBasePoint, addFillBasePoints +*/ +QPointF QCPGraph::upperFillBasePoint(double upperKey) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return QPointF(); } + + QPointF point; + if (valueAxis->scaleType() == QCPAxis::stLinear) + { + if (keyAxis->axisType() == QCPAxis::atLeft) + { + point.setX(valueAxis->coordToPixel(0)); + point.setY(upperKey); + } else if (keyAxis->axisType() == QCPAxis::atRight) + { + point.setX(valueAxis->coordToPixel(0)); + point.setY(upperKey); + } else if (keyAxis->axisType() == QCPAxis::atTop) + { + point.setX(upperKey); + point.setY(valueAxis->coordToPixel(0)); + } else if (keyAxis->axisType() == QCPAxis::atBottom) + { + point.setX(upperKey); + point.setY(valueAxis->coordToPixel(0)); + } + } else // valueAxis->mScaleType == QCPAxis::stLogarithmic + { + // In logarithmic scaling we can't just draw to value 0 so we just fill all the way + // to the axis which is in the direction towards 0 + if (keyAxis->orientation() == Qt::Vertical) + { + if ((valueAxis->range().upper < 0 && !valueAxis->rangeReversed()) || + (valueAxis->range().upper > 0 && valueAxis->rangeReversed())) // if range is negative, zero is on opposite side of key axis + point.setX(keyAxis->axisRect()->right()); + else + point.setX(keyAxis->axisRect()->left()); + point.setY(upperKey); + } else if (keyAxis->axisType() == QCPAxis::atTop || keyAxis->axisType() == QCPAxis::atBottom) + { + point.setX(upperKey); + if ((valueAxis->range().upper < 0 && !valueAxis->rangeReversed()) || + (valueAxis->range().upper > 0 && valueAxis->rangeReversed())) // if range is negative, zero is on opposite side of key axis + point.setY(keyAxis->axisRect()->top()); + else + point.setY(keyAxis->axisRect()->bottom()); + } + } + return point; +} + +/*! \internal + + Generates the polygon needed for drawing channel fills between this graph (data passed via \a + lineData) and the graph specified by mChannelFillGraph (data generated by calling its \ref + getPlotData function). May return an empty polygon if the key ranges have no overlap or fill + target graph and this graph don't have same orientation (i.e. both key axes horizontal or both + key axes vertical). For increased performance (due to implicit sharing), keep the returned + QPolygonF const. +*/ +const QPolygonF QCPGraph::getChannelFillPolygon(const QVector *lineData) const +{ + if (!mChannelFillGraph) + return QPolygonF(); + + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return QPolygonF(); } + if (!mChannelFillGraph.data()->mKeyAxis) { qDebug() << Q_FUNC_INFO << "channel fill target key axis invalid"; return QPolygonF(); } + + if (mChannelFillGraph.data()->mKeyAxis.data()->orientation() != keyAxis->orientation()) + return QPolygonF(); // don't have same axis orientation, can't fill that (Note: if keyAxis fits, valueAxis will fit too, because it's always orthogonal to keyAxis) + + if (lineData->isEmpty()) return QPolygonF(); + QVector otherData; + mChannelFillGraph.data()->getPlotData(&otherData, 0); + if (otherData.isEmpty()) return QPolygonF(); + QVector thisData; + thisData.reserve(lineData->size()+otherData.size()); // because we will join both vectors at end of this function + for (int i=0; isize(); ++i) // don't use the vector<<(vector), it squeezes internally, which ruins the performance tuning with reserve() + thisData << lineData->at(i); + + // pointers to be able to swap them, depending which data range needs cropping: + QVector *staticData = &thisData; + QVector *croppedData = &otherData; + + // crop both vectors to ranges in which the keys overlap (which coord is key, depends on axisType): + if (keyAxis->orientation() == Qt::Horizontal) + { + // x is key + // if an axis range is reversed, the data point keys will be descending. Reverse them, since following algorithm assumes ascending keys: + if (staticData->first().x() > staticData->last().x()) + { + int size = staticData->size(); + for (int i=0; ifirst().x() > croppedData->last().x()) + { + int size = croppedData->size(); + for (int i=0; ifirst().x() < croppedData->first().x()) // other one must be cropped + qSwap(staticData, croppedData); + int lowBound = findIndexBelowX(croppedData, staticData->first().x()); + if (lowBound == -1) return QPolygonF(); // key ranges have no overlap + croppedData->remove(0, lowBound); + // set lowest point of cropped data to fit exactly key position of first static data + // point via linear interpolation: + if (croppedData->size() < 2) return QPolygonF(); // need at least two points for interpolation + double slope; + if (croppedData->at(1).x()-croppedData->at(0).x() != 0) + slope = (croppedData->at(1).y()-croppedData->at(0).y())/(croppedData->at(1).x()-croppedData->at(0).x()); + else + slope = 0; + (*croppedData)[0].setY(croppedData->at(0).y()+slope*(staticData->first().x()-croppedData->at(0).x())); + (*croppedData)[0].setX(staticData->first().x()); + + // crop upper bound: + if (staticData->last().x() > croppedData->last().x()) // other one must be cropped + qSwap(staticData, croppedData); + int highBound = findIndexAboveX(croppedData, staticData->last().x()); + if (highBound == -1) return QPolygonF(); // key ranges have no overlap + croppedData->remove(highBound+1, croppedData->size()-(highBound+1)); + // set highest point of cropped data to fit exactly key position of last static data + // point via linear interpolation: + if (croppedData->size() < 2) return QPolygonF(); // need at least two points for interpolation + int li = croppedData->size()-1; // last index + if (croppedData->at(li).x()-croppedData->at(li-1).x() != 0) + slope = (croppedData->at(li).y()-croppedData->at(li-1).y())/(croppedData->at(li).x()-croppedData->at(li-1).x()); + else + slope = 0; + (*croppedData)[li].setY(croppedData->at(li-1).y()+slope*(staticData->last().x()-croppedData->at(li-1).x())); + (*croppedData)[li].setX(staticData->last().x()); + } else // mKeyAxis->orientation() == Qt::Vertical + { + // y is key + // similar to "x is key" but switched x,y. Further, lower/upper meaning is inverted compared to x, + // because in pixel coordinates, y increases from top to bottom, not bottom to top like data coordinate. + // if an axis range is reversed, the data point keys will be descending. Reverse them, since following algorithm assumes ascending keys: + if (staticData->first().y() < staticData->last().y()) + { + int size = staticData->size(); + for (int i=0; ifirst().y() < croppedData->last().y()) + { + int size = croppedData->size(); + for (int i=0; ifirst().y() > croppedData->first().y()) // other one must be cropped + qSwap(staticData, croppedData); + int lowBound = findIndexAboveY(croppedData, staticData->first().y()); + if (lowBound == -1) return QPolygonF(); // key ranges have no overlap + croppedData->remove(0, lowBound); + // set lowest point of cropped data to fit exactly key position of first static data + // point via linear interpolation: + if (croppedData->size() < 2) return QPolygonF(); // need at least two points for interpolation + double slope; + if (croppedData->at(1).y()-croppedData->at(0).y() != 0) // avoid division by zero in step plots + slope = (croppedData->at(1).x()-croppedData->at(0).x())/(croppedData->at(1).y()-croppedData->at(0).y()); + else + slope = 0; + (*croppedData)[0].setX(croppedData->at(0).x()+slope*(staticData->first().y()-croppedData->at(0).y())); + (*croppedData)[0].setY(staticData->first().y()); + + // crop upper bound: + if (staticData->last().y() < croppedData->last().y()) // other one must be cropped + qSwap(staticData, croppedData); + int highBound = findIndexBelowY(croppedData, staticData->last().y()); + if (highBound == -1) return QPolygonF(); // key ranges have no overlap + croppedData->remove(highBound+1, croppedData->size()-(highBound+1)); + // set highest point of cropped data to fit exactly key position of last static data + // point via linear interpolation: + if (croppedData->size() < 2) return QPolygonF(); // need at least two points for interpolation + int li = croppedData->size()-1; // last index + if (croppedData->at(li).y()-croppedData->at(li-1).y() != 0) // avoid division by zero in step plots + slope = (croppedData->at(li).x()-croppedData->at(li-1).x())/(croppedData->at(li).y()-croppedData->at(li-1).y()); + else + slope = 0; + (*croppedData)[li].setX(croppedData->at(li-1).x()+slope*(staticData->last().y()-croppedData->at(li-1).y())); + (*croppedData)[li].setY(staticData->last().y()); + } + + // return joined: + for (int i=otherData.size()-1; i>=0; --i) // insert reversed, otherwise the polygon will be twisted + thisData << otherData.at(i); + return QPolygonF(thisData); +} + +/*! \internal + + Finds the smallest index of \a data, whose points x value is just above \a x. Assumes x values in + \a data points are ordered ascending, as is the case when plotting with horizontal key axis. + + Used to calculate the channel fill polygon, see \ref getChannelFillPolygon. +*/ +int QCPGraph::findIndexAboveX(const QVector *data, double x) const +{ + for (int i=data->size()-1; i>=0; --i) + { + if (data->at(i).x() < x) + { + if (isize()-1) + return i+1; + else + return data->size()-1; + } + } + return -1; +} + +/*! \internal + + Finds the highest index of \a data, whose points x value is just below \a x. Assumes x values in + \a data points are ordered ascending, as is the case when plotting with horizontal key axis. + + Used to calculate the channel fill polygon, see \ref getChannelFillPolygon. +*/ +int QCPGraph::findIndexBelowX(const QVector *data, double x) const +{ + for (int i=0; isize(); ++i) + { + if (data->at(i).x() > x) + { + if (i>0) + return i-1; + else + return 0; + } + } + return -1; +} + +/*! \internal + + Finds the smallest index of \a data, whose points y value is just above \a y. Assumes y values in + \a data points are ordered descending, as is the case when plotting with vertical key axis. + + Used to calculate the channel fill polygon, see \ref getChannelFillPolygon. +*/ +int QCPGraph::findIndexAboveY(const QVector *data, double y) const +{ + for (int i=0; isize(); ++i) + { + if (data->at(i).y() < y) + { + if (i>0) + return i-1; + else + return 0; + } + } + return -1; +} + +/*! \internal + + Calculates the (minimum) distance (in pixels) the graph's representation has from the given \a + pixelPoint in pixels. This is used to determine whether the graph was clicked or not, e.g. in + \ref selectTest. + + If either the graph has no data or if the line style is \ref lsNone and the scatter style's shape + is \ref QCPScatterStyle::ssNone (i.e. there is no visual representation of the graph), returns -1.0. +*/ +double QCPGraph::pointDistance(const QPointF &pixelPoint) const +{ + if (mData->isEmpty()) + return -1.0; + if (mLineStyle == lsNone && mScatterStyle.isNone()) + return -1.0; + + // calculate minimum distances to graph representation: + if (mLineStyle == lsNone) + { + // no line displayed, only calculate distance to scatter points: + QVector scatterData; + getScatterPlotData(&scatterData); + if (scatterData.size() > 0) + { + double minDistSqr = std::numeric_limits::max(); + for (int i=0; i lineData; + getPlotData(&lineData, 0); // unlike with getScatterPlotData we get pixel coordinates here + if (lineData.size() > 1) // at least one line segment, compare distance to line segments + { + double minDistSqr = std::numeric_limits::max(); + if (mLineStyle == lsImpulse) + { + // impulse plot differs from other line styles in that the lineData points are only pairwise connected: + for (int i=0; i 0) // only single data point, calculate distance to that point + { + return QVector2D(lineData.at(0)-pixelPoint).length(); + } else // no data available in view to calculate distance to + return -1.0; + } +} + +/*! \internal + + Finds the highest index of \a data, whose points y value is just below \a y. Assumes y values in + \a data points are ordered descending, as is the case when plotting with vertical key axis (since + keys are ordered ascending). + + Used to calculate the channel fill polygon, see \ref getChannelFillPolygon. +*/ +int QCPGraph::findIndexBelowY(const QVector *data, double y) const +{ + for (int i=data->size()-1; i>=0; --i) + { + if (data->at(i).y() > y) + { + if (isize()-1) + return i+1; + else + return data->size()-1; + } + } + return -1; +} + +/* inherits documentation from base class */ +QCPRange QCPGraph::getKeyRange(bool &foundRange, SignDomain inSignDomain) const +{ + // just call the specialized version which takes an additional argument whether error bars + // should also be taken into consideration for range calculation. We set this to true here. + return getKeyRange(foundRange, inSignDomain, true); +} + +/* inherits documentation from base class */ +QCPRange QCPGraph::getValueRange(bool &foundRange, SignDomain inSignDomain) const +{ + // just call the specialized version which takes an additional argument whether error bars + // should also be taken into consideration for range calculation. We set this to true here. + return getValueRange(foundRange, inSignDomain, true); +} + +/*! \overload + + Allows to specify whether the error bars should be included in the range calculation. + + \see getKeyRange(bool &foundRange, SignDomain inSignDomain) +*/ +QCPRange QCPGraph::getKeyRange(bool &foundRange, SignDomain inSignDomain, bool includeErrors) const +{ + QCPRange range; + bool haveLower = false; + bool haveUpper = false; + + double current, currentErrorMinus, currentErrorPlus; + + if (inSignDomain == sdBoth) // range may be anywhere + { + QCPDataMap::const_iterator it = mData->constBegin(); + while (it != mData->constEnd()) + { + if (!qIsNaN(it.value().value)) + { + current = it.value().key; + currentErrorMinus = (includeErrors ? it.value().keyErrorMinus : 0); + currentErrorPlus = (includeErrors ? it.value().keyErrorPlus : 0); + if (current-currentErrorMinus < range.lower || !haveLower) + { + range.lower = current-currentErrorMinus; + haveLower = true; + } + if (current+currentErrorPlus > range.upper || !haveUpper) + { + range.upper = current+currentErrorPlus; + haveUpper = true; + } + } + ++it; + } + } else if (inSignDomain == sdNegative) // range may only be in the negative sign domain + { + QCPDataMap::const_iterator it = mData->constBegin(); + while (it != mData->constEnd()) + { + if (!qIsNaN(it.value().value)) + { + current = it.value().key; + currentErrorMinus = (includeErrors ? it.value().keyErrorMinus : 0); + currentErrorPlus = (includeErrors ? it.value().keyErrorPlus : 0); + if ((current-currentErrorMinus < range.lower || !haveLower) && current-currentErrorMinus < 0) + { + range.lower = current-currentErrorMinus; + haveLower = true; + } + if ((current+currentErrorPlus > range.upper || !haveUpper) && current+currentErrorPlus < 0) + { + range.upper = current+currentErrorPlus; + haveUpper = true; + } + if (includeErrors) // in case point is in valid sign domain but errobars stretch beyond it, we still want to geht that point. + { + if ((current < range.lower || !haveLower) && current < 0) + { + range.lower = current; + haveLower = true; + } + if ((current > range.upper || !haveUpper) && current < 0) + { + range.upper = current; + haveUpper = true; + } + } + } + ++it; + } + } else if (inSignDomain == sdPositive) // range may only be in the positive sign domain + { + QCPDataMap::const_iterator it = mData->constBegin(); + while (it != mData->constEnd()) + { + if (!qIsNaN(it.value().value)) + { + current = it.value().key; + currentErrorMinus = (includeErrors ? it.value().keyErrorMinus : 0); + currentErrorPlus = (includeErrors ? it.value().keyErrorPlus : 0); + if ((current-currentErrorMinus < range.lower || !haveLower) && current-currentErrorMinus > 0) + { + range.lower = current-currentErrorMinus; + haveLower = true; + } + if ((current+currentErrorPlus > range.upper || !haveUpper) && current+currentErrorPlus > 0) + { + range.upper = current+currentErrorPlus; + haveUpper = true; + } + if (includeErrors) // in case point is in valid sign domain but errobars stretch beyond it, we still want to get that point. + { + if ((current < range.lower || !haveLower) && current > 0) + { + range.lower = current; + haveLower = true; + } + if ((current > range.upper || !haveUpper) && current > 0) + { + range.upper = current; + haveUpper = true; + } + } + } + ++it; + } + } + + foundRange = haveLower && haveUpper; + return range; +} + +/*! \overload + + Allows to specify whether the error bars should be included in the range calculation. + + \see getValueRange(bool &foundRange, SignDomain inSignDomain) +*/ +QCPRange QCPGraph::getValueRange(bool &foundRange, SignDomain inSignDomain, bool includeErrors) const +{ + QCPRange range; + bool haveLower = false; + bool haveUpper = false; + + double current, currentErrorMinus, currentErrorPlus; + + if (inSignDomain == sdBoth) // range may be anywhere + { + QCPDataMap::const_iterator it = mData->constBegin(); + while (it != mData->constEnd()) + { + current = it.value().value; + if (!qIsNaN(current)) + { + currentErrorMinus = (includeErrors ? it.value().valueErrorMinus : 0); + currentErrorPlus = (includeErrors ? it.value().valueErrorPlus : 0); + if (current-currentErrorMinus < range.lower || !haveLower) + { + range.lower = current-currentErrorMinus; + haveLower = true; + } + if (current+currentErrorPlus > range.upper || !haveUpper) + { + range.upper = current+currentErrorPlus; + haveUpper = true; + } + } + ++it; + } + } else if (inSignDomain == sdNegative) // range may only be in the negative sign domain + { + QCPDataMap::const_iterator it = mData->constBegin(); + while (it != mData->constEnd()) + { + current = it.value().value; + if (!qIsNaN(current)) + { + currentErrorMinus = (includeErrors ? it.value().valueErrorMinus : 0); + currentErrorPlus = (includeErrors ? it.value().valueErrorPlus : 0); + if ((current-currentErrorMinus < range.lower || !haveLower) && current-currentErrorMinus < 0) + { + range.lower = current-currentErrorMinus; + haveLower = true; + } + if ((current+currentErrorPlus > range.upper || !haveUpper) && current+currentErrorPlus < 0) + { + range.upper = current+currentErrorPlus; + haveUpper = true; + } + if (includeErrors) // in case point is in valid sign domain but errobars stretch beyond it, we still want to get that point. + { + if ((current < range.lower || !haveLower) && current < 0) + { + range.lower = current; + haveLower = true; + } + if ((current > range.upper || !haveUpper) && current < 0) + { + range.upper = current; + haveUpper = true; + } + } + } + ++it; + } + } else if (inSignDomain == sdPositive) // range may only be in the positive sign domain + { + QCPDataMap::const_iterator it = mData->constBegin(); + while (it != mData->constEnd()) + { + current = it.value().value; + if (!qIsNaN(current)) + { + currentErrorMinus = (includeErrors ? it.value().valueErrorMinus : 0); + currentErrorPlus = (includeErrors ? it.value().valueErrorPlus : 0); + if ((current-currentErrorMinus < range.lower || !haveLower) && current-currentErrorMinus > 0) + { + range.lower = current-currentErrorMinus; + haveLower = true; + } + if ((current+currentErrorPlus > range.upper || !haveUpper) && current+currentErrorPlus > 0) + { + range.upper = current+currentErrorPlus; + haveUpper = true; + } + if (includeErrors) // in case point is in valid sign domain but errobars stretch beyond it, we still want to geht that point. + { + if ((current < range.lower || !haveLower) && current > 0) + { + range.lower = current; + haveLower = true; + } + if ((current > range.upper || !haveUpper) && current > 0) + { + range.upper = current; + haveUpper = true; + } + } + } + ++it; + } + } + + foundRange = haveLower && haveUpper; + return range; +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPCurveData +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPCurveData + \brief Holds the data of one single data point for QCPCurve. + + The container for storing multiple data points is \ref QCPCurveDataMap. + + The stored data is: + \li \a t: the free parameter of the curve at this curve point (cp. the mathematical vector (x(t), y(t))) + \li \a key: coordinate on the key axis of this curve point + \li \a value: coordinate on the value axis of this curve point + + \see QCPCurveDataMap +*/ + +/*! + Constructs a curve data point with t, key and value set to zero. +*/ +QCPCurveData::QCPCurveData() : + t(0), + key(0), + value(0) +{ +} + +/*! + Constructs a curve data point with the specified \a t, \a key and \a value. +*/ +QCPCurveData::QCPCurveData(double t, double key, double value) : + t(t), + key(key), + value(value) +{ +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPCurve +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPCurve + \brief A plottable representing a parametric curve in a plot. + + \image html QCPCurve.png + + Unlike QCPGraph, plottables of this type may have multiple points with the same key coordinate, + so their visual representation can have \a loops. This is realized by introducing a third + coordinate \a t, which defines the order of the points described by the other two coordinates \a + x and \a y. + + To plot data, assign it with the \ref setData or \ref addData functions. + + Gaps in the curve can be created by adding data points with NaN as key and value + (qQNaN() or std::numeric_limits::quiet_NaN()) in between the two data points that shall be + separated. + + \section appearance Changing the appearance + + The appearance of the curve is determined by the pen and the brush (\ref setPen, \ref setBrush). + \section usage Usage + + Like all data representing objects in QCustomPlot, the QCPCurve is a plottable (QCPAbstractPlottable). So + the plottable-interface of QCustomPlot applies (QCustomPlot::plottable, QCustomPlot::addPlottable, QCustomPlot::removePlottable, etc.) + + Usually, you first create an instance and add it to the customPlot: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpcurve-creation-1 + and then modify the properties of the newly created plottable, e.g.: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpcurve-creation-2 +*/ + +/*! + Constructs a curve which uses \a keyAxis as its key axis ("x") and \a valueAxis as its value + axis ("y"). \a keyAxis and \a valueAxis must reside in the same QCustomPlot instance and not have + the same orientation. If either of these restrictions is violated, a corresponding message is + printed to the debug output (qDebug), the construction is not aborted, though. + + The constructed QCPCurve can be added to the plot with QCustomPlot::addPlottable, QCustomPlot + then takes ownership of the graph. +*/ +QCPCurve::QCPCurve(QCPAxis *keyAxis, QCPAxis *valueAxis) : + QCPAbstractPlottable(keyAxis, valueAxis) +{ + mData = new QCPCurveDataMap; + mPen.setColor(Qt::blue); + mPen.setStyle(Qt::SolidLine); + mBrush.setColor(Qt::blue); + mBrush.setStyle(Qt::NoBrush); + mSelectedPen = mPen; + mSelectedPen.setWidthF(2.5); + mSelectedPen.setColor(QColor(80, 80, 255)); // lighter than Qt::blue of mPen + mSelectedBrush = mBrush; + + setScatterStyle(QCPScatterStyle()); + setLineStyle(lsLine); +} + +QCPCurve::~QCPCurve() +{ + delete mData; +} + +/*! + Replaces the current data with the provided \a data. + + If \a copy is set to true, data points in \a data will only be copied. if false, the plottable + takes ownership of the passed data and replaces the internal data pointer with it. This is + significantly faster than copying for large datasets. +*/ +void QCPCurve::setData(QCPCurveDataMap *data, bool copy) +{ + if (mData == data) + { + qDebug() << Q_FUNC_INFO << "The data pointer is already in (and owned by) this plottable" << reinterpret_cast(data); + return; + } + if (copy) + { + *mData = *data; + } else + { + delete mData; + mData = data; + } +} + +/*! \overload + + Replaces the current data with the provided points in \a t, \a key and \a value tuples. The + provided vectors should have equal length. Else, the number of added points will be the size of + the smallest vector. +*/ +void QCPCurve::setData(const QVector &t, const QVector &key, const QVector &value) +{ + mData->clear(); + int n = t.size(); + n = qMin(n, key.size()); + n = qMin(n, value.size()); + QCPCurveData newData; + for (int i=0; iinsertMulti(newData.t, newData); + } +} + +/*! \overload + + Replaces the current data with the provided \a key and \a value pairs. The t parameter + of each data point will be set to the integer index of the respective key/value pair. +*/ +void QCPCurve::setData(const QVector &key, const QVector &value) +{ + mData->clear(); + int n = key.size(); + n = qMin(n, value.size()); + QCPCurveData newData; + for (int i=0; iinsertMulti(newData.t, newData); + } +} + +/*! + Sets the visual appearance of single data points in the plot. If set to \ref + QCPScatterStyle::ssNone, no scatter points are drawn (e.g. for line-only plots with appropriate + line style). + + \see QCPScatterStyle, setLineStyle +*/ +void QCPCurve::setScatterStyle(const QCPScatterStyle &style) +{ + mScatterStyle = style; +} + +/*! + Sets how the single data points are connected in the plot or how they are represented visually + apart from the scatter symbol. For scatter-only plots, set \a style to \ref lsNone and \ref + setScatterStyle to the desired scatter style. + + \see setScatterStyle +*/ +void QCPCurve::setLineStyle(QCPCurve::LineStyle style) +{ + mLineStyle = style; +} + +/*! + Adds the provided data points in \a dataMap to the current data. + \see removeData +*/ +void QCPCurve::addData(const QCPCurveDataMap &dataMap) +{ + mData->unite(dataMap); +} + +/*! \overload + Adds the provided single data point in \a data to the current data. + \see removeData +*/ +void QCPCurve::addData(const QCPCurveData &data) +{ + mData->insertMulti(data.t, data); +} + +/*! \overload + Adds the provided single data point as \a t, \a key and \a value tuple to the current data + \see removeData +*/ +void QCPCurve::addData(double t, double key, double value) +{ + QCPCurveData newData; + newData.t = t; + newData.key = key; + newData.value = value; + mData->insertMulti(newData.t, newData); +} + +/*! \overload + + Adds the provided single data point as \a key and \a value pair to the current data The t + parameter of the data point is set to the t of the last data point plus 1. If there is no last + data point, t will be set to 0. + + \see removeData +*/ +void QCPCurve::addData(double key, double value) +{ + QCPCurveData newData; + if (!mData->isEmpty()) + newData.t = (mData->constEnd()-1).key()+1; + else + newData.t = 0; + newData.key = key; + newData.value = value; + mData->insertMulti(newData.t, newData); +} + +/*! \overload + Adds the provided data points as \a t, \a key and \a value tuples to the current data. + \see removeData +*/ +void QCPCurve::addData(const QVector &ts, const QVector &keys, const QVector &values) +{ + int n = ts.size(); + n = qMin(n, keys.size()); + n = qMin(n, values.size()); + QCPCurveData newData; + for (int i=0; iinsertMulti(newData.t, newData); + } +} + +/*! + Removes all data points with curve parameter t smaller than \a t. + \see addData, clearData +*/ +void QCPCurve::removeDataBefore(double t) +{ + QCPCurveDataMap::iterator it = mData->begin(); + while (it != mData->end() && it.key() < t) + it = mData->erase(it); +} + +/*! + Removes all data points with curve parameter t greater than \a t. + \see addData, clearData +*/ +void QCPCurve::removeDataAfter(double t) +{ + if (mData->isEmpty()) return; + QCPCurveDataMap::iterator it = mData->upperBound(t); + while (it != mData->end()) + it = mData->erase(it); +} + +/*! + Removes all data points with curve parameter t between \a fromt and \a tot. if \a fromt is + greater or equal to \a tot, the function does nothing. To remove a single data point with known + t, use \ref removeData(double t). + + \see addData, clearData +*/ +void QCPCurve::removeData(double fromt, double tot) +{ + if (fromt >= tot || mData->isEmpty()) return; + QCPCurveDataMap::iterator it = mData->upperBound(fromt); + QCPCurveDataMap::iterator itEnd = mData->upperBound(tot); + while (it != itEnd) + it = mData->erase(it); +} + +/*! \overload + + Removes a single data point at curve parameter \a t. If the position is not known with absolute + precision, consider using \ref removeData(double fromt, double tot) with a small fuzziness + interval around the suspected position, depeding on the precision with which the curve parameter + is known. + + \see addData, clearData +*/ +void QCPCurve::removeData(double t) +{ + mData->remove(t); +} + +/*! + Removes all data points. + \see removeData, removeDataAfter, removeDataBefore +*/ +void QCPCurve::clearData() +{ + mData->clear(); +} + +/* inherits documentation from base class */ +double QCPCurve::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if ((onlySelectable && !mSelectable) || mData->isEmpty()) + return -1; + if (!mKeyAxis || !mValueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return -1; } + + if (mKeyAxis.data()->axisRect()->rect().contains(pos.toPoint())) + return pointDistance(pos); + else + return -1; +} + +/* inherits documentation from base class */ +void QCPCurve::draw(QCPPainter *painter) +{ + if (mData->isEmpty()) return; + + // allocate line vector: + QVector *lineData = new QVector; + + // fill with curve data: + getCurveData(lineData); + + // check data validity if flag set: +#ifdef QCUSTOMPLOT_CHECK_DATA + QCPCurveDataMap::const_iterator it; + for (it = mData->constBegin(); it != mData->constEnd(); ++it) + { + if (QCP::isInvalidData(it.value().t) || + QCP::isInvalidData(it.value().key, it.value().value)) + qDebug() << Q_FUNC_INFO << "Data point at" << it.key() << "invalid." << "Plottable name:" << name(); + } +#endif + + // draw curve fill: + if (mainBrush().style() != Qt::NoBrush && mainBrush().color().alpha() != 0) + { + applyFillAntialiasingHint(painter); + painter->setPen(Qt::NoPen); + painter->setBrush(mainBrush()); + painter->drawPolygon(QPolygonF(*lineData)); + } + + // draw curve line: + if (mLineStyle != lsNone && mainPen().style() != Qt::NoPen && mainPen().color().alpha() != 0) + { + applyDefaultAntialiasingHint(painter); + painter->setPen(mainPen()); + painter->setBrush(Qt::NoBrush); + // if drawing solid line and not in PDF, use much faster line drawing instead of polyline: + if (mParentPlot->plottingHints().testFlag(QCP::phFastPolylines) && + painter->pen().style() == Qt::SolidLine && + !painter->modes().testFlag(QCPPainter::pmVectorized) && + !painter->modes().testFlag(QCPPainter::pmNoCaching)) + { + int i = 0; + bool lastIsNan = false; + const int lineDataSize = lineData->size(); + while (i < lineDataSize && (qIsNaN(lineData->at(i).y()) || qIsNaN(lineData->at(i).x()))) // make sure first point is not NaN + ++i; + ++i; // because drawing works in 1 point retrospect + while (i < lineDataSize) + { + if (!qIsNaN(lineData->at(i).y()) && !qIsNaN(lineData->at(i).x())) // NaNs create a gap in the line + { + if (!lastIsNan) + painter->drawLine(lineData->at(i-1), lineData->at(i)); + else + lastIsNan = false; + } else + lastIsNan = true; + ++i; + } + } else + { + int segmentStart = 0; + int i = 0; + const int lineDataSize = lineData->size(); + while (i < lineDataSize) + { + if (qIsNaN(lineData->at(i).y()) || qIsNaN(lineData->at(i).x())) // NaNs create a gap in the line + { + painter->drawPolyline(lineData->constData()+segmentStart, i-segmentStart); // i, because we don't want to include the current NaN point + segmentStart = i+1; + } + ++i; + } + // draw last segment: + painter->drawPolyline(lineData->constData()+segmentStart, lineDataSize-segmentStart); + } + } + + // draw scatters: + if (!mScatterStyle.isNone()) + drawScatterPlot(painter, lineData); + + // free allocated line data: + delete lineData; +} + +/* inherits documentation from base class */ +void QCPCurve::drawLegendIcon(QCPPainter *painter, const QRectF &rect) const +{ + // draw fill: + if (mBrush.style() != Qt::NoBrush) + { + applyFillAntialiasingHint(painter); + painter->fillRect(QRectF(rect.left(), rect.top()+rect.height()/2.0, rect.width(), rect.height()/3.0), mBrush); + } + // draw line vertically centered: + if (mLineStyle != lsNone) + { + applyDefaultAntialiasingHint(painter); + painter->setPen(mPen); + painter->drawLine(QLineF(rect.left(), rect.top()+rect.height()/2.0, rect.right()+5, rect.top()+rect.height()/2.0)); // +5 on x2 else last segment is missing from dashed/dotted pens + } + // draw scatter symbol: + if (!mScatterStyle.isNone()) + { + applyScattersAntialiasingHint(painter); + // scale scatter pixmap if it's too large to fit in legend icon rect: + if (mScatterStyle.shape() == QCPScatterStyle::ssPixmap && (mScatterStyle.pixmap().size().width() > rect.width() || mScatterStyle.pixmap().size().height() > rect.height())) + { + QCPScatterStyle scaledStyle(mScatterStyle); + scaledStyle.setPixmap(scaledStyle.pixmap().scaled(rect.size().toSize(), Qt::KeepAspectRatio, Qt::SmoothTransformation)); + scaledStyle.applyTo(painter, mPen); + scaledStyle.drawShape(painter, QRectF(rect).center()); + } else + { + mScatterStyle.applyTo(painter, mPen); + mScatterStyle.drawShape(painter, QRectF(rect).center()); + } + } +} + +/*! \internal + + Draws scatter symbols at every data point passed in \a pointData. scatter symbols are independent of + the line style and are always drawn if scatter shape is not \ref QCPScatterStyle::ssNone. +*/ +void QCPCurve::drawScatterPlot(QCPPainter *painter, const QVector *pointData) const +{ + // draw scatter point symbols: + applyScattersAntialiasingHint(painter); + mScatterStyle.applyTo(painter, mPen); + for (int i=0; isize(); ++i) + if (!qIsNaN(pointData->at(i).x()) && !qIsNaN(pointData->at(i).y())) + mScatterStyle.drawShape(painter, pointData->at(i)); +} + +/*! \internal + + called by QCPCurve::draw to generate a point vector (in pixel coordinates) which represents the + line of the curve. + + Line segments that aren't visible in the current axis rect are handled in an optimized way. They + are projected onto a rectangle slightly larger than the visible axis rect and simplified + regarding point count. The algorithm makes sure to preserve appearance of lines and fills inside + the visible axis rect by generating new temporary points on the outer rect if necessary. + + Methods that are also involved in the algorithm are: \ref getRegion, \ref getOptimizedPoint, \ref + getOptimizedCornerPoints \ref mayTraverse, \ref getTraverse, \ref getTraverseCornerPoints. +*/ +void QCPCurve::getCurveData(QVector *lineData) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + + // add margins to rect to compensate for stroke width + double strokeMargin = qMax(qreal(1.0), qreal(mainPen().widthF()*0.75)); // stroke radius + 50% safety + if (!mScatterStyle.isNone()) + strokeMargin = qMax(strokeMargin, mScatterStyle.size()); + double rectLeft = keyAxis->pixelToCoord(keyAxis->coordToPixel(keyAxis->range().lower)-strokeMargin*((keyAxis->orientation()==Qt::Vertical)!=keyAxis->rangeReversed()?-1:1)); + double rectRight = keyAxis->pixelToCoord(keyAxis->coordToPixel(keyAxis->range().upper)+strokeMargin*((keyAxis->orientation()==Qt::Vertical)!=keyAxis->rangeReversed()?-1:1)); + double rectBottom = valueAxis->pixelToCoord(valueAxis->coordToPixel(valueAxis->range().lower)+strokeMargin*((valueAxis->orientation()==Qt::Horizontal)!=valueAxis->rangeReversed()?-1:1)); + double rectTop = valueAxis->pixelToCoord(valueAxis->coordToPixel(valueAxis->range().upper)-strokeMargin*((valueAxis->orientation()==Qt::Horizontal)!=valueAxis->rangeReversed()?-1:1)); + int currentRegion; + QCPCurveDataMap::const_iterator it = mData->constBegin(); + QCPCurveDataMap::const_iterator prevIt = mData->constEnd()-1; + int prevRegion = getRegion(prevIt.value().key, prevIt.value().value, rectLeft, rectTop, rectRight, rectBottom); + QVector trailingPoints; // points that must be applied after all other points (are generated only when handling first point to get virtual segment between last and first point right) + while (it != mData->constEnd()) + { + currentRegion = getRegion(it.value().key, it.value().value, rectLeft, rectTop, rectRight, rectBottom); + if (currentRegion != prevRegion) // changed region, possibly need to add some optimized edge points or original points if entering R + { + if (currentRegion != 5) // segment doesn't end in R, so it's a candidate for removal + { + QPointF crossA, crossB; + if (prevRegion == 5) // we're coming from R, so add this point optimized + { + lineData->append(getOptimizedPoint(currentRegion, it.value().key, it.value().value, prevIt.value().key, prevIt.value().value, rectLeft, rectTop, rectRight, rectBottom)); + // in the situations 5->1/7/9/3 the segment may leave R and directly cross through two outer regions. In these cases we need to add an additional corner point + *lineData << getOptimizedCornerPoints(prevRegion, currentRegion, prevIt.value().key, prevIt.value().value, it.value().key, it.value().value, rectLeft, rectTop, rectRight, rectBottom); + } else if (mayTraverse(prevRegion, currentRegion) && + getTraverse(prevIt.value().key, prevIt.value().value, it.value().key, it.value().value, rectLeft, rectTop, rectRight, rectBottom, crossA, crossB)) + { + // add the two cross points optimized if segment crosses R and if segment isn't virtual zeroth segment between last and first curve point: + QVector beforeTraverseCornerPoints, afterTraverseCornerPoints; + getTraverseCornerPoints(prevRegion, currentRegion, rectLeft, rectTop, rectRight, rectBottom, beforeTraverseCornerPoints, afterTraverseCornerPoints); + if (it != mData->constBegin()) + { + *lineData << beforeTraverseCornerPoints; + lineData->append(crossA); + lineData->append(crossB); + *lineData << afterTraverseCornerPoints; + } else + { + lineData->append(crossB); + *lineData << afterTraverseCornerPoints; + trailingPoints << beforeTraverseCornerPoints << crossA ; + } + } else // doesn't cross R, line is just moving around in outside regions, so only need to add optimized point(s) at the boundary corner(s) + { + *lineData << getOptimizedCornerPoints(prevRegion, currentRegion, prevIt.value().key, prevIt.value().value, it.value().key, it.value().value, rectLeft, rectTop, rectRight, rectBottom); + } + } else // segment does end in R, so we add previous point optimized and this point at original position + { + if (it == mData->constBegin()) // it is first point in curve and prevIt is last one. So save optimized point for adding it to the lineData in the end + trailingPoints << getOptimizedPoint(prevRegion, prevIt.value().key, prevIt.value().value, it.value().key, it.value().value, rectLeft, rectTop, rectRight, rectBottom); + else + lineData->append(getOptimizedPoint(prevRegion, prevIt.value().key, prevIt.value().value, it.value().key, it.value().value, rectLeft, rectTop, rectRight, rectBottom)); + lineData->append(coordsToPixels(it.value().key, it.value().value)); + } + } else // region didn't change + { + if (currentRegion == 5) // still in R, keep adding original points + { + lineData->append(coordsToPixels(it.value().key, it.value().value)); + } else // still outside R, no need to add anything + { + // see how this is not doing anything? That's the main optimization... + } + } + prevIt = it; + prevRegion = currentRegion; + ++it; + } + *lineData << trailingPoints; +} + +/*! \internal + + This function is part of the curve optimization algorithm of \ref getCurveData. + + It returns the region of the given point (\a x, \a y) with respect to a rectangle defined by \a + rectLeft, \a rectTop, \a rectRight, and \a rectBottom. + + The regions are enumerated from top to bottom and left to right: + + + + + +
147
258
369
+ + With the rectangle being region 5, and the outer regions extending infinitely outwards. In the + curve optimization algorithm, region 5 is considered to be the visible portion of the plot. +*/ +int QCPCurve::getRegion(double x, double y, double rectLeft, double rectTop, double rectRight, double rectBottom) const +{ + if (x < rectLeft) // region 123 + { + if (y > rectTop) + return 1; + else if (y < rectBottom) + return 3; + else + return 2; + } else if (x > rectRight) // region 789 + { + if (y > rectTop) + return 7; + else if (y < rectBottom) + return 9; + else + return 8; + } else // region 456 + { + if (y > rectTop) + return 4; + else if (y < rectBottom) + return 6; + else + return 5; + } +} + +/*! \internal + + This function is part of the curve optimization algorithm of \ref getCurveData. + + This method is used in case the current segment passes from inside the visible rect (region 5, + see \ref getRegion) to any of the outer regions (\a otherRegion). The current segment is given by + the line connecting (\a key, \a value) with (\a otherKey, \a otherValue). + + It returns the intersection point of the segment with the border of region 5. + + For this function it doesn't matter whether (\a key, \a value) is the point inside region 5 or + whether it's (\a otherKey, \a otherValue), i.e. whether the segment is coming from region 5 or + leaving it. It is important though that \a otherRegion correctly identifies the other region not + equal to 5. +*/ +QPointF QCPCurve::getOptimizedPoint(int otherRegion, double otherKey, double otherValue, double key, double value, double rectLeft, double rectTop, double rectRight, double rectBottom) const +{ + double intersectKey = rectLeft; // initial value is just fail-safe + double intersectValue = rectTop; // initial value is just fail-safe + switch (otherRegion) + { + case 1: // top and left edge + { + intersectValue = rectTop; + intersectKey = otherKey + (key-otherKey)/(value-otherValue)*(intersectValue-otherValue); + if (intersectKey < rectLeft || intersectKey > rectRight) // doesn't intersect, so must intersect other: + { + intersectKey = rectLeft; + intersectValue = otherValue + (value-otherValue)/(key-otherKey)*(intersectKey-otherKey); + } + break; + } + case 2: // left edge + { + intersectKey = rectLeft; + intersectValue = otherValue + (value-otherValue)/(key-otherKey)*(intersectKey-otherKey); + break; + } + case 3: // bottom and left edge + { + intersectValue = rectBottom; + intersectKey = otherKey + (key-otherKey)/(value-otherValue)*(intersectValue-otherValue); + if (intersectKey < rectLeft || intersectKey > rectRight) // doesn't intersect, so must intersect other: + { + intersectKey = rectLeft; + intersectValue = otherValue + (value-otherValue)/(key-otherKey)*(intersectKey-otherKey); + } + break; + } + case 4: // top edge + { + intersectValue = rectTop; + intersectKey = otherKey + (key-otherKey)/(value-otherValue)*(intersectValue-otherValue); + break; + } + case 5: + { + break; // case 5 shouldn't happen for this function but we add it anyway to prevent potential discontinuity in branch table + } + case 6: // bottom edge + { + intersectValue = rectBottom; + intersectKey = otherKey + (key-otherKey)/(value-otherValue)*(intersectValue-otherValue); + break; + } + case 7: // top and right edge + { + intersectValue = rectTop; + intersectKey = otherKey + (key-otherKey)/(value-otherValue)*(intersectValue-otherValue); + if (intersectKey < rectLeft || intersectKey > rectRight) // doesn't intersect, so must intersect other: + { + intersectKey = rectRight; + intersectValue = otherValue + (value-otherValue)/(key-otherKey)*(intersectKey-otherKey); + } + break; + } + case 8: // right edge + { + intersectKey = rectRight; + intersectValue = otherValue + (value-otherValue)/(key-otherKey)*(intersectKey-otherKey); + break; + } + case 9: // bottom and right edge + { + intersectValue = rectBottom; + intersectKey = otherKey + (key-otherKey)/(value-otherValue)*(intersectValue-otherValue); + if (intersectKey < rectLeft || intersectKey > rectRight) // doesn't intersect, so must intersect other: + { + intersectKey = rectRight; + intersectValue = otherValue + (value-otherValue)/(key-otherKey)*(intersectKey-otherKey); + } + break; + } + } + return coordsToPixels(intersectKey, intersectValue); +} + +/*! \internal + + This function is part of the curve optimization algorithm of \ref getCurveData. + + In situations where a single segment skips over multiple regions it might become necessary to add + extra points at the corners of region 5 (see \ref getRegion) such that the optimized segment + doesn't unintentionally cut through the visible area of the axis rect and create plot artifacts. + This method provides these points that must be added, assuming the original segment doesn't + start, end, or traverse region 5. (Corner points where region 5 is traversed are calculated by + \ref getTraverseCornerPoints.) + + For example, consider a segment which directly goes from region 4 to 2 but originally is far out + to the top left such that it doesn't cross region 5. Naively optimizing these points by + projecting them on the top and left borders of region 5 will create a segment that surely crosses + 5, creating a visual artifact in the plot. This method prevents this by providing extra points at + the top left corner, making the optimized curve correctly pass from region 4 to 1 to 2 without + traversing 5. +*/ +QVector QCPCurve::getOptimizedCornerPoints(int prevRegion, int currentRegion, double prevKey, double prevValue, double key, double value, double rectLeft, double rectTop, double rectRight, double rectBottom) const +{ + QVector result; + switch (prevRegion) + { + case 1: + { + switch (currentRegion) + { + case 2: { result << coordsToPixels(rectLeft, rectTop); break; } + case 4: { result << coordsToPixels(rectLeft, rectTop); break; } + case 3: { result << coordsToPixels(rectLeft, rectTop) << coordsToPixels(rectLeft, rectBottom); break; } + case 7: { result << coordsToPixels(rectLeft, rectTop) << coordsToPixels(rectRight, rectTop); break; } + case 6: { result << coordsToPixels(rectLeft, rectTop) << coordsToPixels(rectLeft, rectBottom); result.append(result.last()); break; } + case 8: { result << coordsToPixels(rectLeft, rectTop) << coordsToPixels(rectRight, rectTop); result.append(result.last()); break; } + case 9: { // in this case we need another distinction of cases: segment may pass below or above rect, requiring either bottom right or top left corner points + if ((value-prevValue)/(key-prevKey)*(rectLeft-key)+value < rectBottom) // segment passes below R + { result << coordsToPixels(rectLeft, rectTop) << coordsToPixels(rectLeft, rectBottom); result.append(result.last()); result << coordsToPixels(rectRight, rectBottom); } + else + { result << coordsToPixels(rectLeft, rectTop) << coordsToPixels(rectRight, rectTop); result.append(result.last()); result << coordsToPixels(rectRight, rectBottom); } + break; + } + } + break; + } + case 2: + { + switch (currentRegion) + { + case 1: { result << coordsToPixels(rectLeft, rectTop); break; } + case 3: { result << coordsToPixels(rectLeft, rectBottom); break; } + case 4: { result << coordsToPixels(rectLeft, rectTop); result.append(result.last()); break; } + case 6: { result << coordsToPixels(rectLeft, rectBottom); result.append(result.last()); break; } + case 7: { result << coordsToPixels(rectLeft, rectTop); result.append(result.last()); result << coordsToPixels(rectRight, rectTop); break; } + case 9: { result << coordsToPixels(rectLeft, rectBottom); result.append(result.last()); result << coordsToPixels(rectRight, rectBottom); break; } + } + break; + } + case 3: + { + switch (currentRegion) + { + case 2: { result << coordsToPixels(rectLeft, rectBottom); break; } + case 6: { result << coordsToPixels(rectLeft, rectBottom); break; } + case 1: { result << coordsToPixels(rectLeft, rectBottom) << coordsToPixels(rectLeft, rectTop); break; } + case 9: { result << coordsToPixels(rectLeft, rectBottom) << coordsToPixels(rectRight, rectBottom); break; } + case 4: { result << coordsToPixels(rectLeft, rectBottom) << coordsToPixels(rectLeft, rectTop); result.append(result.last()); break; } + case 8: { result << coordsToPixels(rectLeft, rectBottom) << coordsToPixels(rectRight, rectBottom); result.append(result.last()); break; } + case 7: { // in this case we need another distinction of cases: segment may pass below or above rect, requiring either bottom right or top left corner points + if ((value-prevValue)/(key-prevKey)*(rectRight-key)+value < rectBottom) // segment passes below R + { result << coordsToPixels(rectLeft, rectBottom) << coordsToPixels(rectRight, rectBottom); result.append(result.last()); result << coordsToPixels(rectRight, rectTop); } + else + { result << coordsToPixels(rectLeft, rectBottom) << coordsToPixels(rectLeft, rectTop); result.append(result.last()); result << coordsToPixels(rectRight, rectTop); } + break; + } + } + break; + } + case 4: + { + switch (currentRegion) + { + case 1: { result << coordsToPixels(rectLeft, rectTop); break; } + case 7: { result << coordsToPixels(rectRight, rectTop); break; } + case 2: { result << coordsToPixels(rectLeft, rectTop); result.append(result.last()); break; } + case 8: { result << coordsToPixels(rectRight, rectTop); result.append(result.last()); break; } + case 3: { result << coordsToPixels(rectLeft, rectTop); result.append(result.last()); result << coordsToPixels(rectLeft, rectBottom); break; } + case 9: { result << coordsToPixels(rectRight, rectTop); result.append(result.last()); result << coordsToPixels(rectRight, rectBottom); break; } + } + break; + } + case 5: + { + switch (currentRegion) + { + case 1: { result << coordsToPixels(rectLeft, rectTop); break; } + case 7: { result << coordsToPixels(rectRight, rectTop); break; } + case 9: { result << coordsToPixels(rectRight, rectBottom); break; } + case 3: { result << coordsToPixels(rectLeft, rectBottom); break; } + } + break; + } + case 6: + { + switch (currentRegion) + { + case 3: { result << coordsToPixels(rectLeft, rectBottom); break; } + case 9: { result << coordsToPixels(rectRight, rectBottom); break; } + case 2: { result << coordsToPixels(rectLeft, rectBottom); result.append(result.last()); break; } + case 8: { result << coordsToPixels(rectRight, rectBottom); result.append(result.last()); break; } + case 1: { result << coordsToPixels(rectLeft, rectBottom); result.append(result.last()); result << coordsToPixels(rectLeft, rectTop); break; } + case 7: { result << coordsToPixels(rectRight, rectBottom); result.append(result.last()); result << coordsToPixels(rectRight, rectTop); break; } + } + break; + } + case 7: + { + switch (currentRegion) + { + case 4: { result << coordsToPixels(rectRight, rectTop); break; } + case 8: { result << coordsToPixels(rectRight, rectTop); break; } + case 1: { result << coordsToPixels(rectRight, rectTop) << coordsToPixels(rectLeft, rectTop); break; } + case 9: { result << coordsToPixels(rectRight, rectTop) << coordsToPixels(rectRight, rectBottom); break; } + case 2: { result << coordsToPixels(rectRight, rectTop) << coordsToPixels(rectLeft, rectTop); result.append(result.last()); break; } + case 6: { result << coordsToPixels(rectRight, rectTop) << coordsToPixels(rectRight, rectBottom); result.append(result.last()); break; } + case 3: { // in this case we need another distinction of cases: segment may pass below or above rect, requiring either bottom right or top left corner points + if ((value-prevValue)/(key-prevKey)*(rectRight-key)+value < rectBottom) // segment passes below R + { result << coordsToPixels(rectRight, rectTop) << coordsToPixels(rectRight, rectBottom); result.append(result.last()); result << coordsToPixels(rectLeft, rectBottom); } + else + { result << coordsToPixels(rectRight, rectTop) << coordsToPixels(rectLeft, rectTop); result.append(result.last()); result << coordsToPixels(rectLeft, rectBottom); } + break; + } + } + break; + } + case 8: + { + switch (currentRegion) + { + case 7: { result << coordsToPixels(rectRight, rectTop); break; } + case 9: { result << coordsToPixels(rectRight, rectBottom); break; } + case 4: { result << coordsToPixels(rectRight, rectTop); result.append(result.last()); break; } + case 6: { result << coordsToPixels(rectRight, rectBottom); result.append(result.last()); break; } + case 1: { result << coordsToPixels(rectRight, rectTop); result.append(result.last()); result << coordsToPixels(rectLeft, rectTop); break; } + case 3: { result << coordsToPixels(rectRight, rectBottom); result.append(result.last()); result << coordsToPixels(rectLeft, rectBottom); break; } + } + break; + } + case 9: + { + switch (currentRegion) + { + case 6: { result << coordsToPixels(rectRight, rectBottom); break; } + case 8: { result << coordsToPixels(rectRight, rectBottom); break; } + case 3: { result << coordsToPixels(rectRight, rectBottom) << coordsToPixels(rectLeft, rectBottom); break; } + case 7: { result << coordsToPixels(rectRight, rectBottom) << coordsToPixels(rectRight, rectTop); break; } + case 2: { result << coordsToPixels(rectRight, rectBottom) << coordsToPixels(rectLeft, rectBottom); result.append(result.last()); break; } + case 4: { result << coordsToPixels(rectRight, rectBottom) << coordsToPixels(rectRight, rectTop); result.append(result.last()); break; } + case 1: { // in this case we need another distinction of cases: segment may pass below or above rect, requiring either bottom right or top left corner points + if ((value-prevValue)/(key-prevKey)*(rectLeft-key)+value < rectBottom) // segment passes below R + { result << coordsToPixels(rectRight, rectBottom) << coordsToPixels(rectLeft, rectBottom); result.append(result.last()); result << coordsToPixels(rectLeft, rectTop); } + else + { result << coordsToPixels(rectRight, rectBottom) << coordsToPixels(rectRight, rectTop); result.append(result.last()); result << coordsToPixels(rectLeft, rectTop); } + break; + } + } + break; + } + } + return result; +} + +/*! \internal + + This function is part of the curve optimization algorithm of \ref getCurveData. + + This method returns whether a segment going from \a prevRegion to \a currentRegion (see \ref + getRegion) may traverse the visible region 5. This function assumes that neither \a prevRegion + nor \a currentRegion is 5 itself. + + If this method returns false, the segment for sure doesn't pass region 5. If it returns true, the + segment may or may not pass region 5 and a more fine-grained calculation must be used (\ref + getTraverse). +*/ +bool QCPCurve::mayTraverse(int prevRegion, int currentRegion) const +{ + switch (prevRegion) + { + case 1: + { + switch (currentRegion) + { + case 4: + case 7: + case 2: + case 3: return false; + default: return true; + } + } + case 2: + { + switch (currentRegion) + { + case 1: + case 3: return false; + default: return true; + } + } + case 3: + { + switch (currentRegion) + { + case 1: + case 2: + case 6: + case 9: return false; + default: return true; + } + } + case 4: + { + switch (currentRegion) + { + case 1: + case 7: return false; + default: return true; + } + } + case 5: return false; // should never occur + case 6: + { + switch (currentRegion) + { + case 3: + case 9: return false; + default: return true; + } + } + case 7: + { + switch (currentRegion) + { + case 1: + case 4: + case 8: + case 9: return false; + default: return true; + } + } + case 8: + { + switch (currentRegion) + { + case 7: + case 9: return false; + default: return true; + } + } + case 9: + { + switch (currentRegion) + { + case 3: + case 6: + case 8: + case 7: return false; + default: return true; + } + } + default: return true; + } +} + + +/*! \internal + + This function is part of the curve optimization algorithm of \ref getCurveData. + + This method assumes that the \ref mayTraverse test has returned true, so there is a chance the + segment defined by (\a prevKey, \a prevValue) and (\a key, \a value) goes through the visible + region 5. + + The return value of this method indicates whether the segment actually traverses region 5 or not. + + If the segment traverses 5, the output parameters \a crossA and \a crossB indicate the entry and + exit points of region 5. They will become the optimized points for that segment. +*/ +bool QCPCurve::getTraverse(double prevKey, double prevValue, double key, double value, double rectLeft, double rectTop, double rectRight, double rectBottom, QPointF &crossA, QPointF &crossB) const +{ + QList intersections; // x of QPointF corresponds to key and y to value + if (qFuzzyIsNull(key-prevKey)) // line is parallel to value axis + { + // due to region filter in mayTraverseR(), if line is parallel to value or key axis, R is traversed here + intersections.append(QPointF(key, rectBottom)); // direction will be taken care of at end of method + intersections.append(QPointF(key, rectTop)); + } else if (qFuzzyIsNull(value-prevValue)) // line is parallel to key axis + { + // due to region filter in mayTraverseR(), if line is parallel to value or key axis, R is traversed here + intersections.append(QPointF(rectLeft, value)); // direction will be taken care of at end of method + intersections.append(QPointF(rectRight, value)); + } else // line is skewed + { + double gamma; + double keyPerValue = (key-prevKey)/(value-prevValue); + // check top of rect: + gamma = prevKey + (rectTop-prevValue)*keyPerValue; + if (gamma >= rectLeft && gamma <= rectRight) + intersections.append(QPointF(gamma, rectTop)); + // check bottom of rect: + gamma = prevKey + (rectBottom-prevValue)*keyPerValue; + if (gamma >= rectLeft && gamma <= rectRight) + intersections.append(QPointF(gamma, rectBottom)); + double valuePerKey = 1.0/keyPerValue; + // check left of rect: + gamma = prevValue + (rectLeft-prevKey)*valuePerKey; + if (gamma >= rectBottom && gamma <= rectTop) + intersections.append(QPointF(rectLeft, gamma)); + // check right of rect: + gamma = prevValue + (rectRight-prevKey)*valuePerKey; + if (gamma >= rectBottom && gamma <= rectTop) + intersections.append(QPointF(rectRight, gamma)); + } + + // handle cases where found points isn't exactly 2: + if (intersections.size() > 2) + { + // line probably goes through corner of rect, and we got duplicate points there. single out the point pair with greatest distance in between: + double distSqrMax = 0; + QPointF pv1, pv2; + for (int i=0; i distSqrMax) + { + pv1 = intersections.at(i); + pv2 = intersections.at(k); + distSqrMax = distSqr; + } + } + } + intersections = QList() << pv1 << pv2; + } else if (intersections.size() != 2) + { + // one or even zero points found (shouldn't happen unless line perfectly tangent to corner), no need to draw segment + return false; + } + + // possibly re-sort points so optimized point segment has same direction as original segment: + if ((key-prevKey)*(intersections.at(1).x()-intersections.at(0).x()) + (value-prevValue)*(intersections.at(1).y()-intersections.at(0).y()) < 0) // scalar product of both segments < 0 -> opposite direction + intersections.move(0, 1); + crossA = coordsToPixels(intersections.at(0).x(), intersections.at(0).y()); + crossB = coordsToPixels(intersections.at(1).x(), intersections.at(1).y()); + return true; +} + +/*! \internal + + This function is part of the curve optimization algorithm of \ref getCurveData. + + This method assumes that the \ref getTraverse test has returned true, so the segment definitely + traverses the visible region 5 when going from \a prevRegion to \a currentRegion. + + In certain situations it is not sufficient to merely generate the entry and exit points of the + segment into/out of region 5, as \ref getTraverse provides. It may happen that a single segment, in + addition to traversing region 5, skips another region outside of region 5, which makes it + necessary to add an optimized corner point there (very similar to the job \ref + getOptimizedCornerPoints does for segments that are completely in outside regions and don't + traverse 5). + + As an example, consider a segment going from region 1 to region 6, traversing the lower left + corner of region 5. In this configuration, the segment additionally crosses the border between + region 1 and 2 before entering region 5. This makes it necessary to add an additional point in + the top left corner, before adding the optimized traverse points. So in this case, the output + parameter \a beforeTraverse will contain the top left corner point, and \a afterTraverse will be + empty. + + In some cases, such as when going from region 1 to 9, it may even be necessary to add additional + corner points before and after the traverse. Then both \a beforeTraverse and \a afterTraverse + return the respective corner points. +*/ +void QCPCurve::getTraverseCornerPoints(int prevRegion, int currentRegion, double rectLeft, double rectTop, double rectRight, double rectBottom, QVector &beforeTraverse, QVector &afterTraverse) const +{ + switch (prevRegion) + { + case 1: + { + switch (currentRegion) + { + case 6: { beforeTraverse << coordsToPixels(rectLeft, rectTop); break; } + case 9: { beforeTraverse << coordsToPixels(rectLeft, rectTop); afterTraverse << coordsToPixels(rectRight, rectBottom); break; } + case 8: { beforeTraverse << coordsToPixels(rectLeft, rectTop); break; } + } + break; + } + case 2: + { + switch (currentRegion) + { + case 7: { afterTraverse << coordsToPixels(rectRight, rectTop); break; } + case 9: { afterTraverse << coordsToPixels(rectRight, rectBottom); break; } + } + break; + } + case 3: + { + switch (currentRegion) + { + case 4: { beforeTraverse << coordsToPixels(rectLeft, rectBottom); break; } + case 7: { beforeTraverse << coordsToPixels(rectLeft, rectBottom); afterTraverse << coordsToPixels(rectRight, rectTop); break; } + case 8: { beforeTraverse << coordsToPixels(rectLeft, rectBottom); break; } + } + break; + } + case 4: + { + switch (currentRegion) + { + case 3: { afterTraverse << coordsToPixels(rectLeft, rectBottom); break; } + case 9: { afterTraverse << coordsToPixels(rectRight, rectBottom); break; } + } + break; + } + case 5: { break; } // shouldn't happen because this method only handles full traverses + case 6: + { + switch (currentRegion) + { + case 1: { afterTraverse << coordsToPixels(rectLeft, rectTop); break; } + case 7: { afterTraverse << coordsToPixels(rectRight, rectTop); break; } + } + break; + } + case 7: + { + switch (currentRegion) + { + case 2: { beforeTraverse << coordsToPixels(rectRight, rectTop); break; } + case 3: { beforeTraverse << coordsToPixels(rectRight, rectTop); afterTraverse << coordsToPixels(rectLeft, rectBottom); break; } + case 6: { beforeTraverse << coordsToPixels(rectRight, rectTop); break; } + } + break; + } + case 8: + { + switch (currentRegion) + { + case 1: { afterTraverse << coordsToPixels(rectLeft, rectTop); break; } + case 3: { afterTraverse << coordsToPixels(rectLeft, rectBottom); break; } + } + break; + } + case 9: + { + switch (currentRegion) + { + case 2: { beforeTraverse << coordsToPixels(rectRight, rectBottom); break; } + case 1: { beforeTraverse << coordsToPixels(rectRight, rectBottom); afterTraverse << coordsToPixels(rectLeft, rectTop); break; } + case 4: { beforeTraverse << coordsToPixels(rectRight, rectBottom); break; } + } + break; + } + } +} + +/*! \internal + + Calculates the (minimum) distance (in pixels) the curve's representation has from the given \a + pixelPoint in pixels. This is used to determine whether the curve was clicked or not, e.g. in + \ref selectTest. +*/ +double QCPCurve::pointDistance(const QPointF &pixelPoint) const +{ + if (mData->isEmpty()) + { + qDebug() << Q_FUNC_INFO << "requested point distance on curve" << mName << "without data"; + return 500; + } + if (mData->size() == 1) + { + QPointF dataPoint = coordsToPixels(mData->constBegin().key(), mData->constBegin().value().value); + return QVector2D(dataPoint-pixelPoint).length(); + } + + // calculate minimum distance to line segments: + QVector *lineData = new QVector; + getCurveData(lineData); + double minDistSqr = std::numeric_limits::max(); + for (int i=0; isize()-1; ++i) + { + double currentDistSqr = distSqrToLine(lineData->at(i), lineData->at(i+1), pixelPoint); + if (currentDistSqr < minDistSqr) + minDistSqr = currentDistSqr; + } + delete lineData; + return qSqrt(minDistSqr); +} + +/* inherits documentation from base class */ +QCPRange QCPCurve::getKeyRange(bool &foundRange, SignDomain inSignDomain) const +{ + QCPRange range; + bool haveLower = false; + bool haveUpper = false; + + double current; + + QCPCurveDataMap::const_iterator it = mData->constBegin(); + while (it != mData->constEnd()) + { + current = it.value().key; + if (!qIsNaN(current) && !qIsNaN(it.value().value)) + { + if (inSignDomain == sdBoth || (inSignDomain == sdNegative && current < 0) || (inSignDomain == sdPositive && current > 0)) + { + if (current < range.lower || !haveLower) + { + range.lower = current; + haveLower = true; + } + if (current > range.upper || !haveUpper) + { + range.upper = current; + haveUpper = true; + } + } + } + ++it; + } + + foundRange = haveLower && haveUpper; + return range; +} + +/* inherits documentation from base class */ +QCPRange QCPCurve::getValueRange(bool &foundRange, SignDomain inSignDomain) const +{ + QCPRange range; + bool haveLower = false; + bool haveUpper = false; + + double current; + + QCPCurveDataMap::const_iterator it = mData->constBegin(); + while (it != mData->constEnd()) + { + current = it.value().value; + if (!qIsNaN(current) && !qIsNaN(it.value().key)) + { + if (inSignDomain == sdBoth || (inSignDomain == sdNegative && current < 0) || (inSignDomain == sdPositive && current > 0)) + { + if (current < range.lower || !haveLower) + { + range.lower = current; + haveLower = true; + } + if (current > range.upper || !haveUpper) + { + range.upper = current; + haveUpper = true; + } + } + } + ++it; + } + + foundRange = haveLower && haveUpper; + return range; +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPBarsGroup +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPBarsGroup + \brief Groups multiple QCPBars together so they appear side by side + + \image html QCPBarsGroup.png + + When showing multiple QCPBars in one plot which have bars at identical keys, it may be desirable + to have them appearing next to each other at each key. This is what adding the respective QCPBars + plottables to a QCPBarsGroup achieves. (An alternative approach is to stack them on top of each + other, see \ref QCPBars::moveAbove.) + + \section qcpbarsgroup-usage Usage + + To add a QCPBars plottable to the group, create a new group and then add the respective bars + intances: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpbarsgroup-creation + Alternatively to appending to the group like shown above, you can also set the group on the + QCPBars plottable via \ref QCPBars::setBarsGroup. + + The spacing between the bars can be configured via \ref setSpacingType and \ref setSpacing. The + bars in this group appear in the plot in the order they were appended. To insert a bars plottable + at a certain index position, or to reposition a bars plottable which is already in the group, use + \ref insert. + + To remove specific bars from the group, use either \ref remove or call \ref + QCPBars::setBarsGroup "QCPBars::setBarsGroup(0)" on the respective bars plottable. + + To clear the entire group, call \ref clear, or simply delete the group. + + \section qcpbarsgroup-example Example + + The image above is generated with the following code: + \snippet documentation/doc-image-generator/mainwindow.cpp qcpbarsgroup-example +*/ + +/* start of documentation of inline functions */ + +/*! \fn QList QCPBarsGroup::bars() const + + Returns all bars currently in this group. + + \see bars(int index) +*/ + +/*! \fn int QCPBarsGroup::size() const + + Returns the number of QCPBars plottables that are part of this group. + +*/ + +/*! \fn bool QCPBarsGroup::isEmpty() const + + Returns whether this bars group is empty. + + \see size +*/ + +/*! \fn bool QCPBarsGroup::contains(QCPBars *bars) + + Returns whether the specified \a bars plottable is part of this group. + +*/ + +/* end of documentation of inline functions */ + +/*! + Constructs a new bars group for the specified QCustomPlot instance. +*/ +QCPBarsGroup::QCPBarsGroup(QCustomPlot *parentPlot) : + QObject(parentPlot), + mParentPlot(parentPlot), + mSpacingType(stAbsolute), + mSpacing(4) +{ +} + +QCPBarsGroup::~QCPBarsGroup() +{ + clear(); +} + +/*! + Sets how the spacing between adjacent bars is interpreted. See \ref SpacingType. + + The actual spacing can then be specified with \ref setSpacing. + + \see setSpacing +*/ +void QCPBarsGroup::setSpacingType(SpacingType spacingType) +{ + mSpacingType = spacingType; +} + +/*! + Sets the spacing between adjacent bars. What the number passed as \a spacing actually means, is + defined by the current \ref SpacingType, which can be set with \ref setSpacingType. + + \see setSpacingType +*/ +void QCPBarsGroup::setSpacing(double spacing) +{ + mSpacing = spacing; +} + +/*! + Returns the QCPBars instance with the specified \a index in this group. If no such QCPBars + exists, returns 0. + + \see bars(), size +*/ +QCPBars *QCPBarsGroup::bars(int index) const +{ + if (index >= 0 && index < mBars.size()) + { + return mBars.at(index); + } else + { + qDebug() << Q_FUNC_INFO << "index out of bounds:" << index; + return 0; + } +} + +/*! + Removes all QCPBars plottables from this group. + + \see isEmpty +*/ +void QCPBarsGroup::clear() +{ + foreach (QCPBars *bars, mBars) // since foreach takes a copy, removing bars in the loop is okay + bars->setBarsGroup(0); // removes itself via removeBars +} + +/*! + Adds the specified \a bars plottable to this group. Alternatively, you can also use \ref + QCPBars::setBarsGroup on the \a bars instance. + + \see insert, remove +*/ +void QCPBarsGroup::append(QCPBars *bars) +{ + if (!bars) + { + qDebug() << Q_FUNC_INFO << "bars is 0"; + return; + } + + if (!mBars.contains(bars)) + bars->setBarsGroup(this); + else + qDebug() << Q_FUNC_INFO << "bars plottable is already in this bars group:" << reinterpret_cast(bars); +} + +/*! + Inserts the specified \a bars plottable into this group at the specified index position \a i. + This gives you full control over the ordering of the bars. + + \a bars may already be part of this group. In that case, \a bars is just moved to the new index + position. + + \see append, remove +*/ +void QCPBarsGroup::insert(int i, QCPBars *bars) +{ + if (!bars) + { + qDebug() << Q_FUNC_INFO << "bars is 0"; + return; + } + + // first append to bars list normally: + if (!mBars.contains(bars)) + bars->setBarsGroup(this); + // then move to according position: + mBars.move(mBars.indexOf(bars), qBound(0, i, mBars.size()-1)); +} + +/*! + Removes the specified \a bars plottable from this group. + + \see contains, clear +*/ +void QCPBarsGroup::remove(QCPBars *bars) +{ + if (!bars) + { + qDebug() << Q_FUNC_INFO << "bars is 0"; + return; + } + + if (mBars.contains(bars)) + bars->setBarsGroup(0); + else + qDebug() << Q_FUNC_INFO << "bars plottable is not in this bars group:" << reinterpret_cast(bars); +} + +/*! \internal + + Adds the specified \a bars to the internal mBars list of bars. This method does not change the + barsGroup property on \a bars. + + \see unregisterBars +*/ +void QCPBarsGroup::registerBars(QCPBars *bars) +{ + if (!mBars.contains(bars)) + mBars.append(bars); +} + +/*! \internal + + Removes the specified \a bars from the internal mBars list of bars. This method does not change + the barsGroup property on \a bars. + + \see registerBars +*/ +void QCPBarsGroup::unregisterBars(QCPBars *bars) +{ + mBars.removeOne(bars); +} + +/*! \internal + + Returns the pixel offset in the key dimension the specified \a bars plottable should have at the + given key coordinate \a keyCoord. The offset is relative to the pixel position of the key + coordinate \a keyCoord. +*/ +double QCPBarsGroup::keyPixelOffset(const QCPBars *bars, double keyCoord) +{ + // find list of all base bars in case some mBars are stacked: + QList baseBars; + foreach (const QCPBars *b, mBars) + { + while (b->barBelow()) + b = b->barBelow(); + if (!baseBars.contains(b)) + baseBars.append(b); + } + // find base bar this "bars" is stacked on: + const QCPBars *thisBase = bars; + while (thisBase->barBelow()) + thisBase = thisBase->barBelow(); + + // determine key pixel offset of this base bars considering all other base bars in this barsgroup: + double result = 0; + int index = baseBars.indexOf(thisBase); + if (index >= 0) + { + int startIndex; + double lowerPixelWidth, upperPixelWidth; + if (baseBars.size() % 2 == 1 && index == (baseBars.size()-1)/2) // is center bar (int division on purpose) + { + return result; + } else if (index < (baseBars.size()-1)/2.0) // bar is to the left of center + { + if (baseBars.size() % 2 == 0) // even number of bars + { + startIndex = baseBars.size()/2-1; + result -= getPixelSpacing(baseBars.at(startIndex), keyCoord)*0.5; // half of middle spacing + } else // uneven number of bars + { + startIndex = (baseBars.size()-1)/2-1; + baseBars.at((baseBars.size()-1)/2)->getPixelWidth(keyCoord, lowerPixelWidth, upperPixelWidth); + result -= qAbs(upperPixelWidth-lowerPixelWidth)*0.5; // half of center bar + result -= getPixelSpacing(baseBars.at((baseBars.size()-1)/2), keyCoord); // center bar spacing + } + for (int i=startIndex; i>index; --i) // add widths and spacings of bars in between center and our bars + { + baseBars.at(i)->getPixelWidth(keyCoord, lowerPixelWidth, upperPixelWidth); + result -= qAbs(upperPixelWidth-lowerPixelWidth); + result -= getPixelSpacing(baseBars.at(i), keyCoord); + } + // finally half of our bars width: + baseBars.at(index)->getPixelWidth(keyCoord, lowerPixelWidth, upperPixelWidth); + result -= qAbs(upperPixelWidth-lowerPixelWidth)*0.5; + } else // bar is to the right of center + { + if (baseBars.size() % 2 == 0) // even number of bars + { + startIndex = baseBars.size()/2; + result += getPixelSpacing(baseBars.at(startIndex), keyCoord)*0.5; // half of middle spacing + } else // uneven number of bars + { + startIndex = (baseBars.size()-1)/2+1; + baseBars.at((baseBars.size()-1)/2)->getPixelWidth(keyCoord, lowerPixelWidth, upperPixelWidth); + result += qAbs(upperPixelWidth-lowerPixelWidth)*0.5; // half of center bar + result += getPixelSpacing(baseBars.at((baseBars.size()-1)/2), keyCoord); // center bar spacing + } + for (int i=startIndex; igetPixelWidth(keyCoord, lowerPixelWidth, upperPixelWidth); + result += qAbs(upperPixelWidth-lowerPixelWidth); + result += getPixelSpacing(baseBars.at(i), keyCoord); + } + // finally half of our bars width: + baseBars.at(index)->getPixelWidth(keyCoord, lowerPixelWidth, upperPixelWidth); + result += qAbs(upperPixelWidth-lowerPixelWidth)*0.5; + } + } + return result; +} + +/*! \internal + + Returns the spacing in pixels which is between this \a bars and the following one, both at the + key coordinate \a keyCoord. + + \note Typically the returned value doesn't depend on \a bars or \a keyCoord. \a bars is only + needed to get acces to the key axis transformation and axis rect for the modes \ref + stAxisRectRatio and \ref stPlotCoords. The \a keyCoord is only relevant for spacings given in + \ref stPlotCoords on a logarithmic axis. +*/ +double QCPBarsGroup::getPixelSpacing(const QCPBars *bars, double keyCoord) +{ + switch (mSpacingType) + { + case stAbsolute: + { + return mSpacing; + } + case stAxisRectRatio: + { + if (bars->keyAxis()->orientation() == Qt::Horizontal) + return bars->keyAxis()->axisRect()->width()*mSpacing; + else + return bars->keyAxis()->axisRect()->height()*mSpacing; + } + case stPlotCoords: + { + double keyPixel = bars->keyAxis()->coordToPixel(keyCoord); + return bars->keyAxis()->coordToPixel(keyCoord+mSpacing)-keyPixel; + } + } + return 0; +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPBarData +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPBarData + \brief Holds the data of one single data point (one bar) for QCPBars. + + The container for storing multiple data points is \ref QCPBarDataMap. + + The stored data is: + \li \a key: coordinate on the key axis of this bar + \li \a value: height coordinate on the value axis of this bar + + \see QCPBarDataaMap +*/ + +/*! + Constructs a bar data point with key and value set to zero. +*/ +QCPBarData::QCPBarData() : + key(0), + value(0) +{ +} + +/*! + Constructs a bar data point with the specified \a key and \a value. +*/ +QCPBarData::QCPBarData(double key, double value) : + key(key), + value(value) +{ +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPBars +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPBars + \brief A plottable representing a bar chart in a plot. + + \image html QCPBars.png + + To plot data, assign it with the \ref setData or \ref addData functions. + + \section appearance Changing the appearance + + The appearance of the bars is determined by the pen and the brush (\ref setPen, \ref setBrush). + The width of the individual bars can be controlled with \ref setWidthType and \ref setWidth. + + Bar charts are stackable. This means, two QCPBars plottables can be placed on top of each other + (see \ref QCPBars::moveAbove). So when two bars are at the same key position, they will appear + stacked. + + If you would like to group multiple QCPBars plottables together so they appear side by side as + shown below, use QCPBarsGroup. + + \image html QCPBarsGroup.png + + \section usage Usage + + Like all data representing objects in QCustomPlot, the QCPBars is a plottable + (QCPAbstractPlottable). So the plottable-interface of QCustomPlot applies + (QCustomPlot::plottable, QCustomPlot::addPlottable, QCustomPlot::removePlottable, etc.) + + Usually, you first create an instance: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpbars-creation-1 + add it to the customPlot with QCustomPlot::addPlottable: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpbars-creation-2 + and then modify the properties of the newly created plottable, e.g.: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpbars-creation-3 +*/ + +/* start of documentation of inline functions */ + +/*! \fn QCPBars *QCPBars::barBelow() const + Returns the bars plottable that is directly below this bars plottable. + If there is no such plottable, returns 0. + + \see barAbove, moveBelow, moveAbove +*/ + +/*! \fn QCPBars *QCPBars::barAbove() const + Returns the bars plottable that is directly above this bars plottable. + If there is no such plottable, returns 0. + + \see barBelow, moveBelow, moveAbove +*/ + +/* end of documentation of inline functions */ + +/*! + Constructs a bar chart which uses \a keyAxis as its key axis ("x") and \a valueAxis as its value + axis ("y"). \a keyAxis and \a valueAxis must reside in the same QCustomPlot instance and not have + the same orientation. If either of these restrictions is violated, a corresponding message is + printed to the debug output (qDebug), the construction is not aborted, though. + + The constructed QCPBars can be added to the plot with QCustomPlot::addPlottable, QCustomPlot + then takes ownership of the bar chart. +*/ +QCPBars::QCPBars(QCPAxis *keyAxis, QCPAxis *valueAxis) : + QCPAbstractPlottable(keyAxis, valueAxis), + mData(new QCPBarDataMap), + mWidth(0.75), + mWidthType(wtPlotCoords), + mBarsGroup(0), + mBaseValue(0) +{ + // modify inherited properties from abstract plottable: + mPen.setColor(Qt::blue); + mPen.setStyle(Qt::SolidLine); + mBrush.setColor(QColor(40, 50, 255, 30)); + mBrush.setStyle(Qt::SolidPattern); + mSelectedPen = mPen; + mSelectedPen.setWidthF(2.5); + mSelectedPen.setColor(QColor(80, 80, 255)); // lighter than Qt::blue of mPen + mSelectedBrush = mBrush; +} + +QCPBars::~QCPBars() +{ + setBarsGroup(0); + if (mBarBelow || mBarAbove) + connectBars(mBarBelow.data(), mBarAbove.data()); // take this bar out of any stacking + delete mData; +} + +/*! + Sets the width of the bars. + + How the number passed as \a width is interpreted (e.g. screen pixels, plot coordinates,...), + depends on the currently set width type, see \ref setWidthType and \ref WidthType. +*/ +void QCPBars::setWidth(double width) +{ + mWidth = width; +} + +/*! + Sets how the width of the bars is defined. See the documentation of \ref WidthType for an + explanation of the possible values for \a widthType. + + The default value is \ref wtPlotCoords. + + \see setWidth +*/ +void QCPBars::setWidthType(QCPBars::WidthType widthType) +{ + mWidthType = widthType; +} + +/*! + Sets to which QCPBarsGroup this QCPBars instance belongs to. Alternatively, you can also use \ref + QCPBarsGroup::append. + + To remove this QCPBars from any group, set \a barsGroup to 0. +*/ +void QCPBars::setBarsGroup(QCPBarsGroup *barsGroup) +{ + // deregister at old group: + if (mBarsGroup) + mBarsGroup->unregisterBars(this); + mBarsGroup = barsGroup; + // register at new group: + if (mBarsGroup) + mBarsGroup->registerBars(this); +} + +/*! + Sets the base value of this bars plottable. + + The base value defines where on the value coordinate the bars start. How far the bars extend from + the base value is given by their individual value data. For example, if the base value is set to + 1, a bar with data value 2 will have its lowest point at value coordinate 1 and highest point at + 3. + + For stacked bars, only the base value of the bottom-most QCPBars has meaning. + + The default base value is 0. +*/ +void QCPBars::setBaseValue(double baseValue) +{ + mBaseValue = baseValue; +} + +/*! + Replaces the current data with the provided \a data. + + If \a copy is set to true, data points in \a data will only be copied. if false, the plottable + takes ownership of the passed data and replaces the internal data pointer with it. This is + significantly faster than copying for large datasets. +*/ +void QCPBars::setData(QCPBarDataMap *data, bool copy) +{ + if (mData == data) + { + qDebug() << Q_FUNC_INFO << "The data pointer is already in (and owned by) this plottable" << reinterpret_cast(data); + return; + } + if (copy) + { + *mData = *data; + } else + { + delete mData; + mData = data; + } +} + +/*! \overload + + Replaces the current data with the provided points in \a key and \a value tuples. The + provided vectors should have equal length. Else, the number of added points will be the size of + the smallest vector. +*/ +void QCPBars::setData(const QVector &key, const QVector &value) +{ + mData->clear(); + int n = key.size(); + n = qMin(n, value.size()); + QCPBarData newData; + for (int i=0; iinsertMulti(newData.key, newData); + } +} + +/*! + Moves this bars plottable below \a bars. In other words, the bars of this plottable will appear + below the bars of \a bars. The move target \a bars must use the same key and value axis as this + plottable. + + Inserting into and removing from existing bar stacking is handled gracefully. If \a bars already + has a bars object below itself, this bars object is inserted between the two. If this bars object + is already between two other bars, the two other bars will be stacked on top of each other after + the operation. + + To remove this bars plottable from any stacking, set \a bars to 0. + + \see moveBelow, barAbove, barBelow +*/ +void QCPBars::moveBelow(QCPBars *bars) +{ + if (bars == this) return; + if (bars && (bars->keyAxis() != mKeyAxis.data() || bars->valueAxis() != mValueAxis.data())) + { + qDebug() << Q_FUNC_INFO << "passed QCPBars* doesn't have same key and value axis as this QCPBars"; + return; + } + // remove from stacking: + connectBars(mBarBelow.data(), mBarAbove.data()); // Note: also works if one (or both) of them is 0 + // if new bar given, insert this bar below it: + if (bars) + { + if (bars->mBarBelow) + connectBars(bars->mBarBelow.data(), this); + connectBars(this, bars); + } +} + +/*! + Moves this bars plottable above \a bars. In other words, the bars of this plottable will appear + above the bars of \a bars. The move target \a bars must use the same key and value axis as this + plottable. + + Inserting into and removing from existing bar stacking is handled gracefully. If \a bars already + has a bars object below itself, this bars object is inserted between the two. If this bars object + is already between two other bars, the two other bars will be stacked on top of each other after + the operation. + + To remove this bars plottable from any stacking, set \a bars to 0. + + \see moveBelow, barBelow, barAbove +*/ +void QCPBars::moveAbove(QCPBars *bars) +{ + if (bars == this) return; + if (bars && (bars->keyAxis() != mKeyAxis.data() || bars->valueAxis() != mValueAxis.data())) + { + qDebug() << Q_FUNC_INFO << "passed QCPBars* doesn't have same key and value axis as this QCPBars"; + return; + } + // remove from stacking: + connectBars(mBarBelow.data(), mBarAbove.data()); // Note: also works if one (or both) of them is 0 + // if new bar given, insert this bar above it: + if (bars) + { + if (bars->mBarAbove) + connectBars(this, bars->mBarAbove.data()); + connectBars(bars, this); + } +} + +/*! + Adds the provided data points in \a dataMap to the current data. + \see removeData +*/ +void QCPBars::addData(const QCPBarDataMap &dataMap) +{ + mData->unite(dataMap); +} + +/*! \overload + Adds the provided single data point in \a data to the current data. + \see removeData +*/ +void QCPBars::addData(const QCPBarData &data) +{ + mData->insertMulti(data.key, data); +} + +/*! \overload + Adds the provided single data point as \a key and \a value tuple to the current data + \see removeData +*/ +void QCPBars::addData(double key, double value) +{ + QCPBarData newData; + newData.key = key; + newData.value = value; + mData->insertMulti(newData.key, newData); +} + +/*! \overload + Adds the provided data points as \a key and \a value tuples to the current data. + \see removeData +*/ +void QCPBars::addData(const QVector &keys, const QVector &values) +{ + int n = keys.size(); + n = qMin(n, values.size()); + QCPBarData newData; + for (int i=0; iinsertMulti(newData.key, newData); + } +} + +/*! + Removes all data points with key smaller than \a key. + \see addData, clearData +*/ +void QCPBars::removeDataBefore(double key) +{ + QCPBarDataMap::iterator it = mData->begin(); + while (it != mData->end() && it.key() < key) + it = mData->erase(it); +} + +/*! + Removes all data points with key greater than \a key. + \see addData, clearData +*/ +void QCPBars::removeDataAfter(double key) +{ + if (mData->isEmpty()) return; + QCPBarDataMap::iterator it = mData->upperBound(key); + while (it != mData->end()) + it = mData->erase(it); +} + +/*! + Removes all data points with key between \a fromKey and \a toKey. if \a fromKey is + greater or equal to \a toKey, the function does nothing. To remove a single data point with known + key, use \ref removeData(double key). + + \see addData, clearData +*/ +void QCPBars::removeData(double fromKey, double toKey) +{ + if (fromKey >= toKey || mData->isEmpty()) return; + QCPBarDataMap::iterator it = mData->upperBound(fromKey); + QCPBarDataMap::iterator itEnd = mData->upperBound(toKey); + while (it != itEnd) + it = mData->erase(it); +} + +/*! \overload + + Removes a single data point at \a key. If the position is not known with absolute precision, + consider using \ref removeData(double fromKey, double toKey) with a small fuzziness interval + around the suspected position, depeding on the precision with which the key is known. + + \see addData, clearData +*/ +void QCPBars::removeData(double key) +{ + mData->remove(key); +} + +/*! + Removes all data points. + \see removeData, removeDataAfter, removeDataBefore +*/ +void QCPBars::clearData() +{ + mData->clear(); +} + +/* inherits documentation from base class */ +double QCPBars::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (onlySelectable && !mSelectable) + return -1; + if (!mKeyAxis || !mValueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return -1; } + + if (mKeyAxis.data()->axisRect()->rect().contains(pos.toPoint())) + { + QCPBarDataMap::ConstIterator it; + for (it = mData->constBegin(); it != mData->constEnd(); ++it) + { + if (getBarPolygon(it.value().key, it.value().value).boundingRect().contains(pos)) + return mParentPlot->selectionTolerance()*0.99; + } + } + return -1; +} + +/* inherits documentation from base class */ +void QCPBars::draw(QCPPainter *painter) +{ + if (!mKeyAxis || !mValueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + if (mData->isEmpty()) return; + + QCPBarDataMap::const_iterator it, lower, upperEnd; + getVisibleDataBounds(lower, upperEnd); + for (it = lower; it != upperEnd; ++it) + { + // check data validity if flag set: +#ifdef QCUSTOMPLOT_CHECK_DATA + if (QCP::isInvalidData(it.value().key, it.value().value)) + qDebug() << Q_FUNC_INFO << "Data point at" << it.key() << "of drawn range invalid." << "Plottable name:" << name(); +#endif + QPolygonF barPolygon = getBarPolygon(it.key(), it.value().value); + // draw bar fill: + if (mainBrush().style() != Qt::NoBrush && mainBrush().color().alpha() != 0) + { + applyFillAntialiasingHint(painter); + painter->setPen(Qt::NoPen); + painter->setBrush(mainBrush()); + painter->drawPolygon(barPolygon); + } + // draw bar line: + if (mainPen().style() != Qt::NoPen && mainPen().color().alpha() != 0) + { + applyDefaultAntialiasingHint(painter); + painter->setPen(mainPen()); + painter->setBrush(Qt::NoBrush); + painter->drawPolyline(barPolygon); + } + } +} + +/* inherits documentation from base class */ +void QCPBars::drawLegendIcon(QCPPainter *painter, const QRectF &rect) const +{ + // draw filled rect: + applyDefaultAntialiasingHint(painter); + painter->setBrush(mBrush); + painter->setPen(mPen); + QRectF r = QRectF(0, 0, rect.width()*0.67, rect.height()*0.67); + r.moveCenter(rect.center()); + painter->drawRect(r); +} + +/*! \internal + + called by \ref draw to determine which data (key) range is visible at the current key axis range + setting, so only that needs to be processed. It also takes into account the bar width. + + \a lower returns an iterator to the lowest data point that needs to be taken into account when + plotting. Note that in order to get a clean plot all the way to the edge of the axis rect, \a + lower may still be just outside the visible range. + + \a upperEnd returns an iterator one higher than the highest visible data point. Same as before, \a + upperEnd may also lie just outside of the visible range. + + if the bars plottable contains no data, both \a lower and \a upperEnd point to constEnd. +*/ +void QCPBars::getVisibleDataBounds(QCPBarDataMap::const_iterator &lower, QCPBarDataMap::const_iterator &upperEnd) const +{ + if (!mKeyAxis) { qDebug() << Q_FUNC_INFO << "invalid key axis"; return; } + if (mData->isEmpty()) + { + lower = mData->constEnd(); + upperEnd = mData->constEnd(); + return; + } + + // get visible data range as QMap iterators + lower = mData->lowerBound(mKeyAxis.data()->range().lower); + upperEnd = mData->upperBound(mKeyAxis.data()->range().upper); + double lowerPixelBound = mKeyAxis.data()->coordToPixel(mKeyAxis.data()->range().lower); + double upperPixelBound = mKeyAxis.data()->coordToPixel(mKeyAxis.data()->range().upper); + bool isVisible = false; + // walk left from lbound to find lower bar that actually is completely outside visible pixel range: + QCPBarDataMap::const_iterator it = lower; + while (it != mData->constBegin()) + { + --it; + QRectF barBounds = getBarPolygon(it.value().key, it.value().value).boundingRect(); + if (mKeyAxis.data()->orientation() == Qt::Horizontal) + isVisible = ((!mKeyAxis.data()->rangeReversed() && barBounds.right() >= lowerPixelBound) || (mKeyAxis.data()->rangeReversed() && barBounds.left() <= lowerPixelBound)); + else // keyaxis is vertical + isVisible = ((!mKeyAxis.data()->rangeReversed() && barBounds.top() <= lowerPixelBound) || (mKeyAxis.data()->rangeReversed() && barBounds.bottom() >= lowerPixelBound)); + if (isVisible) + lower = it; + else + break; + } + // walk right from ubound to find upper bar that actually is completely outside visible pixel range: + it = upperEnd; + while (it != mData->constEnd()) + { + QRectF barBounds = getBarPolygon(upperEnd.value().key, upperEnd.value().value).boundingRect(); + if (mKeyAxis.data()->orientation() == Qt::Horizontal) + isVisible = ((!mKeyAxis.data()->rangeReversed() && barBounds.left() <= upperPixelBound) || (mKeyAxis.data()->rangeReversed() && barBounds.right() >= upperPixelBound)); + else // keyaxis is vertical + isVisible = ((!mKeyAxis.data()->rangeReversed() && barBounds.bottom() >= upperPixelBound) || (mKeyAxis.data()->rangeReversed() && barBounds.top() <= upperPixelBound)); + if (isVisible) + upperEnd = it+1; + else + break; + ++it; + } +} + +/*! \internal + + Returns the polygon of a single bar with \a key and \a value. The Polygon is open at the bottom + and shifted according to the bar stacking (see \ref moveAbove) and base value (see \ref + setBaseValue). +*/ +QPolygonF QCPBars::getBarPolygon(double key, double value) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return QPolygonF(); } + + QPolygonF result; + double lowerPixelWidth, upperPixelWidth; + getPixelWidth(key, lowerPixelWidth, upperPixelWidth); + double base = getStackedBaseValue(key, value >= 0); + double basePixel = valueAxis->coordToPixel(base); + double valuePixel = valueAxis->coordToPixel(base+value); + double keyPixel = keyAxis->coordToPixel(key); + if (mBarsGroup) + keyPixel += mBarsGroup->keyPixelOffset(this, key); + if (keyAxis->orientation() == Qt::Horizontal) + { + result << QPointF(keyPixel+lowerPixelWidth, basePixel); + result << QPointF(keyPixel+lowerPixelWidth, valuePixel); + result << QPointF(keyPixel+upperPixelWidth, valuePixel); + result << QPointF(keyPixel+upperPixelWidth, basePixel); + } else + { + result << QPointF(basePixel, keyPixel+lowerPixelWidth); + result << QPointF(valuePixel, keyPixel+lowerPixelWidth); + result << QPointF(valuePixel, keyPixel+upperPixelWidth); + result << QPointF(basePixel, keyPixel+upperPixelWidth); + } + return result; +} + +/*! \internal + + This function is used to determine the width of the bar at coordinate \a key, according to the + specified width (\ref setWidth) and width type (\ref setWidthType). + + The output parameters \a lower and \a upper return the number of pixels the bar extends to lower + and higher keys, relative to the \a key coordinate (so with a non-reversed horizontal axis, \a + lower is negative and \a upper positive). +*/ +void QCPBars::getPixelWidth(double key, double &lower, double &upper) const +{ + switch (mWidthType) + { + case wtAbsolute: + { + upper = mWidth*0.5; + lower = -upper; + if (mKeyAxis && (mKeyAxis.data()->rangeReversed() ^ (mKeyAxis.data()->orientation() == Qt::Vertical))) + qSwap(lower, upper); + break; + } + case wtAxisRectRatio: + { + if (mKeyAxis && mKeyAxis.data()->axisRect()) + { + if (mKeyAxis.data()->orientation() == Qt::Horizontal) + upper = mKeyAxis.data()->axisRect()->width()*mWidth*0.5; + else + upper = mKeyAxis.data()->axisRect()->height()*mWidth*0.5; + lower = -upper; + if (mKeyAxis && (mKeyAxis.data()->rangeReversed() ^ (mKeyAxis.data()->orientation() == Qt::Vertical))) + qSwap(lower, upper); + } else + qDebug() << Q_FUNC_INFO << "No key axis or axis rect defined"; + break; + } + case wtPlotCoords: + { + if (mKeyAxis) + { + double keyPixel = mKeyAxis.data()->coordToPixel(key); + upper = mKeyAxis.data()->coordToPixel(key+mWidth*0.5)-keyPixel; + lower = mKeyAxis.data()->coordToPixel(key-mWidth*0.5)-keyPixel; + // no need to qSwap(lower, higher) when range reversed, because higher/lower are gained by + // coordinate transform which includes range direction + } else + qDebug() << Q_FUNC_INFO << "No key axis defined"; + break; + } + } +} + +/*! \internal + + This function is called to find at which value to start drawing the base of a bar at \a key, when + it is stacked on top of another QCPBars (e.g. with \ref moveAbove). + + positive and negative bars are separated per stack (positive are stacked above baseValue upwards, + negative are stacked below baseValue downwards). This can be indicated with \a positive. So if the + bar for which we need the base value is negative, set \a positive to false. +*/ +double QCPBars::getStackedBaseValue(double key, bool positive) const +{ + if (mBarBelow) + { + double max = 0; // don't use mBaseValue here because only base value of bottom-most bar has meaning in a bar stack + // find bars of mBarBelow that are approximately at key and find largest one: + double epsilon = qAbs(key)*1e-6; // should be safe even when changed to use float at some point + if (key == 0) + epsilon = 1e-6; + QCPBarDataMap::const_iterator it = mBarBelow.data()->mData->lowerBound(key-epsilon); + QCPBarDataMap::const_iterator itEnd = mBarBelow.data()->mData->upperBound(key+epsilon); + while (it != itEnd) + { + if ((positive && it.value().value > max) || + (!positive && it.value().value < max)) + max = it.value().value; + ++it; + } + // recurse down the bar-stack to find the total height: + return max + mBarBelow.data()->getStackedBaseValue(key, positive); + } else + return mBaseValue; +} + +/*! \internal + + Connects \a below and \a above to each other via their mBarAbove/mBarBelow properties. The bar(s) + currently above lower and below upper will become disconnected to lower/upper. + + If lower is zero, upper will be disconnected at the bottom. + If upper is zero, lower will be disconnected at the top. +*/ +void QCPBars::connectBars(QCPBars *lower, QCPBars *upper) +{ + if (!lower && !upper) return; + + if (!lower) // disconnect upper at bottom + { + // disconnect old bar below upper: + if (upper->mBarBelow && upper->mBarBelow.data()->mBarAbove.data() == upper) + upper->mBarBelow.data()->mBarAbove = 0; + upper->mBarBelow = 0; + } else if (!upper) // disconnect lower at top + { + // disconnect old bar above lower: + if (lower->mBarAbove && lower->mBarAbove.data()->mBarBelow.data() == lower) + lower->mBarAbove.data()->mBarBelow = 0; + lower->mBarAbove = 0; + } else // connect lower and upper + { + // disconnect old bar above lower: + if (lower->mBarAbove && lower->mBarAbove.data()->mBarBelow.data() == lower) + lower->mBarAbove.data()->mBarBelow = 0; + // disconnect old bar below upper: + if (upper->mBarBelow && upper->mBarBelow.data()->mBarAbove.data() == upper) + upper->mBarBelow.data()->mBarAbove = 0; + lower->mBarAbove = upper; + upper->mBarBelow = lower; + } +} + +/* inherits documentation from base class */ +QCPRange QCPBars::getKeyRange(bool &foundRange, SignDomain inSignDomain) const +{ + QCPRange range; + bool haveLower = false; + bool haveUpper = false; + + double current; + QCPBarDataMap::const_iterator it = mData->constBegin(); + while (it != mData->constEnd()) + { + current = it.value().key; + if (inSignDomain == sdBoth || (inSignDomain == sdNegative && current < 0) || (inSignDomain == sdPositive && current > 0)) + { + if (current < range.lower || !haveLower) + { + range.lower = current; + haveLower = true; + } + if (current > range.upper || !haveUpper) + { + range.upper = current; + haveUpper = true; + } + } + ++it; + } + // determine exact range of bars by including bar width and barsgroup offset: + if (haveLower && mKeyAxis) + { + double lowerPixelWidth, upperPixelWidth, keyPixel; + getPixelWidth(range.lower, lowerPixelWidth, upperPixelWidth); + keyPixel = mKeyAxis.data()->coordToPixel(range.lower) + lowerPixelWidth; + if (mBarsGroup) + keyPixel += mBarsGroup->keyPixelOffset(this, range.lower); + range.lower = mKeyAxis.data()->pixelToCoord(keyPixel); + } + if (haveUpper && mKeyAxis) + { + double lowerPixelWidth, upperPixelWidth, keyPixel; + getPixelWidth(range.upper, lowerPixelWidth, upperPixelWidth); + keyPixel = mKeyAxis.data()->coordToPixel(range.upper) + upperPixelWidth; + if (mBarsGroup) + keyPixel += mBarsGroup->keyPixelOffset(this, range.upper); + range.upper = mKeyAxis.data()->pixelToCoord(keyPixel); + } + foundRange = haveLower && haveUpper; + return range; +} + +/* inherits documentation from base class */ +QCPRange QCPBars::getValueRange(bool &foundRange, SignDomain inSignDomain) const +{ + QCPRange range; + range.lower = mBaseValue; + range.upper = mBaseValue; + bool haveLower = true; // set to true, because baseValue should always be visible in bar charts + bool haveUpper = true; // set to true, because baseValue should always be visible in bar charts + double current; + + QCPBarDataMap::const_iterator it = mData->constBegin(); + while (it != mData->constEnd()) + { + current = it.value().value + getStackedBaseValue(it.value().key, it.value().value >= 0); + if (inSignDomain == sdBoth || (inSignDomain == sdNegative && current < 0) || (inSignDomain == sdPositive && current > 0)) + { + if (current < range.lower || !haveLower) + { + range.lower = current; + haveLower = true; + } + if (current > range.upper || !haveUpper) + { + range.upper = current; + haveUpper = true; + } + } + ++it; + } + + foundRange = true; // return true because bar charts always have the 0-line visible + return range; +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPStatisticalBox +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPStatisticalBox + \brief A plottable representing a single statistical box in a plot. + + \image html QCPStatisticalBox.png + + To plot data, assign it with the individual parameter functions or use \ref setData to set all + parameters at once. The individual functions are: + \li \ref setMinimum + \li \ref setLowerQuartile + \li \ref setMedian + \li \ref setUpperQuartile + \li \ref setMaximum + + Additionally you can define a list of outliers, drawn as scatter datapoints: + \li \ref setOutliers + + \section appearance Changing the appearance + + The appearance of the box itself is controlled via \ref setPen and \ref setBrush. You may change + the width of the box with \ref setWidth in plot coordinates (not pixels). + + Analog functions exist for the minimum/maximum-whiskers: \ref setWhiskerPen, \ref + setWhiskerBarPen, \ref setWhiskerWidth. The whisker width is the width of the bar at the top + (maximum) and bottom (minimum). + + The median indicator line has its own pen, \ref setMedianPen. + + If the whisker backbone pen is changed, make sure to set the capStyle to Qt::FlatCap. Else, the + backbone line might exceed the whisker bars by a few pixels due to the pen cap being not + perfectly flat. + + The Outlier data points are drawn as normal scatter points. Their look can be controlled with + \ref setOutlierStyle + + \section usage Usage + + Like all data representing objects in QCustomPlot, the QCPStatisticalBox is a plottable. + Usually, you first create an instance and add it to the customPlot: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpstatisticalbox-creation-1 + and then modify the properties of the newly created plottable, e.g.: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpstatisticalbox-creation-2 +*/ + +/*! + Constructs a statistical box which uses \a keyAxis as its key axis ("x") and \a valueAxis as its + value axis ("y"). \a keyAxis and \a valueAxis must reside in the same QCustomPlot instance and + not have the same orientation. If either of these restrictions is violated, a corresponding + message is printed to the debug output (qDebug), the construction is not aborted, though. + + The constructed statistical box can be added to the plot with QCustomPlot::addPlottable, + QCustomPlot then takes ownership of the statistical box. +*/ +QCPStatisticalBox::QCPStatisticalBox(QCPAxis *keyAxis, QCPAxis *valueAxis) : + QCPAbstractPlottable(keyAxis, valueAxis), + mKey(0), + mMinimum(0), + mLowerQuartile(0), + mMedian(0), + mUpperQuartile(0), + mMaximum(0) +{ + setOutlierStyle(QCPScatterStyle(QCPScatterStyle::ssCircle, Qt::blue, 6)); + setWhiskerWidth(0.2); + setWidth(0.5); + + setPen(QPen(Qt::black)); + setSelectedPen(QPen(Qt::blue, 2.5)); + setMedianPen(QPen(Qt::black, 3, Qt::SolidLine, Qt::FlatCap)); + setWhiskerPen(QPen(Qt::black, 0, Qt::DashLine, Qt::FlatCap)); + setWhiskerBarPen(QPen(Qt::black)); + setBrush(Qt::NoBrush); + setSelectedBrush(Qt::NoBrush); +} + +/*! + Sets the key coordinate of the statistical box. +*/ +void QCPStatisticalBox::setKey(double key) +{ + mKey = key; +} + +/*! + Sets the parameter "minimum" of the statistical box plot. This is the position of the lower + whisker, typically the minimum measurement of the sample that's not considered an outlier. + + \see setMaximum, setWhiskerPen, setWhiskerBarPen, setWhiskerWidth +*/ +void QCPStatisticalBox::setMinimum(double value) +{ + mMinimum = value; +} + +/*! + Sets the parameter "lower Quartile" of the statistical box plot. This is the lower end of the + box. The lower and the upper quartiles are the two statistical quartiles around the median of the + sample, they contain 50% of the sample data. + + \see setUpperQuartile, setPen, setBrush, setWidth +*/ +void QCPStatisticalBox::setLowerQuartile(double value) +{ + mLowerQuartile = value; +} + +/*! + Sets the parameter "median" of the statistical box plot. This is the value of the median mark + inside the quartile box. The median separates the sample data in half (50% of the sample data is + below/above the median). + + \see setMedianPen +*/ +void QCPStatisticalBox::setMedian(double value) +{ + mMedian = value; +} + +/*! + Sets the parameter "upper Quartile" of the statistical box plot. This is the upper end of the + box. The lower and the upper quartiles are the two statistical quartiles around the median of the + sample, they contain 50% of the sample data. + + \see setLowerQuartile, setPen, setBrush, setWidth +*/ +void QCPStatisticalBox::setUpperQuartile(double value) +{ + mUpperQuartile = value; +} + +/*! + Sets the parameter "maximum" of the statistical box plot. This is the position of the upper + whisker, typically the maximum measurement of the sample that's not considered an outlier. + + \see setMinimum, setWhiskerPen, setWhiskerBarPen, setWhiskerWidth +*/ +void QCPStatisticalBox::setMaximum(double value) +{ + mMaximum = value; +} + +/*! + Sets a vector of outlier values that will be drawn as scatters. Any data points in the sample + that are not within the whiskers (\ref setMinimum, \ref setMaximum) should be considered outliers + and displayed as such. + + \see setOutlierStyle +*/ +void QCPStatisticalBox::setOutliers(const QVector &values) +{ + mOutliers = values; +} + +/*! + Sets all parameters of the statistical box plot at once. + + \see setKey, setMinimum, setLowerQuartile, setMedian, setUpperQuartile, setMaximum +*/ +void QCPStatisticalBox::setData(double key, double minimum, double lowerQuartile, double median, double upperQuartile, double maximum) +{ + setKey(key); + setMinimum(minimum); + setLowerQuartile(lowerQuartile); + setMedian(median); + setUpperQuartile(upperQuartile); + setMaximum(maximum); +} + +/*! + Sets the width of the box in key coordinates. + + \see setWhiskerWidth +*/ +void QCPStatisticalBox::setWidth(double width) +{ + mWidth = width; +} + +/*! + Sets the width of the whiskers (\ref setMinimum, \ref setMaximum) in key coordinates. + + \see setWidth +*/ +void QCPStatisticalBox::setWhiskerWidth(double width) +{ + mWhiskerWidth = width; +} + +/*! + Sets the pen used for drawing the whisker backbone (That's the line parallel to the value axis). + + Make sure to set the \a pen capStyle to Qt::FlatCap to prevent the whisker backbone from reaching + a few pixels past the whisker bars, when using a non-zero pen width. + + \see setWhiskerBarPen +*/ +void QCPStatisticalBox::setWhiskerPen(const QPen &pen) +{ + mWhiskerPen = pen; +} + +/*! + Sets the pen used for drawing the whisker bars (Those are the lines parallel to the key axis at + each end of the whisker backbone). + + \see setWhiskerPen +*/ +void QCPStatisticalBox::setWhiskerBarPen(const QPen &pen) +{ + mWhiskerBarPen = pen; +} + +/*! + Sets the pen used for drawing the median indicator line inside the statistical box. +*/ +void QCPStatisticalBox::setMedianPen(const QPen &pen) +{ + mMedianPen = pen; +} + +/*! + Sets the appearance of the outlier data points. + + \see setOutliers +*/ +void QCPStatisticalBox::setOutlierStyle(const QCPScatterStyle &style) +{ + mOutlierStyle = style; +} + +/* inherits documentation from base class */ +void QCPStatisticalBox::clearData() +{ + setOutliers(QVector()); + setKey(0); + setMinimum(0); + setLowerQuartile(0); + setMedian(0); + setUpperQuartile(0); + setMaximum(0); +} + +/* inherits documentation from base class */ +double QCPStatisticalBox::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (onlySelectable && !mSelectable) + return -1; + if (!mKeyAxis || !mValueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return -1; } + + if (mKeyAxis.data()->axisRect()->rect().contains(pos.toPoint())) + { + double posKey, posValue; + pixelsToCoords(pos, posKey, posValue); + // quartile box: + QCPRange keyRange(mKey-mWidth*0.5, mKey+mWidth*0.5); + QCPRange valueRange(mLowerQuartile, mUpperQuartile); + if (keyRange.contains(posKey) && valueRange.contains(posValue)) + return mParentPlot->selectionTolerance()*0.99; + + // min/max whiskers: + if (QCPRange(mMinimum, mMaximum).contains(posValue)) + return qAbs(mKeyAxis.data()->coordToPixel(mKey)-mKeyAxis.data()->coordToPixel(posKey)); + } + return -1; +} + +/* inherits documentation from base class */ +void QCPStatisticalBox::draw(QCPPainter *painter) +{ + if (!mKeyAxis || !mValueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + + // check data validity if flag set: +#ifdef QCUSTOMPLOT_CHECK_DATA + if (QCP::isInvalidData(mKey, mMedian) || + QCP::isInvalidData(mLowerQuartile, mUpperQuartile) || + QCP::isInvalidData(mMinimum, mMaximum)) + qDebug() << Q_FUNC_INFO << "Data point at" << mKey << "of drawn range has invalid data." << "Plottable name:" << name(); + for (int i=0; isave(); + painter->setClipRect(quartileBox, Qt::IntersectClip); + drawMedian(painter); + painter->restore(); + + drawWhiskers(painter); + drawOutliers(painter); +} + +/* inherits documentation from base class */ +void QCPStatisticalBox::drawLegendIcon(QCPPainter *painter, const QRectF &rect) const +{ + // draw filled rect: + applyDefaultAntialiasingHint(painter); + painter->setPen(mPen); + painter->setBrush(mBrush); + QRectF r = QRectF(0, 0, rect.width()*0.67, rect.height()*0.67); + r.moveCenter(rect.center()); + painter->drawRect(r); +} + +/*! \internal + + Draws the quartile box. \a box is an output parameter that returns the quartile box (in pixel + coordinates) which is used to set the clip rect of the painter before calling \ref drawMedian (so + the median doesn't draw outside the quartile box). +*/ +void QCPStatisticalBox::drawQuartileBox(QCPPainter *painter, QRectF *quartileBox) const +{ + QRectF box; + box.setTopLeft(coordsToPixels(mKey-mWidth*0.5, mUpperQuartile)); + box.setBottomRight(coordsToPixels(mKey+mWidth*0.5, mLowerQuartile)); + applyDefaultAntialiasingHint(painter); + painter->setPen(mainPen()); + painter->setBrush(mainBrush()); + painter->drawRect(box); + if (quartileBox) + *quartileBox = box; +} + +/*! \internal + + Draws the median line inside the quartile box. +*/ +void QCPStatisticalBox::drawMedian(QCPPainter *painter) const +{ + QLineF medianLine; + medianLine.setP1(coordsToPixels(mKey-mWidth*0.5, mMedian)); + medianLine.setP2(coordsToPixels(mKey+mWidth*0.5, mMedian)); + applyDefaultAntialiasingHint(painter); + painter->setPen(mMedianPen); + painter->drawLine(medianLine); +} + +/*! \internal + + Draws both whisker backbones and bars. +*/ +void QCPStatisticalBox::drawWhiskers(QCPPainter *painter) const +{ + QLineF backboneMin, backboneMax, barMin, barMax; + backboneMax.setPoints(coordsToPixels(mKey, mUpperQuartile), coordsToPixels(mKey, mMaximum)); + backboneMin.setPoints(coordsToPixels(mKey, mLowerQuartile), coordsToPixels(mKey, mMinimum)); + barMax.setPoints(coordsToPixels(mKey-mWhiskerWidth*0.5, mMaximum), coordsToPixels(mKey+mWhiskerWidth*0.5, mMaximum)); + barMin.setPoints(coordsToPixels(mKey-mWhiskerWidth*0.5, mMinimum), coordsToPixels(mKey+mWhiskerWidth*0.5, mMinimum)); + applyErrorBarsAntialiasingHint(painter); + painter->setPen(mWhiskerPen); + painter->drawLine(backboneMin); + painter->drawLine(backboneMax); + painter->setPen(mWhiskerBarPen); + painter->drawLine(barMin); + painter->drawLine(barMax); +} + +/*! \internal + + Draws the outlier scatter points. +*/ +void QCPStatisticalBox::drawOutliers(QCPPainter *painter) const +{ + applyScattersAntialiasingHint(painter); + mOutlierStyle.applyTo(painter, mPen); + for (int i=0; i 0) + return QCPRange(mKey-mWidth*0.5, mKey+mWidth*0.5); + else if (mKey > 0) + return QCPRange(mKey, mKey+mWidth*0.5); + else + { + foundRange = false; + return QCPRange(); + } + } + foundRange = false; + return QCPRange(); +} + +/* inherits documentation from base class */ +QCPRange QCPStatisticalBox::getValueRange(bool &foundRange, SignDomain inSignDomain) const +{ + QVector values; // values that must be considered (i.e. all outliers and the five box-parameters) + values.reserve(mOutliers.size() + 5); + values << mMaximum << mUpperQuartile << mMedian << mLowerQuartile << mMinimum; + values << mOutliers; + // go through values and find the ones in legal range: + bool haveUpper = false; + bool haveLower = false; + double upper = 0; + double lower = 0; + for (int i=0; i 0) || + (inSignDomain == sdBoth)) + { + if (values.at(i) > upper || !haveUpper) + { + upper = values.at(i); + haveUpper = true; + } + if (values.at(i) < lower || !haveLower) + { + lower = values.at(i); + haveLower = true; + } + } + } + // return the bounds if we found some sensible values: + if (haveLower && haveUpper) + { + foundRange = true; + return QCPRange(lower, upper); + } else // might happen if all values are in other sign domain + { + foundRange = false; + return QCPRange(); + } +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPColorMapData +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPColorMapData + \brief Holds the two-dimensional data of a QCPColorMap plottable. + + This class is a data storage for \ref QCPColorMap. It holds a two-dimensional array, which \ref + QCPColorMap then displays as a 2D image in the plot, where the array values are represented by a + color, depending on the value. + + The size of the array can be controlled via \ref setSize (or \ref setKeySize, \ref setValueSize). + Which plot coordinates these cells correspond to can be configured with \ref setRange (or \ref + setKeyRange, \ref setValueRange). + + The data cells can be accessed in two ways: They can be directly addressed by an integer index + with \ref setCell. This is the fastest method. Alternatively, they can be addressed by their plot + coordinate with \ref setData. plot coordinate to cell index transformations and vice versa are + provided by the functions \ref coordToCell and \ref cellToCoord. + + This class also buffers the minimum and maximum values that are in the data set, to provide + QCPColorMap::rescaleDataRange with the necessary information quickly. Setting a cell to a value + that is greater than the current maximum increases this maximum to the new value. However, + setting the cell that currently holds the maximum value to a smaller value doesn't decrease the + maximum again, because finding the true new maximum would require going through the entire data + array, which might be time consuming. The same holds for the data minimum. This functionality is + given by \ref recalculateDataBounds, such that you can decide when it is sensible to find the + true current minimum and maximum. The method QCPColorMap::rescaleDataRange offers a convenience + parameter \a recalculateDataBounds which may be set to true to automatically call \ref + recalculateDataBounds internally. +*/ + +/* start of documentation of inline functions */ + +/*! \fn bool QCPColorMapData::isEmpty() const + + Returns whether this instance carries no data. This is equivalent to having a size where at least + one of the dimensions is 0 (see \ref setSize). +*/ + +/* end of documentation of inline functions */ + +/*! + Constructs a new QCPColorMapData instance. The instance has \a keySize cells in the key direction + and \a valueSize cells in the value direction. These cells will be displayed by the \ref QCPColorMap + at the coordinates \a keyRange and \a valueRange. + + \see setSize, setKeySize, setValueSize, setRange, setKeyRange, setValueRange +*/ +QCPColorMapData::QCPColorMapData(int keySize, int valueSize, const QCPRange &keyRange, const QCPRange &valueRange) : + mKeySize(0), + mValueSize(0), + mKeyRange(keyRange), + mValueRange(valueRange), + mIsEmpty(true), + mData(0), + mDataModified(true) +{ + setSize(keySize, valueSize); + fill(0); +} + +QCPColorMapData::~QCPColorMapData() +{ + if (mData) + delete[] mData; +} + +/*! + Constructs a new QCPColorMapData instance copying the data and range of \a other. +*/ +QCPColorMapData::QCPColorMapData(const QCPColorMapData &other) : + mKeySize(0), + mValueSize(0), + mIsEmpty(true), + mData(0), + mDataModified(true) +{ + *this = other; +} + +/*! + Overwrites this color map data instance with the data stored in \a other. +*/ +QCPColorMapData &QCPColorMapData::operator=(const QCPColorMapData &other) +{ + if (&other != this) + { + const int keySize = other.keySize(); + const int valueSize = other.valueSize(); + setSize(keySize, valueSize); + setRange(other.keyRange(), other.valueRange()); + if (!mIsEmpty) + memcpy(mData, other.mData, sizeof(mData[0])*keySize*valueSize); + mDataBounds = other.mDataBounds; + mDataModified = true; + } + return *this; +} + +/* undocumented getter */ +double QCPColorMapData::data(double key, double value) +{ + int keyCell = (key-mKeyRange.lower)/(mKeyRange.upper-mKeyRange.lower)*(mKeySize-1)+0.5; + int valueCell = (value-mValueRange.lower)/(mValueRange.upper-mValueRange.lower)*(mValueSize-1)+0.5; + if (keyCell >= 0 && keyCell < mKeySize && valueCell >= 0 && valueCell < mValueSize) + return mData[valueCell*mKeySize + keyCell]; + else + return 0; +} + +/* undocumented getter */ +double QCPColorMapData::cell(int keyIndex, int valueIndex) +{ + if (keyIndex >= 0 && keyIndex < mKeySize && valueIndex >= 0 && valueIndex < mValueSize) + return mData[valueIndex*mKeySize + keyIndex]; + else + return 0; +} + +/*! + Resizes the data array to have \a keySize cells in the key dimension and \a valueSize cells in + the value dimension. + + The current data is discarded and the map cells are set to 0, unless the map had already the + requested size. + + Setting at least one of \a keySize or \a valueSize to zero frees the internal data array and \ref + isEmpty returns true. + + \see setRange, setKeySize, setValueSize +*/ +void QCPColorMapData::setSize(int keySize, int valueSize) +{ + if (keySize != mKeySize || valueSize != mValueSize) + { + mKeySize = keySize; + mValueSize = valueSize; + if (mData) + delete[] mData; + mIsEmpty = mKeySize == 0 || mValueSize == 0; + if (!mIsEmpty) + { +#ifdef __EXCEPTIONS + try { // 2D arrays get memory intensive fast. So if the allocation fails, at least output debug message +#endif + mData = new double[mKeySize*mValueSize]; +#ifdef __EXCEPTIONS + } catch (...) { mData = 0; } +#endif + if (mData) + fill(0); + else + qDebug() << Q_FUNC_INFO << "out of memory for data dimensions "<< mKeySize << "*" << mValueSize; + } else + mData = 0; + mDataModified = true; + } +} + +/*! + Resizes the data array to have \a keySize cells in the key dimension. + + The current data is discarded and the map cells are set to 0, unless the map had already the + requested size. + + Setting \a keySize to zero frees the internal data array and \ref isEmpty returns true. + + \see setKeyRange, setSize, setValueSize +*/ +void QCPColorMapData::setKeySize(int keySize) +{ + setSize(keySize, mValueSize); +} + +/*! + Resizes the data array to have \a valueSize cells in the value dimension. + + The current data is discarded and the map cells are set to 0, unless the map had already the + requested size. + + Setting \a valueSize to zero frees the internal data array and \ref isEmpty returns true. + + \see setValueRange, setSize, setKeySize +*/ +void QCPColorMapData::setValueSize(int valueSize) +{ + setSize(mKeySize, valueSize); +} + +/*! + Sets the coordinate ranges the data shall be distributed over. This defines the rectangular area + covered by the color map in plot coordinates. + + The outer cells will be centered on the range boundaries given to this function. For example, if + the key size (\ref setKeySize) is 3 and \a keyRange is set to QCPRange(2, 3) there will + be cells centered on the key coordinates 2, 2.5 and 3. + + \see setSize +*/ +void QCPColorMapData::setRange(const QCPRange &keyRange, const QCPRange &valueRange) +{ + setKeyRange(keyRange); + setValueRange(valueRange); +} + +/*! + Sets the coordinate range the data shall be distributed over in the key dimension. Together with + the value range, This defines the rectangular area covered by the color map in plot coordinates. + + The outer cells will be centered on the range boundaries given to this function. For example, if + the key size (\ref setKeySize) is 3 and \a keyRange is set to QCPRange(2, 3) there will + be cells centered on the key coordinates 2, 2.5 and 3. + + \see setRange, setValueRange, setSize +*/ +void QCPColorMapData::setKeyRange(const QCPRange &keyRange) +{ + mKeyRange = keyRange; +} + +/*! + Sets the coordinate range the data shall be distributed over in the value dimension. Together with + the key range, This defines the rectangular area covered by the color map in plot coordinates. + + The outer cells will be centered on the range boundaries given to this function. For example, if + the value size (\ref setValueSize) is 3 and \a valueRange is set to QCPRange(2, 3) there + will be cells centered on the value coordinates 2, 2.5 and 3. + + \see setRange, setKeyRange, setSize +*/ +void QCPColorMapData::setValueRange(const QCPRange &valueRange) +{ + mValueRange = valueRange; +} + +/*! + Sets the data of the cell, which lies at the plot coordinates given by \a key and \a value, to \a + z. + + \note The QCPColorMap always displays the data at equal key/value intervals, even if the key or + value axis is set to a logarithmic scaling. If you want to use QCPColorMap with logarithmic axes, + you shouldn't use the \ref QCPColorMapData::setData method as it uses a linear transformation to + determine the cell index. Rather directly access the cell index with \ref + QCPColorMapData::setCell. + + \see setCell, setRange +*/ +void QCPColorMapData::setData(double key, double value, double z) +{ + int keyCell = (key-mKeyRange.lower)/(mKeyRange.upper-mKeyRange.lower)*(mKeySize-1)+0.5; + int valueCell = (value-mValueRange.lower)/(mValueRange.upper-mValueRange.lower)*(mValueSize-1)+0.5; + if (keyCell >= 0 && keyCell < mKeySize && valueCell >= 0 && valueCell < mValueSize) + { + mData[valueCell*mKeySize + keyCell] = z; + if (z < mDataBounds.lower) + mDataBounds.lower = z; + if (z > mDataBounds.upper) + mDataBounds.upper = z; + mDataModified = true; + } +} + +/*! + Sets the data of the cell with indices \a keyIndex and \a valueIndex to \a z. The indices + enumerate the cells starting from zero, up to the map's size-1 in the respective dimension (see + \ref setSize). + + In the standard plot configuration (horizontal key axis and vertical value axis, both not + range-reversed), the cell with indices (0, 0) is in the bottom left corner and the cell with + indices (keySize-1, valueSize-1) is in the top right corner of the color map. + + \see setData, setSize +*/ +void QCPColorMapData::setCell(int keyIndex, int valueIndex, double z) +{ + if (keyIndex >= 0 && keyIndex < mKeySize && valueIndex >= 0 && valueIndex < mValueSize) + { + mData[valueIndex*mKeySize + keyIndex] = z; + if (z < mDataBounds.lower) + mDataBounds.lower = z; + if (z > mDataBounds.upper) + mDataBounds.upper = z; + mDataModified = true; + } +} + +/*! + Goes through the data and updates the buffered minimum and maximum data values. + + Calling this method is only advised if you are about to call \ref QCPColorMap::rescaleDataRange + and can not guarantee that the cells holding the maximum or minimum data haven't been overwritten + with a smaller or larger value respectively, since the buffered maximum/minimum values have been + updated the last time. Why this is the case is explained in the class description (\ref + QCPColorMapData). + + Note that the method \ref QCPColorMap::rescaleDataRange provides a parameter \a + recalculateDataBounds for convenience. Setting this to true will call this method for you, before + doing the rescale. +*/ +void QCPColorMapData::recalculateDataBounds() +{ + if (mKeySize > 0 && mValueSize > 0) + { + double minHeight = mData[0]; + double maxHeight = mData[0]; + const int dataCount = mValueSize*mKeySize; + for (int i=0; i maxHeight) + maxHeight = mData[i]; + if (mData[i] < minHeight) + minHeight = mData[i]; + } + mDataBounds.lower = minHeight; + mDataBounds.upper = maxHeight; + } +} + +/*! + Frees the internal data memory. + + This is equivalent to calling \ref setSize "setSize(0, 0)". +*/ +void QCPColorMapData::clear() +{ + setSize(0, 0); +} + +/*! + Sets all cells to the value \a z. +*/ +void QCPColorMapData::fill(double z) +{ + const int dataCount = mValueSize*mKeySize; + for (int i=0; i(data); + return; + } + if (copy) + { + *mMapData = *data; + } else + { + delete mMapData; + mMapData = data; + } + mMapImageInvalidated = true; +} + +/*! + Sets the data range of this color map to \a dataRange. The data range defines which data values + are mapped to the color gradient. + + To make the data range span the full range of the data set, use \ref rescaleDataRange. + + \see QCPColorScale::setDataRange +*/ +void QCPColorMap::setDataRange(const QCPRange &dataRange) +{ + if (!QCPRange::validRange(dataRange)) return; + if (mDataRange.lower != dataRange.lower || mDataRange.upper != dataRange.upper) + { + if (mDataScaleType == QCPAxis::stLogarithmic) + mDataRange = dataRange.sanitizedForLogScale(); + else + mDataRange = dataRange.sanitizedForLinScale(); + mMapImageInvalidated = true; + emit dataRangeChanged(mDataRange); + } +} + +/*! + Sets whether the data is correlated with the color gradient linearly or logarithmically. + + \see QCPColorScale::setDataScaleType +*/ +void QCPColorMap::setDataScaleType(QCPAxis::ScaleType scaleType) +{ + if (mDataScaleType != scaleType) + { + mDataScaleType = scaleType; + mMapImageInvalidated = true; + emit dataScaleTypeChanged(mDataScaleType); + if (mDataScaleType == QCPAxis::stLogarithmic) + setDataRange(mDataRange.sanitizedForLogScale()); + } +} + +/*! + Sets the color gradient that is used to represent the data. For more details on how to create an + own gradient or use one of the preset gradients, see \ref QCPColorGradient. + + The colors defined by the gradient will be used to represent data values in the currently set + data range, see \ref setDataRange. Data points that are outside this data range will either be + colored uniformly with the respective gradient boundary color, or the gradient will repeat, + depending on \ref QCPColorGradient::setPeriodic. + + \see QCPColorScale::setGradient +*/ +void QCPColorMap::setGradient(const QCPColorGradient &gradient) +{ + if (mGradient != gradient) + { + mGradient = gradient; + mMapImageInvalidated = true; + emit gradientChanged(mGradient); + } +} + +/*! + Sets whether the color map image shall use bicubic interpolation when displaying the color map + shrinked or expanded, and not at a 1:1 pixel-to-data scale. + + \image html QCPColorMap-interpolate.png "A 10*10 color map, with interpolation and without interpolation enabled" +*/ +void QCPColorMap::setInterpolate(bool enabled) +{ + mInterpolate = enabled; + mMapImageInvalidated = true; // because oversampling factors might need to change +} + +/*! + Sets whether the outer most data rows and columns are clipped to the specified key and value + range (see \ref QCPColorMapData::setKeyRange, \ref QCPColorMapData::setValueRange). + + if \a enabled is set to false, the data points at the border of the color map are drawn with the + same width and height as all other data points. Since the data points are represented by + rectangles of one color centered on the data coordinate, this means that the shown color map + extends by half a data point over the specified key/value range in each direction. + + \image html QCPColorMap-tightboundary.png "A color map, with tight boundary enabled and disabled" +*/ +void QCPColorMap::setTightBoundary(bool enabled) +{ + mTightBoundary = enabled; +} + +/*! + Associates the color scale \a colorScale with this color map. + + This means that both the color scale and the color map synchronize their gradient, data range and + data scale type (\ref setGradient, \ref setDataRange, \ref setDataScaleType). Multiple color maps + can be associated with one single color scale. This causes the color maps to also synchronize + those properties, via the mutual color scale. + + This function causes the color map to adopt the current color gradient, data range and data scale + type of \a colorScale. After this call, you may change these properties at either the color map + or the color scale, and the setting will be applied to both. + + Pass 0 as \a colorScale to disconnect the color scale from this color map again. +*/ +void QCPColorMap::setColorScale(QCPColorScale *colorScale) +{ + if (mColorScale) // unconnect signals from old color scale + { + disconnect(this, SIGNAL(dataRangeChanged(QCPRange)), mColorScale.data(), SLOT(setDataRange(QCPRange))); + disconnect(this, SIGNAL(dataScaleTypeChanged(QCPAxis::ScaleType)), mColorScale.data(), SLOT(setDataScaleType(QCPAxis::ScaleType))); + disconnect(this, SIGNAL(gradientChanged(QCPColorGradient)), mColorScale.data(), SLOT(setGradient(QCPColorGradient))); + disconnect(mColorScale.data(), SIGNAL(dataRangeChanged(QCPRange)), this, SLOT(setDataRange(QCPRange))); + disconnect(mColorScale.data(), SIGNAL(gradientChanged(QCPColorGradient)), this, SLOT(setGradient(QCPColorGradient))); + disconnect(mColorScale.data(), SIGNAL(dataScaleTypeChanged(QCPAxis::ScaleType)), this, SLOT(setDataScaleType(QCPAxis::ScaleType))); + } + mColorScale = colorScale; + if (mColorScale) // connect signals to new color scale + { + setGradient(mColorScale.data()->gradient()); + setDataRange(mColorScale.data()->dataRange()); + setDataScaleType(mColorScale.data()->dataScaleType()); + connect(this, SIGNAL(dataRangeChanged(QCPRange)), mColorScale.data(), SLOT(setDataRange(QCPRange))); + connect(this, SIGNAL(dataScaleTypeChanged(QCPAxis::ScaleType)), mColorScale.data(), SLOT(setDataScaleType(QCPAxis::ScaleType))); + connect(this, SIGNAL(gradientChanged(QCPColorGradient)), mColorScale.data(), SLOT(setGradient(QCPColorGradient))); + connect(mColorScale.data(), SIGNAL(dataRangeChanged(QCPRange)), this, SLOT(setDataRange(QCPRange))); + connect(mColorScale.data(), SIGNAL(gradientChanged(QCPColorGradient)), this, SLOT(setGradient(QCPColorGradient))); + connect(mColorScale.data(), SIGNAL(dataScaleTypeChanged(QCPAxis::ScaleType)), this, SLOT(setDataScaleType(QCPAxis::ScaleType))); + } +} + +/*! + Sets the data range (\ref setDataRange) to span the minimum and maximum values that occur in the + current data set. This corresponds to the \ref rescaleKeyAxis or \ref rescaleValueAxis methods, + only for the third data dimension of the color map. + + The minimum and maximum values of the data set are buffered in the internal QCPColorMapData + instance (\ref data). As data is updated via its \ref QCPColorMapData::setCell or \ref + QCPColorMapData::setData, the buffered minimum and maximum values are updated, too. For + performance reasons, however, they are only updated in an expanding fashion. So the buffered + maximum can only increase and the buffered minimum can only decrease. In consequence, changes to + the data that actually lower the maximum of the data set (by overwriting the cell holding the + current maximum with a smaller value), aren't recognized and the buffered maximum overestimates + the true maximum of the data set. The same happens for the buffered minimum. To recalculate the + true minimum and maximum by explicitly looking at each cell, the method + QCPColorMapData::recalculateDataBounds can be used. For convenience, setting the parameter \a + recalculateDataBounds calls this method before setting the data range to the buffered minimum and + maximum. + + \see setDataRange +*/ +void QCPColorMap::rescaleDataRange(bool recalculateDataBounds) +{ + if (recalculateDataBounds) + mMapData->recalculateDataBounds(); + setDataRange(mMapData->dataBounds()); +} + +/*! + Takes the current appearance of the color map and updates the legend icon, which is used to + represent this color map in the legend (see \ref QCPLegend). + + The \a transformMode specifies whether the rescaling is done by a faster, low quality image + scaling algorithm (Qt::FastTransformation) or by a slower, higher quality algorithm + (Qt::SmoothTransformation). + + The current color map appearance is scaled down to \a thumbSize. Ideally, this should be equal to + the size of the legend icon (see \ref QCPLegend::setIconSize). If it isn't exactly the configured + legend icon size, the thumb will be rescaled during drawing of the legend item. + + \see setDataRange +*/ +void QCPColorMap::updateLegendIcon(Qt::TransformationMode transformMode, const QSize &thumbSize) +{ + if (mMapImage.isNull() && !data()->isEmpty()) + updateMapImage(); // try to update map image if it's null (happens if no draw has happened yet) + + if (!mMapImage.isNull()) // might still be null, e.g. if data is empty, so check here again + { + bool mirrorX = (keyAxis()->orientation() == Qt::Horizontal ? keyAxis() : valueAxis())->rangeReversed(); + bool mirrorY = (valueAxis()->orientation() == Qt::Vertical ? valueAxis() : keyAxis())->rangeReversed(); + mLegendIcon = QPixmap::fromImage(mMapImage.mirrored(mirrorX, mirrorY)).scaled(thumbSize, Qt::KeepAspectRatio, transformMode); + } +} + +/*! + Clears the colormap data by calling \ref QCPColorMapData::clear() on the internal data. This also + resizes the map to 0x0 cells. +*/ +void QCPColorMap::clearData() +{ + mMapData->clear(); +} + +/* inherits documentation from base class */ +double QCPColorMap::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (onlySelectable && !mSelectable) + return -1; + if (!mKeyAxis || !mValueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return -1; } + + if (mKeyAxis.data()->axisRect()->rect().contains(pos.toPoint())) + { + double posKey, posValue; + pixelsToCoords(pos, posKey, posValue); + if (mMapData->keyRange().contains(posKey) && mMapData->valueRange().contains(posValue)) + return mParentPlot->selectionTolerance()*0.99; + } + return -1; +} + +/*! \internal + + Updates the internal map image buffer by going through the internal \ref QCPColorMapData and + turning the data values into color pixels with \ref QCPColorGradient::colorize. + + This method is called by \ref QCPColorMap::draw if either the data has been modified or the map image + has been invalidated for a different reason (e.g. a change of the data range with \ref + setDataRange). + + If the map cell count is low, the image created will be oversampled in order to avoid a + QPainter::drawImage bug which makes inner pixel boundaries jitter when stretch-drawing images + without smooth transform enabled. Accordingly, oversampling isn't performed if \ref + setInterpolate is true. +*/ +void QCPColorMap::updateMapImage() +{ + QCPAxis *keyAxis = mKeyAxis.data(); + if (!keyAxis) return; + if (mMapData->isEmpty()) return; + + const int keySize = mMapData->keySize(); + const int valueSize = mMapData->valueSize(); + int keyOversamplingFactor = mInterpolate ? 1 : (int)(1.0+100.0/(double)keySize); // make mMapImage have at least size 100, factor becomes 1 if size > 200 or interpolation is on + int valueOversamplingFactor = mInterpolate ? 1 : (int)(1.0+100.0/(double)valueSize); // make mMapImage have at least size 100, factor becomes 1 if size > 200 or interpolation is on + + // resize mMapImage to correct dimensions including possible oversampling factors, according to key/value axes orientation: + if (keyAxis->orientation() == Qt::Horizontal && (mMapImage.width() != keySize*keyOversamplingFactor || mMapImage.height() != valueSize*valueOversamplingFactor)) + mMapImage = QImage(QSize(keySize*keyOversamplingFactor, valueSize*valueOversamplingFactor), QImage::Format_RGB32); + else if (keyAxis->orientation() == Qt::Vertical && (mMapImage.width() != valueSize*valueOversamplingFactor || mMapImage.height() != keySize*keyOversamplingFactor)) + mMapImage = QImage(QSize(valueSize*valueOversamplingFactor, keySize*keyOversamplingFactor), QImage::Format_RGB32); + + QImage *localMapImage = &mMapImage; // this is the image on which the colorization operates. Either the final mMapImage, or if we need oversampling, mUndersampledMapImage + if (keyOversamplingFactor > 1 || valueOversamplingFactor > 1) + { + // resize undersampled map image to actual key/value cell sizes: + if (keyAxis->orientation() == Qt::Horizontal && (mUndersampledMapImage.width() != keySize || mUndersampledMapImage.height() != valueSize)) + mUndersampledMapImage = QImage(QSize(keySize, valueSize), QImage::Format_RGB32); + else if (keyAxis->orientation() == Qt::Vertical && (mUndersampledMapImage.width() != valueSize || mUndersampledMapImage.height() != keySize)) + mUndersampledMapImage = QImage(QSize(valueSize, keySize), QImage::Format_RGB32); + localMapImage = &mUndersampledMapImage; // make the colorization run on the undersampled image + } else if (!mUndersampledMapImage.isNull()) + mUndersampledMapImage = QImage(); // don't need oversampling mechanism anymore (map size has changed) but mUndersampledMapImage still has nonzero size, free it + + const double *rawData = mMapData->mData; + if (keyAxis->orientation() == Qt::Horizontal) + { + const int lineCount = valueSize; + const int rowCount = keySize; + for (int line=0; line(localMapImage->scanLine(lineCount-1-line)); // invert scanline index because QImage counts scanlines from top, but our vertical index counts from bottom (mathematical coordinate system) + mGradient.colorize(rawData+line*rowCount, mDataRange, pixels, rowCount, 1, mDataScaleType==QCPAxis::stLogarithmic); + } + } else // keyAxis->orientation() == Qt::Vertical + { + const int lineCount = keySize; + const int rowCount = valueSize; + for (int line=0; line(localMapImage->scanLine(lineCount-1-line)); // invert scanline index because QImage counts scanlines from top, but our vertical index counts from bottom (mathematical coordinate system) + mGradient.colorize(rawData+line, mDataRange, pixels, rowCount, lineCount, mDataScaleType==QCPAxis::stLogarithmic); + } + } + + if (keyOversamplingFactor > 1 || valueOversamplingFactor > 1) + { + if (keyAxis->orientation() == Qt::Horizontal) + mMapImage = mUndersampledMapImage.scaled(keySize*keyOversamplingFactor, valueSize*valueOversamplingFactor, Qt::IgnoreAspectRatio, Qt::FastTransformation); + else + mMapImage = mUndersampledMapImage.scaled(valueSize*valueOversamplingFactor, keySize*keyOversamplingFactor, Qt::IgnoreAspectRatio, Qt::FastTransformation); + } + mMapData->mDataModified = false; + mMapImageInvalidated = false; +} + +/* inherits documentation from base class */ +void QCPColorMap::draw(QCPPainter *painter) +{ + if (mMapData->isEmpty()) return; + if (!mKeyAxis || !mValueAxis) return; + applyDefaultAntialiasingHint(painter); + + if (mMapData->mDataModified || mMapImageInvalidated) + updateMapImage(); + + // use buffer if painting vectorized (PDF): + bool useBuffer = painter->modes().testFlag(QCPPainter::pmVectorized); + QCPPainter *localPainter = painter; // will be redirected to paint on mapBuffer if painting vectorized + QRectF mapBufferTarget; // the rect in absolute widget coordinates where the visible map portion/buffer will end up in + QPixmap mapBuffer; + double mapBufferPixelRatio = 3; // factor by which DPI is increased in embedded bitmaps + if (useBuffer) + { + mapBufferTarget = painter->clipRegion().boundingRect(); + mapBuffer = QPixmap((mapBufferTarget.size()*mapBufferPixelRatio).toSize()); + mapBuffer.fill(Qt::transparent); + localPainter = new QCPPainter(&mapBuffer); + localPainter->scale(mapBufferPixelRatio, mapBufferPixelRatio); + localPainter->translate(-mapBufferTarget.topLeft()); + } + + QRectF imageRect = QRectF(coordsToPixels(mMapData->keyRange().lower, mMapData->valueRange().lower), + coordsToPixels(mMapData->keyRange().upper, mMapData->valueRange().upper)).normalized(); + // extend imageRect to contain outer halves/quarters of bordering/cornering pixels (cells are centered on map range boundary): + double halfCellWidth = 0; // in pixels + double halfCellHeight = 0; // in pixels + if (keyAxis()->orientation() == Qt::Horizontal) + { + if (mMapData->keySize() > 1) + halfCellWidth = 0.5*imageRect.width()/(double)(mMapData->keySize()-1); + if (mMapData->valueSize() > 1) + halfCellHeight = 0.5*imageRect.height()/(double)(mMapData->valueSize()-1); + } else // keyAxis orientation is Qt::Vertical + { + if (mMapData->keySize() > 1) + halfCellHeight = 0.5*imageRect.height()/(double)(mMapData->keySize()-1); + if (mMapData->valueSize() > 1) + halfCellWidth = 0.5*imageRect.width()/(double)(mMapData->valueSize()-1); + } + imageRect.adjust(-halfCellWidth, -halfCellHeight, halfCellWidth, halfCellHeight); + bool mirrorX = (keyAxis()->orientation() == Qt::Horizontal ? keyAxis() : valueAxis())->rangeReversed(); + bool mirrorY = (valueAxis()->orientation() == Qt::Vertical ? valueAxis() : keyAxis())->rangeReversed(); + bool smoothBackup = localPainter->renderHints().testFlag(QPainter::SmoothPixmapTransform); + localPainter->setRenderHint(QPainter::SmoothPixmapTransform, mInterpolate); + QRegion clipBackup; + if (mTightBoundary) + { + clipBackup = localPainter->clipRegion(); + QRectF tightClipRect = QRectF(coordsToPixels(mMapData->keyRange().lower, mMapData->valueRange().lower), + coordsToPixels(mMapData->keyRange().upper, mMapData->valueRange().upper)).normalized(); + localPainter->setClipRect(tightClipRect, Qt::IntersectClip); + } + localPainter->drawImage(imageRect, mMapImage.mirrored(mirrorX, mirrorY)); + if (mTightBoundary) + localPainter->setClipRegion(clipBackup); + localPainter->setRenderHint(QPainter::SmoothPixmapTransform, smoothBackup); + + if (useBuffer) // localPainter painted to mapBuffer, so now draw buffer with original painter + { + delete localPainter; + painter->drawPixmap(mapBufferTarget.toRect(), mapBuffer); + } +} + +/* inherits documentation from base class */ +void QCPColorMap::drawLegendIcon(QCPPainter *painter, const QRectF &rect) const +{ + applyDefaultAntialiasingHint(painter); + // draw map thumbnail: + if (!mLegendIcon.isNull()) + { + QPixmap scaledIcon = mLegendIcon.scaled(rect.size().toSize(), Qt::KeepAspectRatio, Qt::FastTransformation); + QRectF iconRect = QRectF(0, 0, scaledIcon.width(), scaledIcon.height()); + iconRect.moveCenter(rect.center()); + painter->drawPixmap(iconRect.topLeft(), scaledIcon); + } + /* + // draw frame: + painter->setBrush(Qt::NoBrush); + painter->setPen(Qt::black); + painter->drawRect(rect.adjusted(1, 1, 0, 0)); + */ +} + +/* inherits documentation from base class */ +QCPRange QCPColorMap::getKeyRange(bool &foundRange, SignDomain inSignDomain) const +{ + foundRange = true; + QCPRange result = mMapData->keyRange(); + result.normalize(); + if (inSignDomain == QCPAbstractPlottable::sdPositive) + { + if (result.lower <= 0 && result.upper > 0) + result.lower = result.upper*1e-3; + else if (result.lower <= 0 && result.upper <= 0) + foundRange = false; + } else if (inSignDomain == QCPAbstractPlottable::sdNegative) + { + if (result.upper >= 0 && result.lower < 0) + result.upper = result.lower*1e-3; + else if (result.upper >= 0 && result.lower >= 0) + foundRange = false; + } + return result; +} + +/* inherits documentation from base class */ +QCPRange QCPColorMap::getValueRange(bool &foundRange, SignDomain inSignDomain) const +{ + foundRange = true; + QCPRange result = mMapData->valueRange(); + result.normalize(); + if (inSignDomain == QCPAbstractPlottable::sdPositive) + { + if (result.lower <= 0 && result.upper > 0) + result.lower = result.upper*1e-3; + else if (result.lower <= 0 && result.upper <= 0) + foundRange = false; + } else if (inSignDomain == QCPAbstractPlottable::sdNegative) + { + if (result.upper >= 0 && result.lower < 0) + result.upper = result.lower*1e-3; + else if (result.upper >= 0 && result.lower >= 0) + foundRange = false; + } + return result; +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPFinancialData +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPFinancialData + \brief Holds the data of one single data point for QCPFinancial. + + The container for storing multiple data points is \ref QCPFinancialDataMap. + + The stored data is: + \li \a key: coordinate on the key axis of this data point + \li \a open: The opening value at the data point + \li \a high: The high/maximum value at the data point + \li \a low: The low/minimum value at the data point + \li \a close: The closing value at the data point + + \see QCPFinancialDataMap +*/ + +/*! + Constructs a data point with key and all values set to zero. +*/ +QCPFinancialData::QCPFinancialData() : + key(0), + open(0), + high(0), + low(0), + close(0) +{ +} + +/*! + Constructs a data point with the specified \a key and OHLC values. +*/ +QCPFinancialData::QCPFinancialData(double key, double open, double high, double low, double close) : + key(key), + open(open), + high(high), + low(low), + close(close) +{ +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPFinancial +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPFinancial + \brief A plottable representing a financial stock chart + + \image html QCPFinancial.png + + This plottable represents time series data binned to certain intervals, mainly used for stock + charts. The two common representations OHLC (Open-High-Low-Close) bars and Candlesticks can be + set via \ref setChartStyle. + + The data is passed via \ref setData as a set of open/high/low/close values at certain keys + (typically times). This means the data must be already binned appropriately. If data is only + available as a series of values (e.g. \a price against \a time), you can use the static + convenience function \ref timeSeriesToOhlc to generate binned OHLC-data which can then be passed + to \ref setData. + + The width of the OHLC bars/candlesticks can be controlled with \ref setWidth and is given in plot + key coordinates. A typical choice is to set it to (or slightly less than) one bin interval width. + + \section appearance Changing the appearance + + Charts can be either single- or two-colored (\ref setTwoColored). If set to be single-colored, + lines are drawn with the plottable's pen (\ref setPen) and fills with the brush (\ref setBrush). + + If set to two-colored, positive changes of the value during an interval (\a close >= \a open) are + represented with a different pen and brush than negative changes (\a close < \a open). These can + be configured with \ref setPenPositive, \ref setPenNegative, \ref setBrushPositive, and \ref + setBrushNegative. In two-colored mode, the normal plottable pen/brush is ignored. Upon selection + however, the normal selected pen/brush (\ref setSelectedPen, \ref setSelectedBrush) is used, + irrespective of whether the chart is single- or two-colored. + +*/ + +/* start of documentation of inline functions */ + +/*! \fn QCPFinancialDataMap *QCPFinancial::data() const + + Returns a pointer to the internal data storage of type \ref QCPFinancialDataMap. You may use it to + directly manipulate the data, which may be more convenient and faster than using the regular \ref + setData or \ref addData methods, in certain situations. +*/ + +/* end of documentation of inline functions */ + +/*! + Constructs a financial chart which uses \a keyAxis as its key axis ("x") and \a valueAxis as its value + axis ("y"). \a keyAxis and \a valueAxis must reside in the same QCustomPlot instance and not have + the same orientation. If either of these restrictions is violated, a corresponding message is + printed to the debug output (qDebug), the construction is not aborted, though. + + The constructed QCPFinancial can be added to the plot with QCustomPlot::addPlottable, QCustomPlot + then takes ownership of the financial chart. +*/ +QCPFinancial::QCPFinancial(QCPAxis *keyAxis, QCPAxis *valueAxis) : + QCPAbstractPlottable(keyAxis, valueAxis), + mData(0), + mChartStyle(csOhlc), + mWidth(0.5), + mTwoColored(false), + mBrushPositive(QBrush(QColor(210, 210, 255))), + mBrushNegative(QBrush(QColor(255, 210, 210))), + mPenPositive(QPen(QColor(10, 40, 180))), + mPenNegative(QPen(QColor(180, 40, 10))) +{ + mData = new QCPFinancialDataMap; + + setSelectedPen(QPen(QColor(80, 80, 255), 2.5)); + setSelectedBrush(QBrush(QColor(80, 80, 255))); +} + +QCPFinancial::~QCPFinancial() +{ + delete mData; +} + +/*! + Replaces the current data with the provided \a data. + + If \a copy is set to true, data points in \a data will only be copied. if false, the plottable + takes ownership of the passed data and replaces the internal data pointer with it. This is + significantly faster than copying for large datasets. + + Alternatively, you can also access and modify the plottable's data via the \ref data method, which + returns a pointer to the internal \ref QCPFinancialDataMap. + + \see timeSeriesToOhlc +*/ +void QCPFinancial::setData(QCPFinancialDataMap *data, bool copy) +{ + if (mData == data) + { + qDebug() << Q_FUNC_INFO << "The data pointer is already in (and owned by) this plottable" << reinterpret_cast(data); + return; + } + if (copy) + { + *mData = *data; + } else + { + delete mData; + mData = data; + } +} + +/*! \overload + + Replaces the current data with the provided open/high/low/close data. The provided vectors should + have equal length. Else, the number of added points will be the size of the smallest vector. + + \see timeSeriesToOhlc +*/ +void QCPFinancial::setData(const QVector &key, const QVector &open, const QVector &high, const QVector &low, const QVector &close) +{ + mData->clear(); + int n = key.size(); + n = qMin(n, open.size()); + n = qMin(n, high.size()); + n = qMin(n, low.size()); + n = qMin(n, close.size()); + for (int i=0; iinsertMulti(key[i], QCPFinancialData(key[i], open[i], high[i], low[i], close[i])); + } +} + +/*! + Sets which representation style shall be used to display the OHLC data. +*/ +void QCPFinancial::setChartStyle(QCPFinancial::ChartStyle style) +{ + mChartStyle = style; +} + +/*! + Sets the width of the individual bars/candlesticks to \a width in plot key coordinates. + + A typical choice is to set it to (or slightly less than) one bin interval width. +*/ +void QCPFinancial::setWidth(double width) +{ + mWidth = width; +} + +/*! + Sets whether this chart shall contrast positive from negative trends per data point by using two + separate colors to draw the respective bars/candlesticks. + + If \a twoColored is false, the normal plottable's pen and brush are used (\ref setPen, \ref + setBrush). + + \see setPenPositive, setPenNegative, setBrushPositive, setBrushNegative +*/ +void QCPFinancial::setTwoColored(bool twoColored) +{ + mTwoColored = twoColored; +} + +/*! + If \ref setTwoColored is set to true, this function controls the brush that is used to draw fills + of data points with a positive trend (i.e. bars/candlesticks with close >= open). + + If \a twoColored is false, the normal plottable's pen and brush are used (\ref setPen, \ref + setBrush). + + \see setBrushNegative, setPenPositive, setPenNegative +*/ +void QCPFinancial::setBrushPositive(const QBrush &brush) +{ + mBrushPositive = brush; +} + +/*! + If \ref setTwoColored is set to true, this function controls the brush that is used to draw fills + of data points with a negative trend (i.e. bars/candlesticks with close < open). + + If \a twoColored is false, the normal plottable's pen and brush are used (\ref setPen, \ref + setBrush). + + \see setBrushPositive, setPenNegative, setPenPositive +*/ +void QCPFinancial::setBrushNegative(const QBrush &brush) +{ + mBrushNegative = brush; +} + +/*! + If \ref setTwoColored is set to true, this function controls the pen that is used to draw + outlines of data points with a positive trend (i.e. bars/candlesticks with close >= open). + + If \a twoColored is false, the normal plottable's pen and brush are used (\ref setPen, \ref + setBrush). + + \see setPenNegative, setBrushPositive, setBrushNegative +*/ +void QCPFinancial::setPenPositive(const QPen &pen) +{ + mPenPositive = pen; +} + +/*! + If \ref setTwoColored is set to true, this function controls the pen that is used to draw + outlines of data points with a negative trend (i.e. bars/candlesticks with close < open). + + If \a twoColored is false, the normal plottable's pen and brush are used (\ref setPen, \ref + setBrush). + + \see setPenPositive, setBrushNegative, setBrushPositive +*/ +void QCPFinancial::setPenNegative(const QPen &pen) +{ + mPenNegative = pen; +} + +/*! + Adds the provided data points in \a dataMap to the current data. + + Alternatively, you can also access and modify the data via the \ref data method, which returns a + pointer to the internal \ref QCPFinancialDataMap. + + \see removeData +*/ +void QCPFinancial::addData(const QCPFinancialDataMap &dataMap) +{ + mData->unite(dataMap); +} + +/*! \overload + + Adds the provided single data point in \a data to the current data. + + Alternatively, you can also access and modify the data via the \ref data method, which returns a + pointer to the internal \ref QCPFinancialData. + + \see removeData +*/ +void QCPFinancial::addData(const QCPFinancialData &data) +{ + mData->insertMulti(data.key, data); +} + +/*! \overload + + Adds the provided single data point given by \a key, \a open, \a high, \a low, and \a close to + the current data. + + Alternatively, you can also access and modify the data via the \ref data method, which returns a + pointer to the internal \ref QCPFinancialData. + + \see removeData +*/ +void QCPFinancial::addData(double key, double open, double high, double low, double close) +{ + mData->insertMulti(key, QCPFinancialData(key, open, high, low, close)); +} + +/*! \overload + + Adds the provided open/high/low/close data to the current data. + + Alternatively, you can also access and modify the data via the \ref data method, which returns a + pointer to the internal \ref QCPFinancialData. + + \see removeData +*/ +void QCPFinancial::addData(const QVector &key, const QVector &open, const QVector &high, const QVector &low, const QVector &close) +{ + int n = key.size(); + n = qMin(n, open.size()); + n = qMin(n, high.size()); + n = qMin(n, low.size()); + n = qMin(n, close.size()); + for (int i=0; iinsertMulti(key[i], QCPFinancialData(key[i], open[i], high[i], low[i], close[i])); + } +} + +/*! + Removes all data points with keys smaller than \a key. + + \see addData, clearData +*/ +void QCPFinancial::removeDataBefore(double key) +{ + QCPFinancialDataMap::iterator it = mData->begin(); + while (it != mData->end() && it.key() < key) + it = mData->erase(it); +} + +/*! + Removes all data points with keys greater than \a key. + + \see addData, clearData +*/ +void QCPFinancial::removeDataAfter(double key) +{ + if (mData->isEmpty()) return; + QCPFinancialDataMap::iterator it = mData->upperBound(key); + while (it != mData->end()) + it = mData->erase(it); +} + +/*! + Removes all data points with keys between \a fromKey and \a toKey. if \a fromKey is greater or + equal to \a toKey, the function does nothing. To remove a single data point with known key, use + \ref removeData(double key). + + \see addData, clearData +*/ +void QCPFinancial::removeData(double fromKey, double toKey) +{ + if (fromKey >= toKey || mData->isEmpty()) return; + QCPFinancialDataMap::iterator it = mData->upperBound(fromKey); + QCPFinancialDataMap::iterator itEnd = mData->upperBound(toKey); + while (it != itEnd) + it = mData->erase(it); +} + +/*! \overload + + Removes a single data point at \a key. If the position is not known with absolute precision, + consider using \ref removeData(double fromKey, double toKey) with a small fuzziness interval + around the suspected position, depeding on the precision with which the key is known. + + \see addData, clearData +*/ +void QCPFinancial::removeData(double key) +{ + mData->remove(key); +} + +/*! + Removes all data points. + + \see removeData, removeDataAfter, removeDataBefore +*/ +void QCPFinancial::clearData() +{ + mData->clear(); +} + +/* inherits documentation from base class */ +double QCPFinancial::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (onlySelectable && !mSelectable) + return -1; + if (!mKeyAxis || !mValueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return -1; } + + if (mKeyAxis.data()->axisRect()->rect().contains(pos.toPoint())) + { + // get visible data range: + QCPFinancialDataMap::const_iterator lower, upper; // note that upper is the actual upper point, and not 1 step after the upper point + getVisibleDataBounds(lower, upper); + if (lower == mData->constEnd() || upper == mData->constEnd()) + return -1; + // perform select test according to configured style: + switch (mChartStyle) + { + case QCPFinancial::csOhlc: + return ohlcSelectTest(pos, lower, upper+1); break; + case QCPFinancial::csCandlestick: + return candlestickSelectTest(pos, lower, upper+1); break; + } + } + return -1; +} + +/*! + A convenience function that converts time series data (\a value against \a time) to OHLC binned + data points. The return value can then be passed on to \ref setData. + + The size of the bins can be controlled with \a timeBinSize in the same units as \a time is given. + For example, if the unit of \a time is seconds and single OHLC/Candlesticks should span an hour + each, set \a timeBinSize to 3600. + + \a timeBinOffset allows to control precisely at what \a time coordinate a bin should start. The + value passed as \a timeBinOffset doesn't need to be in the range encompassed by the \a time keys. + It merely defines the mathematical offset/phase of the bins that will be used to process the + data. +*/ +QCPFinancialDataMap QCPFinancial::timeSeriesToOhlc(const QVector &time, const QVector &value, double timeBinSize, double timeBinOffset) +{ + QCPFinancialDataMap map; + int count = qMin(time.size(), value.size()); + if (count == 0) + return QCPFinancialDataMap(); + + QCPFinancialData currentBinData(0, value.first(), value.first(), value.first(), value.first()); + int currentBinIndex = qFloor((time.first()-timeBinOffset)/timeBinSize+0.5); + for (int i=0; i currentBinData.high) currentBinData.high = value.at(i); + if (i == count-1) // last data point is in current bin, finalize bin: + { + currentBinData.close = value.at(i); + currentBinData.key = timeBinOffset+(index)*timeBinSize; + map.insert(currentBinData.key, currentBinData); + } + } else // data point not anymore in current bin, set close of old and open of new bin, and add old to map: + { + // finalize current bin: + currentBinData.close = value.at(i-1); + currentBinData.key = timeBinOffset+(index-1)*timeBinSize; + map.insert(currentBinData.key, currentBinData); + // start next bin: + currentBinIndex = index; + currentBinData.open = value.at(i); + currentBinData.high = value.at(i); + currentBinData.low = value.at(i); + } + } + + return map; +} + +/* inherits documentation from base class */ +void QCPFinancial::draw(QCPPainter *painter) +{ + // get visible data range: + QCPFinancialDataMap::const_iterator lower, upper; // note that upper is the actual upper point, and not 1 step after the upper point + getVisibleDataBounds(lower, upper); + if (lower == mData->constEnd() || upper == mData->constEnd()) + return; + + // draw visible data range according to configured style: + switch (mChartStyle) + { + case QCPFinancial::csOhlc: + drawOhlcPlot(painter, lower, upper+1); break; + case QCPFinancial::csCandlestick: + drawCandlestickPlot(painter, lower, upper+1); break; + } +} + +/* inherits documentation from base class */ +void QCPFinancial::drawLegendIcon(QCPPainter *painter, const QRectF &rect) const +{ + painter->setAntialiasing(false); // legend icon especially of csCandlestick looks better without antialiasing + if (mChartStyle == csOhlc) + { + if (mTwoColored) + { + // draw upper left half icon with positive color: + painter->setBrush(mBrushPositive); + painter->setPen(mPenPositive); + painter->setClipRegion(QRegion(QPolygon() << rect.bottomLeft().toPoint() << rect.topRight().toPoint() << rect.topLeft().toPoint())); + painter->drawLine(QLineF(0, rect.height()*0.5, rect.width(), rect.height()*0.5).translated(rect.topLeft())); + painter->drawLine(QLineF(rect.width()*0.2, rect.height()*0.3, rect.width()*0.2, rect.height()*0.5).translated(rect.topLeft())); + painter->drawLine(QLineF(rect.width()*0.8, rect.height()*0.5, rect.width()*0.8, rect.height()*0.7).translated(rect.topLeft())); + // draw bottom right hald icon with negative color: + painter->setBrush(mBrushNegative); + painter->setPen(mPenNegative); + painter->setClipRegion(QRegion(QPolygon() << rect.bottomLeft().toPoint() << rect.topRight().toPoint() << rect.bottomRight().toPoint())); + painter->drawLine(QLineF(0, rect.height()*0.5, rect.width(), rect.height()*0.5).translated(rect.topLeft())); + painter->drawLine(QLineF(rect.width()*0.2, rect.height()*0.3, rect.width()*0.2, rect.height()*0.5).translated(rect.topLeft())); + painter->drawLine(QLineF(rect.width()*0.8, rect.height()*0.5, rect.width()*0.8, rect.height()*0.7).translated(rect.topLeft())); + } else + { + painter->setBrush(mBrush); + painter->setPen(mPen); + painter->drawLine(QLineF(0, rect.height()*0.5, rect.width(), rect.height()*0.5).translated(rect.topLeft())); + painter->drawLine(QLineF(rect.width()*0.2, rect.height()*0.3, rect.width()*0.2, rect.height()*0.5).translated(rect.topLeft())); + painter->drawLine(QLineF(rect.width()*0.8, rect.height()*0.5, rect.width()*0.8, rect.height()*0.7).translated(rect.topLeft())); + } + } else if (mChartStyle == csCandlestick) + { + if (mTwoColored) + { + // draw upper left half icon with positive color: + painter->setBrush(mBrushPositive); + painter->setPen(mPenPositive); + painter->setClipRegion(QRegion(QPolygon() << rect.bottomLeft().toPoint() << rect.topRight().toPoint() << rect.topLeft().toPoint())); + painter->drawLine(QLineF(0, rect.height()*0.5, rect.width()*0.25, rect.height()*0.5).translated(rect.topLeft())); + painter->drawLine(QLineF(rect.width()*0.75, rect.height()*0.5, rect.width(), rect.height()*0.5).translated(rect.topLeft())); + painter->drawRect(QRectF(rect.width()*0.25, rect.height()*0.25, rect.width()*0.5, rect.height()*0.5).translated(rect.topLeft())); + // draw bottom right hald icon with negative color: + painter->setBrush(mBrushNegative); + painter->setPen(mPenNegative); + painter->setClipRegion(QRegion(QPolygon() << rect.bottomLeft().toPoint() << rect.topRight().toPoint() << rect.bottomRight().toPoint())); + painter->drawLine(QLineF(0, rect.height()*0.5, rect.width()*0.25, rect.height()*0.5).translated(rect.topLeft())); + painter->drawLine(QLineF(rect.width()*0.75, rect.height()*0.5, rect.width(), rect.height()*0.5).translated(rect.topLeft())); + painter->drawRect(QRectF(rect.width()*0.25, rect.height()*0.25, rect.width()*0.5, rect.height()*0.5).translated(rect.topLeft())); + } else + { + painter->setBrush(mBrush); + painter->setPen(mPen); + painter->drawLine(QLineF(0, rect.height()*0.5, rect.width()*0.25, rect.height()*0.5).translated(rect.topLeft())); + painter->drawLine(QLineF(rect.width()*0.75, rect.height()*0.5, rect.width(), rect.height()*0.5).translated(rect.topLeft())); + painter->drawRect(QRectF(rect.width()*0.25, rect.height()*0.25, rect.width()*0.5, rect.height()*0.5).translated(rect.topLeft())); + } + } +} + +/* inherits documentation from base class */ +QCPRange QCPFinancial::getKeyRange(bool &foundRange, QCPAbstractPlottable::SignDomain inSignDomain) const +{ + QCPRange range; + bool haveLower = false; + bool haveUpper = false; + + double current; + QCPFinancialDataMap::const_iterator it = mData->constBegin(); + while (it != mData->constEnd()) + { + current = it.value().key; + if (inSignDomain == sdBoth || (inSignDomain == sdNegative && current < 0) || (inSignDomain == sdPositive && current > 0)) + { + if (current < range.lower || !haveLower) + { + range.lower = current; + haveLower = true; + } + if (current > range.upper || !haveUpper) + { + range.upper = current; + haveUpper = true; + } + } + ++it; + } + // determine exact range by including width of bars/flags: + if (haveLower && mKeyAxis) + range.lower = range.lower-mWidth*0.5; + if (haveUpper && mKeyAxis) + range.upper = range.upper+mWidth*0.5; + foundRange = haveLower && haveUpper; + return range; +} + +/* inherits documentation from base class */ +QCPRange QCPFinancial::getValueRange(bool &foundRange, QCPAbstractPlottable::SignDomain inSignDomain) const +{ + QCPRange range; + bool haveLower = false; + bool haveUpper = false; + + QCPFinancialDataMap::const_iterator it = mData->constBegin(); + while (it != mData->constEnd()) + { + // high: + if (inSignDomain == sdBoth || (inSignDomain == sdNegative && it.value().high < 0) || (inSignDomain == sdPositive && it.value().high > 0)) + { + if (it.value().high < range.lower || !haveLower) + { + range.lower = it.value().high; + haveLower = true; + } + if (it.value().high > range.upper || !haveUpper) + { + range.upper = it.value().high; + haveUpper = true; + } + } + // low: + if (inSignDomain == sdBoth || (inSignDomain == sdNegative && it.value().low < 0) || (inSignDomain == sdPositive && it.value().low > 0)) + { + if (it.value().low < range.lower || !haveLower) + { + range.lower = it.value().low; + haveLower = true; + } + if (it.value().low > range.upper || !haveUpper) + { + range.upper = it.value().low; + haveUpper = true; + } + } + ++it; + } + + foundRange = haveLower && haveUpper; + return range; +} + +/*! \internal + + Draws the data from \a begin to \a end as OHLC bars with the provided \a painter. + + This method is a helper function for \ref draw. It is used when the chart style is \ref csOhlc. +*/ +void QCPFinancial::drawOhlcPlot(QCPPainter *painter, const QCPFinancialDataMap::const_iterator &begin, const QCPFinancialDataMap::const_iterator &end) +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + + QPen linePen; + + if (keyAxis->orientation() == Qt::Horizontal) + { + for (QCPFinancialDataMap::const_iterator it = begin; it != end; ++it) + { + if (mSelected) + linePen = mSelectedPen; + else if (mTwoColored) + linePen = it.value().close >= it.value().open ? mPenPositive : mPenNegative; + else + linePen = mPen; + painter->setPen(linePen); + double keyPixel = keyAxis->coordToPixel(it.value().key); + double openPixel = valueAxis->coordToPixel(it.value().open); + double closePixel = valueAxis->coordToPixel(it.value().close); + // draw backbone: + painter->drawLine(QPointF(keyPixel, valueAxis->coordToPixel(it.value().high)), QPointF(keyPixel, valueAxis->coordToPixel(it.value().low))); + // draw open: + double keyWidthPixels = keyPixel-keyAxis->coordToPixel(it.value().key-mWidth*0.5); // sign of this makes sure open/close are on correct sides + painter->drawLine(QPointF(keyPixel-keyWidthPixels, openPixel), QPointF(keyPixel, openPixel)); + // draw close: + painter->drawLine(QPointF(keyPixel, closePixel), QPointF(keyPixel+keyWidthPixels, closePixel)); + } + } else + { + for (QCPFinancialDataMap::const_iterator it = begin; it != end; ++it) + { + if (mSelected) + linePen = mSelectedPen; + else if (mTwoColored) + linePen = it.value().close >= it.value().open ? mPenPositive : mPenNegative; + else + linePen = mPen; + painter->setPen(linePen); + double keyPixel = keyAxis->coordToPixel(it.value().key); + double openPixel = valueAxis->coordToPixel(it.value().open); + double closePixel = valueAxis->coordToPixel(it.value().close); + // draw backbone: + painter->drawLine(QPointF(valueAxis->coordToPixel(it.value().high), keyPixel), QPointF(valueAxis->coordToPixel(it.value().low), keyPixel)); + // draw open: + double keyWidthPixels = keyPixel-keyAxis->coordToPixel(it.value().key-mWidth*0.5); // sign of this makes sure open/close are on correct sides + painter->drawLine(QPointF(openPixel, keyPixel-keyWidthPixels), QPointF(openPixel, keyPixel)); + // draw close: + painter->drawLine(QPointF(closePixel, keyPixel), QPointF(closePixel, keyPixel+keyWidthPixels)); + } + } +} + +/*! \internal + + Draws the data from \a begin to \a end as Candlesticks with the provided \a painter. + + This method is a helper function for \ref draw. It is used when the chart style is \ref csCandlestick. +*/ +void QCPFinancial::drawCandlestickPlot(QCPPainter *painter, const QCPFinancialDataMap::const_iterator &begin, const QCPFinancialDataMap::const_iterator &end) +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + + QPen linePen; + QBrush boxBrush; + + if (keyAxis->orientation() == Qt::Horizontal) + { + for (QCPFinancialDataMap::const_iterator it = begin; it != end; ++it) + { + if (mSelected) + { + linePen = mSelectedPen; + boxBrush = mSelectedBrush; + } else if (mTwoColored) + { + if (it.value().close >= it.value().open) + { + linePen = mPenPositive; + boxBrush = mBrushPositive; + } else + { + linePen = mPenNegative; + boxBrush = mBrushNegative; + } + } else + { + linePen = mPen; + boxBrush = mBrush; + } + painter->setPen(linePen); + painter->setBrush(boxBrush); + double keyPixel = keyAxis->coordToPixel(it.value().key); + double openPixel = valueAxis->coordToPixel(it.value().open); + double closePixel = valueAxis->coordToPixel(it.value().close); + // draw high: + painter->drawLine(QPointF(keyPixel, valueAxis->coordToPixel(it.value().high)), QPointF(keyPixel, valueAxis->coordToPixel(qMax(it.value().open, it.value().close)))); + // draw low: + painter->drawLine(QPointF(keyPixel, valueAxis->coordToPixel(it.value().low)), QPointF(keyPixel, valueAxis->coordToPixel(qMin(it.value().open, it.value().close)))); + // draw open-close box: + double keyWidthPixels = keyPixel-keyAxis->coordToPixel(it.value().key-mWidth*0.5); + painter->drawRect(QRectF(QPointF(keyPixel-keyWidthPixels, closePixel), QPointF(keyPixel+keyWidthPixels, openPixel))); + } + } else // keyAxis->orientation() == Qt::Vertical + { + for (QCPFinancialDataMap::const_iterator it = begin; it != end; ++it) + { + if (mSelected) + { + linePen = mSelectedPen; + boxBrush = mSelectedBrush; + } else if (mTwoColored) + { + if (it.value().close >= it.value().open) + { + linePen = mPenPositive; + boxBrush = mBrushPositive; + } else + { + linePen = mPenNegative; + boxBrush = mBrushNegative; + } + } else + { + linePen = mPen; + boxBrush = mBrush; + } + painter->setPen(linePen); + painter->setBrush(boxBrush); + double keyPixel = keyAxis->coordToPixel(it.value().key); + double openPixel = valueAxis->coordToPixel(it.value().open); + double closePixel = valueAxis->coordToPixel(it.value().close); + // draw high: + painter->drawLine(QPointF(valueAxis->coordToPixel(it.value().high), keyPixel), QPointF(valueAxis->coordToPixel(qMax(it.value().open, it.value().close)), keyPixel)); + // draw low: + painter->drawLine(QPointF(valueAxis->coordToPixel(it.value().low), keyPixel), QPointF(valueAxis->coordToPixel(qMin(it.value().open, it.value().close)), keyPixel)); + // draw open-close box: + double keyWidthPixels = keyPixel-keyAxis->coordToPixel(it.value().key-mWidth*0.5); + painter->drawRect(QRectF(QPointF(closePixel, keyPixel-keyWidthPixels), QPointF(openPixel, keyPixel+keyWidthPixels))); + } + } +} + +/*! \internal + + This method is a helper function for \ref selectTest. It is used to test for selection when the + chart style is \ref csOhlc. It only tests against the data points between \a begin and \a end. +*/ +double QCPFinancial::ohlcSelectTest(const QPointF &pos, const QCPFinancialDataMap::const_iterator &begin, const QCPFinancialDataMap::const_iterator &end) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return -1; } + + double minDistSqr = std::numeric_limits::max(); + QCPFinancialDataMap::const_iterator it; + if (keyAxis->orientation() == Qt::Horizontal) + { + for (it = begin; it != end; ++it) + { + double keyPixel = keyAxis->coordToPixel(it.value().key); + // calculate distance to backbone: + double currentDistSqr = distSqrToLine(QPointF(keyPixel, valueAxis->coordToPixel(it.value().high)), QPointF(keyPixel, valueAxis->coordToPixel(it.value().low)), pos); + if (currentDistSqr < minDistSqr) + minDistSqr = currentDistSqr; + } + } else // keyAxis->orientation() == Qt::Vertical + { + for (it = begin; it != end; ++it) + { + double keyPixel = keyAxis->coordToPixel(it.value().key); + // calculate distance to backbone: + double currentDistSqr = distSqrToLine(QPointF(valueAxis->coordToPixel(it.value().high), keyPixel), QPointF(valueAxis->coordToPixel(it.value().low), keyPixel), pos); + if (currentDistSqr < minDistSqr) + minDistSqr = currentDistSqr; + } + } + return qSqrt(minDistSqr); +} + +/*! \internal + + This method is a helper function for \ref selectTest. It is used to test for selection when the + chart style is \ref csCandlestick. It only tests against the data points between \a begin and \a + end. +*/ +double QCPFinancial::candlestickSelectTest(const QPointF &pos, const QCPFinancialDataMap::const_iterator &begin, const QCPFinancialDataMap::const_iterator &end) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return -1; } + + double minDistSqr = std::numeric_limits::max(); + QCPFinancialDataMap::const_iterator it; + if (keyAxis->orientation() == Qt::Horizontal) + { + for (it = begin; it != end; ++it) + { + double currentDistSqr; + // determine whether pos is in open-close-box: + QCPRange boxKeyRange(it.value().key-mWidth*0.5, it.value().key+mWidth*0.5); + QCPRange boxValueRange(it.value().close, it.value().open); + double posKey, posValue; + pixelsToCoords(pos, posKey, posValue); + if (boxKeyRange.contains(posKey) && boxValueRange.contains(posValue)) // is in open-close-box + { + currentDistSqr = mParentPlot->selectionTolerance()*0.99 * mParentPlot->selectionTolerance()*0.99; + } else + { + // calculate distance to high/low lines: + double keyPixel = keyAxis->coordToPixel(it.value().key); + double highLineDistSqr = distSqrToLine(QPointF(keyPixel, valueAxis->coordToPixel(it.value().high)), QPointF(keyPixel, valueAxis->coordToPixel(qMax(it.value().open, it.value().close))), pos); + double lowLineDistSqr = distSqrToLine(QPointF(keyPixel, valueAxis->coordToPixel(it.value().low)), QPointF(keyPixel, valueAxis->coordToPixel(qMin(it.value().open, it.value().close))), pos); + currentDistSqr = qMin(highLineDistSqr, lowLineDistSqr); + } + if (currentDistSqr < minDistSqr) + minDistSqr = currentDistSqr; + } + } else // keyAxis->orientation() == Qt::Vertical + { + for (it = begin; it != end; ++it) + { + double currentDistSqr; + // determine whether pos is in open-close-box: + QCPRange boxKeyRange(it.value().key-mWidth*0.5, it.value().key+mWidth*0.5); + QCPRange boxValueRange(it.value().close, it.value().open); + double posKey, posValue; + pixelsToCoords(pos, posKey, posValue); + if (boxKeyRange.contains(posKey) && boxValueRange.contains(posValue)) // is in open-close-box + { + currentDistSqr = mParentPlot->selectionTolerance()*0.99 * mParentPlot->selectionTolerance()*0.99; + } else + { + // calculate distance to high/low lines: + double keyPixel = keyAxis->coordToPixel(it.value().key); + double highLineDistSqr = distSqrToLine(QPointF(valueAxis->coordToPixel(it.value().high), keyPixel), QPointF(valueAxis->coordToPixel(qMax(it.value().open, it.value().close)), keyPixel), pos); + double lowLineDistSqr = distSqrToLine(QPointF(valueAxis->coordToPixel(it.value().low), keyPixel), QPointF(valueAxis->coordToPixel(qMin(it.value().open, it.value().close)), keyPixel), pos); + currentDistSqr = qMin(highLineDistSqr, lowLineDistSqr); + } + if (currentDistSqr < minDistSqr) + minDistSqr = currentDistSqr; + } + } + return qSqrt(minDistSqr); +} + +/*! \internal + + called by the drawing methods to determine which data (key) range is visible at the current key + axis range setting, so only that needs to be processed. + + \a lower returns an iterator to the lowest data point that needs to be taken into account when + plotting. Note that in order to get a clean plot all the way to the edge of the axis rect, \a + lower may still be just outside the visible range. + + \a upper returns an iterator to the highest data point. Same as before, \a upper may also lie + just outside of the visible range. + + if the plottable contains no data, both \a lower and \a upper point to constEnd. + + \see QCPGraph::getVisibleDataBounds +*/ +void QCPFinancial::getVisibleDataBounds(QCPFinancialDataMap::const_iterator &lower, QCPFinancialDataMap::const_iterator &upper) const +{ + if (!mKeyAxis) { qDebug() << Q_FUNC_INFO << "invalid key axis"; return; } + if (mData->isEmpty()) + { + lower = mData->constEnd(); + upper = mData->constEnd(); + return; + } + + // get visible data range as QMap iterators + QCPFinancialDataMap::const_iterator lbound = mData->lowerBound(mKeyAxis.data()->range().lower); + QCPFinancialDataMap::const_iterator ubound = mData->upperBound(mKeyAxis.data()->range().upper); + bool lowoutlier = lbound != mData->constBegin(); // indicates whether there exist points below axis range + bool highoutlier = ubound != mData->constEnd(); // indicates whether there exist points above axis range + + lower = (lowoutlier ? lbound-1 : lbound); // data point range that will be actually drawn + upper = (highoutlier ? ubound : ubound-1); // data point range that will be actually drawn +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPItemStraightLine +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPItemStraightLine + \brief A straight line that spans infinitely in both directions + + \image html QCPItemStraightLine.png "Straight line example. Blue dotted circles are anchors, solid blue discs are positions." + + It has two positions, \a point1 and \a point2, which define the straight line. +*/ + +/*! + Creates a straight line item and sets default values. + + The constructed item can be added to the plot with QCustomPlot::addItem. +*/ +QCPItemStraightLine::QCPItemStraightLine(QCustomPlot *parentPlot) : + QCPAbstractItem(parentPlot), + point1(createPosition(QLatin1String("point1"))), + point2(createPosition(QLatin1String("point2"))) +{ + point1->setCoords(0, 0); + point2->setCoords(1, 1); + + setPen(QPen(Qt::black)); + setSelectedPen(QPen(Qt::blue,2)); +} + +QCPItemStraightLine::~QCPItemStraightLine() +{ +} + +/*! + Sets the pen that will be used to draw the line + + \see setSelectedPen +*/ +void QCPItemStraightLine::setPen(const QPen &pen) +{ + mPen = pen; +} + +/*! + Sets the pen that will be used to draw the line when selected + + \see setPen, setSelected +*/ +void QCPItemStraightLine::setSelectedPen(const QPen &pen) +{ + mSelectedPen = pen; +} + +/* inherits documentation from base class */ +double QCPItemStraightLine::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (onlySelectable && !mSelectable) + return -1; + + return distToStraightLine(QVector2D(point1->pixelPoint()), QVector2D(point2->pixelPoint()-point1->pixelPoint()), QVector2D(pos)); +} + +/* inherits documentation from base class */ +void QCPItemStraightLine::draw(QCPPainter *painter) +{ + QVector2D start(point1->pixelPoint()); + QVector2D end(point2->pixelPoint()); + // get visible segment of straight line inside clipRect: + double clipPad = mainPen().widthF(); + QLineF line = getRectClippedStraightLine(start, end-start, clipRect().adjusted(-clipPad, -clipPad, clipPad, clipPad)); + // paint visible segment, if existent: + if (!line.isNull()) + { + painter->setPen(mainPen()); + painter->drawLine(line); + } +} + +/*! \internal + + finds the shortest distance of \a point to the straight line defined by the base point \a + base and the direction vector \a vec. + + This is a helper function for \ref selectTest. +*/ +double QCPItemStraightLine::distToStraightLine(const QVector2D &base, const QVector2D &vec, const QVector2D &point) const +{ + return qAbs((base.y()-point.y())*vec.x()-(base.x()-point.x())*vec.y())/vec.length(); +} + +/*! \internal + + Returns the section of the straight line defined by \a base and direction vector \a + vec, that is visible in the specified \a rect. + + This is a helper function for \ref draw. +*/ +QLineF QCPItemStraightLine::getRectClippedStraightLine(const QVector2D &base, const QVector2D &vec, const QRect &rect) const +{ + double bx, by; + double gamma; + QLineF result; + if (vec.x() == 0 && vec.y() == 0) + return result; + if (qFuzzyIsNull(vec.x())) // line is vertical + { + // check top of rect: + bx = rect.left(); + by = rect.top(); + gamma = base.x()-bx + (by-base.y())*vec.x()/vec.y(); + if (gamma >= 0 && gamma <= rect.width()) + result.setLine(bx+gamma, rect.top(), bx+gamma, rect.bottom()); // no need to check bottom because we know line is vertical + } else if (qFuzzyIsNull(vec.y())) // line is horizontal + { + // check left of rect: + bx = rect.left(); + by = rect.top(); + gamma = base.y()-by + (bx-base.x())*vec.y()/vec.x(); + if (gamma >= 0 && gamma <= rect.height()) + result.setLine(rect.left(), by+gamma, rect.right(), by+gamma); // no need to check right because we know line is horizontal + } else // line is skewed + { + QList pointVectors; + // check top of rect: + bx = rect.left(); + by = rect.top(); + gamma = base.x()-bx + (by-base.y())*vec.x()/vec.y(); + if (gamma >= 0 && gamma <= rect.width()) + pointVectors.append(QVector2D(bx+gamma, by)); + // check bottom of rect: + bx = rect.left(); + by = rect.bottom(); + gamma = base.x()-bx + (by-base.y())*vec.x()/vec.y(); + if (gamma >= 0 && gamma <= rect.width()) + pointVectors.append(QVector2D(bx+gamma, by)); + // check left of rect: + bx = rect.left(); + by = rect.top(); + gamma = base.y()-by + (bx-base.x())*vec.y()/vec.x(); + if (gamma >= 0 && gamma <= rect.height()) + pointVectors.append(QVector2D(bx, by+gamma)); + // check right of rect: + bx = rect.right(); + by = rect.top(); + gamma = base.y()-by + (bx-base.x())*vec.y()/vec.x(); + if (gamma >= 0 && gamma <= rect.height()) + pointVectors.append(QVector2D(bx, by+gamma)); + + // evaluate points: + if (pointVectors.size() == 2) + { + result.setPoints(pointVectors.at(0).toPointF(), pointVectors.at(1).toPointF()); + } else if (pointVectors.size() > 2) + { + // line probably goes through corner of rect, and we got two points there. single out the point pair with greatest distance: + double distSqrMax = 0; + QVector2D pv1, pv2; + for (int i=0; i distSqrMax) + { + pv1 = pointVectors.at(i); + pv2 = pointVectors.at(k); + distSqrMax = distSqr; + } + } + } + result.setPoints(pv1.toPointF(), pv2.toPointF()); + } + } + return result; +} + +/*! \internal + + Returns the pen that should be used for drawing lines. Returns mPen when the + item is not selected and mSelectedPen when it is. +*/ +QPen QCPItemStraightLine::mainPen() const +{ + return mSelected ? mSelectedPen : mPen; +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPItemLine +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPItemLine + \brief A line from one point to another + + \image html QCPItemLine.png "Line example. Blue dotted circles are anchors, solid blue discs are positions." + + It has two positions, \a start and \a end, which define the end points of the line. + + With \ref setHead and \ref setTail you may set different line ending styles, e.g. to create an arrow. +*/ + +/*! + Creates a line item and sets default values. + + The constructed item can be added to the plot with QCustomPlot::addItem. +*/ +QCPItemLine::QCPItemLine(QCustomPlot *parentPlot) : + QCPAbstractItem(parentPlot), + start(createPosition(QLatin1String("start"))), + end(createPosition(QLatin1String("end"))) +{ + start->setCoords(0, 0); + end->setCoords(1, 1); + + setPen(QPen(Qt::black)); + setSelectedPen(QPen(Qt::blue,2)); +} + +QCPItemLine::~QCPItemLine() +{ +} + +/*! + Sets the pen that will be used to draw the line + + \see setSelectedPen +*/ +void QCPItemLine::setPen(const QPen &pen) +{ + mPen = pen; +} + +/*! + Sets the pen that will be used to draw the line when selected + + \see setPen, setSelected +*/ +void QCPItemLine::setSelectedPen(const QPen &pen) +{ + mSelectedPen = pen; +} + +/*! + Sets the line ending style of the head. The head corresponds to the \a end position. + + Note that due to the overloaded QCPLineEnding constructor, you may directly specify + a QCPLineEnding::EndingStyle here, e.g. \code setHead(QCPLineEnding::esSpikeArrow) \endcode + + \see setTail +*/ +void QCPItemLine::setHead(const QCPLineEnding &head) +{ + mHead = head; +} + +/*! + Sets the line ending style of the tail. The tail corresponds to the \a start position. + + Note that due to the overloaded QCPLineEnding constructor, you may directly specify + a QCPLineEnding::EndingStyle here, e.g. \code setTail(QCPLineEnding::esSpikeArrow) \endcode + + \see setHead +*/ +void QCPItemLine::setTail(const QCPLineEnding &tail) +{ + mTail = tail; +} + +/* inherits documentation from base class */ +double QCPItemLine::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (onlySelectable && !mSelectable) + return -1; + + return qSqrt(distSqrToLine(start->pixelPoint(), end->pixelPoint(), pos)); +} + +/* inherits documentation from base class */ +void QCPItemLine::draw(QCPPainter *painter) +{ + QVector2D startVec(start->pixelPoint()); + QVector2D endVec(end->pixelPoint()); + if (startVec.toPoint() == endVec.toPoint()) + return; + // get visible segment of straight line inside clipRect: + double clipPad = qMax(mHead.boundingDistance(), mTail.boundingDistance()); + clipPad = qMax(clipPad, (double)mainPen().widthF()); + QLineF line = getRectClippedLine(startVec, endVec, clipRect().adjusted(-clipPad, -clipPad, clipPad, clipPad)); + // paint visible segment, if existent: + if (!line.isNull()) + { + painter->setPen(mainPen()); + painter->drawLine(line); + painter->setBrush(Qt::SolidPattern); + if (mTail.style() != QCPLineEnding::esNone) + mTail.draw(painter, startVec, startVec-endVec); + if (mHead.style() != QCPLineEnding::esNone) + mHead.draw(painter, endVec, endVec-startVec); + } +} + +/*! \internal + + Returns the section of the line defined by \a start and \a end, that is visible in the specified + \a rect. + + This is a helper function for \ref draw. +*/ +QLineF QCPItemLine::getRectClippedLine(const QVector2D &start, const QVector2D &end, const QRect &rect) const +{ + bool containsStart = rect.contains(start.x(), start.y()); + bool containsEnd = rect.contains(end.x(), end.y()); + if (containsStart && containsEnd) + return QLineF(start.toPointF(), end.toPointF()); + + QVector2D base = start; + QVector2D vec = end-start; + double bx, by; + double gamma, mu; + QLineF result; + QList pointVectors; + + if (!qFuzzyIsNull(vec.y())) // line is not horizontal + { + // check top of rect: + bx = rect.left(); + by = rect.top(); + mu = (by-base.y())/vec.y(); + if (mu >= 0 && mu <= 1) + { + gamma = base.x()-bx + mu*vec.x(); + if (gamma >= 0 && gamma <= rect.width()) + pointVectors.append(QVector2D(bx+gamma, by)); + } + // check bottom of rect: + bx = rect.left(); + by = rect.bottom(); + mu = (by-base.y())/vec.y(); + if (mu >= 0 && mu <= 1) + { + gamma = base.x()-bx + mu*vec.x(); + if (gamma >= 0 && gamma <= rect.width()) + pointVectors.append(QVector2D(bx+gamma, by)); + } + } + if (!qFuzzyIsNull(vec.x())) // line is not vertical + { + // check left of rect: + bx = rect.left(); + by = rect.top(); + mu = (bx-base.x())/vec.x(); + if (mu >= 0 && mu <= 1) + { + gamma = base.y()-by + mu*vec.y(); + if (gamma >= 0 && gamma <= rect.height()) + pointVectors.append(QVector2D(bx, by+gamma)); + } + // check right of rect: + bx = rect.right(); + by = rect.top(); + mu = (bx-base.x())/vec.x(); + if (mu >= 0 && mu <= 1) + { + gamma = base.y()-by + mu*vec.y(); + if (gamma >= 0 && gamma <= rect.height()) + pointVectors.append(QVector2D(bx, by+gamma)); + } + } + + if (containsStart) + pointVectors.append(start); + if (containsEnd) + pointVectors.append(end); + + // evaluate points: + if (pointVectors.size() == 2) + { + result.setPoints(pointVectors.at(0).toPointF(), pointVectors.at(1).toPointF()); + } else if (pointVectors.size() > 2) + { + // line probably goes through corner of rect, and we got two points there. single out the point pair with greatest distance: + double distSqrMax = 0; + QVector2D pv1, pv2; + for (int i=0; i distSqrMax) + { + pv1 = pointVectors.at(i); + pv2 = pointVectors.at(k); + distSqrMax = distSqr; + } + } + } + result.setPoints(pv1.toPointF(), pv2.toPointF()); + } + return result; +} + +/*! \internal + + Returns the pen that should be used for drawing lines. Returns mPen when the + item is not selected and mSelectedPen when it is. +*/ +QPen QCPItemLine::mainPen() const +{ + return mSelected ? mSelectedPen : mPen; +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPItemCurve +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPItemCurve + \brief A curved line from one point to another + + \image html QCPItemCurve.png "Curve example. Blue dotted circles are anchors, solid blue discs are positions." + + It has four positions, \a start and \a end, which define the end points of the line, and two + control points which define the direction the line exits from the start and the direction from + which it approaches the end: \a startDir and \a endDir. + + With \ref setHead and \ref setTail you may set different line ending styles, e.g. to create an + arrow. + + Often it is desirable for the control points to stay at fixed relative positions to the start/end + point. This can be achieved by setting the parent anchor e.g. of \a startDir simply to \a start, + and then specify the desired pixel offset with QCPItemPosition::setCoords on \a startDir. +*/ + +/*! + Creates a curve item and sets default values. + + The constructed item can be added to the plot with QCustomPlot::addItem. +*/ +QCPItemCurve::QCPItemCurve(QCustomPlot *parentPlot) : + QCPAbstractItem(parentPlot), + start(createPosition(QLatin1String("start"))), + startDir(createPosition(QLatin1String("startDir"))), + endDir(createPosition(QLatin1String("endDir"))), + end(createPosition(QLatin1String("end"))) +{ + start->setCoords(0, 0); + startDir->setCoords(0.5, 0); + endDir->setCoords(0, 0.5); + end->setCoords(1, 1); + + setPen(QPen(Qt::black)); + setSelectedPen(QPen(Qt::blue,2)); +} + +QCPItemCurve::~QCPItemCurve() +{ +} + +/*! + Sets the pen that will be used to draw the line + + \see setSelectedPen +*/ +void QCPItemCurve::setPen(const QPen &pen) +{ + mPen = pen; +} + +/*! + Sets the pen that will be used to draw the line when selected + + \see setPen, setSelected +*/ +void QCPItemCurve::setSelectedPen(const QPen &pen) +{ + mSelectedPen = pen; +} + +/*! + Sets the line ending style of the head. The head corresponds to the \a end position. + + Note that due to the overloaded QCPLineEnding constructor, you may directly specify + a QCPLineEnding::EndingStyle here, e.g. \code setHead(QCPLineEnding::esSpikeArrow) \endcode + + \see setTail +*/ +void QCPItemCurve::setHead(const QCPLineEnding &head) +{ + mHead = head; +} + +/*! + Sets the line ending style of the tail. The tail corresponds to the \a start position. + + Note that due to the overloaded QCPLineEnding constructor, you may directly specify + a QCPLineEnding::EndingStyle here, e.g. \code setTail(QCPLineEnding::esSpikeArrow) \endcode + + \see setHead +*/ +void QCPItemCurve::setTail(const QCPLineEnding &tail) +{ + mTail = tail; +} + +/* inherits documentation from base class */ +double QCPItemCurve::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (onlySelectable && !mSelectable) + return -1; + + QPointF startVec(start->pixelPoint()); + QPointF startDirVec(startDir->pixelPoint()); + QPointF endDirVec(endDir->pixelPoint()); + QPointF endVec(end->pixelPoint()); + + QPainterPath cubicPath(startVec); + cubicPath.cubicTo(startDirVec, endDirVec, endVec); + + QPolygonF polygon = cubicPath.toSubpathPolygons().first(); + double minDistSqr = std::numeric_limits::max(); + for (int i=1; ipixelPoint()); + QPointF startDirVec(startDir->pixelPoint()); + QPointF endDirVec(endDir->pixelPoint()); + QPointF endVec(end->pixelPoint()); + if (QVector2D(endVec-startVec).length() > 1e10f) // too large curves cause crash + return; + + QPainterPath cubicPath(startVec); + cubicPath.cubicTo(startDirVec, endDirVec, endVec); + + // paint visible segment, if existent: + QRect clip = clipRect().adjusted(-mainPen().widthF(), -mainPen().widthF(), mainPen().widthF(), mainPen().widthF()); + QRect cubicRect = cubicPath.controlPointRect().toRect(); + if (cubicRect.isEmpty()) // may happen when start and end exactly on same x or y position + cubicRect.adjust(0, 0, 1, 1); + if (clip.intersects(cubicRect)) + { + painter->setPen(mainPen()); + painter->drawPath(cubicPath); + painter->setBrush(Qt::SolidPattern); + if (mTail.style() != QCPLineEnding::esNone) + mTail.draw(painter, QVector2D(startVec), M_PI-cubicPath.angleAtPercent(0)/180.0*M_PI); + if (mHead.style() != QCPLineEnding::esNone) + mHead.draw(painter, QVector2D(endVec), -cubicPath.angleAtPercent(1)/180.0*M_PI); + } +} + +/*! \internal + + Returns the pen that should be used for drawing lines. Returns mPen when the + item is not selected and mSelectedPen when it is. +*/ +QPen QCPItemCurve::mainPen() const +{ + return mSelected ? mSelectedPen : mPen; +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPItemRect +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPItemRect + \brief A rectangle + + \image html QCPItemRect.png "Rectangle example. Blue dotted circles are anchors, solid blue discs are positions." + + It has two positions, \a topLeft and \a bottomRight, which define the rectangle. +*/ + +/*! + Creates a rectangle item and sets default values. + + The constructed item can be added to the plot with QCustomPlot::addItem. +*/ +QCPItemRect::QCPItemRect(QCustomPlot *parentPlot) : + QCPAbstractItem(parentPlot), + topLeft(createPosition(QLatin1String("topLeft"))), + bottomRight(createPosition(QLatin1String("bottomRight"))), + top(createAnchor(QLatin1String("top"), aiTop)), + topRight(createAnchor(QLatin1String("topRight"), aiTopRight)), + right(createAnchor(QLatin1String("right"), aiRight)), + bottom(createAnchor(QLatin1String("bottom"), aiBottom)), + bottomLeft(createAnchor(QLatin1String("bottomLeft"), aiBottomLeft)), + left(createAnchor(QLatin1String("left"), aiLeft)) +{ + topLeft->setCoords(0, 1); + bottomRight->setCoords(1, 0); + + setPen(QPen(Qt::black)); + setSelectedPen(QPen(Qt::blue,2)); + setBrush(Qt::NoBrush); + setSelectedBrush(Qt::NoBrush); +} + +QCPItemRect::~QCPItemRect() +{ +} + +/*! + Sets the pen that will be used to draw the line of the rectangle + + \see setSelectedPen, setBrush +*/ +void QCPItemRect::setPen(const QPen &pen) +{ + mPen = pen; +} + +/*! + Sets the pen that will be used to draw the line of the rectangle when selected + + \see setPen, setSelected +*/ +void QCPItemRect::setSelectedPen(const QPen &pen) +{ + mSelectedPen = pen; +} + +/*! + Sets the brush that will be used to fill the rectangle. To disable filling, set \a brush to + Qt::NoBrush. + + \see setSelectedBrush, setPen +*/ +void QCPItemRect::setBrush(const QBrush &brush) +{ + mBrush = brush; +} + +/*! + Sets the brush that will be used to fill the rectangle when selected. To disable filling, set \a + brush to Qt::NoBrush. + + \see setBrush +*/ +void QCPItemRect::setSelectedBrush(const QBrush &brush) +{ + mSelectedBrush = brush; +} + +/* inherits documentation from base class */ +double QCPItemRect::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (onlySelectable && !mSelectable) + return -1; + + QRectF rect = QRectF(topLeft->pixelPoint(), bottomRight->pixelPoint()).normalized(); + bool filledRect = mBrush.style() != Qt::NoBrush && mBrush.color().alpha() != 0; + return rectSelectTest(rect, pos, filledRect); +} + +/* inherits documentation from base class */ +void QCPItemRect::draw(QCPPainter *painter) +{ + QPointF p1 = topLeft->pixelPoint(); + QPointF p2 = bottomRight->pixelPoint(); + if (p1.toPoint() == p2.toPoint()) + return; + QRectF rect = QRectF(p1, p2).normalized(); + double clipPad = mainPen().widthF(); + QRectF boundingRect = rect.adjusted(-clipPad, -clipPad, clipPad, clipPad); + if (boundingRect.intersects(clipRect())) // only draw if bounding rect of rect item is visible in cliprect + { + painter->setPen(mainPen()); + painter->setBrush(mainBrush()); + painter->drawRect(rect); + } +} + +/* inherits documentation from base class */ +QPointF QCPItemRect::anchorPixelPoint(int anchorId) const +{ + QRectF rect = QRectF(topLeft->pixelPoint(), bottomRight->pixelPoint()); + switch (anchorId) + { + case aiTop: return (rect.topLeft()+rect.topRight())*0.5; + case aiTopRight: return rect.topRight(); + case aiRight: return (rect.topRight()+rect.bottomRight())*0.5; + case aiBottom: return (rect.bottomLeft()+rect.bottomRight())*0.5; + case aiBottomLeft: return rect.bottomLeft(); + case aiLeft: return (rect.topLeft()+rect.bottomLeft())*0.5; + } + + qDebug() << Q_FUNC_INFO << "invalid anchorId" << anchorId; + return QPointF(); +} + +/*! \internal + + Returns the pen that should be used for drawing lines. Returns mPen when the item is not selected + and mSelectedPen when it is. +*/ +QPen QCPItemRect::mainPen() const +{ + return mSelected ? mSelectedPen : mPen; +} + +/*! \internal + + Returns the brush that should be used for drawing fills of the item. Returns mBrush when the item + is not selected and mSelectedBrush when it is. +*/ +QBrush QCPItemRect::mainBrush() const +{ + return mSelected ? mSelectedBrush : mBrush; +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPItemText +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPItemText + \brief A text label + + \image html QCPItemText.png "Text example. Blue dotted circles are anchors, solid blue discs are positions." + + Its position is defined by the member \a position and the setting of \ref setPositionAlignment. + The latter controls which part of the text rect shall be aligned with \a position. + + The text alignment itself (i.e. left, center, right) can be controlled with \ref + setTextAlignment. + + The text may be rotated around the \a position point with \ref setRotation. +*/ + +/*! + Creates a text item and sets default values. + + The constructed item can be added to the plot with QCustomPlot::addItem. +*/ +QCPItemText::QCPItemText(QCustomPlot *parentPlot) : + QCPAbstractItem(parentPlot), + position(createPosition(QLatin1String("position"))), + topLeft(createAnchor(QLatin1String("topLeft"), aiTopLeft)), + top(createAnchor(QLatin1String("top"), aiTop)), + topRight(createAnchor(QLatin1String("topRight"), aiTopRight)), + right(createAnchor(QLatin1String("right"), aiRight)), + bottomRight(createAnchor(QLatin1String("bottomRight"), aiBottomRight)), + bottom(createAnchor(QLatin1String("bottom"), aiBottom)), + bottomLeft(createAnchor(QLatin1String("bottomLeft"), aiBottomLeft)), + left(createAnchor(QLatin1String("left"), aiLeft)) +{ + position->setCoords(0, 0); + + setRotation(0); + setTextAlignment(Qt::AlignTop|Qt::AlignHCenter); + setPositionAlignment(Qt::AlignCenter); + setText(QLatin1String("text")); + + setPen(Qt::NoPen); + setSelectedPen(Qt::NoPen); + setBrush(Qt::NoBrush); + setSelectedBrush(Qt::NoBrush); + setColor(Qt::black); + setSelectedColor(Qt::blue); +} + +QCPItemText::~QCPItemText() +{ +} + +/*! + Sets the color of the text. +*/ +void QCPItemText::setColor(const QColor &color) +{ + mColor = color; +} + +/*! + Sets the color of the text that will be used when the item is selected. +*/ +void QCPItemText::setSelectedColor(const QColor &color) +{ + mSelectedColor = color; +} + +/*! + Sets the pen that will be used do draw a rectangular border around the text. To disable the + border, set \a pen to Qt::NoPen. + + \see setSelectedPen, setBrush, setPadding +*/ +void QCPItemText::setPen(const QPen &pen) +{ + mPen = pen; +} + +/*! + Sets the pen that will be used do draw a rectangular border around the text, when the item is + selected. To disable the border, set \a pen to Qt::NoPen. + + \see setPen +*/ +void QCPItemText::setSelectedPen(const QPen &pen) +{ + mSelectedPen = pen; +} + +/*! + Sets the brush that will be used do fill the background of the text. To disable the + background, set \a brush to Qt::NoBrush. + + \see setSelectedBrush, setPen, setPadding +*/ +void QCPItemText::setBrush(const QBrush &brush) +{ + mBrush = brush; +} + +/*! + Sets the brush that will be used do fill the background of the text, when the item is selected. To disable the + background, set \a brush to Qt::NoBrush. + + \see setBrush +*/ +void QCPItemText::setSelectedBrush(const QBrush &brush) +{ + mSelectedBrush = brush; +} + +/*! + Sets the font of the text. + + \see setSelectedFont, setColor +*/ +void QCPItemText::setFont(const QFont &font) +{ + mFont = font; +} + +/*! + Sets the font of the text that will be used when the item is selected. + + \see setFont +*/ +void QCPItemText::setSelectedFont(const QFont &font) +{ + mSelectedFont = font; +} + +/*! + Sets the text that will be displayed. Multi-line texts are supported by inserting a line break + character, e.g. '\n'. + + \see setFont, setColor, setTextAlignment +*/ +void QCPItemText::setText(const QString &text) +{ + mText = text; +} + +/*! + Sets which point of the text rect shall be aligned with \a position. + + Examples: + \li If \a alignment is Qt::AlignHCenter | Qt::AlignTop, the text will be positioned such + that the top of the text rect will be horizontally centered on \a position. + \li If \a alignment is Qt::AlignLeft | Qt::AlignBottom, \a position will indicate the + bottom left corner of the text rect. + + If you want to control the alignment of (multi-lined) text within the text rect, use \ref + setTextAlignment. +*/ +void QCPItemText::setPositionAlignment(Qt::Alignment alignment) +{ + mPositionAlignment = alignment; +} + +/*! + Controls how (multi-lined) text is aligned inside the text rect (typically Qt::AlignLeft, Qt::AlignCenter or Qt::AlignRight). +*/ +void QCPItemText::setTextAlignment(Qt::Alignment alignment) +{ + mTextAlignment = alignment; +} + +/*! + Sets the angle in degrees by which the text (and the text rectangle, if visible) will be rotated + around \a position. +*/ +void QCPItemText::setRotation(double degrees) +{ + mRotation = degrees; +} + +/*! + Sets the distance between the border of the text rectangle and the text. The appearance (and + visibility) of the text rectangle can be controlled with \ref setPen and \ref setBrush. +*/ +void QCPItemText::setPadding(const QMargins &padding) +{ + mPadding = padding; +} + +/* inherits documentation from base class */ +double QCPItemText::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (onlySelectable && !mSelectable) + return -1; + + // The rect may be rotated, so we transform the actual clicked pos to the rotated + // coordinate system, so we can use the normal rectSelectTest function for non-rotated rects: + QPointF positionPixels(position->pixelPoint()); + QTransform inputTransform; + inputTransform.translate(positionPixels.x(), positionPixels.y()); + inputTransform.rotate(-mRotation); + inputTransform.translate(-positionPixels.x(), -positionPixels.y()); + QPointF rotatedPos = inputTransform.map(pos); + QFontMetrics fontMetrics(mFont); + QRect textRect = fontMetrics.boundingRect(0, 0, 0, 0, Qt::TextDontClip|mTextAlignment, mText); + QRect textBoxRect = textRect.adjusted(-mPadding.left(), -mPadding.top(), mPadding.right(), mPadding.bottom()); + QPointF textPos = getTextDrawPoint(positionPixels, textBoxRect, mPositionAlignment); + textBoxRect.moveTopLeft(textPos.toPoint()); + + return rectSelectTest(textBoxRect, rotatedPos, true); +} + +/* inherits documentation from base class */ +void QCPItemText::draw(QCPPainter *painter) +{ + QPointF pos(position->pixelPoint()); + QTransform transform = painter->transform(); + transform.translate(pos.x(), pos.y()); + if (!qFuzzyIsNull(mRotation)) + transform.rotate(mRotation); + painter->setFont(mainFont()); + QRect textRect = painter->fontMetrics().boundingRect(0, 0, 0, 0, Qt::TextDontClip|mTextAlignment, mText); + QRect textBoxRect = textRect.adjusted(-mPadding.left(), -mPadding.top(), mPadding.right(), mPadding.bottom()); + QPointF textPos = getTextDrawPoint(QPointF(0, 0), textBoxRect, mPositionAlignment); // 0, 0 because the transform does the translation + textRect.moveTopLeft(textPos.toPoint()+QPoint(mPadding.left(), mPadding.top())); + textBoxRect.moveTopLeft(textPos.toPoint()); + double clipPad = mainPen().widthF(); + QRect boundingRect = textBoxRect.adjusted(-clipPad, -clipPad, clipPad, clipPad); + if (transform.mapRect(boundingRect).intersects(painter->transform().mapRect(clipRect()))) + { + painter->setTransform(transform); + if ((mainBrush().style() != Qt::NoBrush && mainBrush().color().alpha() != 0) || + (mainPen().style() != Qt::NoPen && mainPen().color().alpha() != 0)) + { + painter->setPen(mainPen()); + painter->setBrush(mainBrush()); + painter->drawRect(textBoxRect); + } + painter->setBrush(Qt::NoBrush); + painter->setPen(QPen(mainColor())); + painter->drawText(textRect, Qt::TextDontClip|mTextAlignment, mText); + } +} + +/* inherits documentation from base class */ +QPointF QCPItemText::anchorPixelPoint(int anchorId) const +{ + // get actual rect points (pretty much copied from draw function): + QPointF pos(position->pixelPoint()); + QTransform transform; + transform.translate(pos.x(), pos.y()); + if (!qFuzzyIsNull(mRotation)) + transform.rotate(mRotation); + QFontMetrics fontMetrics(mainFont()); + QRect textRect = fontMetrics.boundingRect(0, 0, 0, 0, Qt::TextDontClip|mTextAlignment, mText); + QRectF textBoxRect = textRect.adjusted(-mPadding.left(), -mPadding.top(), mPadding.right(), mPadding.bottom()); + QPointF textPos = getTextDrawPoint(QPointF(0, 0), textBoxRect, mPositionAlignment); // 0, 0 because the transform does the translation + textBoxRect.moveTopLeft(textPos.toPoint()); + QPolygonF rectPoly = transform.map(QPolygonF(textBoxRect)); + + switch (anchorId) + { + case aiTopLeft: return rectPoly.at(0); + case aiTop: return (rectPoly.at(0)+rectPoly.at(1))*0.5; + case aiTopRight: return rectPoly.at(1); + case aiRight: return (rectPoly.at(1)+rectPoly.at(2))*0.5; + case aiBottomRight: return rectPoly.at(2); + case aiBottom: return (rectPoly.at(2)+rectPoly.at(3))*0.5; + case aiBottomLeft: return rectPoly.at(3); + case aiLeft: return (rectPoly.at(3)+rectPoly.at(0))*0.5; + } + + qDebug() << Q_FUNC_INFO << "invalid anchorId" << anchorId; + return QPointF(); +} + +/*! \internal + + Returns the point that must be given to the QPainter::drawText function (which expects the top + left point of the text rect), according to the position \a pos, the text bounding box \a rect and + the requested \a positionAlignment. + + For example, if \a positionAlignment is Qt::AlignLeft | Qt::AlignBottom the returned point + will be shifted upward by the height of \a rect, starting from \a pos. So if the text is finally + drawn at that point, the lower left corner of the resulting text rect is at \a pos. +*/ +QPointF QCPItemText::getTextDrawPoint(const QPointF &pos, const QRectF &rect, Qt::Alignment positionAlignment) const +{ + if (positionAlignment == 0 || positionAlignment == (Qt::AlignLeft|Qt::AlignTop)) + return pos; + + QPointF result = pos; // start at top left + if (positionAlignment.testFlag(Qt::AlignHCenter)) + result.rx() -= rect.width()/2.0; + else if (positionAlignment.testFlag(Qt::AlignRight)) + result.rx() -= rect.width(); + if (positionAlignment.testFlag(Qt::AlignVCenter)) + result.ry() -= rect.height()/2.0; + else if (positionAlignment.testFlag(Qt::AlignBottom)) + result.ry() -= rect.height(); + return result; +} + +/*! \internal + + Returns the font that should be used for drawing text. Returns mFont when the item is not selected + and mSelectedFont when it is. +*/ +QFont QCPItemText::mainFont() const +{ + return mSelected ? mSelectedFont : mFont; +} + +/*! \internal + + Returns the color that should be used for drawing text. Returns mColor when the item is not + selected and mSelectedColor when it is. +*/ +QColor QCPItemText::mainColor() const +{ + return mSelected ? mSelectedColor : mColor; +} + +/*! \internal + + Returns the pen that should be used for drawing lines. Returns mPen when the item is not selected + and mSelectedPen when it is. +*/ +QPen QCPItemText::mainPen() const +{ + return mSelected ? mSelectedPen : mPen; +} + +/*! \internal + + Returns the brush that should be used for drawing fills of the item. Returns mBrush when the item + is not selected and mSelectedBrush when it is. +*/ +QBrush QCPItemText::mainBrush() const +{ + return mSelected ? mSelectedBrush : mBrush; +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPItemEllipse +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPItemEllipse + \brief An ellipse + + \image html QCPItemEllipse.png "Ellipse example. Blue dotted circles are anchors, solid blue discs are positions." + + It has two positions, \a topLeft and \a bottomRight, which define the rect the ellipse will be drawn in. +*/ + +/*! + Creates an ellipse item and sets default values. + + The constructed item can be added to the plot with QCustomPlot::addItem. +*/ +QCPItemEllipse::QCPItemEllipse(QCustomPlot *parentPlot) : + QCPAbstractItem(parentPlot), + topLeft(createPosition(QLatin1String("topLeft"))), + bottomRight(createPosition(QLatin1String("bottomRight"))), + topLeftRim(createAnchor(QLatin1String("topLeftRim"), aiTopLeftRim)), + top(createAnchor(QLatin1String("top"), aiTop)), + topRightRim(createAnchor(QLatin1String("topRightRim"), aiTopRightRim)), + right(createAnchor(QLatin1String("right"), aiRight)), + bottomRightRim(createAnchor(QLatin1String("bottomRightRim"), aiBottomRightRim)), + bottom(createAnchor(QLatin1String("bottom"), aiBottom)), + bottomLeftRim(createAnchor(QLatin1String("bottomLeftRim"), aiBottomLeftRim)), + left(createAnchor(QLatin1String("left"), aiLeft)), + center(createAnchor(QLatin1String("center"), aiCenter)) +{ + topLeft->setCoords(0, 1); + bottomRight->setCoords(1, 0); + + setPen(QPen(Qt::black)); + setSelectedPen(QPen(Qt::blue, 2)); + setBrush(Qt::NoBrush); + setSelectedBrush(Qt::NoBrush); +} + +QCPItemEllipse::~QCPItemEllipse() +{ +} + +/*! + Sets the pen that will be used to draw the line of the ellipse + + \see setSelectedPen, setBrush +*/ +void QCPItemEllipse::setPen(const QPen &pen) +{ + mPen = pen; +} + +/*! + Sets the pen that will be used to draw the line of the ellipse when selected + + \see setPen, setSelected +*/ +void QCPItemEllipse::setSelectedPen(const QPen &pen) +{ + mSelectedPen = pen; +} + +/*! + Sets the brush that will be used to fill the ellipse. To disable filling, set \a brush to + Qt::NoBrush. + + \see setSelectedBrush, setPen +*/ +void QCPItemEllipse::setBrush(const QBrush &brush) +{ + mBrush = brush; +} + +/*! + Sets the brush that will be used to fill the ellipse when selected. To disable filling, set \a + brush to Qt::NoBrush. + + \see setBrush +*/ +void QCPItemEllipse::setSelectedBrush(const QBrush &brush) +{ + mSelectedBrush = brush; +} + +/* inherits documentation from base class */ +double QCPItemEllipse::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (onlySelectable && !mSelectable) + return -1; + + double result = -1; + QPointF p1 = topLeft->pixelPoint(); + QPointF p2 = bottomRight->pixelPoint(); + QPointF center((p1+p2)/2.0); + double a = qAbs(p1.x()-p2.x())/2.0; + double b = qAbs(p1.y()-p2.y())/2.0; + double x = pos.x()-center.x(); + double y = pos.y()-center.y(); + + // distance to border: + double c = 1.0/qSqrt(x*x/(a*a)+y*y/(b*b)); + result = qAbs(c-1)*qSqrt(x*x+y*y); + // filled ellipse, allow click inside to count as hit: + if (result > mParentPlot->selectionTolerance()*0.99 && mBrush.style() != Qt::NoBrush && mBrush.color().alpha() != 0) + { + if (x*x/(a*a) + y*y/(b*b) <= 1) + result = mParentPlot->selectionTolerance()*0.99; + } + return result; +} + +/* inherits documentation from base class */ +void QCPItemEllipse::draw(QCPPainter *painter) +{ + QPointF p1 = topLeft->pixelPoint(); + QPointF p2 = bottomRight->pixelPoint(); + if (p1.toPoint() == p2.toPoint()) + return; + QRectF ellipseRect = QRectF(p1, p2).normalized(); + QRect clip = clipRect().adjusted(-mainPen().widthF(), -mainPen().widthF(), mainPen().widthF(), mainPen().widthF()); + if (ellipseRect.intersects(clip)) // only draw if bounding rect of ellipse is visible in cliprect + { + painter->setPen(mainPen()); + painter->setBrush(mainBrush()); +#ifdef __EXCEPTIONS + try // drawEllipse sometimes throws exceptions if ellipse is too big + { +#endif + painter->drawEllipse(ellipseRect); +#ifdef __EXCEPTIONS + } catch (...) + { + qDebug() << Q_FUNC_INFO << "Item too large for memory, setting invisible"; + setVisible(false); + } +#endif + } +} + +/* inherits documentation from base class */ +QPointF QCPItemEllipse::anchorPixelPoint(int anchorId) const +{ + QRectF rect = QRectF(topLeft->pixelPoint(), bottomRight->pixelPoint()); + switch (anchorId) + { + case aiTopLeftRim: return rect.center()+(rect.topLeft()-rect.center())*1/qSqrt(2); + case aiTop: return (rect.topLeft()+rect.topRight())*0.5; + case aiTopRightRim: return rect.center()+(rect.topRight()-rect.center())*1/qSqrt(2); + case aiRight: return (rect.topRight()+rect.bottomRight())*0.5; + case aiBottomRightRim: return rect.center()+(rect.bottomRight()-rect.center())*1/qSqrt(2); + case aiBottom: return (rect.bottomLeft()+rect.bottomRight())*0.5; + case aiBottomLeftRim: return rect.center()+(rect.bottomLeft()-rect.center())*1/qSqrt(2); + case aiLeft: return (rect.topLeft()+rect.bottomLeft())*0.5; + case aiCenter: return (rect.topLeft()+rect.bottomRight())*0.5; + } + + qDebug() << Q_FUNC_INFO << "invalid anchorId" << anchorId; + return QPointF(); +} + +/*! \internal + + Returns the pen that should be used for drawing lines. Returns mPen when the item is not selected + and mSelectedPen when it is. +*/ +QPen QCPItemEllipse::mainPen() const +{ + return mSelected ? mSelectedPen : mPen; +} + +/*! \internal + + Returns the brush that should be used for drawing fills of the item. Returns mBrush when the item + is not selected and mSelectedBrush when it is. +*/ +QBrush QCPItemEllipse::mainBrush() const +{ + return mSelected ? mSelectedBrush : mBrush; +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPItemPixmap +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPItemPixmap + \brief An arbitrary pixmap + + \image html QCPItemPixmap.png "Pixmap example. Blue dotted circles are anchors, solid blue discs are positions." + + It has two positions, \a topLeft and \a bottomRight, which define the rectangle the pixmap will + be drawn in. Depending on the scale setting (\ref setScaled), the pixmap will be either scaled to + fit the rectangle or be drawn aligned to the topLeft position. + + If scaling is enabled and \a topLeft is further to the bottom/right than \a bottomRight (as shown + on the right side of the example image), the pixmap will be flipped in the respective + orientations. +*/ + +/*! + Creates a rectangle item and sets default values. + + The constructed item can be added to the plot with QCustomPlot::addItem. +*/ +QCPItemPixmap::QCPItemPixmap(QCustomPlot *parentPlot) : + QCPAbstractItem(parentPlot), + topLeft(createPosition(QLatin1String("topLeft"))), + bottomRight(createPosition(QLatin1String("bottomRight"))), + top(createAnchor(QLatin1String("top"), aiTop)), + topRight(createAnchor(QLatin1String("topRight"), aiTopRight)), + right(createAnchor(QLatin1String("right"), aiRight)), + bottom(createAnchor(QLatin1String("bottom"), aiBottom)), + bottomLeft(createAnchor(QLatin1String("bottomLeft"), aiBottomLeft)), + left(createAnchor(QLatin1String("left"), aiLeft)) +{ + topLeft->setCoords(0, 1); + bottomRight->setCoords(1, 0); + + setPen(Qt::NoPen); + setSelectedPen(QPen(Qt::blue)); + setScaled(false, Qt::KeepAspectRatio, Qt::SmoothTransformation); +} + +QCPItemPixmap::~QCPItemPixmap() +{ +} + +/*! + Sets the pixmap that will be displayed. +*/ +void QCPItemPixmap::setPixmap(const QPixmap &pixmap) +{ + mPixmap = pixmap; + if (mPixmap.isNull()) + qDebug() << Q_FUNC_INFO << "pixmap is null"; +} + +/*! + Sets whether the pixmap will be scaled to fit the rectangle defined by the \a topLeft and \a + bottomRight positions. +*/ +void QCPItemPixmap::setScaled(bool scaled, Qt::AspectRatioMode aspectRatioMode, Qt::TransformationMode transformationMode) +{ + mScaled = scaled; + mAspectRatioMode = aspectRatioMode; + mTransformationMode = transformationMode; + updateScaledPixmap(); +} + +/*! + Sets the pen that will be used to draw a border around the pixmap. + + \see setSelectedPen, setBrush +*/ +void QCPItemPixmap::setPen(const QPen &pen) +{ + mPen = pen; +} + +/*! + Sets the pen that will be used to draw a border around the pixmap when selected + + \see setPen, setSelected +*/ +void QCPItemPixmap::setSelectedPen(const QPen &pen) +{ + mSelectedPen = pen; +} + +/* inherits documentation from base class */ +double QCPItemPixmap::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (onlySelectable && !mSelectable) + return -1; + + return rectSelectTest(getFinalRect(), pos, true); +} + +/* inherits documentation from base class */ +void QCPItemPixmap::draw(QCPPainter *painter) +{ + bool flipHorz = false; + bool flipVert = false; + QRect rect = getFinalRect(&flipHorz, &flipVert); + double clipPad = mainPen().style() == Qt::NoPen ? 0 : mainPen().widthF(); + QRect boundingRect = rect.adjusted(-clipPad, -clipPad, clipPad, clipPad); + if (boundingRect.intersects(clipRect())) + { + updateScaledPixmap(rect, flipHorz, flipVert); + painter->drawPixmap(rect.topLeft(), mScaled ? mScaledPixmap : mPixmap); + QPen pen = mainPen(); + if (pen.style() != Qt::NoPen) + { + painter->setPen(pen); + painter->setBrush(Qt::NoBrush); + painter->drawRect(rect); + } + } +} + +/* inherits documentation from base class */ +QPointF QCPItemPixmap::anchorPixelPoint(int anchorId) const +{ + bool flipHorz; + bool flipVert; + QRect rect = getFinalRect(&flipHorz, &flipVert); + // we actually want denormal rects (negative width/height) here, so restore + // the flipped state: + if (flipHorz) + rect.adjust(rect.width(), 0, -rect.width(), 0); + if (flipVert) + rect.adjust(0, rect.height(), 0, -rect.height()); + + switch (anchorId) + { + case aiTop: return (rect.topLeft()+rect.topRight())*0.5; + case aiTopRight: return rect.topRight(); + case aiRight: return (rect.topRight()+rect.bottomRight())*0.5; + case aiBottom: return (rect.bottomLeft()+rect.bottomRight())*0.5; + case aiBottomLeft: return rect.bottomLeft(); + case aiLeft: return (rect.topLeft()+rect.bottomLeft())*0.5;; + } + + qDebug() << Q_FUNC_INFO << "invalid anchorId" << anchorId; + return QPointF(); +} + +/*! \internal + + Creates the buffered scaled image (\a mScaledPixmap) to fit the specified \a finalRect. The + parameters \a flipHorz and \a flipVert control whether the resulting image shall be flipped + horizontally or vertically. (This is used when \a topLeft is further to the bottom/right than \a + bottomRight.) + + This function only creates the scaled pixmap when the buffered pixmap has a different size than + the expected result, so calling this function repeatedly, e.g. in the \ref draw function, does + not cause expensive rescaling every time. + + If scaling is disabled, sets mScaledPixmap to a null QPixmap. +*/ +void QCPItemPixmap::updateScaledPixmap(QRect finalRect, bool flipHorz, bool flipVert) +{ + if (mPixmap.isNull()) + return; + + if (mScaled) + { + if (finalRect.isNull()) + finalRect = getFinalRect(&flipHorz, &flipVert); + if (finalRect.size() != mScaledPixmap.size()) + { + mScaledPixmap = mPixmap.scaled(finalRect.size(), mAspectRatioMode, mTransformationMode); + if (flipHorz || flipVert) + mScaledPixmap = QPixmap::fromImage(mScaledPixmap.toImage().mirrored(flipHorz, flipVert)); + } + } else if (!mScaledPixmap.isNull()) + mScaledPixmap = QPixmap(); +} + +/*! \internal + + Returns the final (tight) rect the pixmap is drawn in, depending on the current item positions + and scaling settings. + + The output parameters \a flippedHorz and \a flippedVert return whether the pixmap should be drawn + flipped horizontally or vertically in the returned rect. (The returned rect itself is always + normalized, i.e. the top left corner of the rect is actually further to the top/left than the + bottom right corner). This is the case when the item position \a topLeft is further to the + bottom/right than \a bottomRight. + + If scaling is disabled, returns a rect with size of the original pixmap and the top left corner + aligned with the item position \a topLeft. The position \a bottomRight is ignored. +*/ +QRect QCPItemPixmap::getFinalRect(bool *flippedHorz, bool *flippedVert) const +{ + QRect result; + bool flipHorz = false; + bool flipVert = false; + QPoint p1 = topLeft->pixelPoint().toPoint(); + QPoint p2 = bottomRight->pixelPoint().toPoint(); + if (p1 == p2) + return QRect(p1, QSize(0, 0)); + if (mScaled) + { + QSize newSize = QSize(p2.x()-p1.x(), p2.y()-p1.y()); + QPoint topLeft = p1; + if (newSize.width() < 0) + { + flipHorz = true; + newSize.rwidth() *= -1; + topLeft.setX(p2.x()); + } + if (newSize.height() < 0) + { + flipVert = true; + newSize.rheight() *= -1; + topLeft.setY(p2.y()); + } + QSize scaledSize = mPixmap.size(); + scaledSize.scale(newSize, mAspectRatioMode); + result = QRect(topLeft, scaledSize); + } else + { + result = QRect(p1, mPixmap.size()); + } + if (flippedHorz) + *flippedHorz = flipHorz; + if (flippedVert) + *flippedVert = flipVert; + return result; +} + +/*! \internal + + Returns the pen that should be used for drawing lines. Returns mPen when the item is not selected + and mSelectedPen when it is. +*/ +QPen QCPItemPixmap::mainPen() const +{ + return mSelected ? mSelectedPen : mPen; +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPItemTracer +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPItemTracer + \brief Item that sticks to QCPGraph data points + + \image html QCPItemTracer.png "Tracer example. Blue dotted circles are anchors, solid blue discs are positions." + + The tracer can be connected with a QCPGraph via \ref setGraph. Then it will automatically adopt + the coordinate axes of the graph and update its \a position to be on the graph's data. This means + the key stays controllable via \ref setGraphKey, but the value will follow the graph data. If a + QCPGraph is connected, note that setting the coordinates of the tracer item directly via \a + position will have no effect because they will be overriden in the next redraw (this is when the + coordinate update happens). + + If the specified key in \ref setGraphKey is outside the key bounds of the graph, the tracer will + stay at the corresponding end of the graph. + + With \ref setInterpolating you may specify whether the tracer may only stay exactly on data + points or whether it interpolates data points linearly, if given a key that lies between two data + points of the graph. + + The tracer has different visual styles, see \ref setStyle. It is also possible to make the tracer + have no own visual appearance (set the style to \ref tsNone), and just connect other item + positions to the tracer \a position (used as an anchor) via \ref + QCPItemPosition::setParentAnchor. + + \note The tracer position is only automatically updated upon redraws. So when the data of the + graph changes and immediately afterwards (without a redraw) the a position coordinates of the + tracer are retrieved, they will not reflect the updated data of the graph. In this case \ref + updatePosition must be called manually, prior to reading the tracer coordinates. +*/ + +/*! + Creates a tracer item and sets default values. + + The constructed item can be added to the plot with QCustomPlot::addItem. +*/ +QCPItemTracer::QCPItemTracer(QCustomPlot *parentPlot) : + QCPAbstractItem(parentPlot), + position(createPosition(QLatin1String("position"))), + mGraph(0) +{ + position->setCoords(0, 0); + + setBrush(Qt::NoBrush); + setSelectedBrush(Qt::NoBrush); + setPen(QPen(Qt::black)); + setSelectedPen(QPen(Qt::blue, 2)); + setStyle(tsCrosshair); + setSize(6); + setInterpolating(false); + setGraphKey(0); +} + +QCPItemTracer::~QCPItemTracer() +{ +} + +/*! + Sets the pen that will be used to draw the line of the tracer + + \see setSelectedPen, setBrush +*/ +void QCPItemTracer::setPen(const QPen &pen) +{ + mPen = pen; +} + +/*! + Sets the pen that will be used to draw the line of the tracer when selected + + \see setPen, setSelected +*/ +void QCPItemTracer::setSelectedPen(const QPen &pen) +{ + mSelectedPen = pen; +} + +/*! + Sets the brush that will be used to draw any fills of the tracer + + \see setSelectedBrush, setPen +*/ +void QCPItemTracer::setBrush(const QBrush &brush) +{ + mBrush = brush; +} + +/*! + Sets the brush that will be used to draw any fills of the tracer, when selected. + + \see setBrush, setSelected +*/ +void QCPItemTracer::setSelectedBrush(const QBrush &brush) +{ + mSelectedBrush = brush; +} + +/*! + Sets the size of the tracer in pixels, if the style supports setting a size (e.g. \ref tsSquare + does, \ref tsCrosshair does not). +*/ +void QCPItemTracer::setSize(double size) +{ + mSize = size; +} + +/*! + Sets the style/visual appearance of the tracer. + + If you only want to use the tracer \a position as an anchor for other items, set \a style to + \ref tsNone. +*/ +void QCPItemTracer::setStyle(QCPItemTracer::TracerStyle style) +{ + mStyle = style; +} + +/*! + Sets the QCPGraph this tracer sticks to. The tracer \a position will be set to type + QCPItemPosition::ptPlotCoords and the axes will be set to the axes of \a graph. + + To free the tracer from any graph, set \a graph to 0. The tracer \a position can then be placed + freely like any other item position. This is the state the tracer will assume when its graph gets + deleted while still attached to it. + + \see setGraphKey +*/ +void QCPItemTracer::setGraph(QCPGraph *graph) +{ + if (graph) + { + if (graph->parentPlot() == mParentPlot) + { + position->setType(QCPItemPosition::ptPlotCoords); + position->setAxes(graph->keyAxis(), graph->valueAxis()); + mGraph = graph; + updatePosition(); + } else + qDebug() << Q_FUNC_INFO << "graph isn't in same QCustomPlot instance as this item"; + } else + { + mGraph = 0; + } +} + +/*! + Sets the key of the graph's data point the tracer will be positioned at. This is the only free + coordinate of a tracer when attached to a graph. + + Depending on \ref setInterpolating, the tracer will be either positioned on the data point + closest to \a key, or will stay exactly at \a key and interpolate the value linearly. + + \see setGraph, setInterpolating +*/ +void QCPItemTracer::setGraphKey(double key) +{ + mGraphKey = key; +} + +/*! + Sets whether the value of the graph's data points shall be interpolated, when positioning the + tracer. + + If \a enabled is set to false and a key is given with \ref setGraphKey, the tracer is placed on + the data point of the graph which is closest to the key, but which is not necessarily exactly + there. If \a enabled is true, the tracer will be positioned exactly at the specified key, and + the appropriate value will be interpolated from the graph's data points linearly. + + \see setGraph, setGraphKey +*/ +void QCPItemTracer::setInterpolating(bool enabled) +{ + mInterpolating = enabled; +} + +/* inherits documentation from base class */ +double QCPItemTracer::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (onlySelectable && !mSelectable) + return -1; + + QPointF center(position->pixelPoint()); + double w = mSize/2.0; + QRect clip = clipRect(); + switch (mStyle) + { + case tsNone: return -1; + case tsPlus: + { + if (clipRect().intersects(QRectF(center-QPointF(w, w), center+QPointF(w, w)).toRect())) + return qSqrt(qMin(distSqrToLine(center+QPointF(-w, 0), center+QPointF(w, 0), pos), + distSqrToLine(center+QPointF(0, -w), center+QPointF(0, w), pos))); + break; + } + case tsCrosshair: + { + return qSqrt(qMin(distSqrToLine(QPointF(clip.left(), center.y()), QPointF(clip.right(), center.y()), pos), + distSqrToLine(QPointF(center.x(), clip.top()), QPointF(center.x(), clip.bottom()), pos))); + } + case tsCircle: + { + if (clip.intersects(QRectF(center-QPointF(w, w), center+QPointF(w, w)).toRect())) + { + // distance to border: + double centerDist = QVector2D(center-pos).length(); + double circleLine = w; + double result = qAbs(centerDist-circleLine); + // filled ellipse, allow click inside to count as hit: + if (result > mParentPlot->selectionTolerance()*0.99 && mBrush.style() != Qt::NoBrush && mBrush.color().alpha() != 0) + { + if (centerDist <= circleLine) + result = mParentPlot->selectionTolerance()*0.99; + } + return result; + } + break; + } + case tsSquare: + { + if (clip.intersects(QRectF(center-QPointF(w, w), center+QPointF(w, w)).toRect())) + { + QRectF rect = QRectF(center-QPointF(w, w), center+QPointF(w, w)); + bool filledRect = mBrush.style() != Qt::NoBrush && mBrush.color().alpha() != 0; + return rectSelectTest(rect, pos, filledRect); + } + break; + } + } + return -1; +} + +/* inherits documentation from base class */ +void QCPItemTracer::draw(QCPPainter *painter) +{ + updatePosition(); + if (mStyle == tsNone) + return; + + painter->setPen(mainPen()); + painter->setBrush(mainBrush()); + QPointF center(position->pixelPoint()); + double w = mSize/2.0; + QRect clip = clipRect(); + switch (mStyle) + { + case tsNone: return; + case tsPlus: + { + if (clip.intersects(QRectF(center-QPointF(w, w), center+QPointF(w, w)).toRect())) + { + painter->drawLine(QLineF(center+QPointF(-w, 0), center+QPointF(w, 0))); + painter->drawLine(QLineF(center+QPointF(0, -w), center+QPointF(0, w))); + } + break; + } + case tsCrosshair: + { + if (center.y() > clip.top() && center.y() < clip.bottom()) + painter->drawLine(QLineF(clip.left(), center.y(), clip.right(), center.y())); + if (center.x() > clip.left() && center.x() < clip.right()) + painter->drawLine(QLineF(center.x(), clip.top(), center.x(), clip.bottom())); + break; + } + case tsCircle: + { + if (clip.intersects(QRectF(center-QPointF(w, w), center+QPointF(w, w)).toRect())) + painter->drawEllipse(center, w, w); + break; + } + case tsSquare: + { + if (clip.intersects(QRectF(center-QPointF(w, w), center+QPointF(w, w)).toRect())) + painter->drawRect(QRectF(center-QPointF(w, w), center+QPointF(w, w))); + break; + } + } +} + +/*! + If the tracer is connected with a graph (\ref setGraph), this function updates the tracer's \a + position to reside on the graph data, depending on the configured key (\ref setGraphKey). + + It is called automatically on every redraw and normally doesn't need to be called manually. One + exception is when you want to read the tracer coordinates via \a position and are not sure that + the graph's data (or the tracer key with \ref setGraphKey) hasn't changed since the last redraw. + In that situation, call this function before accessing \a position, to make sure you don't get + out-of-date coordinates. + + If there is no graph set on this tracer, this function does nothing. +*/ +void QCPItemTracer::updatePosition() +{ + if (mGraph) + { + if (mParentPlot->hasPlottable(mGraph)) + { + if (mGraph->data()->size() > 1) + { + QCPDataMap::const_iterator first = mGraph->data()->constBegin(); + QCPDataMap::const_iterator last = mGraph->data()->constEnd()-1; + if (mGraphKey < first.key()) + position->setCoords(first.key(), first.value().value); + else if (mGraphKey > last.key()) + position->setCoords(last.key(), last.value().value); + else + { + QCPDataMap::const_iterator it = mGraph->data()->lowerBound(mGraphKey); + if (it != first) // mGraphKey is somewhere between iterators + { + QCPDataMap::const_iterator prevIt = it-1; + if (mInterpolating) + { + // interpolate between iterators around mGraphKey: + double slope = 0; + if (!qFuzzyCompare((double)it.key(), (double)prevIt.key())) + slope = (it.value().value-prevIt.value().value)/(it.key()-prevIt.key()); + position->setCoords(mGraphKey, (mGraphKey-prevIt.key())*slope+prevIt.value().value); + } else + { + // find iterator with key closest to mGraphKey: + if (mGraphKey < (prevIt.key()+it.key())*0.5) + it = prevIt; + position->setCoords(it.key(), it.value().value); + } + } else // mGraphKey is exactly on first iterator + position->setCoords(it.key(), it.value().value); + } + } else if (mGraph->data()->size() == 1) + { + QCPDataMap::const_iterator it = mGraph->data()->constBegin(); + position->setCoords(it.key(), it.value().value); + } else + qDebug() << Q_FUNC_INFO << "graph has no data"; + } else + qDebug() << Q_FUNC_INFO << "graph not contained in QCustomPlot instance (anymore)"; + } +} + +/*! \internal + + Returns the pen that should be used for drawing lines. Returns mPen when the item is not selected + and mSelectedPen when it is. +*/ +QPen QCPItemTracer::mainPen() const +{ + return mSelected ? mSelectedPen : mPen; +} + +/*! \internal + + Returns the brush that should be used for drawing fills of the item. Returns mBrush when the item + is not selected and mSelectedBrush when it is. +*/ +QBrush QCPItemTracer::mainBrush() const +{ + return mSelected ? mSelectedBrush : mBrush; +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPItemBracket +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPItemBracket + \brief A bracket for referencing/highlighting certain parts in the plot. + + \image html QCPItemBracket.png "Bracket example. Blue dotted circles are anchors, solid blue discs are positions." + + It has two positions, \a left and \a right, which define the span of the bracket. If \a left is + actually farther to the left than \a right, the bracket is opened to the bottom, as shown in the + example image. + + The bracket supports multiple styles via \ref setStyle. The length, i.e. how far the bracket + stretches away from the embraced span, can be controlled with \ref setLength. + + \image html QCPItemBracket-length.png +
Demonstrating the effect of different values for \ref setLength, for styles \ref + bsCalligraphic and \ref bsSquare. Anchors and positions are displayed for reference.
+ + It provides an anchor \a center, to allow connection of other items, e.g. an arrow (QCPItemLine + or QCPItemCurve) or a text label (QCPItemText), to the bracket. +*/ + +/*! + Creates a bracket item and sets default values. + + The constructed item can be added to the plot with QCustomPlot::addItem. +*/ +QCPItemBracket::QCPItemBracket(QCustomPlot *parentPlot) : + QCPAbstractItem(parentPlot), + left(createPosition(QLatin1String("left"))), + right(createPosition(QLatin1String("right"))), + center(createAnchor(QLatin1String("center"), aiCenter)) +{ + left->setCoords(0, 0); + right->setCoords(1, 1); + + setPen(QPen(Qt::black)); + setSelectedPen(QPen(Qt::blue, 2)); + setLength(8); + setStyle(bsCalligraphic); +} + +QCPItemBracket::~QCPItemBracket() +{ +} + +/*! + Sets the pen that will be used to draw the bracket. + + Note that when the style is \ref bsCalligraphic, only the color will be taken from the pen, the + stroke and width are ignored. To change the apparent stroke width of a calligraphic bracket, use + \ref setLength, which has a similar effect. + + \see setSelectedPen +*/ +void QCPItemBracket::setPen(const QPen &pen) +{ + mPen = pen; +} + +/*! + Sets the pen that will be used to draw the bracket when selected + + \see setPen, setSelected +*/ +void QCPItemBracket::setSelectedPen(const QPen &pen) +{ + mSelectedPen = pen; +} + +/*! + Sets the \a length in pixels how far the bracket extends in the direction towards the embraced + span of the bracket (i.e. perpendicular to the left-right-direction) + + \image html QCPItemBracket-length.png +
Demonstrating the effect of different values for \ref setLength, for styles \ref + bsCalligraphic and \ref bsSquare. Anchors and positions are displayed for reference.
+*/ +void QCPItemBracket::setLength(double length) +{ + mLength = length; +} + +/*! + Sets the style of the bracket, i.e. the shape/visual appearance. + + \see setPen +*/ +void QCPItemBracket::setStyle(QCPItemBracket::BracketStyle style) +{ + mStyle = style; +} + +/* inherits documentation from base class */ +double QCPItemBracket::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (onlySelectable && !mSelectable) + return -1; + + QVector2D leftVec(left->pixelPoint()); + QVector2D rightVec(right->pixelPoint()); + if (leftVec.toPoint() == rightVec.toPoint()) + return -1; + + QVector2D widthVec = (rightVec-leftVec)*0.5f; + QVector2D lengthVec(-widthVec.y(), widthVec.x()); + lengthVec = lengthVec.normalized()*mLength; + QVector2D centerVec = (rightVec+leftVec)*0.5f-lengthVec; + + switch (mStyle) + { + case QCPItemBracket::bsSquare: + case QCPItemBracket::bsRound: + { + double a = distSqrToLine((centerVec-widthVec).toPointF(), (centerVec+widthVec).toPointF(), pos); + double b = distSqrToLine((centerVec-widthVec+lengthVec).toPointF(), (centerVec-widthVec).toPointF(), pos); + double c = distSqrToLine((centerVec+widthVec+lengthVec).toPointF(), (centerVec+widthVec).toPointF(), pos); + return qSqrt(qMin(qMin(a, b), c)); + } + case QCPItemBracket::bsCurly: + case QCPItemBracket::bsCalligraphic: + { + double a = distSqrToLine((centerVec-widthVec*0.75f+lengthVec*0.15f).toPointF(), (centerVec+lengthVec*0.3f).toPointF(), pos); + double b = distSqrToLine((centerVec-widthVec+lengthVec*0.7f).toPointF(), (centerVec-widthVec*0.75f+lengthVec*0.15f).toPointF(), pos); + double c = distSqrToLine((centerVec+widthVec*0.75f+lengthVec*0.15f).toPointF(), (centerVec+lengthVec*0.3f).toPointF(), pos); + double d = distSqrToLine((centerVec+widthVec+lengthVec*0.7f).toPointF(), (centerVec+widthVec*0.75f+lengthVec*0.15f).toPointF(), pos); + return qSqrt(qMin(qMin(a, b), qMin(c, d))); + } + } + return -1; +} + +/* inherits documentation from base class */ +void QCPItemBracket::draw(QCPPainter *painter) +{ + QVector2D leftVec(left->pixelPoint()); + QVector2D rightVec(right->pixelPoint()); + if (leftVec.toPoint() == rightVec.toPoint()) + return; + + QVector2D widthVec = (rightVec-leftVec)*0.5f; + QVector2D lengthVec(-widthVec.y(), widthVec.x()); + lengthVec = lengthVec.normalized()*mLength; + QVector2D centerVec = (rightVec+leftVec)*0.5f-lengthVec; + + QPolygon boundingPoly; + boundingPoly << leftVec.toPoint() << rightVec.toPoint() + << (rightVec-lengthVec).toPoint() << (leftVec-lengthVec).toPoint(); + QRect clip = clipRect().adjusted(-mainPen().widthF(), -mainPen().widthF(), mainPen().widthF(), mainPen().widthF()); + if (clip.intersects(boundingPoly.boundingRect())) + { + painter->setPen(mainPen()); + switch (mStyle) + { + case bsSquare: + { + painter->drawLine((centerVec+widthVec).toPointF(), (centerVec-widthVec).toPointF()); + painter->drawLine((centerVec+widthVec).toPointF(), (centerVec+widthVec+lengthVec).toPointF()); + painter->drawLine((centerVec-widthVec).toPointF(), (centerVec-widthVec+lengthVec).toPointF()); + break; + } + case bsRound: + { + painter->setBrush(Qt::NoBrush); + QPainterPath path; + path.moveTo((centerVec+widthVec+lengthVec).toPointF()); + path.cubicTo((centerVec+widthVec).toPointF(), (centerVec+widthVec).toPointF(), centerVec.toPointF()); + path.cubicTo((centerVec-widthVec).toPointF(), (centerVec-widthVec).toPointF(), (centerVec-widthVec+lengthVec).toPointF()); + painter->drawPath(path); + break; + } + case bsCurly: + { + painter->setBrush(Qt::NoBrush); + QPainterPath path; + path.moveTo((centerVec+widthVec+lengthVec).toPointF()); + path.cubicTo((centerVec+widthVec-lengthVec*0.8f).toPointF(), (centerVec+0.4f*widthVec+lengthVec).toPointF(), centerVec.toPointF()); + path.cubicTo((centerVec-0.4f*widthVec+lengthVec).toPointF(), (centerVec-widthVec-lengthVec*0.8f).toPointF(), (centerVec-widthVec+lengthVec).toPointF()); + painter->drawPath(path); + break; + } + case bsCalligraphic: + { + painter->setPen(Qt::NoPen); + painter->setBrush(QBrush(mainPen().color())); + QPainterPath path; + path.moveTo((centerVec+widthVec+lengthVec).toPointF()); + + path.cubicTo((centerVec+widthVec-lengthVec*0.8f).toPointF(), (centerVec+0.4f*widthVec+0.8f*lengthVec).toPointF(), centerVec.toPointF()); + path.cubicTo((centerVec-0.4f*widthVec+0.8f*lengthVec).toPointF(), (centerVec-widthVec-lengthVec*0.8f).toPointF(), (centerVec-widthVec+lengthVec).toPointF()); + + path.cubicTo((centerVec-widthVec-lengthVec*0.5f).toPointF(), (centerVec-0.2f*widthVec+1.2f*lengthVec).toPointF(), (centerVec+lengthVec*0.2f).toPointF()); + path.cubicTo((centerVec+0.2f*widthVec+1.2f*lengthVec).toPointF(), (centerVec+widthVec-lengthVec*0.5f).toPointF(), (centerVec+widthVec+lengthVec).toPointF()); + + painter->drawPath(path); + break; + } + } + } +} + +/* inherits documentation from base class */ +QPointF QCPItemBracket::anchorPixelPoint(int anchorId) const +{ + QVector2D leftVec(left->pixelPoint()); + QVector2D rightVec(right->pixelPoint()); + if (leftVec.toPoint() == rightVec.toPoint()) + return leftVec.toPointF(); + + QVector2D widthVec = (rightVec-leftVec)*0.5f; + QVector2D lengthVec(-widthVec.y(), widthVec.x()); + lengthVec = lengthVec.normalized()*mLength; + QVector2D centerVec = (rightVec+leftVec)*0.5f-lengthVec; + + switch (anchorId) + { + case aiCenter: + return centerVec.toPointF(); + } + qDebug() << Q_FUNC_INFO << "invalid anchorId" << anchorId; + return QPointF(); +} + +/*! \internal + + Returns the pen that should be used for drawing lines. Returns mPen when the + item is not selected and mSelectedPen when it is. +*/ +QPen QCPItemBracket::mainPen() const +{ + return mSelected ? mSelectedPen : mPen; +} + diff --git a/GUI/QTwidgets/qcustomplot.h b/GUI/QTwidgets/qcustomplot.h new file mode 100644 index 0000000..27e1b2d --- /dev/null +++ b/GUI/QTwidgets/qcustomplot.h @@ -0,0 +1,3770 @@ +/*************************************************************************** +** ** +** QCustomPlot, an easy to use, modern plotting widget for Qt ** +** Copyright (C) 2011-2015 Emanuel Eichhammer ** +** ** +** This program is free software: you can redistribute it and/or modify ** +** it under the terms of the GNU General Public License as published by ** +** the Free Software Foundation, either version 3 of the License, or ** +** (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, ** +** but WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program. If not, see http://www.gnu.org/licenses/. ** +** ** +**************************************************************************** +** Author: Emanuel Eichhammer ** +** Website/Contact: http://www.qcustomplot.com/ ** +** Date: 25.04.15 ** +** Version: 1.3.1 ** +****************************************************************************/ + +#ifndef QCUSTOMPLOT_H +#define QCUSTOMPLOT_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0) +# include +# include +# include +#else +# include +//#include +//# include +//# include //////original: QPrintSupport.h +//# include +#endif + +class QCPPainter; +class QCustomPlot; +class QCPLayerable; +class QCPLayoutElement; +class QCPLayout; +class QCPAxis; +class QCPAxisRect; +class QCPAxisPainterPrivate; +class QCPAbstractPlottable; +class QCPGraph; +class QCPAbstractItem; +class QCPItemPosition; +class QCPLayer; +class QCPPlotTitle; +class QCPLegend; +class QCPAbstractLegendItem; +class QCPColorMap; +class QCPColorScale; +class QCPBars; + + +/*! \file */ + + +// decl definitions for shared library compilation/usage: +#if defined(QCUSTOMPLOT_COMPILE_LIBRARY) +# define QCP_LIB_DECL Q_DECL_EXPORT +#elif defined(QCUSTOMPLOT_USE_LIBRARY) +# define QCP_LIB_DECL Q_DECL_IMPORT +#else +# define QCP_LIB_DECL +#endif + +/*! + The QCP Namespace contains general enums and QFlags used throughout the QCustomPlot library +*/ +namespace QCP +{ +/*! + Defines the sides of a rectangular entity to which margins can be applied. + + \see QCPLayoutElement::setAutoMargins, QCPAxisRect::setAutoMargins +*/ +enum MarginSide { msLeft = 0x01 ///< 0x01 left margin + ,msRight = 0x02 ///< 0x02 right margin + ,msTop = 0x04 ///< 0x04 top margin + ,msBottom = 0x08 ///< 0x08 bottom margin + ,msAll = 0xFF ///< 0xFF all margins + ,msNone = 0x00 ///< 0x00 no margin + }; +Q_DECLARE_FLAGS(MarginSides, MarginSide) + +/*! + Defines what objects of a plot can be forcibly drawn antialiased/not antialiased. If an object is + neither forcibly drawn antialiased nor forcibly drawn not antialiased, it is up to the respective + element how it is drawn. Typically it provides a \a setAntialiased function for this. + + \c AntialiasedElements is a flag of or-combined elements of this enum type. + + \see QCustomPlot::setAntialiasedElements, QCustomPlot::setNotAntialiasedElements +*/ +enum AntialiasedElement { aeAxes = 0x0001 ///< 0x0001 Axis base line and tick marks + ,aeGrid = 0x0002 ///< 0x0002 Grid lines + ,aeSubGrid = 0x0004 ///< 0x0004 Sub grid lines + ,aeLegend = 0x0008 ///< 0x0008 Legend box + ,aeLegendItems = 0x0010 ///< 0x0010 Legend items + ,aePlottables = 0x0020 ///< 0x0020 Main lines of plottables (excluding error bars, see element \ref aeErrorBars) + ,aeItems = 0x0040 ///< 0x0040 Main lines of items + ,aeScatters = 0x0080 ///< 0x0080 Scatter symbols of plottables (excluding scatter symbols of type ssPixmap) + ,aeErrorBars = 0x0100 ///< 0x0100 Error bars + ,aeFills = 0x0200 ///< 0x0200 Borders of fills (e.g. under or between graphs) + ,aeZeroLine = 0x0400 ///< 0x0400 Zero-lines, see \ref QCPGrid::setZeroLinePen + ,aeAll = 0xFFFF ///< 0xFFFF All elements + ,aeNone = 0x0000 ///< 0x0000 No elements + }; +Q_DECLARE_FLAGS(AntialiasedElements, AntialiasedElement) + +/*! + Defines plotting hints that control various aspects of the quality and speed of plotting. + + \see QCustomPlot::setPlottingHints +*/ +enum PlottingHint { phNone = 0x000 ///< 0x000 No hints are set + ,phFastPolylines = 0x001 ///< 0x001 Graph/Curve lines are drawn with a faster method. This reduces the quality + ///< especially of the line segment joins. (Only relevant for solid line pens.) + ,phForceRepaint = 0x002 ///< 0x002 causes an immediate repaint() instead of a soft update() when QCustomPlot::replot() is called with parameter \ref QCustomPlot::rpHint. + ///< This is set by default to prevent the plot from freezing on fast consecutive replots (e.g. user drags ranges with mouse). + ,phCacheLabels = 0x004 ///< 0x004 axis (tick) labels will be cached as pixmaps, increasing replot performance. + }; +Q_DECLARE_FLAGS(PlottingHints, PlottingHint) + +/*! + Defines the mouse interactions possible with QCustomPlot. + + \c Interactions is a flag of or-combined elements of this enum type. + + \see QCustomPlot::setInteractions +*/ +enum Interaction { iRangeDrag = 0x001 ///< 0x001 Axis ranges are draggable (see \ref QCPAxisRect::setRangeDrag, \ref QCPAxisRect::setRangeDragAxes) + ,iRangeZoom = 0x002 ///< 0x002 Axis ranges are zoomable with the mouse wheel (see \ref QCPAxisRect::setRangeZoom, \ref QCPAxisRect::setRangeZoomAxes) + ,iMultiSelect = 0x004 ///< 0x004 The user can select multiple objects by holding the modifier set by \ref QCustomPlot::setMultiSelectModifier while clicking + ,iSelectPlottables = 0x008 ///< 0x008 Plottables are selectable (e.g. graphs, curves, bars,... see QCPAbstractPlottable) + ,iSelectAxes = 0x010 ///< 0x010 Axes are selectable (or parts of them, see QCPAxis::setSelectableParts) + ,iSelectLegend = 0x020 ///< 0x020 Legends are selectable (or their child items, see QCPLegend::setSelectableParts) + ,iSelectItems = 0x040 ///< 0x040 Items are selectable (Rectangles, Arrows, Textitems, etc. see \ref QCPAbstractItem) + ,iSelectOther = 0x080 ///< 0x080 All other objects are selectable (e.g. your own derived layerables, the plot title,...) + }; +Q_DECLARE_FLAGS(Interactions, Interaction) + +/*! \internal + + Returns whether the specified \a value is considered an invalid data value for plottables (i.e. + is \e nan or \e +/-inf). This function is used to check data validity upon replots, when the + compiler flag \c QCUSTOMPLOT_CHECK_DATA is set. +*/ +inline bool isInvalidData(double value) +{ + return qIsNaN(value) || qIsInf(value); +} + +/*! \internal + \overload + + Checks two arguments instead of one. +*/ +inline bool isInvalidData(double value1, double value2) +{ + return isInvalidData(value1) || isInvalidData(value2); +} + +/*! \internal + + Sets the specified \a side of \a margins to \a value + + \see getMarginValue +*/ +inline void setMarginValue(QMargins &margins, QCP::MarginSide side, int value) +{ + switch (side) + { + case QCP::msLeft: margins.setLeft(value); break; + case QCP::msRight: margins.setRight(value); break; + case QCP::msTop: margins.setTop(value); break; + case QCP::msBottom: margins.setBottom(value); break; + case QCP::msAll: margins = QMargins(value, value, value, value); break; + default: break; + } +} + +/*! \internal + + Returns the value of the specified \a side of \a margins. If \a side is \ref QCP::msNone or + \ref QCP::msAll, returns 0. + + \see setMarginValue +*/ +inline int getMarginValue(const QMargins &margins, QCP::MarginSide side) +{ + switch (side) + { + case QCP::msLeft: return margins.left(); + case QCP::msRight: return margins.right(); + case QCP::msTop: return margins.top(); + case QCP::msBottom: return margins.bottom(); + default: break; + } + return 0; +} + +} // end of namespace QCP + +Q_DECLARE_OPERATORS_FOR_FLAGS(QCP::AntialiasedElements) +Q_DECLARE_OPERATORS_FOR_FLAGS(QCP::PlottingHints) +Q_DECLARE_OPERATORS_FOR_FLAGS(QCP::MarginSides) +Q_DECLARE_OPERATORS_FOR_FLAGS(QCP::Interactions) + + +class QCP_LIB_DECL QCPScatterStyle +{ + Q_GADGET +public: + /*! + Defines the shape used for scatter points. + + On plottables/items that draw scatters, the sizes of these visualizations (with exception of + \ref ssDot and \ref ssPixmap) can be controlled with the \ref setSize function. Scatters are + drawn with the pen and brush specified with \ref setPen and \ref setBrush. + */ + Q_ENUMS(ScatterShape) + enum ScatterShape { ssNone ///< no scatter symbols are drawn (e.g. in QCPGraph, data only represented with lines) + ,ssDot ///< \enumimage{ssDot.png} a single pixel (use \ref ssDisc or \ref ssCircle if you want a round shape with a certain radius) + ,ssCross ///< \enumimage{ssCross.png} a cross + ,ssPlus ///< \enumimage{ssPlus.png} a plus + ,ssCircle ///< \enumimage{ssCircle.png} a circle + ,ssDisc ///< \enumimage{ssDisc.png} a circle which is filled with the pen's color (not the brush as with ssCircle) + ,ssSquare ///< \enumimage{ssSquare.png} a square + ,ssDiamond ///< \enumimage{ssDiamond.png} a diamond + ,ssStar ///< \enumimage{ssStar.png} a star with eight arms, i.e. a combination of cross and plus + ,ssTriangle ///< \enumimage{ssTriangle.png} an equilateral triangle, standing on baseline + ,ssTriangleInverted ///< \enumimage{ssTriangleInverted.png} an equilateral triangle, standing on corner + ,ssCrossSquare ///< \enumimage{ssCrossSquare.png} a square with a cross inside + ,ssPlusSquare ///< \enumimage{ssPlusSquare.png} a square with a plus inside + ,ssCrossCircle ///< \enumimage{ssCrossCircle.png} a circle with a cross inside + ,ssPlusCircle ///< \enumimage{ssPlusCircle.png} a circle with a plus inside + ,ssPeace ///< \enumimage{ssPeace.png} a circle, with one vertical and two downward diagonal lines + ,ssPixmap ///< a custom pixmap specified by \ref setPixmap, centered on the data point coordinates + ,ssCustom ///< custom painter operations are performed per scatter (As QPainterPath, see \ref setCustomPath) + }; + + QCPScatterStyle(); + QCPScatterStyle(ScatterShape shape, double size=6); + QCPScatterStyle(ScatterShape shape, const QColor &color, double size); + QCPScatterStyle(ScatterShape shape, const QColor &color, const QColor &fill, double size); + QCPScatterStyle(ScatterShape shape, const QPen &pen, const QBrush &brush, double size); + QCPScatterStyle(const QPixmap &pixmap); + QCPScatterStyle(const QPainterPath &customPath, const QPen &pen, const QBrush &brush=Qt::NoBrush, double size=6); + + // getters: + double size() const { return mSize; } + ScatterShape shape() const { return mShape; } + QPen pen() const { return mPen; } + QBrush brush() const { return mBrush; } + QPixmap pixmap() const { return mPixmap; } + QPainterPath customPath() const { return mCustomPath; } + + // setters: + void setSize(double size); + void setShape(ScatterShape shape); + void setPen(const QPen &pen); + void setBrush(const QBrush &brush); + void setPixmap(const QPixmap &pixmap); + void setCustomPath(const QPainterPath &customPath); + + // non-property methods: + bool isNone() const { return mShape == ssNone; } + bool isPenDefined() const { return mPenDefined; } + void applyTo(QCPPainter *painter, const QPen &defaultPen) const; + void drawShape(QCPPainter *painter, QPointF pos) const; + void drawShape(QCPPainter *painter, double x, double y) const; + +protected: + // property members: + double mSize; + ScatterShape mShape; + QPen mPen; + QBrush mBrush; + QPixmap mPixmap; + QPainterPath mCustomPath; + + // non-property members: + bool mPenDefined; +}; +Q_DECLARE_TYPEINFO(QCPScatterStyle, Q_MOVABLE_TYPE); + + +class QCP_LIB_DECL QCPPainter : public QPainter +{ + Q_GADGET +public: + /*! + Defines special modes the painter can operate in. They disable or enable certain subsets of features/fixes/workarounds, + depending on whether they are wanted on the respective output device. + */ + enum PainterMode { pmDefault = 0x00 ///< 0x00 Default mode for painting on screen devices + ,pmVectorized = 0x01 ///< 0x01 Mode for vectorized painting (e.g. PDF export). For example, this prevents some antialiasing fixes. + ,pmNoCaching = 0x02 ///< 0x02 Mode for all sorts of exports (e.g. PNG, PDF,...). For example, this prevents using cached pixmap labels + ,pmNonCosmetic = 0x04 ///< 0x04 Turns pen widths 0 to 1, i.e. disables cosmetic pens. (A cosmetic pen is always drawn with width 1 pixel in the vector image/pdf viewer, independent of zoom.) + }; + Q_FLAGS(PainterMode PainterModes) + Q_DECLARE_FLAGS(PainterModes, PainterMode) + + QCPPainter(); + QCPPainter(QPaintDevice *device); + ~QCPPainter(); + + // getters: + bool antialiasing() const { return testRenderHint(QPainter::Antialiasing); } + PainterModes modes() const { return mModes; } + + // setters: + void setAntialiasing(bool enabled); + void setMode(PainterMode mode, bool enabled=true); + void setModes(PainterModes modes); + + // methods hiding non-virtual base class functions (QPainter bug workarounds): + bool begin(QPaintDevice *device); + void setPen(const QPen &pen); + void setPen(const QColor &color); + void setPen(Qt::PenStyle penStyle); + void drawLine(const QLineF &line); + void drawLine(const QPointF &p1, const QPointF &p2) {drawLine(QLineF(p1, p2));} + void save(); + void restore(); + + // non-virtual methods: + void makeNonCosmetic(); + +protected: + // property members: + PainterModes mModes; + bool mIsAntialiasing; + + // non-property members: + QStack mAntialiasingStack; +}; +Q_DECLARE_OPERATORS_FOR_FLAGS(QCPPainter::PainterModes) + + +class QCP_LIB_DECL QCPLayer : public QObject +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QCustomPlot* parentPlot READ parentPlot) + Q_PROPERTY(QString name READ name) + Q_PROPERTY(int index READ index) + Q_PROPERTY(QList children READ children) + Q_PROPERTY(bool visible READ visible WRITE setVisible) + /// \endcond +public: + QCPLayer(QCustomPlot* parentPlot, const QString &layerName); + ~QCPLayer(); + + // getters: + QCustomPlot *parentPlot() const { return mParentPlot; } + QString name() const { return mName; } + int index() const { return mIndex; } + QList children() const { return mChildren; } + bool visible() const { return mVisible; } + + // setters: + void setVisible(bool visible); + +protected: + // property members: + QCustomPlot *mParentPlot; + QString mName; + int mIndex; + QList mChildren; + bool mVisible; + + // non-virtual methods: + void addChild(QCPLayerable *layerable, bool prepend); + void removeChild(QCPLayerable *layerable); + +private: + Q_DISABLE_COPY(QCPLayer) + + friend class QCustomPlot; + friend class QCPLayerable; +}; + +class QCP_LIB_DECL QCPLayerable : public QObject +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(bool visible READ visible WRITE setVisible) + Q_PROPERTY(QCustomPlot* parentPlot READ parentPlot) + Q_PROPERTY(QCPLayerable* parentLayerable READ parentLayerable) + Q_PROPERTY(QCPLayer* layer READ layer WRITE setLayer NOTIFY layerChanged) + Q_PROPERTY(bool antialiased READ antialiased WRITE setAntialiased) + /// \endcond +public: + QCPLayerable(QCustomPlot *plot, QString targetLayer=QString(), QCPLayerable *parentLayerable=0); + ~QCPLayerable(); + + // getters: + bool visible() const { return mVisible; } + QCustomPlot *parentPlot() const { return mParentPlot; } + QCPLayerable *parentLayerable() const { return mParentLayerable.data(); } + QCPLayer *layer() const { return mLayer; } + bool antialiased() const { return mAntialiased; } + + // setters: + void setVisible(bool on); + Q_SLOT bool setLayer(QCPLayer *layer); + bool setLayer(const QString &layerName); + void setAntialiased(bool enabled); + + // introduced virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const; + + // non-property methods: + bool realVisibility() const; + +signals: + void layerChanged(QCPLayer *newLayer); + +protected: + // property members: + bool mVisible; + QCustomPlot *mParentPlot; + QPointer mParentLayerable; + QCPLayer *mLayer; + bool mAntialiased; + + // introduced virtual methods: + virtual void parentPlotInitialized(QCustomPlot *parentPlot); + virtual QCP::Interaction selectionCategory() const; + virtual QRect clipRect() const; + virtual void applyDefaultAntialiasingHint(QCPPainter *painter) const = 0; + virtual void draw(QCPPainter *painter) = 0; + // events: + virtual void selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged); + virtual void deselectEvent(bool *selectionStateChanged); + + // non-property methods: + void initializeParentPlot(QCustomPlot *parentPlot); + void setParentLayerable(QCPLayerable* parentLayerable); + bool moveToLayer(QCPLayer *layer, bool prepend); + void applyAntialiasingHint(QCPPainter *painter, bool localAntialiased, QCP::AntialiasedElement overrideElement) const; + +private: + Q_DISABLE_COPY(QCPLayerable) + + friend class QCustomPlot; + friend class QCPAxisRect; +}; + + +class QCP_LIB_DECL QCPRange +{ +public: + double lower, upper; + + QCPRange(); + QCPRange(double lower, double upper); + + bool operator==(const QCPRange& other) const { return lower == other.lower && upper == other.upper; } + bool operator!=(const QCPRange& other) const { return !(*this == other); } + + QCPRange &operator+=(const double& value) { lower+=value; upper+=value; return *this; } + QCPRange &operator-=(const double& value) { lower-=value; upper-=value; return *this; } + QCPRange &operator*=(const double& value) { lower*=value; upper*=value; return *this; } + QCPRange &operator/=(const double& value) { lower/=value; upper/=value; return *this; } + friend inline const QCPRange operator+(const QCPRange&, double); + friend inline const QCPRange operator+(double, const QCPRange&); + friend inline const QCPRange operator-(const QCPRange& range, double value); + friend inline const QCPRange operator*(const QCPRange& range, double value); + friend inline const QCPRange operator*(double value, const QCPRange& range); + friend inline const QCPRange operator/(const QCPRange& range, double value); + + double size() const; + double center() const; + void normalize(); + void expand(const QCPRange &otherRange); + QCPRange expanded(const QCPRange &otherRange) const; + QCPRange sanitizedForLogScale() const; + QCPRange sanitizedForLinScale() const; + bool contains(double value) const; + + static bool validRange(double lower, double upper); + static bool validRange(const QCPRange &range); + static const double minRange; //1e-280; + static const double maxRange; //1e280; + +}; +Q_DECLARE_TYPEINFO(QCPRange, Q_MOVABLE_TYPE); + +/* documentation of inline functions */ + +/*! \fn QCPRange &QCPRange::operator+=(const double& value) + + Adds \a value to both boundaries of the range. +*/ + +/*! \fn QCPRange &QCPRange::operator-=(const double& value) + + Subtracts \a value from both boundaries of the range. +*/ + +/*! \fn QCPRange &QCPRange::operator*=(const double& value) + + Multiplies both boundaries of the range by \a value. +*/ + +/*! \fn QCPRange &QCPRange::operator/=(const double& value) + + Divides both boundaries of the range by \a value. +*/ + +/* end documentation of inline functions */ + +/*! + Adds \a value to both boundaries of the range. +*/ +inline const QCPRange operator+(const QCPRange& range, double value) +{ + QCPRange result(range); + result += value; + return result; +} + +/*! + Adds \a value to both boundaries of the range. +*/ +inline const QCPRange operator+(double value, const QCPRange& range) +{ + QCPRange result(range); + result += value; + return result; +} + +/*! + Subtracts \a value from both boundaries of the range. +*/ +inline const QCPRange operator-(const QCPRange& range, double value) +{ + QCPRange result(range); + result -= value; + return result; +} + +/*! + Multiplies both boundaries of the range by \a value. +*/ +inline const QCPRange operator*(const QCPRange& range, double value) +{ + QCPRange result(range); + result *= value; + return result; +} + +/*! + Multiplies both boundaries of the range by \a value. +*/ +inline const QCPRange operator*(double value, const QCPRange& range) +{ + QCPRange result(range); + result *= value; + return result; +} + +/*! + Divides both boundaries of the range by \a value. +*/ +inline const QCPRange operator/(const QCPRange& range, double value) +{ + QCPRange result(range); + result /= value; + return result; +} + + +class QCP_LIB_DECL QCPMarginGroup : public QObject +{ + Q_OBJECT +public: + QCPMarginGroup(QCustomPlot *parentPlot); + ~QCPMarginGroup(); + + // non-virtual methods: + QList elements(QCP::MarginSide side) const { return mChildren.value(side); } + bool isEmpty() const; + void clear(); + +protected: + // non-property members: + QCustomPlot *mParentPlot; + QHash > mChildren; + + // non-virtual methods: + int commonMargin(QCP::MarginSide side) const; + void addChild(QCP::MarginSide side, QCPLayoutElement *element); + void removeChild(QCP::MarginSide side, QCPLayoutElement *element); + +private: + Q_DISABLE_COPY(QCPMarginGroup) + + friend class QCPLayoutElement; +}; + + +class QCP_LIB_DECL QCPLayoutElement : public QCPLayerable +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QCPLayout* layout READ layout) + Q_PROPERTY(QRect rect READ rect) + Q_PROPERTY(QRect outerRect READ outerRect WRITE setOuterRect) + Q_PROPERTY(QMargins margins READ margins WRITE setMargins) + Q_PROPERTY(QMargins minimumMargins READ minimumMargins WRITE setMinimumMargins) + Q_PROPERTY(QSize minimumSize READ minimumSize WRITE setMinimumSize) + Q_PROPERTY(QSize maximumSize READ maximumSize WRITE setMaximumSize) + /// \endcond +public: + /*! + Defines the phases of the update process, that happens just before a replot. At each phase, + \ref update is called with the according UpdatePhase value. + */ + enum UpdatePhase { upPreparation ///< Phase used for any type of preparation that needs to be done before margin calculation and layout + ,upMargins ///< Phase in which the margins are calculated and set + ,upLayout ///< Final phase in which the layout system places the rects of the elements + }; + Q_ENUMS(UpdatePhase) + + explicit QCPLayoutElement(QCustomPlot *parentPlot=0); + virtual ~QCPLayoutElement(); + + // getters: + QCPLayout *layout() const { return mParentLayout; } + QRect rect() const { return mRect; } + QRect outerRect() const { return mOuterRect; } + QMargins margins() const { return mMargins; } + QMargins minimumMargins() const { return mMinimumMargins; } + QCP::MarginSides autoMargins() const { return mAutoMargins; } + QSize minimumSize() const { return mMinimumSize; } + QSize maximumSize() const { return mMaximumSize; } + QCPMarginGroup *marginGroup(QCP::MarginSide side) const { return mMarginGroups.value(side, (QCPMarginGroup*)0); } + QHash marginGroups() const { return mMarginGroups; } + + // setters: + void setOuterRect(const QRect &rect); + void setMargins(const QMargins &margins); + void setMinimumMargins(const QMargins &margins); + void setAutoMargins(QCP::MarginSides sides); + void setMinimumSize(const QSize &size); + void setMinimumSize(int width, int height); + void setMaximumSize(const QSize &size); + void setMaximumSize(int width, int height); + void setMarginGroup(QCP::MarginSides sides, QCPMarginGroup *group); + + // introduced virtual methods: + virtual void update(UpdatePhase phase); + virtual QSize minimumSizeHint() const; + virtual QSize maximumSizeHint() const; + virtual QList elements(bool recursive) const; + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const; + +protected: + // property members: + QCPLayout *mParentLayout; + QSize mMinimumSize, mMaximumSize; + QRect mRect, mOuterRect; + QMargins mMargins, mMinimumMargins; + QCP::MarginSides mAutoMargins; + QHash mMarginGroups; + + // introduced virtual methods: + virtual int calculateAutoMargin(QCP::MarginSide side); + // events: + virtual void mousePressEvent(QMouseEvent *event) {Q_UNUSED(event)} + virtual void mouseMoveEvent(QMouseEvent *event) {Q_UNUSED(event)} + virtual void mouseReleaseEvent(QMouseEvent *event) {Q_UNUSED(event)} + virtual void mouseDoubleClickEvent(QMouseEvent *event) {Q_UNUSED(event)} + virtual void wheelEvent(QWheelEvent *event) {Q_UNUSED(event)} + + // reimplemented virtual methods: + virtual void applyDefaultAntialiasingHint(QCPPainter *painter) const { Q_UNUSED(painter) } + virtual void draw(QCPPainter *painter) { Q_UNUSED(painter) } + virtual void parentPlotInitialized(QCustomPlot *parentPlot); + +private: + Q_DISABLE_COPY(QCPLayoutElement) + + friend class QCustomPlot; + friend class QCPLayout; + friend class QCPMarginGroup; +}; + + +class QCP_LIB_DECL QCPLayout : public QCPLayoutElement +{ + Q_OBJECT +public: + explicit QCPLayout(); + + // reimplemented virtual methods: + virtual void update(UpdatePhase phase); + virtual QList elements(bool recursive) const; + + // introduced virtual methods: + virtual int elementCount() const = 0; + virtual QCPLayoutElement* elementAt(int index) const = 0; + virtual QCPLayoutElement* takeAt(int index) = 0; + virtual bool take(QCPLayoutElement* element) = 0; + virtual void simplify(); + + // non-virtual methods: + bool removeAt(int index); + bool remove(QCPLayoutElement* element); + void clear(); + +protected: + // introduced virtual methods: + virtual void updateLayout(); + + // non-virtual methods: + void sizeConstraintsChanged() const; + void adoptElement(QCPLayoutElement *el); + void releaseElement(QCPLayoutElement *el); + QVector getSectionSizes(QVector maxSizes, QVector minSizes, QVector stretchFactors, int totalSize) const; + +private: + Q_DISABLE_COPY(QCPLayout) + friend class QCPLayoutElement; +}; + + +class QCP_LIB_DECL QCPLayoutGrid : public QCPLayout +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(int rowCount READ rowCount) + Q_PROPERTY(int columnCount READ columnCount) + Q_PROPERTY(QList columnStretchFactors READ columnStretchFactors WRITE setColumnStretchFactors) + Q_PROPERTY(QList rowStretchFactors READ rowStretchFactors WRITE setRowStretchFactors) + Q_PROPERTY(int columnSpacing READ columnSpacing WRITE setColumnSpacing) + Q_PROPERTY(int rowSpacing READ rowSpacing WRITE setRowSpacing) + /// \endcond +public: + explicit QCPLayoutGrid(); + virtual ~QCPLayoutGrid(); + + // getters: + int rowCount() const; + int columnCount() const; + QList columnStretchFactors() const { return mColumnStretchFactors; } + QList rowStretchFactors() const { return mRowStretchFactors; } + int columnSpacing() const { return mColumnSpacing; } + int rowSpacing() const { return mRowSpacing; } + + // setters: + void setColumnStretchFactor(int column, double factor); + void setColumnStretchFactors(const QList &factors); + void setRowStretchFactor(int row, double factor); + void setRowStretchFactors(const QList &factors); + void setColumnSpacing(int pixels); + void setRowSpacing(int pixels); + + // reimplemented virtual methods: + virtual void updateLayout(); + virtual int elementCount() const; + virtual QCPLayoutElement* elementAt(int index) const; + virtual QCPLayoutElement* takeAt(int index); + virtual bool take(QCPLayoutElement* element); + virtual QList elements(bool recursive) const; + virtual void simplify(); + virtual QSize minimumSizeHint() const; + virtual QSize maximumSizeHint() const; + + // non-virtual methods: + QCPLayoutElement *element(int row, int column) const; + bool addElement(int row, int column, QCPLayoutElement *element); + bool hasElement(int row, int column); + void expandTo(int newRowCount, int newColumnCount); + void insertRow(int newIndex); + void insertColumn(int newIndex); + +protected: + // property members: + QList > mElements; + QList mColumnStretchFactors; + QList mRowStretchFactors; + int mColumnSpacing, mRowSpacing; + + // non-virtual methods: + void getMinimumRowColSizes(QVector *minColWidths, QVector *minRowHeights) const; + void getMaximumRowColSizes(QVector *maxColWidths, QVector *maxRowHeights) const; + +private: + Q_DISABLE_COPY(QCPLayoutGrid) +}; + + +class QCP_LIB_DECL QCPLayoutInset : public QCPLayout +{ + Q_OBJECT +public: + /*! + Defines how the placement and sizing is handled for a certain element in a QCPLayoutInset. + */ + enum InsetPlacement { ipFree ///< The element may be positioned/sized arbitrarily, see \ref setInsetRect + ,ipBorderAligned ///< The element is aligned to one of the layout sides, see \ref setInsetAlignment + }; + + explicit QCPLayoutInset(); + virtual ~QCPLayoutInset(); + + // getters: + InsetPlacement insetPlacement(int index) const; + Qt::Alignment insetAlignment(int index) const; + QRectF insetRect(int index) const; + + // setters: + void setInsetPlacement(int index, InsetPlacement placement); + void setInsetAlignment(int index, Qt::Alignment alignment); + void setInsetRect(int index, const QRectF &rect); + + // reimplemented virtual methods: + virtual void updateLayout(); + virtual int elementCount() const; + virtual QCPLayoutElement* elementAt(int index) const; + virtual QCPLayoutElement* takeAt(int index); + virtual bool take(QCPLayoutElement* element); + virtual void simplify() {} + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const; + + // non-virtual methods: + void addElement(QCPLayoutElement *element, Qt::Alignment alignment); + void addElement(QCPLayoutElement *element, const QRectF &rect); + +protected: + // property members: + QList mElements; + QList mInsetPlacement; + QList mInsetAlignment; + QList mInsetRect; + +private: + Q_DISABLE_COPY(QCPLayoutInset) +}; + + +class QCP_LIB_DECL QCPLineEnding +{ + Q_GADGET +public: + /*! + Defines the type of ending decoration for line-like items, e.g. an arrow. + + \image html QCPLineEnding.png + + The width and length of these decorations can be controlled with the functions \ref setWidth + and \ref setLength. Some decorations like \ref esDisc, \ref esSquare, \ref esDiamond and \ref esBar only + support a width, the length property is ignored. + + \see QCPItemLine::setHead, QCPItemLine::setTail, QCPItemCurve::setHead, QCPItemCurve::setTail, QCPAxis::setLowerEnding, QCPAxis::setUpperEnding + */ + Q_ENUMS(EndingStyle) + enum EndingStyle { esNone ///< No ending decoration + ,esFlatArrow ///< A filled arrow head with a straight/flat back (a triangle) + ,esSpikeArrow ///< A filled arrow head with an indented back + ,esLineArrow ///< A non-filled arrow head with open back + ,esDisc ///< A filled circle + ,esSquare ///< A filled square + ,esDiamond ///< A filled diamond (45° rotated square) + ,esBar ///< A bar perpendicular to the line + ,esHalfBar ///< A bar perpendicular to the line, pointing out to only one side (to which side can be changed with \ref setInverted) + ,esSkewedBar ///< A bar that is skewed (skew controllable via \ref setLength) + }; + + QCPLineEnding(); + QCPLineEnding(EndingStyle style, double width=8, double length=10, bool inverted=false); + + // getters: + EndingStyle style() const { return mStyle; } + double width() const { return mWidth; } + double length() const { return mLength; } + bool inverted() const { return mInverted; } + + // setters: + void setStyle(EndingStyle style); + void setWidth(double width); + void setLength(double length); + void setInverted(bool inverted); + + // non-property methods: + double boundingDistance() const; + double realLength() const; + void draw(QCPPainter *painter, const QVector2D &pos, const QVector2D &dir) const; + void draw(QCPPainter *painter, const QVector2D &pos, double angle) const; + +protected: + // property members: + EndingStyle mStyle; + double mWidth, mLength; + bool mInverted; +}; +Q_DECLARE_TYPEINFO(QCPLineEnding, Q_MOVABLE_TYPE); + + +class QCP_LIB_DECL QCPGrid :public QCPLayerable +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(bool subGridVisible READ subGridVisible WRITE setSubGridVisible) + Q_PROPERTY(bool antialiasedSubGrid READ antialiasedSubGrid WRITE setAntialiasedSubGrid) + Q_PROPERTY(bool antialiasedZeroLine READ antialiasedZeroLine WRITE setAntialiasedZeroLine) + Q_PROPERTY(QPen pen READ pen WRITE setPen) + Q_PROPERTY(QPen subGridPen READ subGridPen WRITE setSubGridPen) + Q_PROPERTY(QPen zeroLinePen READ zeroLinePen WRITE setZeroLinePen) + /// \endcond +public: + QCPGrid(QCPAxis *parentAxis); + + // getters: + bool subGridVisible() const { return mSubGridVisible; } + bool antialiasedSubGrid() const { return mAntialiasedSubGrid; } + bool antialiasedZeroLine() const { return mAntialiasedZeroLine; } + QPen pen() const { return mPen; } + QPen subGridPen() const { return mSubGridPen; } + QPen zeroLinePen() const { return mZeroLinePen; } + + // setters: + void setSubGridVisible(bool visible); + void setAntialiasedSubGrid(bool enabled); + void setAntialiasedZeroLine(bool enabled); + void setPen(const QPen &pen); + void setSubGridPen(const QPen &pen); + void setZeroLinePen(const QPen &pen); + +protected: + // property members: + bool mSubGridVisible; + bool mAntialiasedSubGrid, mAntialiasedZeroLine; + QPen mPen, mSubGridPen, mZeroLinePen; + // non-property members: + QCPAxis *mParentAxis; + + // reimplemented virtual methods: + virtual void applyDefaultAntialiasingHint(QCPPainter *painter) const; + virtual void draw(QCPPainter *painter); + + // non-virtual methods: + void drawGridLines(QCPPainter *painter) const; + void drawSubGridLines(QCPPainter *painter) const; + + friend class QCPAxis; +}; + + +class QCP_LIB_DECL QCPAxis : public QCPLayerable +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(AxisType axisType READ axisType) + Q_PROPERTY(QCPAxisRect* axisRect READ axisRect) + Q_PROPERTY(ScaleType scaleType READ scaleType WRITE setScaleType NOTIFY scaleTypeChanged) + Q_PROPERTY(double scaleLogBase READ scaleLogBase WRITE setScaleLogBase) + Q_PROPERTY(QCPRange range READ range WRITE setRange NOTIFY rangeChanged) + Q_PROPERTY(bool rangeReversed READ rangeReversed WRITE setRangeReversed) + Q_PROPERTY(bool autoTicks READ autoTicks WRITE setAutoTicks) + Q_PROPERTY(int autoTickCount READ autoTickCount WRITE setAutoTickCount) + Q_PROPERTY(bool autoTickLabels READ autoTickLabels WRITE setAutoTickLabels) + Q_PROPERTY(bool autoTickStep READ autoTickStep WRITE setAutoTickStep) + Q_PROPERTY(bool autoSubTicks READ autoSubTicks WRITE setAutoSubTicks) + Q_PROPERTY(bool ticks READ ticks WRITE setTicks) + Q_PROPERTY(bool tickLabels READ tickLabels WRITE setTickLabels) + Q_PROPERTY(int tickLabelPadding READ tickLabelPadding WRITE setTickLabelPadding) + Q_PROPERTY(LabelType tickLabelType READ tickLabelType WRITE setTickLabelType) + Q_PROPERTY(QFont tickLabelFont READ tickLabelFont WRITE setTickLabelFont) + Q_PROPERTY(QColor tickLabelColor READ tickLabelColor WRITE setTickLabelColor) + Q_PROPERTY(double tickLabelRotation READ tickLabelRotation WRITE setTickLabelRotation) + Q_PROPERTY(LabelSide tickLabelSide READ tickLabelSide WRITE setTickLabelSide) + Q_PROPERTY(QString dateTimeFormat READ dateTimeFormat WRITE setDateTimeFormat) + Q_PROPERTY(Qt::TimeSpec dateTimeSpec READ dateTimeSpec WRITE setDateTimeSpec) + Q_PROPERTY(QString numberFormat READ numberFormat WRITE setNumberFormat) + Q_PROPERTY(int numberPrecision READ numberPrecision WRITE setNumberPrecision) + Q_PROPERTY(double tickStep READ tickStep WRITE setTickStep) + Q_PROPERTY(QVector tickVector READ tickVector WRITE setTickVector) + Q_PROPERTY(QVector tickVectorLabels READ tickVectorLabels WRITE setTickVectorLabels) + Q_PROPERTY(int tickLengthIn READ tickLengthIn WRITE setTickLengthIn) + Q_PROPERTY(int tickLengthOut READ tickLengthOut WRITE setTickLengthOut) + Q_PROPERTY(int subTickCount READ subTickCount WRITE setSubTickCount) + Q_PROPERTY(int subTickLengthIn READ subTickLengthIn WRITE setSubTickLengthIn) + Q_PROPERTY(int subTickLengthOut READ subTickLengthOut WRITE setSubTickLengthOut) + Q_PROPERTY(QPen basePen READ basePen WRITE setBasePen) + Q_PROPERTY(QPen tickPen READ tickPen WRITE setTickPen) + Q_PROPERTY(QPen subTickPen READ subTickPen WRITE setSubTickPen) + Q_PROPERTY(QFont labelFont READ labelFont WRITE setLabelFont) + Q_PROPERTY(QColor labelColor READ labelColor WRITE setLabelColor) + Q_PROPERTY(QString label READ label WRITE setLabel) + Q_PROPERTY(int labelPadding READ labelPadding WRITE setLabelPadding) + Q_PROPERTY(int padding READ padding WRITE setPadding) + Q_PROPERTY(int offset READ offset WRITE setOffset) + Q_PROPERTY(SelectableParts selectedParts READ selectedParts WRITE setSelectedParts NOTIFY selectionChanged) + Q_PROPERTY(SelectableParts selectableParts READ selectableParts WRITE setSelectableParts NOTIFY selectableChanged) + Q_PROPERTY(QFont selectedTickLabelFont READ selectedTickLabelFont WRITE setSelectedTickLabelFont) + Q_PROPERTY(QFont selectedLabelFont READ selectedLabelFont WRITE setSelectedLabelFont) + Q_PROPERTY(QColor selectedTickLabelColor READ selectedTickLabelColor WRITE setSelectedTickLabelColor) + Q_PROPERTY(QColor selectedLabelColor READ selectedLabelColor WRITE setSelectedLabelColor) + Q_PROPERTY(QPen selectedBasePen READ selectedBasePen WRITE setSelectedBasePen) + Q_PROPERTY(QPen selectedTickPen READ selectedTickPen WRITE setSelectedTickPen) + Q_PROPERTY(QPen selectedSubTickPen READ selectedSubTickPen WRITE setSelectedSubTickPen) + Q_PROPERTY(QCPLineEnding lowerEnding READ lowerEnding WRITE setLowerEnding) + Q_PROPERTY(QCPLineEnding upperEnding READ upperEnding WRITE setUpperEnding) + Q_PROPERTY(QCPGrid* grid READ grid) + /// \endcond +public: + /*! + Defines at which side of the axis rect the axis will appear. This also affects how the tick + marks are drawn, on which side the labels are placed etc. + */ + enum AxisType { atLeft = 0x01 ///< 0x01 Axis is vertical and on the left side of the axis rect + ,atRight = 0x02 ///< 0x02 Axis is vertical and on the right side of the axis rect + ,atTop = 0x04 ///< 0x04 Axis is horizontal and on the top side of the axis rect + ,atBottom = 0x08 ///< 0x08 Axis is horizontal and on the bottom side of the axis rect + }; + Q_FLAGS(AxisType AxisTypes) + Q_DECLARE_FLAGS(AxisTypes, AxisType) + /*! + When automatic tick label generation is enabled (\ref setAutoTickLabels), defines how the + coordinate of the tick is interpreted, i.e. translated into a string. + + \see setTickLabelType + */ + enum LabelType { ltNumber ///< Tick coordinate is regarded as normal number and will be displayed as such. (see \ref setNumberFormat) + ,ltDateTime ///< Tick coordinate is regarded as a date/time (seconds since 1970-01-01T00:00:00 UTC) and will be displayed and formatted as such. (for details, see \ref setDateTimeFormat) + }; + Q_ENUMS(LabelType) + /*! + Defines on which side of the axis the tick labels (numbers) shall appear. + + \see setTickLabelSide + */ + enum LabelSide { lsInside ///< Tick labels will be displayed inside the axis rect and clipped to the inner axis rect + ,lsOutside ///< Tick labels will be displayed outside the axis rect + }; + Q_ENUMS(LabelSide) + /*! + Defines the scale of an axis. + \see setScaleType + */ + enum ScaleType { stLinear ///< Linear scaling + ,stLogarithmic ///< Logarithmic scaling with correspondingly transformed plots and (major) tick marks at every base power (see \ref setScaleLogBase). + }; + Q_ENUMS(ScaleType) + /*! + Defines the selectable parts of an axis. + \see setSelectableParts, setSelectedParts + */ + enum SelectablePart { spNone = 0 ///< None of the selectable parts + ,spAxis = 0x001 ///< The axis backbone and tick marks + ,spTickLabels = 0x002 ///< Tick labels (numbers) of this axis (as a whole, not individually) + ,spAxisLabel = 0x004 ///< The axis label + }; + Q_FLAGS(SelectablePart SelectableParts) + Q_DECLARE_FLAGS(SelectableParts, SelectablePart) + + explicit QCPAxis(QCPAxisRect *parent, AxisType type); + virtual ~QCPAxis(); + + // getters: + AxisType axisType() const { return mAxisType; } + QCPAxisRect *axisRect() const { return mAxisRect; } + ScaleType scaleType() const { return mScaleType; } + double scaleLogBase() const { return mScaleLogBase; } + const QCPRange range() const { return mRange; } + bool rangeReversed() const { return mRangeReversed; } + bool autoTicks() const { return mAutoTicks; } + int autoTickCount() const { return mAutoTickCount; } + bool autoTickLabels() const { return mAutoTickLabels; } + bool autoTickStep() const { return mAutoTickStep; } + bool autoSubTicks() const { return mAutoSubTicks; } + bool ticks() const { return mTicks; } + bool tickLabels() const { return mTickLabels; } + int tickLabelPadding() const; + LabelType tickLabelType() const { return mTickLabelType; } + QFont tickLabelFont() const { return mTickLabelFont; } + QColor tickLabelColor() const { return mTickLabelColor; } + double tickLabelRotation() const; + LabelSide tickLabelSide() const; + QString dateTimeFormat() const { return mDateTimeFormat; } + Qt::TimeSpec dateTimeSpec() const { return mDateTimeSpec; } + QString numberFormat() const; + int numberPrecision() const { return mNumberPrecision; } + double tickStep() const { return mTickStep; } + QVector tickVector() const { return mTickVector; } + QVector tickVectorLabels() const { return mTickVectorLabels; } + int tickLengthIn() const; + int tickLengthOut() const; + int subTickCount() const { return mSubTickCount; } + int subTickLengthIn() const; + int subTickLengthOut() const; + QPen basePen() const { return mBasePen; } + QPen tickPen() const { return mTickPen; } + QPen subTickPen() const { return mSubTickPen; } + QFont labelFont() const { return mLabelFont; } + QColor labelColor() const { return mLabelColor; } + QString label() const { return mLabel; } + int labelPadding() const; + int padding() const { return mPadding; } + int offset() const; + SelectableParts selectedParts() const { return mSelectedParts; } + SelectableParts selectableParts() const { return mSelectableParts; } + QFont selectedTickLabelFont() const { return mSelectedTickLabelFont; } + QFont selectedLabelFont() const { return mSelectedLabelFont; } + QColor selectedTickLabelColor() const { return mSelectedTickLabelColor; } + QColor selectedLabelColor() const { return mSelectedLabelColor; } + QPen selectedBasePen() const { return mSelectedBasePen; } + QPen selectedTickPen() const { return mSelectedTickPen; } + QPen selectedSubTickPen() const { return mSelectedSubTickPen; } + QCPLineEnding lowerEnding() const; + QCPLineEnding upperEnding() const; + QCPGrid *grid() const { return mGrid; } + + // setters: + Q_SLOT void setScaleType(QCPAxis::ScaleType type); + void setScaleLogBase(double base); + Q_SLOT void setRange(const QCPRange &range); + void setRange(double lower, double upper); + void setRange(double position, double size, Qt::AlignmentFlag alignment); + void setRangeLower(double lower); + void setRangeUpper(double upper); + void setRangeReversed(bool reversed); + void setAutoTicks(bool on); + void setAutoTickCount(int approximateCount); + void setAutoTickLabels(bool on); + void setAutoTickStep(bool on); + void setAutoSubTicks(bool on); + void setTicks(bool show); + void setTickLabels(bool show); + void setTickLabelPadding(int padding); + void setTickLabelType(LabelType type); + void setTickLabelFont(const QFont &font); + void setTickLabelColor(const QColor &color); + void setTickLabelRotation(double degrees); + void setTickLabelSide(LabelSide side); + void setDateTimeFormat(const QString &format); + void setDateTimeSpec(const Qt::TimeSpec &timeSpec); + void setNumberFormat(const QString &formatCode); + void setNumberPrecision(int precision); + void setTickStep(double step); + void setTickVector(const QVector &vec); + void setTickVectorLabels(const QVector &vec); + void setTickLength(int inside, int outside=0); + void setTickLengthIn(int inside); + void setTickLengthOut(int outside); + void setSubTickCount(int count); + void setSubTickLength(int inside, int outside=0); + void setSubTickLengthIn(int inside); + void setSubTickLengthOut(int outside); + void setBasePen(const QPen &pen); + void setTickPen(const QPen &pen); + void setSubTickPen(const QPen &pen); + void setLabelFont(const QFont &font); + void setLabelColor(const QColor &color); + void setLabel(const QString &str); + void setLabelPadding(int padding); + void setPadding(int padding); + void setOffset(int offset); + void setSelectedTickLabelFont(const QFont &font); + void setSelectedLabelFont(const QFont &font); + void setSelectedTickLabelColor(const QColor &color); + void setSelectedLabelColor(const QColor &color); + void setSelectedBasePen(const QPen &pen); + void setSelectedTickPen(const QPen &pen); + void setSelectedSubTickPen(const QPen &pen); + Q_SLOT void setSelectableParts(const QCPAxis::SelectableParts &selectableParts); + Q_SLOT void setSelectedParts(const QCPAxis::SelectableParts &selectedParts); + void setLowerEnding(const QCPLineEnding &ending); + void setUpperEnding(const QCPLineEnding &ending); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const; + + // non-property methods: + Qt::Orientation orientation() const { return mOrientation; } + void moveRange(double diff); + void scaleRange(double factor, double center); + void setScaleRatio(const QCPAxis *otherAxis, double ratio=1.0); + void rescale(bool onlyVisiblePlottables=false); + double pixelToCoord(double value) const; + double coordToPixel(double value) const; + SelectablePart getPartAt(const QPointF &pos) const; + QList plottables() const; + QList graphs() const; + QList items() const; + + static AxisType marginSideToAxisType(QCP::MarginSide side); + static Qt::Orientation orientation(AxisType type) { return type==atBottom||type==atTop ? Qt::Horizontal : Qt::Vertical; } + static AxisType opposite(AxisType type); + +signals: + void ticksRequest(); + void rangeChanged(const QCPRange &newRange); + void rangeChanged(const QCPRange &newRange, const QCPRange &oldRange); + void scaleTypeChanged(QCPAxis::ScaleType scaleType); + void selectionChanged(const QCPAxis::SelectableParts &parts); + void selectableChanged(const QCPAxis::SelectableParts &parts); + +protected: + // property members: + // axis base: + AxisType mAxisType; + QCPAxisRect *mAxisRect; + //int mOffset; // in QCPAxisPainter + int mPadding; + Qt::Orientation mOrientation; + SelectableParts mSelectableParts, mSelectedParts; + QPen mBasePen, mSelectedBasePen; + //QCPLineEnding mLowerEnding, mUpperEnding; // in QCPAxisPainter + // axis label: + //int mLabelPadding; // in QCPAxisPainter + QString mLabel; + QFont mLabelFont, mSelectedLabelFont; + QColor mLabelColor, mSelectedLabelColor; + // tick labels: + //int mTickLabelPadding; // in QCPAxisPainter + bool mTickLabels, mAutoTickLabels; + //double mTickLabelRotation; // in QCPAxisPainter + LabelType mTickLabelType; + QFont mTickLabelFont, mSelectedTickLabelFont; + QColor mTickLabelColor, mSelectedTickLabelColor; + QString mDateTimeFormat; + Qt::TimeSpec mDateTimeSpec; + int mNumberPrecision; + QLatin1Char mNumberFormatChar; + bool mNumberBeautifulPowers; + //bool mNumberMultiplyCross; // QCPAxisPainter + // ticks and subticks: + bool mTicks; + double mTickStep; + int mSubTickCount, mAutoTickCount; + bool mAutoTicks, mAutoTickStep, mAutoSubTicks; + //int mTickLengthIn, mTickLengthOut, mSubTickLengthIn, mSubTickLengthOut; // QCPAxisPainter + QPen mTickPen, mSelectedTickPen; + QPen mSubTickPen, mSelectedSubTickPen; + // scale and range: + QCPRange mRange; + bool mRangeReversed; + ScaleType mScaleType; + double mScaleLogBase, mScaleLogBaseLogInv; + + // non-property members: + QCPGrid *mGrid; + QCPAxisPainterPrivate *mAxisPainter; + int mLowestVisibleTick, mHighestVisibleTick; + QVector mTickVector; + QVector mTickVectorLabels; + QVector mSubTickVector; + bool mCachedMarginValid; + int mCachedMargin; + + // introduced virtual methods: + virtual void setupTickVectors(); + virtual void generateAutoTicks(); + virtual int calculateAutoSubTickCount(double tickStep) const; + virtual int calculateMargin(); + + // reimplemented virtual methods: + virtual void applyDefaultAntialiasingHint(QCPPainter *painter) const; + virtual void draw(QCPPainter *painter); + virtual QCP::Interaction selectionCategory() const; + // events: + virtual void selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged); + virtual void deselectEvent(bool *selectionStateChanged); + + // non-virtual methods: + void visibleTickBounds(int &lowIndex, int &highIndex) const; + double baseLog(double value) const; + double basePow(double value) const; + QPen getBasePen() const; + QPen getTickPen() const; + QPen getSubTickPen() const; + QFont getTickLabelFont() const; + QFont getLabelFont() const; + QColor getTickLabelColor() const; + QColor getLabelColor() const; + +private: + Q_DISABLE_COPY(QCPAxis) + + friend class QCustomPlot; + friend class QCPGrid; + friend class QCPAxisRect; +}; +Q_DECLARE_OPERATORS_FOR_FLAGS(QCPAxis::SelectableParts) +Q_DECLARE_OPERATORS_FOR_FLAGS(QCPAxis::AxisTypes) +Q_DECLARE_METATYPE(QCPAxis::SelectablePart) + + +class QCPAxisPainterPrivate +{ +public: + explicit QCPAxisPainterPrivate(QCustomPlot *parentPlot); + virtual ~QCPAxisPainterPrivate(); + + virtual void draw(QCPPainter *painter); + virtual int size() const; + void clearCache(); + + QRect axisSelectionBox() const { return mAxisSelectionBox; } + QRect tickLabelsSelectionBox() const { return mTickLabelsSelectionBox; } + QRect labelSelectionBox() const { return mLabelSelectionBox; } + + // public property members: + QCPAxis::AxisType type; + QPen basePen; + QCPLineEnding lowerEnding, upperEnding; // directly accessed by QCPAxis setters/getters + int labelPadding; // directly accessed by QCPAxis setters/getters + QFont labelFont; + QColor labelColor; + QString label; + int tickLabelPadding; // directly accessed by QCPAxis setters/getters + double tickLabelRotation; // directly accessed by QCPAxis setters/getters + QCPAxis::LabelSide tickLabelSide; // directly accessed by QCPAxis setters/getters + bool substituteExponent; + bool numberMultiplyCross; // directly accessed by QCPAxis setters/getters + int tickLengthIn, tickLengthOut, subTickLengthIn, subTickLengthOut; // directly accessed by QCPAxis setters/getters + QPen tickPen, subTickPen; + QFont tickLabelFont; + QColor tickLabelColor; + QRect axisRect, viewportRect; + double offset; // directly accessed by QCPAxis setters/getters + bool abbreviateDecimalPowers; + bool reversedEndings; + + QVector subTickPositions; + QVector tickPositions; + QVector tickLabels; + +protected: + struct CachedLabel + { + QPointF offset; + QPixmap pixmap; + }; + struct TickLabelData + { + QString basePart, expPart; + QRect baseBounds, expBounds, totalBounds, rotatedTotalBounds; + QFont baseFont, expFont; + }; + QCustomPlot *mParentPlot; + QByteArray mLabelParameterHash; // to determine whether mLabelCache needs to be cleared due to changed parameters + QCache mLabelCache; + QRect mAxisSelectionBox, mTickLabelsSelectionBox, mLabelSelectionBox; + + virtual QByteArray generateLabelParameterHash() const; + + virtual void placeTickLabel(QCPPainter *painter, double position, int distanceToAxis, const QString &text, QSize *tickLabelsSize); + virtual void drawTickLabel(QCPPainter *painter, double x, double y, const TickLabelData &labelData) const; + virtual TickLabelData getTickLabelData(const QFont &font, const QString &text) const; + virtual QPointF getTickLabelDrawOffset(const TickLabelData &labelData) const; + virtual void getMaxTickLabelSize(const QFont &font, const QString &text, QSize *tickLabelsSize) const; +}; + + +class QCP_LIB_DECL QCPAbstractPlottable : public QCPLayerable +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QString name READ name WRITE setName) + Q_PROPERTY(bool antialiasedFill READ antialiasedFill WRITE setAntialiasedFill) + Q_PROPERTY(bool antialiasedScatters READ antialiasedScatters WRITE setAntialiasedScatters) + Q_PROPERTY(bool antialiasedErrorBars READ antialiasedErrorBars WRITE setAntialiasedErrorBars) + Q_PROPERTY(QPen pen READ pen WRITE setPen) + Q_PROPERTY(QPen selectedPen READ selectedPen WRITE setSelectedPen) + Q_PROPERTY(QBrush brush READ brush WRITE setBrush) + Q_PROPERTY(QBrush selectedBrush READ selectedBrush WRITE setSelectedBrush) + Q_PROPERTY(QCPAxis* keyAxis READ keyAxis WRITE setKeyAxis) + Q_PROPERTY(QCPAxis* valueAxis READ valueAxis WRITE setValueAxis) + Q_PROPERTY(bool selectable READ selectable WRITE setSelectable NOTIFY selectableChanged) + Q_PROPERTY(bool selected READ selected WRITE setSelected NOTIFY selectionChanged) + /// \endcond +public: + QCPAbstractPlottable(QCPAxis *keyAxis, QCPAxis *valueAxis); + + // getters: + QString name() const { return mName; } + bool antialiasedFill() const { return mAntialiasedFill; } + bool antialiasedScatters() const { return mAntialiasedScatters; } + bool antialiasedErrorBars() const { return mAntialiasedErrorBars; } + QPen pen() const { return mPen; } + QPen selectedPen() const { return mSelectedPen; } + QBrush brush() const { return mBrush; } + QBrush selectedBrush() const { return mSelectedBrush; } + QCPAxis *keyAxis() const { return mKeyAxis.data(); } + QCPAxis *valueAxis() const { return mValueAxis.data(); } + bool selectable() const { return mSelectable; } + bool selected() const { return mSelected; } + + // setters: + void setName(const QString &name); + void setAntialiasedFill(bool enabled); + void setAntialiasedScatters(bool enabled); + void setAntialiasedErrorBars(bool enabled); + void setPen(const QPen &pen); + void setSelectedPen(const QPen &pen); + void setBrush(const QBrush &brush); + void setSelectedBrush(const QBrush &brush); + void setKeyAxis(QCPAxis *axis); + void setValueAxis(QCPAxis *axis); + Q_SLOT void setSelectable(bool selectable); + Q_SLOT void setSelected(bool selected); + + // introduced virtual methods: + virtual void clearData() = 0; + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const = 0; + virtual bool addToLegend(); + virtual bool removeFromLegend() const; + + // non-property methods: + void rescaleAxes(bool onlyEnlarge=false) const; + void rescaleKeyAxis(bool onlyEnlarge=false) const; + void rescaleValueAxis(bool onlyEnlarge=false) const; + +signals: + void selectionChanged(bool selected); + void selectableChanged(bool selectable); + +protected: + /*! + Represents negative and positive sign domain for passing to \ref getKeyRange and \ref getValueRange. + */ + enum SignDomain { sdNegative ///< The negative sign domain, i.e. numbers smaller than zero + ,sdBoth ///< Both sign domains, including zero, i.e. all (rational) numbers + ,sdPositive ///< The positive sign domain, i.e. numbers greater than zero + }; + + // property members: + QString mName; + bool mAntialiasedFill, mAntialiasedScatters, mAntialiasedErrorBars; + QPen mPen, mSelectedPen; + QBrush mBrush, mSelectedBrush; + QPointer mKeyAxis, mValueAxis; + bool mSelectable, mSelected; + + // reimplemented virtual methods: + virtual QRect clipRect() const; + virtual void draw(QCPPainter *painter) = 0; + virtual QCP::Interaction selectionCategory() const; + void applyDefaultAntialiasingHint(QCPPainter *painter) const; + // events: + virtual void selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged); + virtual void deselectEvent(bool *selectionStateChanged); + + // introduced virtual methods: + virtual void drawLegendIcon(QCPPainter *painter, const QRectF &rect) const = 0; + virtual QCPRange getKeyRange(bool &foundRange, SignDomain inSignDomain=sdBoth) const = 0; + virtual QCPRange getValueRange(bool &foundRange, SignDomain inSignDomain=sdBoth) const = 0; + + // non-virtual methods: + void coordsToPixels(double key, double value, double &x, double &y) const; + const QPointF coordsToPixels(double key, double value) const; + void pixelsToCoords(double x, double y, double &key, double &value) const; + void pixelsToCoords(const QPointF &pixelPos, double &key, double &value) const; + QPen mainPen() const; + QBrush mainBrush() const; + void applyFillAntialiasingHint(QCPPainter *painter) const; + void applyScattersAntialiasingHint(QCPPainter *painter) const; + void applyErrorBarsAntialiasingHint(QCPPainter *painter) const; + double distSqrToLine(const QPointF &start, const QPointF &end, const QPointF &point) const; + +private: + Q_DISABLE_COPY(QCPAbstractPlottable) + + friend class QCustomPlot; + friend class QCPAxis; + friend class QCPPlottableLegendItem; +}; + + +class QCP_LIB_DECL QCPItemAnchor +{ +public: + QCPItemAnchor(QCustomPlot *parentPlot, QCPAbstractItem *parentItem, const QString name, int anchorId=-1); + virtual ~QCPItemAnchor(); + + // getters: + QString name() const { return mName; } + virtual QPointF pixelPoint() const; + +protected: + // property members: + QString mName; + + // non-property members: + QCustomPlot *mParentPlot; + QCPAbstractItem *mParentItem; + int mAnchorId; + QSet mChildrenX, mChildrenY; + + // introduced virtual methods: + virtual QCPItemPosition *toQCPItemPosition() { return 0; } + + // non-virtual methods: + void addChildX(QCPItemPosition* pos); // called from pos when this anchor is set as parent + void removeChildX(QCPItemPosition *pos); // called from pos when its parent anchor is reset or pos deleted + void addChildY(QCPItemPosition* pos); // called from pos when this anchor is set as parent + void removeChildY(QCPItemPosition *pos); // called from pos when its parent anchor is reset or pos deleted + +private: + Q_DISABLE_COPY(QCPItemAnchor) + + friend class QCPItemPosition; +}; + + + +class QCP_LIB_DECL QCPItemPosition : public QCPItemAnchor +{ +public: + /*! + Defines the ways an item position can be specified. Thus it defines what the numbers passed to + \ref setCoords actually mean. + + \see setType + */ + enum PositionType { ptAbsolute ///< Static positioning in pixels, starting from the top left corner of the viewport/widget. + ,ptViewportRatio ///< Static positioning given by a fraction of the viewport size. For example, if you call setCoords(0, 0), the position will be at the top + ///< left corner of the viewport/widget. setCoords(1, 1) will be at the bottom right corner, setCoords(0.5, 0) will be horizontally centered and + ///< vertically at the top of the viewport/widget, etc. + ,ptAxisRectRatio ///< Static positioning given by a fraction of the axis rect size (see \ref setAxisRect). For example, if you call setCoords(0, 0), the position will be at the top + ///< left corner of the axis rect. setCoords(1, 1) will be at the bottom right corner, setCoords(0.5, 0) will be horizontally centered and + ///< vertically at the top of the axis rect, etc. You can also go beyond the axis rect by providing negative coordinates or coordinates larger than 1. + ,ptPlotCoords ///< Dynamic positioning at a plot coordinate defined by two axes (see \ref setAxes). + }; + + QCPItemPosition(QCustomPlot *parentPlot, QCPAbstractItem *parentItem, const QString name); + virtual ~QCPItemPosition(); + + // getters: + PositionType type() const { return typeX(); } + PositionType typeX() const { return mPositionTypeX; } + PositionType typeY() const { return mPositionTypeY; } + QCPItemAnchor *parentAnchor() const { return parentAnchorX(); } + QCPItemAnchor *parentAnchorX() const { return mParentAnchorX; } + QCPItemAnchor *parentAnchorY() const { return mParentAnchorY; } + double key() const { return mKey; } + double value() const { return mValue; } + QPointF coords() const { return QPointF(mKey, mValue); } + QCPAxis *keyAxis() const { return mKeyAxis.data(); } + QCPAxis *valueAxis() const { return mValueAxis.data(); } + QCPAxisRect *axisRect() const; + virtual QPointF pixelPoint() const; + + // setters: + void setType(PositionType type); + void setTypeX(PositionType type); + void setTypeY(PositionType type); + bool setParentAnchor(QCPItemAnchor *parentAnchor, bool keepPixelPosition=false); + bool setParentAnchorX(QCPItemAnchor *parentAnchor, bool keepPixelPosition=false); + bool setParentAnchorY(QCPItemAnchor *parentAnchor, bool keepPixelPosition=false); + void setCoords(double key, double value); + void setCoords(const QPointF &coords); + void setAxes(QCPAxis* keyAxis, QCPAxis* valueAxis); + void setAxisRect(QCPAxisRect *axisRect); + void setPixelPoint(const QPointF &pixelPoint); + +protected: + // property members: + PositionType mPositionTypeX, mPositionTypeY; + QPointer mKeyAxis, mValueAxis; + QPointer mAxisRect; + double mKey, mValue; + QCPItemAnchor *mParentAnchorX, *mParentAnchorY; + + // reimplemented virtual methods: + virtual QCPItemPosition *toQCPItemPosition() { return this; } + +private: + Q_DISABLE_COPY(QCPItemPosition) + +}; + + +class QCP_LIB_DECL QCPAbstractItem : public QCPLayerable +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(bool clipToAxisRect READ clipToAxisRect WRITE setClipToAxisRect) + Q_PROPERTY(QCPAxisRect* clipAxisRect READ clipAxisRect WRITE setClipAxisRect) + Q_PROPERTY(bool selectable READ selectable WRITE setSelectable NOTIFY selectableChanged) + Q_PROPERTY(bool selected READ selected WRITE setSelected NOTIFY selectionChanged) + /// \endcond +public: + QCPAbstractItem(QCustomPlot *parentPlot); + virtual ~QCPAbstractItem(); + + // getters: + bool clipToAxisRect() const { return mClipToAxisRect; } + QCPAxisRect *clipAxisRect() const; + bool selectable() const { return mSelectable; } + bool selected() const { return mSelected; } + + // setters: + void setClipToAxisRect(bool clip); + void setClipAxisRect(QCPAxisRect *rect); + Q_SLOT void setSelectable(bool selectable); + Q_SLOT void setSelected(bool selected); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const = 0; + + // non-virtual methods: + QList positions() const { return mPositions; } + QList anchors() const { return mAnchors; } + QCPItemPosition *position(const QString &name) const; + QCPItemAnchor *anchor(const QString &name) const; + bool hasAnchor(const QString &name) const; + +signals: + void selectionChanged(bool selected); + void selectableChanged(bool selectable); + +protected: + // property members: + bool mClipToAxisRect; + QPointer mClipAxisRect; + QList mPositions; + QList mAnchors; + bool mSelectable, mSelected; + + // reimplemented virtual methods: + virtual QCP::Interaction selectionCategory() const; + virtual QRect clipRect() const; + virtual void applyDefaultAntialiasingHint(QCPPainter *painter) const; + virtual void draw(QCPPainter *painter) = 0; + // events: + virtual void selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged); + virtual void deselectEvent(bool *selectionStateChanged); + + // introduced virtual methods: + virtual QPointF anchorPixelPoint(int anchorId) const; + + // non-virtual methods: + double distSqrToLine(const QPointF &start, const QPointF &end, const QPointF &point) const; + double rectSelectTest(const QRectF &rect, const QPointF &pos, bool filledRect) const; + QCPItemPosition *createPosition(const QString &name); + QCPItemAnchor *createAnchor(const QString &name, int anchorId); + +private: + Q_DISABLE_COPY(QCPAbstractItem) + + friend class QCustomPlot; + friend class QCPItemAnchor; +}; + + +class QCP_LIB_DECL QCustomPlot : public QWidget +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QRect viewport READ viewport WRITE setViewport) + Q_PROPERTY(QPixmap background READ background WRITE setBackground) + Q_PROPERTY(bool backgroundScaled READ backgroundScaled WRITE setBackgroundScaled) + Q_PROPERTY(Qt::AspectRatioMode backgroundScaledMode READ backgroundScaledMode WRITE setBackgroundScaledMode) + Q_PROPERTY(QCPLayoutGrid* plotLayout READ plotLayout) + Q_PROPERTY(bool autoAddPlottableToLegend READ autoAddPlottableToLegend WRITE setAutoAddPlottableToLegend) + Q_PROPERTY(int selectionTolerance READ selectionTolerance WRITE setSelectionTolerance) + Q_PROPERTY(bool noAntialiasingOnDrag READ noAntialiasingOnDrag WRITE setNoAntialiasingOnDrag) + Q_PROPERTY(Qt::KeyboardModifier multiSelectModifier READ multiSelectModifier WRITE setMultiSelectModifier) + /// \endcond +public: + /*! + Defines how a layer should be inserted relative to an other layer. + + \see addLayer, moveLayer + */ + enum LayerInsertMode { limBelow ///< Layer is inserted below other layer + ,limAbove ///< Layer is inserted above other layer + }; + Q_ENUMS(LayerInsertMode) + + /*! + Defines with what timing the QCustomPlot surface is refreshed after a replot. + + \see replot + */ + enum RefreshPriority { rpImmediate ///< The QCustomPlot surface is immediately refreshed, by calling QWidget::repaint() after the replot + ,rpQueued ///< Queues the refresh such that it is performed at a slightly delayed point in time after the replot, by calling QWidget::update() after the replot + ,rpHint ///< Whether to use immediate repaint or queued update depends on whether the plotting hint \ref QCP::phForceRepaint is set, see \ref setPlottingHints. + }; + + explicit QCustomPlot(QWidget *parent = 0); + virtual ~QCustomPlot(); + + // getters: + QRect viewport() const { return mViewport; } + QPixmap background() const { return mBackgroundPixmap; } + bool backgroundScaled() const { return mBackgroundScaled; } + Qt::AspectRatioMode backgroundScaledMode() const { return mBackgroundScaledMode; } + QCPLayoutGrid *plotLayout() const { return mPlotLayout; } + QCP::AntialiasedElements antialiasedElements() const { return mAntialiasedElements; } + QCP::AntialiasedElements notAntialiasedElements() const { return mNotAntialiasedElements; } + bool autoAddPlottableToLegend() const { return mAutoAddPlottableToLegend; } + const QCP::Interactions interactions() const { return mInteractions; } + int selectionTolerance() const { return mSelectionTolerance; } + bool noAntialiasingOnDrag() const { return mNoAntialiasingOnDrag; } + QCP::PlottingHints plottingHints() const { return mPlottingHints; } + Qt::KeyboardModifier multiSelectModifier() const { return mMultiSelectModifier; } + + // setters: + void setViewport(const QRect &rect); + void setBackground(const QPixmap &pm); + void setBackground(const QPixmap &pm, bool scaled, Qt::AspectRatioMode mode=Qt::KeepAspectRatioByExpanding); + void setBackground(const QBrush &brush); + void setBackgroundScaled(bool scaled); + void setBackgroundScaledMode(Qt::AspectRatioMode mode); + void setAntialiasedElements(const QCP::AntialiasedElements &antialiasedElements); + void setAntialiasedElement(QCP::AntialiasedElement antialiasedElement, bool enabled=true); + void setNotAntialiasedElements(const QCP::AntialiasedElements ¬AntialiasedElements); + void setNotAntialiasedElement(QCP::AntialiasedElement notAntialiasedElement, bool enabled=true); + void setAutoAddPlottableToLegend(bool on); + void setInteractions(const QCP::Interactions &interactions); + void setInteraction(const QCP::Interaction &interaction, bool enabled=true); + void setSelectionTolerance(int pixels); + void setNoAntialiasingOnDrag(bool enabled); + void setPlottingHints(const QCP::PlottingHints &hints); + void setPlottingHint(QCP::PlottingHint hint, bool enabled=true); + void setMultiSelectModifier(Qt::KeyboardModifier modifier); + + // non-property methods: + // plottable interface: + QCPAbstractPlottable *plottable(int index); + QCPAbstractPlottable *plottable(); + bool addPlottable(QCPAbstractPlottable *plottable); + bool removePlottable(QCPAbstractPlottable *plottable); + bool removePlottable(int index); + int clearPlottables(); + int plottableCount() const; + QList selectedPlottables() const; + QCPAbstractPlottable *plottableAt(const QPointF &pos, bool onlySelectable=false) const; + bool hasPlottable(QCPAbstractPlottable *plottable) const; + + // specialized interface for QCPGraph: + QCPGraph *graph(int index) const; + QCPGraph *graph() const; + QCPGraph *addGraph(QCPAxis *keyAxis=0, QCPAxis *valueAxis=0); + bool removeGraph(QCPGraph *graph); + bool removeGraph(int index); + int clearGraphs(); + int graphCount() const; + QList selectedGraphs() const; + + // item interface: + QCPAbstractItem *item(int index) const; + QCPAbstractItem *item() const; + bool addItem(QCPAbstractItem* item); + bool removeItem(QCPAbstractItem *item); + bool removeItem(int index); + int clearItems(); + int itemCount() const; + QList selectedItems() const; + QCPAbstractItem *itemAt(const QPointF &pos, bool onlySelectable=false) const; + bool hasItem(QCPAbstractItem *item) const; + + // layer interface: + QCPLayer *layer(const QString &name) const; + QCPLayer *layer(int index) const; + QCPLayer *currentLayer() const; + bool setCurrentLayer(const QString &name); + bool setCurrentLayer(QCPLayer *layer); + int layerCount() const; + bool addLayer(const QString &name, QCPLayer *otherLayer=0, LayerInsertMode insertMode=limAbove); + bool removeLayer(QCPLayer *layer); + bool moveLayer(QCPLayer *layer, QCPLayer *otherLayer, LayerInsertMode insertMode=limAbove); + + // axis rect/layout interface: + int axisRectCount() const; + QCPAxisRect* axisRect(int index=0) const; + QList axisRects() const; + QCPLayoutElement* layoutElementAt(const QPointF &pos) const; + Q_SLOT void rescaleAxes(bool onlyVisiblePlottables=false); + + QList selectedAxes() const; + QList selectedLegends() const; + Q_SLOT void deselectAll(); + + bool savePdf(const QString &fileName, bool noCosmeticPen=false, int width=0, int height=0, const QString &pdfCreator=QString(), const QString &pdfTitle=QString()); + bool savePng(const QString &fileName, int width=0, int height=0, double scale=1.0, int quality=-1); + bool saveJpg(const QString &fileName, int width=0, int height=0, double scale=1.0, int quality=-1); + bool saveBmp(const QString &fileName, int width=0, int height=0, double scale=1.0); + bool saveRastered(const QString &fileName, int width, int height, double scale, const char *format, int quality=-1); + QPixmap toPixmap(int width=0, int height=0, double scale=1.0); + void toPainter(QCPPainter *painter, int width=0, int height=0); + Q_SLOT void replot(QCustomPlot::RefreshPriority refreshPriority=QCustomPlot::rpHint); + + QCPAxis *xAxis, *yAxis, *xAxis2, *yAxis2; + QCPLegend *legend; + +signals: + void mouseDoubleClick(QMouseEvent *event); + void mousePress(QMouseEvent *event); + void mouseMove(QMouseEvent *event); + void mouseRelease(QMouseEvent *event); + void mouseWheel(QWheelEvent *event); + + void plottableClick(QCPAbstractPlottable *plottable, QMouseEvent *event); + void plottableDoubleClick(QCPAbstractPlottable *plottable, QMouseEvent *event); + void itemClick(QCPAbstractItem *item, QMouseEvent *event); + void itemDoubleClick(QCPAbstractItem *item, QMouseEvent *event); + void axisClick(QCPAxis *axis, QCPAxis::SelectablePart part, QMouseEvent *event); + void axisDoubleClick(QCPAxis *axis, QCPAxis::SelectablePart part, QMouseEvent *event); + void legendClick(QCPLegend *legend, QCPAbstractLegendItem *item, QMouseEvent *event); + void legendDoubleClick(QCPLegend *legend, QCPAbstractLegendItem *item, QMouseEvent *event); + void titleClick(QMouseEvent *event, QCPPlotTitle *title); + void titleDoubleClick(QMouseEvent *event, QCPPlotTitle *title); + + void selectionChangedByUser(); + void beforeReplot(); + void afterReplot(); + +protected: + // property members: + QRect mViewport; + QCPLayoutGrid *mPlotLayout; + bool mAutoAddPlottableToLegend; + QList mPlottables; + QList mGraphs; // extra list of plottables also in mPlottables that are of type QCPGraph + QList mItems; + QList mLayers; + QCP::AntialiasedElements mAntialiasedElements, mNotAntialiasedElements; + QCP::Interactions mInteractions; + int mSelectionTolerance; + bool mNoAntialiasingOnDrag; + QBrush mBackgroundBrush; + QPixmap mBackgroundPixmap; + QPixmap mScaledBackgroundPixmap; + bool mBackgroundScaled; + Qt::AspectRatioMode mBackgroundScaledMode; + QCPLayer *mCurrentLayer; + QCP::PlottingHints mPlottingHints; + Qt::KeyboardModifier mMultiSelectModifier; + + // non-property members: + QPixmap mPaintBuffer; + QPoint mMousePressPos; + QPointer mMouseEventElement; + bool mReplotting; + + // reimplemented virtual methods: + virtual QSize minimumSizeHint() const; + virtual QSize sizeHint() const; + virtual void paintEvent(QPaintEvent *event); + virtual void resizeEvent(QResizeEvent *event); + virtual void mouseDoubleClickEvent(QMouseEvent *event); + virtual void mousePressEvent(QMouseEvent *event); + virtual void mouseMoveEvent(QMouseEvent *event); + virtual void mouseReleaseEvent(QMouseEvent *event); + virtual void wheelEvent(QWheelEvent *event); + + // introduced virtual methods: + virtual void draw(QCPPainter *painter); + virtual void axisRemoved(QCPAxis *axis); + virtual void legendRemoved(QCPLegend *legend); + + // non-virtual methods: + void updateLayerIndices() const; + QCPLayerable *layerableAt(const QPointF &pos, bool onlySelectable, QVariant *selectionDetails=0) const; + void drawBackground(QCPPainter *painter); + + friend class QCPLegend; + friend class QCPAxis; + friend class QCPLayer; + friend class QCPAxisRect; +}; + + +class QCP_LIB_DECL QCPColorGradient +{ + Q_GADGET +public: + /*! + Defines the color spaces in which color interpolation between gradient stops can be performed. + + \see setColorInterpolation + */ + enum ColorInterpolation { ciRGB ///< Color channels red, green and blue are linearly interpolated + ,ciHSV ///< Color channels hue, saturation and value are linearly interpolated (The hue is interpolated over the shortest angle distance) + }; + Q_ENUMS(ColorInterpolation) + + /*! + Defines the available presets that can be loaded with \ref loadPreset. See the documentation + there for an image of the presets. + */ + enum GradientPreset { gpGrayscale ///< Continuous lightness from black to white (suited for non-biased data representation) + ,gpHot ///< Continuous lightness from black over firey colors to white (suited for non-biased data representation) + ,gpCold ///< Continuous lightness from black over icey colors to white (suited for non-biased data representation) + ,gpNight ///< Continuous lightness from black over weak blueish colors to white (suited for non-biased data representation) + ,gpCandy ///< Blue over pink to white + ,gpGeography ///< Colors suitable to represent different elevations on geographical maps + ,gpIon ///< Half hue spectrum from black over purple to blue and finally green (creates banding illusion but allows more precise magnitude estimates) + ,gpThermal ///< Colors suitable for thermal imaging, ranging from dark blue over purple to orange, yellow and white + ,gpPolar ///< Colors suitable to emphasize polarity around the center, with blue for negative, black in the middle and red for positive values + ,gpSpectrum ///< An approximation of the visible light spectrum (creates banding illusion but allows more precise magnitude estimates) + ,gpJet ///< Hue variation similar to a spectrum, often used in numerical visualization (creates banding illusion but allows more precise magnitude estimates) + ,gpHues ///< Full hue cycle, with highest and lowest color red (suitable for periodic data, such as angles and phases, see \ref setPeriodic) + }; + Q_ENUMS(GradientPreset) + + QCPColorGradient(GradientPreset preset=gpCold); + bool operator==(const QCPColorGradient &other) const; + bool operator!=(const QCPColorGradient &other) const { return !(*this == other); } + + // getters: + int levelCount() const { return mLevelCount; } + QMap colorStops() const { return mColorStops; } + ColorInterpolation colorInterpolation() const { return mColorInterpolation; } + bool periodic() const { return mPeriodic; } + + // setters: + void setLevelCount(int n); + void setColorStops(const QMap &colorStops); + void setColorStopAt(double position, const QColor &color); + void setColorInterpolation(ColorInterpolation interpolation); + void setPeriodic(bool enabled); + + // non-property methods: + void colorize(const double *data, const QCPRange &range, QRgb *scanLine, int n, int dataIndexFactor=1, bool logarithmic=false); + QRgb color(double position, const QCPRange &range, bool logarithmic=false); + void loadPreset(GradientPreset preset); + void clearColorStops(); + QCPColorGradient inverted() const; + +protected: + void updateColorBuffer(); + + // property members: + int mLevelCount; + QMap mColorStops; + ColorInterpolation mColorInterpolation; + bool mPeriodic; + + // non-property members: + QVector mColorBuffer; + bool mColorBufferInvalidated; +}; + + +class QCP_LIB_DECL QCPAxisRect : public QCPLayoutElement +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QPixmap background READ background WRITE setBackground) + Q_PROPERTY(bool backgroundScaled READ backgroundScaled WRITE setBackgroundScaled) + Q_PROPERTY(Qt::AspectRatioMode backgroundScaledMode READ backgroundScaledMode WRITE setBackgroundScaledMode) + Q_PROPERTY(Qt::Orientations rangeDrag READ rangeDrag WRITE setRangeDrag) + Q_PROPERTY(Qt::Orientations rangeZoom READ rangeZoom WRITE setRangeZoom) + /// \endcond +public: + explicit QCPAxisRect(QCustomPlot *parentPlot, bool setupDefaultAxes=true); + virtual ~QCPAxisRect(); + + // getters: + QPixmap background() const { return mBackgroundPixmap; } + bool backgroundScaled() const { return mBackgroundScaled; } + Qt::AspectRatioMode backgroundScaledMode() const { return mBackgroundScaledMode; } + Qt::Orientations rangeDrag() const { return mRangeDrag; } + Qt::Orientations rangeZoom() const { return mRangeZoom; } + QCPAxis *rangeDragAxis(Qt::Orientation orientation); + QCPAxis *rangeZoomAxis(Qt::Orientation orientation); + double rangeZoomFactor(Qt::Orientation orientation); + + // setters: + void setBackground(const QPixmap &pm); + void setBackground(const QPixmap &pm, bool scaled, Qt::AspectRatioMode mode=Qt::KeepAspectRatioByExpanding); + void setBackground(const QBrush &brush); + void setBackgroundScaled(bool scaled); + void setBackgroundScaledMode(Qt::AspectRatioMode mode); + void setRangeDrag(Qt::Orientations orientations); + void setRangeZoom(Qt::Orientations orientations); + void setRangeDragAxes(QCPAxis *horizontal, QCPAxis *vertical); + void setRangeZoomAxes(QCPAxis *horizontal, QCPAxis *vertical); + void setRangeZoomFactor(double horizontalFactor, double verticalFactor); + void setRangeZoomFactor(double factor); + + // non-property methods: + int axisCount(QCPAxis::AxisType type) const; + QCPAxis *axis(QCPAxis::AxisType type, int index=0) const; + QList axes(QCPAxis::AxisTypes types) const; + QList axes() const; + QCPAxis *addAxis(QCPAxis::AxisType type, QCPAxis *axis=0); + QList addAxes(QCPAxis::AxisTypes types); + bool removeAxis(QCPAxis *axis); + QCPLayoutInset *insetLayout() const { return mInsetLayout; } + + void setupFullAxesBox(bool connectRanges=false); + QList plottables() const; + QList graphs() const; + QList items() const; + + // read-only interface imitating a QRect: + int left() const { return mRect.left(); } + int right() const { return mRect.right(); } + int top() const { return mRect.top(); } + int bottom() const { return mRect.bottom(); } + int width() const { return mRect.width(); } + int height() const { return mRect.height(); } + QSize size() const { return mRect.size(); } + QPoint topLeft() const { return mRect.topLeft(); } + QPoint topRight() const { return mRect.topRight(); } + QPoint bottomLeft() const { return mRect.bottomLeft(); } + QPoint bottomRight() const { return mRect.bottomRight(); } + QPoint center() const { return mRect.center(); } + + // reimplemented virtual methods: + virtual void update(UpdatePhase phase); + virtual QList elements(bool recursive) const; + +protected: + // property members: + QBrush mBackgroundBrush; + QPixmap mBackgroundPixmap; + QPixmap mScaledBackgroundPixmap; + bool mBackgroundScaled; + Qt::AspectRatioMode mBackgroundScaledMode; + QCPLayoutInset *mInsetLayout; + Qt::Orientations mRangeDrag, mRangeZoom; + QPointer mRangeDragHorzAxis, mRangeDragVertAxis, mRangeZoomHorzAxis, mRangeZoomVertAxis; + double mRangeZoomFactorHorz, mRangeZoomFactorVert; + // non-property members: + QCPRange mDragStartHorzRange, mDragStartVertRange; + QCP::AntialiasedElements mAADragBackup, mNotAADragBackup; + QPoint mDragStart; + bool mDragging; + QHash > mAxes; + + // reimplemented virtual methods: + virtual void applyDefaultAntialiasingHint(QCPPainter *painter) const; + virtual void draw(QCPPainter *painter); + virtual int calculateAutoMargin(QCP::MarginSide side); + // events: + virtual void mousePressEvent(QMouseEvent *event); + virtual void mouseMoveEvent(QMouseEvent *event); + virtual void mouseReleaseEvent(QMouseEvent *event); + virtual void wheelEvent(QWheelEvent *event); + + // non-property methods: + void drawBackground(QCPPainter *painter); + void updateAxesOffset(QCPAxis::AxisType type); + +private: + Q_DISABLE_COPY(QCPAxisRect) + + friend class QCustomPlot; +}; + + +class QCP_LIB_DECL QCPAbstractLegendItem : public QCPLayoutElement +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QCPLegend* parentLegend READ parentLegend) + Q_PROPERTY(QFont font READ font WRITE setFont) + Q_PROPERTY(QColor textColor READ textColor WRITE setTextColor) + Q_PROPERTY(QFont selectedFont READ selectedFont WRITE setSelectedFont) + Q_PROPERTY(QColor selectedTextColor READ selectedTextColor WRITE setSelectedTextColor) + Q_PROPERTY(bool selectable READ selectable WRITE setSelectable NOTIFY selectionChanged) + Q_PROPERTY(bool selected READ selected WRITE setSelected NOTIFY selectableChanged) + /// \endcond +public: + explicit QCPAbstractLegendItem(QCPLegend *parent); + + // getters: + QCPLegend *parentLegend() const { return mParentLegend; } + QFont font() const { return mFont; } + QColor textColor() const { return mTextColor; } + QFont selectedFont() const { return mSelectedFont; } + QColor selectedTextColor() const { return mSelectedTextColor; } + bool selectable() const { return mSelectable; } + bool selected() const { return mSelected; } + + // setters: + void setFont(const QFont &font); + void setTextColor(const QColor &color); + void setSelectedFont(const QFont &font); + void setSelectedTextColor(const QColor &color); + Q_SLOT void setSelectable(bool selectable); + Q_SLOT void setSelected(bool selected); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const; + +signals: + void selectionChanged(bool selected); + void selectableChanged(bool selectable); + +protected: + // property members: + QCPLegend *mParentLegend; + QFont mFont; + QColor mTextColor; + QFont mSelectedFont; + QColor mSelectedTextColor; + bool mSelectable, mSelected; + + // reimplemented virtual methods: + virtual QCP::Interaction selectionCategory() const; + virtual void applyDefaultAntialiasingHint(QCPPainter *painter) const; + virtual QRect clipRect() const; + virtual void draw(QCPPainter *painter) = 0; + // events: + virtual void selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged); + virtual void deselectEvent(bool *selectionStateChanged); + +private: + Q_DISABLE_COPY(QCPAbstractLegendItem) + + friend class QCPLegend; +}; + + +class QCP_LIB_DECL QCPPlottableLegendItem : public QCPAbstractLegendItem +{ + Q_OBJECT +public: + QCPPlottableLegendItem(QCPLegend *parent, QCPAbstractPlottable *plottable); + + // getters: + QCPAbstractPlottable *plottable() { return mPlottable; } + +protected: + // property members: + QCPAbstractPlottable *mPlottable; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter); + virtual QSize minimumSizeHint() const; + + // non-virtual methods: + QPen getIconBorderPen() const; + QColor getTextColor() const; + QFont getFont() const; +}; + + +class QCP_LIB_DECL QCPLegend : public QCPLayoutGrid +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QPen borderPen READ borderPen WRITE setBorderPen) + Q_PROPERTY(QBrush brush READ brush WRITE setBrush) + Q_PROPERTY(QFont font READ font WRITE setFont) + Q_PROPERTY(QColor textColor READ textColor WRITE setTextColor) + Q_PROPERTY(QSize iconSize READ iconSize WRITE setIconSize) + Q_PROPERTY(int iconTextPadding READ iconTextPadding WRITE setIconTextPadding) + Q_PROPERTY(QPen iconBorderPen READ iconBorderPen WRITE setIconBorderPen) + Q_PROPERTY(SelectableParts selectableParts READ selectableParts WRITE setSelectableParts NOTIFY selectionChanged) + Q_PROPERTY(SelectableParts selectedParts READ selectedParts WRITE setSelectedParts NOTIFY selectableChanged) + Q_PROPERTY(QPen selectedBorderPen READ selectedBorderPen WRITE setSelectedBorderPen) + Q_PROPERTY(QPen selectedIconBorderPen READ selectedIconBorderPen WRITE setSelectedIconBorderPen) + Q_PROPERTY(QBrush selectedBrush READ selectedBrush WRITE setSelectedBrush) + Q_PROPERTY(QFont selectedFont READ selectedFont WRITE setSelectedFont) + Q_PROPERTY(QColor selectedTextColor READ selectedTextColor WRITE setSelectedTextColor) + /// \endcond +public: + /*! + Defines the selectable parts of a legend + + \see setSelectedParts, setSelectableParts + */ + enum SelectablePart { spNone = 0x000 ///< 0x000 None + ,spLegendBox = 0x001 ///< 0x001 The legend box (frame) + ,spItems = 0x002 ///< 0x002 Legend items individually (see \ref selectedItems) + }; + Q_FLAGS(SelectablePart SelectableParts) + Q_DECLARE_FLAGS(SelectableParts, SelectablePart) + + explicit QCPLegend(); + virtual ~QCPLegend(); + + // getters: + QPen borderPen() const { return mBorderPen; } + QBrush brush() const { return mBrush; } + QFont font() const { return mFont; } + QColor textColor() const { return mTextColor; } + QSize iconSize() const { return mIconSize; } + int iconTextPadding() const { return mIconTextPadding; } + QPen iconBorderPen() const { return mIconBorderPen; } + SelectableParts selectableParts() const { return mSelectableParts; } + SelectableParts selectedParts() const; + QPen selectedBorderPen() const { return mSelectedBorderPen; } + QPen selectedIconBorderPen() const { return mSelectedIconBorderPen; } + QBrush selectedBrush() const { return mSelectedBrush; } + QFont selectedFont() const { return mSelectedFont; } + QColor selectedTextColor() const { return mSelectedTextColor; } + + // setters: + void setBorderPen(const QPen &pen); + void setBrush(const QBrush &brush); + void setFont(const QFont &font); + void setTextColor(const QColor &color); + void setIconSize(const QSize &size); + void setIconSize(int width, int height); + void setIconTextPadding(int padding); + void setIconBorderPen(const QPen &pen); + Q_SLOT void setSelectableParts(const SelectableParts &selectableParts); + Q_SLOT void setSelectedParts(const SelectableParts &selectedParts); + void setSelectedBorderPen(const QPen &pen); + void setSelectedIconBorderPen(const QPen &pen); + void setSelectedBrush(const QBrush &brush); + void setSelectedFont(const QFont &font); + void setSelectedTextColor(const QColor &color); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const; + + // non-virtual methods: + QCPAbstractLegendItem *item(int index) const; + QCPPlottableLegendItem *itemWithPlottable(const QCPAbstractPlottable *plottable) const; + int itemCount() const; + bool hasItem(QCPAbstractLegendItem *item) const; + bool hasItemWithPlottable(const QCPAbstractPlottable *plottable) const; + bool addItem(QCPAbstractLegendItem *item); + bool removeItem(int index); + bool removeItem(QCPAbstractLegendItem *item); + void clearItems(); + QList selectedItems() const; + +signals: + void selectionChanged(QCPLegend::SelectableParts parts); + void selectableChanged(QCPLegend::SelectableParts parts); + +protected: + // property members: + QPen mBorderPen, mIconBorderPen; + QBrush mBrush; + QFont mFont; + QColor mTextColor; + QSize mIconSize; + int mIconTextPadding; + SelectableParts mSelectedParts, mSelectableParts; + QPen mSelectedBorderPen, mSelectedIconBorderPen; + QBrush mSelectedBrush; + QFont mSelectedFont; + QColor mSelectedTextColor; + + // reimplemented virtual methods: + virtual void parentPlotInitialized(QCustomPlot *parentPlot); + virtual QCP::Interaction selectionCategory() const; + virtual void applyDefaultAntialiasingHint(QCPPainter *painter) const; + virtual void draw(QCPPainter *painter); + // events: + virtual void selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged); + virtual void deselectEvent(bool *selectionStateChanged); + + // non-virtual methods: + QPen getBorderPen() const; + QBrush getBrush() const; + +private: + Q_DISABLE_COPY(QCPLegend) + + friend class QCustomPlot; + friend class QCPAbstractLegendItem; +}; +Q_DECLARE_OPERATORS_FOR_FLAGS(QCPLegend::SelectableParts) +Q_DECLARE_METATYPE(QCPLegend::SelectablePart) + + +class QCP_LIB_DECL QCPPlotTitle : public QCPLayoutElement +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QString text READ text WRITE setText) + Q_PROPERTY(QFont font READ font WRITE setFont) + Q_PROPERTY(QColor textColor READ textColor WRITE setTextColor) + Q_PROPERTY(QFont selectedFont READ selectedFont WRITE setSelectedFont) + Q_PROPERTY(QColor selectedTextColor READ selectedTextColor WRITE setSelectedTextColor) + Q_PROPERTY(bool selectable READ selectable WRITE setSelectable NOTIFY selectableChanged) + Q_PROPERTY(bool selected READ selected WRITE setSelected NOTIFY selectionChanged) + /// \endcond +public: + explicit QCPPlotTitle(QCustomPlot *parentPlot); + explicit QCPPlotTitle(QCustomPlot *parentPlot, const QString &text); + + // getters: + QString text() const { return mText; } + QFont font() const { return mFont; } + QColor textColor() const { return mTextColor; } + QFont selectedFont() const { return mSelectedFont; } + QColor selectedTextColor() const { return mSelectedTextColor; } + bool selectable() const { return mSelectable; } + bool selected() const { return mSelected; } + + // setters: + void setText(const QString &text); + void setFont(const QFont &font); + void setTextColor(const QColor &color); + void setSelectedFont(const QFont &font); + void setSelectedTextColor(const QColor &color); + Q_SLOT void setSelectable(bool selectable); + Q_SLOT void setSelected(bool selected); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const; + +signals: + void selectionChanged(bool selected); + void selectableChanged(bool selectable); + +protected: + // property members: + QString mText; + QFont mFont; + QColor mTextColor; + QFont mSelectedFont; + QColor mSelectedTextColor; + QRect mTextBoundingRect; + bool mSelectable, mSelected; + + // reimplemented virtual methods: + virtual void applyDefaultAntialiasingHint(QCPPainter *painter) const; + virtual void draw(QCPPainter *painter); + virtual QSize minimumSizeHint() const; + virtual QSize maximumSizeHint() const; + // events: + virtual void selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged); + virtual void deselectEvent(bool *selectionStateChanged); + + // non-virtual methods: + QFont mainFont() const; + QColor mainTextColor() const; + +private: + Q_DISABLE_COPY(QCPPlotTitle) +}; + + +class QCPColorScaleAxisRectPrivate : public QCPAxisRect +{ + Q_OBJECT +public: + explicit QCPColorScaleAxisRectPrivate(QCPColorScale *parentColorScale); +protected: + QCPColorScale *mParentColorScale; + QImage mGradientImage; + bool mGradientImageInvalidated; + // re-using some methods of QCPAxisRect to make them available to friend class QCPColorScale + using QCPAxisRect::calculateAutoMargin; + using QCPAxisRect::mousePressEvent; + using QCPAxisRect::mouseMoveEvent; + using QCPAxisRect::mouseReleaseEvent; + using QCPAxisRect::wheelEvent; + using QCPAxisRect::update; + virtual void draw(QCPPainter *painter); + void updateGradientImage(); + Q_SLOT void axisSelectionChanged(QCPAxis::SelectableParts selectedParts); + Q_SLOT void axisSelectableChanged(QCPAxis::SelectableParts selectableParts); + friend class QCPColorScale; +}; + + +class QCP_LIB_DECL QCPColorScale : public QCPLayoutElement +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QCPAxis::AxisType type READ type WRITE setType) + Q_PROPERTY(QCPRange dataRange READ dataRange WRITE setDataRange NOTIFY dataRangeChanged) + Q_PROPERTY(QCPAxis::ScaleType dataScaleType READ dataScaleType WRITE setDataScaleType NOTIFY dataScaleTypeChanged) + Q_PROPERTY(QCPColorGradient gradient READ gradient WRITE setGradient NOTIFY gradientChanged) + Q_PROPERTY(QString label READ label WRITE setLabel) + Q_PROPERTY(int barWidth READ barWidth WRITE setBarWidth) + Q_PROPERTY(bool rangeDrag READ rangeDrag WRITE setRangeDrag) + Q_PROPERTY(bool rangeZoom READ rangeZoom WRITE setRangeZoom) + /// \endcond +public: + explicit QCPColorScale(QCustomPlot *parentPlot); + virtual ~QCPColorScale(); + + // getters: + QCPAxis *axis() const { return mColorAxis.data(); } + QCPAxis::AxisType type() const { return mType; } + QCPRange dataRange() const { return mDataRange; } + QCPAxis::ScaleType dataScaleType() const { return mDataScaleType; } + QCPColorGradient gradient() const { return mGradient; } + QString label() const; + int barWidth () const { return mBarWidth; } + bool rangeDrag() const; + bool rangeZoom() const; + + // setters: + void setType(QCPAxis::AxisType type); + Q_SLOT void setDataRange(const QCPRange &dataRange); + Q_SLOT void setDataScaleType(QCPAxis::ScaleType scaleType); + Q_SLOT void setGradient(const QCPColorGradient &gradient); + void setLabel(const QString &str); + void setBarWidth(int width); + void setRangeDrag(bool enabled); + void setRangeZoom(bool enabled); + + // non-property methods: + QList colorMaps() const; + void rescaleDataRange(bool onlyVisibleMaps); + + // reimplemented virtual methods: + virtual void update(UpdatePhase phase); + +signals: + void dataRangeChanged(QCPRange newRange); + void dataScaleTypeChanged(QCPAxis::ScaleType scaleType); + void gradientChanged(QCPColorGradient newGradient); + +protected: + // property members: + QCPAxis::AxisType mType; + QCPRange mDataRange; + QCPAxis::ScaleType mDataScaleType; + QCPColorGradient mGradient; + int mBarWidth; + + // non-property members: + QPointer mAxisRect; + QPointer mColorAxis; + + // reimplemented virtual methods: + virtual void applyDefaultAntialiasingHint(QCPPainter *painter) const; + // events: + virtual void mousePressEvent(QMouseEvent *event); + virtual void mouseMoveEvent(QMouseEvent *event); + virtual void mouseReleaseEvent(QMouseEvent *event); + virtual void wheelEvent(QWheelEvent *event); + +private: + Q_DISABLE_COPY(QCPColorScale) + + friend class QCPColorScaleAxisRectPrivate; +}; + + +/*! \file */ + + + +class QCP_LIB_DECL QCPData +{ +public: + QCPData(); + QCPData(double key, double value); + double key, value; + double keyErrorPlus, keyErrorMinus; + double valueErrorPlus, valueErrorMinus; +}; +Q_DECLARE_TYPEINFO(QCPData, Q_MOVABLE_TYPE); + +/*! \typedef QCPDataMap + Container for storing \ref QCPData items in a sorted fashion. The key of the map + is the key member of the QCPData instance. + + This is the container in which QCPGraph holds its data. + \see QCPData, QCPGraph::setData +*/ +typedef QMap QCPDataMap; +typedef QMapIterator QCPDataMapIterator; +typedef QMutableMapIterator QCPDataMutableMapIterator; + + +class QCP_LIB_DECL QCPGraph : public QCPAbstractPlottable +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(LineStyle lineStyle READ lineStyle WRITE setLineStyle) + Q_PROPERTY(QCPScatterStyle scatterStyle READ scatterStyle WRITE setScatterStyle) + Q_PROPERTY(ErrorType errorType READ errorType WRITE setErrorType) + Q_PROPERTY(QPen errorPen READ errorPen WRITE setErrorPen) + Q_PROPERTY(double errorBarSize READ errorBarSize WRITE setErrorBarSize) + Q_PROPERTY(bool errorBarSkipSymbol READ errorBarSkipSymbol WRITE setErrorBarSkipSymbol) + Q_PROPERTY(QCPGraph* channelFillGraph READ channelFillGraph WRITE setChannelFillGraph) + Q_PROPERTY(bool adaptiveSampling READ adaptiveSampling WRITE setAdaptiveSampling) + /// \endcond +public: + /*! + Defines how the graph's line is represented visually in the plot. The line is drawn with the + current pen of the graph (\ref setPen). + \see setLineStyle + */ + enum LineStyle { lsNone ///< data points are not connected with any lines (e.g. data only represented + ///< with symbols according to the scatter style, see \ref setScatterStyle) + ,lsLine ///< data points are connected by a straight line + ,lsStepLeft ///< line is drawn as steps where the step height is the value of the left data point + ,lsStepRight ///< line is drawn as steps where the step height is the value of the right data point + ,lsStepCenter ///< line is drawn as steps where the step is in between two data points + ,lsImpulse ///< each data point is represented by a line parallel to the value axis, which reaches from the data point to the zero-value-line + }; + Q_ENUMS(LineStyle) + /*! + Defines what kind of error bars are drawn for each data point + */ + enum ErrorType { etNone ///< No error bars are shown + ,etKey ///< Error bars for the key dimension of the data point are shown + ,etValue ///< Error bars for the value dimension of the data point are shown + ,etBoth ///< Error bars for both key and value dimensions of the data point are shown + }; + Q_ENUMS(ErrorType) + + explicit QCPGraph(QCPAxis *keyAxis, QCPAxis *valueAxis); + virtual ~QCPGraph(); + + // getters: + QCPDataMap *data() const { return mData; } + LineStyle lineStyle() const { return mLineStyle; } + QCPScatterStyle scatterStyle() const { return mScatterStyle; } + ErrorType errorType() const { return mErrorType; } + QPen errorPen() const { return mErrorPen; } + double errorBarSize() const { return mErrorBarSize; } + bool errorBarSkipSymbol() const { return mErrorBarSkipSymbol; } + QCPGraph *channelFillGraph() const { return mChannelFillGraph.data(); } + bool adaptiveSampling() const { return mAdaptiveSampling; } + + // setters: + void setData(QCPDataMap *data, bool copy=false); + void setData(const QVector &key, const QVector &value); + void setDataKeyError(const QVector &key, const QVector &value, const QVector &keyError); + void setDataKeyError(const QVector &key, const QVector &value, const QVector &keyErrorMinus, const QVector &keyErrorPlus); + void setDataValueError(const QVector &key, const QVector &value, const QVector &valueError); + void setDataValueError(const QVector &key, const QVector &value, const QVector &valueErrorMinus, const QVector &valueErrorPlus); + void setDataBothError(const QVector &key, const QVector &value, const QVector &keyError, const QVector &valueError); + void setDataBothError(const QVector &key, const QVector &value, const QVector &keyErrorMinus, const QVector &keyErrorPlus, const QVector &valueErrorMinus, const QVector &valueErrorPlus); + void setLineStyle(LineStyle ls); + void setScatterStyle(const QCPScatterStyle &style); + void setErrorType(ErrorType errorType); + void setErrorPen(const QPen &pen); + void setErrorBarSize(double size); + void setErrorBarSkipSymbol(bool enabled); + void setChannelFillGraph(QCPGraph *targetGraph); + void setAdaptiveSampling(bool enabled); + + // non-property methods: + void addData(const QCPDataMap &dataMap); + void addData(const QCPData &data); + void addData(double key, double value); + void addData(const QVector &keys, const QVector &values); + void removeDataBefore(double key); + void removeDataAfter(double key); + void removeData(double fromKey, double toKey); + void removeData(double key); + + // reimplemented virtual methods: + virtual void clearData(); + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const; + using QCPAbstractPlottable::rescaleAxes; + using QCPAbstractPlottable::rescaleKeyAxis; + using QCPAbstractPlottable::rescaleValueAxis; + void rescaleAxes(bool onlyEnlarge, bool includeErrorBars) const; // overloads base class interface + void rescaleKeyAxis(bool onlyEnlarge, bool includeErrorBars) const; // overloads base class interface + void rescaleValueAxis(bool onlyEnlarge, bool includeErrorBars) const; // overloads base class interface + +protected: + // property members: + QCPDataMap *mData; + QPen mErrorPen; + LineStyle mLineStyle; + QCPScatterStyle mScatterStyle; + ErrorType mErrorType; + double mErrorBarSize; + bool mErrorBarSkipSymbol; + QPointer mChannelFillGraph; + bool mAdaptiveSampling; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter); + virtual void drawLegendIcon(QCPPainter *painter, const QRectF &rect) const; + virtual QCPRange getKeyRange(bool &foundRange, SignDomain inSignDomain=sdBoth) const; + virtual QCPRange getValueRange(bool &foundRange, SignDomain inSignDomain=sdBoth) const; + virtual QCPRange getKeyRange(bool &foundRange, SignDomain inSignDomain, bool includeErrors) const; // overloads base class interface + virtual QCPRange getValueRange(bool &foundRange, SignDomain inSignDomain, bool includeErrors) const; // overloads base class interface + + // introduced virtual methods: + virtual void drawFill(QCPPainter *painter, QVector *lineData) const; + virtual void drawScatterPlot(QCPPainter *painter, QVector *scatterData) const; + virtual void drawLinePlot(QCPPainter *painter, QVector *lineData) const; + virtual void drawImpulsePlot(QCPPainter *painter, QVector *lineData) const; + + // non-virtual methods: + void getPreparedData(QVector *lineData, QVector *scatterData) const; + void getPlotData(QVector *lineData, QVector *scatterData) const; + void getScatterPlotData(QVector *scatterData) const; + void getLinePlotData(QVector *linePixelData, QVector *scatterData) const; + void getStepLeftPlotData(QVector *linePixelData, QVector *scatterData) const; + void getStepRightPlotData(QVector *linePixelData, QVector *scatterData) const; + void getStepCenterPlotData(QVector *linePixelData, QVector *scatterData) const; + void getImpulsePlotData(QVector *linePixelData, QVector *scatterData) const; + void drawError(QCPPainter *painter, double x, double y, const QCPData &data) const; + void getVisibleDataBounds(QCPDataMap::const_iterator &lower, QCPDataMap::const_iterator &upper) const; + int countDataInBounds(const QCPDataMap::const_iterator &lower, const QCPDataMap::const_iterator &upper, int maxCount) const; + void addFillBasePoints(QVector *lineData) const; + void removeFillBasePoints(QVector *lineData) const; + QPointF lowerFillBasePoint(double lowerKey) const; + QPointF upperFillBasePoint(double upperKey) const; + const QPolygonF getChannelFillPolygon(const QVector *lineData) const; + int findIndexBelowX(const QVector *data, double x) const; + int findIndexAboveX(const QVector *data, double x) const; + int findIndexBelowY(const QVector *data, double y) const; + int findIndexAboveY(const QVector *data, double y) const; + double pointDistance(const QPointF &pixelPoint) const; + + friend class QCustomPlot; + friend class QCPLegend; +}; + + +/*! \file */ + + + +class QCP_LIB_DECL QCPCurveData +{ +public: + QCPCurveData(); + QCPCurveData(double t, double key, double value); + double t, key, value; +}; +Q_DECLARE_TYPEINFO(QCPCurveData, Q_MOVABLE_TYPE); + +/*! \typedef QCPCurveDataMap + Container for storing \ref QCPCurveData items in a sorted fashion. The key of the map + is the t member of the QCPCurveData instance. + + This is the container in which QCPCurve holds its data. + \see QCPCurveData, QCPCurve::setData +*/ + +typedef QMap QCPCurveDataMap; +typedef QMapIterator QCPCurveDataMapIterator; +typedef QMutableMapIterator QCPCurveDataMutableMapIterator; + + +class QCP_LIB_DECL QCPCurve : public QCPAbstractPlottable +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QCPScatterStyle scatterStyle READ scatterStyle WRITE setScatterStyle) + Q_PROPERTY(LineStyle lineStyle READ lineStyle WRITE setLineStyle) + /// \endcond +public: + /*! + Defines how the curve's line is represented visually in the plot. The line is drawn with the + current pen of the curve (\ref setPen). + \see setLineStyle + */ + enum LineStyle { lsNone ///< No line is drawn between data points (e.g. only scatters) + ,lsLine ///< Data points are connected with a straight line + }; + explicit QCPCurve(QCPAxis *keyAxis, QCPAxis *valueAxis); + virtual ~QCPCurve(); + + // getters: + QCPCurveDataMap *data() const { return mData; } + QCPScatterStyle scatterStyle() const { return mScatterStyle; } + LineStyle lineStyle() const { return mLineStyle; } + + // setters: + void setData(QCPCurveDataMap *data, bool copy=false); + void setData(const QVector &t, const QVector &key, const QVector &value); + void setData(const QVector &key, const QVector &value); + void setScatterStyle(const QCPScatterStyle &style); + void setLineStyle(LineStyle style); + + // non-property methods: + void addData(const QCPCurveDataMap &dataMap); + void addData(const QCPCurveData &data); + void addData(double t, double key, double value); + void addData(double key, double value); + void addData(const QVector &ts, const QVector &keys, const QVector &values); + void removeDataBefore(double t); + void removeDataAfter(double t); + void removeData(double fromt, double tot); + void removeData(double t); + + // reimplemented virtual methods: + virtual void clearData(); + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const; + +protected: + // property members: + QCPCurveDataMap *mData; + QCPScatterStyle mScatterStyle; + LineStyle mLineStyle; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter); + virtual void drawLegendIcon(QCPPainter *painter, const QRectF &rect) const; + virtual QCPRange getKeyRange(bool &foundRange, SignDomain inSignDomain=sdBoth) const; + virtual QCPRange getValueRange(bool &foundRange, SignDomain inSignDomain=sdBoth) const; + + // introduced virtual methods: + virtual void drawScatterPlot(QCPPainter *painter, const QVector *pointData) const; + + // non-virtual methods: + void getCurveData(QVector *lineData) const; + int getRegion(double x, double y, double rectLeft, double rectTop, double rectRight, double rectBottom) const; + QPointF getOptimizedPoint(int prevRegion, double prevKey, double prevValue, double key, double value, double rectLeft, double rectTop, double rectRight, double rectBottom) const; + QVector getOptimizedCornerPoints(int prevRegion, int currentRegion, double prevKey, double prevValue, double key, double value, double rectLeft, double rectTop, double rectRight, double rectBottom) const; + bool mayTraverse(int prevRegion, int currentRegion) const; + bool getTraverse(double prevKey, double prevValue, double key, double value, double rectLeft, double rectTop, double rectRight, double rectBottom, QPointF &crossA, QPointF &crossB) const; + void getTraverseCornerPoints(int prevRegion, int currentRegion, double rectLeft, double rectTop, double rectRight, double rectBottom, QVector &beforeTraverse, QVector &afterTraverse) const; + double pointDistance(const QPointF &pixelPoint) const; + + friend class QCustomPlot; + friend class QCPLegend; +}; + + +/*! \file */ + + + +class QCP_LIB_DECL QCPBarsGroup : public QObject +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(SpacingType spacingType READ spacingType WRITE setSpacingType) + Q_PROPERTY(double spacing READ spacing WRITE setSpacing) + /// \endcond +public: + /*! + Defines the ways the spacing between bars in the group can be specified. Thus it defines what + the number passed to \ref setSpacing actually means. + + \see setSpacingType, setSpacing + */ + enum SpacingType { stAbsolute ///< Bar spacing is in absolute pixels + ,stAxisRectRatio ///< Bar spacing is given by a fraction of the axis rect size + ,stPlotCoords ///< Bar spacing is in key coordinates and thus scales with the key axis range + }; + QCPBarsGroup(QCustomPlot *parentPlot); + ~QCPBarsGroup(); + + // getters: + SpacingType spacingType() const { return mSpacingType; } + double spacing() const { return mSpacing; } + + // setters: + void setSpacingType(SpacingType spacingType); + void setSpacing(double spacing); + + // non-virtual methods: + QList bars() const { return mBars; } + QCPBars* bars(int index) const; + int size() const { return mBars.size(); } + bool isEmpty() const { return mBars.isEmpty(); } + void clear(); + bool contains(QCPBars *bars) const { return mBars.contains(bars); } + void append(QCPBars *bars); + void insert(int i, QCPBars *bars); + void remove(QCPBars *bars); + +protected: + // non-property members: + QCustomPlot *mParentPlot; + SpacingType mSpacingType; + double mSpacing; + QList mBars; + + // non-virtual methods: + void registerBars(QCPBars *bars); + void unregisterBars(QCPBars *bars); + + // virtual methods: + double keyPixelOffset(const QCPBars *bars, double keyCoord); + double getPixelSpacing(const QCPBars *bars, double keyCoord); + +private: + Q_DISABLE_COPY(QCPBarsGroup) + + friend class QCPBars; +}; + + +class QCP_LIB_DECL QCPBarData +{ +public: + QCPBarData(); + QCPBarData(double key, double value); + double key, value; +}; +Q_DECLARE_TYPEINFO(QCPBarData, Q_MOVABLE_TYPE); + +/*! \typedef QCPBarDataMap + Container for storing \ref QCPBarData items in a sorted fashion. The key of the map + is the key member of the QCPBarData instance. + + This is the container in which QCPBars holds its data. + \see QCPBarData, QCPBars::setData +*/ +typedef QMap QCPBarDataMap; +typedef QMapIterator QCPBarDataMapIterator; +typedef QMutableMapIterator QCPBarDataMutableMapIterator; + + +class QCP_LIB_DECL QCPBars : public QCPAbstractPlottable +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(double width READ width WRITE setWidth) + Q_PROPERTY(WidthType widthType READ widthType WRITE setWidthType) + Q_PROPERTY(QCPBarsGroup* barsGroup READ barsGroup WRITE setBarsGroup) + Q_PROPERTY(double baseValue READ baseValue WRITE setBaseValue) + Q_PROPERTY(QCPBars* barBelow READ barBelow) + Q_PROPERTY(QCPBars* barAbove READ barAbove) + /// \endcond +public: + /*! + Defines the ways the width of the bar can be specified. Thus it defines what the number passed + to \ref setWidth actually means. + + \see setWidthType, setWidth + */ + enum WidthType { wtAbsolute ///< Bar width is in absolute pixels + ,wtAxisRectRatio ///< Bar width is given by a fraction of the axis rect size + ,wtPlotCoords ///< Bar width is in key coordinates and thus scales with the key axis range + }; + Q_ENUMS(WidthType) + + explicit QCPBars(QCPAxis *keyAxis, QCPAxis *valueAxis); + virtual ~QCPBars(); + + // getters: + double width() const { return mWidth; } + WidthType widthType() const { return mWidthType; } + QCPBarsGroup *barsGroup() const { return mBarsGroup; } + double baseValue() const { return mBaseValue; } + QCPBars *barBelow() const { return mBarBelow.data(); } + QCPBars *barAbove() const { return mBarAbove.data(); } + QCPBarDataMap *data() const { return mData; } + + // setters: + void setWidth(double width); + void setWidthType(WidthType widthType); + void setBarsGroup(QCPBarsGroup *barsGroup); + void setBaseValue(double baseValue); + void setData(QCPBarDataMap *data, bool copy=false); + void setData(const QVector &key, const QVector &value); + + // non-property methods: + void moveBelow(QCPBars *bars); + void moveAbove(QCPBars *bars); + void addData(const QCPBarDataMap &dataMap); + void addData(const QCPBarData &data); + void addData(double key, double value); + void addData(const QVector &keys, const QVector &values); + void removeDataBefore(double key); + void removeDataAfter(double key); + void removeData(double fromKey, double toKey); + void removeData(double key); + + // reimplemented virtual methods: + virtual void clearData(); + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const; + +protected: + // property members: + QCPBarDataMap *mData; + double mWidth; + WidthType mWidthType; + QCPBarsGroup *mBarsGroup; + double mBaseValue; + QPointer mBarBelow, mBarAbove; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter); + virtual void drawLegendIcon(QCPPainter *painter, const QRectF &rect) const; + virtual QCPRange getKeyRange(bool &foundRange, SignDomain inSignDomain=sdBoth) const; + virtual QCPRange getValueRange(bool &foundRange, SignDomain inSignDomain=sdBoth) const; + + // non-virtual methods: + void getVisibleDataBounds(QCPBarDataMap::const_iterator &lower, QCPBarDataMap::const_iterator &upperEnd) const; + QPolygonF getBarPolygon(double key, double value) const; + void getPixelWidth(double key, double &lower, double &upper) const; + double getStackedBaseValue(double key, bool positive) const; + static void connectBars(QCPBars* lower, QCPBars* upper); + + friend class QCustomPlot; + friend class QCPLegend; + friend class QCPBarsGroup; +}; + + +/*! \file */ + + + +class QCP_LIB_DECL QCPStatisticalBox : public QCPAbstractPlottable +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(double key READ key WRITE setKey) + Q_PROPERTY(double minimum READ minimum WRITE setMinimum) + Q_PROPERTY(double lowerQuartile READ lowerQuartile WRITE setLowerQuartile) + Q_PROPERTY(double median READ median WRITE setMedian) + Q_PROPERTY(double upperQuartile READ upperQuartile WRITE setUpperQuartile) + Q_PROPERTY(double maximum READ maximum WRITE setMaximum) + Q_PROPERTY(QVector outliers READ outliers WRITE setOutliers) + Q_PROPERTY(double width READ width WRITE setWidth) + Q_PROPERTY(double whiskerWidth READ whiskerWidth WRITE setWhiskerWidth) + Q_PROPERTY(QPen whiskerPen READ whiskerPen WRITE setWhiskerPen) + Q_PROPERTY(QPen whiskerBarPen READ whiskerBarPen WRITE setWhiskerBarPen) + Q_PROPERTY(QPen medianPen READ medianPen WRITE setMedianPen) + Q_PROPERTY(QCPScatterStyle outlierStyle READ outlierStyle WRITE setOutlierStyle) + /// \endcond +public: + explicit QCPStatisticalBox(QCPAxis *keyAxis, QCPAxis *valueAxis); + + // getters: + double key() const { return mKey; } + double minimum() const { return mMinimum; } + double lowerQuartile() const { return mLowerQuartile; } + double median() const { return mMedian; } + double upperQuartile() const { return mUpperQuartile; } + double maximum() const { return mMaximum; } + QVector outliers() const { return mOutliers; } + double width() const { return mWidth; } + double whiskerWidth() const { return mWhiskerWidth; } + QPen whiskerPen() const { return mWhiskerPen; } + QPen whiskerBarPen() const { return mWhiskerBarPen; } + QPen medianPen() const { return mMedianPen; } + QCPScatterStyle outlierStyle() const { return mOutlierStyle; } + + // setters: + void setKey(double key); + void setMinimum(double value); + void setLowerQuartile(double value); + void setMedian(double value); + void setUpperQuartile(double value); + void setMaximum(double value); + void setOutliers(const QVector &values); + void setData(double key, double minimum, double lowerQuartile, double median, double upperQuartile, double maximum); + void setWidth(double width); + void setWhiskerWidth(double width); + void setWhiskerPen(const QPen &pen); + void setWhiskerBarPen(const QPen &pen); + void setMedianPen(const QPen &pen); + void setOutlierStyle(const QCPScatterStyle &style); + + // non-property methods: + virtual void clearData(); + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const; + +protected: + // property members: + QVector mOutliers; + double mKey, mMinimum, mLowerQuartile, mMedian, mUpperQuartile, mMaximum; + double mWidth; + double mWhiskerWidth; + QPen mWhiskerPen, mWhiskerBarPen, mMedianPen; + QCPScatterStyle mOutlierStyle; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter); + virtual void drawLegendIcon(QCPPainter *painter, const QRectF &rect) const; + virtual QCPRange getKeyRange(bool &foundRange, SignDomain inSignDomain=sdBoth) const; + virtual QCPRange getValueRange(bool &foundRange, SignDomain inSignDomain=sdBoth) const; + + // introduced virtual methods: + virtual void drawQuartileBox(QCPPainter *painter, QRectF *quartileBox=0) const; + virtual void drawMedian(QCPPainter *painter) const; + virtual void drawWhiskers(QCPPainter *painter) const; + virtual void drawOutliers(QCPPainter *painter) const; + + friend class QCustomPlot; + friend class QCPLegend; +}; + + +class QCP_LIB_DECL QCPColorMapData +{ +public: + QCPColorMapData(int keySize, int valueSize, const QCPRange &keyRange, const QCPRange &valueRange); + ~QCPColorMapData(); + QCPColorMapData(const QCPColorMapData &other); + QCPColorMapData &operator=(const QCPColorMapData &other); + + // getters: + int keySize() const { return mKeySize; } + int valueSize() const { return mValueSize; } + QCPRange keyRange() const { return mKeyRange; } + QCPRange valueRange() const { return mValueRange; } + QCPRange dataBounds() const { return mDataBounds; } + double data(double key, double value); + double cell(int keyIndex, int valueIndex); + + // setters: + void setSize(int keySize, int valueSize); + void setKeySize(int keySize); + void setValueSize(int valueSize); + void setRange(const QCPRange &keyRange, const QCPRange &valueRange); + void setKeyRange(const QCPRange &keyRange); + void setValueRange(const QCPRange &valueRange); + void setData(double key, double value, double z); + void setCell(int keyIndex, int valueIndex, double z); + + // non-property methods: + void recalculateDataBounds(); + void clear(); + void fill(double z); + bool isEmpty() const { return mIsEmpty; } + void coordToCell(double key, double value, int *keyIndex, int *valueIndex) const; + void cellToCoord(int keyIndex, int valueIndex, double *key, double *value) const; + +protected: + // property members: + int mKeySize, mValueSize; + QCPRange mKeyRange, mValueRange; + bool mIsEmpty; + // non-property members: + double *mData; + QCPRange mDataBounds; + bool mDataModified; + + friend class QCPColorMap; +}; + + +class QCP_LIB_DECL QCPColorMap : public QCPAbstractPlottable +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QCPRange dataRange READ dataRange WRITE setDataRange NOTIFY dataRangeChanged) + Q_PROPERTY(QCPAxis::ScaleType dataScaleType READ dataScaleType WRITE setDataScaleType NOTIFY dataScaleTypeChanged) + Q_PROPERTY(QCPColorGradient gradient READ gradient WRITE setGradient NOTIFY gradientChanged) + Q_PROPERTY(bool interpolate READ interpolate WRITE setInterpolate) + Q_PROPERTY(bool tightBoundary READ tightBoundary WRITE setTightBoundary) + Q_PROPERTY(QCPColorScale* colorScale READ colorScale WRITE setColorScale) + /// \endcond +public: + explicit QCPColorMap(QCPAxis *keyAxis, QCPAxis *valueAxis); + virtual ~QCPColorMap(); + + // getters: + QCPColorMapData *data() const { return mMapData; } + QCPRange dataRange() const { return mDataRange; } + QCPAxis::ScaleType dataScaleType() const { return mDataScaleType; } + bool interpolate() const { return mInterpolate; } + bool tightBoundary() const { return mTightBoundary; } + QCPColorGradient gradient() const { return mGradient; } + QCPColorScale *colorScale() const { return mColorScale.data(); } + + // setters: + void setData(QCPColorMapData *data, bool copy=false); + Q_SLOT void setDataRange(const QCPRange &dataRange); + Q_SLOT void setDataScaleType(QCPAxis::ScaleType scaleType); + Q_SLOT void setGradient(const QCPColorGradient &gradient); + void setInterpolate(bool enabled); + void setTightBoundary(bool enabled); + void setColorScale(QCPColorScale *colorScale); + + // non-property methods: + void rescaleDataRange(bool recalculateDataBounds=false); + Q_SLOT void updateLegendIcon(Qt::TransformationMode transformMode=Qt::SmoothTransformation, const QSize &thumbSize=QSize(32, 18)); + + // reimplemented virtual methods: + virtual void clearData(); + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const; + +signals: + void dataRangeChanged(QCPRange newRange); + void dataScaleTypeChanged(QCPAxis::ScaleType scaleType); + void gradientChanged(QCPColorGradient newGradient); + +protected: + // property members: + QCPRange mDataRange; + QCPAxis::ScaleType mDataScaleType; + QCPColorMapData *mMapData; + QCPColorGradient mGradient; + bool mInterpolate; + bool mTightBoundary; + QPointer mColorScale; + // non-property members: + QImage mMapImage, mUndersampledMapImage; + QPixmap mLegendIcon; + bool mMapImageInvalidated; + + // introduced virtual methods: + virtual void updateMapImage(); + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter); + virtual void drawLegendIcon(QCPPainter *painter, const QRectF &rect) const; + virtual QCPRange getKeyRange(bool &foundRange, SignDomain inSignDomain=sdBoth) const; + virtual QCPRange getValueRange(bool &foundRange, SignDomain inSignDomain=sdBoth) const; + + friend class QCustomPlot; + friend class QCPLegend; +}; + + +/*! \file */ + + + +class QCP_LIB_DECL QCPFinancialData +{ +public: + QCPFinancialData(); + QCPFinancialData(double key, double open, double high, double low, double close); + double key, open, high, low, close; +}; +Q_DECLARE_TYPEINFO(QCPFinancialData, Q_MOVABLE_TYPE); + +/*! \typedef QCPFinancialDataMap + Container for storing \ref QCPFinancialData items in a sorted fashion. The key of the map + is the key member of the QCPFinancialData instance. + + This is the container in which QCPFinancial holds its data. + \see QCPFinancial, QCPFinancial::setData +*/ +typedef QMap QCPFinancialDataMap; +typedef QMapIterator QCPFinancialDataMapIterator; +typedef QMutableMapIterator QCPFinancialDataMutableMapIterator; + + +class QCP_LIB_DECL QCPFinancial : public QCPAbstractPlottable +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(ChartStyle chartStyle READ chartStyle WRITE setChartStyle) + Q_PROPERTY(double width READ width WRITE setWidth) + Q_PROPERTY(bool twoColored READ twoColored WRITE setTwoColored) + Q_PROPERTY(QBrush brushPositive READ brushPositive WRITE setBrushPositive) + Q_PROPERTY(QBrush brushNegative READ brushNegative WRITE setBrushNegative) + Q_PROPERTY(QPen penPositive READ penPositive WRITE setPenPositive) + Q_PROPERTY(QPen penNegative READ penNegative WRITE setPenNegative) + /// \endcond +public: + /*! + Defines the possible representations of OHLC data in the plot. + + \see setChartStyle + */ + enum ChartStyle { csOhlc ///< Open-High-Low-Close bar representation + ,csCandlestick ///< Candlestick representation + }; + Q_ENUMS(ChartStyle) + + explicit QCPFinancial(QCPAxis *keyAxis, QCPAxis *valueAxis); + virtual ~QCPFinancial(); + + // getters: + QCPFinancialDataMap *data() const { return mData; } + ChartStyle chartStyle() const { return mChartStyle; } + double width() const { return mWidth; } + bool twoColored() const { return mTwoColored; } + QBrush brushPositive() const { return mBrushPositive; } + QBrush brushNegative() const { return mBrushNegative; } + QPen penPositive() const { return mPenPositive; } + QPen penNegative() const { return mPenNegative; } + + + // setters: + void setData(QCPFinancialDataMap *data, bool copy=false); + void setData(const QVector &key, const QVector &open, const QVector &high, const QVector &low, const QVector &close); + void setChartStyle(ChartStyle style); + void setWidth(double width); + void setTwoColored(bool twoColored); + void setBrushPositive(const QBrush &brush); + void setBrushNegative(const QBrush &brush); + void setPenPositive(const QPen &pen); + void setPenNegative(const QPen &pen); + + // non-property methods: + void addData(const QCPFinancialDataMap &dataMap); + void addData(const QCPFinancialData &data); + void addData(double key, double open, double high, double low, double close); + void addData(const QVector &key, const QVector &open, const QVector &high, const QVector &low, const QVector &close); + void removeDataBefore(double key); + void removeDataAfter(double key); + void removeData(double fromKey, double toKey); + void removeData(double key); + + // reimplemented virtual methods: + virtual void clearData(); + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const; + + // static methods: + static QCPFinancialDataMap timeSeriesToOhlc(const QVector &time, const QVector &value, double timeBinSize, double timeBinOffset = 0); + +protected: + // property members: + QCPFinancialDataMap *mData; + ChartStyle mChartStyle; + double mWidth; + bool mTwoColored; + QBrush mBrushPositive, mBrushNegative; + QPen mPenPositive, mPenNegative; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter); + virtual void drawLegendIcon(QCPPainter *painter, const QRectF &rect) const; + virtual QCPRange getKeyRange(bool &foundRange, SignDomain inSignDomain=sdBoth) const; + virtual QCPRange getValueRange(bool &foundRange, SignDomain inSignDomain=sdBoth) const; + + // non-virtual methods: + void drawOhlcPlot(QCPPainter *painter, const QCPFinancialDataMap::const_iterator &begin, const QCPFinancialDataMap::const_iterator &end); + void drawCandlestickPlot(QCPPainter *painter, const QCPFinancialDataMap::const_iterator &begin, const QCPFinancialDataMap::const_iterator &end); + double ohlcSelectTest(const QPointF &pos, const QCPFinancialDataMap::const_iterator &begin, const QCPFinancialDataMap::const_iterator &end) const; + double candlestickSelectTest(const QPointF &pos, const QCPFinancialDataMap::const_iterator &begin, const QCPFinancialDataMap::const_iterator &end) const; + void getVisibleDataBounds(QCPFinancialDataMap::const_iterator &lower, QCPFinancialDataMap::const_iterator &upper) const; + + friend class QCustomPlot; + friend class QCPLegend; +}; + + +class QCP_LIB_DECL QCPItemStraightLine : public QCPAbstractItem +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QPen pen READ pen WRITE setPen) + Q_PROPERTY(QPen selectedPen READ selectedPen WRITE setSelectedPen) + /// \endcond +public: + QCPItemStraightLine(QCustomPlot *parentPlot); + virtual ~QCPItemStraightLine(); + + // getters: + QPen pen() const { return mPen; } + QPen selectedPen() const { return mSelectedPen; } + + // setters; + void setPen(const QPen &pen); + void setSelectedPen(const QPen &pen); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const; + + QCPItemPosition * const point1; + QCPItemPosition * const point2; + +protected: + // property members: + QPen mPen, mSelectedPen; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter); + + // non-virtual methods: + double distToStraightLine(const QVector2D &point1, const QVector2D &vec, const QVector2D &point) const; + QLineF getRectClippedStraightLine(const QVector2D &point1, const QVector2D &vec, const QRect &rect) const; + QPen mainPen() const; +}; + + +class QCP_LIB_DECL QCPItemLine : public QCPAbstractItem +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QPen pen READ pen WRITE setPen) + Q_PROPERTY(QPen selectedPen READ selectedPen WRITE setSelectedPen) + Q_PROPERTY(QCPLineEnding head READ head WRITE setHead) + Q_PROPERTY(QCPLineEnding tail READ tail WRITE setTail) + /// \endcond +public: + QCPItemLine(QCustomPlot *parentPlot); + virtual ~QCPItemLine(); + + // getters: + QPen pen() const { return mPen; } + QPen selectedPen() const { return mSelectedPen; } + QCPLineEnding head() const { return mHead; } + QCPLineEnding tail() const { return mTail; } + + // setters; + void setPen(const QPen &pen); + void setSelectedPen(const QPen &pen); + void setHead(const QCPLineEnding &head); + void setTail(const QCPLineEnding &tail); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const; + + QCPItemPosition * const start; + QCPItemPosition * const end; + +protected: + // property members: + QPen mPen, mSelectedPen; + QCPLineEnding mHead, mTail; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter); + + // non-virtual methods: + QLineF getRectClippedLine(const QVector2D &start, const QVector2D &end, const QRect &rect) const; + QPen mainPen() const; +}; + + +class QCP_LIB_DECL QCPItemCurve : public QCPAbstractItem +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QPen pen READ pen WRITE setPen) + Q_PROPERTY(QPen selectedPen READ selectedPen WRITE setSelectedPen) + Q_PROPERTY(QCPLineEnding head READ head WRITE setHead) + Q_PROPERTY(QCPLineEnding tail READ tail WRITE setTail) + /// \endcond +public: + QCPItemCurve(QCustomPlot *parentPlot); + virtual ~QCPItemCurve(); + + // getters: + QPen pen() const { return mPen; } + QPen selectedPen() const { return mSelectedPen; } + QCPLineEnding head() const { return mHead; } + QCPLineEnding tail() const { return mTail; } + + // setters; + void setPen(const QPen &pen); + void setSelectedPen(const QPen &pen); + void setHead(const QCPLineEnding &head); + void setTail(const QCPLineEnding &tail); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const; + + QCPItemPosition * const start; + QCPItemPosition * const startDir; + QCPItemPosition * const endDir; + QCPItemPosition * const end; + +protected: + // property members: + QPen mPen, mSelectedPen; + QCPLineEnding mHead, mTail; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter); + + // non-virtual methods: + QPen mainPen() const; +}; + + +class QCP_LIB_DECL QCPItemRect : public QCPAbstractItem +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QPen pen READ pen WRITE setPen) + Q_PROPERTY(QPen selectedPen READ selectedPen WRITE setSelectedPen) + Q_PROPERTY(QBrush brush READ brush WRITE setBrush) + Q_PROPERTY(QBrush selectedBrush READ selectedBrush WRITE setSelectedBrush) + /// \endcond +public: + QCPItemRect(QCustomPlot *parentPlot); + virtual ~QCPItemRect(); + + // getters: + QPen pen() const { return mPen; } + QPen selectedPen() const { return mSelectedPen; } + QBrush brush() const { return mBrush; } + QBrush selectedBrush() const { return mSelectedBrush; } + + // setters; + void setPen(const QPen &pen); + void setSelectedPen(const QPen &pen); + void setBrush(const QBrush &brush); + void setSelectedBrush(const QBrush &brush); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const; + + QCPItemPosition * const topLeft; + QCPItemPosition * const bottomRight; + QCPItemAnchor * const top; + QCPItemAnchor * const topRight; + QCPItemAnchor * const right; + QCPItemAnchor * const bottom; + QCPItemAnchor * const bottomLeft; + QCPItemAnchor * const left; + +protected: + enum AnchorIndex {aiTop, aiTopRight, aiRight, aiBottom, aiBottomLeft, aiLeft}; + + // property members: + QPen mPen, mSelectedPen; + QBrush mBrush, mSelectedBrush; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter); + virtual QPointF anchorPixelPoint(int anchorId) const; + + // non-virtual methods: + QPen mainPen() const; + QBrush mainBrush() const; +}; + + +class QCP_LIB_DECL QCPItemText : public QCPAbstractItem +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QColor color READ color WRITE setColor) + Q_PROPERTY(QColor selectedColor READ selectedColor WRITE setSelectedColor) + Q_PROPERTY(QPen pen READ pen WRITE setPen) + Q_PROPERTY(QPen selectedPen READ selectedPen WRITE setSelectedPen) + Q_PROPERTY(QBrush brush READ brush WRITE setBrush) + Q_PROPERTY(QBrush selectedBrush READ selectedBrush WRITE setSelectedBrush) + Q_PROPERTY(QFont font READ font WRITE setFont) + Q_PROPERTY(QFont selectedFont READ selectedFont WRITE setSelectedFont) + Q_PROPERTY(QString text READ text WRITE setText) + Q_PROPERTY(Qt::Alignment positionAlignment READ positionAlignment WRITE setPositionAlignment) + Q_PROPERTY(Qt::Alignment textAlignment READ textAlignment WRITE setTextAlignment) + Q_PROPERTY(double rotation READ rotation WRITE setRotation) + Q_PROPERTY(QMargins padding READ padding WRITE setPadding) + /// \endcond +public: + QCPItemText(QCustomPlot *parentPlot); + virtual ~QCPItemText(); + + // getters: + QColor color() const { return mColor; } + QColor selectedColor() const { return mSelectedColor; } + QPen pen() const { return mPen; } + QPen selectedPen() const { return mSelectedPen; } + QBrush brush() const { return mBrush; } + QBrush selectedBrush() const { return mSelectedBrush; } + QFont font() const { return mFont; } + QFont selectedFont() const { return mSelectedFont; } + QString text() const { return mText; } + Qt::Alignment positionAlignment() const { return mPositionAlignment; } + Qt::Alignment textAlignment() const { return mTextAlignment; } + double rotation() const { return mRotation; } + QMargins padding() const { return mPadding; } + + // setters; + void setColor(const QColor &color); + void setSelectedColor(const QColor &color); + void setPen(const QPen &pen); + void setSelectedPen(const QPen &pen); + void setBrush(const QBrush &brush); + void setSelectedBrush(const QBrush &brush); + void setFont(const QFont &font); + void setSelectedFont(const QFont &font); + void setText(const QString &text); + void setPositionAlignment(Qt::Alignment alignment); + void setTextAlignment(Qt::Alignment alignment); + void setRotation(double degrees); + void setPadding(const QMargins &padding); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const; + + QCPItemPosition * const position; + QCPItemAnchor * const topLeft; + QCPItemAnchor * const top; + QCPItemAnchor * const topRight; + QCPItemAnchor * const right; + QCPItemAnchor * const bottomRight; + QCPItemAnchor * const bottom; + QCPItemAnchor * const bottomLeft; + QCPItemAnchor * const left; + +protected: + enum AnchorIndex {aiTopLeft, aiTop, aiTopRight, aiRight, aiBottomRight, aiBottom, aiBottomLeft, aiLeft}; + + // property members: + QColor mColor, mSelectedColor; + QPen mPen, mSelectedPen; + QBrush mBrush, mSelectedBrush; + QFont mFont, mSelectedFont; + QString mText; + Qt::Alignment mPositionAlignment; + Qt::Alignment mTextAlignment; + double mRotation; + QMargins mPadding; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter); + virtual QPointF anchorPixelPoint(int anchorId) const; + + // non-virtual methods: + QPointF getTextDrawPoint(const QPointF &pos, const QRectF &rect, Qt::Alignment positionAlignment) const; + QFont mainFont() const; + QColor mainColor() const; + QPen mainPen() const; + QBrush mainBrush() const; +}; + + +class QCP_LIB_DECL QCPItemEllipse : public QCPAbstractItem +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QPen pen READ pen WRITE setPen) + Q_PROPERTY(QPen selectedPen READ selectedPen WRITE setSelectedPen) + Q_PROPERTY(QBrush brush READ brush WRITE setBrush) + Q_PROPERTY(QBrush selectedBrush READ selectedBrush WRITE setSelectedBrush) + /// \endcond +public: + QCPItemEllipse(QCustomPlot *parentPlot); + virtual ~QCPItemEllipse(); + + // getters: + QPen pen() const { return mPen; } + QPen selectedPen() const { return mSelectedPen; } + QBrush brush() const { return mBrush; } + QBrush selectedBrush() const { return mSelectedBrush; } + + // setters; + void setPen(const QPen &pen); + void setSelectedPen(const QPen &pen); + void setBrush(const QBrush &brush); + void setSelectedBrush(const QBrush &brush); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const; + + QCPItemPosition * const topLeft; + QCPItemPosition * const bottomRight; + QCPItemAnchor * const topLeftRim; + QCPItemAnchor * const top; + QCPItemAnchor * const topRightRim; + QCPItemAnchor * const right; + QCPItemAnchor * const bottomRightRim; + QCPItemAnchor * const bottom; + QCPItemAnchor * const bottomLeftRim; + QCPItemAnchor * const left; + QCPItemAnchor * const center; + +protected: + enum AnchorIndex {aiTopLeftRim, aiTop, aiTopRightRim, aiRight, aiBottomRightRim, aiBottom, aiBottomLeftRim, aiLeft, aiCenter}; + + // property members: + QPen mPen, mSelectedPen; + QBrush mBrush, mSelectedBrush; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter); + virtual QPointF anchorPixelPoint(int anchorId) const; + + // non-virtual methods: + QPen mainPen() const; + QBrush mainBrush() const; +}; + + +class QCP_LIB_DECL QCPItemPixmap : public QCPAbstractItem +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QPixmap pixmap READ pixmap WRITE setPixmap) + Q_PROPERTY(bool scaled READ scaled WRITE setScaled) + Q_PROPERTY(Qt::AspectRatioMode aspectRatioMode READ aspectRatioMode) + Q_PROPERTY(Qt::TransformationMode transformationMode READ transformationMode) + Q_PROPERTY(QPen pen READ pen WRITE setPen) + Q_PROPERTY(QPen selectedPen READ selectedPen WRITE setSelectedPen) + /// \endcond +public: + QCPItemPixmap(QCustomPlot *parentPlot); + virtual ~QCPItemPixmap(); + + // getters: + QPixmap pixmap() const { return mPixmap; } + bool scaled() const { return mScaled; } + Qt::AspectRatioMode aspectRatioMode() const { return mAspectRatioMode; } + Qt::TransformationMode transformationMode() const { return mTransformationMode; } + QPen pen() const { return mPen; } + QPen selectedPen() const { return mSelectedPen; } + + // setters; + void setPixmap(const QPixmap &pixmap); + void setScaled(bool scaled, Qt::AspectRatioMode aspectRatioMode=Qt::KeepAspectRatio, Qt::TransformationMode transformationMode=Qt::SmoothTransformation); + void setPen(const QPen &pen); + void setSelectedPen(const QPen &pen); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const; + + QCPItemPosition * const topLeft; + QCPItemPosition * const bottomRight; + QCPItemAnchor * const top; + QCPItemAnchor * const topRight; + QCPItemAnchor * const right; + QCPItemAnchor * const bottom; + QCPItemAnchor * const bottomLeft; + QCPItemAnchor * const left; + +protected: + enum AnchorIndex {aiTop, aiTopRight, aiRight, aiBottom, aiBottomLeft, aiLeft}; + + // property members: + QPixmap mPixmap; + QPixmap mScaledPixmap; + bool mScaled; + Qt::AspectRatioMode mAspectRatioMode; + Qt::TransformationMode mTransformationMode; + QPen mPen, mSelectedPen; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter); + virtual QPointF anchorPixelPoint(int anchorId) const; + + // non-virtual methods: + void updateScaledPixmap(QRect finalRect=QRect(), bool flipHorz=false, bool flipVert=false); + QRect getFinalRect(bool *flippedHorz=0, bool *flippedVert=0) const; + QPen mainPen() const; +}; + + +class QCP_LIB_DECL QCPItemTracer : public QCPAbstractItem +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QPen pen READ pen WRITE setPen) + Q_PROPERTY(QPen selectedPen READ selectedPen WRITE setSelectedPen) + Q_PROPERTY(QBrush brush READ brush WRITE setBrush) + Q_PROPERTY(QBrush selectedBrush READ selectedBrush WRITE setSelectedBrush) + Q_PROPERTY(double size READ size WRITE setSize) + Q_PROPERTY(TracerStyle style READ style WRITE setStyle) + Q_PROPERTY(QCPGraph* graph READ graph WRITE setGraph) + Q_PROPERTY(double graphKey READ graphKey WRITE setGraphKey) + Q_PROPERTY(bool interpolating READ interpolating WRITE setInterpolating) + /// \endcond +public: + /*! + The different visual appearances a tracer item can have. Some styles size may be controlled with \ref setSize. + + \see setStyle + */ + enum TracerStyle { tsNone ///< The tracer is not visible + ,tsPlus ///< A plus shaped crosshair with limited size + ,tsCrosshair ///< A plus shaped crosshair which spans the complete axis rect + ,tsCircle ///< A circle + ,tsSquare ///< A square + }; + Q_ENUMS(TracerStyle) + + QCPItemTracer(QCustomPlot *parentPlot); + virtual ~QCPItemTracer(); + + // getters: + QPen pen() const { return mPen; } + QPen selectedPen() const { return mSelectedPen; } + QBrush brush() const { return mBrush; } + QBrush selectedBrush() const { return mSelectedBrush; } + double size() const { return mSize; } + TracerStyle style() const { return mStyle; } + QCPGraph *graph() const { return mGraph; } + double graphKey() const { return mGraphKey; } + bool interpolating() const { return mInterpolating; } + + // setters; + void setPen(const QPen &pen); + void setSelectedPen(const QPen &pen); + void setBrush(const QBrush &brush); + void setSelectedBrush(const QBrush &brush); + void setSize(double size); + void setStyle(TracerStyle style); + void setGraph(QCPGraph *graph); + void setGraphKey(double key); + void setInterpolating(bool enabled); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const; + + // non-virtual methods: + void updatePosition(); + + QCPItemPosition * const position; + +protected: + // property members: + QPen mPen, mSelectedPen; + QBrush mBrush, mSelectedBrush; + double mSize; + TracerStyle mStyle; + QCPGraph *mGraph; + double mGraphKey; + bool mInterpolating; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter); + + // non-virtual methods: + QPen mainPen() const; + QBrush mainBrush() const; +}; + + +class QCP_LIB_DECL QCPItemBracket : public QCPAbstractItem +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QPen pen READ pen WRITE setPen) + Q_PROPERTY(QPen selectedPen READ selectedPen WRITE setSelectedPen) + Q_PROPERTY(double length READ length WRITE setLength) + Q_PROPERTY(BracketStyle style READ style WRITE setStyle) + /// \endcond +public: + enum BracketStyle { bsSquare ///< A brace with angled edges + ,bsRound ///< A brace with round edges + ,bsCurly ///< A curly brace + ,bsCalligraphic ///< A curly brace with varying stroke width giving a calligraphic impression + }; + + QCPItemBracket(QCustomPlot *parentPlot); + virtual ~QCPItemBracket(); + + // getters: + QPen pen() const { return mPen; } + QPen selectedPen() const { return mSelectedPen; } + double length() const { return mLength; } + BracketStyle style() const { return mStyle; } + + // setters; + void setPen(const QPen &pen); + void setSelectedPen(const QPen &pen); + void setLength(double length); + void setStyle(BracketStyle style); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const; + + QCPItemPosition * const left; + QCPItemPosition * const right; + QCPItemAnchor * const center; + +protected: + // property members: + enum AnchorIndex {aiCenter}; + QPen mPen, mSelectedPen; + double mLength; + BracketStyle mStyle; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter); + virtual QPointF anchorPixelPoint(int anchorId) const; + + // non-virtual methods: + QPen mainPen() const; +}; + +#endif // QCUSTOMPLOT_H + diff --git a/GUI/README b/GUI/README new file mode 100644 index 0000000..4b25792 --- /dev/null +++ b/GUI/README @@ -0,0 +1,59 @@ +************************************************************** +**** OCW3D - A GUI for OceanWave3D **** +************************************************************** + +Table of Contents +------------------ +1. Requirements +2. Installation +3. Authors and Contact +A. Acknowledgment and License + +1. Requirements +----------------- +OCW3D requires the following third-party software libraries: + * A C++ compiler (e.g. gcc, visual-c++ etc.) + * Software libraries + - qt (including qmake) + - xterm + - gnuplot + - boost + +2. Installation +----------------- + +For building the binary executable, proceed as follows: + +Unix-based clients: + $> qmake + $> make release + $> ./release/OCW3D + + For non-standard settings edit OCW3D.pro + + +Windows based clients: +OCW3D has been compiled on Windows using both Visual studio and qt-creator. However, the Windows version do not have full functionality. +For more information please contact bo.paulsen@deltares.nl + + +3. Authors and Contact +------------------------ + +Bo Terp Paulsen (bo.paulsen@deltares.nl, developer and maintainer) + +A. Acknowledgment and License +------------------------------ + +Please acknowledge this software referred to as "OceanWave3D" in your work and any of the publications below by using the following references: + + @ARTICLE{EngsigKarupEtAl08, + AUTHOR = "Engsig-Karup, A.P. and Bingham, H.B. and Lindberg, O.", + TITLE = "An efficient flexible-order model for {3D} nonlinear water waves", + YEAR = "2009", + JOURNAL = "Journal of Computational Physics", + VOLUME = "228", + PAGES = "2100-2118" + } + + diff --git a/GUI/checkdialog.cpp b/GUI/checkdialog.cpp new file mode 100644 index 0000000..5153f97 --- /dev/null +++ b/GUI/checkdialog.cpp @@ -0,0 +1,216 @@ +#include "checkdialog.h" +#include "QPainter" +#include "ui_checkdialog.h" + +checkDialog::checkDialog(QWidget *parent) : + QDialog(parent), + ui(new Ui::checkDialog) +{ + ui->setupUi(this); + +} + +checkDialog::~checkDialog() +{ + delete ui; +} + + + +bool checkDialog::spatialResolution(double resolution, bool irr) +{ + + bool finalCheck = true; + QPixmap pixmapGood(":/pictures/checkMark.png"); + QPixmap pixmapBad(":/pictures/bad.png"); + QPixmap pixmapMed(":/pictures/warning.png"); + + QString outstring = "Points per wave length = " + QString::number(resolution,'f',2); + ui->spatialRes_label->setText(outstring); + + if (!irr){ + if (resolution <=5) + { + ui->spatialRes_image->setPixmap(pixmapBad); + ui->explanation_spatial->setText("Insufficient points per wave length"); + finalCheck = false; + } else if ((resolution>5) & (resolution<15)) + { + ui->spatialRes_image->setPixmap(pixmapMed); + ui->explanation_spatial->setText("limited points per wave length"); + finalCheck = false; + } else { + ui->spatialRes_image->setPixmap(pixmapGood); + } + } else { + if (resolution <5) + { + ui->spatialRes_image->setPixmap(pixmapBad); + ui->explanation_spatial->setText("Insufficient points per wave length"); + finalCheck = false; + } else { + ui->spatialRes_image->setPixmap(pixmapGood); + ui->explanation_spatial->setText("Note: For irregular waves we are less\n restrictive"); + } + + } + ui->spatialRes_image->setScaledContents(true); + + return finalCheck; +} + + +bool checkDialog::temporalResolution(double resolution,bool irr) +{ + + + + bool finalCheck = true; + QPixmap pixmapGood(":/pictures/checkMark.png"); + QPixmap pixmapBad(":/pictures/bad.png"); + QPixmap pixmapMed(":/pictures/warning.png"); + + QString outstring = "Points per wave period = " + QString::number(resolution,'f',2); + ui->temporalRes_label->setText(outstring); + if (!irr){ + if (resolution <=20) + { + ui->temporalRes_image->setPixmap(pixmapBad); + ui->explanation_temporal->setText("Insufficient points per wave period"); + finalCheck = false; + } else if ((resolution>20) & (resolution<30)) + { + ui->temporalRes_image->setPixmap(pixmapMed); + ui->explanation_temporal->setText("Limited points per wave period"); + finalCheck = false; + } else { + ui->temporalRes_image->setPixmap(pixmapGood); + } + } else { + if (resolution <=20) + { + ui->temporalRes_image->setPixmap(pixmapBad); + ui->explanation_temporal->setText("Insufficient points per wave period"); + finalCheck = false; + } else { + ui->temporalRes_image->setPixmap(pixmapGood); + ui->explanation_temporal->setText("Note: For irregular waves we are less\n restrictive"); + } + + + } + ui->temporalRes_image->setScaledContents(true); + + return finalCheck; +} + +bool checkDialog::generationZone(double start, double end, double L){ + + bool finalCheck = true; + double length = (end - start)/L; + + QPixmap pixmapGood(":/pictures/checkMark.png"); + QPixmap pixmapBad(":/pictures/bad.png"); + QString outstring; + QString explanation = ""; + + outstring = "start = " + QString::number(start,'f',2); + ui->genZone_start_label->setText(outstring); + bool startCheck = start ==0 ? true : false; + if (!startCheck){explanation="Check the start point. \n";} + + outstring = "end = " + QString::number(end,'f',2); + ui->genZone_end_label->setText(outstring); + bool endCheck = end>start ? true : false; + if (!endCheck){explanation+="Check the end point. \n";} + + outstring = "length = " + QString::number(length,'f',2) + " (normalized by L)"; + ui->genZone_length_label->setText(outstring); + + bool lengthCheck; + if ((length<0.5) | (length > 5)){ + lengthCheck = false; + explanation += "The length is incorrect \n"; + } else { + lengthCheck = true; + } + + if (!startCheck | !endCheck | !lengthCheck ) + { + ui->genZone_image->setPixmap(pixmapBad); + finalCheck = false; + } else { + ui->genZone_image->setPixmap(pixmapGood); + } + + ui->genZone_image->setScaledContents(true); + ui->explanation_genZone->setText(explanation); + + return finalCheck; +} + + +bool checkDialog::relaxationZone(double start, double end, double L, double domainLength){ + bool finalCheck = true; + double length = (end - start)/L; + + QPixmap pixmapGood(":/pictures/checkMark.png"); + QPixmap pixmapBad(":/pictures/bad.png"); + QString outstring; + QString explanation = ""; + + outstring = "start = " + QString::number(start,'f',2); + ui->endZone_start_label->setText(outstring); + bool startCheck = start < end ? true : false; + if (!startCheck){explanation="Check the start point. \n";} + + outstring = "end = " + QString::number(end,'f',2); + ui->endZone_end_label->setText(outstring); + bool endCheck = end==domainLength ? true : false; + if (!endCheck){explanation+="Check the end point. \n";} + + outstring = "length = " + QString::number(length,'f',2) + " (normalized by L)"; + ui->endZone_length_label->setText(outstring); + + bool lengthCheck; + + if ((length<0.9) | (length > 5)){ + lengthCheck = false; + explanation += "The length is incorrect \n"; + } else { + lengthCheck = true; + } + + if (!startCheck | !endCheck | !lengthCheck) + { + ui->endZone_image->setPixmap(pixmapBad); + finalCheck = false; + + } else { + ui->endZone_image->setPixmap(pixmapGood); + } + ui->endZone_image->setScaledContents(true); + ui->explanation_endZone->setText(explanation); + + return finalCheck; +} + +bool checkDialog::depth(const double h_geo, const double h_waveT){ + bool finalCheck; + QPixmap pixmapGood(":/pictures/checkMark.png"); + QPixmap pixmapWarning(":/pictures/warning.png"); + + ui->depth_geo->setText("Geometry: depth = " + QString::number(h_geo,'f',2) + " m"); + ui->depth_waveTheory->setText("Wave theory: depth = " + QString::number(h_waveT,'f',2) + " m"); + + fabs(h_geo-h_waveT)<0.00001 ? finalCheck = true : finalCheck = false; + + if (finalCheck){ + ui->depth_image->setPixmap(pixmapGood); + } else { + ui->depth_image->setPixmap(pixmapWarning); + } + ui->depth_image->setScaledContents(true); + + return finalCheck; +} diff --git a/GUI/checkdialog.h b/GUI/checkdialog.h new file mode 100644 index 0000000..c85e7fe --- /dev/null +++ b/GUI/checkdialog.h @@ -0,0 +1,35 @@ +#ifndef CHECKDIALOG_H +#define CHECKDIALOG_H + +#include +#include "math.h" +#include "versions.h" + +namespace Ui { +class checkDialog; +} + + + +class checkDialog : public QDialog +{ + Q_OBJECT + +public: + explicit checkDialog(QWidget *parent = 0); + ~checkDialog(); + bool spatialResolution(double resolution, bool irr); + bool temporalResolution(double resolution, bool); + bool generationZone(double, double, double ); + bool relaxationZone(double, double, double, double ); + bool depth(const double, const double); + +private: + Ui::checkDialog *ui; + +}; + + + + +#endif // CHECKDIALOG_H diff --git a/GUI/checkdialog.ui b/GUI/checkdialog.ui new file mode 100644 index 0000000..e5209e9 --- /dev/null +++ b/GUI/checkdialog.ui @@ -0,0 +1,647 @@ + + + checkDialog + + + + 0 + 0 + 759 + 603 + + + + Dialog + + + + + + + Vemana2000 + 75 + true + + + + 0 + + + + + 0 + 0 + 741 + 521 + + + + Summary + + + + + 0 + 0 + 741 + 101 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + 10 + 5 + 151 + 31 + + + + Spatial resolution + + + + + + 10 + 50 + 301 + 21 + + + + + Ubuntu + 10 + 50 + false + + + + Points per wave length: + + + + + + 10 + 20 + 711 + 16 + + + + Qt::Horizontal + + + + + + 630 + 40 + 51 + 51 + + + + + + + :/pictures/warning.png + + + + + + 300 + 40 + 261 + 41 + + + + + + + + + + + 0 + 100 + 741 + 101 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + 10 + 5 + 151 + 31 + + + + Temporal resolution + + + + + + 10 + 50 + 271 + 21 + + + + + Ubuntu + 10 + 50 + false + + + + Time steps per wave perid: + + + + + + 10 + 20 + 711 + 16 + + + + Qt::Horizontal + + + + + + 630 + 40 + 51 + 51 + + + + TextLabel + + + + + + 300 + 50 + 261 + 41 + + + + + + + + + + + 0 + 200 + 741 + 101 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + 10 + 5 + 151 + 31 + + + + Generation zone + + + + + + 10 + 30 + 241 + 21 + + + + + Ubuntu + 10 + 50 + false + + + + Start: + + + + + + 10 + 20 + 711 + 16 + + + + Qt::Horizontal + + + + + + 630 + 40 + 51 + 51 + + + + TextLabel + + + + + + 10 + 50 + 241 + 21 + + + + + Ubuntu + 10 + 50 + false + + + + End: + + + + + + 10 + 70 + 241 + 21 + + + + + Ubuntu + 10 + 50 + false + + + + Length: + + + + + + 300 + 30 + 261 + 61 + + + + + + + + + + + 0 + 300 + 741 + 101 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + 10 + 5 + 151 + 31 + + + + Relaxation zone + + + + + + 10 + 30 + 141 + 21 + + + + + Ubuntu + 10 + 50 + false + + + + Start: + + + + + + 10 + 20 + 711 + 16 + + + + Qt::Horizontal + + + + + + 630 + 40 + 51 + 51 + + + + TextLabel + + + + + + 10 + 50 + 141 + 21 + + + + + Ubuntu + 10 + 50 + false + + + + End: + + + + + + 10 + 70 + 201 + 21 + + + + + Ubuntu + 10 + 50 + false + + + + Length: + + + + + + 300 + 30 + 261 + 61 + + + + + + + + + + + 0 + 400 + 741 + 101 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + 10 + 5 + 151 + 31 + + + + Depth + + + + + + 10 + 40 + 181 + 21 + + + + + Ubuntu + 10 + 50 + false + + + + Geometry: + + + + + + 10 + 20 + 711 + 16 + + + + Qt::Horizontal + + + + + + 630 + 40 + 51 + 51 + + + + TextLabel + + + + + + 10 + 60 + 211 + 21 + + + + + Ubuntu + 10 + 50 + false + + + + Wave theory: + + + + + + 300 + 30 + 261 + 61 + + + + + + + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel + + + false + + + + + + + + + buttonBox + accepted() + checkDialog + accept() + + + 248 + 254 + + + 157 + 274 + + + + + buttonBox + rejected() + checkDialog + reject() + + + 316 + 260 + + + 286 + 274 + + + + + diff --git a/GUI/convert.cpp b/GUI/convert.cpp new file mode 100644 index 0000000..1d878d4 --- /dev/null +++ b/GUI/convert.cpp @@ -0,0 +1,616 @@ + #include "convert.h" +#include "math.h" +#include "qprogressbar.h" + +// Constructor +convert::convert() +{ + +} +// clear memory +void convert::clearMem(){ + + fileName = ' '; + xbeg = 0; + xend = 0; + xstride = 0; + ybeg = 0; + yend = 0; + ystride = 0; + tbeg = 0; + tend = 0; + tstride = 0; + dt = 0; + nz = 0; + nx = 0; + ny = 0; + nt = 0; + + std::vector emptyVector; + +// x.swap(emptyVector); +// y.swap(emptyVector); +// h.swap(emptyVector); +// hy.swap(emptyVector); +// hx.swap(emptyVector); +// sigma.swap(emptyVector); +// t.swap(emptyVector); +// F.swap(emptyVector); +// eta.swap(emptyVector); +// etax.swap(emptyVector); +// etay.swap(emptyVector); +// phi.swap(emptyVector); +// u.swap(emptyVector); +// v.swap(emptyVector); +// w.swap(emptyVector); +// uz.swap(emptyVector); +// vz.swap(emptyVector); + std::vector().swap(x); + std::vector().swap(y); + std::vector().swap(h); + std::vector().swap(hy); + std::vector().swap(hx); + std::vector().swap(sigma); + std::vector().swap(t); + std::vector().swap(F); + std::vector().swap(eta); + std::vector().swap(etax); + std::vector().swap(etay); + std::vector().swap(phi); + std::vector().swap(u); + std::vector().swap(v); + std::vector().swap(w); + std::vector().swap(uz); + std::vector().swap(vz); + +} +// Destructor +convert::~convert(){ +} + + +void convert::read(QString file, QProgressBar* Progressbar) +{ + fileName = file; + // Open fstream + fileStream.open(fileName.toLatin1().data(), std::ios::binary | std::ios::in); + + fileStream.read((char *)&junk,sizeof(junk)); + fileStream.read((char *)&xbeg,sizeof(xbeg)); + fileStream.read((char *)&xend,sizeof(xend)); + fileStream.read((char *)&xstride,sizeof(xstride)); + fileStream.read((char *)&ybeg,sizeof(ybeg)); + fileStream.read((char *)¥d,sizeof(yend)); + fileStream.read((char *)&ystride,sizeof(ystride)); + fileStream.read((char *)&tbeg,sizeof(tbeg)); + fileStream.read((char *)&tend,sizeof(tend)); + fileStream.read((char *)&tstride,sizeof(tstride)); + fileStream.read((char *)&dt,sizeof(dt)); + fileStream.read((char *)&nz,sizeof(nz)); + + fileStream.read((char *)&junk,2*sizeof(junk)); + + nx = floor((xend-xbeg)/xstride)+1; + ny = floor((yend-ybeg)/ystride)+1; + nt = floor((tend-tbeg)/tstride)+1; + + // tmp = new double[nx*ny*std::max(nz,5)]; + +// x = new double[nx*ny]; + x.resize(nx*ny); + y.resize(nx*ny); + h.resize(nx*ny); + hx.resize(nx*ny); + hy.resize(nx*ny); + sigma.resize(nz); + + for (int i=0;i1 ? nt/200 : 1; + + for (int i=0;isetValue((i+2.0)/nt*100); + + } + // read eta + fileStream.read((char *)tmp_xy,n_xy); + fileStream.read((char *)&junk,2*sizeof(junk)); + for (int j=0;j0 + MATFile *pmat; + mxArray *time_mat, *eta_mat, *x_mat,*y_mat,*u_mat,*v_mat,*w_mat,*uz_mat,*vz_mat,*sigma_mat,*h_mat; + + const char *file = "OCW3D.mat"; + //char str[BUFSIZE]; + int status; + + + + + // Open MAT file + printf("Creating file %s...\n\n", file); + pmat = matOpen(file, "w"); + if (pmat == NULL) { + printf("Error creating file %s\n", file); + printf("(Do you have write permission in this directory?)\n"); + return(EXIT_FAILURE); + } + + // TIME + time_mat = mxCreateDoubleMatrix(nt,1,mxREAL); + if (time_mat == NULL) { + printf("%s : Out of memory on line %d\n", __FILE__, __LINE__); + printf("Unable to create mxArray.\n"); + return(EXIT_FAILURE); + } + memcpy((void *)(mxGetPr(time_mat)),t,nt*sizeof(t)); + status = matPutVariable(pmat, "t", time_mat); + if (status != 0) { + printf("%s : Error using matPutVariable on line %d\n", __FILE__, __LINE__); + return(EXIT_FAILURE); + } + + //// eta + eta_mat = mxCreateDoubleMatrix(nx*ny,nt,mxREAL); + if (eta_mat== NULL) { + printf("%s : Out of memory on line %d\n", __FILE__, __LINE__); + printf("Unable to create mxArray.\n"); + return(EXIT_FAILURE); + } + memcpy((void *)(mxGetPr(eta_mat)), (void *)eta,nt*nx*ny*sizeof(eta)); + status = matPutVariable(pmat, "eta", eta_mat); + if (status != 0) { + printf("%s : Error using matPutVariable on line %d\n", __FILE__, __LINE__); + return(EXIT_FAILURE); + } + + // h + h_mat = mxCreateDoubleMatrix(nx*ny,1,mxREAL); + if (h_mat== NULL) { + printf("%s : Out of memory on line %d\n", __FILE__, __LINE__); + printf("Unable to create mxArray.\n"); + return(EXIT_FAILURE); + } + memcpy((void *)(mxGetPr(h_mat)), (void *)h,nx*ny*sizeof(h)); + status = matPutVariable(pmat, "h", h_mat); + if (status != 0) { + printf("%s : Error using matPutVariable on line %d\n", __FILE__, __LINE__); + return(EXIT_FAILURE); + } + + // sigma + sigma_mat = mxCreateDoubleMatrix(nz,1,mxREAL); + if (sigma_mat== NULL) { + printf("%s : Out of memory on line %d\n", __FILE__, __LINE__); + printf("Unable to create mxArray.\n"); + return(EXIT_FAILURE); + } + memcpy((void *)(mxGetPr(sigma_mat)), (void *)sigma,nz*sizeof(sigma)); + status = matPutVariable(pmat, "sigma", sigma_mat); + if (status != 0) { + printf("%s : Error using matPutVariable on line %d\n", __FILE__, __LINE__); + return(EXIT_FAILURE); + } + + // x + x_mat = mxCreateDoubleMatrix(nx,1,mxREAL); + if (x_mat== NULL) { + printf("%s : Out of memory on line %d\n", __FILE__, __LINE__); + printf("Unable to create mxArray.\n"); + return(EXIT_FAILURE); + } + memcpy((void *)(mxGetPr(x_mat)), (void *)x,nx*sizeof(x)); + status = matPutVariable(pmat, "x", x_mat); + if (status != 0) { + printf("%s : Error using matPutVariable on line %d\n", __FILE__, __LINE__); + return(EXIT_FAILURE); + } + + // y + y_mat = mxCreateDoubleMatrix(ny,1,mxREAL); + if (y_mat== NULL) { + printf("%s : Out of memory on line %d\n", __FILE__, __LINE__); + printf("Unable to create mxArray.\n"); + return(EXIT_FAILURE); + } + memcpy((void *)(mxGetPr(y_mat)), (void *)y,ny*sizeof(y)); + status = matPutVariable(pmat, "y", y_mat); + if (status != 0) { + printf("%s : Error using matPutVariable on line %d\n", __FILE__, __LINE__); + return(EXIT_FAILURE); + } + // u + u_mat = mxCreateDoubleMatrix(nx*ny*nz,nt,mxREAL); + if (u_mat== NULL) { + printf("%s : Out of memory on line %d\n", __FILE__, __LINE__); + printf("Unable to create mxArray.\n"); + return(EXIT_FAILURE); + } + double *pointer; pointer = mxGetPr(u_mat); + for (int index=0;index argout,const std::vector argin,const double dt,const int n) const +{ + + // First and last index (one-sided) + // + argout[0] = (argin[1]-argin[0])/dt; + argout[n-1] = (argin[n-1]-argin[n-2])/dt; + + for (int j=1;j argin,const double dt,const int n) const +{ + + // First and last index (one-sided) + // + argout[0] = (argin[1]-argin[0])/dt; + argout[n-1] = (argin[n-1]-argin[n-2])/dt; + + for (int j=1;j tmp_; + tmp_.resize(nt); + for (int i=0;i detadt; + detadt.resize(nt); + gradient(detadt,tmp_,dt,nt); + + // dz/dt + // + Double2d dzdt(boost::extents[nz][nt]); + for (int k=0;k QV_t,QV_F; + QV_t.resize(nt); + QV_F.resize(nt); + for (int i=1;iaddWidget(cPlot); + plotWindow->setLayout(plotWindow_layout); + + plotWindow->resize(800,400); + + plotWindow->show(); + cPlot->clearGraphs(); + + cPlot->addGraph(); + cPlot->graph()->setData(QV_t,QV_F); + cPlot->xAxis->setLabel("Time, t s"); + cPlot->yAxis->setLabel("Inline force, F N"); + QVector::iterator Xmin = std::min_element(QV_t.begin(), QV_t.end()); + QVector::iterator Xmax = std::max_element(QV_t.begin(), QV_t.end()); + QVector::iterator Ymin = std::min_element(QV_F.begin(), QV_F.end()); + QVector::iterator Ymax = std::max_element(QV_F.begin(), QV_F.end()); + cPlot->xAxis->setRange(*Xmin,*Xmax); + cPlot->yAxis->setRange(*Ymin,*Ymax); + cPlot->setInteractions(QCP::iRangeDrag | QCP::iRangeZoom | QCP::iSelectPlottables); + cPlot->replot(); + + +} + + +void convert::ascii(QString filepath,int location){ +QFileInfo fileInfo = QFileInfo(filepath); + + +std::ofstream oStream; + oStream.open(fileInfo.baseName().toLatin1() + ".eta"); + if (oStream.is_open()){ + if (location < 0){ + // write the header lines + oStream << "t x[t,1] x[t,2] x[t,3]: Second row is x-locations: Third row is water depths\n"; +// oStream << "x = "; + for (int j=0;j +#include +#include +#include +#include +#include +#include +#include "math.h" +#include +#include "boost/multi_array.hpp" +#include +#include "QTwidgets/qcustomplot.h" +#include + +#if MATLAB>0 + #include "mat.h" + #include "matrix.h" +#endif + +typedef boost::multi_array Double2d; +typedef boost::multi_array Double3d; + +class convert +{ +public: + convert(); + ~convert(); + void read(QString,QProgressBar *); + void netCfd(); + void force(int,double,double,double,double); + int matlab(); + void clearMem(); + void ascii(QString, int location); + void gradient(double*,const double*,const double,const int) const; + void gradient(double*,const std::vector,const double,const int) const; + void gradient(std::vector,const std::vector,const double,const int) const; + QString fileName; + int xbeg;int xend;int xstride; + int ybeg;int yend;int ystride; + int tbeg;int tend;int tstride;double dt; + int nz;int nx;int ny; int nt; + + std::vector x; + std::vector y; + std::vector h; + std::vector hy; + std::vector hx; + std::vector sigma; + std::vector t; + std::vector F; + std::vector eta; + std::vector etax; + std::vector etay; + std::vector phi; + std::vector u; + std::vector v; + std::vector w; + std::vector uz; + std::vector vz; + + +private: + + // private member functions + + + + std::size_t n_xy; + std::size_t n_xyz; + std::size_t n_z; + double* tmp_z; + double* tmp_xy; + double* tmp_xyz; + + int junk; +// double* tmp; + std::streampos pos; + std::ifstream fileStream; +}; + +#endif // CONVERT_H diff --git a/GUI/customgrid.cpp b/GUI/customgrid.cpp new file mode 100644 index 0000000..7cbb753 --- /dev/null +++ b/GUI/customgrid.cpp @@ -0,0 +1,248 @@ +#include "customgrid.h" +#include +#include +#include + +// Constructor +customGrid::customGrid() +{ +} + +// Destructor +customGrid::~customGrid(){ +} + +void customGrid::readTabel(QTableWidget *gridTable,int nx_,int nz_,bool sz_){ + + QDoubleSpinBox *sp; +int n = gridTable->columnCount() ; +xData.resize(n); +zData.resize(n); + + for (int i = 0;icellWidget(0,i); + xData[i] = sp->value(); + + sp = (QDoubleSpinBox*)gridTable->cellWidget(1,i); + zData[i] = sp->value(); + } + + nx = nx_; + nz = nz_; + L = xData.last(); + d = zData.first(); + sz = sz_; + +} + +void customGrid::showGrid(){ + computeZ(); + QCustomPlot *cPlot = new QCustomPlot; + QWidget *plotWindow = new QWidget; + QHBoxLayout *plotWindow_layout = new QHBoxLayout; + plotWindow_layout->addWidget(cPlot); + plotWindow->setLayout(plotWindow_layout); + + plotWindow->resize(800,400); + + + plotWindow->show(); + cPlot->clearGraphs(); + QVector zTmp;zTmp.resize(nx); + + for (int k=0;kaddGraph(); + cPlot->graph()->setData(x, zTmp); + cPlot->graph()->setLineStyle(QCPGraph::lsLine); + cPlot->graph()->setScatterStyle(QCPScatterStyle::ssCross); + + } + + cPlot->xAxis->setLabel("x [m]"); + cPlot->yAxis->setLabel("z [m]"); + cPlot->xAxis->setRange(0, xData.last()+10); + cPlot->rescaleAxes(); + + + cPlot->setInteractions(QCP::iRangeDrag | QCP::iRangeZoom | QCP::iSelectPlottables); + cPlot->replot(); + +} + +void customGrid::showGrid(double h, double L,int nx, int nz, bool sz){ + + + QCustomPlot *cPlot = new QCustomPlot; + QWidget *plotWindow = new QWidget; + QHBoxLayout *plotWindow_layout = new QHBoxLayout; + plotWindow_layout->addWidget(cPlot); + plotWindow->setLayout(plotWindow_layout); + + plotWindow->resize(800,400); + // plotWindow->setMinimumHeig/ht(600); + + + plotWindow->show(); + cPlot->clearGraphs(); + + + double dx = L/(nx-1); + std::vector z; + z.resize(nz); + double K; + if (sz){ + for (int k=0;k x(nx), y(nx); + + + for (int k=0;kaddGraph(); + cPlot->graph()->setData(x, y); + cPlot->graph()->setLineStyle(QCPGraph::lsLine); + cPlot->graph()->setScatterStyle(QCPScatterStyle::ssCross); + + } + + cPlot->xAxis->setLabel("x [m]"); + cPlot->yAxis->setLabel("z [m]"); + cPlot->xAxis->setRange(0, L+10); + cPlot->yAxis->setRange(1, -1*h-1); + + + cPlot->setInteractions(QCP::iRangeDrag | QCP::iRangeZoom | QCP::iSelectPlottables); + cPlot->replot(); + +} + +double customGrid::depth(double x){ + double h(999999999); +if (x<=xData.first()){ + h=zData.first(); +} else if (x>=xData.last()) { + h = zData.last(); +} else { + for (int i=0;ix)&(xData[i] x_,QVector h_){ + hx.clear();hx.resize(nx); + hxx.clear();hxx.resize(nx); + + for (int i=1;i +#include "versions.h" +#include +#include +#include +#include +#include + + +class customGrid +{ +public: + customGrid(); + ~customGrid(); + + void readTabel(QTableWidget *,int,int,bool); + void showGrid(double h, double L, int nx, int nz,bool); + void showGrid(); + void laplaceSmoothing(); + void writeGridToFile(QString); + void generateGrid(); + double L; + double d; + QVector h; + + + + // test +private: + // private member functions + + void computeGradients(QVector, QVector); + void computeZ(); + double depth(double); + + + // private data + + QVector xData; + QVector zData; + QVector x; + QVector z; + + QVector hx; + QVector hxx; + + int nx; + int nz; + bool sz; + + + +}; + +#endif // CUSTOMGRID_H diff --git a/GUI/main.cpp b/GUI/main.cpp new file mode 100644 index 0000000..7e438de --- /dev/null +++ b/GUI/main.cpp @@ -0,0 +1,14 @@ +#include "mainwindow.h" +#include "checkdialog.h" +#include +#include "fstream" + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); +// QCoreApplication a(argc, argv); + MainWindow w; + w.show(); + + return a.exec(); +} diff --git a/GUI/mainwindow.cpp b/GUI/mainwindow.cpp new file mode 100644 index 0000000..725e2ff --- /dev/null +++ b/GUI/mainwindow.cpp @@ -0,0 +1,204 @@ +#include "mainwindow.h" +#include "ui_mainwindow.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "convert.h" +extern "C" void MAIN_(); + +MainWindow::MainWindow(QWidget *parent) : + QMainWindow(parent), + ui(new Ui::MainWindow) +{ + ui->setupUi(this); + + checkDialog c; + c.show(); +// this->setStyleSheet("background-color:white"); + // shortcuts + ui->actionOpen->setShortcut(Qt::Key_O | Qt::CTRL); + ui->actionChange_directory->setShortcut(Qt::Key_D | Qt::CTRL); + ui->actionClose->setShortcut(Qt::Key_Q | Qt::CTRL); + ui->actionRun_F5->setShortcut(Qt::Key_F5); + ui->actionClear_case_F6->setShortcut(Qt::Key_F6); + ui->actionWrite_input_file_F4->setShortcut(Qt::Key_F4); + ui->actionCheck->setShortcut(Qt::Key_F7); + QSignalMapper *signalMapper = new QSignalMapper(this); + + for( int index=0; index < ui->output->count() ; ++index ){ + QShortcut *shortcut =new QShortcut( QKeySequence(QString("Ctrl+%1").arg( index +1 ) ), this ); + connect( shortcut, SIGNAL(activated() ), signalMapper, SLOT( map() ) ); + signalMapper->setMapping( shortcut, index ); + } + connect( signalMapper, SIGNAL(mapped( int )),ui->output, SLOT(setCurrentIndex( int )) ); + + + // Wave theory + ui->widget_SF->setVisible(false); + ui->LorP_ComboBox->setVisible(false); + ui->widget_waveFile->setVisible(false); + QRect SFwidget_geo = ui->widget_SF->geometry(); + ui->widget_JONSWAP->setGeometry(SFwidget_geo); + ui->widget_JONSWAP->setVisible(false); + ui->widget_waveFile->setGeometry(SFwidget_geo); + ui->widget_customSpectrum->setVisible(false); + ui->widget_customSpectrum->setGeometry(SFwidget_geo); + // About + ui->aboutText_OCW3dGUI->setVisible(false); + ui->aboutText_OCW3D_publications->setVisible(false); + ui->aboutText_OCW3DVersion->setVisible(false); + + // Post processing + ui->readProgressBar->setVisible(false); + ui->tableWidget->setColumnCount(6); + ui->tableWidget->setHorizontalHeaderLabels(QString("Xmin;Xmax;Ymin;Ymax;tmin;tmax").split(";")); + ui->tableWidget->setVisible(false); + ui->SelectOutput->setEnabled(false); + ui->convert->setEnabled(false); + ui->morison_widget->setVisible(false); + ui->eta_widget->setVisible(false); + QRect Morison_geo = ui->morison_widget->geometry(); + ui->eta_widget->setGeometry(Morison_geo); + ui->convertStatus->setVisible(false); + + // Custom grid + ui->geometry_table->setRowCount(2); + ui->geometry_table->setVerticalHeaderLabels(QString("x [m];d [m]").split(";")); + ui->customGridWidget->setVisible(false); + + // set labels + ui->alpha_label->setText(QString((QChar) 0x03B1)); + ui->beta_label->setText(QString((QChar) 0x03B2)); + ui->gamma_label->setText(QString((QChar) 0x03B3)); + + connect(ui->waveType,SIGNAL(currentIndexChanged(int)),this,SLOT(on_waveTheoryChanged(int))); + connect(ui->storeAscii_onOff,SIGNAL(clicked(bool)),this,SLOT(storeASCII(bool))); + connect(ui->LorP_ComboBox,SIGNAL(currentIndexChanged(int)),this,SLOT(on_waveTheoryChanged())); + connect(ui->nOutFiles,SIGNAL(valueChanged(int)),this,SLOT(on_outputWidgetChanged(int))); + connect(ui->OpenDirBrowser,SIGNAL(clicked()),this,SLOT(openWorkDirDialog())); + connect(ui->selectPPfile,SIGNAL(clicked()),this,SLOT(selectPPfile())); + connect(ui->run,SIGNAL(clicked()),this,SLOT(run())); + connect(ui->selectGnuplotFile,SIGNAL(clicked()),this,SLOT(openFileDialog())); + connect(ui->plot,SIGNAL(clicked()),this,SLOT(gnuplot())); + connect(ui->read_bottom,SIGNAL(clicked()),this,SLOT(readKinematicFile())); + connect(ui->about_combobox,SIGNAL(currentIndexChanged(int)),this,SLOT(about_changed(int))); + connect(ui->SelectOutput,SIGNAL(currentIndexChanged(int)),this,SLOT(convertTo_setup(int))); + connect(ui->convert,SIGNAL(clicked()),this,SLOT(convertTo())); + connect(ui->showGrid,SIGNAL(clicked()),this,SLOT(showGrid())); + connect(ui->geometryType,SIGNAL(currentIndexChanged(int)),this,SLOT(geometryType_changed(int))); + connect(ui->nGridPoints,SIGNAL(valueChanged(int)),this,SLOT(nGridPoints_changed())); + connect(ui->smooth,SIGNAL(clicked()),this,SLOT(smooth())); + connect(ui->generateGrid,SIGNAL(clicked()),this,SLOT(generateGrid())); + connect(ui->selectWaveFile,SIGNAL(clicked()),this,SLOT(selectWaveFile())); + connect(ui->selectGridFile,SIGNAL(clicked()),this,SLOT(selectGridFile())); + connect(ui->selectWaveFile_eta,SIGNAL(clicked()),this,SLOT(selectWaveFile_eta())); + + + // default + connect(ui->checkBox_constantWidget,SIGNAL(stateChanged(int)),this,SLOT(constantWidget())); + connect(ui->checkBox_breakingWidget,SIGNAL(stateChanged(int)),this,SLOT(breakingWidget())); + connect(ui->checkBox_FD,SIGNAL(stateChanged(int)),this,SLOT(FDWidget())); + connect(ui->checkBox_precon,SIGNAL(stateChanged(int)),this,SLOT(preconWidget())); + + // ations + connect(ui->actionClose,SIGNAL(triggered()),this,SLOT(close())); + connect(ui->actionOpen,SIGNAL(triggered()),this,SLOT(openFile())); + connect(ui->actionRun_F5,SIGNAL(triggered()),this,SLOT(run())); + connect(ui->actionClear_case_F6,SIGNAL(triggered()),this,SLOT(clearCase())); + connect(ui->actionWrite_input_file_F4,SIGNAL(triggered()),this,SLOT(writeInputFile())); + connect(ui->actionChange_directory,SIGNAL(triggered()),this,SLOT(openWorkDirDialog())); + connect(ui->actionCheck,SIGNAL(triggered()),this,SLOT(checkCase())); + ui->workingDir->setText(dir.currentPath()); + + // Special versions + +#if externalOutputClass + ui->SelectOutput->addItem("External output"); +#endif + +} + +MainWindow::~MainWindow() +{ + delete ui; +} + +void MainWindow::constantWidget(){ + + if (ui->checkBox_constantWidget->isChecked()){ + ui->constantWidget->setEnabled(false); + ui->Density->setValue(1025); + ui->gravity_input->setValue(9.82); + }else {ui->constantWidget->setEnabled(true);} +} +void MainWindow::breakingWidget(){ + + if (ui->checkBox_breakingWidget->isChecked()){ + ui->breakingWidget->setEnabled(false); + ui->breaking_beta0->setValue(0); + }else {ui->breakingWidget->setEnabled(true);} +} + +void MainWindow::FDWidget(){ + + if (ui->checkBox_FD->isChecked()){ + ui->FDwidget->setEnabled(false); + ui->alpha->setValue(3); + ui->beta->setValue(3); + ui->gamma->setValue(3); + }else {ui->FDwidget->setEnabled(true);} +} +void MainWindow::preconWidget(){ + + if (ui->checkBox_precon->isChecked()){ + ui->PreconWidget->setEnabled(false); + ui->a->setValue(1); + ui->b->setValue(1); + ui->c->setValue(1); + }else {ui->PreconWidget->setEnabled(true);} +} + +#include "MainWindow/gridFunctions.cpp" +#include "MainWindow/aboutFunctions.cpp" +#include "MainWindow/runAndWrite.cpp" +#include "MainWindow/postProcessing.cpp" +#include "MainWindow/waveGeneration.cpp" + + +double MainWindow::dispersion_L(double h,double L){ + + double k = 2*M_PI/L; + return sqrt(constants::g * k *tanh(k*h)); + +} + +double MainWindow::dispersion_T(double h, double T){ + double omega = 2*M_PI/T; + double x = h*omega/sqrt(constants::g*h); + + double kh = pow(x,2)*pow(1-exp(-pow(x,constants::beta)),-1/constants::beta); + return kh/h; +} + +double MainWindow::round(double x) +{ + return x >= 0.0f ? floorf(x + 0.5f) : ceilf(x - 0.5f); +} + + + + + diff --git a/GUI/mainwindow.h b/GUI/mainwindow.h new file mode 100644 index 0000000..28a4929 --- /dev/null +++ b/GUI/mainwindow.h @@ -0,0 +1,116 @@ +#ifndef MAINWINDOW_H +#define MAINWINDOW_H + +#include +#include "versions.h" +#include "math.h" +#include +#include "checkdialog.h" +#include "convert.h" +#include +#include +#include +#include +#include +#include + +#include "QTwidgets/qcustomplot.h" +#include "customgrid.h" + + +#if externalOutputClass +#include "MainWindow/externaloutput.h" +#endif + +namespace Ui { +class MainWindow; +} + +namespace constants +{ + const double g = 9.81; + const double beta = 2.4908; +} // namespace constants + +class MainWindow : public QMainWindow +{ + Q_OBJECT + +public: + explicit MainWindow(QWidget *parent = 0); + ~MainWindow(); + +private slots: + void writeInputFile(); + void on_waveTheoryChanged(int waveTheory); + void on_waveTheoryChanged(); + void on_outputWidgetChanged(int nFiles); + void storeASCII(bool checked); + void openFileDialog(); + void openWorkDirDialog(); + void selectPPfile(); + void run(); + void gnuplot(); + void readKinematicFile(); + void about_changed(int); + void convertTo_setup(int); + void convertTo(); + void showGrid(); + void smooth(); + void generateGrid(); + void geometryType_changed(int); + void nGridPoints_changed(); + void openFile(); + void clearCase(); + void selectWaveFile(); + void selectWaveFile_eta(); + void selectGridFile(); + + + // use constant + void constantWidget(); + void breakingWidget(); + void FDWidget(); + void preconWidget(); + // error messages + void error_grid_checkDomainLength(); + void error_matlab(); + void errorMsgParameterCheck(); + void errorMsgSFhZero(); + // check case + bool checkCase(); + + +private: + Ui::MainWindow *ui; + QFileDialog dialog; + double dispersion_T(double,double); + double dispersion_L(double,double); + double round(double); + + + // variables + double SF_H; + double SF_T; + double SF_h; + double SF_U; + double SF_L; + double SorE; + double Hs; + double Tp; + double h; + double gamma; + double khmax; + int SF_n; + int LorT; + int seed; + int i_spec; + QString irrFilename; + QDir dir; + convert convertFiles; + customGrid grid; + double tStart; + +}; + +#endif // MAINWINDOW_H diff --git a/GUI/mainwindow.ui b/GUI/mainwindow.ui new file mode 100644 index 0000000..d8a442c --- /dev/null +++ b/GUI/mainwindow.ui @@ -0,0 +1,4018 @@ + + + MainWindow + + + + 0 + 0 + 783 + 509 + + + + + + + + + 0 + 0 + 0 + + + + + + + 234 + 234 + 234 + + + + + + + 255 + 255 + 255 + + + + + + + 244 + 244 + 244 + + + + + + + 117 + 117 + 117 + + + + + + + 156 + 156 + 156 + + + + + + + 0 + 0 + 0 + + + + + + + 255 + 255 + 255 + + + + + + + 0 + 0 + 0 + + + + + + + 255 + 255 + 255 + + + + + + + 234 + 234 + 234 + + + + + + + 0 + 0 + 0 + + + + + + + 244 + 244 + 244 + + + + + + + 255 + 255 + 220 + + + + + + + 0 + 0 + 0 + + + + + + + + + 0 + 0 + 0 + + + + + + + 234 + 234 + 234 + + + + + + + 255 + 255 + 255 + + + + + + + 244 + 244 + 244 + + + + + + + 117 + 117 + 117 + + + + + + + 156 + 156 + 156 + + + + + + + 0 + 0 + 0 + + + + + + + 255 + 255 + 255 + + + + + + + 0 + 0 + 0 + + + + + + + 255 + 255 + 255 + + + + + + + 234 + 234 + 234 + + + + + + + 0 + 0 + 0 + + + + + + + 244 + 244 + 244 + + + + + + + 255 + 255 + 220 + + + + + + + 0 + 0 + 0 + + + + + + + + + 117 + 117 + 117 + + + + + + + 234 + 234 + 234 + + + + + + + 255 + 255 + 255 + + + + + + + 244 + 244 + 244 + + + + + + + 117 + 117 + 117 + + + + + + + 156 + 156 + 156 + + + + + + + 117 + 117 + 117 + + + + + + + 255 + 255 + 255 + + + + + + + 117 + 117 + 117 + + + + + + + 234 + 234 + 234 + + + + + + + 234 + 234 + 234 + + + + + + + 0 + 0 + 0 + + + + + + + 234 + 234 + 234 + + + + + + + 255 + 255 + 220 + + + + + + + 0 + 0 + 0 + + + + + + + + OCW3D - A GUI for OceanWave3D + + + + ../pictures/DELTARES.jpg../pictures/DELTARES.jpg + + + + + 0 + 0 + + + + + + + true + + + Run + + + + + + + Close + + + + + + + Qt::Horizontal + + + QSizePolicy::Fixed + + + + 500 + 20 + + + + + + + + + 0 + 0 + + + + + 10 + + + + + + + Qt::LeftToRight + + + QTabWidget::North + + + QTabWidget::Rounded + + + 0 + + + + General + + + + + 10 + 10 + 201 + 31 + + + + + Vemana2000 + 9 + 75 + true + false + + + + Header + + + + + + 430 + 250 + 20 + 151 + + + + + 12 + + + + Qt::Vertical + + + + + + 430 + 140 + 20 + 101 + + + + + 12 + + + + Qt::Vertical + + + + + + 160 + 140 + 20 + 101 + + + + + 12 + + + + Qt::Vertical + + + + + + 10 + 150 + 151 + 31 + + + + + Vemana2000 + 9 + 75 + true + false + + + + Mode + + + + + + 0 + 240 + 781 + 16 + + + + + 12 + + + + Qt::Horizontal + + + + + + 10 + 70 + 171 + 31 + + + + + Vemana2000 + 9 + 75 + true + false + false + + + + Working directory + + + + + + 610 + 100 + 91 + 24 + + + + Open + + + + + false + + + + 10 + 100 + 581 + 23 + + + + + + + + + true + + + + 10 + 40 + 691 + 23 + + + + + + + Header + + + + + + + + + 10 + 190 + 121 + 23 + + + + 0 + + + + Non-linear + + + + + Linear + + + + + + + 160 + 250 + 20 + 151 + + + + Qt::Vertical + + + + + + 10 + 130 + 781 + 16 + + + + + 12 + + + + Qt::Horizontal + + + + + false + + + + 460 + 150 + 281 + 101 + + + + + + 120 + 50 + 81 + 24 + + + + 5000.000000000000000 + + + 0.100000000000000 + + + 1025.000000000000000 + + + + + + 0 + 50 + 66 + 24 + + + + 0.100000000000000 + + + 9.810000000000000 + + + + + + 210 + 50 + 51 + 16 + + + + [kg/m^3] + + + + + + 120 + 30 + 51 + 16 + + + + Density + + + + + + 70 + 50 + 51 + 16 + + + + [m/s^2] + + + + + + 0 + 0 + 151 + 31 + + + + + Vemana2000 + 9 + 75 + true + false + + + + Constants + + + + + + 410 + 50 + 120 + 80 + + + + + + + 0 + 30 + 51 + 16 + + + + Gravity + + + + + + false + + + + 10 + 270 + 141 + 81 + + + + + + 0 + 0 + 151 + 31 + + + + + Vemana2000 + 9 + 75 + true + false + + + + Breaking filter + + + + + + 0 + 30 + 151 + 16 + + + + Fraction of gravity + + + + + + 0 + 50 + 66 + 24 + + + + 0.100000000000000 + + + 0.000000000000000 + + + + + + true + + + + 80 + 250 + 111 + 21 + + + + default + + + true + + + + + false + + + + 460 + 270 + 201 + 91 + + + + + + 140 + 30 + 75 + 16 + + + + + 75 + 0 + + + + gamma + + + + + + 0 + 30 + 75 + 16 + + + + + 75 + 0 + + + + + + + alpha + + + + + + -1 + 50 + 51 + 24 + + + + + 50 + 0 + + + + 10 + + + 3 + + + + + + 70 + 30 + 75 + 16 + + + + + 75 + 0 + + + + beta + + + + + + 139 + 50 + 50 + 24 + + + + + 50 + 0 + + + + 10 + + + 3 + + + + + + 0 + 0 + 151 + 31 + + + + + Vemana2000 + 9 + 75 + true + false + + + + Finite difference + + + + + + 70 + 50 + 51 + 24 + + + + 10 + + + 3 + + + + + + true + + + + 620 + 250 + 81 + 21 + + + + default + + + true + + + + + false + + + + 200 + 270 + 221 + 101 + + + + + + 10 + 30 + 57 + 15 + + + + a + + + + + + 10 + 50 + 51 + 24 + + + + 10 + + + 1 + + + + + + 150 + 50 + 51 + 24 + + + + 10 + + + 1 + + + + + + 10 + 5 + 151 + 21 + + + + + Vemana2000 + 9 + 75 + true + false + + + + Preconditioner + + + + + + 150 + 30 + 57 + 15 + + + + c + + + + + + 80 + 50 + 51 + 24 + + + + 10 + + + 1 + + + + + + 80 + 30 + 57 + 15 + + + + b + + + + + + true + + + + 340 + 250 + 81 + 21 + + + + default + + + true + + + + + + 190 + 150 + 231 + 80 + + + + + + 113 + 50 + 66 + 24 + + + + 0.200000000000000 + + + + + + 115 + 30 + 101 + 16 + + + + Time step [s] + + + + + + 10 + 30 + 71 + 16 + + + + Duration [s] + + + + + + 10 + 0 + 201 + 31 + + + + + Vemana2000 + 9 + 75 + true + false + + + + Time + + + + + + 10 + 50 + 81 + 24 + + + + 1 + + + 100000.000000000000000 + + + 0.100000000000000 + + + 10800.000000000000000 + + + + + + true + + + + 620 + 140 + 111 + 21 + + + + default + + + true + + + line_35 + line_36 + line_41 + line_66 + OpenDirBrowser + workingDir + header_input + nonlin_onOff + label_79 + label_92 + label_165 + line_6 + line_67 + constantWidget + breakingWidget + checkBox_breakingWidget + FDwidget + checkBox_FD + PreconWidget + checkBox_precon + widget + checkBox_constantWidget + + + + Geometry + + + + + 10 + 10 + 201 + 31 + + + + + Vemana2000 + 9 + 75 + true + false + + + + Geometry + + + + + + 100 + 10 + 121 + 24 + + + + + Standard + + + + + Custom (2D) + + + + + + + 10 + 40 + 791 + 131 + + + + + + 390 + 70 + 60 + 24 + + + + 10000 + + + 1 + + + + + + 0 + 10 + 81 + 31 + + + + + Vemana2000 + 9 + 75 + true + false + + + + Domain + + + + + + 310 + 10 + 111 + 31 + + + + + Vemana2000 + 9 + 75 + true + false + + + + Resolution + + + + + + 470 + 70 + 60 + 24 + + + + 10000 + + + 9 + + + + + + 470 + 40 + 57 + 15 + + + + nz + + + + + + 310 + 40 + 57 + 15 + + + + nx + + + + + + 100 + 40 + 75 + 16 + + + + + 75 + 0 + + + + Width [m] + + + + + + 0 + 70 + 80 + 24 + + + + 10000.000000000000000 + + + 0.100000000000000 + + + 1000.000000000000000 + + + + + + 560 + 10 + 20 + 91 + + + + Qt::Vertical + + + + + + 590 + 50 + 91 + 21 + + + + vertical + + + true + + + + + + 200 + 70 + 80 + 24 + + + + 10000.000000000000000 + + + 0.100000000000000 + + + 30.000000000000000 + + + + + + 200 + 40 + 75 + 16 + + + + + 75 + 0 + + + + Depth [m] + + + + + + 100 + 70 + 80 + 24 + + + + 10000.000000000000000 + + + 0.100000000000000 + + + 1.000000000000000 + + + + + + 310 + 70 + 60 + 24 + + + + 10000 + + + 500 + + + + + + 590 + 10 + 111 + 31 + + + + + Vemana2000 + 9 + 75 + true + false + + + + Stretching + + + + + + 0 + 40 + 81 + 16 + + + + + 75 + 0 + + + + + + + Length [m] + + + + + + -20 + 100 + 781 + 16 + + + + Qt::Horizontal + + + + + + 390 + 40 + 57 + 15 + + + + ny + + + + + + 290 + 10 + 20 + 91 + + + + Qt::Vertical + + + + + + -10 + 0 + 781 + 16 + + + + Qt::Horizontal + + + line_2 + ny + label_10 + nz + label_8 + label_6 + label_3 + length + line_4 + sz + depth + label_5 + width + nx + label_9 + label_2 + label_7 + line + line_3 + label_4 + + + + + 10 + 140 + 751 + 221 + + + + + false + + + + 530 + 190 + 91 + 24 + + + + Smooth + + + + + + 0 + 90 + 731 + 91 + + + + + + + 420 + 190 + 91 + 24 + + + + Generate grid + + + + + false + + + + 640 + 190 + 91 + 24 + + + + Show grid + + + + + true + + + + 380 + 30 + 121 + 24 + + + + Select grid file + + + + + + 0 + 70 + 81 + 23 + + + + 1 + + + 50 + + + 1 + + + + + true + + + + 70 + 30 + 291 + 23 + + + + customGrid.bot + + + + + + 0 + 30 + 71 + 16 + + + + + true + + + + File Name: + + + + + + + Wave Generation + + + + + 0 + 270 + 781 + 16 + + + + Qt::Horizontal + + + + + + 10 + 20 + 131 + 31 + + + + + Vemana2000 + 9 + 75 + true + false + + + + Wave type + + + + + + 10 + 130 + 781 + 16 + + + + Qt::Horizontal + + + + + + 530 + 190 + 66 + 24 + + + + 100000.000000000000000 + + + + + + 440 + 170 + 41 + 16 + + + + x [m] + + + + + + 425 + 190 + 81 + 24 + + + + 100000.000000000000000 + + + + + + 380 + 220 + 31 + 16 + + + + End + + + + + + 380 + 140 + 181 + 31 + + + + + Vemana2000 + 9 + 75 + true + false + + + + Wave absorption zone + + + + + + 425 + 220 + 81 + 24 + + + + 100000.000000000000000 + + + + + + 530 + 220 + 66 + 24 + + + + 100000.000000000000000 + + + + + + 530 + 170 + 41 + 16 + + + + y[m] + + + + + + 380 + 190 + 41 + 16 + + + + Begin + + + + + + 340 + 150 + 20 + 121 + + + + Qt::Vertical + + + + + + 90 + 20 + 141 + 23 + + + + + Wave theory + + + + + Stream function + + + + + JONSWAP + + + + + PM + + + + + Wave file + + + + + Wave maker + + + + + + true + + + + 0 + 60 + 771 + 80 + + + + + + 120 + 10 + 81 + 16 + + + + Wave period: + + + + + + 20 + 30 + 66 + 24 + + + + 3 + + + + + + 220 + 10 + 81 + 16 + + + + Water depth + + + + + + 220 + 30 + 66 + 24 + + + + 9999.000000000000000 + + + + + + 120 + 30 + 66 + 24 + + + + 1000.000000000000000 + + + 0.100000000000000 + + + + + + 20 + 6 + 91 + 20 + + + + Wave height + + + + + + 320 + 30 + 66 + 24 + + + + + + + 320 + 10 + 101 + 16 + + + + Current velocity + + + + + + 90 + 30 + 21 + 16 + + + + m + + + + + + 190 + 30 + 21 + 16 + + + + s + + + + + + 290 + 30 + 21 + 16 + + + + m + + + + + + 390 + 30 + 21 + 16 + + + + m/s + + + + + + 430 + 10 + 81 + 16 + + + + Current type + + + + + + 430 + 30 + 91 + 23 + + + + + Euler + + + + + Stokes + + + + + + + 540 + 10 + 81 + 16 + + + + Order + + + + + + 540 + 30 + 47 + 24 + + + + 1 + + + 40 + + + 32 + + + SF_TLabel + SF_T + SF_h + label_140 + SF_H + label_142 + SF_U + label_143 + label_144 + SF_TL_unit + label_146 + label_147 + label_148 + stokesOrEuler + label_149 + SF_n + + + + + 290 + 20 + 111 + 23 + + + + + Wave length + + + + + wave period + + + + + + + 610 + 190 + 141 + 23 + + + + + Pressure damping + + + + + Relaxation zone + + + + + + + 620 + 170 + 41 + 16 + + + + Type + + + + + + 0 + 140 + 371 + 111 + + + + + + 50 + 30 + 41 + 16 + + + + x [m] + + + + + + 140 + 50 + 66 + 24 + + + + 100000.000000000000000 + + + + + + 10 + 80 + 31 + 16 + + + + End + + + + + + 50 + 80 + 66 + 24 + + + + 100000.000000000000000 + + + + + + 230 + 50 + 66 + 24 + + + + 5.000000000000000 + + + + + + 10 + 0 + 191 + 31 + + + + + Vemana2000 + 9 + 75 + true + false + + + + Wave generation zone + + + + + + 140 + 30 + 41 + 16 + + + + y [m] + + + + + + 230 + 30 + 91 + 16 + + + + Ramp time [s] + + + + + + 10 + 50 + 41 + 16 + + + + Begin + + + + + + 140 + 80 + 66 + 24 + + + + 100000.000000000000000 + + + + + + 50 + 50 + 66 + 24 + + + + 100000.000000000000000 + + + label_126 + yGenStart + label_130 + xGenEnd + rampTime + label_127 + label_163 + label_129 + yGenEnd + label_55 + xGenStart + + + + true + + + + 20 + 250 + 681 + 80 + + + + + + 20 + 20 + 121 + 20 + + + + Wave signal + + + + + + 100 + 20 + 261 + 23 + + + + + + + 370 + 20 + 121 + 24 + + + + Select wave file + + + + + + 610 + 20 + 66 + 24 + + + + 10000.000000000000000 + + + 0.000000000000000 + + + + + + 630 + 0 + 31 + 16 + + + + y0 + + + + + + 520 + 20 + 66 + 24 + + + + 10000.000000000000000 + + + 0.000000000000000 + + + + + + 540 + 0 + 31 + 16 + + + + x0 + + + + + + true + + + + 30 + 90 + 711 + 80 + + + + + + 20 + 20 + 121 + 20 + + + + Wave paddle signal + + + + + + 150 + 20 + 261 + 23 + + + + + + + 420 + 20 + 121 + 24 + + + + Select wave file + + + + + + 610 + 20 + 66 + 24 + + + + 5.000000000000000 + + + + + + 610 + 0 + 91 + 16 + + + + Ramp time [s] + + + + + + true + + + + 0 + 320 + 681 + 80 + + + + + + 120 + 10 + 81 + 16 + + + + Tp + + + + + + 20 + 30 + 66 + 24 + + + + + + + 220 + 10 + 81 + 16 + + + + Water depth + + + + + + 220 + 30 + 66 + 24 + + + + + + + 120 + 30 + 66 + 24 + + + + + + + 20 + 10 + 81 + 16 + + + + Hs + + + + + + 90 + 30 + 21 + 16 + + + + m + + + + + + 190 + 30 + 21 + 16 + + + + s + + + + + + 290 + 30 + 21 + 16 + + + + m + + + + + + 320 + 30 + 66 + 24 + + + + 5.000000000000000 + + + + + + 320 + 10 + 81 + 16 + + + + max(kh) + + + + + + 410 + 10 + 81 + 16 + + + + Seed + + + + + + 410 + 30 + 47 + 24 + + + + 1 + + + 5 + + + + label_52 + widget_SF + line_25 + line_27 + yAbsorbStart + label_132 + xAbsorbStart + label_133 + xAbsorbEnd + yAbsorbEnd + label_135 + label_136 + line_26 + waveType + LorP_ComboBox + pressureDampingOrRelax + label_164 + waveGeneration_widget + label_134 + widget_customSpectrum + widget_waveFile + widget_JONSWAP + + + + Output + + + + + 160 + 20 + 47 + 24 + + + + 9 + + + + + + 10 + 20 + 151 + 16 + + + + Number of output files + + + + + + 7 + 50 + 761 + 20 + + + + Qt::Horizontal + + + + + + 45 + 100 + 631 + 241 + + + + + + + 240 + 20 + 121 + 21 + + + + Store ASCII files + + + true + + + + + + 580 + 20 + 61 + 24 + + + + 1000 + + + 20 + + + + + + 380 + 20 + 211 + 21 + + + + ASCII files are stored for every: + + + + + + 650 + 20 + 211 + 21 + + + + time steps. + + + + + + Post-processing + + + + + 10 + 140 + 91 + 24 + + + + Select File + + + + + + 110 + 140 + 251 + 23 + + + + + + + 0 + 80 + 741 + 16 + + + + Qt::Horizontal + + + + + true + + + + 140 + 190 + 91 + 24 + + + + Convert + + + + + + 10 + 40 + 91 + 24 + + + + Select File + + + + + + 110 + 40 + 251 + 23 + + + + + + + 13 + 10 + 81 + 31 + + + + + Vemana2000 + 9 + 75 + true + false + + + + GNUPLOT + + + + + + 10 + 100 + 81 + 31 + + + + + Vemana2000 + 9 + 75 + true + false + + + + Convert + + + + + + 380 + 40 + 91 + 24 + + + + Plot + + + + + + 380 + 140 + 91 + 24 + + + + Read + + + + + + 490 + 140 + 141 + 23 + + + + 24 + + + true + + + + + + 10 + 190 + 111 + 24 + + + + + Select output + + + + + Force + + + + + matlab + + + + + eta + + + + + + true + + + + 20 + 230 + 351 + 81 + + + + + + 10 + 10 + 41 + 21 + + + + x0 [m] + + + + + + 100 + 10 + 41 + 21 + + + + D [m] + + + + + + 90 + 40 + 62 + 23 + + + + 0.100000000000000 + + + 5.000000000000000 + + + + + + 190 + 10 + 41 + 21 + + + + Cd + + + + + + 180 + 40 + 62 + 23 + + + + 0.100000000000000 + + + 0.950000000000000 + + + + + + 280 + 10 + 41 + 21 + + + + Cm + + + + + + 270 + 40 + 62 + 23 + + + + 2.000000000000000 + + + + + + 0 + 40 + 78 + 24 + + + + 10000 + + + true + + + + + + + 260 + 190 + 161 + 21 + + + + Converting... + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + true + + + + 400 + 220 + 351 + 81 + + + + + + 10 + 10 + 41 + 21 + + + + x0 [m] + + + + + + 0 + 40 + 121 + 24 + + + + 10000 + + + true + + + + + + + Help / support + + + + + 20 + 10 + 731 + 351 + + + + Qt::LeftToRight + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Ubuntu'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif'; font-size:9pt; font-weight:600;">Governing equations / theory:</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif'; font-size:9pt;">The theory behind and the performance of OceanWave3D is documented in numerous journal articles, see the &quot;About&quot; section.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif'; font-size:9pt; font-weight:600;">Input files:</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif'; font-size:9pt;">Input files showing all functionalities of the code are distributed with the source code of OceanWave3D; the relative path is: ./trunk/examples/inputfiles/</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif'; font-size:9pt; font-weight:600;">Post-processing:</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif'; font-size:9pt;">Matlab/octave post-processing scripts are delivered with the source code; the relative path is: ./trunk/utils/matlab/ </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif'; font-size:9pt; font-weight:600;">Other questions:</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif'; font-size:9pt;">For questions related to academic use of OceanWave3D contact Allan Peter Engsig-Karup (</span><a href="mailto:apek@dtu.dk"><span style=" font-family:'Sans Serif'; font-size:9pt; text-decoration: underline; color:#0000ff;">apek@dtu.dk</span></a><span style=" font-family:'Sans Serif'; font-size:9pt;">). For all other questions please contact Bo Terp Paulsen, (</span><a href="mailto:bo.paulsen@deltares.nl"><span style=" font-family:'Sans Serif'; font-size:9pt; text-decoration: underline; color:#0000ff;">bo.paulsen@deltares.nl</span></a><span style=" font-family:'Sans Serif'; font-size:9pt;">)</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"><br /></p></body></html> + + + true + + + + + + Qt::RightToLeft + + + About + + + + + 580 + 20 + 151 + 24 + + + + Qt::LeftToRight + + + + OceanWave3D + + + + + GUI + + + + + Publications + + + + + Versions + + + + + + + 10 + 10 + 531 + 361 + + + + Qt::LeftToRight + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Ubuntu'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">OceanWave3D - a costal engineering tool for simulation of nonlinear free</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">surface waves. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Copyright (C) 2009 Allan P. Engsig-Karup, DTU Compute, </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Technical University of Denmark</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">This OceanWave3D program comes with ABSOLUTELY NO WARRANTY. This is free</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">software and you are welcome to redistribute it under the conditions</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">of the GNU General Public License version 3.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Permission is hereby granted, free of charge, to any person obtaining a copy</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">of this software and associated documentation files (the &quot;Software&quot;), to deal</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">in the Software without restriction, including without limitation the rights</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">to use, copy, modify, merge, publish, distribute, sublicense, and/or sell</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">copies of the Software, and to permit persons to whom the Software is</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">furnished to do so, subject to the following conditions:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">The above copyright notice and this permission notice shall be included in</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">all copies or substantial portions of the Software.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">THE SOFTWARE.</span></p></body></html> + + + + + + 80 + 20 + 411 + 111 + + + + Qt::LeftToRight + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Ubuntu'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">The Graphical User Interface (GUI) for OceanWave3D (C) is developed and maintained by Bo Terp Paulsen, </span><a href="mailto: bo.paulsen@deltares.nl"><span style=" text-decoration: underline; color:#0057ae;">bo.paulsen@deltares.nl</span></a><span style=" font-size:9pt;">. The software has inherited the GNU General Public Licence version 3 of OceanWave3D, and is hence free to use and redistribute. </span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</span></p></body></html> + + + + + + 30 + 100 + 441 + 461 + + + + Qt::LeftToRight + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Ubuntu'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">Please acknowledge this software referred to as &quot;OceanWave3D&quot; in your work and any of the publications below by using the following references:</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> @ARTICLE{EngsigKarupEtAl08,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> AUTHOR = &quot;Engsig-Karup, A.P. and Bingham, H.B. and Lindberg, O.&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> TITLE = &quot;An efficient flexible-order model for {3D} nonlinear water waves&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> YEAR = &quot;2009&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> JOURNAL = &quot;Journal of Computational Physics&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> VOLUME = &quot;228&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> PAGES = &quot;2100-2118&quot;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> }</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">and this chapter with general details on the properties of the model and its parallel implementation (note that this Fortran version is not yet parallel)</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> @inbook{EngsigKarupEtAl2013,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> title = &quot;Fast hydrodynamics on heterogenous many-core hardware&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> publisher = &quot;Taylor &amp; Francis&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> author = &quot;Engsig-Karup, {Allan Peter} and Glimberg, {Stefan Lemvig} and Nielsen, {Allan S.} and Ole Lindberg&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> note = &quot;2013; 11&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> year = &quot;2013&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> editor = &quot;Rapha\'el Couturier&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> isbn = &quot;978-1-4665-7162-4&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> pages = &quot;251--294&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> booktitle = &quot;Designing Scientific Applications on GPUs&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> }</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">OceanWave3D is distributed under the GNU General Public License (See file LICENSE) and a base code was developed at DTU Mechanics 2006-2008 by Allan P. Engsig-Karup and entirely rewritten at DTU Informatics 2008-2011 (current version) by Allan P. Engsig-Karup with contributions as mentioned below section 4 of this file.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">A GPU-accelerated massively parallel version of OceanWave3D that can execute on heterogenous archictures using the CUDA programming model has been developed in collaboration between Morten Gorm Madsen (first proof-of-concept version), Stefan Lemvig Glimberg (advanced version within GPULAB library) and Allan P. Engsig-Karup. In this version of the code the multigrid preconditioned defect correction method (PDC) appeared for the first time and it accessbile in this fortran version of the code as well. This work can be cited by the following reference</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> @ARTICLE{EngsigKarupEtAl2011,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> AUTHOR = &quot;Engsig-Karup, A. P. and Madsen, M. G. and Glimberg, S. L.&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> TITLE = &quot;A massively parallel {GPU}-accelerated model for analysis of fully nonlinear free surface waves&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> JOURNAL = &quot;International Journal of Numerical Methods in Fluids&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> YEAR = &quot;2011&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> DOI = &quot;10.1002/fld.2675&quot;</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> }</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">The properties of the PDC method is analyzed in great detail in</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> @ARTICLE{EngsigKarupEtAl2013,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> AUTHOR = &quot;Engsig-Karup, A.P.&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> TITLE = &quot;Analysis of Efficient Preconditioned Defect Correction Methods for Nonlinear Water Waves&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> JOURNAL = &quot;International Journal of Numerical Methods in Fluids&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> YEAR = &quot;2013&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> }</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">The splitting technique that can be used for efficient wave-structure interactions are described here</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> @article{DucrozetEtAl2013,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> title = &quot;A non-linear wave decomposition model for efficient wave–structure interaction. Part A: Formulation, validations and analysis&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> publisher = &quot;Academic Press&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> author = &quot;Guillaume Ducrozet and Engsig-Karup, {Allan Peter} and Bingham, {Harry B.} and Pierre Ferrant&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> year = &quot;2014&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> volume = &quot;257&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> pages = &quot;863--883&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> journal = &quot;Journal of Computational Physics&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> issn = &quot;0021-9991&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> }</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;">A comparison between OceanWave3D and HOS is described here</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> @article{DucrozetEtAl2012,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> title = &quot;A comparative study of two fast nonlinear free-surface water wave models&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> publisher = &quot;John/Wiley &amp; Sons Ltd.&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> author = &quot;Guillaume Ducrozet and Bingham, {Harry B.} and Engsig-Karup, {Allan Peter} and Felicien Bonnefoy and Pierre Ferrant&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> year = &quot;2012&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> volume = &quot;69&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> pages = &quot;1818--1834&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> journal = &quot;International Journal for Numerical Methods in Fluids&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> issn = &quot;0271-2091&quot;,</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:9pt;"> }</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;"><br /></p></body></html> + + + + + + 550 + 230 + 191 + 111 + + + + + + + :/pictures/deltares.png + + + true + + + + + + 570 + 90 + 161 + 101 + + + + + + + :/pictures/dtu.png + + + true + + + + + true + + + + 0 + 220 + 521 + 151 + + + + Qt::LeftToRight + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Ubuntu'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif';">This is version v1.0.0 of OCW3D - a GUI for OceanWave3D.</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif';"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif';">This version has been tested with r.123 of OceanWave3D (branch botp).</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif';"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif';">/Bo Terp Paulsen</span></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif';"><br /></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif';">:wq</span></p></body></html> + + + + + + + + + + + + 0 + 0 + 783 + 21 + + + + + File + + + + + + + + + Run + + + + + + + + + + + + Open + + + + + Close + + + + + Run + + + + + Clear case + + + + + Write input file + + + + + Change directory + + + + + Check + + + + + + header_input + OpenDirBrowser + nonlin_onOff + geometryType + length + width + depth + nx + ny + nz + sz + selectGridFile + nGridPoints + generateGrid + smooth + showGrid + waveType + LorP_ComboBox + SF_H + SF_T + SF_h + SF_U + stokesOrEuler + SF_n + xGenStart + xGenEnd + yGenStart + yGenEnd + rampTime + xAbsorbStart + xAbsorbEnd + yAbsorbStart + yAbsorbEnd + pressureDampingOrRelax + Hs + Tp + h + maxkh + seed + selectedWaveFile + selectWaveFile + rampTime_waveFile + nOutFiles + storeAscii_onOff + nASCII + run + pushButton + selectGnuplotFile + plot + selectPPfile + read_bottom + SelectOutput + convert + morisonX0 + morison_D + morison_cd + morison_cm + about_combobox + workingDir + geometry_table + tableWidget + selectedGridFile + gnuplotFile + selectedPPfiles + etaX0 + output + aboutText_OCW3D + aboutText_OCW3dGUI + aboutText_OCW3D_publications + aboutText_OCW3DVersion + aboutText_OCW3D_publications_2 + + + + + + + pushButton + clicked() + MainWindow + close() + + + 740 + 463 + + + 467 + 479 + + + + + diff --git a/GUI/pictures/bad.png b/GUI/pictures/bad.png new file mode 100644 index 0000000000000000000000000000000000000000..1531c99e90606a156d772132915ee70e8178dd2d GIT binary patch literal 19997 zcmZ5|2{_c<7w{~W>`ltPM3yF7wg|&pc0!FT$ue0(S(9aKqlH4k*hOVaWEaUYBFY-Z znwXcUrYRHIx9`q)|Ihb5U(eg~KK<^!=brtZd+s^&;G(%92de-p1OnkOHqt{wATV3n z-$P8`ORIb4H25Dw;CbWAhrplkL#}b)-z_cc9BPKR0>b0FRvCS^{8_2yN13&s#U#Ajgj%H}^fR<$U9skGD4X z$8q1=ZUHy0h2GztV1z)9LyYy#T@J~mdMMxsQ3PSP%`5Bt8)KrVQx~#U;Od-loUM?E(|HL^yxB6UJILd<}<+ipo{) zOP_pld-mJ15K0Dtspx)7@9(#@d8X|4X_M~-(ZSUbEJ`nA zL4CZAek|02Rc-k~ymyU(37HvgdPI-HPU*c5Ro$*u@QW|^6kcWXy5T^$|Ho>-7A-%R zBUQ@AF6${PZVhdK|8Ab?h7#kZRQ)Fp?`8{J{RW@4TbgIa*T@HE7M=mq;>6dS<)3rr zZO-EeoLRMwJ~uLvYAsE7i1Ix`&P`zxEsdQ;3v9 z*uU5lR9Yq>mxGgBHST1^qsrIBk)o`DM$-WYZ0dR)NtJ@z=1(_%}~Aj@qU*8E4OG zkS;97{A@e9&^2v5?8j$2Y@&aIL+fyeEcGNA``0)kki`#1H73R519X=~O2+|&v*Z&; zMcB1C)nTHP(rZ`XxeP*FJ2^=)kJAD7cx0SasfWqNqlk^Y2!U89OP8Oigl|ZiaCd>;&3clyFCnDdw@Pc#k4Y4OoqP|-sCzS)d;Pz{#9*8Yj?1z~6@WEXu2PXjVBv$%yhIC|j4ccY)ra&1A8=`n&lAlq%c0vTMu?A= zCb|7nnluIzWuCc!^zcYZw(cRIqei#OM3|Znhg@71Fiu@zB*_s+%Tn4HX1sXIta!Ko06U@za(*zz=9D}z|xL3G>=r-7zk>d$twl_yZj!_*= z-iU$G4#MzPJt3xM7WLEEhZ1r_p@ewkLLEg+fC+9Y!|QKIvL&t8mKY7QMsS8ei^8R` zaa;Y^s=9DQ*#mVZb-{U);nO?XerFKfhpRQP30u9~vT_!k5x8|&a9^IdvE{Nb>7>bK zz}n%}Bxzf_>^O%9AqsvPU1^2a-k$K&KrBf*k5d%MycSh;A&8`c*0yoSNlS^+>UdlM za$$oaMst{K@e|A;(o`x1nS!TWCY{9xTw6OFl#_9&J`_bDXH8(##BV5tjd6IPN zQx{m08+Ru<2^Q;WkzAN}Rxsp9QEm=O?+b|~{kV8sh{!6jr!l3lNb_!3_Ntb+I5uH9 zG)DC{0t?-T2&IEvnC4VSNyvpcidfG)%UGtq5Hy@^-Xulp$7#}4<+g6GLiTdShZFvb zo)l>q)^#ws5IO}{_g_R(HQkdgVI9SVa^iGL)oMf^16T%g;bab~hdb9L%{)w^ey6ow zv(N@Bz_|VvgnCTe(Y(`o(uH_m+ScW8wF1?G5D^e-H2i&6lWK?$IJb7#EJNB>*T%PI zhY2hRYLAHa4T0}a`E7Nr6j=7;{9sk4YeL4uX1Af{$LD-oT-EKt?$6^;xFk4N50Kf^ za|MV6Q2(0P>ox4<&mJ_Y`Dyv(0PYv+Z?aI;O*Xy27LRbM5{N;@8TK2gD1F!%lozU# zx7m2Ok-=7T#eX+URA%$1AkG2zC4Ixc_Q!64sp)ML^}I=_2UvO^r^h`+tDM#(_7fnA_^MxWlS8Z-g2~UVNa{Do3-WH|_eeYSS3pn8)bF@zqx*h{v=-yYtz5WPHhN%CcUlhlkCvpx*19Jz01y48RmC%@E=YvjneKaL}EpZ1iLXU;P~O1p9mE%Vt% zTy`4Uwj&iyS`tlXJvuVCG=K$bdSb{jp*sS?B9f;Nb#G z4Z}N;AMZbVD|t20?U=}p7c85I<-4+If- zOWWkN4Uw}JGX-f6)gQl^2!qV@7I8Q*2$>_DdPSb!cXsZeG zXUh6X-3a^6FPWPEHYsRJIhT)J5;fU+O%a>Yf|r$%eT#jej|TFdFIF%QV9vZW**v!_ z5_G9^jL?FUhD05rWN8|)%ouRU?OWI|^V>Qctv=x=M2({$y%uc<9xpBh2^86l7GY${SCN%_cyx05a^eu%e_B&Iy0mMf8E z)913Evy~?Ks{@aA3SK579?7-A8~!;*tSK2BxhR51i_>`|IBc}?1g@@|I~M$C6bfN4 z+VNgH%y0YU@E;>mK5lfZIguNJ2(`$Ch)Lb99zxHNKQMA&1<~ne z^hoqNtR&2?sQtxK@`gC6lmJf2Iwgfdyi2WNLNYE*Z0;DLtk&cDWF%AgV}L~gMRAy@ zM}h9}Q|-ead*-*KpdC|D&NtZ0$HezIL$0i`%S~#KR*2X#^VKXXfwZj~uSzaj)c=0m zY|y)+VX_%dLAW?$>d{NSA)3@&3eqm6p7_nW1&5Y5nh{@k*_I^C*?c#wEq!a@31NjQ z7{$$G&4##osm)kNF7yGa4N9f2CN7n@tJIz19A9~IsRBM?D5PJ zT6?vjLO)PfQavzccDrT^cS3ZrHpj?0Ui)cF8Vah1t5K_eIHRBxpc5?uf)K^h}@Eqj!4;Pn5HS74^)v53u->Lg_2x7O6OpS4^yhyT_`##;7_gV+UTayADo z!Y%~ec$eZ6I@!0bWEP!qNV;9k=XbU!bnqG8!h zu9T*J{dr(;(j1X@xo%m^iyO}cnLgOKNCIj_+ki9%DPW{M+bTe^^ zao=p0qa9mb*!r*$MKvIA3!fU-ASIn#XrzdNP*2XL^F-<3r6~<;&j$z29ZBjsxWr%+ z3R&VpPE(~wk15C#!EkW6oK?gciSpa_BK}|rB{T~&_?=2vK`wYq>Pnc|cAg^rAe7-+ zQpOV|?MT<~%axP5TU`XZmvMJ+`;glMc}mVRo$}zsG$(G?I^Jz?aeX7S;UGHDtim*g z)}wHQADdkh>*XNYc#G&FZGeIhFLp*mM=`AR<|(0hVe7^C_?p%DC(60#V6dpNe9a0A&qP8UAg9a%XA7HZfxI(GwjP#rc;YYOE-+F&l zY6*Th3Gj0DVvE9eN#Zy6&4hPnDqz1YXy?VSKGRsZ_}Vk=N7t5sK>pk$kHif2i-?zg z6aNhhXJ`yu!zVY!ZEf6VtBt*tn9+KMr&@Ux`K!xHP?V8VwL-#74>`;5o23~S#&0@O zuSWfmwe-X;30L15_v%HZy{0-~lD%m};G(o;kJY4$1cwpQ8}OC@FIC7Mx+Tmmq_cv$ ztju1{(ZUmAv=)cha3VF(oty-REz$!L4BZn05VY=YfmzMW-qxK3(H3rle7JcWI5WXv zDv@XuQBJs8>ybbJ(c@hT!U2PU>Ip$|@A;Cn%)D{Hax`mVjRdmdB5(@O2D2}UoEet0 zW0W0=*d%*-obZdKz;6*YBY{wAEIz<}?Xd9)7kf8#=8ad?I)k6ERiqX^n~_^ee!(F8 z4(zf@zf(GU)$ryt?${q8lJTT66Pbx5i4R~X+BpUEI$5!z2K6BBn|sm+l^N5!h;^m` z$m@@JO8@9UMF6iqiimsOO(?5q6loMK3RlG%-S=m*?#v^M<30oZdO8xV^Bmki0Ip*5 zFTEqrx0roRp@_XoTsm?s;_y_rVny-4zX-aCGRDY+GWjMB>K{ezySKt|jFnIkJjyxR z(HLo{+;ifR@eeSJJ-mutdXez+$hA%cf#n|n{&5f?AKmlaNl_g6z<-pPG301bE*@2w z_J_fGSCpg{?GO;l-V;Pf#?Nt6B^ORtY<*QCRnQ{K$2?vB52_ruccl}`jGKhi`x;a5 zU5(@%hv+DQ-d)@IL$VueB<;x)Okckd;3pSMX(GY#gzlh}|T*N}`uCtw@QfVL31BCTFJ zaRN=K=%~!i8Pv%RHrWt)KijpqJQ)Jp$pyN;W%{e~#9nF(=IW`EM;Hh(=GSdaSL~UV|EK;nftBM^AuUsmM zbQDjRIJR-7%4Q8OvIV8S)eWDOHbz~u_xvNz1Uz8dfJn{d2vmC*s%tc0M<^r?fCd{E zO~!Ab+Jd)&V~+Vdk#}|PU|l{S-wK65igqjxMCKXF>K8@3Rz5EJZi5+Z=r}9b=(2{- zd&8-ofNsSf$lWe$2@?DF$IV+?w;xay6f4rbg#8K+c1U}Bq8=Jnpd)RI2rkTXd^M0a ztQ>V7xzsNr=2@5^V>Vz%Mvev7#L61vn^!%0-)Q&JM!+Uzn9nA=e3Z!Z{a$1)Mqh|2 z{0!D$u=xr4(ZGMp21PIScut<+8Qvv4oX8IIq!Iu}0|clSHTD&3hL7{xWLK=b$YAyT zAW|b4(Wn=4v}+W-!?1AzI26`-lab)#^&A?nJ_DrQLiX7x$*3Y}pQqX~Uu9@^^w_`X zwmf5GDq6l*q~@%HPJ5UnZS_4s&^`a6*K1GDoc9P?XOMA@A_rMJoo!SHP8KnFg1%75 z8wW=&Y)|Sgjx2DOt6}Wr#uy1BDQZRnVCzt8%d5{)n?eDzqsaT1`l@ zy@wra$eTo7CC^?T{hM(E-v?N%JAH^w zdTOSQ!_44*xJ}y{0k%$@fBCRcl&aqpd~#UT2C|LrQK*gmr(w^ng>T+VQQHe(-_z)I zZLbk_a)F&>_KJD+Q~wLOA(k)d?GGoOgoV{xE~iv%pYgk%QK4umpbjARcaPF6_X^>O z;7xLwOlgU&cTMcA1%{uJd^T)vvcqQ6{3S~{z{Gp=tWWXvAo(_^OWC0W3zaQNacVun$vAe@GXM)i&d7~1j$7^1-Cp7ORCVIL;Le<5- zzUpt|%b7#rq050xZqi;?3wuxi!Bl{t%S_zBTZnobx&nlbo(u_PJn4cqR-KWA$&Gha za&I1nJq$7)i>7dwXE@u-eLV}(EmB~PHIEH2p~E5Vg-jg8M-n=`GD{3Hb3DY6GT{KG zzwiFwmt$!P6YW3xu4mpW0wE1Eyzn)UV`P+QS?=T-{-+PXyJmm$quYk|gIjHR6a(Z!ngy0dk6YJej9_F zB2XI)P@9p&vMUI+g4UOQZKaV<_L`U)g^TQ`m*d@YF(|HiFVh)kd*kd=fYE1YAde9& zqk}B>?RM)>^{8wwEO3)>Kd~z8TZJhZ9T?}|YW9@ku12qC4)(7U<~VMBz3HrRoukU4 zcd7D~MO9vmf4!vkiplU_J{!5OomQ(h|BUovP&JzM=dwL{Z4o#wgU=}z=$;aqY)^tM z`x;}=6%3A9%k|s;GAhdr>%9d502i~l=gRxAZviB8{BkX@E~XESUSet$?!c;AIfYW1 z3f^*-;4QC)KTFRzglD<_qvzG;Uxu;x zMXbd=@*0*H;VO>+$yEP>1f z07WtgrGjIJ061|=vtn`Q7`2Ro5U$IflCo6&0-T;m$lB#LgD6xi&4|T3{{dRJb;Rak zk3wm3kr@hGe5u%dO4`=qJ#+lPH1qDVCM?EBTMG%Cd!8?$7D!OTNkkc64~2)#MG|##93u+)oI|oQQ7#fj5EPL-y*Jy4q99$^BXFjO!bA`z`%aA;|H|;zAT%(19 zhm29c?_unr_+=Rq97uW5Q`xN6IaQ;53*P+bZR=0mxNFj5qB7X8YxMr3q8Wv9FJG^b z@`*y&Ph;*aE!{uo_Pb>~jRD#Kx3pzll2eVxtvda{v4LUHJ@qo15~=F#TR_uRTV?@m*Xetu6C2_{ypg~;`C#gdjM4)_ z_V+t)!a(-mKJZ-!Kc(&n8d-AI5!<=G z@Zb-5!-xz^1?~!m-_o`}SjKcuSB$OaQJ^Vd1R6Sa55uOG7lF>yDA)U^-z>r{EVQ51 zft!Qyq;#H6+QOzG*$QbTY~6W=fRNdogRh*UrS$I>aw=B<@0?!N>h)U~u<&bK z*4UNwG~gKdCW07sB8|qNOM?JX2OUxxmeDYiFe=QX%;eShqxIykHVHeBE_6b-Ji1O0hJ2usfLxG&MV8C&{HJvpBxt!S!X^=Q6^ z`BvvMWsbV*rl|I<7Pp;Du_i?Rv^+~f*_nhgEzv=dPl&P?9Cd}FRYx5~%C&WoIv+*E zkXba?X{C5kh!YLAsn>D1cWCn)2LVkQ?_LTvPqx^h;c|OtZ4u1SZ?Z0*KJ8>~QObfq z^e0JYT$A`*Ix$#o@)XvDS?B^XzUfaCQrb4p(P~Mpq7XqBdJ}l9rKN_35b-`@aPJ>` zXMx9)prfr8npI_Yi%sq~h{e_j3brvrQb{1B-0!EUsKBF2 zn2l?a(QDy)+9=?{@my1+&IfSlnb0v3E6reO1JN@4^@I@{W4c-+HcXNugT_JC3r>9^ zpP*N7NWi_XF{P{M(Kqwsw`EfqUd;b0;_pq8w&Wv9XF$M}unG7mDY{Vz)Wlg41TfElOeraFndmyx+)iRQFHl)R4a}QT zdAyl(BOEY@`(Pw~{o2iEX^U;lGN4Kz0JHk{Owf!cewi546ki4ZAe`iXzamvhN4{N9WAUu zO=!+XLUul=Qb?o0Dq2n4J?foIyUx!?>O=T!(K>W_PEAa}z1OpDPZ7ew%a~3J3~ovm zrSZjNg&&J)*ZKwaA(zmetPdHRVrYEvj4aCK>f4SCKT-37Ah0cSXs}1*xF;}Uo&*^= zS4xR(PFo%rqVs3a*|2?j5H{1Z!`N9#CCDx13?;#NEVvu3XO-IXA*% zf;2I)x3L-@2`Nn=_-$_-o*Q+Nc4>_YW%knj;yMp@T4-Og?5PBPa|%XBu-D&lE!tI3 z1&^y2v#2bTr`vL!J=0hi$cFLTqHX8|+CA{~;4*sso}lsc-^cPwRfY24R&=_e4(+1T zKK1n3b9~K=)BDP32SG0KL-6=^a^WRVo-w+o^IQ=3X>Xj}*c`_PtW36Lg425<>rdA) zLPMfVsSBN8GXrEBWXyHYsP5+lQ>dV$_;kZ=y7?bKyCj`lLh2C6ZBS?##(;`-|9-Djk(drN{bYoq^5({EW9xK zH@K$7JumPA@iWnR_$u*im5<`cWwj@mU#aTFpopeal|I1V6)8HVeVW(SWuF67blB0E zhIi|ewmrSFosF{sl*rI2R7%`s=p}%Jr6kx2{D=I^h4Zd8l$bhRwRS-$<<}7t{uKoV z+C2~G)TYT5=5RHv!E@9#`KsF%LMiTmv5dHeQT$D4ibMMV&$OCH zHy>@qD!yP$Xy`>dBz?{BXyRfcO1^;%;t+Q}b) zJF`fba-m4uX1H=a4m-eS7T|N+iII}hB0e-lfufh_S|Jdl$UG)r#<#9(z#;32r1OR2 zeJ0%db2anWD%fX+PPB?d0ay9xqzu@5*!f^#HdyFoQ6+JceqI)d2?Syi_l`VU#~5Fw zbI$XHfvBycIKJ)xdtHFi@{wz6kkZtHO}=Epd%4R2BHs?+-2w2vTU0eOo7&~m>95`h zT8q}p!?6`Vi!FQO<4?yNox^L2BklA_7rje<{CuB1i7q1Jjryxo|Z10}OOWyOH;Cd&$4PSF4u)qk0mt+*!4`+;Ti5}qfO{!0L>anj8k?&9$97Ns z0|21_z?d6dl4OO0HLZa2Ze`J`2Op&mK4zh6nI-IMSsPWb`r>fYUAlWRmT9m6GRX*w zkz55SX@H=bZ`U_`0xYC6a&w&uVCP{PJs@Cdk>9gTkPel`_6@HgCfVF;0>fJjd&kd zzvq-dd{V<~)MdpDK7cZb72XU9&X2d50Ttz(ZglG^v=)EuGVS{}oTZO(Ea^zB>u1gh z1?*h|kds@Wjt_Eh0{-)SCPz8AC`Kl~k;;;`^`h%{N&t|4Byf#_%_FOfXRm62GO)h~U}z#@ ztc|LP#3XKNm**h-b0`Rb({#>~?<=+qt(eKVVfz1Q%bLZ~ITm!T(~A^M;eWth9vYH$ zF_mr{#$Wt-F+po_dQ4+lppM4%0CWQ=zB!(SQ{}R#QaMYP3lYUM#_puA-pws*cK-m} z2tYYzQs)7>XF5vgj|^sf4XZJqj#pazhVv|aVL+@QXkpl`|S38MJKYezFv)orzXjnfFG zpSeuBO?`ynodc}$e`leNPfGpz$}(2$W7Y|sJV8`EV4NYSylWW9OTKXl_!ur(>QU35 z2a2=@Vu^FMmoaGpidDt$vpJQkE+6dCmWZkv>#G}KTGVWZSyZ#j^4r|xvqA5J&x<#u z;NFo967OOkJ)-+qNsc=>)uevLu?Z*RLwU}L^e9!5<6P$+!DmuArT_DV9JX>_bAKZz zK3kUqb?o@FJqg#q%(y>9_h{{V-e9xmEYJI0Y+0=|0_9_eeFj}HoZgCG-TqB)aw0r z{LBY{@?s&M-II)7Pg+l*F}vT6-v68EyQ4)9)6-Ng#CmXjkM4gxyt5A8`=$jpKH`~H z-&f+ks71!!;GkdWBsngDn9Uh8`2R%DJ1o|_P+oKIOBNK?X*ulOVtOc-a{uQHpAD~% zd|Lq0 z{n$+Sx6Ssy9N4mpCAbwa`mF#)4HV!Ro%G*ia?3^!zVhokJk1^wvUW)BfX1#L!HN}_ zWHVQcTw(^xTad*9uB)rJ_s;0^?CaGThZ>k8S#C7cn6(58`TedjURy(3~FS$<>O zfEpB?^@ZI)=yCcDpXTHdFg@_}R@-+@H{gVyx5;Mc+T)=E^QexuWweLv7%ZpAt7oDI z9KeNjgS&i-C8}v!A6|1TJ^bJhIYJNxDW{!V)&7j8Z}kp2O64xNy}NL*&6TJW)YB8` z#DAE^mZx*#KD#CHNzz4#KISh-dIp5-{1UfXNobPX%X}7gel2>4e%edCTFN3`b?NdE zuE+7*^u$^9DBzSc{<_@njeYd`z=pE9tB+9=fE@i7FTmxd&=ysM-n+G&;&bwoCk)!@ z{H&{vg*AK>0m%X%QMk8T^JK(9glW9;XL0SUsZaiU9p<0KqKK=Y{thd@8qe`5DSFp- z+2T3R`-AnRakEdgx4q6XE9wTaRH+qBH{wO>{^mDsF`C;hCkYmRhOPIDD1yTZTy6^c zL#4V#%em79Y^rwhn=Ry5x;chGT+aT8?yEf`XQo@L4{|avy@L!;u7U79*;uVj=0AL_xG11Q}B`ai3}a1Ehi)225Z-XQQ1eN!?r@*9iF_fhb28!?1Hm z;C8N)>HDd+J*z-XA_gU$-vTHHW@~5L(zf-3mIy1PC&H{>R!Zg8N>lM*#(_%O zmB+#xdPIiAX!*33hty(G;j&UL(p0DYL>L-n)Wf#%s~$bj_5I z8_l2Z|Ml~#|L1bb5wX*OF6)v6a~WafVMhLafyC zoBQ+pded51y@OzLcv+9arKO5B=nlVL4CbX&@@oiVT-|=nOvIa`$YMh5J|ouWLxN9#~!_DggURN zY*TA5t_8V3Hja4raqsKcHPM{!-zaT&aMJEcnHmREC4}zy*H$C@v8l?6@w{MD)^e0cy9%g{YQ$bd~ zYn+;BDE_l{dt}Ra&3)Z$ml1(=OUeW)OSFnn)X5f?ALg^i~<#=y=d%|9rE4kLl7EpnisyY{hdPK0|M6K zBo9>2EWPsgZ0-^)ID0JcR0;6C%%Yn0gR{QA$DcbbIr`AU&FuT&ZT{1xZu1o}(g=tk z;wD5k6sxxXwi@{!lpZ)=`VTGMKc`7V;Kb^fHWEFx^8=a&-@WLVMU7StIaP`~H&764 z^c%2*nIm`s)&yB!;@gs4>Jkr^AXZwt=9;!zi8l4s+XG-D0qlEwsQh}BLxVq_=NhPkCJjzrRQttowMmKFmI{P1Ni(>NCW*Pox?=tQ)@Wgc_2HpDAs8ite#=SwPNGqiUmRK z)}nvM$vJBMJ35c-4|w|HLE|y%6rgXcT;DFza$jZjnd1~uj4)!!dmy~xU#|!QAjL?2 zOXTrmKWQW;X5FJ5jAqNQee-KWw-tZcoc)iC%2wDeiqGci^6xQ!Mt&O1hQd5z$iwvRqBI^paazBqb*Py0m0@t+KA z$H7ChWjXz!*%-h4;X$|*T~ugIL_S0$1F)x}IL~ocd_Mjg3e~&^Z3tbL3D| z!vU*b#g#xr2l9seZNSsEe7{gKHiofphoSid)_@BL`mHQ^Nrje%lc+!Df4CJEr8tu; zZ1d?J2%5m7A{+Inx7aKUyj**$Z3iE)dg|c>LY=$Oat;6J?U9KLG)M$})MueznVT$Gzp+$~j#K0^)^F#DbfqUcb~^lF9dvFflJRGB&}fgD z^zNI5`=p_YnD=n#JRf`2YoIPO>7@|fQ9Gu3irw~g&*~& zTTh5195L^eEf4waYj12qjZ7$e9~PQ1$J%ro@JH+7$_3JIP#+zZ2WprQf9y%WCY8hH zeiEM1%054AHSq!kTQ6~3OR3?rNeR#sV%^cCopKicD>w0R5YM%WdT#z9@7WM|x?YHD zJWB;(?0b!8@c?ZU%_E7bb44YW%7NmUytve8L*Nn~)Dv*{aLJnvL2<5CQ0g0Jo`yXoKf+(wv3#|1Gfj0=96EoO4V=>E7|6 zL8xY?4)WQU{&^|ieeBjQ&}V0F(hU+Q@Bw!n8U_$;IOqc@G8}+&KEn&v#NIG&u&9d8 z$|vx841NNoKPfdW$L76C9j8|tW3(A~{y~;N^Lz82ol^wFJq%%_HUqA%yvdUK-u&B1 zJolKtA-U+h=;xjEIr9>E1Mhrb3kp*H&r)I0Ty)Y$HxrBUdd1Pi-- zk9-KwP!abQDt*mf&IvIO1p@8pT}vL#$Smmg@pT00u_ z5Y#%^bXpUnafU!KOJ#6(PA4CWoaS$`SYw>ku+(u zZk+PFzIL=o8ITdbAxKiF_4qrHMQA~~IjlWS`yNHB5`}@gvyz~RRo|S>_^`^wVe-?C|p56!1V$})XMvd(T>&seq`=$S2`wF!J z;{XL5vY^Zh25P!>xm^GN)%C7^?Pn26Gioa>VUO>JKJc>!r}sXD+0|m`AJjBW`v4tns*BOSc|JXmf0JL{x6;ILBr(`wIUcjaQN7 zgS3XI=in(ZWtrG;1uFxL6bb*!ND^~tT=I&TX9F%Cg{y=&e9RLk0G=Y9xk&j`)QysV zr3qh<3-pTJl|yxV@sUEH;N~bG=!pIf=PHiaHTuAx znNMA~()~hjynE~TqhWOgM1{iK31Uf08I6obAR{FT6G?7%{h)1vv=|Uc{s?Mrpc@J# z5-8WE@f6{IlFEXa{VJ(@o0EDK9}u+m_`-Y(jT^8K6~9nWzYPwmg}4y;RpYsBDFyzT zUYubPs)9gxX>wLH#10glhtz^nw$ivK4>lO6w?S4f7l)ndTPF@FSGlJJz^Gdk{u5Md zac!f{ep)FtF77SNsh~B$eq?nkYpLiRw(87f(eqpUBr#CXPJ)p?OXVhmYRrH1wb()g zs~pzwhz%|3r)t!NTc+&giTV`w9p;(8Gw(D=W(1j&Za3HXjNypt6RW>`!taF$euK1` zB4>J=Md04rh;4`y;~FUNKQar;yMUbSqgSPKK5xCW@}#CDp;I4NGtC(|%%f~qO4}}S zGFS9~$-ztm5_3g*8{TMeZ_#4h@J%SQu7Gi>RV;o}tL;ZFcoVowGpbc0%5dXQCvoRC ziegHbgfp}F3|Bbcgcx?fs2rZBzS4qTIbHR-5N}ESb<6Ip0_b+M7zFz>i;J-4vT1?Z z{}0W6i`c?59oQeeD!d(8r3>{=luPKOFb*#YWD+>G)O2*s9j>-no@TBKQeehGodU{$lbkkQ0hzC=lJ@X(Yy_Tm0w@}h*tNps)4uAGkoe^#P&lA^6coC#ujWm> z3hYi8yGQI+vm3e6uQkYt7O*nb6eJtn!-pTwyhuC@fs=g`w)SLfOYOemAhfO9EV zq|;n*X#zL3it+ar<+bH{SoRyvy^TrwK1m!HP(_BTv+V28*9D3n< z^A;z%Z=kgpwx5BF3GaWJ10}?@m)%d`B72c^-Vupka*^l1h;)|?0EBVV>Y`* zl@xMrDLTV#@RL+4q&W^vZ`*O~{8B322hOkOX3dY#d*ay6i+r}JJbySzXD5~G9t06| zAeB$)-OB}*z8D>*5ZC1+{Yy{q%hMEut~2Nu(u0UHDjmHeB0oR=D8N(s!>FCHzlmWRJ zbX3?tEZ(cR{EoMPSgd{ZYGNEUEMXRCd?dby#HaJKNgb`XB(e*!o zv=MAY@gTvgsI`guYvWL?_LdUWfOOP1Zv6WwcbN`z9!t6Tm*+)c(p0S|QST0dSAT5s z+GH?J4Zd%L9CuGj&VB$YtrdRcL%7;=#!YtR!HURj6-m1KN^aG7}D!zhMvh-k5P-QOKBPmhQ-5akqN6uMtx74c0_ zOs)V6?7xPD?iUtu`|d!Z@np|Y-O_cCao)>sdDaLGIaMT-fpYC*FPD!Ck)RH4Jj{J| zHe)N@ShNH$3fj_rj`#~MnwR;c{(qf>6>%FVa$p8%b$VX9acb4|CunU1-R~;rLB&zY z<*4(h`eo0b9f4=5piga_BBoT;RMh%&rvw*KQ*zx4^u7L*_{!o^kK0GA$}L1NM8pDB zy_NV?H9LC;-I?6gYJRMKpid&Z>1XudMTHZ2<_^B5GXQCGfNO(Aryk)kI0D(>4F#-!QYH8m9sV1>>3ADDJk0^ZiFR?dDZBV%I zKIrKLKVSeFi*=c-ZAP~xXJA4g=IVC!Dqh0=<0ey{Q zZd^mf?Bx~l>e&Kzt>Iz0;J(K@$LpcJ*FAf|@a0~91y-5Yig|$({XB?R6?S#)@Xb8j zC^I6~()ZzvBKG0%u7LWTu!0?4obM)P1R6i_U~48S7S07<>k}^IY-9zUBDpCjy{qn+ zRsBxX3$?Z-fYOs1ri~-D()LBU8JdPNJk>hXZSZ3Y$E$AsJ|6TzpO`b*mX6Y616{=u z&Z1-&AxVS1bEzt=8b` z9_K6Z+B-ePvju!hui8F3C52@xu?2QB~c9+=fj5&Ko+FopiS=QD2( zsrxR@e^%SA#yb^O2xM=)NPAoR??>WZX%5k*l6jAA_|J_3cvU+hPmwH%0L$TKX8mgCihi}=ROMJ!A!4|2W-L0>8!!RN~ zYf~F^gCW1Dd5udvfon}+Pj2@U1Y+WZL7%Aw2#tmsc{b!#8(S?<(Cvk0(IWeN)qr!W zH{E>R+spRzUeXpgCl_&4{UNPPeR;njxKi=9l^b98K3mZ}o>C~QWaiWhJ^4AKd5r4A zkOH|Fqvv{e9){?jLtpwEA9*?wF=WyirhB#tN)U$h%M{ght! zX;|s9qfU9&1yz92rnd)vG)S8bkVk?mTV5A;#f(Z7ftRUH?kA(NN!4x3 z_50p}t302db&Qv{v|6kU*1mA_ToMn`5}7M=4@n6N`Tmk}oXo*y{TW|#cMJb-U`>Hh ziqzLOVhO{3rm$Yi{QmS*@!mhYmKIy-5~`nt3C_J%+qP9xC!Lj7bIS*zk4{RKhQ>4* z|k20TFLUorji zA=2XZVbwd_vWYL*I`|2rA-Q)X%sNHL*`fCrOt675MSs$i{)yOfJFWRpLX{{$+SM!X z=X}2C4+cgVU0AAM6Un&-DcP>fK{xH4-wf}mw-2|c)f~2E%*_E*rF>zsH|Xr59QQgS zZL853m#CM^Y=3COHK9;`ioxEfGc;Ys>@K4zH?KdppHh%-dVz(p!(pQ8(${}gFJ>S1 zMR*06gdU@skqRj%Q&h~(Ktzwv1y7zMM&)8W1IRJTkZ>kG6Y~?sEh>5rpP6KBvSp=h zvzx$`r-Cuv9WVrG$5DRVS@-tgRW;f`9EYAPJRSbCcHU@MqMSLMySgu+$gv7j8Z7Qp zGIORmVM{91*sDp7sOpUg;Yba8clB<~{YnyhiQBHe_vZWW> zAP1Q%pzqwMmR&zOPF1OfZ&d!*k zy-PhXa#^tUA)zO^2E%=mtl{v+M?fF{PXLw!Y5ZZNiLhX)|CBNZco(n&cwurHNz>;a zz_q~lhhZrN+Q-~hmoerf~9sT<#_5jT9@KJEvX-DrEXkbMZ|;IVWeKMV5yx-IUKkc z_i0H@HL}0zMk01)hmm^Cf~9t=`?THwycc*g-aeEv4FNv^ZUBDi{wlSZ1xwvg-+A~B zYS}t1IgQjM>!_vb2fiavU17meHn+r>b!KuJsSWO=POEPA>?(Dc1xp%H$_s$^0PhBl&kZB>l?Q?E0^cU$pUGLIMzCN> zW0mp@U^#FRa4v8}ZXl_Vb^x~lKLmbG#Q&1>NR48_k`APl!+@pK+lX(%{aWg_M}eOL zHv_AQ*qxk5YAg$uG*P9@0?wwEt@D9r=LV8y#5UkoYN`4K5ktv&q`qLmk|v{+LxI-; zZ>5$kPmNcbY^9c}n}A;v@nmuysqa{@q^T<9nZRqPldTJY`MH6lN!bkCLY-9ohKN1M zd8EE(!IFBZZjgT&b>G%fU=TPYHIp>Hr+_uU>f!58Zd8|g$ATqIr&5jrUe9RZIw3cZ zI_`c(3)QcPcqBQG)LIrSX(p9&Dx+oVOyIEGKx(<&)Pp~3sfxHKIgivC7Az@CDTh-_ z)=1$xB{z^-Vm+f%sym6;m7GWFBny_*6r~&oynOh21@KawaOuEy1Ahko0Ne%KMZ`n7 zktBfyOKPrq6vRuYWox8(Elka%Y#SLVQngh5)gu(7X0l*O{iKu=*mugc7?_osNz-Kr zxSM^aQ}^dak~C2kEUBNBG8;G@croxI;I!e(gHQX*R$$%m^>^TJz+Z@XA~ltyNwZ){ zZB)tvM$6Vn@j3;VlNn1qPThn)Qlx6BirAEzN>a~Ru%xai2Q|o|#6Y*4LFiA7Rf+Yz`ITBbzEn8!+MZmFH(HiPuYJs|M_;c^;J|Z5? zizcZFELf5buAbSokbR5SeCl4WvDfURlvDKtbuZM|Ycu;6sEwX2CFx)+Sdx0Hl(~#w zyp9?EoJTETv#C!&j{Sb1PpD7VJu!jLvER2-3)2?HD^d|Vd;gaqsjL1Ea2JE|#dNhE P00000NkvXXu0mjfpIasc literal 0 HcmV?d00001 diff --git a/GUI/pictures/checkMark.png b/GUI/pictures/checkMark.png new file mode 100644 index 0000000000000000000000000000000000000000..f2d24be33bffafe95b74e3e0188f08c9e999ad7e GIT binary patch literal 2667 zcmV-x3Y7JUP)Px#z)(z7MgRZ*6P_FZ000!D9TT7&6r>#zmK*i;_4oJp5QZ2Lj2YAmX;8L7wYQjARr(HF9--i4CCYD3Q`WIr>6-` z4tIBVHa0fJ#l-^_1YlrbJv}`E3<3;c5f>L1ZEbCbhlknO*)1(Cwzjq~7t5{Ps(sZ-`t|GA8Oz#(Rk^VCV|k9V7dX$H)wS1n`YLh04ErLY2begUR}yHu zfemy@XR}%oKd(V|u16=dAc3AXA#rxjCD5T;gpMff+>fH$fL2my=eBJEdW*SpNh*4F z8FWNx=k`mC$uoKmzH>P%Ap<40aL70>4RF=YO0aWnehhp@spRg}_zLI%7pNEPT$>mA zxP(E{qCt__Hm~6Vtw?>oT;OYLzO!(D2uL-sBN=0s(}56j;Ol<>UL3qjwH|qvo}D8;@1;6pt2S5aV&uz zf;O3&k{7jVo1JU3s`&i@4d{3oxr=O)7+%qUQgdm@1W;ZA^)OJMyXx8k=rO1(g)ZF^ zlRygtOrMctx<>^rf!01SD{q-yW;Ow}1=&4C11g2F9wVS^23e;yucMdlD!=p~%a^gw zbR|xo1A>(=Bz4Xi0cCSY4oKaIVgR%OX&sY%VNmjclClftdaTRZh0+VyGN9;6+qo*#6?mEH$Y^*UO=Kt*&J=k%d#7b(AVV$xVd2t>*+ zO$qdvhk@4K;OZ9{(Ln^LEoGxez{@BG^d9coJy^=RI|{T4N9)yFmlxrh!RoC`B(M%2 zQU1C4;~Vsd5(xx)U_&yaSVaB)KG3y$tpv&&a3pY|23i}SiP-1LGipo!7!V1RQc5WX z)V)U=A$U|&FQG~eXF}~xQICcMG8}GnsZba;l;H!68{Nd)qfyF$(`oXODqxs0;LH$= zqIRl80RvO1J&>P14it?toF#iN5z6490F|D{r+7q3+=ZbG(v{LpMzn}U8OCHBO8}Kt z1{lhaZ0$!o{4fS((Pb(pfwDs^&xSBPzSI&xiSD8tQc=DP3Q3@H91mqKlc6TLR8j?wlmgLu z^|ecT7oi6;Hqd%s^+edaO#`j>_b$XZ>A6-m3ULO6qVz`BQA69i52kAuY41uBSX2Y0 z7xaF2@7`TD|J!Y(xpryq{;rGc^}m$CS6a0`T&wM(rkehb+o+`hx|6+2t1ji?mqVk>*IKfLpsnOQo4>ZF-WJ4v zVQ73uuA?luj_R>aAZNu^8u1tZW@Z2?*^y^uX^C7j2t6mus^;TbiT?|&&|qb22~zhN z`j2xSBK}EPL_8ifU5vtDJ(#*#?O=>eO zLqutqKZ7p&O7aoX^>Gb|e@OA~q|x1sUPp4BC`l}5A>vOG;>6fg6Co{U*rW2GcAX@N z|Hv$3hgyhPoo@2f^p3kx;xAa>i*4Gwe2{HltH?EP2@EUZ?@Nf26QkiMVzbY%CtDh= zS#lzlKS$-^p&`K#;mx$&)6r_Tj6a2dwoQkW2ydpX%45A@HBzUWSRiGXjK9)#VX$Rz zmx#ZK1+M;HD;F-vGgCWh#U$2>|GjbVW<0|LYh)xq+#WhdMxe6MpNB_jMQiF!a}-x~ z`mu5EvSEIVts>X7T%9|^d`Js<8YnnTr+fMg)63I1zu%hrI?#M%nC)^+N=REd^Vy%J zN}NW~K2I++jM5swCY3B-4;S3%huKp}L(c5yixfANGNglCzUs6z4Q-i7L+(a}J5E~D zP%V7s@NG|}TxiNL-P}&lPQR3EK`- z<5;;}lPwgokPkA)FLjyT+K61dN4fv}O~pyE?}kH~?=i$_s=sQDbQ98dE8lC2T*Ipv zQ_<iZEGt0_BqA_BTJKGSypQpF9#am>dI}krd%ibTq8pY z^MQgty4I8oDbR<|MrtY+ z+Df#hq)b+aL+a-m7CogF;ChYZ8r+atWP^~OppY+oTA1r9G&O}BQY&nO06wLg)uE{= z^pN_w<{3StmM<4p(L);K8u*Y}{>O3PLu&coYlRP~pKI_#>VHqg+JjZulaPvBlj#Q` Z{{leFs^;Su9FYJ3002ovPDHLkV1kpU=s3GM`U4(=M<-Q9yO@AvMlyS24{ z!2a;ebWJ_oUDGpD)!p@p{Gu$2ibQ|}002G9=+Ucv4o3)cOnY^SVnX{{trH#D>0N}Npqi&_4euN|Z zuzo9{7!j1L=%j{?NTwzc74#{AhJhT2p%6j-YYAJm8&g^umT>521WasfP&BqG6Uq;y zMTA}Q-?1V25kE$rw|w*M=G!0k$KM(jL=Gx$a_S}#Ac!cba-6E%K`5mXB$%5agM9;A zyDVbCNL0=M48%Hfa<^AXD8OTYkPssU1fdfE<@FaC5dcxjg0K;VzoQ>ZWavW$g+f8T zCh#dD27LmE`NT>T0mNjWf^yPn)B!(X0mh?draOQy%m8EB!2Q2~pq$4HUnqcHGC4NX z&jbJ&mPLdVz*-PcF{$}O8lcSv_++Wr#}8O!2C&I%S;_%wngEaq4CGn>A_{;_HR3xx z0M-{^JVZ(91qjUme3H4=61rln!Z={~h*UEejY7r-8laj8|h#1ElW##ySs}D zeG+;mBU=7%Ry{@#tylYh0YWbicblEtRKXku!LqQAn>}N86_sDfN#r81*$I0`8uB@*fTsb}8Jw>OxcVMI2#0X4QFP`(MwB?e|N z_lmR_+Fv2t4*eQ@Fz2oF%Es-&DrhU<=iFQCBN1~$}tslDR@-hrc)cSRlwiF*yGxR zw@Bv@2j^$1t(E-Jz~qk8m8ksHs8+2SUV_Etp2_G%17(tQw_dMP=({$lx3Bs773=p}K#S446}WrxZAwS`IGD z`EsI8sBTp%SQ1`lRpO)}S`eV~8VRq{`?*&|vOx9cAETZ20WxGW{5mftay!)WF!x~Y zKAJz{OMV^eOzMEkzM_(p?_2zbXR{=!(;B0)DK2x}e{t zCoJOn+`?|5Z&#L@ma1JYSFTzvd(y#Ebyl2H)FIub^BjyOKBz#ePb+H`HvyM(puVKO zR*Y1Pqa-YFSH)6hS4jA)P0F*&vG_bax6?2v_p?*+x_8IH6OljbtH!ItQ}LZFiZ*;5 z3Kjec$^@QJKevmM5HaiE%9X05L9du(p-GBK+E!>n%d}AboJ@=idbG`e{tnfS!+^s; zJ`Fq#IgO&yvC?^_no>&q+su~>{{Y|V)ajlyAt9s9qI+FZb{bOE*5m3XI(8`H*i38l~T|WtE3an>NWS@)r z_ur--v07BGFHp-GF!jeTeur}1OtMK*C z#bC>4<}N3zF01FPWTpC?=iKHzd^K;3D~~=`htqAUcSv$mb#Gb}IWL9HZlfYVMN%c$ zs^Nf=)r>Vkt8$^HsnE0R!Q=v0eHu_4L=9yH6B#TXtOx!4=;KG;6)P&RVsT%)bS57Cvqc`OP-wr0f7c2VjdhODCYWYVgTmAfn1zS4>AW1VSx_zki>*| z7l|@*rKCoyW2=2jkI@Q?@3n9Jj!{jlBq<2Pc6IR;a5~ILjS@wN8oG1~3<$MW7Fw2F z^Fs}%dXpIXk zvvb5V!WwFE^Nc65XoIAkZ#fs9%&0u5;F#=zZAxb;@7<#Z;Kl<9s=%^Gv~R^0!e3Gk zVk=@+TZzo;Oqne8%x67Qy;hYmk?Hy4b)Og66;kwUE+HLng&U1wo8_Z#f0L}PC!=#x za{L2W{;e9X{BHC;Fq_!0MR&Sr#rV24BmEwAAlNQAp?}@{^}2Rt4@;|AE3;a_$l>_w zvCv!6UzNeO?6%CR7Ja*xbDxd|U(1Ih!d%{owc8HwE1dWFxmGfr-%NByA7PR z09V@AiP5$tPula!c9nLcTd_0oCCRn$IZ?g0)y0d|KwF6C&ztF0*$4RVA(L+jcX8;F zaB&%NqhY9FC%Jqg{QTRZuCGTg#gdcelQg-wZ@=G0t8j5x10Ls27AB_Cr+=kgrzLec z_!Yh$Lr(CkR|a|pNIHkTIN1$vHJ{JAJy$)6FY-6gRd)Tz0_onZ|NXgBpDKP%!cR(i zhlNSMc`@T;Uirv3$;{-`lmGx9Y5*W81OWK={xKf`0Pbu6z_Bp^Adn6K;5sE5^~(SN zv}N*A;u>Ddr#ar~`W7kgq8F9xe{}>1fpXfg<{RX{VQPVNba>%pEQcleU8<`&`0fJ+ zfj@q;g+%{A-h@6RLz0O1j}a4Ff~E-N2AW^oc7oSD-}s7Koxp2)ik|Mpt!|x@Zh2qJ z9M_(!HXgEXavz8eItGo|@MvJ5?Vv-tjYBQi@K9v5;X}F+M?aRMYf%2TXoCMCVy1R~ zto|obGJX8b*297Ke~bS|@qcXmKNSB*{6C8S%f|mv{2v?tkDhrB2+*DsSJDp0(`Jx&h8{25b7NE{O_b4 z*!G>~Qk>cZHv{t>R$q0ui8FXKh!?<|5IKv^1pns95hkzAO%()Lh8i3(93=lM)UlOp zd*T+nfE{oe#q1s9(*WfQaDslr@_hMtq!0?i!=r6%7hN1Tz{L`=2uxN?vtHK3%@+Z;u9DI zM{o?sH^Rx)gMNgzVDL24&p` zPksSTjAr^}gxq=1Lj}|XOsqJ{nf$RP^5wtfT|1*#)N;HHbOIgxW82P9wAQfAU*|zP zR{w?>EwFR!EmZotV4S4={@g1+uC2J7mqW^sM%WPep!pCN@%<>{W%OxsH4^v|Cbbb1p0Ata<7I(|tHpf1b2a8Rej``SMJxWiVhZCiLuTy;-k)6{G z+m7EmGBI-JMexh1UTrsxi4~D4_D*5vVOXI&VNRlJ7?NS$SNHhZxeM5XoEcc_3kxIe zAYFi_#ES(g>w)LL^pmL#$d@jgOvc3$uJ|m9xXpy!fw*4QM6=tjG;a+kS?q2j9z@$; z^pFOjNdd|LoYbZLGXq-;7s!h;ti<&WO-A@6u5;0VW*TIKA$ql{!jez3)oV6Z4uF^%85O!l*3 zr2Ic+>IOKAWKV&|LWmy5;M|3ltdGalMT}FK4bXzoVtx_zk;i#I;zn!ffNuG#T9;wu zQyA!h^!ot< zs5k}>(tyWmy(ygeYs?&5WLzFcTWX}1;(DGfAQc?T-GeW08k=PtRJnY9C@)N#{!~sy zlL)D$KXh1hf*>#Zd$dNgOgRluipYO zTnB0!>NheK6E!ySkM%$-ba54~%lqD&hDkL8V%3CUo8c#FL>$cKS6}0-5}&P7(x;?5 z4Nin7kBs9^7IK1VuSJZ$^pUU^B%SMKuS7f`OT}z=0Q;YKOyh~u0rVr30k$EVby24{ zDRSFrQWvq=4WAP=B^usebk5Z18@QR_1O0RoO&vSdp-$D!uRSTlPEjtQw*wNTL&|J8 zK?R)~^cfw9W3Yi7mkHUeG0A&TkU0pW_oOyTwn4#0HT3xmN6{?WLa{^rJfdB+mp8!h z9CZEVPB7UtRL#fMp?m;2 zI+)&4$0fH^Vion^>FRAd|4AFO4Ok#P5lJ< zp*)D?9~(9tuwJuhvc0{iVV>Bui@9|QYeV10v7s?!Mv}w!KsDrJf#>9pdDr;uK4H;V zN4}6VxZ(@=jv2Ti44bVcHEu(v$2sY+00Rne&td_UYxrMG_!=t|7V_y6NNO&@x1c_H z_gp9=TwD)bKtg@BlxS)*+e5LZQyi^5Q9{+{OY1-RM16J*f0*X?fUc1o%VFJGRZ(m| zhy$w4Y^BH_nF%0kYiU%H@YiKX0bU{D8YxWbFmcN@`sdu=h{3gyy$#fcZb6MEBJe>s ziWN``G>i>*toC+>Qke?o(IJDq_9&^4j9(WYH||ET}9B=!4WkJJnvI zq0OkD3@5nDj`72Dz&&_*b0w}ocPlb_rhRuvZ%TwR947a+Q=qbgFTf$5)+rQiT{!QrYmVWu08Sl2(OG~+o@czygRxVd3QElz%ugAu+t31~`M zW3KAH3$zU#bgOCSG-kW4FA!1+E}rP`S6NQgO4QwywfpKMIq|Lk7tE5#q$xqZn;g@x z-~XN-y^K1OkBi*PeWJ?^utwHno28@Q#VX9t|DE#7h+58%*&UEMy}V#QR&(HdvrOr$ z5?>`UbOO!u#UwFHI`0()c{5Ova*fy3baUd(|8N;i<6RsX43@S>pG@*K=H_nfRA#y` zQ?_Sra1AgEkXRB7%5|WX9{injQ?_uGe7^#d6I*yA^xX6)Pa?~RsrZBGXw-#;SVuf6l9d;_X-l6?2r64S zX#2*A@{;z#-wL%sUXfcWuU6j7UM^|pYt~I}_|@CO<~Nfz^S5b{i=Ej?wCpzI$o=@h z4Gh<*S4;3~EWKo}tvD!0NI9lYyF5!xov${8^Kh#yCf4(_?#zgRi$T?LL()Tg9b&#d zu3K#v>lXJz@U!6=udL3rLXuydWf|9Bt=o)$lXpA1;pFWXN@PRD_+3MP7Eat@n*(73 z;S+sWfPYgqJHxzIvQX{X_kEXp!GtiH_X4`=u5UH;K|W2Dh$TZ}EST?WzN8(UzyQad zzi(kg8Iixk3qq!HUuCerIQ4KJ*V_BadzA5P`%NhT;ONaZ5o@3;v2G

kk(*v|C1Gh1N)aivm<;|J}PR0!t0)PhEJeRw%9oc*|%?MjlSTrI7u zhXP3m5yzXdYu-Qcl+Gtmt{Y`Dn~AAE!bMy~Vrv!+|J6~sf>24<5HcF$&Yfoxk?R30 z)rjTQLtL?~e#y6Wm;kq)@q=%ocF+$-Fi66?b&C~6@RSt})b6O}R4vk|aykxt4R)8?@(TXAWvIoCoX+z(6rDqTWRJi z4M6vRW6I4nkwM~Enb;RXzX-%s9hOia&_{01?kb^D(@%6eKk*7w?0Kk*9}~)x?P;z6 zuW025@TzES>iE2CVcFB_bypWd>ehqJ0^0)tOB8u96;Mr7*Fm@ms{YqTlGpqF|BnxRNGYX&mZ%Zi!j44D6Z-)X_6nXAn)qH z1L~i$*P0xP!?v_CFO!Z#s2xHt3yu`yf1s|W^`iLxS|(TEB>91$H$mLIcqR^tw^o~P zRYB@2JwP%hE%QsQPx(SW9L-1nB}!pa;WjbQzxpOvP0T>)BS`{XhW{#%A>e+tb-~qz z4M+$`A1;4p6ksogvd0F?)J1B373wb7bd}nEuqauZ8m2E2Dhj`%t#cyu(ImWzY z^BWJk^EGVh;1l2=-;n0k%Y#I}PA3b-KciLUUr-JvDApEx-E%Xw=0^O-WJU5}#w;e!V`)k{* z_j8(&W*Uat?||gJR?I)obJ3Hd9xB@Y_|4vSka%1(KllptqZ9U zMJMbV6wj(M{PHL{Gqa3SPjxQtWYPp8Bm)>0X^HMH@TCIT$e>mD&Z@K9+ro&{>RG+l z^(JdY0?qyoB^2D?P^pu1c`io^&C#EENT~Z|Kcww<q-(T{(QRc?RJ3b>%0u@bvd3guh|!^Qx1a!|y3xvce7n=BNl*Q+yWj_)#8?rp^GTL)-{2 z17a|$?9%em5J@>*SzOT8Nx$JW5H>iL2U}rK*0QP%@K8zKR7H@c4oG=c2L-CG6pJ>Z zT!Z$7 zbYt@-v)|*Cq1ws%Yx0b`p-*%~KTMKiihxF+Q|gr2ddl#7Mr7eFd3&Dst+W@(j!o~& z9QzIM8J74Cds6mxM`KXF;G4wMI`)rfbK%VLSWl`s@C5sF$68dv^>C!H0qKD{ZbxB3 zubCFBM6;k;Gs+clkXFbq9+Ob8sf!({>uUK(H%tzF>I5>s@o`uMJDx2;Ft<29s6}@t zTZAc&4kfj-)jzVgRH{y`S=V${S|U|B;rB&=)Y79i|gWV z{$d&Y`$~WBaNl0ERHv6jyVp40(kFlr1GTzx^tfY*nazvV!<_|9avbJ4KFOvuw`@y+ zttuRDYuGeN(THhDE}Jt0_ReXV>(=NYuG^U45QT z!aM4=`<3_E*>aN?2f220Ox!(2Kj)SmOr#Z>FOuV2t(5n*H!D30{ks~8;(RB+ipLkVRnQz0P`EW?^aUL6+gjiM6On!s^ zx8|NjZ1WdfK~xoJQDiQFphaQtpnW7Y?_)@cD&@(Aoh~K|>k>u|GavDf8~7Ch3YLn5KLQ zk|JmR<8??>W=FWuz$COGCq9)g`+OSq2xIwJxQ%CDfs^xC$nDr%8O6t|V({ufc~J3{ zMfJxD2do}EvC3D$Z^>*Xhx8{Jrkz}m8gV#aU+kJSyM3g-Q#*mUGWjopt=0R;Rvw4YaM$fOJZj4~*G|WI>VqOapdt;B?3 zYS}!3=BoKtQ@BZu430rGn+pn>lSzTbd^|)c-H3LAwGRE`mFFm{%OoxIi!v6l=O@lB z788sI<8yRYUvyeDA9|@zpkuS}YrR^Fxv4?MTTmfCGWLWvsa}1l=SC6NqKQfzRn_cG zca7a?U4w+x|Cz<`$JE$F>X?1BI6q6@wF;y1Is%)k z2}PQFOUy2Lp*BX64AG<{umX{RQ)#hNUl~EM7Oa~XRN}pza*sLq7M+}MvpX3@kxuAP zA`w!OuSM=vn5ia6yqkZ|@tXmYfHSW=>hhLN+>$aa2k-l+ z2;wui6Magi-cJKq!celGN2B+Pi*f%|feZ6Efb}!lT5#-@$Mm0FEb;R1dW=h2rd!L< zbBUd~T6?%gsH@gof#xVBi(#71?@6=Ph^8O?-d{g1NzRX*%`cm?Ly@Vg-CJNeQi94@im%{`0jf<}&$TJIQ2r?$LrIFM5y|%mO-aB^ zfIcTg=y~F*VGpiZj{kZp3%wDCF`poZvrZbvX`&>nCUQq1PXJ9-cYy{WO&J@JS8xG1 zqa`|TWg?mo$C!WdZb#~S^6#srkE{`iqEdXcD{yd<^;pi8Y#+}ne;kKeogrZ>XW4~Z z=Xb56wqwg51$YIgYgng^SZ6tC%uE9AHa(|1@lZ97Ow-wqGhRYd=Fx<`patp?hSx#i zvfxY~Cd==gu=0}JRl4ZgT{py=D^E*Yec^{l%)Kk4+WTD*1+dRb>j${dftp8F6?>-) zGbDN`>A%0aa=1D=(Ncd?r6hcvn?&X>@tbMY0p5JsWRs~q;M(+Wnzy1%oU`IiOt4f` zCeFzUe^6`))MdcvYz^{+W>t|g1X5N2IaEK9GZuq-^UG)gJ}s(i9f=OCc8Mm&wu6U{ z?h%3f4dk=sx^8&RQJ`;=jOY;G1V0bEpbhe0c{oQuUa|UQ4>}Y=Mdz=j*}z712Jj)Z|c`oWT|T1;)y&?;$b@C_VM*N1X@HYX1cfJTAwN*DwGZ+0H@g} zbK0d8A0ui$v6Ge3vnQ^^AWK3=;} zcdCQ^Pa_vQt7cPPY>d&i$^F%VJwNJB*MGgA7f$MyOlCxx2a9N&_zPWrAu-`DNlqOf ze88dlb5i*9N+wP4NIiZfoPBl1%Au}xK;=2rfTPw7~urAOKq67 z%Kr`j@m;E?S9&&79fLG4sows%Y#GK?V~4kCLqJ~sHQd%n zKu{@Uo-=N5IUbfY^LqB=;3Czef{OFU%(nr zlvwglRv8+|h^;El5p6!}PwzU(1vZ(8k~6Z?uoW*1p9B~|RsEejHe2ULWiJZkx?WOe zK&2i&WeFRTNP(|C?vE;S9h-m83nRMV&~OBYsF0^eZ$SJ zJwTqCOxA+DxmUO-9t`B6s$@e@Gf! z#i0%SMZ$HHOSnsN+IkXmjJPqF*yvR7|1uziw`+Bny{@GWH!mDS73R+mE~)DV>s|Eb zytjG`_`HYPHwGzu48JdnpNM?9V;D{N8&uD=d`cd#k%;54z|e0Usv2h?O$?pjs5=k; zgrl@Oy&suI2v`N*Us^BnkAILJ@SGA$5}xJ1i;yOKss@A0m4TG_8 zfmk>K`7Bwl(@*6PF1nfFMVP|mOsvYxvXok+tyi9;bTaZKko@uv)-`JR?^Ak%#I>!onxPKLgj{k2Vkstk>wqec4tCW1X>RL#>RMZt06ayzK z1?toZKbBKj=6!Xqhv)MgaZB`80RrpGyoYX5l-31$O zkc*@tq2sixpI+gQu2KSF(xt-^`vs;TYy+t92Foxv>D1IKeR}$Q~*o2Luyx);y>;RUNLZ zB)lqkH&PgOiJ9_J(dGT^_}vw!$kC+Wwr6J4i@P4ak)O_1#*8h?U zv~qs72J{;c2-h8JRA^o!l~!seO)Nyb9Zz)CEyvlLzjVwn_A}+wyq1M&s=Ew7-9;Bl zo}|$AILwNSQ{{=#CH>h;`#6t zncT#ieWX%%WM7Mj{mD`GRNV{|3VVU)-%|w^JErSYqO3fK$4Vc#5GeZ}XJ)WI_Yla= zBI)GB@%boA5(x@o1m@eK4|XyLnd#9wk?0Xi@Yxp~lpL9PkO^bEFWQY#M7a?EI~R%9pdIcJNQF7Se(y`gky@Ayk(+ z!ob%h4Eo#y=RR21#OdYXgJ}N5DtnaQ zCsrC16IuQIrw`B*IpGg!mW5ub&s0vkKdORceTax{WGZUDC#o@C+V+Jt@74wLsSl_uBuG+R|XBEK0#|Th_B;2ap>TIs0m=)l%4N zG0jVB6k|mKl2d1)*+QTt@|kM2%&AE+qdXWi*n#iD-9oVB!u10{zo zZGSe8-se$#7opf~s9oom8iW8hz)3g}Zdif~F8zqsy~&q&X1V&Ib-I(g^h< zTJqAGF;Ll@qP?pE3~ngQeO+6tSKe>v9YdwTTa>!=w4haD;@GU^ltP)I<1f@HNoCrj zXuD&F((_yYDWf1{&){%$<^CaY6hVB96ROqCPn>bK{v8H@muxo8-^nmcV+H$zTy!!t z`x(~1HERkvb~uDuq>l|jTM`>afwzI*@=hc{p zSv%st@J_ZBQ1(5Kg1zg%n^#I;>#wJZl(~5Ff zrtCXfpF__FTape!G*PWPc+AMHuO6V+4+jF*R!nag^=fRQ$K5v3pptRsnGu(USK!T1ub|l=W92$6j~i9KanoKFwFGnwJ*LykUyNlg1j2cNjD@BF3&hrx&9NdheIEC zL|pCmDT$_Jen|*sfjq$U1FGpY{{k16PS1k!Y7#KprfO7NR(8jJ{Y`HU;ZmY2NpehN zKQRIsD^hcJv%XtHLb5Um%!QFxtqkA~e<+5*6+A!!_4{l_ittkGd@|Le681_#g-@zM zX+S}LZt_VT1ImZzPWeW<3EeY_QFsMx_^RCY_`*v}D!x{wxAl!UOcB^Qh<&^!+w2+- z>v$-gy*hgQU9p?vW>$4MqI-(w=*W#0&ippa)L-)nS6JnNbNpTway!+uN%N9&J!_FY zoN|u;J*#duXoRof7X7mV=vN9x!chIK0OaMg_91O7Jo|nYWKp=cAfjXus70*wII6)M z!@}(sI2XGAUNOpdkfy(dU_w@Mb3mD>6Wl&I$!#&&pg&G@Egy`W+26#z=IbO0DkAtGmBJ*3ZFPJh!g_07v2VB-zFPD` zuuRgwx&I@f!X&sa*RQA<;|+S%baF{$JcydKFOtz$sJUi|{xrLIS^5J;m)9OkgGCO$ zJ4qyhskWdt&lWL>J`Nx$t72d$BRGU`8Ri^cGz-kd*C%8?$O>G5apI}v0FJT^r%hn5 z#dh7ngM}3j<3ob7;Mb&>CdY?jHynW*fw+&*@r`J_A8iEJ+k#(K`nwe_pbghQSeI_w zFmD}*ewia{#3)4|0$W{LqG~%o7anIP6dhE6C?J;OKkLSesn$@+@DtR$?2KjC2H`}R zh9*iDAAzz*9+Ta!%tOhB@8w6U^TKb|1owtlwEVYMTeI9UR~xDdMbRllEt(&9|e@(`rrU_Ug$1AP1%fF zfB5+f+Zx0e%wtSm6Q!WmR$7oEJ^|Dy5ONtdS5RWy@NIqO4`?OOmWZ_AFy4j8qh%2#vBt$TnliP)LX& zSqCFama$};!I*KL(f6G5`v-p4xz2T+x~limJMTR2^L(Dq=lcMg#KhIx-`mgC`~E3?80^%2U+;Tvp3V@+ zgQ1LDE@ro8c{He_YuYzrBVOL{zR7*))J^Rt5nM0Cr9=+1Uyl{R404-(Ij*a_pa1*Y z*nRQw5l^{IWsb(N4jh~m$&P>YE;g=>_B-^QN8e}apAJT4zvlGE)r@k&!G=ReQ}iyH zDn=arpe=NK>`_b8x8IYpmm^ul?nBrQmERTdqo3Xb*$7uxmlka}h==TX&~xMvq`@$~ z;k*EP2Rf(y+ICMw)Sd?a7b-UnMQ}kbhs0~=LM~t36Or*s{1)Wxe#q^1r#ll6lXH;U z5~x2tkcfQU*D66ms4)Hu@}Ne< zH`3 z@z`Sy=jQ5Jc0}*onP5y23h!TrKz{p&cQa(<%K0MHSRxRN>@$n|UG0y&4WK@`R|dUY z33)p^WU+dmIXAkP=hcIQQiQUdTrBc}UF5a> z8)IL8tQq785E2hZ-5LIqaBUlRWM^BjN3==*PPL^J*MupDPrOdr)71+(qK~x`&o-a= zxpQ}%BtzS$Nm7J-a@X7w`r=%^ozp(b4GDHj|AuiY1hP`={pFYBp?wjqkA4$^c9yj0 z*WR9iMBLL)^npO^b;M-N+RC+B4nZI~ZzH8XUEyE*azdtoMc~VU;V(zFZ!1MdD`XGdl&>6I{{o-Fpdb zd$s0;+IPr>hublqugSlREHl;kb+i&zov+Lnbv64)*Ij@4v;>~F>0Q1Rd>T)cFwdBn$ z<4E9?V-JmmH7Sd6JceD6sD8dzzx2J?PmZ5ge|p_KJuCAeT|tlUbW-ckU5~PZmtM-8 zlKvh&nK9Wod2y0|Qe?%3HRH}@pZ6QL#wBmIxnDmy#XhAl#p3+x!WHKDH*$)ylY97Fd0nY)B{Tjt$48Qdj8eNSezwnEn@OG7 zw-$7iEr$D1ORS6J$@CKkPq>^6I#KeC-Y0mnSCh8Ef_600$+uf8VwqaVed`fmO4y){&wn!)5-D&G9n&qg)sq zg0)XH3O-;i!7g6EXiVXG8dm3?%~dl{Gid4f(UINJ_gXPsL%#pQboz99e>w?w+xmgE3^pHI<*Z*eX`O4e zi2dvpZGFiq#}aOBSAMl9qv%XuZBcFB@w{rIB%{L2K9|N%%h*=z2i(a|Qv)o-Vk`oS zbac7H>w;@8Zd^>NOG4HlpV2iAvY`i$6$)AlhWl0ca;ciDj;3|KS=2%{ucge&xmXg| z2?G}=u$=8@o7^&PrT1KO;dQC@d$bz+dK=RMy(uvC^z7~PN3-hNZse4S`FtQpHMMo_Nys!YX<^WBkZODDNw| z?{@ctF`Zx6qVsq@$a2W2rd&3NHBx!`_X@jIKF`xLE1W@R;#q^g3VwAFmFrgOjvav6 zN(mXQ=t&udB+kG1tQaiTd@)C6sya&I!}HGuYz8Cgs+l}#fu|4`G*s*4A0@tc?xS5G zVwi+=nREGbFR=Zib95P_+3N{TPAK_ct4I0sj|Z&Iv0}AzXUwc6`=t(+xj0+gtM7Q+ zb}6MWQ@Uf}M|m6Zx$>K(tepjpuN=PD& zdQ}`&3ejs^xL}c599}0LV(1ZR|E2BWm&!dJ~elW$4_HL_xJ^ZrbLt#_(UBbPe_h$c$p3Ag3mQs-VC-s;Y+u%?I z8_B$4VV$B&luPZ9B-TE{!m8iZt5IA) zdIf)KnB7e1lO|s~)*_5&WGn@pV^d;-KYR0S{PcaD;K^C)VG>n{O?4>nY3Rq_2YZAA z1ziN?+_lqI(ypf8N~77_v8gfsq1oLxHyW~ijVKI#qo8gTe0|ld)op0@VNa6F3gKx+ zat1P7c60bPF&i5??bJzfhk7s7u>1f1sk`%JTJ5u1r|n9W|4JEgiqoRXBCSN#0Ws%4 zr_M;~F>a}SQ=3*?ZR=6J7*bamdXGBGpQ+qAvQ`(o%(K(in|VoNq;56Do7zlWC-IDg z`%2I|+iM4dBo>Q48-I3KyS#8^5H^DD)v{p>4=fF%+#7=4u67S!qq0OlA~0U8CqQ8b z5?&{?$FRkaGgUM%T^iT&rO$5X!3cK=;+edRY({%AFOOXKMlZR)v-?#yCUqq>sU8uQ zL!WCPpDZDM`}$1?-}>O9y#1OvZQ)DMaFF2AI}+4*GVByea>sSEbp2LW9xdr)Qqs=; zeXmxxoi3gu0))wO=f*W1$PV-O+q%3Y@RP&$^{o6L5ZTkrKYJeJXa#~F9`x5Y)ICT# zc#>04c=++>EC}QjL|^BM*@L0^5j$U^IhL{)uTEO8R_y)XVd^;u^t|8wdE(`p3eV%py_Pss ztSQcMOZzgdWBN-AN3LOzOu6*?1EB8ofce1Cjh1nh6v;R-eU8TyRXZQ3Mc&>&6_BrU zXA2b!b-hiw5T0_iBiq=XbWI+B`dU(oj5Xy31JJ3$#0zcVdvPJCFB6Akb9ChBm2^}*Ga{`kwb{mS}@ny1>z41Ovki|LCI zRvG48(J!6PI$JT!Q>K)ittbRs$p{uvzn~!bYf3@Ew#b}*B4%#~X8jP7g&`V)T0qdy zv3flUEA>0H`jMS&!p`>{I%&t}@9--9lD}!Q!<*JJ0|u>r$A&@Lp`l0`!7Gz+SK*Zs zi~h>(&FQR>EEMA`m{s)la*OavzXJ*}PpAkjj!weXC~?^ygTLgs z&fGdxgxxI^{~bNbDD9fC>qnS1;}AsL_0r@K(HA-|*0`tK(%jcKR?B3vjKw)$8|8V& zWp7*{tUl|L7X2N!U_v{>KTdYSX8%IZN9}IcMQP^li#Wa7`%6;*r-9e?D)=&?B6Rd? zfE8Oif_w<^?m~LU zx~t5MeSa@LuZ%769Df|~)R6gYqJ1l+QrBxM+5+BdY_AI9Xn}~k@Y*0;E-rgXD>HXC z!78P0jnj9ibn~{YTY_)B5#`d_+5zyq`@+YW89~4_zaGo>1mVHuEL|F)ZJ_0In}|gg za@kxN4ahKqp9!#Q57SJQj62i*Gn}In#4(6y@uXI&vsJi5%2Wc_3%~lisFlexf!nH! zCW=*Tjm+5`(-dXqDHV)Ka@BXk^Fpl6$XbpaRXm4HXegObOx|LQTczB9!*9ZqWm0dP zZNJHUq+w4ODZuWfvz72iTIrAv+epchM-~)34MIK4Omz(s=ego&;p5?#7N`gmuE7t#?=8Rw=wz zDF-Av)+TNerP}{J=k)IU>{0tYX(y4n);@$Ew_Y!Tk13r`n6Uh*FydM`o^{%nGe#~| z8QI*waO*v}hBToP?>}xt>eSu$fWN}ygwfLd-MQiZ_fnq&6zsXhYj?v;rJ1(Pc)H|J_nYKon!ZQC|CH%nYxTtLuf%d~H~`#kh!4g~sd zc3-&V1m>q!)uUn&xa{N+z8GRU!YvzNs=)40WX|u1jUjG@z~TCK{biOi?+c`?WO#1& zSNhvY=qGN=h|0}}&Q^sv?5TE%VDd(vg^@?2m z>~(H@$6sjbImoSo9Ya5^+npMmNhLrH`DzeI=CH>8Te32f&=)2uc;kqV7_4leW0lc! zH-~G54M@3_F3WM1#m2ui#WWr%Y=Ny#rkMT;OrS+Bpv;J^IlyyE&5>DWBWSVAvN^_i zWc?%*Zbv&mjFT>PtUx@w&$R@a39{0f%_w5l!6LO|^|OO`oT!y- z>dN9st>%muk&;(lUhe%)a_g$Z(3*(G|940YCkk>I?6A7Zh0wt)%rwnr=91D0;gDxt zRoW#B#J90}ByHWS@?)L#Mm=j*T)HKditTtZT_mdoxymknT%$RV-<>`|HO6iCAc)CN z&VmuDi0`JZN-=$Ae(LP(6l*Vg^!XkU`xA>0mVELVn!O;FLYa22oD+t^Uy(iB_&JZy zW=V^FQ97&YmRoX)%Kc|6tcaz5Y6zP=tZEtl|tv!?Y8g{aF|gss9&}zve$NW zk^BgP0!*BashG1>o2L@F1*P|UOp)V-*SkBTM%sM3FF*=<(yX19JFE2w!F%S|*L==%awR&y_P3)}xTP`1k1*%?`YvwTLYt5QK(v*0F17UB{&l;DWn6Q(ukS41x1m!b<{>RU!}Td_ z50X(xo5tUky#UZl>f+2Fn)q&RO*+WOJ6s^fBS0 z%FqsN000SyGQdcKp5iDPk(9lpZ7~^yO%3~THzI|IMPzy8EQ5p&0FG6P ze%ig8@EiJx@1fO-u9Y}YINj2`_IF^{A46-X3k!k;JQi5iI++`1nXV(e%!nGI6EKO4CS7S+3REDQ?!)FJqFey#Tm>7*bU%?`RRiR$0xng z*Ub9A;BegwHeAu_A!~Y|P&eP{J~)mR$_qDVl;e0E!B5I$oG-j)mVT9Z2ehmZdmJcG zWB;)2Q&^18kklPJefsq!5Hlqfg~^k_jE|CWS$RFPNd*P(3kvXQLDjZiX3xk-C4v6y zery~`V%2a&5$1i&AEnQ12T0g#wF-^3<${8{npqwm@v>l?g*gjlnErB19h;f1m-ehe z-6m&%YDRc}z=*N4mC$ziGT9qu$JRs)EZ4Sesj@DboSVBoS7Yzcq~~4v?$QCR*9Bg+ zGVOPj(p%qMOL#9C$KYq(+7M}(-RC15Lst4xW&q}`Oa>+0z7lQp&7FD{nSt)g5(H}n z<=xHN$K6ikiJW5hSyulOm1yi%gV`3fy}GpHB{nCVkWbDTFE;wrzgg-(CtA|i z+eBDVM+JO8-)}KO4(z%dNVigdGOq+&EgM9S?<@6DcA}QR^jVL~&a|=nzv{fe)<)mS6!t z1JHivw5rwks)AuwigWPsf~yuZgO493>@3n9z^0Zm?0NQt6+PA%A{^^tMH!-MI*{s* zKP0kmSke;cL9S&#Bd;$DKgoVxOtufO>p%FX<<<9}OBUi>C}-*cn_+@TlcP5ME4gwu5jBvZEH_V`Ra+Z%uo&b0ITh%CLKfj6S&)mLf}h1hWM5 z;yYN9hc4tGhT~c*OH5=vg?N($i=)R#dou`U=TT& zO-=4~;abwh+W~J_(YHPya(FiPZ;TWj7BBB#+7izH#d`^n^qScLw)}&4+OXelk}^-T zX9D^INRPi8^RauV)OpR8c83nebYa>Y9i|pY{W!zYx;o?`qJkj_7CORjT~M%9gCIVG zj8LLRmDehIhql6qsasB)Zv$O9y1U9Km-uvuQrj>K2k#?`FkZQ^Snrm1A`HylWz6%@ zQ5RylXSzY}A`TP5j7$}--Q3UlsTVKG@$o68T|!?JpuD*38PWDK2Z^M|pwak;3YzbT zz~P9s+kMl=q6v8Ik%I(H6KHg%(%ZgP%>bDIJMaBe%=12cCfg6hdQHhU%I`&y0mN_V zQe*(#F65)IZ&+Y0@so=Go@NJ?zr30{ladQJ=PkAFy>@!W2FCGexB443#iS}7!uHlF zMfDx#D3=MfOL6|C@Qh2h+l{>_$!6=aEy=@1auEjSuK^IZzwFB=^T%>L%8?tOp#&Mh zFmW=u=-4s1CHfoJoDJUi`;JIO4KZdsaAf@tu{lco2pbZQo+MTutrS|0+;Fc9=?fU~ zs1<~sR7K0q&9l~_@fqw};>_i_e{{E)T*G?bpDTQ)d-vT=P+IO!?1Dx4;5>D8)z2;M zD(D|UODnqcD1fHPsPiPgz=U^NN8%A5DeGyui-k>~u{8D(sE?o6_=+y6l_D%)Ydq4E zYs<(&?&LdKkGgc;Zhdx&?@n-Zbtt3Ppv6C`_bIKBLJqCxK%c4ktFy=a?`#*}`Otx6Owr&1u-Y^47_y zp|*k2fyc({)b;moOJKAC`J)T{;WW?M6C7L0%*k<8m;-}T$uV<0i zI;ej&m1;A|kj=g&SkjBdEdgld(gsqpLTgZdqcrPlS5z9tTl(lo&`b&wnKiKg*Jvdv z$AtG!#bkPidV(C`tD1oaIqX7)5$Fr_d;FaS83}cfCPduCfRf`~*Rrd^SRA7Ec&xJF z>Z7cx9`oDKBC_W1IT5W?yNN^V(0;@iu2qCBdZG5KPi>viaTRj&^IW(0ZhUS;Z2f}! zk~Rc%V-d!YDNMj5F($z|tR&)?Pc37!D`!@A{2QaZ5r5TWFxRTxxorB12J0eWvDkwr zS%0j%{r_kJpL_z6B@OI7@Z<9r-5bT6u40LuM#G~nhBljPcZmHS6A ztp))C*yJ|sx{CP?4nY`zVG12Zhn)gGhu^%Z7Wqe{1d&p{f>nM{6M}s{-9KGLuk$!f9?%woeztMV_5;{YOZDxWkqJ8S-pH;KD8a(&&t>q0K0R~-r58Xu0zgBigyb;^g zh3^YThOw*uk|SC?5l(c->T1H^R|d^TiLJ8q>EL{%i^U0V>ArOzo4W8HPmWN=p9+(@ z@B%{&O87z~SOJK@5flP!P=Oaq2kH=IjV3uoS?5i?0Sr%ZmIK)e?2EH;cTO7!u)-F| zv%VA!q=TOp79rw6#Dcy9pi9t;^e7l3Mi|$3o=S;(8 z`2NI5jnk)(hsade9jhY^$ZycUnQtxi@J#(e=!Mz5!CVibAC31hWj1h!Fxt$PBzAuC zQLXspwd6AV-T{m5;(g1g6z8*6DeLg+ny?v-il4(VA3}Cah%Yfp(v)?C+;Xm4-#Obq zV7oyv0no~b?zapsjoKjiqHtlsmTXurPMBsg^}y9Gq0$?TP0BcA?p?FA74V6BYRDRG z!ek}?tMa0-$iHZo2=e9a0MPR|TagHZF(df;HBICP^t{?A76F>Yxydxr5^M5;C6XQW zqwTky;|li3eg?y7@uH@`P=Pr$GCY5wEpK!QMnqh4rCmEifwD zzGbJFp1!KSBi~-ORGCm-^xZ4%kNJS>K3^Nt#lmJ-lFiU#F*t_qG8{?P)CmwLIuSblt{Gx zFpQ&*nGwmw6Qc9LH_?F9-etk|-IJ(WbKEG7*gSD1Cj$anpl9YXfj?@u9Em`Tlj5R9waL!Dd6Sg%i zbozmPkva0zsDh!xSufa<$$4ScM&nB-#lS}*2*TV`P`-sq?-;ln68|sBLSHVl7jcifr5!WBP4BHucZ}~T+8R4E0fUn(jG2$S-?dZt=`gqu!UjN>`-ilKac4HUCc4uPH)VMh?ic2h zW8!#71Z?+t55^SOsS7v5AazB!4f${Hm&%VdWkp-pZTJk)4u9Pp9^WqRpZW{1b3l4y3I9fFaoSAeMF6?uy3m-RC~qCOtL;U-0*n+be;VW$*B>*Xy4$ z!sC`*+h1Z40E|v&xvPW!hrHc|OG2+qB0e8`C8rQYiQMS&OBnR{O!kuM?T_3jDhMbN zRi3C%`hViGB)sU2yZbF1LhW}HdYTc7XDbM zA%!`8ki1=4;_u17BIPAb3^ONdz)2U8Yx08F=G@Ym0Bh{|O(ifx4UP8-O0(P}z{_40 zUN)JkqVQ^cdr-ll{_Cf+O#lr``yj>~&fn7AFVoydX5V@pGpxkk|5(Z}ClIw$`Yn4Y zZ>bz_w?X~oyzo9P5O`d`GV1LHT-Kf#6xJO6LgV4wWouh9L!W&HnR8PBFO(@I`fz(|iqs*@A57^txR%fa7c zzEP->aa-wAJBU<`tB|54oORJ|r(vEgSra=^h5ATVwE_u~MwH*$m5U=_Z~uXYa^r|P zX&ueL?;jm&S;he~_$Pr7aB30eLwnOj-sR6gR%3n(L;&6&zz-jbVrtS@gB>u0(Hj6>&vnZLAheVQJ8s=drcq^kJZjLk{P1Dwc~NK5`im)}z@xtYL07vg<;Fuy_n z@s+h--|X{ zhQ7ekxpCtw<} z$WKBorFX6REEbLx-Ez%9e>DtaXwxWNnyzx$8`CsWg3rfd^CCcz1=#HXc$Z4Ulg?6R zF@AAH$LcRh=>1I>W7wQRkER5MVMs7qa~BSwat&H3bRZa(JV4=bR}@{r z3x8UGhTW*GQgT$7buJJd%MqV2aiWxl zjrFWpUv>nfk7L3i(RKGVNwqUfOkvYO6x+?4C zc`ma}a~@*IJHVd;4uGjn4c{e^8Ux;SApzPb!0b< zgmxb6(yRhZ{cKIZBLzdwc{Tyox^?;5&(NH(=*=#%$n>O@GdH=S0T0w#CSy5u<3Tin zRy)Ewp~C23$-~flmz-MWb&Hk;u|+aGM}Y7MxJ?`;;4gs~FfZU6MzJ|X(Et)Mwm|9w zd8=>PHT0QqlJL9H>1mZih{9TXGms4a?k0Sr+ZG2Vu!lG1m#}P6qu?WfHmAI@y!S0( zuAA7L@ye<#k{TY(%Ej$l?((e-VOc64`5S!Fb!2sjl1=3`4~q?nJ8vtoW-FV@7pqmu z`yBhM(c-S~ggPf{(|Reev{X*VA&^4}KHHlq1{l_548fOlgh>|@ceB+SlYF+QvfkJD zgT9jcf$e3N;#sdV4~wzR-Jq^=V{5-DtugQgKr{gyu{S2-3Hy=Scqlz6QLJRwOtVF| z(0O=HIlj(&aJdp89Wp$a$$%y42wlvtU(ZtKm8mtCGX|163O}G!>|{YCQoH(;$rNSp zKn;+E$6z_0AUq;y5@ycsHkm-wHtf*@RIDt|k&IzupkX$iA)&3Zrfo!{#H$46PHJ*Z z+UWb<60uLoxobtaLyGXtuSxkErtVpZ8}ya~%``0vcxv!a{9+Gf;Lw6GT4;jCx{OC} z6w%jjMPs)ZJ_6ph+dmPUtSef*mUN%uEDtVSUYdHUA6ShIcC%f7#~>c_jI9us{2JfU zP~+Tayt?@r+5{t1UP+2wOY)BMED>X?)E_k0^&&|V{LZ$o;1mqywtb0GA+X=--vZuj zAf@#=TFd5B6%3UrinU9}kfFa%(4NzCb?q#^TqhgXk+vp&*-KhF=n++1jtUZMhw8%) z?G*9Sg6EX?jH`s#5dz=e1obfNkQCFRW^~u}rUv~I*F*H)$$;pMazKv)z8aZafUvpa z04wyUEVE7RQR2e*L>Dw7c6@5zAk__T0kw2ReMj7|XDozN*>T{@#)J6d!e77n$N*_c zucx9sf!Kvb5W}@_1dZJFC@kGj?%p745b7zKGUa5h>T#g1?t4xh0r4D_>K!5Q(0+S$ zI$x&Ue>Ac`DEM3_Fqn+V{)=2!ivg}Qvo4FyxeJCp+i#g7!mw-f1+Kd|gtTFgr@`mx z)Jmsi&iPq#l=$M)i7IGiU*rSfrls<8hbq~(0>7%V^VU_}p~BhBiP(k4zfR`Lw24L| zAe#d)7vgcD?bh1w(QozwHoynLJs#K@X%fwl$71lAMl&CjHG0NZ>6TKB7Ev)UPCzy7=3(##QWHOkx)y?g`rtr)Xb~eMkt}VF2pem@iVueim z&A4p#h0TwS!`M~@96ayN=a#4TW8I&C+KqoW5MD0w>!H&OKX1#4cPu}iG> zDB|W=muF~dz=NGN@uMZm)-s!`Ix}CJx*4!J+4qBlpnlzpOja%exp+6RI3xyg+FUG^obhF+{qB&2t%^Cne;X@Ow6q!>M#?E-Cn2`_u|G z{jj1k4NaUNQ13yJ{F5d`Ba-pHWgsdLR)ulM@}{gCDnN*csQt&K0i)3PQA3ve_Vn}H z4uIh1c@k~bTefsSUE!>~r22|u2HS^uBrIuRumx=T?C;L189=E3`T2;0;IZMUjZarT zvW)Bc_;u^j#%R+=*RfiEP5`zRkl7X%7KypDCAy|M*sqr=cCred#o>*2%P~HKFpb=~ zAL=OMFQj^vT_{9YZK+}F&d?3vSifT+@Xa(@lQS*>K z*xTD{%v67X`fh0LBP&vz0TDP%I|IJda$ObE5;SOlalLp z-wxJGuI&?^n4~rX0@3}HJy&r3Q}YwV!*`6iv`uq7KH%bERsHCA!G|E}RCDEl& zv|MVt1F0@l;-6tcc_?Rq=WIApxNzzTw5byHz?4gFMZJFAisQjPK)wB2^TQiTVtBMy zY|$bRxui8v^))p^hp*Axha>+hN=jCVErvrHb(Ov)` zeyvJ4S?eIC?`sMwWZo@cN)qLmrE}sWpLT_JJj(GZzt48A-}L1!|@GqcH^Fk`sch`N^Qk{;9OQi27||u zY1w#_;=S)Y*GBB;lE1dbvDC&pr8AF;Hp4~_+DQHKZN?dN|7|t?G|L9}Kua|#vdguv zWa*l&B?&E-pNo-d#%aX+e4;rdiUBtW7%NDQ*{(!kE2y;Hgopqce#w8AbftLmrL&Z{hP!`(D~ zQp)mlTbEe6tqiDj!VmxHP@WBU8z&K*`g1GFMJISj_I7r3em3P1$ zhej=-mgSHK zrYTeDv;JF5Hxw}0U=g&wD}fF;kphJ9q(hJJK75DCjOF12Eq48_Vfg1-JKMKvijxLC zDPgJ^fk~~C(#NYmVURQHF_cwAayMr6>aPC?Bs!Fx18^uWj;ICGC;)an!IxCqd56A< zk6JinW8g+3xT zk>E@lZoVUnVr;sQ{m~F#1|MtT;A%^(&9Igz4bA=qQ`HQeTXNZMr;5p5HaQ!Y z_IbK45rSx3p_5sDB@6^>ZV5|I-H5*j^ zSo}p7NLG$KG}1&nasE(et8jKSgH21BW&O32P7O6H5Ix)3KwcR*vNpz3kn&n+B9!fdrc?-t}fuP zGVi5!MOR~-ye$fIFae*IQk`GV?EjF|ssq;U!Y}K4He-ghT>pz4*?a6HcHnLMK_Du+ z=2QKF7Kpc$0g_;wZ}mLwI9cZb-tf9)L)q_F^{D*pU-1{YGHL5w`1&E5GQkfxv=haG zb(_VH1q`!Q_E|YR-SkpQr<=jysHZcfVxl!#6yDd{`xBM8`kWeArZpvn__B&zd0srD z{zQ4)NCnXuYLx<9EEaBQ_5*P~q}(Qa3EKz&ktOwbjY9I)bbI@aO>#*+aDMvMA^zNi zw=*7o!Sd+RD$cSZpf(){>Gg%`t1Z%^K<0dtmDN5t`1+;uAj%#Sz7(zo7A{O?w=Yq= z<-GaPEv+9NVo1U_nfron9}cIV&mz==1f5t|Sg3iZpWRkk4dGk`U7rt)9xC_bPpvGn zC^N5gKZP%z|7EhROvE49cQ%G1aefN3mmS&e1c57lI)4u70SB*4jbHs zh`p-G)i>do?>lV&vaIACH*rW4EX+TZeM#4JJH>hM2>`gBTAsjw@Q^rRQ*R1n(DGcj zaM!dyWN-wb*n_zjU85hs;bpd?QNQ{6ywjiik`C)FmA%nQ1wKWPiHlOeYPK2YS1+u` z6f|F20>A^gOZI#Wu#*6A1MEK(f=Ee)F)fn>gmW&Gzyyj9!QNa)R#qT-aJLS_KQ6j& zvX4KK;TLW8k#_V3LZ6%!WFNC-2zU2V8>fKDe?9zTHq0^?%jeeNRq$^ z%-b_tp$1A3sNllJeA`+G$xpZ7(bL;|r-ZP;Qc#+Ch*nEt1q@WvH&0)Sy{ z6D@TA%$dX;K%_83-sRf_Z2`6CspY6tdUjXQDq3bFx{#m zrT#hZjJwo7jPxUJHJ>#SW@^Yj^AanSL=E5uTq5;aH&cB3sXbXqtxYWB4)?6CCIAZX z{>@$5$b*^dHB;*uTQ|yN)V_PTpUI2y6TS1b4ERdxN}nQvIOb;SibVY+Ke8I0I>B0j zjgH>+B>XGdARvKzdelHX$$Le8iKa-re|+OacorL6a5^|#9@L`lch`_J0=lN3noVZ- zxiM5?;K!rqN<4|2L<`%5P{DUGiy;Pv;+)G#h@k>M{!bo?RV)+j&SwIUoUz0s-r@XP zSwuYif?1>>YcpE>d}Upe_mB+t&6Ma&wf8dZdIUk(bXk`r*rl30yLx1rd2Em!?)cBJ zr|I{v5ieHYq^==mK7KLI=cQubsy6|%d*+0V&c?Fa3C-O?X#ftjI0M(?-3yyPsf?Ud zInArC4(p__Pc+Z8TyXpV59GaikLZfn?_iEVoXV+j{T)IENuHk98W~3!37p-6JB9iC6GgzHfuK z4F@6ZEGU>G)g*z0?Ca3#H{PG0wC5@_=X?k0^$i#;bANy%HNcq3$d!!a#q_T^ihPnA zp~5(2ww&iX)+$lA`qw#aFrGy2!B%@1Z=C1-g@m&UHj4>gOd`~N6*rlCk`G*P-nW8S zFw!Q1yfa2ai?6U5in)_KNZwfk{lFJPiotr<+Uxarr+{xngq1f@rKr4zU`vV$JpXH# zpFbuTgVvVSa?3)YgkzWZ$XHgmFlCVX$?0i!e%7awVh`ZB5_C;ondv?a4i7z!`MrAz zXz18imfN+~`jFbFuSAUV5O!o>8XVS09SLdabDsww8h}Bjx#`GFB?uPY5iWWi(UILU zZ<36K4kIgZ88WvD^I$ELSfLT3J;_Ur#s+n$Tae&jtD|83o_bHcPoOR2a>mqLR+nn` z_2{kjHsn;*0*p-9(cM~fx{UiJ4E_o~_1&a**2MU>hsBfqb%YfWtF&CY4k|$?!y|nk z!1y#D;2djP-8P5tuuetRmi2Z}?zEdoLrHldsu=*g1z009azB7`Y6P~iP&2ZRB3Ie5 z=t@}8HSD?&j-0(TTliy%gA%i~PAl-(x#(|yQdKVc+eI^!ts-*86B@9<2$ho>Z$-8!f^T!5L1M?5S@@sl5-fSIKK!-@9M|)WGL@x}a_G2$~ zxf5mDK?5AVV!$86tGj%&@GdeRcka-B&B=joDHr`#1HeJUjPUj= zG)r(&2(?eUF;MG84&^VE)b%%c4tAxOw1h|w&96~g3jvI+P|d(STu0ZNJ&a)vK4aI1 z?HI-k<&JgcG)P)or?x?I@(m26*jS~=VGYgI6{uHSN6?+2Af3>5cj5VC8m8%p=COVE z`Qx5=Vg(N!Fs=E_HXV4tMe{C>?AF*^Q+x&hm{nWmiMl6p_%5Ea;KAX*F(+4vXu<}{ z;JxMliuh;s9#IU;TIX)Wa>p&c0|rZ7(=h&)W#f>~AgNQ4E9;`qS;m0L5UgJ48U3>5 zj>C4E72at4vSWf_s0`6*6uW;JVWZtb?b0ppQt^annoTXVOyKIYpqt+L8@Fxc^4**_ zz=l#hx&v}qUDtw|f9H^S(IPI|!J-r7l>caRwURDVr`)M?eHb==c(`0(g+SDLJ&pX9(#9 z^8AJQhEnJECxa%Z$T+vh4ft(^-O@B$%RbgSkgnO}4bWBAYOu&yBt8rB6SXQDmyKV4 zg7CRhFH%NmO4N*?l79Z3X0JVmJg|<{4}$eh!+5LwxB22coU5=ls#;n*pw{C*aVE}z z4!37v1DlalJ;3rmt5Jks{@i_jv%#@J>e_l_QjAZy07idn@hgz4P|kF4u9BGuc^$$; zn1>~1{rQretL67(vJn*KS0_Y1e#OLVpoTXB)hQ1S!#S>*ijj|~I*9L{=phlqCxQ`rT0{uC!Bxs$vm~}MbccBdQN~k|=?mmGcaLn*& z-b8u(RtvhX6{phGdhtnim%9(_ zq842+&fDSj#rEMR!2zPoX{}kjLrRXVogL`Kl79u91GI9F!WVsSL~=PEyHqZ?MbVjg zGcG4E*hR9?Cbs#}LNJd#VRgOez3W|pM9OIRS0my@(2Tm5+(*1#A*d4oB*e=1nQ+(c z%)_RQgul|}z}e@B+TE;^HLy5WkNLZC0z;PHav++t91O&)S72_rde&l})sb+KfO5@J zzew-{gw#qiuful|gMwRXD+|ksO!Dq|+l%3g+tgTU9O{W@gA?PshQj7gZeyB;H&n{1YRj5 zK~X8wg6*j+!eb};Cpr&~W4z-B+LrA&y<>)cY%KhlKKU1ToKcz6$Wz5688D_V_H&dw zky+3Eh{2lvJ0|TXz?&hN>Oe%&VfcA>_IJPC^AiGR6vGrJFaoD<4^MmSV0hTV>tN^j zv`c1Th$7bhf`M#F<}!D;UUYD_QrciJ)?pKsStCegvrB4R>NL9Y+6IRDx@+2#Xg=^n z96ugp6Z?QfIF7IP&;L3^{RD-xlgq$CfgOTz+I2uyf%7+diIWlc*-9I33|dSa(sFOewbQ{MqT2dV|t5gbqC zPhNv1kA&O8T9Vn8&{9)OUs;14v;BxjVuc@bcg{uNem4s5R3e2f1%1QN#aKaB38e6C z+CW!GwD{PnV;W1$5T9=7wtE(7*1zD(MtZg+{>SR)tc{-dFO0Q%;@q%__c+Zff674e z<4s+fSAz(7M#QVm#p0<{>50jSf@6i~?{V zhk5c57`m%Je|{OXG};P|W&&ypcWH%aA>B>4M25b=v`QlbfEpJ?VOaJ(iDvlJ%Sn>@ znnt$)uTEymNMHM!rjg+K6VwS=z{ks^ zey6K}Y5PM#`O;YN|MUVBKz|_~EF{#MoX}jWjvh*%SM{DRM@7rV&2L?WxoT9vmrqEhULSITt1Kw>a>+a2aW!VGwJ2k~Mcd>@6>AAMX(*>vPG@A2^o)DZS~EIbEW7 zl*F@0^WOgCuot-DpD}s3H&2ULfXnW7ztQ+iqm)DB2S*a@mEQSZRExp4uK69>GxBWT z6e0a@+oIrQ#UXTg!fGnt8|eD7pp&qD{lWr0{3Ov_o9H}aOl+ieMOJ0Fb}t?LAJn~7 zP#kU4HJT6z?(Pg4T!K4;ySoK<2%Z1~0Va6x;1ZnRI#^&raCaRfSa1mL@XwpP?^pkK zF3-)WGu0PeHC@%+kL+jdwbp+6(*0>+G2UbN{2M&-Rtllt(akMP;2hLRGmX3~?pPQ-FZ7X>Y?Z+(ATfIm#8P+Jvjr;sn z9ynY1&!W9BAop;x8CO2$vaS#3W`6&jOcO*eU0~vbEniortJkCZd*_b$-cCOo2y4w# zJUluR4(}yHYim?`v=v!`I|z~%7q($~FO51|u<8Sc&+d!DO!&cc$*nLuJ8AJdAwpTe z)GqJ!dnzl8R_ukrK>yq$5z{%vjFtPy>W3Q_dkM&w0R4SDYQ5+Pc!y3v4x_zk?yKSB zzp6|Lp2WgSZt53QQiitVYF2nhdYh1)buS@Tlw`0zl8oP;XYE#siSG)kTc5%r^&+c} z?6U3b-9y`cpEA_G~^jvDh-~=dW z=Um(*a#P$kK%fg9S+c{f+Faf^*ui*k-e&0(`VWt$IyILU^*i$fBhJRz=fZ_*&#H25 z4PM~@FE#vxj@j3ufUh{WoI^j+k!vQ2yKwM%nRf(RSGRpy!}Nt3%*;k5_e^8VS;DYH zjHsUNuJ{!iTt^Ovm*~vZ7`rVBm%ypGeZP(3xOVdnd|Y!>Dn$x;d8Y^Kxv@ZU`7v&Y zY}Cv3eXjddc%>GT;^|STH-4nD%}E{lo9-22I5;>3xDlGhWtWeU5{~y9 z3#kHfJFn~h_|KjO@D_m`zA?7m*`LpatxR$HR_IY& zy1wn7#Z~SpgZe?f^~U6Y#QFL#4p(Gi``@fmGsWh?gDi0GV-k1Gc2pjGv4!M~jgNwU z9vegZrr?yT>1xir*%{<;1akHraCJB?ig|ete+Kf(XXZ~!*LsoJZw0(^ekW1ixmbl> z=UK&~d%}aX_8;pNlNBqUTa%dKlY1Rj_d{VuAf7NLM;v$h8end&x~YAYgShMxvX+cp z8$Rn>D%(BoiP~*r1w94SFJoW4HdL>=b}^lkfDc0}cv**Z5(Aax>Iw92u4=yo?&o>KhF(qh}k=hXEt4h8nT10itc zOIFhhx9k5CJZf|+=#OuYaYXOC)gq0AZ zvkv3{81S|KQ!llB@Nb9GsF`q>?+whg!U7(GuY#LRXTt*i=>BjAg`88SmCo&L?c$y( z6bm97ei<@*LFPo`THf$*d%PDaMu6a!Nk2#3CEd4FwH<^3%kMF_hLs>iW#dfiXM{ug z#AmMZJXg~?zQTvc5%E7(s}D&Nd$O30GS*yQw6Mj#O~w1Y0-wS9s++{;AjZGhd7Ynr zx4Aae>NzY%BR{@I12KyCD^I~U%E^!pUy~+$l+MjOls&w9P3|1K^}4At0(kftVj4qs zOA!{^e-eE%>YI<1 z4la0dKJ6R=a^j2op+>Y_Dz)f5V47HDmUq4(6HzH zxadpiRSwccGv5V0SS&mI9n~M7Ui-B^hXl9|6W$Dg&Nc<|q z`L|eiIAbeJAdSozsrJDnj6>mC=^#7EfckAN#qIs!wYRf0;m=ejk!488~qIY4PQsvZX9|eVauoLpKCMh|O%W zFw^ut_xnf{R86Uj-JoGzTrsf{c2u=?G=Jb2jJx;M`D#`AIH|1z@Uw4|^@F#>iP%Kn zb&KOG*QQVjVuxo3cMq#Y+mBUyr`p+8(%UeX_MO9#rjHYz(d|1wgy1^1sMlYB1$1En zS~OvMfzs~cJ7S@%;1#CLtGtx#WL}-+ifRXAktM!l>d>}^uP3@qWH>oI6cmo6o1tdV zRZ7-|Ap6{tDy#3VbMOMhJF48gEopot?8ESI@u!1~piW3g?OkK8{iXEPT;8Gl3_KmY z*7--D`#ym2u`BO8ht5{TP}M*CxfDKKfw1)M5q*7@&#yF`((=3~e|y@uOFtAfsU8W; z`n-hKLfQM@5;5GSJ+vHp-laYCQDa|vUgSFL&`wna?&gY!xJlW=!eZM@32%LFO!3vR zKvdF6=+vj8=T3-YbM5$K)PZ?coo*$5+*Sv#3PA zF3@oZcH`a&VSS#DL9LqIF0n8^%%-_dW;nA#m={W9M+- z2JV3gVEOadQlw6tn{f+fv|x3srIdh6_}#y|{PWMB-v`Zz1$YntJ?H*2Z~vVC|8#?_ z|Cjdr?@xB{Qu0l~y7H0jR(We%8+clg=;**(Fo{>n@Fi7}NP;fU3lfCcqeWc~CM}B(Z?rTlADE6)x zn6(-ZEX8jBhUY9O}XJ1 z=k#QML_n_s#&hmYh^%|krwnK3>3xaQG+WXx99)?}g!WT=y`}|G=axz(SR9yxeCsu9 zemf!Hn`n6O!mGkal;97DQtz&_bVaCh^~3l=Iif^@g01|Fafoq;50InRZKE82=%4~{ zfFw-0VXy&N-Z95gL((~|p5Hh$3WQzzAZxlBWEvX8&^N~U&2>Wf5pNL4z$R{kT2+|# z!OS?Ocz^rzJ=1@^?VMM(nI&+mOIY8%hYjg|JC$#sT;mo!pxe(v+m=u8oE@!(K_gR> zYHU7Dr3+#rF0MoP4WsOPRjBby8BR$k4F@7F4xPP>3^(f5*4#F^>@~|y8`04{#WlC( zH5b_oK_j9O!*&gBw`Pyd#EBN7JGw3g@r!7Ta^b<gW%3lQ@WX@NC+!unKOMH;e@TdS|YW{vLVtp1dt;<$AaL}siL zvTYoCQ9n~-b>45ek_)4TRv zCvTC=6jha_Ihfw$+02J?#lkF{GhIH-)Xf%-ekClq#>vjV;NzujpgsC`?%dEdOaGm| zc9O4fnYB7-krq4xu?&}6BbiAXZI~^PjVHcOlUO8vC%fBLJJ`@`cK)btoRF%Kk2?&p z{MaPxV-rIGVR?(~2Pu=%qDKLs0J>T7T}~rE?%9_7BEbIf^D>&EzN@F_?e;czHe~o5!vH8)MXD%Md70M7^}IX|Lr_sIy>QGb#L!KOy8zE9_OFUGF?w z_HavOCAHb_L}HPCzmn3tlvkmuIKM5mX(MTd6+21`HYOajj!{5C!F!o`qvu{cdn!gM z({k%qc4w?gUD!=VI*N;d<1qB`|xylzllZF*zAb5;mrMk3T z>s2*nOt5Yu1J;UglGslw`gejg3eH(P#mN0@#?|U-YcDaV{@KMK4ql;)k3nfUxuoA>4N8L zk&o*;Sp7pN<|xS#_^j_Y5Wpm;x)`Y>HP1)^FHF_O=Dyy!q~c3Io22JW6>;(BiFVlq zaK$HEEL(wYO&CY)4picMo%sGPIV(5IqyH{bS?ns&&rD_AE4SWlWoi@l06YdW0CqmWz zhRwrR6alWhBeP^+U8Y}XOV9W#uHNzhRz^soB8G^~as zguli{!ujG`jIo-#R1M91nxa`rgG$&8b4gU}dh2&Xx>H$lT9*j#t%%RppR=O-SNOXX zLuLL8_A57_vHy9G2Bm3TjJXqI?N1UY&l6M$IzzSEM~cBxZ`58ou_71|*q22RNrfhS zu$KEFu7A)H1!8;4{FW#_6?3iLzEQGTxYu*Ehn=eIh3NF}6!`}bgFwLB(EVTDif`r{ z?qiUPzQmrT4pZZIQ=_jP6ZHCj^bT9e!QU$CLBTXY#DoXc!KiqQv6+MS18Up|F$s!! zDV7NIVER+h?Q`1g^T;ig4@35+viLvjT%02St}~8Ugqd=B3}0ijpGytyCD^{r{&(SD z{h|DCCsA4Tc(Y57UdBVk1iO$E(xothNI;fF!f}ZXTAT}JG^Zao6L%?H%G0U~3j(Ag6!sAO6drQjn&E(Th}`pQEv1}D$$K#iG9O#M0|C$y%~%GmAG+cH+= zhAP_$vIJ`Yjw7JtFY-B)?>KJxFT6&xyuq$I?tHHZr`4t2&93>dA34?IN$~7V@}Y}f zDeVy`U((9l&~{5k03#SCWr_+@Sd9v6$QEcFt<>BjWl1~QQ5kD{`M@4Y7?xLbeNLeE z0{pCXl~2z4A*VEFOK{fbeX2-+@v|p2Zc$^yi-gJ;k>{1Q%tU2^n3+5HlH+(bmU82# z#~OXj2>T=k;lG8nPJ0V}^P~~1QIvh)u(BwbNs9TH_}YxtxR78gYCM7~!6WD|4BLkN zw?=FmJIlwT7#kvem-EwOrRBHfb1aG&HNeehPp)fMJ9WVFBSS4=_nWmpu}1!=;2nh( zXFB74!2k!?#uXUF)ZKfU{xjs1&B-n1IrRTcG_gO*MQ_jGhA$MoD}NrHqu40#+F zUN@$Ri09+v`&8T=D1Df8I*HQavHa!Aye>qBUy9>bazJFp{FAYC6`}l>ii*k{sKB0 zP58crmR)UG>Q$fCoOw0J6sE1kwAIx;5z9w%F4P{=8P+JkY1 znQX5SW1$C9bf(M<^U_?pQMSFi%5jg06m5R2x^o=3lkbZtwDA7O!?LM|&Y>N|0(v4h zt(2IZL95&l<<#G4mA<1QjDG-azKI(MNL@I>N?I7@w3+NkhOn0uWKCo#meEgbE4(Ak z2pi{Bh){SnWm3kVR)lL0WFGYXi<3J({Rg*U1Vb0URli29@ewaYZM4Z05+pdkD#9=Z z(AU{8n_DiCLVDAbY=Mt9Z6?|L0@3C}7nBc~=(BF4hB@Xn&CQnYJ+;@dE#G)}eLo5x zOAGp)ynw8pE(QYDL$9tH4$~W4aJS1<6j#zFig9)PMFJ0^Q31FK^{>V;G-Vv)UwetM5%pRs27$V6_rfk__~6Qs zUh16J75Z%t0%}4w^fux~o|-4fWB7hEVqxw1!3fm4k_DV+8`WqTY39*%RV&3$}894k|r)D=jxi! zgEvcg9%h~t1DQ6btx z@GBrnkK!#TyDs)j!sp!+G39yzimT22d<`01GTzcS6aALzQ)#Zev^KK3EQeSud+aL*H7o~-cfh*?)TAV< z;y&aCWdBXbL*Ejwx&0@FPNjungIzeliZT{eYWbg7m;FCy+>ObT!#D}5h^V4(!}@5j zJ-YflMzZpb)x4KMJ$|wWDd0Q*)-!njj2S}xRIhT)lR5%bzjXl2R>#jHi7Y}ijP7E* ze3hHN*`16CRD{+Lp&;KKfX;FKsRR302DttE`rdlT_|)P$cx!OG!j*CCov@%6yFx=3Zc~S*gzeRa=4Q3x(89LnLJ8=X zwr2X}rFd7@nk_sj8;`L4i3oeQ& z0#~(--EE!f?*>W*y;t?~56(9KF~etK3P>gHzY+3yk6MnDqE~98gCKzxD#@$`k^WC+g=esu+ zc4}#Akx2ub?BGMk&`G28f5GOs+>Cu&~mN`_~WTfAy zt}|2;g`w;jtBqglQGfZ2+ilN!(#$et`M$_06omP-3N3&J$wJM>tBDF-rJ!c*6My63(SLp&vAlur z6C0O)a5y>aOFvqihNz-6+N@{yE_A&0)zQ64*n9857gi>NKF)(aI!f*q#N49WD#FmZ z^W5qkXrQXEr@XJfye~*P=)J73H|7<(bFJhoYvC~}bMWOGv3Sj)w5^PHmJx`IJViDk ziu6c;K7|am{v=e78g)UTVj&^h?NIFbo1ZU!QH$C_!jZ-WW@L}!2jn|s+-v4My^Ou*ooco zqrp}<_Kw?=LdS-JpXlfz<<$dSoP}PL?Fa@ptJ^EPe$qqymgAtL+sC9VysyW1b!k`s zc>#9K+b!UQw7ZWN*cEQB2CFL*rmKlnZVCcT;6T+K|9nyxwvTN*Dit3kzxP`f#XXbe zq9@Q7=z2;@oMTO7*S>N_^OCoe{2 z5O{r-AM9AoF{bZL2G9`xwVCJGQF)tTVPujQmM6u9L~HP@yR6E}K+S$n-KFtX$&GmD zkaG7v>TyKq;f7(khtDriHP91jj@ZE9OL6HYZK=NIG6oyELPdzKcqUsBLQH%TuSS|Y*OiHGm|iM-3t*9VZq7B zzu+f7U2qC(GjgB98Z+KSWqD3!aIxZKofnlS(M={fv@^fL|0N{QQ%4Ek<#jUtj?X1j<(M^rXv-|Inu zCDsMs?tXjz1N^p2e$Z+EL4Y^)wUoMCfuy)MogvNn^vVS^R17qFo+0JUVki=tmbj_1 z{P{6r-!O1d4PP%LQ%HtdV3y4Ge?=6D?lt6HC7ohXUdKac)#8*Qwd z00d7;aXTV<4XuC$TBjr4INiYpX0_>B8BdTE4ICNZOnEd(4qH+gjcYC1I^K}=Gr77) z*}BKGwVTlXAwN}m9NAaK;ioKz{t@d`b@v7Rj`VywLv~b!5o=wIqJog7xb2aj{%`rY z;+-R05xw#IwHWO@2)lLp^L@D@jH+L6xC_SYb`aj`jZ3C;)YF2)Srnoj(}#D3otHtQ zmN%?z-+pj#8h#7xS}u2M_P@yJfuSF*W_3Br7AQ@7n80Rj1V^beD+TV>P8=h6itIAD z4pEbJX#g_$yoiwuD-nrTxxm7>=RVur1urs^q%WUt=`I6LaL=$M-kf&gFETL|-oym* zKNK|{4!ue^Wx_#4L^mj_)qvrLXvW*pMX}1I`pq(bJ}-p;dTpmi_U~!5)UqNL<#1Lr z0JRpUP6nT}u6pE*{!*+rXB+>rXF>ccZ8Waw6_FKRg+DrdHX(EwcDx^Wv`gEqf;*yCHCs~)IcO*Dtfj#bCs zF?c{(fO_}?Cl967jHI8bia4vyqxuO6x)D;MIZ9Aw8|E-(K9W^r+8px@x^5_S7n z?8tEB?oiPBqqutzcDh;uKdtIn5oE+}mfvm>kr%wp=wakjM$?;~mL0iZ$eRbiQ7t1F zc?DkB!Knu3Ih!1l_askH=BQ|5pnsulB&t!NFWuB;kRTSsN40w{gidhc{Wd(DUFx24 zffYMWJs+dvv&lywOAgK}wZhA7E(m&A&bWyRopAXOQTS#@~h%dRMJol;)J za(LCsi}wzE-m&V&&6iv71Y*wr|}WRXd}c22e3OP@t4A zNI3`;T9k85g-t1~xv#m8o2Pb!n9s`#;2B0Ml`4_56PBYNSjo!9&gFjEAr%?R;Q?KO z2a@nNe?JqMXBzfRS1E2tN(UD+^b!GOX2w-^SxC$jOpmxZR%*hr+#~Y>AhhJ%CJ^vR zCuv8vE?%w|5Zaqb3gTkT(_YeQn@{ia&k#8h1oV7Pb|GQ zAZI|Nm!l`*p24UiW!|Dansx!AbmQ0qpRuk}@rf*zJ?ISM42^r&96c@^5mRr&XZ{7| zP}BAjG;ri}ggm8swZ`v^tj!!pj}GlR>pxO6qo)3 zS_Y;z;5o~47p8e<1QC($2eI`>4hvtkv|}6}-*j=176FM4$MXts3k$0$Irj|cthwwE zP{yTK?u1E^EZ-M8cjjJa7!#o(#;M+LZx{;XrcR^A_A!(8eo?`;dYZVdMmu06D-j%9 zv%na8TNv}WU%B(iA{3A+VjOv|xzV6GYQ&dMR_LXqlv^^hm(*Y~zPwuB+G61i8reII zn%N>;-Xiqz3|(HrA!7aEsJi2q&%zz2skk`}%>}&*Q{2TPS(ne3qDdj-^d=2WkFT37 zpFl5UjAz0e=@cL7q#9WhPYQjp*cGbPadSW_!la%?Ma8u&K{M?8sA*fz+2FE^>QU08N9;4@$$_u=K4F5(?J^ytp$uu3qq9S0lBCLC~AUS2DK>Z z-XHnv%<5lNE=z*^=`+U3@og+Et-+|loE6BNVt|0j%ATw+vN0d4j%7c2N9&e?2K<`` zd|d}8WaU2Wr8UsDzC_7LNJcUJadh+v=0CZ`_mJt?>bBx>wMQrrbe+-WW>()EFm!sF zMI+~oaOm~JIVg1@AoiTpw4!$A4tG3RB_Cy7leQL3nOi2mJA+%(l1*!J{S+}Vd7j9{ zxWXmRr3L~xIH)%fzHfr{|A!vb`J1;0PLt?2{ z-mOZ#Nxxv&&J_-m5I<4;Ii*!LmJ;%c+j>%qJ3h zbE05cscq*%=kqeJlwIx$mm0-r6{hZN(!+q%Q1kncF7tc7f6~K)1#Me(b(C=A{5a_up&qf-Qd70$Ap1}CjJyrpvx-qFb)qRLv8=BhJDS1kG}Que zo$Gp5c?1mQiF{U)OW-lu$0MyUxiE`T&)4U(ZgRAa0vz)#KiUc?Ak5=?3}S$ z^Y@Ank+6L>D@d>$u>xT>X1lu)$>4L*E`xu4Q>E?HI3qH=Y0iPmu(}1(EJ9xmq zf0$c(+NV}9hXS%zY4innLHU}pDid!u?Y$BW6>TYboHT`bUemVC^3-3OU4Awyo|CEL z?M?1xN$VL;&iy2`$bUpPRf!tHzBVZ{t|*<;Fki@^!r1SujBxh4uT0g4(F{o*DJX3DN=`8U9fVRCg~N z?9e$X!i5Ye6kODiuFubmnVC0i1QB~peybea5iedrXOqX12TbL!F34}6-pTp~4%~Kh z7go5r8Jez6t}a^)F|-=sdNRVPiI)+yV5u*&;G&og61cAM*|u953KJ)(g;6`Nb=R@iaN?1>Qa2vOj4 z9i2r#XD?#@=ZwB9xshF0$0eE4GPn2pJP_(^!^SEXt9{5N3Jj z3jxb3Z}dIS_t4r~S+?@Fnb>kErYNXs!~LnlAHS4au6PBNfmLg@Q+Ksz1}keQLEm8V_$?NU?~JiC|q!c1KR5VkLaP1U^er9UQp^lzomVs4!TC)_7kz znN|)A=`#13R1NIMHki~t{^BdIhUT?3e=%m;B}Tu!LwZ;iYc&9XXp3c{$HNrJ>1tzb z%D3a|T7jBFTg?k-x9@|PB=!a)d5kKBtHbd$D??kBSiFG)D8?TA0kmet_=H#*?EAsb3A3 zMS$E?H2Kp)wEDt_uK}(-XHkDMy034;|5|M%m|-pJtGD^5Oa#if%=z`ChJY=VLDbi* zA$p}N(yWteD6;nW7@Cx5Lb==1PqytQl+{GavrWE*`qc{NL8=|ig;3LY*Q0*@rp+Pa zW@DTbrypf>M(#;yVX`$EuUp9h@|_tU_?{2Q^+#=9kr39mo4+i%N}(~FN_UcL`dqP^ zD5p|m%^KTU0Xm%vtgemVF-XzfjPcLfDCmx#D!U_kf5 z?+*h8oa1G#6zt=0I>e!dRPA3N$k-oa<6Nr&{GA5`e7*FWyi(`R1$@ta(c$5|73S2M zsXVz3U+)|CYrI>=izW!E7$$pL7xQf`oxD5jhBo1f%iw%@lGyQfQ>~E!DF&NWSz6tI z0k#bSn?fXUg0OgDY{DA`*H`_&8huj?4As$ICZVb@&L3eNjG~4k4~qx%9)y-0z}YE( zYS8zC0q%p*+M7`cBYfz%g~>-A!(b$^fyutK?Yj}s>a^?ZM8)k&g;A}g$!5lOfc3fel< zEHH~Q9c}Ve0eB9Msc-~liBZ8&o17D?bClmJ%rFZA!cgJKA9v7Y%m(yM;=SLk@4?du z=g;eBvDp1nDFjlP?-XHyEJ>FPGHjnoD{1nGc9cH-`06BV{Tl7#h|o@F2<8G==_$0+ z=J@ZJ00otJ{0H$8rD*(rBW?LdtZ9IAvUr4;9dN1;#v&0kan@A2M-j#|Cek`RE<)OR zsxK~c9@ooI98%{hII0YD&Fca$`1YUfU)(%mO|eKC66S?@Ku;OUx)XHPT;EmFhBynU z){`o}UO0aUcrT4IiNoMLh*H_%+mM2{q2(TzjpXn)E92*7XU`F7=AP&t4Abm#GR9mFmfi_|^Z^>`HR z{wJH^!N6Ky^Q>s|r*p0+<(wY-;!0-;*5D|VIr8&be(*G_5+5BRY&FS`_NcwHVIKU} zF7I~SKj(Ws*R%4uM|>iv=`VfS6{juAsbEk~XynLi@X zIsJ&5YeB^Nb~9~vim5?8HlaiwuK$P%eGyt@qB@#57>R6agC-Y)9A-bvC>GLen1s8? zFF0?VMlZ~=Bv;B(N;}6QQd$4C7;M~=y8qYRF}^Kb&}tH_FNTWyInzbj8SmuCC**ee zIsHznRSCFg?_K3Lscm1HtQx|_qNiV3J;zYn8@He@Prnl3z1Z=Mk=<3{O5YyJQKg~X z@Cy|mVNwQ&QP3txqf3HJiU^Tn)0Ym75BYLDfMIAdoghem_p&^FOOA-O1scj_hK`MV zA};w!W#8B-Hwg(gIuu+;kO>gU)W1?Ru% zzbWORJmz2Gb8dVsED^C1Gn%||;5DBblI0RR1L*2Fax6z(kbZS(a9g&4s3z2n0sq+Y z)Wd1Hmw(^wddAUutI8WwlcXxw8kqk9Wb;G4QK#dlOUlIy1EnGzeS8)t-U`X&S3Rnf zY&e)QomwHuiXhse4w-_8FSO&laAm*InO_Bl2Wl7{FS&wH%X;IB@DOO|JvZA|`ZP&x zG!&9#31W%$4YkL4g)av{^dcHJbZ_4G_*5y(*f5-dn#2X*$G3Fel{HA8R5!Z*3I5%Q zDiU;ue))7%z3`9;wfvI<$8%*ye`F?taZ4=irRgSD;tHkAxaQi0rH8GFB05{z1po*C zg1l#(GhTm4UMS`hAvZ--d=&|c4`U~aCJMsDHEm{lO|rV8SmEPF$NtEy*v)<7`G|2V z9LC>X=~o0j@!cHqdH7@dqW7}`%|eSl;js3w8x>L^q4NFuvS}HOHRH~wy`*H@oR$Y( z4+~HqET5rO;RC%wnF~?1hV12ub{<^W&Avq+*X!}V#5{-*}P?v<9U4GGy&2`XWqb3XR3wWl{RVCvKF1|j{;pXZ}`T6)P1%; z;}ofI zb|JfqU+nvHZo6jCq9Fg^rKPS5%DRIHQ*4m>ET2#{_s~|0Ocbjju${wl{8cNa5V~&r zvdjw%OV9bu=TPivlmQxJcOm`Yie!DF=jze}y!xzP`}n&%bSB>2A=uoRu&;F@YN8lf zVe3Q)cN;7M^?% z^Lrm`W)^>RJTOGK8)&G+Q|+eM%^G{W$ZapolZ%k0Hdnt6r&|~EPLr7*TNgCSs|-Pw-IXUC>>%Dv!=#9him4b(@?Wpua)#NX`&A6P-dM1@P?8q|eaM8QLjJFQl-x{(c z288GUIJP2_-45Qcxik{%@|~Lghq^-=0e#q`uO&&@t?0IwNnNF~s5)2di!3~=5kzdT zhxO+WZN8n>F_+r=&m2TM9*Ra)2IgiHPmim+Plv0DzE}2hNpqAAEwt5oJAR+MDQB-5 zY3h>~qvm%MSLwZyn`xxWCCyHE*tdl}wd2m_aV({s$$&6C%hxH6wz_Q0LRW>!JDxz* zh`b*94k$N!Finims*NmisXcC&)d!8}H=&X--dWfS2mC(VX=I7`iArADQ@jmHFSX)+ z#b!;t(&_U7iez#-C&{AP zYEL=4n;5JJzRx_wn99gf!dJiwrW79reo<^${+rSf{%eFklL&DUxS>(VB;ihehqFI7 z?*U368rnGW30_(1>f!s=PTMZT1oe}?yD;{ta*G^_O^zZ-WGRi)(_xOjl^IEm|5M!w~>(;g49@=2| ztQ49!vrX}+yqq>b1W%ke%zSd3#_P@i#E^Dc;uel*91bv&w+JKA^Nm+)9PXx~6J1?x z?z5&;n@>?4O;H?89gIebOl@#w23T?fW4d<{Fa45kjwF;~%nfkz6_~Heg}NCwC?S=r zS`zX$Ns+EI%;rZ#CP{a=h;L|5wLG$R{DPEPQ*3LsySk1 z(}d!@*k)20X~0NXjL^f~+BiF6Q3b)iJz1AZ({f-;zh6(8Pxi|KxZMEpGi|&b;s^~h z-YwW$Y?k2`=1*iw>pcbd!uX#TKy0Yosrb$xj(XD%jwdJ%Kr=_jxVBTu>1yhQ%(6eW z8tCm~zH<%mf9qTSK`mGI*LsLmoHoLH+1QwTKBV|^{K0QZ=cv`fXlTO7=GH&VMMCJ{&FkP(7(@{Z!p0ZgF zW10}&m?S-$qHxg|7%o>5_d`Ub6DgB{(yjNGVuE%iA$@urE9n?qZH8?ll#JIIQ?r9u zat$-%+Kw#T|m$X?*AbTK!=r;h2wBPQ%UvrVt~pBxU$ z_iyDBJOuPvz8fVSKy97*SfSr{bNVMkEf-)5d_q2Yy1?EPApU)s@fP}qNyZjH(`nyL zgVL_Y6*B6M5@P55$GR{Ys84DQgZPm=T1U@>kK)X*sCQdomGY=Q@BKxbvVWm@2$75mjhu_V2iu-xW2fb5HQ;CO2EnaSL zW#8)+<68>@R2ZLLC0(MU;zo`zHks~KC5&*CwYjq`c?JH=vsc==BkRi>Q@v>Ubq~}I zayE@yS+Njk^3vC58|7>c@*mwhO`Pdr*xxrkwUja=I5E~L9vS3CXHH!oagG|Ssmqfo zK*4bw*sRHU4xzhsdA;^JS;eo_H ziFp!co-F+k!UPKKVZ;G%Aj@=GG9dbEj+u;d-dC_7(G6LobByT=yrHNR9Kf~=Bqjsz z)rMIqen`rMcmar(Gi9?)Qer{3tdcNd0UR?9)g~b@0SL?295I0uL}M z7~Tl9F{B$Yc81k+e<6IyE!FGOj4jkCK4+-$azCthDw-5G-Ff2u#HuQ9F)`R)t7Lc(`W4Iq!xKr|@32W)v ze0A+Rxu_%5wB)x9i2g>cxzs)W#lF9hVvK*i&4?MT;qc(hsF6ua<~#SK%|_y2(GTFRd|c$(cC=JMp=%!0hVsWc94qKH;*ZVw1u6@^V2_(`F_)Tx_|y zObPH0U*@do!AmLEidyiN#i2g!lco>T=nITwT||3n=P8}OMrygfs$1h|D}$d=iONQ< z=Lwb~XqvEa>7rK`T4D}#0AQi+cxy37=jR{WiOwYy@PG+1Wi!dQ{h2Wvk;}!y2G~CD z1yc91pkM~4)B*D=3;_gyl%1Y|5)*nbr3-k2j@& zU$nm68CU$EY{@-0d;w=@3EX z<00l0X9QD?f|hj;EDIGoZb=LLtZfKYR!Mr7s7%TzhHvPq*6p@CvO(*%z_~-xJAQ70FSn78KHXl zo86~_j1oXUwqY6T=5zPLO}Sc@NGZ|F)0;<-fwAb*Z#R(AvRzf<4?N}Y8hSq0$TX!= zjUPFxcD6eDmNJ-tDN{HmE5iY9``cs3skLcl<7;OE$f{1S8q(Qb9fc?)ZwwAx_C$ zmB9d=7HKcJ6IrWkD_K&I-CyA0+;@3pi`TX1NVooMts4TvmO@4+UvI3(oUX4k9iO<* z>*9b>yS|ANy{SEmZGREDTH#&9tRMWhTuXy%Vo-0Y#gLj$@>q1 zoPWG1Ogu(on&*3-1XK-0!>~PBK323)nfw%sHtg3U7Y1K?L@Pz>k|SLn&43p4SoTQ6 zj0KkryAwZTgaVm|6DTPKP~$wl2LPrlCZ2dPqQ_)_Y6`8#~d-`I|NJh zFekcO|3VVrrRi%GtNJ|O4TjitKRl3wT%yu5UyS(pp#iY^^yUU?@Ca2WyyDiktJk)g zyFa%~VG+IXy$=SOG~Ba~pz80qSIkvifYO6*W>^0cT77hiss*r5Sft&3>@80%@nP1a zk((s^2=}ujh9bY5jklap{2oslAo&R}A`{1{sw#8Hzs(T(1*@7uyjS%a=T{()Qi*7BdxWY4E~QJ)jR7kAL# zintRGXGoo+{r;pctmRVmI&m3FRv3-m91P=0f|iTRYBBdde7)Wx{T9bu7nhFx1w>z- z%yUf|iuSIa=3X^KBzgDwnsv%}3kM@Wz0PC09@P2BFYnH1jT1o!$f z5$-!;t}IcLlCk~g+OxXYfnYyx7)@4^QUUFGKv7tND}i6Mn*urek1&i`2gwGR|#~#-g%Vj6KgdGigsr)3p=$(i@ z4NP|S;)_wM%;8=@x1D)${MuY1Ta;3M7U2M~L3O`U`}6glRX7IfCL(%~z{wb>04*^v z-dmwdaL?XRanbQOJq4#2%!#xr38Kc-&FZ^6p#QPxu*y92#@T>``-_rmZ=zHoWbATI zVMril2lwJ=GXag4r*XRm*}KEd(OAc{g+P6q_x$1Jh5M6K$7i9egpF3ps-xpIr$JW~ zLWGxtBC}gs+CpD|{)qrFSCS~OVB)e&hNlG6qqHZ`{y)L9gDk^46^=TVTo9Tj2Fl>T?GuP-xsn%My`^GdqSC@Mw zkiY`N9-AIp8krMBtS=}Zsm^L+eO-my8<3DZoyN!Z4bnKhplQ#BpfPBL0hXfDL_GEO z`MT#jf{tsW*S*v%GbxG-v}z@7qA|sHe{i#zND?;+%q$qfGmJ2LfT}C4^Wf$0!2w1K z8GruXcn2NIf420et=tG64v)aYd>=IfAx5t_~+F)9~hpex4oM_ zjMz*RVYhJcDz3?Qb^jrG3us%9K9{$|MYz^L?%vx+Doa(|8zbe@lN$w@X{( zD5%qQUX1^T6rVtuD|u~AaX;d zm@Vq7tB}*DgpFSQ?i$W62$hGEn5*N+MGYZSrszvLMz`zqrw9)Fk7pFBlIxg#b(GUl z;8JPqw1j?sS}x7qrJ~E4<;;MI((HfY-|Mheto5Iy-3QPvj8$Ls!Iv_0&R=+k=j`h~ z8BfDR48Cx=`r?0{6=o%-9y68VXd3%i+ZHmvP<;eyI1V}!pcmQTi?cgpnHoJ=I2;u` zg+AfliarhOjtcUKw)d9XPdp-Zb^m1HZ+o3VBuhhK*)b`kPs$qQp4z=(Ni$~6x!bg0 z;n*)FBVNTqDT(Qg>5b$a94J;PCgbO$#YRfXMoM1ECv0?fmE3#4{yd1?4WZijP9Z!G zxB*v^ew_rJN!~`@t}sdjhidy$tzQTVGUPBEt?+s@$TkPd}xgQp{E?D}T0+n>h|2f8TA<76;Zf=Ps zdiangk_Hc_&j^g2KN1R}LgM0EnglS1Uw=iuNEht5~|%>_o`l-&HrLeugX7Icvr zU>50e6&_@gjV!#O(QOmB8Q~0X35te%rD$sEtH2<}#6$)>1_pRLfiPjqqxZWyxc8hk z9BNn)qb~_bBfM>WTkMA=p-uGGqKF`P<&*CYb*4TY2mjiUGg)Hs$G9m9o+Blhpv2vz zjN+H2f^Op>{3Ci;+T+{gg*g?u51<(*9;1y0HEkW{tu1sS%kkvol{4@*029*AYEFS$ zFn;NX;LH@oZ#nosebXSim{RGYGOZQ)fVpD4inb8M-{%hDWu#0-TLdi~077^N_86A( z7Te`CO_fA*skxZdJF`S*-$RRVPDaP)P zf~5OVhBGGmBLM4b3~;#S3BT>%r1El7pdP~ew>Tl9Cmt+STiQAAwkr92Ta>-9{KRZ; zs+sK7->8JY{UHd6PMc<>LTFXAvaQkV5gK>Wk|X8r8mg~nl*D^CgDzBR)F#oNys~M) z@SQf;F_%QPRXs%1Nbh%#%%SQ!`ZmK%(Z*)EZp$x)FvZS8+b=)QLvgVL5YVZ34@o`p zNYR8>UA5+ncBUR*?N|$-?K}Emz-OOLwo3*}-^AXcN)RGv=N?^@hha&~^5P{ykFPTV zAo??3Y)j`uv6A1R$Dt_&6^7VS!|F}jPd0+zQkm-`?_7HNLTmvl{7fI1qAV73ECc$P z>HkxQ+VS>`f@@cH*Q*gWl6RUk_P9+WOGa$5*%AW3MKgSVr(_S^c~ilnL69|M_hYI@ z)9X;Bxkjtl^tBvhVnhFT$&x4gdLiB20ef)AL)v8rl)JwJ>c3I5hn6YY@uzKv-@6?; zn_hM=4=`YOV32`LdBKy-=y&00Rc)PHj+yDKOadR5;BC!;kL8tubXR+?O3cm6r2d|1 zN@*HY|IIPm6VwUC-^Zm_)qWsuPyN=zW}!V#wbJ#Tjod3R3(|T|BiVlq+Zbj*hrz@C zhUJ$7z^rI1Ra+BfTbq>K*@5P}=4^+xX>j?;5xdUXj4#wIn5fb*AJX+`guB*Zch8dTr9qu=?d%dZ)lO#KcS;#_9=hR0m zF)%l$*78ctyd4#7-gM1(ukGf2R^n!Ry=!&5Z|^R!xn69>J6(HZ%|c$6Ps`vZ%_VOQ z8tN#xuhQh=2XOzh3w-}~`;$V}9pZ!%$yqhu>)CY7XtNUvv>%_ijXzjevbCZ{s`zf-~| ztc*!SZj>Bi**M1I`6JGZw2}Q0zgSR9s-QPTC*5|FhWndLzkGYt4wi7s#ih*j zX75?EpPkmkHN5`X^tEu&8BvQDu|!fLy*{NAnK--($#)fkU`I-WD>`Xzt{y4gk%qFjNjM*tf=Ta<$99p=&2@!gSjSa*Hc( zA$nzpy=6)>Z6TD!L}Nh%eLy!dx!)BD^vOg1V#TO%K=g{{EDaL7Vk4@vUqsARk=8ia zC`~x}wUS&4(X2Y^oC^fPW#-BZizSF{Zlg1%D)U?!hmXGIgl+i(RN<EqyXSKqn_m({ zuGVr^c%2j_F2>OP*at)b+w!uCGLXl0FG8sf+{seXDGc=K7D?2ucmJ%$D`u>J(>1D^ zp&K(CVVPC1if!rzcLB+Cj`PHJg-y-<>}={<|8gg}nEoA;u!p~;$ zM+w;;PuVM;U6C_~$3Ynw!k6QeFY+_cJ|1i{5)Ss<<#%%V&N=ewn}T-!`?zZcY4L9Y zkMZixcCUuLFuc~WD*mhsg;qfZesb~Rs*M^M+tTProGn1g;yHpi=&-wI*l}b_M`nFX z)}_ba)4sY@8Ew%;6`{C)OjeWKL4EUi{pHV|p}|Lnczd5_I@`qDZ}Al!EOFbt#6$b+ zwF)W@;=6j2zUis0Z%EofBlrr-gb z_?@D^7wy22FNm)1XnAgW=$(d0tN>_n$nqbU3Eg5S;cvKi{B}`@SX%DkK%o7Vup1ba zioF%mD}%L9)BoLWebAsUbqPeqTH)sA+S!}RtM_~tbUG?{1M&cX+|%E|*#U7y-vO4V z{xq^a4x)FncvFle4ZTc zQ$F-*M8xX-2tWLzP`^4?oRw?`D!jM-+z7u}BkA z7hf7h7J%UKO!l<&YCgey!Q~fEf^Nnjk?7}TZbJFc1RE>< zYzC*^qs%=OPq}}B`0kG-{(n1WIk0Mu(N^T(_2I9zNE90c-B|>TSbC zB8aPI4+TsLG!1gReptJM7{1VXCe7uwcw+FR7EP)7PayutlEFf5Vi5X?Jw1^8-gtTU zr#ejc%_0VXof1-v51yL}WIB;TR;?!6`CUy0k$P?V!Yf4)(@zfVJ(uM{V{mPZR@%z% z4J6LLSoMTA=gEZQF(nr$Vwtg|b2kOsNO=Ogx$qgLG*Lb}xqtoOAes2R37E)65 z%N^9sD(H9tBJ@yeJS@RY$ncBTPB=qNiC;t$&2ry>i-+>l%HOE9 zTF~Le`o>|#T3y)t!HztE`?|n&g9jNcGEdVvX#=T2blqO>x81lBSc9F7GK0A_7XV30 zC)A*c>CkU)mLBnsmOSf4+l-&L1fSM@p}m|i1E%Kj%L6I~=$YS$^k8$L!wG=&l8bu} zI1tdo$E9jcB!A`plqy>;$NDH*+h+U^+yxn&X6X5Qo_Hk$n=BVz0q_lqE*L&m2n1q? zt8~><*AsWVExGOp4CX$#$p{{{)*zg-S#2Np>sz`NYV9y_c98Ax`D))%5WPgI_H{v= zCI3QDM&q*#%6?_3sVvH}@@V9;1fgRc#oG^!b$f@hTc&${o|e1)cv|u^lnUPZCGyKw zdV2mw^ND_FfllR0hte8!M0DyL*uV;R6)m(wz`cj`60Gh8@dQ zXFQ?He`v7NNfHn9vp?H4owQJ9Nl*9Hb1y3f zjce(##Fr!-wcx2V&h?yR1eLY;W^#<1$r|IX1r$%i)~_#@5{ZrG&2-ljolU zZ#Bo3ZcBacVs9&60>VMhuJ!h7xNG|FZy5d z;%fB4d-R&a&5wHV484p75<4qqsV(BoAIyoM+{h?IWZwKHPcFVcnCEuQBNDJ?RNWmD2OGAo zZ^I~rt6uYgaP#?aAfLd~THcX?HHDn$YpTtN3?gP|P4_Tic>G$udEGytgi>mOg5}@% zSH`3JnxrKm)CPNAuk6iKT*uYu-8jSuNN}bxuXH9O+HQ2+;j?}Uf+Cg7y+rA+bght4 z5qCRAxAn&5^=Z6Uey@xp3-m5Z>I*XH5>g)2Jy1ts;g7F%6oZVDeDJUPWT`|B8&pBf z%j=G9a^d-ok_V|rkO4cTxoap-%i)JfOfPkUz+SqQCL_xuAf0xvAfry+?1Z^!NAFLk z+^lc(&rT5QcuoDul|7%KIJ||E&I^_2T_0pe9}T*>}L{e&K|T#h;@hI zv)?09ebU@=N88uy8?vR$Rcw%#yw_uflXIm03RXR}zTDO6)#4kNz8*uDSd0EWKoKkQ2er46a;sEZlu8FNR$2@zx+} zk!9L7aB#9QR<4!D3mIJoE^x;W!rUKO4)NBWwNIO>m?ZW%npzf6qL18%?e?F5ts z#cx5!vVjG_!sEb!-qnS88}7XF4X2p`HQT_^TgHjW$sL9jM-iR$UGCk?DS5dNgVv*X zX#O&A938(5m#KE}wsy}DEFB-8+#Bb6d_ttl?8p)o{-hKI zHMk+Dh$9Mp%BZ48m;E#a{|XJ@vT@EqS@a z<$ZzB@z}4jx4VZg3s=4Z!+9e!5%?M4vv=Fl6rjIbs=Sfe_u%?Sg&;APO=aR7pix+w zmA|PG`4p`zk+h7)hSKO!a__lmQU?%ACKPcLvraC=5i2Bxg1&~-o_lr-)H3b$Tu~P{(;EuC5 z=f#wM_0n6GTYQ5!b|@}alBSNIo8M2Qub>I(Ai$*%)b?D$S!V#{3grkBzWQrnboO)M zsE#c0F(E-n60%-Tk&wT)^c+7t6vm{g6ye+5*bh8kKyB`LMjsv}sHYZ&vJOq2)yB_J z4ICZYZ#a8u{H;`K|3^MX=eQnKG&Md+>e$c28rddT4rbB(QL)-?{(M7rb1DqmDW8K7 zvb)72J_cbgP}0r>vGZlXk;xGXNX+4KVbNrjYu{rrBRTGB^HP1aD3@VYuOvWV972=p zwBI`5pqJ7OAY#)`{dipDBKSi zx@NA)HpcCd$CV~)az&kxV&y@A!~^_UDxjCr=F>h1@JcZWk@J>xdlYnUxvbP3%-;Ilnp1%qyI((xJW=q ztXgKGnL(Mm4!vXZu^zhD_11UK`<0F>Bt5EXAHqC;PvRIP4R11K!d>VX=?93eEo@X? zdNx_l#=4;(CKhYb?`i$iZ`N+_FqjLn0*>6byA`F)l}kQiD5rR@C-h|=BkccatU=h^ zIcn10*Mr5#dOkE0#kE|mGmzJx`kvUcU;hx?_F496Q{m>A03eA2VbXAoD=a9}EHr57~e`V;Uph z6xX_hrUo1RD-n6^PAebN8BE5Y$1Q$c-tPU9R;aJ#C}SxcKl3KQ$j z(Pcla7-6R#Oh{Zrh z;Ci>|znSa5Jf4r=%nG`z=ri3B%tp_f6j7qfR5tl_g0Qe^d+5XjrHEyV<`+`)#c+@Z zAd4<}YM~UsZk1?#L#m6ivR`Y{gfw|f06<72{mLLgCxGa{j01Z3C_*pk^|shGtVzC6 zu>X6aUcUZ2-R8L%qH4E7z2UtQYQb!W^(tD4-Ix}Qt}tYJ@meX4YB(8dzOsCdw#GA8 zA1xOT%`-<7^ig(sTJC79>D+`R*PjMMigEhzR;f!wvq&G-s$=#RlL^7Q!G%0ni3hD# zL78PWgi-E++wRgc`wD`TVebdp@RCrg zm?r0)=1awjUVGYp)OGooZ2mc>Ael9P&wNhL7I}j2C!`2@*qKM`iX`HZP*m~_0XOlztGaT=&DY4|@>%^4KF`T6pViGFs zGpeCIWeD$SOI1hxa^A|JbPH>qAEqfNs+Y}X6w^f}`0D0;6g$@w*XR16TIcLAHiv!j z>%rq9+#J)9-1de~Y>mEVEOA;S6>xa6zr5}^6e}%b7ZFG3jE0@NBnWE9Q&}J@O6>GJ#|mQ0lUUnM`F*(8ocy-s&PUJ1tt%_pPbhw}|*i}AyI;#AOC9D1)dpvZ$ zz>oB@2QqIogiQ&YGSshWYBlq8k6aO^JYue1ct40W?AO@5PF}zvL9e^^IWYkZHqcgT zMct4aeF(_|<+e2`gNu8D%aMFgF-sF4H?mOPIj99tFy_V9(&S3=136b5+oq8r%P zBeb?#Pp&3XyaNs~(Pn^gWWv9a(e@0lQ46xzmx6(N?;L?DI0{b9ir3*Sa|2%rGvh_8 ztlwsKLl*U}CVLi@qfoOL`1QQ5v_>+nwYybBUOGodFmn}DYav&IiR)C1zC-)dD)brn zVxKtJ*7Ql~Js1a3c~~;ubt*=3i+hg#p)H@GK5O`wUVJn0-;S!|_eBLv-Ew@Cw6y|%6fQq| z#-jav&x|SBYUBkYK-R>YC2gc^q*O89v;|Qex_!}uFOay9BGsICk&>hgjKac86ob*F zrGjQr?iv8CN&OH8Swxh#RQ)M&a;lv$SR}&lurq@p#YhGG#DukGt1*Za{^9*EYrDgS zX&F@)oUb4?l6Ks%xur)oJwjRwJAeNBxb#iFu{BOa-*}PtyH)z*u5?L-1X00u&7c8A zG!_bkO;yg(&Fk`8qdhgrFI)-5j%(=a(|^2xR^&RTC5me-*LVfzE7CICpBi9|66Mw6 z%x7fx*#5l_b%VBc7dnhhM>(-?%LO9W7JD>s5r#=JE$9WG>m=(WC4IB_u=)pFYWh^t z2yBDe&4~yCCrk}H80v}US>8O|#XuK`pYQpDSu-5&Hi^S)RQZH_0|E&CrI=p*k3T0w zrUP^&=K6hqS>Lz|IlT+4boD(w;Up)EUo|vBn*09p>Xy-~rn4XW8TA{`Gs61kJLe3(|``yDuofh4;I_7B4#citf-p=Qw?sHOt%a0LYKqMbf zE{S_vU0mgzrQ#a@+RYeIs#1@ul7&XxtH9%S*O{iDbu7D$NjX*vC_`kN-AteNl4^EK ziHCd~5m5y3H#u6y^j)?;Iuj^NUSD0W2xh5nO)em^*lDAy!YR6D5++-j@&hj?SC+UC zQw5TFG8n=r4e;ovS3|9!vzyN>6_6dq<0#>(98qkkqdO-W*ND-umkXFJnX##}ddp2N zf3jK$xLOzBBNp@;oow;esUP5E-hX#b-(3TPy2ch@oqqt~_=2F|j{tZtkRkG@``SMl z1inXCTK%tBExIz4vEK5U+xS6;XDg|+p{K=jbCe7w4s>!3*Egu~1`X~$BQ6bF_Z_|K zJJR)P@pA}I&VK)k!A)5_L1muALat0C{R)$f!@EfVH746nY9GxU8t?4*-ZG7iQ{`7^mA&-Z z*~x11E%!$u zCu!e+0g-wTP3aAv#jkIWK3r2?sf@Ob8voa<#v96CZQ^-M%dIjx=nz9ja1wM-^f3YQ z@SO{|EFzkkdt%FBIX!z5Saj0E8D2F9eTh+&DtMUuK|FZWtXQE8#d7-s5^K~XAsKt? zLIAWH(mch`@JyA9*74KNfau+$4wn~f zORZwcwK8Q=Pob(V_cFF$bzMy?AP)*;-1MAuhO;`33zlzm_hON#Q*fmw+o@%K*X!Dl zLfCibT!Ve8l;)QLq@$hX4&mzeFRMC&GsvgY(>b1YdC@?R4OgrgxCHP<>=Vp{FErsB zsa#i$2nz5awW7ZNX7V+pf7mt)FVa}w!*e+`Lr-KH^a;f8An8Jh!m(;|A~+-@)aGep z@c8(G&yD{Tlz~yb+#d4CZCM9L$_+5?a`CT|D*G_fTkgN3f3s=Y(rywd$-%Wlc1PpB zoLmF>gS4fF-p3$du8qNjmokMqL;U;O9E4t>1j`$#&0W_KM6k<0mzS3wHr@I;MW{( zl^B%-KkJml`S_*1n z#kvOk^l|7}Ht&6#B-Hi41g}fTD4yrku=T6UP$9*vIyTWgy<_ALDSKTrj#BxDt#zN^ z_imP3;k^mQpA`RVN{NrWwt@^9aX|BYxh5xOfO4{$QgxG2FYao1rPzLYYkW4Wvvjwz zdn>p!_-sCeM`Nw7#;sX3*HWviUs7YNcl2Hyz1)=mad)Dfff+3+ajB zC-)fw`TYoDdfLhL-hT z#{OMLL#hJr$i-;BG<}7_#z^8tFbw*FZ_veK)+>wN0-&35>VUv z%4CMuprl;AAd5M+`+IklP6)c&*9-D3;JYq8c35vun7J#~q#BYRXA&@Tf~jurpTp3| zAkO`mu%p~$r_o2#EvG86WO-hco=ZhpoFB4USivtH&QV4?peXHq0{_L|8|8lLq8!~4 zhGb`g-s_N%Bsr+NuxPCaRMotvcQ&Qxk3*AvL%#$025yjd3X@H8mNd&V37ptiq{;?x zTL<8n8g~s+t(dd!gP#4{UT!o=pH2*`o}TzOwqs7u*UwPGH6<_;!Y-x)8yFHC;m!MF zlYSrFr2UI#zqtG#c@R;zbJ!Y@1h6xK&3E(!r)|qQxK^K1 z`RN$Q6la|Ov^?W^lRhTpH1+$BQi`ri^dr)!HlW7XliOlq=%nY22%xu;%be;-hWWzY03`w8^JT^&NG( z3w_O0I5-^!$HZeZEZzwW@P+OJG#}%+W$C=t3rt^5?{m{j#V4q;^?Rw2o~8{CI25+`Jj&82RG6TVdz?XsjQ2fQ*K@{*8a}V?h4tvWp%zt60tpB$9B4GkfyK4wZb5zLsMXe>V>j`ADhuW;2 zvd9&}zbf}TW@~S42^-99qQ3;L{@6GVft*G`ZZaT;U^i#U*7kr$ZrBiA6NIc97*OI{ zVm`;WAebSf*)&_ho53cM5(=6Xulu7o{xe|^#0(5N{^ZD*#E++0Rr)M;=?l#gYJSre zx6}+~u*OiQ9iu-9p9grp0;47KxQr?o{r^i*<85 z`7CS#LV5IbDul^N(yQED#x^xGaog`m`2~M;d;h2G-PsHIicAha|VGv{me@lrl!k)EqSoiqijfS-e>12ZAZ*0fQk$G`6MLe0f?vB+o zmb#EF`gmugn$x_XSsne$0pm6q%U8Pn=1hKW)lyfbI|m;5N0*Ib9eCrSGFEX0LO0PE z#nn=-5^f>c#?!8OK3}z1h{5s_YkP+aSd}DtbA8EF6RZSi!-(0a`Icq4{R3Kf5}i1m zj(4{7M)YxgGGW-^*d@i;cvZ>g33B{iE-^~#o7~IMK@t3H6?^Ha-m{-l@~hjuYR+cE z9+3dbW?xbncrwlnBQEn(w!lMlj?!)uQCJe>q8UkQLhjm?DQmcDc<5o_mC{7|>t8d! zd&s;T2liGNR6cDYcAM|Pgwn|7bo-qm)g4H~z4=$&_6Lu14E$dGq~QyqEDSP9Gt6}y zZ8z8hBcm>aiw%3Ve`&7&r(Q+~{#pn32RLETq$6leCuiLG)9sjxZG>mx$vdpA?}Vbo zCreZSs*za%GGy%T-$JeT1VjwOPi^}Df;Cqh)A>&f~hXp|O7ME)K7K^xc!PE75_Lvn5 zEH(T1x&aNoT@Nb>^__r5&j+I{3J)$5)39F(Lj+cL<#Kb^PTraN zTL}zz36zmq3NmssBe69JF|ku_v#RBM4S0}b#vWDlA?upOWcz-Vt_Et4nokwvU%3f( zhE8wyTnK#^RzSS)lE8ojF z8!%+OX--kP0B6=K#8y8?cyP+zxWt-3~aP2A%%PF$G{f6C-NNR_c-Z|?&m{njb zxNP>WQTh{ro&}Ue&3lJdJWVAn8PLnam3dV(1<=scNm5QvGYnsp1ugES$;V$%p+Ybl)Lc!gL3gIn{heR-2 ziXCKTvA@K6a|ge~73Rcx40`0XpVw`riIc&7L4WiYV~%1)xS~?>p%T5rG7Mk%2vF#P?rV86UJeA!>+DQ^5zaH zOz?n#-3^`RwN}jAmMLyn5BAlMWJboG0-#oMVXP9w7g zMI-(|v>ffvRB{vivp`pwrXn-a{-mwO=dH$-jL0Qhlx|@BSnWyQJ`Z7RpPnMWYnfFiez=zX=-` z(c;TEnZ{163(R?IjC|)P4)RcN^&0u^p#XaZ(P|A)5%jE?_H;ORMb|&jNnYLYWDo>x zKqI3^euw`lG0DVq@`ytp3yB+$i|ys|BRXzg=6#qqV@ALwPEd!&z-8e`L$*D)(LW`W z*G0$b|8`lwR!UX%Rb3Y&J}6yMW+LwJ^F{`0dv4``-{7(Pm}cxCK(8G!i3Cc^6nSTM z2{5eaP`GvNX?eFf$_-gTgsgaOE}>4PqE0QL9zO&*0mGxI$>mJ#wgx%4XA(*wMc^}f zEZ*VIj4PGJcLzvLO<7C2Fxw5x%)v%_Jb8A4eRC^ASJ)G;Ixm>@&ZCQMf|l7HEl-{;`Ei#Yv!D&3_0$|Nwr)_(p zEXaE?a@(deMyEcqjXX}0m@woOcCeH%H3yzbnG4F;N{%M#oO&5vZ87bSOy)UvWr}_7#`ZlWC9{m8@2ACASQOBr+djk@Cvk`lK zF5~7V(@=sB``KuK>ngZe?uT{hFGZaDGJnbH%SB|{4wW}ZaOBfdJk)@b2$(4T7SGO; zx*1KNkSS{XaGWr?fHE`4J_CufatJYGnt<%{>ZoU0?x?mm3Mfz}=QZNPHQup*N<(H`sFUdKU2Y+Ig9Rip7itiI;|7+;;E4bX3}1;F)mF7 z_v01w&r6xGH^l-J!dMS_igRgu?*TaHf3ww*H*#V<|G+D^Rv0hrrSwrLx*KUtrv0%A zox=XP+z(UK0D8!YOS|JwM_7NXzj-gBZ-Z&j$-nFtk@@+TnQC7!urHiHH-PxsCM=Tz zOXN9lH(1p7o^(%mOtS;h{xG6Wu0BWj+GUc_T}kqRc*Sabns??GG090PlFUsGw57tD z5B4nRAy4e_?bQCpaHms|2F2uhF9utXB5?2*e>ay|p}m2E#S-x6E^0mOFIYvE&DGvw za@}IqHr(3S+t05oSGTnpdjf|~p;0b%1^N{+`oEF7e~jhZ2XKsUlt99l4G{0* zyMI^skm=2#1S;@u_}Srg>Aob`uMQm<_FQX->o~xw`zkm>a`7qK086R27DE;A9Y4D` z#5qz>ZygMX$V_K@*`ON{b?@B2C!SfL_i(zasV`^wSu7`=%I}f?7$da6tYetWBt~J7 z*$c4%Z=U8-DSpW;$26g8Z6O=OeN~_Xb!3IDro@J)B6bhz-$jl=k41+F?Nr5WN6UnX zALy;851GTy6yUCJ7wwy;myDOP3Po6Hb2S{Z&;dAMGxJ(EjjpXdwI&T#CR>|w?jL@h z%%G<>@E)(W=HEY9|Kzm~v0ZvOrgI!K5S9HV3qFj@c1sc+hl}5_y^Et3aM~X@3H($; zM{?1!xd)9I@T4i}$aEr|2I4p05#N`zx1FDERQb6jsO8>mr^&kL4gXGW6D7Bb8=ISm zO(7dAd*j~&^}X7olqS9cNK0piMPI0;^2$rxVOXFm)G#i2)|RVc@0vuUMnR_OXF4Me zzk+j=3h3eTe@6W3H`WW|6Yn$T6M3J(6g#M;rcVLP8KcSx*kV?)3tlW2_Et?7fsVL8 z_U)bBi*!S%&t_jO@=7~guzNp@t~E)vhgxZ^!sz{{KxEi}aMYGv)TI+2@&?_m552#* zO1Mv~q-%7lbjws$@9Y3AE7`Z0cd4FNHyJBtk~J$6HauKQ%%d);ZzYUh)g%P41f)~X z_I_B1uX-mC>~%XN?FJ*5=aO$pJD!rEcb_sE=TBCQ|A-a}tqgkW- zPX+!MR!jl2L5c^!qqpinsV}$5ry}$sQkJw++jo?M;k1kTy1>b*qvfdpRFkv%F?i-( z&BKv%0th?Kx4g(tulyO5g?UK2-C)RWV=tVmn~b;P$o^F_WRN|+#<+m4zpt?=Kt@sz;V1` zM??601Gmf@xazv9frg5}yhn``7cz;W9FwCekllob9tHoKslX$i-2CJ9Ep7(@8+~eS@nn z7J3e{Kso5RFIT>3nHS;zUB8&jWy$XlJ}UN#vxpHr|M8@HT}cLW2~ zzR**+vyP#xf%+6ZB7I8dUGB!yDuLxUZf3Y#tIyKu`sxDV?JYg;gFZb3?|nySQG;#Y zRb1|Wo}GaNN=WH=zga_sUvdy<#gR=J1!?c*6Dg)N3UX20S)!YmMM&s>Ir{h3;=CO? z6{VjXwn;FM^l7%X65OxiBAx=QHL1Qhx!IA>huy%KOyBv{dvc4fRD0ruJ(BL&l~9Ij z_vO;TY!M}`-g;@VP>Hdz91 zETC1qK(t@`gWkXE`&u1L-n(b@?T(j&X|)*XxgF4F+YpVX{az{}ixq20 z4w7E&Fl(-x5h4oUtZj7s8pT?)v0uwX_}3`<^RaVlrok z3l~HUQ#=(D-m0cLe%ycFd@kxQ#-8GW!R&22-xh1VIeNh+;cD3}^{RJBFSgKU~r8QjzV()lg}YZXgNVP3nNP4hd)^S5=t@4?JL;j<;OFEm^P1> zS025(ZdMD+Ho-JjuX@^gxZjY>0VMYO93@F%^8K7PwMGOU$q2ylk=F_{7p+AX>=bpr zp+=Vm}2nyCigPN!z@WV(%y)Bmh5RA(F zENE2{5s%ntS*XpfajVETeCz31@((Ka>?Ol5?LgOP*Hmm%id1JR;NP!0p4k}I1?oLJi;#D?4g@I^zGVd>JP#waU} zVKM^@`0r#&b0!sFb?95a3bXOLhe@Aa6-IWd5KqQWaPF7GD=8%?20}s*jZv0N1_MHS z8))lT85UXU(`ofONO`%D3GhER-Je*WnOdJg-y;M(Ls>TP8~AI4lRF{*;9uciIV0vD z6T1yte5{~LOyNx4OE>46Uur)l?h~sfS>v)(S}P8W?#3L@m-t+3?L|ooEzHDBf$ijz zdobvgB~37`M+1GNKxuUEZV;iypf9!$FkeWn-xKB7x0`rMNtS_CMQX=#La}As$s3ul z%BrlfV)pCj-S3Fz#_mgYB$x>J4M=B2M0DitA2)u;7c3eaRf=(Q7jSZya`KGe)82}X zDlukyF}z}8E2Fogvl$5uh(YJdaPVSQ{)1RtUQK-Y!Jb6YVIP%2YwbAXhZTqC^Fq5Rq7VSDGHN^y4ON{kajqEbLIwSghx$e8%KPV;yz;5%< z;E^AP!8-H_CP#Kge;STH&XW~#kP4eJ1hXS8pn$+-31jQVG9?k^!mJS1VAAl-nc~b< zCSoVzy}=sQ1*tg;DG*Sqe+c_xUcvjn%E0!{RDP@q!4QHV$In1^aIO#fmeV~3&7lpR zJ&LY;@8=9Ib>APUN8m-`HX*bXpGhsdM?l~*7%YK&*Y-fh4_zZ&)%&1D?N*0J074WcWTm?{y@zCaU!T6my;xjX78pu zROpFbSD78y1KncCgtq7=9ZMmvNK{&m%2#2VA5ubGR%;b`TGXvU{G?Q363^(&UW`2# zVXWxL+D$MPN65>UlO|IFvK4=@qh8`0Ti=L5F)cwYe&u(8vZn?&2qz)5JoS;zXlHBv zed7!m%{~2vQM#<{{IIllKK+9suO`U@!Bqi4`4vcrdKvR}L6YB98Ljhq>W0?6EoRTu zd2gBxMP=kt#ttioSn+M5OV6S`uf%s3Av`~!kKsVK%ukh*GaFL^!p89&1j5MPN>oDg z5tJs@0@D~zBqW+-VfXfVl6HMH)5X9>9oVC<+rT1U=IpjrWUm0A_p_)5SB+O+gy-0! zWlP`JpjXdv1LiRJFMMrZzl(FR*}ur8b!yFuFW-NP$RID%ml*LU=hy;sBM*i?@+4>} z;2;?k<0-FkhyoicijajbO@bjCB?ayh)qxrSk{5%@qm`n=l=b6g%J`T#y(&5^Hprf7 zd}ENrgOw?mjH9Jgz6)MNQ3n60zi+fD;LX z>ui@i&FXKGk`{1F^<6VXuZ2HZ1JXTu#_`gt)@mQORV}+bd+)~4#^+W02GJVVemRG$ z3F)KH(R|nt!Dp)sK{s>ZS~5-sFUCYt&bVja_u!!E6Epq3G<61Z*4{f$?5QQlyhVqx z;YA_^`PkhnwA-PF%gIQ^8!30V4(=>Zj~Us>Jfn}SC>B%jrMscm*;`^A!~yqaQeHs5QwY!dR0g2HXiJEQ&`$r#p|fssn?Z38?en zm7{@5M`1hOzI5k&RX9$051m5n^uG%$00jG*zr2ykqq(-sIBZ?CkotFrQs~0FbaIBy z?DhLfH!?qo;9#d=K3$^<|MDR5DJe(Xe?nHUpWwB7zkWr?Qhd*T&zz3-9&)YG{mQ4y zoXwP0+;SvhV95N$xTcc^%^19*)~Ql(UGhwwSd@}dzg_&&q4rPWL|}8dnEk&{yPU+O z*|E^;HG3Cwq*%RUsx8NtoDu$TO-no@NBOnIe{%KahdZlJzy0H}Id5?q!3M&9b3VuM zW5nH4lC6hmyGLK+@=c8eA*e;(ELP|ECuJ#_TV0Wpn><{U8A=W^0p@P0XBus|AXcOX zR?&*S=skq>=W(m4GxEo-n-+84thBj4%=n=>g7uV$^hIQ9{fCpIlQ8M=2v)9MAjen4 z)$q3ynAZYo8o0+>kKkDYTYP~ZQ+b#&5ZCyrva$Z4NQX2YXi!u<=tXJl)tr+iZCCeM z;czbBONrj9sJ|?w8dVW~r9yrPqWo2ecN{eL7{9{`fvue75v;HW!znQ@pc1 z$d*?AO7w?bthb8~i`KD-H8j=V>xj>=x2%Itou_{6(!8Ud>UsGV5$~^;BLYtHkZAX` zki|Dt>N3*do{dQFs`Ol~j>1iMhq+(Wn3n7VhQV9DAb+qPiCCfLR;qHF0fAc4d=I;7kRRI)5PAK*dz15Q0L&V$1R|HLpoO~NBN zQ7O~O?L0`SKcAnpQ3;YBPs71| zviXN(ox0Z}+S57O%_npf9K$xjbae8MRpOtcr~>H7zbgcY4MBLrYNqp=Shty)T8KeU z1)&~pB&fNKd1a9C=1V$aLZ^tFW1fN+)1enkqBiZ=M?W_DAW#G;>o(}deNCsuW;8_d zLUbVBy1JL1Ski`W@?}{ij2f&5QnF@l6{Ea3#?}7XcX)aEfDSeE^1+26pEG64L~+Ft zly*^6-*dg;!kXhlOUB)R4fvJt!C>*5#k1)h-4j1)1=vle+f#FjqelF)}X!gY%;o^6ZO z>Ne2jXrMS|?p2U#TeHFxA76cat)`{J$mRVTsBV&{CQ%#YYC|(-$(U_Y25%)s8}OGE z^OPw`+3wYt;Ncsp{zQqpmd4LVp*9_ z^oO>}6*vmZ%+2|Fnvj}cs?8KuM%)9H@#DqA&>l@swk3xGv*qKaEUuW1i%_y@M5Gk$ z^n{-Jg5Ta`7#aP*KM{rdF=i&86seG);e-`Q=|c7gOcRpidZ`Nkrs}gBe|ZQwJp3GP zVloB_?>Tt*(H&9?#P!?O$+U=f{5lehfnd#7Saz`%~|xy{>phTfERC1ME7OmYL<0yJlP8B7eUzl_`0q zTFp`RK$;Feo&o3uE2_5ox*}MG^$iV!f__=fzl|C;JsUN*nRs}`8z^-ezwWBm+gLcu zd5~ln2$P&=mY;1Q0o)^zwd}A>vH(4AS8O&9!X5H=6y%0rgrdGgV?^h@%A2#gvl)x?JloA<1Wfb2v+cdV5GTFAW|tr!l7@wH?vM#n&*DFm@!7#jW9?g z*mOHXkaj{flJeb3&`Aa#0$_Mj-aegsYlSmjLQE?ZSI4@aa}K5q2_@@r7WqwncMb3RRpjKlQ!pRWxN^+WyVR!6<(tmf z@%}U^ln-aS8Dsy`p!&q8Cdq!fE4pxp;;_&A=5GSj?=6w#ll^Vfd}T@7ivi8-zcTTG zD{G*Ea!wF4==21t*EI+E8;1sCe_%YQTAXj5Sm|Se*iessmjl3L)50Zl8W#-(2+(xV z`WpUhX+<>rOkj5qLIt0VzNzFfy-E|lPBeKaMz15#_Klm@Q8&=3mqRC;wrZev$^VaS~;2% zqS5Ib-*K>dEN+yUncnezN{JHvzXZqh^BQuh!XKFN-2gMNXDxF%)JXh2bUngms`$$7 zeGV~~1v+WVHd9{)TK}-O$F2U3lyM_+er-!~ky&TKxT!uEZSxdvbDU+FP4(v*sKMM3 zTsp`))88Kuwv00~BG-tHA0D$%m!e3_NWyd1bA=wPg=-pMu|h-ZaqZg)-OElI;LFWrn` zkNykt$G2%{A|sLgj5O}XyGxS1)movqIblyVpSuYz7at5!fe6zOQygt^9PPl!n$$y_)ib1JdRl+;!5H68pAca11 z&KVVb#|gD^w&RL^3_CiAc>>)Kb&4WPvFU)q`A-XQh4`H= z1k?@NOd69TZJA3SIMrx1LCTh)K0-MmONJ#wYz0J2!;??^?N*?oS-8*~gsF>>3rBGL z;Z9~IMe8PW!h-RxM-BNr0JD%DO!{&8ra!*JgH6Cv0g`J1L{T}h-?Gb(`IZ)}xD@x< z!G&YlyMA+OEa2rT;#F557{|h+ElDPikdY~YM+b21FAO2U#AQ}+P^X?apNjgLzJ=h4@AsA(b;=(d}AWaA^~b27d9)stAq`U#irFdUIwr2ENUTrg!(z^&X_NjL7B!atD+*LC2PA*p} z`tplB+k(EDE5H8?tLWJDZ=%cP(!1$@=3sF{x7tl`i$vjbh9~*nrLDQ=oI!%Q>ik4c9?x5o|s)2in5ZiIE&sBNwKyNwxvYW@6tK)FSuO_i(Xb<*v;>Pe-w z+1gr8Ih+BC2qc=HD!+b#nM?gCU81#qimIbhZa$UpOCx31Q+~S}a7SaXr9-eCPCYh) zvh15C`goy>FO;N_i+ZgTpx#*2+`<&4_91z-_()#0P%L2>lPxvp8f<0rS<~K{5l6olGk?8z$Dwoex2EJ{t^)xIQzZCjJ7wbjH2Mt{6A)>@FDla_?j9(Q=wTF0V;c8a&H$g5C zYaQSDD8Ls*?3%6=aMr&WK_qTSTU>IVv1mo_<18egrGR^%jL!%16B!_6^vwWEr01q< z0&b#i%x7`6tNZ4+?8TtZk5%L(Og0Fc91qT=Yq0Q%0NsA?&ey!_x;|BfvX8ktpIxQPeFtWMc zDFkYPv8Aed!kSK!V8d3wOq;v73sIW_<5Ty(4A8HcER=P-g`Z0Z%+y!f63v)|w}Xda z6lM&J(T`b5$scc^FD8N6TFukJ5lowRvljKYW6?V?2`OLDXa4f$IDD}987Qk`>-jcG z<8vdcG$=Z>^`U562RwF^!XB&o`uE97%xGC9{gHWsccZV+;(0x$)G;OyV5s35?xDvW zzVB6IgU{zDSDK&nKlIR+D^&DPwjx*V;m)-++S`ZNpT3KD2=0>#WLGk3MYlG115l~VEJ=tdZd;=Pr7uudi_>ld zR4Xy%OVV|4zemQk>Cb8Qp2sh2W!3T!P)sSZ)4d#T4~Sjd1-!g@+V~21v>*z$Hl@e) z1_x^{d$XJ*BNS0QuxOz3mqHAAaE=b*Fi4;(t*qOx3bd&y{VKa|i#% zyC=dt_|T`chJ6o_VU8%D0pCBz93&0?vo+@nU!wf4$g*`6;IOP=Q|~Euk1mK1tl z6Pr@G=+U4kD*}Qg0scaTO2BDQ^{N2y+p<8ESe)mpZOfRllI_GPm_*MY_ri_L4c!-s zD^fwBnGEMji@0%XOK9Wa+;eaT-rL1E&!~{{O_FcI%Fm`VZ4!nsd z682zFIgzD=Oh!)ouIO3V16-GrG?~N=o?$Uw3BqfnQ_eN?nQdO#m|30kyt1S%+l%36 zperw>fgD(h)Z|5RGlk2QU)R_rVweQj%IZbl~TCr9y1IFQP>RocF4@;d=d5r-8c?H=U@o`PF_;uP$g}l3-tA;;MNkz--#Q~oD_^x#MR9}ElvWwimHuF*pKY;u`?qs;y=$h z`VmChaf%rEeW$_X;nMSTmU`VvIC`YCZu#+e!^Vo^gFc5M1Px6jT;6W4rIkm@s5z~f zk&^M4iMjOooU#Gr%jFSt zWmW9*_vV(ujyCd@bxl7Fz`fv!&m$?NmYZqJ`F$t=ewONeo_4J8{Hz5Bpy4TRLr6I}6Qs-3Q;g)r< zLiY}Z{H(CV;}o&ox897OQG{4ysBWUwtZ{uDI4-#=ig)YvvG*9g*Fxn#0QoRE{XaNi zrFXt^*Ts}2V#r`yz0~>Z%*?R@kzZM%u-(C|k zoSyoeu55%fmSb;gVin%G4Ycsh`L<)6#`$^6PVe5QV>Zk6_S}}%qK?)ceAQ}gB2WhM z6Sm^mw=n5P*F0BT+;kez;*3512w!#Qknd70W7@fun0OPV7!D%g9Jih_4Jo~wNUVH) zm?LMWvC?}&YbUdvxF;^V*Bl9lI1(;p?Er(o*u*QZD0?Q;D3v*K zM+L^oy|v3IX~d%=96ti&1-FQeHM+g^^ZCOY1wiL@!C^n zlEwR{kHD_Ix|1J7uYj0Qwj&pny=GX!u@Vj#ZLG?#47qWH5_G5t(DPSNU8!WzgGGm( z6NtHCN?<-je6OG(=Ub}u07kAob7n910DT&!55Dh`a#y+5El>hYHVsJ0Np?#I{z-m| zx2KRA%*b?};ErJ5;eMilcklDc=_ks+fPjwTKNYA=q>GlH>{>#*Lz|1#m5|pF#P1VS zct%76v1we6-lf{~1;};sz3<{=gQ$~w9NU;ro|>0o4>t>l@g;PW!4RPzm-Y%z8{d~S z*Q>prlg6_iV%8< zX%TH>^QC{~;@aG}2^hYNySxfH+DW;KH({pF(t`qaHp^zbXL8(QJ7MIxQ^xI_k$8}A zws8f;!OdqvFFpnY4<8B=aZ4a~8|=5vadXzHk@fr%&C=1~HKBCQ_aPpg%3q>)C28~Y z_LQJ+%m7+GHit^KeeSF(^!5p-cq7sSRh$%PRZb)yWJ;9PIQof8BXqLOx|4a$J%oNP zWRE3M<`|3n%v33c@81&AkPao{v!02KW3pe-r(*_-fxQf~F5(GFFaY1;R^gXVHr_s3 z+kBp9v+R6I18sx;^&Z@Elg*;G7ScRUk8wQu`7H61oioM|;a3PIQ$e~cT>R%*!Kt7m ztz|^;F)mEyF`4L8&@*o?uHB7AtauZX1M=*i;%tDZr2M)3Im145nNX~w*3dplT1Vfv zX&7?1pnZr+Yjw)Z;2&m7k-4u}nA&ysT{ve7SeygF^EZ_=_5bA7owm z99Fx9bkYF3I}s>MDG<2nps*KUg~!fa=$E2ULdi0W*b-UU#Y!`*-wDl z+TO-EU45N&QJw$!_CR{f=Pi6ahqF|*ra$j;;2vy^oi-k{>MRYkBpOI?8OvdoyH{U4 zr-M|>ri~Y7n!b4ww4b@t_le320c_y9A~*#`hz_|*IWZKDR9*~UB7s=i{C>ZqjSnvD z1FYjV?&tmTM~)jwsnxthOtQ;E&*y=pZ0q0w+p(eNszZhU!8zKkHtj%BB+Msa6DAoCRS zzFo(w*K>8=Khdz$D2TTP>8F0$oGpOZsm>Nar<-7VOZQR`rt`Oh>wyl{b{BDqF%OYOdxFR*hH*bPlDlooH*c?A`|0}1xgF^s( z!Wyf(XQNeS zZ>M~wZ`aXcz=HN`Rzm4-%c$`rjC;DdUY&fOiVofSXr4qFH2~6+E*xSG6xz#9VDj+wXX0&7Bn^3rV9qbNj+t`4F1mj0C^>o>M)GQ1fRL35 z=i#W8#h~nmOno~aV}9Q2TS7?XLunzFqhk3h;Z{vh82^jbsC>e~YuDZ1_s@xaE=`8o zKJJ{8??(-?%l)n&B_W6LJlr?q8BmUwp>c?#$Ozah5VXfS>^`$|WjyEVH z015S8IG{{Sa5J*LYU96(4CYTdGD}Q!-uPY zUiWc}dd&>J_1{fjecz$aW`C3<|NgdiNlt;3{S4{8@6Z@8Dv7nK52*|%Mb{_Pjzx!U z-PCKt+Ewv;Is4%jyGc9u{S8X4Um)D7aj25Nk!#^3<`mvcqrfbV!rF|3TK(X@r_-qo z(D&<8MZ<|@Fq>dMQ5wean6IlX8fO{MtsNbn7nwN*;?+QsGIV@EW0Wal0G7{m}cYJ-|<+&}qO%MBsY{x~dN{g)#=O48ch37-IC#VJK zAE!bzZ4?=tQfIG>v}zJtJhl@P#yVV>0WG6I_EnnjOk=C^(Mrw6d!~|&S;uGmjPJb< zbhZ{&RtmVc(k;@`EqYdITPF(xA`4iQ*bqeS!escFzsIt(YhB+m z9$6^k_E2!$ryvf&m=+<;X95%SOG~=L+Vg_GcqkwcTf)ggt=w`IS zgl25A!SYfZ&)=`3V7%hoq(@$(V;36xirmb`?_exgC6_Bh5fBz$!IsOvtJqYkdA))X zpEir0uSt7PLALi|o~}aake@%A1kKmu^zPC)UBX{S9q=q;sx{GaebgG8?$7X-<=Z?E zeUI!%;4=c9kNAC)2Y(KYXm28?+a;k8Xfb#*q+oac%z})UzbtSM8wLDdb|)~3zuFq3 z|Er@+xZ23gxb%}h$uGzQmTbl>=`4J*F!h3|H$WX_YB}tC*yzF^L4%dQSqBn+o(-&DQN*RBvuy* zE=-BI9$S76pGuSmE7wGF}I0ql`)V`LV^p3-PnvkV0ClSLrG+|go$IcL9gv7BmG$XXZczP+8EDk(+F4THGfFdP9RSaFyl z?PF)454&G~LO()@n0<%~N^AQ0Y7}CeTBRFZ!D9?4er)B7rSKK|QN)qFde&rDrxi38 z4@7@{Fs!K<=enHweNXsf>G8mCXpvcG7 z-ND}5!QPKYdl3$HqZ<|}+9!X@bvb85`o=_$Z?ln~hXhTCbn&I(+pzRs0PjjK{8w2Z zH^hz9hcrvMrTK)-!NGx=9d)NzB;R-KLhnEeP~Ph{Y77 z8<)O!kdb%t&qP^mXZR#Sh)9wr1ga{GWJWv_lx&$!zi^h+xTJd@-Pb0{I^Xnu@TqmN6HS>Q2#kQHSVO2jVt(qFgy#lT((LkWLR<(Z?|7N=kF}l_dzq3!Xt4_=@W*44oY&_YWa%!AfYio)bIF zTz$#GLz_rr#S9fb-39JeGG@Y8*Zzcy-BFpM+l67;(9Wg$>=2|}i$KY5Xdwy#7d?Ee zj5t4-r4u%7WkUs?p%Wclz{35TNsixbT5^D?gw0BR)R2ip6Lhw3YDZ5iM^8_BQy{Wk>3kZ2Q(m?lqr!-9SfR&tr!1J!3XjFq(1)(dxUS;y+Zt*4BS(>QUGI7f`>R?KATlUmPcVJf)caLG zy17@H_PgbmBBI^MPSoo8Mzh~4!XK)i++1BrK(fBy)Jx;& zDBT%=d?atyerfXNL-5Q9AM*UC;+nGR5redRO$NWfG0Du`X1xw>*_V+-#ANioL-hL0jKatdI=Dh=A7NKA_vW#jjd0m zb8lbS3%gAN9h4Xn9nd;#w`_|LiIItO&CHs{N2i!|X7i^nT{#C-m9akj(P4Z!&;5^C zL**n%JXd%A;qob!^!Z-#mO9+X!@`%;i$lHla0VUF9`Oy8sEoM8~@Dc?)Tsgck@1ixGoVb0ySHBDZdowCH zONW#W^O(Td#}J`#@GUo`mIL&WKN2?7F9fbWYX3zNUp#2q+PLmb>lfOp#X=5;MMRQX+Zh57Ews`_C=A+=*oPwd_l| zh*FT29;gByB$VjqT40>)iAD;=&_^(NgK?wdzz8AH(oaxyHSIz$-iSgO^%sfgwA9I9 zGuFXcJRZ*Tx-}0vjg7?^G#Qv3Q6#J1z@&&q-Zb}KsP*Iba~2eMhLXAbvX7Z?bc{!{lcdgXl##s(4<2I>xI^?+ z$~cC--r99+y2h5zloa#Kme<*&uZ80i$O==V_JP-gv)iOpg`8T!uhR)-6!?Cw7brLr z#=;@a-<)VhGQzjyRu_7^!iBP;ayY$VMY+hW;0|9&srExQ#H$O`%KVx~bhol*S&z#9 z(*nHb!+dZOZ67F8L)xk%qcKz0(+_H%4w)fjxht{m{lL`PX;Qc9*?HK?7qcTvBAmY0 zu2o-^Rs_8XC#;0vM+glXos$2p+@W10TZv<=y|u5yo!LoSfCJU)DWQ)c+&~U|GU^^u zrEW->(M~EOBDN-Z@zgsfU-Cx@h7Dm zA8Z%ve2S>?P7$%Rsae!mK4@==-bKr?_oRExb=h}ilHQoTwmMB=R5q8{FbcXw3nhsb zC_^-->k!32(jD!eyq07eWOB2>P3^OYgbqRjJSf< zbx9F-iBJ)=ImAByKdXxVZ)V&qjr4`#US0NVdMR1G^SE~%)%Pd+pamV9pQXLq%^Qcb zyKwpiNi%1W48jdNmd~NJ2_$`giyXV^KDYc;SbxV3`eepxh!RGL64Cge7hbM|MVO`BkN#45feGf z${Y?UO*!H7$4u`L3)B8sscee zwm#L)Pk~1EBk!z_c5R3+pP(wv6dIly=GUi)&f8k&f?x46t8XX8!%&oqcyMOzkoxVl7oMDWti=3yVCp6fDO+uWECXM!q-qm#7k`%!6Kw1(Z?$t z`9=A8xK-$Rh9gYaVg=Xnqbzcj{AP$*f$~3sju>tMAqW%GmrRLcBrL(RT%}MA0K@pQ5S44hucXF$ zh>KA7M-+J+6j5rAb@THq1e$q%VZYfOQtii&^AFaw?=ALRvQO*81X#ZI`DbsWWbw_X z5IPvozt>;oOUX#viLEzPJQ_HfMwbhx;2!Yq21#n|=5CuuoB7j4ecsV)H^-`1A=U^Q zA~Qf9RSp`Ap@z?5S~KBZPHj9CNTyxt3yc1FBf|WmY0^d-hh&WK=X+GzndRr z8v^yO2`NF&n@+T_S1EU$2OA@OIS;qeW}&C=VOKG9m_GVe0WXi49S+WGDJK%^Zts|U zs-(!dCo&;3q0(2QQ9`L9R7b>=LH_)}jN$cUjrLZEdi6Os4}y<&Eb}DlT`nkOQZ#U^ z{vuUuVgrL-o-B3i1Rvr^5BK@z7C2mTzCtnJ0WmuVDCBX`)Y@W+UI`AZJ%Y~$#6jA1 z$W+duk$f`E7gId@{KwS0T|V=3|7$I}13-#c@eF&16{{DIQiwF+1aB&CtSBSmwi<{= zs`oXRY_iyL$VWg+yEzhe7(*5$)Kfi%6Lr*_Sm0(`)CTL&vj2mYQ9V^Ff;?3`JDZ1% z0n)*ap=_Kf;4A4vX`~Th`m_gKIqv}Dr8m}T0yFdcxYwPJn~mcHdB5Qu#@Ep+f=;us z%)_tf*GY`xne25(tX2K(L-C=thYf}i(%4rcuZPjG;7X(e4u6g-0%9!XpEWRvB%2!1 zY&(?OQIL*&Q=V3j8X*))w&xw3BZ48jvnPH#RLMc(VA(;aI7scm7`Di2M&tLOdF&0t zP?oIsw?OMb(gYXx|F)kGbVO`PB-#@W&mpUO2&(Y`me)8^ti$>XT`2YqLX(uUo_=LD zZy(Yf_4W}L#=E}S!2zbk+i{vxOl3@}JvOHqSVF|4r2vdxmek6)U|k07D~-}amF^Xd zYy&1CTzvqulW4DT7If`R%YQfDBY+V99~a5bFlaUQjHi{U4Rc+<&bs-Ve(xe*Ms&W|{U46dh?EEPu@HvMwQGa4!#+J{PsrJ6v#YFt3CwQ1zwgI-Ob8V{r z7)UGBCn*y5S@;6`Fgulftxy)qc~{brU^r{~EVJu0R%X*`PT~X$(RN># zvdbz@YQ0Fs$;5uyOG%70_o6L?HvAg?LoPLdJ9V&t0b|fJiJq=krq^X=z<;BdF>Mw1 zI-(`gfZuayJv)r*maFAi7EDn{!ufvVH|vgH>anKzmxmZp?VCeR;7*S6h)5aKYKKPG zamp+t20gXhhp{8@g#f*)i zuAJ#}g~-p@jI%hNvx0(>qz|Ze)IAvp@DACD+mv~qU4|Bi7Lk;N&TvuQir5opmJWkO>-yFv0DJk24N_wvBlKj2s`pao>(^Mtp*5hJ z>|JM6oqDX5*0_A0>do*@N>@{^-a&H2rA9erormwES{jFxPAQf6F?*F3lpqOAf=6Uq zzWDJgK|Lg|fmm*B@V>x>^?IQgY%e>UX{{ecsGVXup)Vt-7Ru zHf|VV`X0$OE&l;{zp@VSGY>VoAad7R*e4i6y<5~_-=u=`cK2Vp$gmrwR|b{?XxNy` zN(vUuL+_z3Zz>*3VyIjd$$xq_6U=VrCj`$|4bEX-KL;s`x@Cep$kV_XHL>!HAzsVd zss;q)Q044;Xmi1?!1fN5ko2#|-~PcyewR#I?0<36mndL*JkR_O|D!S7td1{Z*RGd` z26N4Dx{jXVzJ|XfVs-8`^AO^4N_Si(k!!gYzqah;OTD*5MEx!hT+Wik+CQH+8@aj2 zJ+OHL`|8uQ>n6d6@R9c6bEJvO)5`QMo;7RIT#{(n{3|=Ixn5DU4jwsE%D5{+>>&oD3#+x|Fg@M`>O_BwSb}&}Zj55=5n`258w+)RS^mlj zBdmj1nes)nGQl4!S{MCqA;#<=*{m$MC~lmGo!1kI0*@X#|5x{l@*`3eA-m&KqjeV@ zYlnME@h*w*8|t|tb`Igg)rFn6-Ny4bnxRBOj7U};nx(sTacQLAIeTEwI}(Lw3l}Fw zPq=X{dUP^=)Cxe@(DzWg1A7S}vQWqACzE zi(x$HGEkOc8+$F>q?cT4(xkAjJPlTgwRK(BTPRYX zxO?&9#arAdP&~N177NlAcXuleh2pNI5G({O8bWXM7RaK77|T_`_4@Cc3pg@2lP>wY7r&<1Ufj0p_Zr&&nF0HF;s>!4 z_#OY4Q)U{!rx9~kBYXatMQL9RiS=rLdazJ+L5g{5tpk_VIzThR{d=l+o7x1Mct>oI z)kkyIqbb(ll<`%CS4oGPVZg>_=$kN+2);iL`(<9;_C0HiIcDbRCsWy@zZG#z>wSM* zDi~^-3a0Rt;<09ErD4f^GPU|g0R5l!vPQd_{S+9FtY^ zy!#XOTUm<|4!#v*EZ1A(&i$8Qr2Pk^MqZWct!M;SFhqJsyur&EQWdv!K~Dqw&J$ob zeDd9WuIv`*Defo}2>)&zPVU|RbHFViLoiFC@LCJnl-H;NRPS@4ZJ*F9ale_A83UYQ z5o>IwkZrNLYkDkW#R0Bmw@4k>Hq8;#feE$7B{@tfUWby zNu1bz4qwCiu#$T>B634tQr+iM%&*E=ZbBzRVy*ktba{i;YB`w)vXc9VZ(-bqchpG8 zNcidEptg2Gi%5ZGzY0v=D`IvFfA9+}sJ z@e_tmS>4G)oYUw+q02bcLQ4inuG!6QFoGSROVjO`trH`X$a~Rp?FIC{<#QHTuNt_f z(vZ}UB<8U7ir^&HX*jT6YT7EJ+mKPD2!7pM7XDr9MWFt^(0ZiWRqvr3E5l?`lft5ocXNRlUtw z;Etv2&GXQX`AO&IFExu2Car<*_1RHHDyL6ljC3{XF!g9~i!**_uyDz=yjqu(;fy5c zu!@**tewKPJXE9RP=6E{FQU(oq%=2^G;s2d^0!owxwQ8nD|O=7q#pmkX`;B}8N{JOjr@PhQ#^ zV3qrTq^ypTeT@1fdKdc>f1Q*&zk)Pk?gWu*+eJ&gu<22A5Pd8}KF_l$-XHTzxq(XB z)pWC=%9Y;SL4gCx$HuLw!LZ$9Y1Cw5iG`zj>YL}{ZqXS!y>Jr-oSAK|tajFgE!B3l z4;a3?UMGkZN2P;$0x}*z^#V59ql~ZW7%L{%&fcp9%tzc!z|=r@irG=xXZ8J4GW3%4 z`b>lUK*|4D!y!GL=3lkIDtxxmMrW(bndrybr8u6~`o+?k_4o^9_ z)B!k_6)oX(R6)Lfl6ekQnsHvLYwP;TL<>&!^Nn6wq@#u>;NS+7KELTUcYbcndA}aD zVV$YLg87LOdX>D&L`XqOvDz4YYTI1$=VTly`41M6B&_&Zk`w)sUOM+RTzqJ!grqAh zbKX`Y!0VSECqKG`ImGiik=7;Lpp>9afoX!20ry|v665g2y4Eℜ)|C)CM^a zgxC=lx2|b`td8jvqedQ)L{|LyA@yf5 zpZCmkf0jH%kBDP@*)+AUo0I%c{%W@egmYHgEaJ_RGoZX!l`HG>)A3%+q(4#ik+L$=*G zrz91uYb7=6+rp+_qugF~5(;stGsG8(rsW&yeEsA7`kYKX5qk%?-By3wa;(RxOrUE&&{bA&iX795)Efd1p748;x#eg%6)SdjBHQCu$gB-hb&2mh1Q~@vER!OiDBL(Dc{6 z_Vl@fpKMAwUkJ!DwveV14_uYpPaf)APIJKE-5bXesNuUnR16}k*`eG2Wt=@3?;osF zI&n!GO>~wtP&mRNt#d zW*)ga5P2NzZ<|=q18V=yD-|z)@aAsjd6w5=;9cfGwQ;>aPzJe4*4|k<@4;s{@U2gS zyhEL8sbkYAzky5j-Q_y{g~U~O$MutI?1LQ)$Z^kM;$a|X6sTIGz2!}k5hklScj=!F z_hw-QV*P)=AYA-!fA2oXJoq&634HdcBFneNNRi`5w&Gqg-S-M1Gtz4;|NF^nL|oT_ z>P;Bo9qcg-B6hVKing*q_L?iZ0w9~vX7nCYMHOEq1^FnLXt~I17U>&j5N4v=Y}u(- z>)R4ETRkr%Y~g(W1r{Wg8upwW7ZCP0oD#+$sMG>(rQm6~mQ08N!%sr$LvF5bSwJv+QOMxxgD z^DN+A`i0)dlPK~1{a=XDJY9D2LdRpW@^61u)!Y{;wHS9k){#Du$XJQaNOI5VQ>6J( zPxXMymBq>YcJSR0Xt{$k=g}YCR^on9Va}~>{VIqx`q)N#>lM% z$mlyOWaX9!>bq-P@QgwfH(M;R<{Exmm3u>f703|1v~b3qhZc*8TOIEQZ`5mENL+_^ z#)+G4UGXj?5o8w9=R4A{Fi8r~waBTy$C%&;Bc6+fhVyS#w3!-{Bh-p zO(_vS$De+WJ73cQnq`a=wJvne7ZS2`zmDF#!rs}%@d;20^pghqNehbx2l>yz?_&@L zt@{VxMMUmP9NlSEH0iY>kErYPj*=+A=lP$p!0*zT6-OqPe^ia`3ioUXCEet997r@n zHgSDAdl1gGSxP4m#;hy@Z5=_;uJ%=Q0I9Y!XDt-Ck9Y|4WFN;bFTgHWU{D7rEhZ*# z9}XejNhUq5=V)RnB%Fq_M(Eb++HaHg*(FW|CZbF< z5Gqtb!v7PPmY@Hh)FeA}_snJSsm|LR555nt)c+`v2@28g9gxQDb$jRtIxHF026%zi zplsTQRon0mkWqI}b(K6UwAfM^T>93_noUehn#hf3*`K< zgG;k)(=Vw3Ps>GECE7(cWdxsELVIOIP%6S=9x(U~hX`1QooM6k*So01m7ZZ0ExdYBiE=Z(v>kYJd@$QZv8F)|B*=c!v z`F_fA_yRxO!q>MBX(7zx&+)s0o1Ko2uI%Cb_>$bLT~dlbGrPmX@}4YdRcyngxf1DS zo4F>AI|Qejud=Y1)z!qy3)GJJg@kX<(&^T|n24oo&AnEA`=wSrAbItdPsg|D`2eOqe{KvW?V2~+JJ{$whwL1*do6Zw#O(<>D^$Z>&aSb6hfB2n z#!P*6D!A@78kHh_9OsyNA>toORr9_R59%9vSwrimto89@1Q^gkHD-ze`GSKB%g>)* zPS9Q-zg#f(Q@)9c)4N?YC%V7IgPamfuJq{am>f=POjU%iI&w^7|HV_e`2V7bfKPt% zho2*D_zHuGKgv*C?Y*%dcUXNRe(KQV&$XJKF$FAPe*DQ* zA6%VIqwN;F)5aSJxGN6yV}LJB85>P?wws+_Q&ylIG93Y7#;|b!j3$eJ(y_-^x*>UI zrRW6HvbvLkn4hJfMQtN(RTe|*jq^xj*{72C!)7aV^tN*tlPJ3nPPim&igTF|8}?1 zdFMO4uzODp>5|j4JL{`Xj8xyM>>c5{>vkgwwoBO8O)fRg`c%J5AKQF zqMlX3d+G_+kCvx4w~uf=JubsgN6W~4gkOH<$7%hpay6Xz*_+Wh9$^3my!HP2%pDFK z={EL89xl}l7)SE|m4k2T|HDWUWa5$5u~{ms0K&Igjp6-;06KVcLPB(Hf-ZT>{%#wfC2@03B=Fb^aW>N=RqwY&H?EIo>YBs za#wH(@Tr2bjrr+ZWvhq}ef(%posS;sG^?R>TBpXLNFU)d903tHs24rDs_M8Wk@Zqz z0?tc5X7DN!+~#p;$^+l^Qnv(JxPJ!i9x(1Tr&V%tp&ctl?cK~0qGo%aGq8BWAkU1e zO**NVpKK<5P~*Iqr)}INYF_cjCJ@E33(eHQ^Lxjv&pccdZ9hyRsHMvu52Ku1;smcr zr7{nov()B=L`}9XUtGZhzTSel6votSp`hxlCb6_XG%R8}IB)YJKZm(96llH5i`Y7+ z+HhLq=Qa}I>5~`hG!{{N>IytuPzZkWKc&4#BKF_f<>iEnVDtx?&`jgEnB7Sd%W{*LI}in#rArO+C`RcmrGRODf7(xy};5diTjkZ z{on=w4Vba5JqWQ+2i{0&jxwHTAg;pD{8`XK-nE% z4mcZ~US4BY2s+mc5KcNO2-WMd>o&ZkD6LmcI}PjLo?*^o8vF5!oo>S@BpGO(vn=)g zldYH6p6-%0(j+fujs6ynO1TZp&c8q77WtfAx^aSR0|d}IicrzG?*>1q$0%H7N;~e_ zE2J?(%%1d-a-L$u9hZq5!j?+GWjMEe?<7e6ihzX#|1t#$vUwgMWXqO@S*c8a=Hkfv z9LRrOfY5K+&RcKFq61B|BXv+|+`fl9EKnsD6@=mwemR)B`(laiv$979_{vX{=ya`- zyhzkYC6EP1q~{zsU?&rZ{B?oIMWLCXzfxCQexR2^fR}=ok4&IHnhC{tQfBgEj}|!E zE`;unXG}rEu15HYcC;gtUFSWi@*5Yf+G8SqnvT}CP9WVu}C@oUHNY5TBERgbo(Dyoxs^IfR~&G zL003ld-fU0&v{M#Uo8y0W*}jXTJ-m`YVQ}^19#}>c;d$W(POsE6>%gsPy$Bx&{OUC%1gb?RMe3#sf8KT+OJIKCGhXhkC0lFhtQ zkKHEqbE3Uhn5T0dqLA1@!uM;y*|%PF^1Qd_@X2~QXb2C2LRIS(xo3t}S|*N%ViaDB zMl*p)_ez0{GnZvoVjgV{!ORbZH!T~ViNmNvrz!PEvqEM50{g&M3ABGVkGRmR1oya% z3BK}Ob6)Oe4@hBahwWITsF8KRCwDR~Zc4q5RAUW5cmbc0n`{HGhf6d$*F!h9Ej~q6 z#>iheYrNqYih$0Z>o*Q zl&XM>YaUiyz%k>@n^J8?R}~DcJJ$T_#O;dU_#YJ>o|e%S*gp)LgnL+Uj(+^Y&2*}o zRi>iT`=}9vb0tJ8pYxs+r{s?xV#xK*pLN5cZFJRHS)xb#6!aza4%yek3a1>w{oye4uvb5y0WezUIOoR zO_wqfSsLID-aMi7LPx3JZ&G@}yG&0Jm{dB0y_qFr>?1ai2?svT_yt$3pe^Ou&l`KD zAw$oFsL!d&BIibE#lII5yl<%V8`1{ZfzwlJ_pNl{N$nhM`t@C{TWDP*Ha9!*euMZ3 zZ2XH$oOVO`_kHw%AE@dc)3$$_M;w8@7OXLvvG}>{%|esSq-$x|&`+Ny(JO@?jYp;Q zHu7I!us{>=pK9`GN@D*{;9RDb`q%Pv`#3#hKX!sR>188{y5mf%5W!Bvrkzf{V8TbP zSj}>TW}b5rncPpB-DwHL)<;-Hs_o(f(8%cd%F5*7q1q_~8@gxzPw;Q&KaGRVdfn|s z-L1vltx^Ky4NyA&xO75p?I?Sm_8`kjwnqj2+k`&7K>yWc4xZXroT+jewNI~R@jtEb zQ}J9HNSjbmr`9%>mMqf zcb)|?zJ{cBz$P6`Nm5V31c>Vj}5owc$Qy?J&XEbcIWk@1fbbik3d zXHP^eQ79yI-5?}{=4LXUUV+tM5OGn-qJgEpiuyIMQMDl1n~?NEr$iJ<8@1R^6POo_ z`m~xH8bMMIsLsJZU@*n|cS#%%z5AEPUDj^j#CE~8!@SYfCbcIdg8eUIdL9}nE_nc~ z#*$SMq|HcplfaH4=QlX_vsy45#RHbPe?`62fBC4#JwlpAXa$tPlBwu1 zLPPV?qJHE1l>)$OHJ7RA-&x5?G;+c1Z~tBed<8i zJ_U8HyGP%u2{jCMCkTVJlF%8H6>NTr)_v-V2k?k~TRX8KK2(bc*xa;s@+=wksqmeU zU$qS@i8}phuWJ4ilTfk`4(B=Ux>G9mt~}VgYV@#2?B@@gDH_{04M?;&Qg>AAJy!(- zUkWhBSE}xbN)%Vx+*0D%e)`#JGKhI>{$?v~{-!i;&Ihfa)@x=K_DT$y9cOSYkTriA zZJwS>;*pJdRHa{F{;^~`+u`gyz5K0iO8=H! zFDG6l>|#|iI&HKU)@WphG9pX{CslaB@u{Vf$)oNSd&p-#4e!YI1di!yiW4bgL|8-| z+SBTG?gyJhET`6xacB2eI!*Uu_u$BpshbFxk^%JlP}8PTXxZk*rI| z#Juy?R{hayzY#*GXFVw&Xr6m<)73>Lc`eIjoxN zXgB-(xp#Ln_8h|D2@HZ6na9QH!q@ymyGkLUElEYuYb;?M;gjfjtdI-}!EL?r3>te5;~*cKgNofkA1^rPO~4mT z&~X`Sn6L|**?U_neIC_zr|&2ZEke@nI`}JFAl;NJC$dkV%64b-IsNVm8iHxfRQP_8!ZyfcO$n%wY`IMqaI~H*Ahgbe5 zrlATi&dbZV%`I3qyqE%*Txj3B6%K_uH5+eMw8J;R25n#i^t7Y-uFitM8#3S>2Mopm zJ?ckYqeORo5m>DYWR_WIg~ejd=~a@n%0Q7Wq?P# z8DGmpO8gj@fHh<bb?{ao9Y9nUpOJs8v|G>DGaSj$=2^FBco3rimCBDlKnu({+72yxQ5*KU~jR)mSEw z@>`jJ^d+}{`j6oxrH-~{b+<8ob>26&bmP~tYxoFX`zQsj!>GoV~&KfN@ zgX#%VxpM1oFQ0;m$86NpZ1O0lC=f{($oNi}@sz+;0|xy>d%R&-+QZ29?qn+-D}oe* zg4fn}uL|kv2}QJ*+_UhbnEcPpn~^X_=XIbL}k*A);3DYo+4T;Jo&PMyXPSL%E9C@F~rEPTN1nS_}5v% zLst_G>n)$ue>SYq8ZCA!_SdZlrMZm{U@wZHJER@F($+f-1%T~EFiMYB_W4z`n0L)} zuY5D)o(gQ=-`}s9gWcpHBooguHqKd;bY9Z0U+Mq5w~vX}uC<6^lSFRlla0-(bRnwc6aiGullX z;l+)^KD$}gZ+4xkEUPW_-(&Xx(Rq&mi@d91t75yw>^cym;imgUM`SrnY}^oi%C?!F zU%0Wi9>5Kgs-5BouOcPgXpA7@qv8(H-Ef|XL~rsL2rvc zQ6aob)sfKz3+QR z2dOAmmHVT?i;LKUbL^}N12nU9;H(}J^je3aMa_rvXWLC|S16nzN(Ooj&gFax_ZHlU zKhw;a{gNugu1N%*f zcSOy~QgjgoRW>SSUOE8$uEidt=R~1YrdsYqz*#gJiRcBKd;>*kF04sq7W#WQQ>Wgn zM&-D5*Sp;&CZ`awYH0iasnZ(RaaWr~o~257CGesj{M}YN_az%)^yfKm=$!fo!e3M0Fkpj@A)BX&lWSb47h3ZQ zfb_z)49vfn|Ev;6xngCG!d%} z{I`!;RyQn_iozk%UADR3Wh0}VZhc4W-M1U^^{rUP71XN5Vu^=F8d`dJc}*7w-nz)S zOrM~j&oWPrm_8&O-HDy7&{FKz&%w=Wn+Hy|<8#)`QwQYOV{vpTC@1$1^MUPyOQSkV zO?mSLokz(ogvv$PYUsfE{?`y5*_`Ax@u;Y>-^e2*ql(O>lZJPW%*5F#eqU!Y_jUSt zWl##RgR0|?lj_<;xAU!v-T`B&cnr=4H(QsgGPacIup>22Afek&K$4OB!Mua>t0@;5>_pd>wfs(_ed@e@8p8(k_* zq~o^rc1PhU$GmR?S8+aeL~5wEfrkEg(Nn!-oNbK)sN;?oQPCEsNWZN$8hOkMGNK?gc!YmC;I zj>KzM#cCm6N{c7iYp084rgSg5$ubZQ3@Q!{a85f|qJjVA)p$2UZ*qR5}uvM+^D5{<>Bv+U&5z`zdVO3i;3 zeEF&U>h#C-S?$MZNvqAS*Nhgy3(o;yyIB*XO&8D~Xxw!C5(@JOqk=MA$DK*OV*e5iGb{4V#b z!oRCeC!WxcdPOVM2Rx+)yITUzzKmWNgY9C)t!t=?UcaWtj=_v7@|YjY;+S#N>po~1 zqjd8aT+Q0r4>-ZQ00+|Dt>UyA6y7@&jTn1aqb+6K#g0Z3sf3hbmUMMo1gu;t-Yf;g ztZtm!A(=)dvFCSsqgU=;qX5E=h`HqdRmD-X{}silbzrs$`!M#@X6~8#-}6XR-DgwJ%A|L8T1=mPo0fu#=sKJG>C)(o1a zWl0R40TRs+PdL3=t!UK;kledxL_RY-LQ2BX~yOoh)5~v^+!RY8bN~tVG2O5K&q_I-W18Zoe)ay7;xQD3fhz|6qb* zKMAd#%H1$Vt{goO5`G_te)F6!?1t|-umSBP0=Cxxez_e3GcTg*y6g8nx5}ettPw6H zB$ykv89PU(Ka%z?wsvs38`{8C}ig4T(>zZ?JDrlQt^!|PkS3k|A= zpx85?i(NFci!>s&Ewfq69|dq`tV@!@wT`%)8>=YexnJ3Kq=u3(SF_<#WW=uP8o?7Op5#D>)2?W4)(OO$8$gs=E}WamaXFJ?4n ziE@5Ee_rCd*rN3odNVDgC*sPT@;kwU$Whnc+@b}>frf#w!3mV}oe5H_R5Gj*{INt=`WMDXASY(1sF1ous1b&sM{!EUJ4jj4Jj&QWp^H-jwS-RO5||vQgC#RfyQSG|5}e zB~lRQm_FmKH+jux`kMRmtLVmcRO+J+Y^W2q69WtBQj9>uLi{JNE43N-n{U?rgGSl; zQh*qBX*XdxfzUGz^o;9g3q;Na9ga0JQbv52qxf*R434LssEC!1@5s`rCXR&fXwT^u z`s-CVSpq_SyG&K;ZKKY-c44;ZZ@`H| zOKYp<+y^a*ppMGQ!PZ=ta@Y$;A9=hH8IQIw3aVdGTiXNFt|!&q>+AoFKs5G?4mf$_ z^~ST(tipdBlOdP%1KsWP*%IJ*1fRTbxkW8Z;fS_IvqP z&SEol_0IFovbO_Sn@A0BOM-S-e$sYNA>yq4&G6XI$d6YFFe(2z1H z$UL?+%~8Jgc-72%DU~Fuah&b!(Tu>Q+t+>0+CBUI%NMO3OolL;v1;2m9CSs-B=8XT zZuDC~>-zqsHZAWly=r;N>NEFz3S}D**)D64(WgftnZxtKKdEu)b6)=Xs-2m zTm-7#6Ox!Aru+aqu^8Xf$Qg39&k30)gRX%H;bcd>DO8&YV)5069R^v zC8*=D^y$Mb`VA_#!!Y4Si_|ewKGSCRN$T5;gd0&Z8zKOQ@Et{gN7ak+*Y>0R)#yUJ z@3SIRA}s%Bz5INUBOi6h{VoZg78gzSKQd0!Cwa*~Y}wH+DimY>Y0?3JYs~gd@$u?s z4f(-yQERTGaJ@>a1GS_V3bd{HowW1EUA_Ov&BGQwR=vZ(Nl(b;3QlXc3?f(LM&uIl z$e_VSV?oyTwfdr~j{)k!aF-~HSBcWX03u`2#z`7Pn~^dpJt)?TTv zIgiY=sbkNtMy_u+nhfr(I=d`8+lt%&DW|F2Ut`{EQeHq91N@(RAuoF|_nK}4_dAtR z83s~Hu3&5hcAJMs-rs2I>saf?c0S~hC3HSMt1S72|BEqR$%F&l2VEN+{q*chrFz^o zA3a;r6S`MiaYtzx|7f zTOKh!7wQj>jMrdAjN|ukw@OC6*Y5M~|Mq+GS6VM|B+$c6>p2#)kLLu+geyP#H>c+7 zK86F%VO)Q`;K6+cL)j2zp%wYjC@Sir4iQa0g^P#0GeMhgNP5mWR*c=tf_+W!sT~81 zA%6HJ7?`ymGUauvU+ke35|u?LJ>qAAR#XEvdIBcAH6%NCoML~f3aNW|SS$X{q%-gf z`r~Q+BFFbqEVm*213BHqy4z5|tVf=CKPT^s4=d21~I^8DRS9PHE>$iX5}p z=SOeSg`1#v{hsZ{*lFaUr%KnSY?CtL^Ber0ooF+bf)4q;VY{dX3ofXFYRGDI-lWqnS-Ta2q8k}s}gr4+GpNrq!_ z3P+%H!Er{&T4}+SSB59EC)Yq|B04Pl1~|8b33WbBqHh7dYy}Q4-HGhO+QGXQEGz5b zE*@v#S6N(=gZWB!S12&UlP8XkH7Hk86pJ;=KcRBUaE||X$9m7nZWx>Nc1xAj2Q<8Y zmJPBAGxgp!yubN#UfO&96dI)i$m?Fdu5g}1?O@#H<g;aJ+wnsS$>@ZQ&DYl@^XeW$^3Gwt= zpC)K*9OCD`*u+}NV}$x?xc?!lTFaM9{4h(Oro-@^Ywg$KTd(!Y_@ict!mF$}J-BdB zT@Uw;jM=XokE(V`%TS!sS5Va|vfVDxhm zG*=M5B2?8!GcPqFPCLIfxowTVW{zh<5&$|E*a{3hO@!5_d5jrNhyg(^7oi>jA%;e# zhGDq=^B9SaTiUChufn!{1p6Dx%;$&1I7P46wZkkqFIyg*X=lsVN7|6r(&!GW)28CH zU^BWgO2q#7PBtF@@}1NRcT+}oB9DG_=;i3<$@P|onv7-bcMydpy&&`FjP9-u%tzAL ze6;r&Tebsl&)$m%=){kIcjT3jaIf5}9Qc*oTpz1cZaU;7OQ-{4;4-`1=A@#mDyI1yU}-%I9Hr%Q z(jF^lsYKd1!Hb1DRYc!?pEsD=KdcuPE)Wxz#=%`)ejqd_H_PVXj2_?_zDL+*mrx>9 zXe&-1Di{2K_LUS(Fzy&Fs;PVqMm&1OJG@oGpxS7e(&xu3!2+dEuTI2aSZ`UUQY$07jQ2|RE+ym!oAz5oxLDcfY zlsQ*jgO~SJAPyD@uM#1YA)Swpx!ecpbfWqZrQ@1-ua9M$PYaK&GZ;nZ8y=7r-2z_t z41|=Mycc9>GyTQ4jIO(Pk1ciHP%L&2pzfYmO8EX-3Ig^e5v&ez`_{xYL%2E}yW|TP z@Bk?SZyaxbZ5scxd9bEXV{5&tM*meTK5-6Z9?(=@mt0zqz|1cc@q688{_)%PC!={| z<9eUFh3ZkG)7^PqBT@fQiL1~g39*%$t(haQQOGzROFu#a_v zwZZ9@&&`K8)5awMmI;p0^CU0D(|qVOC??IHRVUlTb5k)`uBa&aY~V89T5ykUb|8x1 zAOs7kHqE+ZZXdfxwSE-{l(i&+1*VV=r)3$ zM>;)03qcnMSHw*_Q5xtr3fnA-5Q4x<l*$h=x6qCYW>E z-k$LRXZ4(+;e?^{oT2mbhW%<1aWHXpjbWS@Wz$~G0S?rm)+y}J(;L3Uew_RT-~C&f ztJWxxs8>p_?3ZYJD~IXOQL>^{ppZP|C3%@irp(L}h9P&)MccZIU%5{+Mb}F8))}!S zxY~*=UtPt7Fc~iOQ(D)~od(_Vr-J+^d{&3%icJKz+PT~ow+f6mm%i1#@LUTZ24zo8 zuCCpYnKPSeg;{P=FhTVkS#omfk2kNw_{TWv--Cs+EP>_kZC993)~xl@3)#t|nBsF5 zxF?bPsmgkPx5)glO-(oo5|T@vpiP=00FeJ+Guk*`~XN2Y`hv;#!STv>JfOwq+m3)%B{{WOII zsHZsE@_Is5$uC$L6vY_lgFk)?<#bEMm59t2&^BHo;rhVX?g1Hh3M!&Hb)ZmXE&5(W zV%ixRBz9(!w|N%4xt_i8jcKxnSS$p)WZqGvnd{DI4MKv&TtvxET|Ib5#X2Tsq#KRP(V8 z21ZEM250z7D(1D%Gdu0PR`Q1PI(VLCalkeRpJ=a$s*CS#iv@(=h-au|wt;d!z4UizK2OHl)0Na^~KA$d=7E3Du2r^i4Dz@9d&6 z1Wa`MsRX(z1p0$^uOnUjpC2?i0qr{+$BGocz0{?snRNl@pzZD z)ZisU2!rZm7S8&|RUOG8D(&crI+V{zWOM z_)5wY&iX1Dbai!EvIbZP^!JP$4aoq>b&JYo$SmtQ8zkq%#%UQz9Sen<`#}^lkqk9s zTA^Lu9RBLNEhN-Yr>ox;J|?j*O5q{u4AMyQZB3@}FJ^)}#a2;NkR>CQZ2;b^eS@uA z*VT_6)j0X)xQQUKOf4k`gN1V{bY>CY=cvUrN;2z$n|9M1WBOKjh$Mr%^!{Bd-&=+} zx)Hs|WI@9HEKRH>RvrkK?e87X4oKW}CI4OAQy=!70W+l%t7~3z{g91@LX1A3tm=s-pi)32+*p)fwEd z(&s;MJs)(S-6UH1EXt%8+T^m!kTEz#Aew`gviNq^_Coebn zeeBaCx*OmAnMqImA66Fk_(5az&-tgg0rQSC=pMWxQhrn(zWM+mY>C{Q1P2#MyD$su z`Dx4Wy&nW6aem848o|S2`PS01fjLHiFTNa^U|$HeX@pkSk{cSx<=Ps_5EtvAy={?Dl1_7W~TOz*O}27esrUBd|Ul4 zwEIFgyO#a9za12ljr&mgRQIJ%hwTfSj|}Ul8fNHN#Ywe8-rIfgl?x8-o101`?wp9Y z+2MBh#d3U2cO2p{P{BbwiNrNV?}-*8ErZqZ^eZ#B%qQF&an?j2890@nn>*ew;;SQ^ z$D^`S&P`_BWT0`h$vE7v{OApx@sr?Ry7$AcZF!eg&h+3|*HmpNuYJ$FI@n4U_Rei0 z>h>E7A_U74^r(i98v@4j@^}G82?FE}^*z^=xxS+3r#KHDC(3H7eP%wK9A~;R%~Ngg8N| zhelV=PtnJv1(W4PmHY7zPBW_#>LZ+eoha}B;TvjUexAQTXINy2b58xoaASgg<`EO* zrv>;~q)oAqlLdPLxl42~P!bST{Z@oXi-Ht?5?KSi3utM(zH<4jaKFnB1E=lhcAMPn zlR}+yxjTe=IXUZqeuJ&Qz426*-0TD3Ui2u#*{iROd(=@RsDrH=u9lShy~Eji!s zAMOd|Ntc1qrygvsf(8W^+&`kSOge$ly084UYtx)bX6)O}ss5+jMgVUHePb$-;wdGc zZOIq}|OKnE9W-#D<5{&IO%n6);PEMvQcgk#tI(~ghp=OjVKN} zF`6VmMKNhgA3_~LYKMwQ_vf_g21O@hDGAl}O?@d%K5f<9t$CN?#4K5`2CY{=QmE+U)m)=wz9TqQ9`a&$=jBoLjRZS0P2 z2IY;ve}~ZST3eiZwv59t&=;xD-A7hl!1|=QqnDO(Qh@sbbd%AnfBf^=EO{oFZ8GcS z{?(p@0JEIX&ArK?l3rup(2t&vzS&FJ78fq^7vvwP1<3*^`IF&X-}X94X(KjdSQUo} z1ijR2!tH;!{rw?R{_l)XeYUsrQ%>eZVj3@0iE2&KNBW!bdrF_FDM za(=)0zRh|j>4Fa~;}9IqYM4=8z0Y;@9<$oK-)S~PaBRNI`>SKsF@%5Vkmg*kkHS}D z7tj4qeV>ufz0d5{%*KXbfmwgjZh^(y_6}QpziB!~SsC-7CbX+i9{L^~iA?7h#K-pA zPDZynVviqU6l-ofV{Zn<*WtJe0AJJ;L+!u6SQbj^$mYwo9hbxZP5k3pz85g8FS(r& zWc$UUhWrS2L>_v^HWHs4Z#sB&?H_k8HgjHN82gsglTxbLeC}XdsdDHo*4*3p(63JI zg;2-ZDk(P)%sMEo3`L%*A+CQK@ef6umbYO=;7@g|;VhctJ{x!0UWrd#nA4uN`^=Yr ze}YjaD;ZA1Lr9N{I0LazA(0U`z=p7YwB0^*j`-0Np?9YD%t)c@`NtO$ZBdKD!AXyI z3hVgI?RSt;v-f`6&mIjMIowx&cAyR+iO8gOcCmhI{>uE9gy6ASpHJnHe1cqlABKYK zcX~~cV4_{vMyuvSFmmPJ{%8>N(XRrUW`c}}|pR z5|JTB*7k5O6n>cnHogK2VvQNO-j!C*-LB=$i~5fuKuT@1&L8pVg!pEpIKg`iTWnDz z9GRyUd(iWxQ$wMBL~F~bW9@A}axt~trXXH7c) zjA7c-l=mSU4f60um342)IaAm_dPh{RQ6-rt0!uxRKZZ4EkgO< zpi1rSzwM#bkmw1ly2Nx+R}z*r9dbYdVf1G==6r57MzcC>lksnU_}0Lv9V70}(**n7 z#WX8BLvW4neelWQ?xk{0CusKcoX6*vN$X{MX+Q7v;Y!bfXFmGIWU+)@f|96OEsLD<~)(n~ac%c_$PH zD(r?MX?ji?a}N}00q#z}JmRoXyxan->4+VYVTf2;9f3;v~T^rw7{K5g2G4TQ!`aEcjq zf**;W;9hnGV8VHlz#thY$voP)CCRQeY>^YB%ZQ-gQx`*@qVsB0n$w}dxB{7MxxOK3 zX@6*s*@_c%OZ|p_)sx|_uaN7*OY<%nsaYQ+wxhUi`FQTgqsY9mOC_07Y|76UFT*9j z7%9sFKgkKEG1SdUDj5a;Iv-=~#^-!H>3w6fNuT$X8g-opUP{eRUeqaXbe{OE_L!~j zF;qyze75m?)|l*o-#L3`lq-UCE6u~>fzKokFODx6g^(vA7ne{9ipL49V}i=)s0qCS z<$YHI@^CB&5*4sb^&5DziJa-&izrP^ipQR;>hA*9?^Gk=-!$TBhHGVuzpj91hD%5`(+dNt=OoQ<7>9rE~)Fo;Lsp9xVQ%I>?5Sa$mpspELU z(l0SI!toEGBzK{^GWmX0@Hhp??djAi67rwUHaL1#h6?rx82wrx-DizS3^kHl3VDe$ z@u>Wn1xVMr1LE>!$lZThy%LxsBe<(w-h(t6r#|)abMIfFj<;#s4)2>ZM2+;-lE(L0mD_Ktmb zJU%!0OZ;~~NGYB_VP1c2y$VeG79V^-5Sc2OuYbp%Dx4%kZ0SQIbCzGJjMCIDHQTlZ5=qHQFMnA#v0al$o8DH~d<&kYhI1Mxfy4 z{WMXt)#$wNQ}|yc8|eN0;QJ$6kR!|*p!BV78tLj<9IY9lKzQ4rnw(1H7t3GNm0FD& zKcGbSIrkYm!q0!0)Rsymr+$y)Ic%4|OhaFe@Rb`dgVJbI_J%qIBzZp;!?dKAnwMBzR(Dn9;DH<}`5LCX&$@&v%BTgIG z$e*q#jQyI9m!bFd_A=h~XPq_KRGCyHR*7UOYL1^>C6X|e@+7m%OZcZf-t#q#VQEjD zK)3ko75k2MU=!q7(0-ve=1iP5@-v{@{yu|!WR&jk%Fti^{a-ux?$7uCHTR)CWQm(! z!F8myG&7Rb=9q}}M(Di8QATi)7c#>X3kks8$AevPc9LPvxUhfEPQQ931m;>J@)UJ) z2a*j!ErVD68H?MRL`7Gj+;BzsMoA1nErx3$nRgY`Tz&Q>zfB!_#}0nG++F-q_Q0*F zPt6K)>63J(9qcyLEUY{t^XyTBcF83!YiD`h+#Q3$}@_I z$ZpgyP+FecsmF|z+>oq;^^-AyE*gs)>m3zX_G22<$3`CilC!M%ks=F)r=0Ma>XF>( zqP97|>o6};fZF>-B8T|XhTM+xo8YpY?xET-^Aog{N#6(>2^%D&1;?+)ac;0Xt9SBt z)6}a=k|Ir=2h(qk4v3*16%M%trSySQZyt(6Z^J^7u;0}H1!q7~P(!tl7S_y9e>FGN zGX9&AK)Von6Y(M_wRzV}#60?R<4f16{9hW~o~jyFObOEF?(p`fKTllDUb2nMwGNf8 zZ=;6qj@FdBa!b%kA;F>QFbr9MdHFHAvxBe=kdVfy2(6vp5syXqmE~HmTwwlyGE9@+ zedg-Ac-#FX6q{K*ce2e3T=wAhP0PZETY9(djh(0NVPVB#;KeRve0mUs0oU%uSSq7HU&FofX@w4SP(5Dw+ zl>x3{GW13UUMx9<)GY^OdGGO_b8QmO4>HNI_(vf}oGNcP7%yl(TCW*n zVq8bnI|87q`TkB3n$DmqD7d!CUBTDou{d^}v`ZA|<)*Sa^$)VU zgs}WqG8>>3FR@9#Gq2I@^_!!vwjq|8ovk`LzyIlbl{uVbWtS^d_!n^KM-3;iy6xr( za1Jvx%3qY{cHgrNtI$=`@WJ!p@ZhbM_wSea6pS!49NpSbz#;k&dg3!N9q#6zBEN7w zGxuz(`bqmP;noUy9W+??Sz|{gY~S2mvsq?BjxlSB-&De~^pc?jGj%WG3sterjrhn_ zjy#VARb)Ko8q`T!aDLu4X|h>phETSK89HV0WtXt1Lz`85gk%Hx4DKvh(#Z(vxGl1i zu=qNW2pDzO)bdi}R>vyU3QZ>xuO)THrr|&c4p%E-Y;2gWK-#bntvhlu&R90WPi)z` znPljXF(D+B(~>+XR|%G$!b2M(&BPa(6IY6xdsu|sr&x^Ve}w(+v*P)0Z{bYbZ|R(& zTpK9CYbJ&txw!7R$1vZVjGXnG{NFMEU#oQ`3i&cI3=JSYJf5t=wb!gX=kO9RXScTs zp3H^$+ic)1mX6K?{gqxeVxI4a_OIURJDSuLo>BGkaO+agU+)RvMoPqgmX2Cr4x^<~OoeVs01j;PM{hLeY09dL9$Rkj2AB=)u<(>Ddh+pj_dWB5cAw5loeGOOZZuoGve2j?gCKi) zms8KLpbgU8ld7#U8SfGP4U3E@)?Zo|{-w+<-$F^VHu-y3m)XC1lg6U*nzRjbYsnWy zdk@@QV2>qxip;4ou+?W+S~@0Rr(*M7-a14ehz^YzL>Sti&JyhXSj=^CJMeLm(B=t5 zvcEu$1;kPj^p=@Y4WUZ>o!d2lNAVy2OGO5DGIlb#h_?mKkq&*8;?2(=_8&L2mdm-C z2&(4Vy!x-_QJd1N(5xH@M@DJ}KTm8UG_R~RV;uU-#Mai^S`+6}V27YzI-ohwl43?n z53_2p6d1Y4gr^twt9bsD_(mBW=2zCT>NjgOb5>iQy|%iI2Jz1LsKhd&^YL!Q;qeeR z<8@MuaF1vMozONC@`piGLB&5=2$`odn@;MXdJ-A89Z#(>hF^~49L0;qRp1?RL%SK( zBrV5%lJ82bql+m|bXsl_s@a1U(5d`%QL7VUPx#;X;P+;XjIwDm%4u}}8iCySp2T+2 zq0ZG3I(qxvZn$K7Fv~pt(D22r`3wUKhV^B|@{(I(Xoed({pcURg^%RX{=Z@Kimdace}QE@yYEl}xr_UgbaP8dpmWdlVJXZaaNv5Mi&r^!9O4seu!Ja7VLbg2R`RBr92OcNU*(>Md@gn#93;&B^>%Ao8M^+FNvQt!_6z zPSD2df*cz5cdCAFU2J9+J+H@@LIaV^otv45(yh`w8STjAE#Wl6^2`Em^=SvW@$k(= zhAnDUc<*Drie!2|H|)$&Q5$dNUZt+xN3Z*YK)fWQ(U*O~AOgMh!p`-ZYg>dO{5|pU zKs;p#!3<<9fou5CA^h(^%B1qYkJ%RCFgK148zMfm8t6X?WgAUE1PTN1qMy5o_V47w zcdKNoMr9pGYRW&i9Ogr<5Lx2z;_YMPVuG29sFUMQM1@e91O!YO`3Ed%>(2Y%s)&ly zb}{2NrEtQiE3s@#ldJb1o3Vbr2$<-9d`-7#60LZ~Z)EN_<%wVp@pty<#^-=GJ8(z! zUA(>MWR@4Z*cJ`tWl$WGjlA9m*3Jn>tuaGJBr^&Fghz^Tu^EX=Cc|7;8h7~!&l;W7 zm(mzHU72Bb^CFGQ)W}!Z zyPIH{IK2$)LxQkM>Pg0wL;ee;FzZBR3>X)n=;0P_5pqWu=#&;RiG$&gUG3@9@%#hl zQ*T6Z6Jn4wcjp!f$cRWp)d$a;9i%L(bR-Zs9hhZ%iD#bUFE8 ziSz3_=kfsma-jB>5oJ%@AUAN^XOX(C$b8|Uu|*Q(^Q`Y_7s-Z{Y>x!XIX7R0ym z_@n!62HKzQ#(<0bEkT#@_s~^Rb@a#{{c5n?06;nQ{39opUG$kMymNNXFT_6=esD6y z2|Sdc)DGpleK{JYKYciuk^HfkW$>2(+}kPSWZ*eEvEbp^k?Ebx=R2lnEhH+QTux=|k!yg@k2j%Q?v_(LzwiQP4LOD6JsbS*l4d!miR z8E4)*i!9{MH-yo*F?yYX^+liKF}!mLM@^SjUgCy1x^C=i|Lc2=GVe~|lZ)A!uM_s( zq1%u`#2H7F^=*fp&n(3jog4}SeuingLdv5^o2aF zS$EQhqL^b2RW;FGu=>oD9k%AI5F4-uMzSBd$ng|<4i_~Bd|YY7ufq^=ufn)mgu=CR ztW0$H4=HUUk@A^|GX(sdu)}Zk7G~p4Joct}uJ6GokKp0MStpow5I;2;MFEG)ZQ$eV zed_;$;Q#t4Q1c6AWv`3C7tH&^_Z~3)H(&qo?A$`fk@4fWbnJY$2Mf4i*?x{%aiM%2 zAz8Uk>}WOAp^=uoEFT%f3j6da`wG~dV;p3H_y!b*TYS1i(4Jj%cIv$aExSR3{7{){ z=0E$^UsG++Mhb2fGZvQXNc7RA(i&y(UzRAD!z@eqQnwqkthCKj*mBcp+GP?4rpbPG zRVa80^)H~j^B(17#!42Jt)SZj25RG zZj|?Ut`Iz9h8+eSmdL1U3S^E@u2 zOZAddd{&C-#|sk9dJwZq(ryI7jU(BDMgzb9+4efV>X;}twIqyFU>k>F0JAvCkVf_P zyDLc9>#d3%ePcEI8$iK0IntIv-VxB8&>9 zq+?xaZjsnNZLdCR1joa>|8xg^-+0)`MIz8IC|qTA?4JbjA0fkGhC*a*>*cY^4Q9b> z*cx2N)l@foSv6u@M}_vL=u0}whPCRd1XvUd-|$YMJ!HENfy6aM*otB?cFe5H8266w zB16+Tg_L?d=Pj;0zchZn94YieTvC?|uu0tt;1y@QCKYg<94~C?!uFg-*9O*%@m={5 zl*bww>*E!t2FR7CUzTr)9(Fj8Rl#p(e4E4>o>!f43dwHEX1iv5;}=cH=Aiff0EMC^mILwhEWIS!E2hTES-BP^_QRpvTR!E>z&sI znVrxoqhX{DjG*;5;|g%GB1FQ^>1~$dooz*W`G6rS0`GE2scW9^^!{#46#sAcwMDeP zTqcQd`=0G))y?iDmCk7???ZeBjKec&Fmuj={Z}f9Y07!Xondy@5;4P^SXqQ3h;~R7lzt7t?%+H#v`kYY;u}b(o5b+Bx zwjxJXL0eBq9~`8WR`-YgNbf5}Ghnon;fW4nL^A*0l~x%g>i4o#FPV4fW6tqR6fuS|womU;kJYC#?Tx^~2Vc^BlJSp5!O z1}$-F_`hpEw+ZcT5U15+n56CrZ;}BDS%tb!P0| zq$_C`hza9jVO|sFK!UX#*M|Aq4)-3&6+6EbePKZ9QWbKmJr%{rWmLsZ!g0dIkk6@$ z?MM&FvS_bK{>3Q95S-&hU4D>qLqylhz)T}{8|RfU4iGN!jX|)cGpei;Ax4M02}>5r z%mdBYZ!4w6ZzOP?ce{j!SnV=#Qjj<{&ZZ&mt0V88lV4m(!IYfUZ|fDe&5EK2xs6J8 z8zQj>W{reKwC{EB%ds+`V`M{4!=_J!oxz7o5qp^gWhJv_BcDb+1M7+|soR#UGi;i-}S|VvHEvUjau35idR&dafN z^Zh}WVe-0bq`*^QL>2tv)=(m%L-P<(0bR0yp4eZL!zP{W{xhDAILdLzz0%ed4^e+- zgo_x~%{ywd$y8OKu zF;XfLifG;3@z(Kah+ylNSXPY;vKDna$*4vrvuJbntT0@FqKGBDZ0f@ZXmQR~#m${ilH0 z=Pp`$_ht+T-iIs851Z?vg=h3_)4rg@5fuB^DqRr7KZ_~yrGXtgyBn9n^Ih@_2g;%VzQayq#ZIxhm>h>ad4L&nDobjS@mU>&uU8x?GL`g#5c%c= z2k7&$!8PLgHgX3xB)`Nz`{W!>aa8#55JM7t_y_ zhj$i=Uz zK6o&Bu$EH4?LvnKQ!#H`TYz`)DP7SbLmd~z)w`tsaeAumn;|QR+Pg*GIHUO(gEMtV z>2*Vj7ZQXDiS50(B)lS4Te*f^l9H3K{k9kz#Fw|+OzMoIWUiZDh z6^Jw{nO|_BMKtI%cu@yuGU5?P5GadA0jV;*jmL783D*|Ol1cs;i7rY_4JXgPD5x{A z*~i>mFTY*_Pp1q@M94XJ7e@C6_eR2a0*yyGglg0oil`dI)QXYTlM~!5_LErRL#W^F zJMTAhYwlMmCZ4z8Okm{h!R8FUIqB=`mp^4sZ_70qUn>3{N1f-Z{|BUKLwCk)-Gj?t?gZS!orEE3 z5~A{SQQE5LI`Qh_rT|<6zzz0~jY#^g@C~L4v0KD;T;y7Ya8j;a5QFfQ4r|x?_v8sO z&kXntuypQ9KoIyxZ6q4w16B{x*~Z*R`Ymbu1}?yVO)u)Y4T%s?qD`qIbfkfy8)wuf z)}%m}9?(e(Tyg{JPxESp#BekRubi|3wsESnY%Rq9JLm`L& z0(js&xxBT4WV^3CM~K2I(j@sfI?5d{5q9H7ncqhnXEhYOapPKdR&8e9q*>c^@7_C$ zj}N-ZMBe>WXUN2sU`OueaQN6&Y!dl?W1Y&yMM4NhY!%8A7ASa{m*x(WS;?F-lk%QeY|AY-_iH+_x_v3`!t+`ca>FoEx;*f*T&epmH z2iP^*6DPMP^&^-H;5N}>RZi{G0b?`$=zdO19@KER0hIiT>Sr**sM1;TAa)YJB_$Q5 z`gh$Z^{+>qLwZN@6>pK1axUEB ztcaKWHm#BHfCRNte*XOayUm@Xc=!92{xi&zsI7e|^JvNsrd^Ws7T#xGoPt%FB?^}E z$jUa@le>gx{GOx(%PB{eY}9v`_YIpl@>ncHD?|sb7vB=iwDje{a#5P1JIq#{vc+S( zRweXH;8)yv5Xyx%xR%A@3f=lh<3rDLGal$f$U4@%Ha<| zdL7HvdD>Z>?L2hBbi~vs{HbA)-#F99K^%GMylDA!WE7j2Cjekm?|r-Q^~oyD5>Qk* zJ|RR{C{(23fM)hIEaG&IXN|a;GwtyI|KTN6iEj&f+b2tR3db0%r+S+x0sxZZ0UsmQ zFWe4i9J5;AY&^r6K(TCY=6>8%e@H{y)rxfgc8TQgQIvQQGmQQfn{M5h-wPj)@vcq* z0CT%`9)@-PqeFh3lhYWVpe0^Z*6}&isq4_PB}eX%!K-^0S$JN!`Dbzc`NBQ(8Gl`0 zib%gCA{+CSv_6swq~v3I*Hu_*>(FMv1NT8p5|{rFP3{O= z+;Mn5XigN9cY)#v zTKpm2z7vHAzxmaf|3dBxJuGId7e4Gg3HG(GWI%sGs(FDqH)b&x>ZNxVKbA@U?eqWO&Z8bK^cBYrVPwsgdok<;#Webo z{??a^WFadCX4OFYt$jIJy2#pRLStZfLeL2g=(B0|c3qT(gL`wI3w}q6e7NqY% zDU(rpS5D=?mjI8TiAz@iuT{$?L^+XHBWVUAB`c7Q*vr=IdhkTLalnDDzFTUJ%_09s zC@V0H_gOddNGTUTspQS1a}~lX>HHs#w*OG29&_>kD?KoH31B(^yyT0w7R``*=1N_K zP};HLoaJg?m@d4{E8^`zgeP|p(1G-EV_`B2wbH0%>X#+I)t{XZ2mAS))1QM_xyZIK_g>c{CS~Tw~s941|3J{fYu<{+y^k-BM-Zwi#At5DEgVZP_G^4Kj(A+5tMN*-r5HIh0Dz+Fb4gKxkP zt5T@SPMuXV&k#m-2DM6=TztEx7d+@}5(8{eWoNV=;uM?A0@c$!h^l^E6M^ z0kk|_&PMlWiUCw5Ibh;XOF9H#L$ozCUlE6DyG3 z`%=ug2W1hHtFt!^{=vEAFSV;i{xx`a2Br7=>4`E3-g4m5HcDlBrvJLH3?n= zMz8Z*%Jj^3Ss}K*2@(9EXUML-LZH6jjhx=6v@#CP8PLL`ik-z{SFKpOZ}v(fY{P9| z#qTQD+3oG+!_VJ}isxV7oKtF~B_hdVuKdOzdJ(MpoUMu<819!X^~OFj4_d45xQyC@k6iTWZA+WiZR?O7}{J9BTqgWL(_iOKX+tBb`%Er2~aR%(xI-#X*IsC5m!M?^2w2j& zlThX|QBFcOAnw97JNIQz7gHvxURwgfE^Xjud&F%r5SxydZTiV?z|TWo9nRFDg(Xl( zAyD!aF~ERoVr%zG>(PLtt>ogfAVI>;Lp4+M%Ul3vj3ChvvLfwoMe^BgVP*f`G0*g3 zp=*uEntb~O=A0~X&hR#~IR|I1Psilt9+)6>e~oa>H}%SEFm`>r!6yn405V z$JKYFn>6Z+%h&CZ?r4Pouy={?;0W}rweEX_=63Vea$6{)v#(2-{ z{m9{-K&p(4%z1Em*O=T(O1941G&jty4AM^PXNqsiyM>s>_mHyCFwuSTC(<^&b5>{* zx>h}{Ww7N-57}m=Q>;is$Pz^H zVe+9O;2r=g;wQnRIC1fk3wTm1U)OdT9>kr=)4KC}Wxcs6bDK}u{}8}=lO`LBQ(sNZ1oYp*@!v0dmp}QRRkMuz$P0oCy0CEn&dDk=g7n`ykScN&r!tmgWZf9 zqFz~3TD$1C8DtaDxLR)bdpqE>eb>qX@S$+@B0`Zq`#yDg(05a&bS7CmR1}Uidx?ec zYF)sm_ZvQv`c+Zocr`XiilF*0QxX-7N*C1O5m;j?ZL{o>S>}2k9NC@Bd=HP{R$O;A z&S6<(7~dCj4AU$3eAeO51Kgoc%V83bvF+C&ZJf|Cl8Vmmf6lb zqKOZuoe%7K zi?mn}*2Iq+nbQWJ7z)KxD&vvDm3&Rg8S)>m4e<63UTq2>ZzREphg1r^8cE1kZeqgZ zI0u0IN)!G3O%$>)uw)Lkdad}QQCD-?NMqW@Quo@(vr>2nT43p1GOmFb6dSrh;0AM1 zI8nFJ)1MTb{PVk$2ffW^++N;J_a{tXhQ@;opJwJ~-!ZnQe@Mm5{$~#C#b;j<)5*MH zd>i5-o0`h*ZdU$D#T!$-30Dn30n))l4f~=N*(wx&m7sH&yL;>#x>j~aVBHJiP<46< zpIMBxLgTd(DJx%DSxKdIT)Ow0)Xqg!~c;#ow5LR>r{8HJg0-1<@I**wQ| zKj8V6U6Gq*M@%!nkrW@qRvr00TX3`ZgMZ`uxZ!ftmNnAQWPR=mOPAjw(#?Sm_z_-z zFIwOQ#3;EhS?upWP_vL)(b2b!GKRXM8tUe9ta3Qhm+sDt1JqVbH}2tOas)K?8oHwd zifdZq7QIymP_dtE<=<|3157Xva}PVCz5L~U@4|Orz+=_0*5@h{W?1CVSk&As-NY&> zjfF^WydKDkfs|NVhPeI+o;*25*lqv?5LICa=Rxc1=B~GCxeZ7G#4CtRw`}zU5wTa!BeFDeM9_=b8N# zGg&6=YL4-jxx0>2uLC4q1C@PY<}-oH^)2+kis}cR>uM=pJ@du21$-MCRw>$&mdm}c zN{_DU_wN<&Mw(5Bo>qCt8$0Ild{3_XJfZ5h>#F@p6baN`3;38C?dsmjn(^NbI3mp! z-R+v=++!+!(#-H&?K2j_hR!*{n|pU$CCa&fCe`@_+eb@6RV4|hjl#`3v{g@{`sM#SuJm7PV}a=sg~ngS7VX0^M$ zPU4uF7SX{o#C}Z3&gM*<0@i3xDbD9!WL34etO z{Fqtm$Y^ovlaJ7E5CT5f(<61TCNCvy@%JvIHq0BkmtQ&8wOIN3O1m}}wHi#UFpqD) z`K{l+jN+|LQ;uG%)X`u^yobBrq)~D>$&0jB7B6w;iM;6u+IXNyTUC610My{VH*c)a zOraDr(45kg{AMdA+yOQtNr{!>Rnqp27%7R#6)`(MVw9!`>^hUC;0V0N9Z?!fGRsGa zq|IO0WqnmIPoum^ljdPNlq8sVKJ>7m>+G+0;t(b&7Gd}JWX$3$iNywslVa~KQ5r=g4Qg=#dPV8DB zg(TFIe~yg7B9Y@YTMQ`4I(FO;u!ukOQCzaCRt&Kxo*N`Y=lCBNfVRCYFH%~O@>qZ`LXv^_ven3jQQ)N-j zPghWL>jf}2uO4Lbo+vFu_pj8|v3d_B_;+>kPl3!H+D9_M5=OcR2Opi&k)+s^WboS( zk=E;aM>i2}_{g-g+#H!Gi#A3uth-0_4g;2TZoYFBs|BcjZ#%WWkze(AsTdU8ID8LV zqNTu#%;qYinx}icqv`s+!`c39K_rH-7ZWRLOO~i{|>=gDv33`~FA{=<3zk_?3J%)b$JK@tX9NRZGP*QYKFPYQSg? zMH+MHpfPINGE!d+=S;kjH2z-F@QMaN@r?dk3D`Pz_gjF}6x-fLsojU_ z`{$fv+hLDiVlS8ICpRxBfwyLHma<pFg zVr-K%eXs8b4Om@Xs`YUle%j_4uCIy;ybr$}e%};5s z>%2i12^OZmS}_N`O+$I#3#X;oP}VccV`Cc8{PdKnU~mg%6By10=Y3%hfW1tx`ubs z9w7qxLUi-h78@-oT0yJAmDPh9HT5GY*$g=tmB;*_FVZGB0%y$=rL1);>_@VOcWxH1 zqKADH>*i~h?ba6Mw=j)pR$F>9@ec(|CnxOdyWTbSZF+!s(HFSKetswAE=i#r@z~X) zs4Ftf%h9D(Uhftj4b$|k9Vv_Z?iS9rZkmP=FIJhtS*4QS zgv9PIXTn`mJ6;>zcvewD@BA8Sq)#57kcphnKLz-T;Jd#R5mkO+ETBypJyG1-Y6)mp zeAh6aJbnh4+#O99_8r(N+>H_OQF8ZqeK8NU13nQ^1&x-o6cj1KKRSrfBX6W`b{vmW zE&mvpAp5%ISmN9u@p4n) zb5dInHnHmO#CJd;tOOwd72mHd>JiD<5{{JO=;D4r8axYXuy?#SqOEq!egG_@)I}am zdgt40P&GzP0%H>j-6nuP!8mp!`IE?J{TyeP>9#;K?rhGSQ9=slbY}c1*j}`gNCA<{pwdSB!XWQ;mVgA-y8|0T^P(MT9r;k>#zmxtomEEzBF9l zTJ<$U>RlEggoDaLArHzjyV?ngWb zl=6FI2Pn=U`f3l=Q28?}=h)TsS{aCxcvjsVyNY6QklOrGI-)i>nrLL)Z#r!04Lcg~ z*f+0EUz)L2sL`}+e%fMk;(7Pw2a{f`oBLZ3kxRAl{kW?o3{4!(t6M6Mq=U29b}uwk z1j(N|#JoghL?(T6<*XIYiR$#2iikGm9z*IKBfbZ<_7?=P zz106*d!2qzVrb6$7XkugO&wntA1!olM!U%_J*HZviP}O{w)OX<0U~(GnpRBh6*iP~^Wqai zLH8H=;G#iGr$PQ*f6`FOwdI^v{_$qe_ z8CKkoBa{2d^e!PTt;3xq#lt*{8w%f)bq9~P2hWdF)fK*xf^9c9Y7_2Y(qs09Iv&V* z0I&4@>{Tv*+6&j}&xcPh1duz37kLBZx$Qv!(sKBGem%RjY&Kt9v;Lz;xqEaa=bSo11d(#5Vz}!^eFg!tvN|2TdD}-yKyzMf+-4pJ=s!T$2rip*o1( zwNPvel=6vdATK<$ z(LCW6r_+7SXuR~UWyde=+A!O!1BPDY-Se&d#ECRZR9 z_j1N+R2VJ`xfe&(y(Qe1s@aQ?SkzpXLNLU;E5e0H5W zJj`-FK`hV&%aG5%`9P88?Y(e7Bx_T?@PP38vZhr7Z{J=^ZrYxFre}k;LOS4yIJJm?xuGMeX zb-g%Q+1F{OeS9m@bcBMc%iOCcE;<#f`Yu-o&$G1!tQ?Msen-@;X~LT3nY6P%!d|(D zQ7Ai2BAf8i4V8w@<9;Bg+2ml}=_;hT+)H53R#SdAmBg_*AL_$-m&Q))e{zWOz0A!p z5{-jdXW8mz@}}!|es|UBES6c(v4H8U=wi0~;*)OuqVlGXc)j7|N|iN~B2n=11P)fL zLdnOPj|h!^j8CI{*8OQSZYe)2G{%EzBUbF`mb3)vl#7Mgrq(}2Bc{nKELRTU9#eWm z?w{27)HibQ#dw|xKcS$can4?NQGvE>uAo#wBO!a25F zTtGq|k5K8CB%iMUYztUCwns1dLOkg56x!yjr0GFAm4P-rAO!$>4>NCX_PZH^F z>!8|@1sn@%tFNgS8_H)2ouCXhAtBj5XFR&6fNI_HNVfZzKEnIVLB~N_wSl z??^>*sgoFaGd~JT9iSkuzt;+5GdShTrB-nQMtK%htWhBfk*M-m1(F=$sibmT`bU=7 z{VE*asi*2oqYBNvlcgjbN&l9uM*yk*{b03dXY#9u{1f*e9qa@wE@p9marf=Ke*Ur( zAn6$x-@Na%ILz9cOY2n{M#qWN#fOkqgGTK&@=M7oPyi9ET#jEmmhI9xiT2gTBkYhh zppS}wqnB=6D0h_@55y65(k_1c@r{5qf=<=|XtVs3*=vksfLkfbqT ztULEl1}QwD_C{Q|V#e1|zvTfMnQvYDh?aoTokh8e%BR0HhdqR-$rbn?VFjd`E(*d)1^*^ZqQxwpJ`q#l{c=U2+ zMJ_T7cvlE;5V-45?1i{&0s=U~?%)j+U{+1sX^z%L5YZEg>Z{aB8|U%UA5`z)-Mwg2 ze0}nhj#7sT95m=G$943XG%g+3%4pMA3mRk8Nq2-)NmW-e#vZlC39RIl-tAw^Sf~uz zK|GzRC^jxbZj(Txt!;c1YUv1bZXlvP9c!|ue6`iZZuDir~tQNcBxJ;*MLZO$QZ z8@hX&^k(S^z?|mf8KL*%temH*r5DoH18Ms*jDOt3{e8;adJ$lTUGkub`r4+YFpI7f{J8FU3A_- z2fP06EWkqhszj6mz>n1CfxSAJbcj)2|vU zrI{OI8v7E~WNs94UwGt4lt8jz=sO01ji5Fb#_nx5n$D2Zg^f#w z5`E}Cya>@cz1g?2&t(U$XY1Q*-2`d+fBYp-eJj^Q2}f5<7x@n!hW5C2wYu?&^OJT5S*5V2V{e13U;dbplt=9W(Wgv-@k zzJ|x-I^`97w}syeC@h&H(bNU#()anv@d;6qvJg^`aRLSYfvuz;1X#hWllaT+>nA-ALvT`9EWrHNc4~5 zU0N)5(@&uL2vmGp!?GT2nYB^==Hesxp3Q{VlvY&<=aW39fJjEBo=v1w(ra?j*3RHU z60O_9H!w(7SZ7wEtds%HW(NwJy7@(lfNAO&IkWyS{C`}1Wl&sO)AdaP!QF#ZJ$0=2N%`V+K7dqUFf`a4bA2*eMF#=2I&Ph8!Hfo)hEM()P-uw zAc0aelE8(8{M)>IlsRHy$}R zFDY8IAB{g6c{Mse^T=Uw_In;l?4r8r(~lPeYA#iPev?gvFgtFF#eqtoO3D<$GR`zU z|5~|p_*FPj;lUJ6a&uAP7kie5Jff7Dy{A%L5LZwjf#Mem%iKzeoJ~dzL?34u!wqUO zlQMBuYX1D|!13MIB-8Cty6Xno@!T9X?`N2ofBP@cyvA=ws*q(ctn;M^Z*EFp&JfXs zyibBuWXoLh&9C7y{2P&5LHq?LEgD0O$30vgkLBxYmtw z+7o^VW!vLdMUcI5bF#!uJVq(g)=y~U5q84sl^+DtXNgGB<95|A>8_zyxl@9P3MyI| znuR)?>#`g2*7Pa<9Ds8B*kmts!OZW(Fz=z@iQ%wN_1=^$$Q6)+`kitk;61{`9`dKD zoe+uihogv!#$Om*!yd>9BoBGAk&wkx+wliKUbDLndyvtBT*DEya}&8kOXI)kyiaor z&@K(w$Rn2t5@_#$+guU4uZ4zqZj>2!Yqg1CT{gU4iE-`b#8Sb4lVO?3dD7g5c=i^F z3p1rmSBjEHTMqKgA86{88F~lXzCMKC9Se_hO#$Z|$7^~DS&@#n+~yG8u?^4rCY%Gx zx~t{6;7LB6y#q-cBIb3Y$^8Smtv#g-K_PP&m+|fG@WXv{KEV&Tt_kZHr(rXyO>Xu_ z>TFxf+jKEq=db((u1XG32};v?+6dUWz`@)l5YuDSf3$ z>$tn@=OjauE2tT8%8hd3BJnWMV)t?t2?9JO@Vr39te!S(akEgOPD0VQ$mn$^&85Ky zRDF_TCSLN+Xlx#IfF%JvcxcC=j9w2$M{G09Ym^R-*Yd(*LyH1f+Ds*B z9mzGS=$seDhhe;vlA`&uZ95tG`BQ(^aHX8X6+CVdgD@;9+<+!z8XrKi@gJTXH>^%7 zMEM1wIfn<3V3cfOhb2;~EdPu1Rp6C>`GM9py42q7)4PO0qMrr6!?%jw zw-8%)s4j{cW~QH!bZd}UAZ*_enwUsDxn=^5*>b08a%#4?@c;)v0*iJD_CanKaT~0i zJie^rZoFXybT$cAnM1b@GOzsJMnUuuEK#Ya7KnN!;`YO^23*A<>(y}|u*V42z2tA( zHtMma^<(9nGkyMXF-wRFjf({4D#yTIzmHglx96PKA8wCvE6n80`L^*YNhz1(Zkum5 zE|2X6!k1KPseZ|4EZmWLzAs++4#^l#O&maA-47#0PXN}mxC&ap&-Es?pH&i%U#|aem`#B>&jJvCrd6(|ZPcc5!3N;kZ zBGhvH(D2$$fM8x^^2t4(heM{0cqrF1#i8p{8XD2WbW{YN?P9GIj(c+&U3PY%wX20# zUG9|62vwU}mr?>^;?L`=_Z4LXS}v)Xw^}C&6_PYq%VvRDrHoF1EKC}#N3-$$JGCKz z*W~^&RZ8y1SLFqB=g|0%1N2A9pz)KRIBR_^IaN(;GX&eg1uZaovG?P`FiCRH)VW6w>;( zQ8CGwvQSA0{aA4q<|$FW&Jr9f1Hdx1yaG_=!(we;Auy`nAw;VE?a8LGAaqb%)i(hj zCYWp#hj|IL22}?m^ZRrxeZg(5mU0de=A>fA(>7%ZDZujPkuHhWGFmD2Sz>5w%A8X) zNA9hc+^{z0^02mP57PePT@ptZm=(i0H#2nzV3$pejJD>e#xj^SA-jrK0u zx~g^(BW!R9(y{92UkqyF>nHrMeUYBu@D2EgeC1KqZH@-xSy?C@psW1okjl9RyNo_i zo_rlbhzVmZceU=Jx8jr+939l(Dp4~N?k8m|i;bJ{aFO=&mF7*yqEUM^6BWu+VZnu_ zUY#$*y#aKqJyf1fGVsIKCcHuP^xCl4rs!vb7e{Via>*-<4QHEMZj@M>P|W@N5t1m_ zS?idMV3r1hDUtC9fKYs+`G7@MapNL4M>4 z4-9LK(zBQg&{1Z&PD89y(jOf@?OD`NpN5Hx*psI>6HjkE0^n}t>>3mY)7faqmuAE@ zB6$*tatg$wIDh>ZN}VK_4*G~%PH%>NMju?Yo`vR)(cl&{3p943d^ zGrGkW=XkW0EX^QT^g3AKcyUM?OHcvl$5OD9hbXU*`PDH((%uxl5MQw{UjaWq1>*JhM@}s=*j+lp7o_*2*Igy6(}>DV+)UgQ55y0o6=#cJ{CSs#Sqo4O ze#ww=le961=qKn`KMZu}lho6eilrk<_%!kHYqU2P9#Poi#uf7XgvF0J3q$II@;yco zHkPmsOD&^wb6NR?N`!?6;%FhG;(`~1!t^3h(J|)JUL%3w#!9PxbnNO2r#zfzfAn8erXuVMS613b&b*F%Xf|iaExBn8qKnEC zw7f?H7@q?H8|$=rtbP|T8H(MB=McF|oLwS%)D(4s9}-VrPc~~zKq|0t!(C1WWiIpW zom_Wp^0E;|CgtHjU2wgbg>cS!zee}|0a@Vx*MlmQfYtdte;VAJY;3#Kl#X=nt?8sX z`uUR_>M4@A!PVAFQ#&0hO~`GOd9m)Z(7s3j<*KaIkZzV>Gi zJjdTvTkd@gWF5{S+KfX(kb<)o5d5OU2oJ~6=XQ@&euP(DJXHSP?^jY17Jr(o+~Rs zqSHX|aFim|00t8^!qV1N!8G>NuDyoNu#*Eu|N)zo024o+@5hH;EF3Y^V3vrf%E zp-b)CzYmnJn?jzH*oK-=)4FUl;P2NrsFO*RZ~H+|RXXv0k(e`~@sVg3`MCAyd$?`X z6wXQ)Cd_X#GZ(UGQIP^j_S*Zw*~@Zc`KQA6Tr-k`MB!t5HYA$X4%9gdnIWE0bPfaU z@O2N=`nOZR2C<8Ox{vg~1NIbjwe4)o*^+d7P23-83O*j-oa}HJudKJ|(g!8D2IueN z_J01$1z4CL##cH<6Tq-mxQ%u5fDwAyes&c>}@6{pmF~)Hdk~svcSC82_QHyuw%DL zr5tf9Q+DXOp#KlvSp&hfGd&X#KmaP`m3)63e9yTP(vVIu8^KzkLbVVL=H}|(1evEJ zquzC|CuRG5J;2w$nm56kRA^O}Q7AeHmzl(}9MMh?@&Pl~=yZ1g?xo+(V!t=;Lzfly z)q-g|<#{IS!+VYQG@sV=&M&s3lRCV#=l&Xbo)k{Obhr`)wtP|sbLdhwNS~&ufM#Hw zbxV+LX%30@q8N{0UJjxVwZ@s}&NH?)())@LchOFkBlpWC-*Q#$1J1nr!J~%4UOAm2 zr54-(qvRg4_tU4h&aY&Qm#s1L@%kSSLKs7_)Pm!Os2I_>dW4NuEnodICI7)(;ugg> zH_K5G@F-vr@Pg3rFZgxNakwQ`x8Cc+|Cw1yxtLvFq2+Bspm>ngo@d(!y~u`9IN^wO znPkm5s#v5pBi_>Q@CTWkKSAtN(P=80zZ0;qqW??4tmU<}eY%?=J}lsN%oi{8+nHCw z9sO#;VW{Q_SIqN_jeL8dsb8*Vz^1;dllh$F`|B|JJSuOb3TFIiTZ!2QC(3lNl;`M z3oG&w(O-MUkdXSQZ{SlS&VULwJyGEe%6@f^tud8A##D2vfT}yAs#qk-*=`1509J!s6;-_p4>S- z&TfxLoKoF_PeP&O+T)N+6mOFm81P>l7Rggjx}zL4Wrx6qX%o zJ+i9FOFG`?qPhQqPv;otz+NdC$>(fVb*{~4Ls*!OevgVoQu#VsYQ!@-+Ge?INNGqt z&sY3ulr|a)eDDbxxwL-a7yQDn_c*CU3!sF!DU2+1s>j-(t1VecxI{$l;LuJQ3zNRN z*MkUOS@AT_BqkHtCh0%YRaNvbx8{#GvurUI*8Ih}{|^tLz%TIL_}U*4aFFA3Ksxx5 zHbK&rDAMDc=vzbwI!33GqRd_*2Uc*|_x7kBObnXBbAU#Y(fogJvx3AQmQ@|!XL&LCyU$g015qg z{=H4@?(6M#WGfO8i`ufdN6+TW7|`sN;bG_^-;Cqkz#|9$)pE4!pztLHi*KYl0a3}? zT+hxlibarTsYTh~@jr?{WC}53%Z-};2+FIr=_d!$Wf1?dBS^rYe-n9$ui$p;qh3#7 zAs{`DpWhyR5U4^P2#=R4;fytjGI@Eu(Kn!6f)@^Zpp9q~O`L*DS;L z|DP%%+}GSBrFJiaL>USR2lxT3d+RTc0N%Tv7Zw_&JTo@XQ|$MiTKdlY8<%S)%M#PT zGLv@=4?;LL{AniYBr$Ze$?uq-0+YI%fjpnh-@c=?U&yx!swMILc73-+%~<^Bec$<* z{qK#}%~%&jpeWc)3AtcoPxWyJg>&!*nYw7-yiifJ9-}LXI<)ueP-ay>G==N^B=^;B zi|-Q|_)#LFSy>4=b6VD0t8MEn@N$)K^^$nFhjLki3|0zSfQ$X_bgOzzB5j>X4_64o zc?QfARF)z(ZOBNHj^C2Ts4AX8ojWZ@d_x7&H+DJ9pd?i;f8nk5J6BX;?@6n=Zwqrx zl@(LP6$Y{?oA|6tv#Sjw8J8hBi7?ERc!zvHKeuNq&j^U@R1qCW-4S$&0U{vfWz&ge zaU1CLL@8~IVYd?5H_~{dvcyXQH`-sg6ez09dzm30b}CoyR3R*;HXSmd!Z$Re9mdN` zg@-@C8iR7-C)b(NvIR~z9bEboQ-}y@6wSg-2}nTRwCuJ%EQSUsC z{qSuE#bt_nj&9jIg^n5I0y>UwawhV+ivJPdyv1B33m52gmB9v9=Z(D|%>0vip+}M# z{0`qzQA6P#D8HK8K479l^Ibnocc;J|yJbHw=C({P_2*JV8J?*GQVQ`1aaG0YL2&ls zlWH?4Z>+f&ths-}Qs`H2HpPrJTXy=Lp^eqbN)zq}J!)^!xAic>xanKHN<|DM6&)GA`ebp$)DkF9Vj zn7SIc8r4`5H{kqjRfJ z6eIDH0D2AXLL0qD4DCmRn-{o#t)Ph0HA~)8gw08pN9A1N#PqOMM0)0`GyFJbDY)PU z)4nCPElZ_z!2nTrm*nM5IHW#1#dK!>!^3ll??$I_y{o9Frok7=1Rrf{@odEpKRUsu zcm_hczjOM<6+vi>YJPG@>^-^DAv^|-6+pc2zLR_!+=6q#QAk9G!SPdO; z^Ux=~L(WjJrlsU2CqqN4T@eKpumuj0&k{9c7mu%}!q%@Z%ia2@kZsnN5!RKBCY%sc zknGv&l{s&*`DcrR5BEPgrHh~4bEcTi(@LoihqVqOXGOn^4i%l49R33jfr2XxLuj&3=%y1B^WP#5PthKYIkSmKRgcm}eLwpmX%oowsIIBeQ3E~<{*78&}9C$H66kGN>5`hk5zygN@DvL~I@cp;hi&5>CjaHW#*;ZJ7*4I_Mpo8j*P9xW@#zd4QZX2D8rxgufhFtTh?h=iW3gk%5@1?aL*~a*(OB6`=+c z71UKKFgUMB`dhdb(eW}{4{6z<~9OtoIkj?ei4S|7|{MAZt!3rYu3hIgPQ;W zR!LGog7;OM2Dv###}&s{yrj|Bp1%;{Lb|SS*-!GiAK3%Sdrk(=7@JTc24%F?u%H~G z$>iSAd+86y4Ml5_UW*+kv{)W3GkA=`xThDxs7q}cNC7*L2F{zG9(#jE!@C^>+-uIE zfLOI9p-|96Zp&2r3IP7W!RaQIwbM^(De897u=mG94p)`Ir(}jTy6UJ!?@MT=`QqxU zHN6b@0p+En0o__!+*;%^J02QWR;O1Pp(V3XlL$9q(b1WOC!-SfwwJ(XVM9axcWCaV zKULU*!oN&nR3cW{rcXFs!h+Aplx%X8^N2Y3g=CU+;gAl4VA*qg2d%D(H8c#CHeA#b zd@XT;%fYFh$d`ER<22U7+|x6Wh_r#j8-ph?g~I_J!&X{q^$$tyRr0ZEzMSuD*e}4=1&f?N@8a80Ca$Ly z)R8sSsn*ENcN}sRe16G6qx3IUXYA`C>gOh{HIC3g;J|s0cYeLc3~8D2Y=?WE6fU0o%}xb89bZ1&almy-Z>$9zqrBOjI`z4m zLhkf`EdfE2y6r%-4%pb(S=l=TxpW@;i+pF0Mvk(U2$LK%5nmvTxCSvq#<%o5OZh_?Ii{!q)|p-BhzQ0jY(lyI+J z(MWPckaSawvc|qywk(HI-1>I>*>?2VarEIR)=+6_w4xF|F^RIm9sp(b0G2t%R$}IQ zIGRipy*KS#@4qY||4i|3!jNA(3<`uipBT0)^_(DWJA1u=z&3Z*KrKIzagfpNle0HDb*_1?xp%C0g|Xn8@)2snomW?FaE{RK}2b)v6_EEZpZuLKWP(U zz$*@)8m&%8X7q#&p9hc)_rp>dN&j^IV3OG81l!Tp8xmAYL88gUZm<5E`jRfgnW}|> z6PmU*zYjxO$qzzV6iEaQ{N`8N2w_k^8NU0`VaO=VA)=&v&r=|M=NH6vAu&&9Ln`Yp zHcJE!V%s4*oF}6BXL!}HuMb1C!q!4Y_b(IB@C>LFnB60n0r+D+P&bxko|+$k39FtQ zibBMWYNIZZX2NWQ-qP40{4bSM5vxj*_yC{2&8@xhTtKO?KrborCMs%oL3MXgh3Yho zLpU#n+$-sD!AOTcB$xM{S%2Ym<;5+()0pQ(vhIL~eOsGyNW+Oy7u&q;uMTPuNVj=m zK`i?F?oH~yeFO{GRm%K=Ohp1xB36E0vhls(rR?bqawwyWhE_^ipL|se-VoyvNwoFb ztwe!?wCL~+qC`y5;Ry~pm_jWw^5gqQzIJ@;_Ebev`Ybn@U_~qij3v7OCeX>$wXp=y zN9y0vqlTh3?U@zE=?*wIuQ>bW#S)p2R9X(+ToqDcR%os3>o&5#ojyIv<}W;~K-*&~ z_?+Pt*Pi_3*k;!JvgJaQh}E)Yru%z0D|;@Sdi>v!J~zY|Si|jKyLRUiW0Q|Diqsrz zp0I4zeu471YoYM@?gaG_h>#>zjvI}E3Pz6@e*$k@DK>+ISd9sK=e-8xd@FmFJv@}l zmYb4;ab_0iqmHoaPa;RytjC(#u1f5hJmAxkXAmM1{kAc%k*yTyc{t9r)%ITjC%Pf@zmzaU=)N_nWhqVpszMtm zB8b;3fA_NFv%n}7%b5OSsvt&uB2ViD_u&`qyqIi$nA1nICGc%Pl3(-d9 zckt}bjwsUQgBiS86cZP6=-jdARiHpJh`=7)2jT%(kpnh8%#v|A@t$0>jgbBfvI5lh zH0#)Vyk(Z2=6~=I1_;!gEhmlU3eCx`@>`@}Fr$Bvia_;FX zn?cEO5p!WBSgBnvz<7+yt8Hk-8WkuV)&P(Lby5{`sLLs~AqrRDmle0V|ENGZw9_wA z^hYT2p2q(v@}IjsDJ9JLe_skJPe2z2QS#5fr{mHNE;a|d`ZswztccH^($aO=!M+3j zx+?$J#CWhKJ15j0ag#MNeEA1DiZw0~#t0*l#9;Q96QC+jL8cmEI#U{ z_;>2tjJ-$V5y*!|#}Usx zZ}uPPfA)<3#c9jm&%%>8w?%mj;Q{YsfxNaX=AKzrSPXsXI5=`Ewj>aAWIg7k9A?XT zzml;h()qTB8Ho&e%K!)3*_uRbO-NWE@0L5$t(n?IhAnCxN(&NaL1W^-|7P9M6t&F& z&6&my$G&~q6hDyal}6(bHj38^SdqJM>MkTJM_$~Zx!>)lmXq$7^YEnz@dCE7FE3OO zgY(INY&`fF ziFZfI_SF;`P)QB$DL{K)%YYZ@@*c9%o@seWm-YN<0ksuk+yHUf55FH^?Vgb7kIyYU+A8^KG=U)sWgIK4w?UfuoH;&&$aZ}Tj-=#&AEMR?3b^i1@rC!cXFbcWh zqbEUG>pbX@b|^Q^HBRMY)Vl7h2`I32o!7Fh6l#JpL zz=aVmJ%LW5mm>iod0HxLXh77VFWZ+qOMI8IzMd*|&RFj7L?XTvzOH;3cEm-P=82+U zOgSi(VuAknc>c90*?@-vYKR&VK3@5(FcfxG$leVre!S7vFVfjM5N1WmQyZ6U*sQ-M zgPnHrg;Emk?n^~S3Jw`mW0 z7279Mo2$T<@$SC`B7;CH&i}0zAePjx<)Vs0kf9E4SK=R67KyZi$g+4z%e~z?@Q!mT zM{3k!N@j4$uE;#AIv%7X>@=u;JO<<@P+;6TAFc@>*dynm^``5MMH5jA_Fk$pC;X-a z3|?im15anHG(lm^_n+#`6jo?Q+}v!^I|X!e=WW_+Y_WIm3Qa7w`K?n`3uGo*BdLBr zn5Q)S=I^lm^4Tt+#f5aH-5z@gF0V{uw#<=kHqb%5_FSec1ChHO5H{{qL(x1+L)n>Z z3ANzjzWB9E%d)vb7TquDizH=@{%Ak`jeT(1{;h*njFdA`VshyCInjsmsVh};-JzPo zWP^W1dSQV}huH6R+Un;JKE&92pS9@Xj0|5)P{dYR<>*DdBK{qI+5T^--~-MY9ILxN zYRh8uB9p7!-+WEo#mT80B5wV3h;L58^-P9&Rn|^t(7AXQ z7cT|1oI+1!L`)DVuqTYS=(wo6dbKRjlLabdOV1lwnavCR!S}a;(1FV!8N8QNH##zx z;yA-Cfl)Bc^&|@2)*A5Zuf0507IwfnouY2%8*8l`sw#Q9fywk=f?h=X};N3_N(BNgIVJ-^hOipZ}h{i z(ctb&Rd2bC->eGy#?>t?@;(8{6qQZq`)E)?rI}F!4Y%S~!4&X$gev^ zeVM;!AiB<~njIAIvXcs~zIMgf4J-tkvq{D^MGZJbX3+b82Z86ee?w<9vNp`1%Ax9vqF$%f4E|CT{3Zl}cavQTxxD_CX6lQ0 zF}8L^xTzQs1b=s8NP)Ru=^8awoz2(ujyWXTNT=ZAkf76AQE*!6O&k1WFZE>Vu28p) zdnZS`a?tt$U(rf=B`XQyW>7*q@&bDsSLWzZke{tYct?t;9t_^@d&}@~ecRlg@AzKZ z%;v8v_`jvl2ln?nAH~Y)v#_Tk;a8h4M!m0Yr_N3rQ~tux9HIM;Tg9#t@AnHKgJ57} zVE%U)SZn7ztTi6radbQD6(t+ls7!LhrVS3ZFmz1j!B-Cf$Rn=ll5DfaHY&xJkF+!RWDjPs2 zrlOFK3B{24qIdwLJRA2rADLw-&&V$AYu9P=upWz>v33451tP>O8_@YLp3^~|SF-6i zdq8a@)u0Ts%g+9zJM>pu)cnQj9;s|=R$`SXGF<=LS*DeP*nhbI|F_Fjj^FZ--)7i( zQJPiG6p1HZebc8`m0+u3Rsbb`Y)34Kq%;H8o2v&GQOiqIpr=)pj%8Gz8mhoHCC?l+ z%UnvPOjFo|ZmS*-qnA>&McPY9?dRRBlB~oQ;iYQ@`}Teo-x6&RwVAt0CMocTv7{=}2oWQo+O{9kh4z z1Z06<>B$sccDTJwUw~kL(@0QST%1RonNt-q;1vz+Z%WQPyOhFZn7i1dL@cu&Z>*kx* zmANi%{!wU2ntdURWGHxo=J?H4H4i@CJ47`Wp$-K*^f7s__|a z*c*dzX^>hb_MvYOCw~=k29|MN_wB`L{E6Q;K|s*odz3y%I@MMXkuE`)FZXSX*R>`|=5UxwnJGcC>QIx(W!?s-ujQgw?&AykXZHQ2AXDFcocCBJ zGQmZ%6+4}ySf-uk?zKJyU~}hi{F1h48Uj! z0-8MJ{t>g&(dLpo_JU^1HlqK`teEdSA+l-dC%dIEng50aRZh~BO&zuZjc zM;Xv(*5BW>H*5{PP@Uty9r{Iic|%gkISBQfHVYD{6Ux)hb@XJ0m2JX2h@vCMC$KFM z=4(&U*vA8{o8FWm*`Tf*4lEo2wAYAr*GzL0X!7k{ML?b7_LskY?G|wxvPZfH*{)=u zRjYGJ7g#Y(6McVLMjjiK0Bc;irm)5FQcD}tqxgp)-@SkmK8S_voS}Is``)c9>Qc9b z5?=Aa!iT;TFH)NhsR+xQ+b-do}{)izio1f!( zf3|AI(QfC)m$#d3cx7SuE-)hSJ-u)FNEFpQzjXnINPW*)HNaqPrJ=LSxJ~cJBu%40 z!U{u0TRDMK7FNxL&UIF_<=+q(r-!8v-0$#OY*m0cffc$KSEoX|!i zWcyCYmU=o-_T|$j9pSp23tKRF6bN(!-kJp;xV{u*C`Ki9N;V*$(#lX2i_fS}0(6dC z?d2A0a^AAr#Yw(a{Zqw;>pz_T(j}YRsIl9fJIT z!Kc?bW9Vm0`}$0NWa!SA%w(S8juVo0I2PmFnY#bIIYi`hv!pn9k=AVhwPLvQ7wPUU?&&V>=rHy335y_`%1g)_{CSTN|Uy425?{TLr4V6FQo{??m+tNPjym0&gw%3JE)FaGxQ)ZXR1+)=y| z?je>glV-PS{Yu1&;%?OimWY-ShvVE*E9anxOJ8^QWkWre+g+v>z~i@z!^rCu;uV)y z6;_2sIRr^TLcfCiJkX#9>Vjq$`|v{il5wa#2_;^1GJ9o-60A7&A42hHT==nXskhzP zh2-9&m`8kR|D<7QSHTnNkNcQehNUroOZ|>IWky$gs0^d@YZ)s?J>f3*Zj|Gu5_Sp& zK$rWzyZ>HZwOB?+PC(A9WIOumsk|yR;Mn1G-_hZq+Hs$`W}l^IRFh|WjPTh1^9sx8 z>&h*uucQEzmphJFfX`6xEG?&07-tw&+Z zEO(VZVUdzT?N3-#wn54j;NA{-qfQG^&d|Q-Bln4r->(YTaSD82;gYIuNNaDkES);N zyw$a#|5DJ=CTP%e_jw1n=6bi_*mi&0Q`^}|!GgPJ6QXIXSUN}TUn_NcMJMQoI0Z1h z_oC6hSG7!HX;Q$O-_M{G8jHy_-)U64=z$7GLjr?iHYts_Bk zaoA*o0`bV+_SUX0#HHkj+G9y>pA9fA*uMa(V|E~4=OucS&f`5syL69d<((0%(`XxR zt_79o(R*SxT>H@lusjC~Rq~u_cY8_Qf{8jhdzotz1`)NZ4lo>UZ(9X^(Y|Z}SOv6e zK`Ac!nM2Na?*^0NC-#N%B1`US>CFTPRwmA}4Yf9#FbSl8uNFY!FJjls2GzeW!FPo; zbBY&1KI%oH4f=?!vg%?Wfot`0U4Xa4&*0R-36!Wx+mEMH2dmwtPrJlNQAqQ9c-tTW zySBcCBergG1)a<;;$K}t7I1LKL?oNQ;4Bn%9uuk#P@|k0`To^E%?ik zlZr2pbWO`jWCB8$}`_29F6 zqAP+U@B2!*)738X^Ba`CHNUC5mbH4%+t}wPJ`XPm&~>A}WC!X;2`a)>*~~^x0RiZ* z6^OzfX#(33n6O0RGnMCjmSuVD_Z&Uy2%Xe9rXxDu^nv=%$>Gwe&{L$lnmEyqbeaib z16%nmu@vN~5};s)zx|@c%y(NA2kkjyYLapfyYJ{R1wmUKu^7NJii!?xoKYOM!k(^6 zU%&o~$HWJo)7F58-0KIV`BUbRw1veJVt*gFN}ScIvEtM7lmD0nA2tGAt@$;*$X^eyK`B5O6d!ZcJE z<2lvWwSRjz^yUx~ij<>y=-+r4@r%%4na%hY+CQXl9&lBV4e}i>jw;h@adX4_o2#oV z7W0-*@KCpg&J`#qtEsyDEdKiCJ%`bcThFyTt+k%|>Ie230lSriG=}?1TWCw+HeQa(-pis$AhInPjUb_{;kAs99% z)NYV)dYbNclYMZa=7@%BWuZ3Xb`KCN=F_R4Hpl;!AM~dnKdA}-TacHvZgrXZF@wKL zCKTa+#6s}C@21raDCp}{DHc&qHZy7g20&k%A@dYVtM6s%5$WoTe(qKp-u4m0M;@N9 zjt;ehueF({t1U}q##QAQWJS?|?Q@yeHW~&iP$0xlMGQ{5xp@w0_Bydwi-fiP;5`#6`A(g}gdCEBa&Qj_ zg3ooO(Pgfqb)dpYOzqQ~Q_ZE@H46PIpjGv}T{(y6)keXh$q2PMetKq#;yE1w-flm@ z-tETv`pI>7hdjV`Yl*f_JhWRia^9bio~JOKTyCr`QLS1G#Q5- zmb0i$`?^7{)H%Sw>L_j{p$yla+c{bKGg7N?gKvaK%{v*+j&1F7SS46 zAJ38Pb4rg~;hi&5|DeZRj_n3Z&Z)da?*|1@l!pPu^!*y>ld~?n`cLeOAL^>9{j^S%tL4t z>bQi7uEB|r3L_Vvv_+9_#pc|x&X-hGste@Iv{Dn3jfD0(nY5P;8Xz~i^Y;DQP!-2K zp{+C0msc-q&k2nN9DesO8tyn4jq>Xe-0^+%|9_Ifs_FvdvW~#2$>^7i&_l1t`iWx* zEIo3+4eQh*s$p@|He8wM@=|(!W~w}0tM|W*-CdzR0HYqHO0OmSQ$^wJq71Cf?H)_7 zKHwxTxZ*R-{F0NXsw;b`TEJ7mo9hfa8*ME)XFXx%Q`lzsqoAlMDNX41)N#MtXZUH$ zbmklbDoefV^kO&*R*cYJ%pmXZc^Nn0FGL9QJUhxCxFgh$k-_*!0}4&UI#-Ie8driP z3~IW;cntR)uum&OPZLZYuF(CJ-(whm3f^Beti8WMIkv<&rD#G}*R z`uY0xo6hi^com*^Ei>9=wdsM8g`1yDHmO1~L|n)%~3p3X=nYoy1x+Vv=(-nqcdF)`kFhlngwV~(k;(&^4Ch}-7H$#jy-8^OfFC&Gh(zk1CgJ`$$g>Rsb$m;c+ zzLbPn%I@;%6b)3C z<)amgj!a2ZRI?Pqm``FSNICR$5S(sJv_g0MfZ6pv=e-yAAnMIozh6m@*W?w?)Y8*2 z!NXK;?JaZwX3I2l%Tz`{!1=$6RRrBP*y(q_;B1UN_?}`b(*NabfqEqqEr8)V!2C!v z)SjP3VrcC<97{{YYzmxazu)p$B_ir3mm%mI@j(^*qF)^F2yo|eH+cUTIQVe89Pkp_ z5%7`<{loPEM&ub5wjf!22#W6GK`j_8rswJap)5x)?}eGcQ}9S!v~%@ZtX>n`l- z0I_z*FrU z!}|8lqKuyA2v|nxuhQkS9&DVq9H?f;f0}b!8-p1kqIVL%Ui!_#?1`7>sas~8;nSJs< zyc44IxA1#((ZW!3`cP>?RbLF8k2ZXpKhz9!W#3Z#1>Qo^F(ccaaZrx^F_jddT-8uX zT(b9Pv6Y2aw8jWLwVYPAYHf>F&UcgRVQ7+b|HO9$+*|H}hLo%p=vvI`>&@!x_nSo2 ze3V`zPmTKLYtjTGRd%qh>;RchArG%(vyiS8;;{)mb#rQ^FMb?4bxkA3Rll5O;$^*PYHBMy930FZsP2wcGs`b zs$DY*$hQi^`AL$5i3oLT9ya7hj0#C^NKxD17ny%{+OrnxA#EFvr~2fNZddpaRrIbnK&>it1q=rzjG7z0#i%WVNFKLMRhZ@G%{xv&v2 zU^-tm^^=NXFV0UcViSc`Yb%#?>BR4$(bi)d9lqVAO$y$iY5*Bu-}`@nq{mC z16j@KHml5g&(Bgr*O)AwF+m3R&dL4Wdy=c=Tu%r$(S{H4JKZ;@vAKxTvY^OR8DTmJ z8jJq6WZ0nf(C?J99Cxi{}J_-QEjeG*QXApxVu9s?gTAX912B?yF10Dc#z`7 zrFbb&v{--?cQ5Y2Ef6d~Ao+6SdB3&p#mdic<-TV2-m_;0ayge={ejHNy3wAvUq7PsfD8j7SMHOMUVnVhDyWHc?P_fgZ63zKvgW zl`8hTBcq}2-t3av`;(g`V5M3AIfm}%_lyZKC4=DCHb85p5V|r4V*X|p#^;4bO+spi z&*M`m$V;Bgt$A8l-=~{s^_kwRVo!Y-WNPD80 zV+J?vN+YdJ-`uk6nwFa1iPjRb6$Ns+-l|3U$N!?FzJ5br^HobIr(Jb24U<`#FNf*` z_H9-Z4=&2(p5&BNor|kI_|hQKgdVHhz%O}o#C*C+J<0gHTYBz1b}lom+-?2GuufT$ z5h=GI1oOOb)mn!wY*!+#`P2X$FmZSSc(@Y0-F*%M48j2J!R5gcee zvU7R|3b;E8Xlvf{a$TEwI7@&cguT`~O2KU`rlwmXJ1m6akCfaZ5qeOf(Qan4)iMP*_@&FXy)seP~cGLoroIqnnU3(qdx6 zB;Icu-w#;$uF}@xUq$Qug?lL-z9I&gZw=>!`7I>&bpCl0o3WRqHYyv0?26&m2_+>z zZDo#<(q`Q$oO)1@a$b8?P(^3*l4YbfQ3_c1`lHw4;n>MJ-4p8ue{&<9M^+P;`E_s3 zS-z+0?C@35Bvngy;(Jvh0(@PyB=@wrb+_&A#;&kF061T^&@p)8=V6WZWmO`KKr|=( z(^uT>N8qNP#h?!Bpdhu*j>u)PmeyiWyTt=C?5dCX_B*Rg-9!bUPRn*ahbV@p0zenFfAF<#)0APw;DfKi(^vzZKuC>l@8=Vmz?rug;{%Aul{dI%s&*FH|KO=^d0Ez{bN_p4n8nm@)W=(hkY<)VM-p$oUJNVu>oV;t z^=MlHb1oh|kq_G(n4ZLJ?3m9ry?tSAT4t}d@!8bRdFOpaer}kncZ4vh1m0{i>ON>_ zZ+PZ@1+Y(KBJ96VWTCAU^uiy7Zl}(9OoP1mTtQzudM#S^L?tUG3YoDjF@(=?JqO}o zBB12ek-pD(=*fqAE- zRi_zME~hQGn*l#N5$Usi&p7l3JtEgR2b+D|z;8)ZtXgFdG{53M{!HcA>9rJ9-A)50 zF`Siac%wVd2gf2h^Uxh^_58Be-kB01!^aJKXvHMAcpaG@z8)AwLt};jS($07tk zmNzjmc@(!qBRTO#!y`%srf!}W=s3s`;@fiqMnzVlZb@B`chtfmw;wo-pCyP0p! zaV*TK?iUPaJMo}z727D1Ac2tKfYR+pw)>tM1z*;xtRgFm8jM+@6;yF(%_s7I&y?S! zvYu`8dIZKpPeLjJ#JC#BvnlMRPdl7V?n=6r8)LjbzeuGkUOF^cxqUUn8>Ul!Q;Xt% zmss%g57=u_HTZQP{aGYKIcCV05y#%W9sTdnIr^)uCwh&4>FStPXtZ!fx%vx94c3z- zwkG}x3|@ld$IO7h!w~KtWRe;;j~f7s^z8fa2UoA@VCK{) z4oRQptpq;IjiI6b)80(hy-)m?&wvTsS!@aCPS)pBXKERb!Za=1`QDwjKemg=fT4i@ z(7bzF{Qva8U|wY^fbWs+|k%nF^v{;$T zkXEAQPZAvI&^YFYldxGd)Vksfb`J%E&2FJ++Pmfnhf1vO2%ZNh{It!$&9$4S?4 zyMzS01e`1?+9?|JL(Q|g%+8z_0IF?9*m~QbBvt%)UlS>%yza)2DTf6*SE|YU#N)jx+XMU8KNHTnf+Xb%U!i!b_!iVflcN=~?r(Z5-bX%2 zBcl`j7K#df$WrOLaMaEmBW04lfK04@8WKL@6FqtukZEx(tNW7|Mevm`&_YsO`S$f^ zQt8X^m7A2K;6pcyaeDyHu^eYX#a_cx+fuq_Z(Myg2en1@(vcc{j?Rr>C7*zayWRAw zG4u>-&fB{v=yd`#SlY*D;t&$HgMeT9G?#8nDZgvorQv04o$Vf=m~Ys@@oDc28IZ{M z&P*B+(H304w-~QI;PYmSli5m0)|Nl}L4qZbmR};c_n)q!0=^(*#KFvfYChFg!;qAZ zv#24f->?3VW`c5ebDM*ltkN3gL|Oda57e^OvtuHmb%6OTYb~wq-d`+lVTUpToD_c1QGJDGz}YSr1*Qjv?+ zPZa1q6~EzW-?c(=Hy@lq2(1#b|Gk$oOeYGQa8ys4#yWsGpYF^-o_{&Z; zWUesdTia&z6KSDmm0UR|R4h{WTX{_dR6pY7bBbae7;1F4LC-4DoDsDn<}t&AxCbCm zXNK1(7}(wSd_9Y$6d-wDe0W)qQ|5P&uQ4|lV$WoB)!P`+nPb3KLd+a9r|L$HctW** zm$2ev)$rj1VC)Tdqy4y6stK!-=U3Fr0;_*?4zO z;X^T{5dB8W9odMcQRORlYF0~^7n8B$%ZKk**ZAwNdY)wI3ng-{7YNJ1=t^)A_cJRK zlb{)AKzsA*#&Z4*?_x-0gx8Iqh|O8`}44Y9;b z9U)yRhAvbt^#RV=_FE_rV$Ia=pJvri^vmX7e4f``G zE^2YN&6{egv2Ytbk@av5I7wAN7bf>NY5aU*PgEy|j*FaqP!;xNp1cZGHpmYNk9=w# z@VaZc$G$kVs;X9)F|aa->Zvj5d?cnIF8c7Vp8@siKP&16sipoqsgiI~O(UVcteqpJ z){7^Payh%as^qJzvyuvd&K9g2-`&c(4Z4*?mVDfrMKYEVTUWQw{w7u(K^pMuT;yuN z`7CF!k49&!LpOcv)ok=2^BZ+xJ-x*a}=;b^emh z6Fze%gpvN#F;?X3s1muBx0Wea3iePFew9vL6TQYqCtEG9224q3^JzNJi+w2l81&Ih zc#sVu;23=(@EiPwV#euB$pbUm#jJ-o4c3~V>GYv^i?^kg3pGfFE$-eR$syz{lh~n2 z5qIE7VRe1o9S%aKsrL$^CCPg+Be|#7!asZIJ0~DNdR6@dD$S87-cFOduk)0aQLak; zGcdS5ne8u|ge=$G@%j_2^>Od@?w|mXZe8v89iYdB&t z#uf62XT8<8$eX+;5{NsETDQ5-LT+IF+fCsx^OW0HDF2f{cMc0RB z=@*k;$&0zYuMo}O0_}yi8pvgUak>6Vi6~BtE`s2`cK|6Vt$q`h_ zg+I20a*xj0)Y;z5MX+#I3d=P^ynlPT@0JTCfAn*E_55GJp(SUf{BP8Fy_~gi-USv` z9~}d~qG^e~cny>#QTN}}(e1pX$SZ=99_BKKr}0;uChtsN^f5p5F^`<0C5rh|{XoQ% z2ZZMxd~g5Z$BNHtvWu&ou8N$Qj7kns1%smyqoKn3r>h_({E-|sHD$|{sI1LJ-sNrl zkhUl-`cgTEUu{YOweeTvZJpbkluV>rL(nKDEBE>UeEqIx>C?U)y)g7HGcYacn1|9u}{dE|Smn2|w(o zWt3>N0Xn*$wGq9jR3fff-PMiL9(!2m({L+rWsnh~-!0YmV2sM}O^Vih(-|a((gTLL zDeE?My=Xh_IdZNuY-&F3IpKU9!1l8ma5C#G@$wsA@APYkq@J&_O&wqMi9l9?&@O8! z?!3mzdB$3G?Nu!FFt+dZ8QgW<^I;X&C(APxY@PuqHVAG9}S#+i}5>sB6O|gy6KS|L(Q|beExLd!v@(H&6Ytz3c7Q zoC1C2n$;caI0m+4EsDDYm}KhF4@#vgaa#X>Wi1qW$fHPE@qZjprY}S2#DnqhJHOI) zxJM#h0A?sdSCR=yrG_BfucSB=K9~qC?p7R4ee%h6bwMqd8l$z(djE^`s~n%I^$yzy zXfE>pF%-H9#X0fU8V8c+2XMgUU#Va!wYgK|e05q`$#`m^DZsqsE#t7ntJ^bH`;!$O zw5a&dnAgMXQWpGU_j@P~bJQQZoFW1}bA2~r)!3HIzM(@)qxgXE83ucq2DB^+>e)W~ zd_6^fg5K5Ml1K$DL<9^Xx$40xOL@uO-ge%$XzNKEfB4XLK~|$}5vHKLv7^zG;z8YX zQtfE>PcgWqS>bUZZm4Y6VboGdV};yOye1v(t%LqxzQ4 z5>N-@`ufcJN_}TrA*j6!+}YE+gK73@i*eAs7KTzb8L|a?RwCi{>CrSWZ-ynyP-khRLy7mqsNuW(l)R z0TcFcPqB}xRJBzJr-PUF`usOn%io((9GVqgHXS;>pr;+o!DA0u`S0^gH@)Q+Yt;fVK zAXYI^vWBj(dRHx&IFK-wzcRMs`7-wkMY^)0pBB^946EHzf#;S zuTS2evNocQr0NkjnRyBds);yuIB@XP!)gsjX}!O~w+sUF(m{h1ZI4}J#pjpu-v;Q_ z{s$4H68|%`-t2rI*%{DP6XH74#IO}(ZRbMSvUf`hnX|i)Pf)LYVzpm=kk&im-gZ&y z?4&m}X}CvHkDLaZ!B%mr(9WH!U21P1tV-)4YLfR?FgE$fGH3fGOrSPw`Nx7D7XK=Z z6%T2sE*r`jGelPPEphKj>TFPZU_$x`ayXiB8ey__79W`@W{9w!i)=G<Y}!uF@^(!?&-ybGBPDjV$vc z$&Pv-A;uZzNMpGn6uVq($K4|tRdj_d3I>A60jzhBYopz1&k`3 zaM9yT4N%M9XNTTMvYU=Wi=`0co0Z%KYf_eesIHK`U%AFd6aqx8${g0$O zr6`78M?dagL>_O#gp}>jSy%7PSM=iI+qn17VE-;K4w1YIj4b>mg+a8qe z**PE$vmrHa@Piy(xwbW*E||7kqwc~^Dm}ex*33vV7W%}F&tIC>z^<|zms73{wN`BD z)i~oU`!s*Vhv6}Qq$hPCft4kW@^BmUC6ovH;Q{lG+mGY!l~sGnV(0)xrH1n79lLnHk35-ge1U-PLMR4Hg z@jj46f&UvTJc+wghDM^uxH@yprt#udD&qDY#FO(?)sl@lvD9fcUVr6&D>#h-?`1Vc zwHsd6^hI67{__0rWldK#5|cJK-SZ@X*DIS=vU>c|qckpLV>WUA%d>LJH7Pdf_}bG> zrK2nEnJa9BkDk+-NqwvD2o#d?a4QDc5xYNpj^4^}LbLwq#zkSNy6yoRlFs_^=^qs@ zB}`%RmpaTEd0FZ1>|2?FV+Cvui#wbECDv|QE|3YLRc-2s7leR$B=)d}~PwCA*o};24Zy3E)@iQf622KNuvbhmXF`S8;`#2{Dm=_I% zyNS?-`ys|%Q^{`~A&I-kG#-rvj+9!2iVT3*XZdZnTe;>n6OYfUlHV4~uq)5@u>bv& zSKKpyFU|hvlQuFwZ3Vj^*4a|M1wGWO6#iL-m zMup|jn$+GRiI1e(Wq!^_oTS^V<9~k6nmLm!fB2IFCj3cU2TZP&zsY!mPO1s|3wdc0UngFi7KYoySvQ z&@}=3B}`#xMVzg%WuKO_DO7w9ckR;Q)v+^dcdlE^ZPc$Vn3!68)fMX^$3*?#m zB$&5;-Z?ikt?smLy?^1HeOl5hc6qz&k{;;?FXs}c2|A7{njp%LPeV zu&p`cn48N09Ncp?qGts5?Yq7LEbHy{jp zTuw1nFVN-w$*4bNLc1s^?De#O!9rfAdO?H`Hajg@zUy%}wPgJMdZ>n92$qbS^={}! zLfo#>YwXN4%j)+0?Q|?JCE4E8>jXcYkJ(1A+gBlahNI&!(7-~6SV7IX&65uQj(LYQ{JV?DKNz1yQ}8TJ*hs}ID;B*dQ6J$GZ*zJY<4y;`nxCK zx>NJ@CIzOLK0nA?O&2yDh~F-ee@k2|DN{(~8oSrs-4F1J3FtJP|NJZ~_<#!H(M~!M z6yJmIoP>uShqf$KAQLWt?Xia=e)pJ0d{q6sFW#p08$h%OFkG5<;-LikxOsokF>%LpnbtTRDUIL#@mt%q6g#J?YsiYsSRI4fUo69n{=v7hg|094vyM?fQ7 z9m6LPV?bfh0tTOpu>BeORAclZ=Gz46Qeg8WNj1s;Vt(?est#VwKg;aT_qxf9GUbEE ziX00xjT-U$F!jA7PsOZgX%XHC?%;+l7oi0kl_jUe4*#AjFp~W!Kh5w%w+f1tw&yUmG;1~(IArl_3s);yt5q!qhVoU+)w^NeJr9`iWnS_HrHXdvP zG0Ps`gfK|Ad)m4#%2%g4>#-sI-~{0o;fiYUNf1H{f8}^ET^UDwc`x#WIVYn=9~~2R z4@C>OxEGC#>O0zd=L`cu%uJRn!>V6(pYUTpEwTE-D$c_3j)ze|{XLIH36T;nzNMsa zL+&Q7pVU`~!qjKG*SBvhdF{Xx=RCA}JZ9GSi?4z3(`aSd%2dx^Ix3pBw4vJxeSz^I zDd3eyU!-%M^0FE*lxg<|n{-Ie&^c$l-)AMhQyNZFx5ki75*q(M|5Mzd?kwmBR86XDYm2dAWDf~+Qr3nBn zY0>88gd}a`A2H(A_jkyBPl^;~1g&ur*&dX4ez?o^;;#Rx;vJa!NtSbbp-Xld<5sH-XE@zEM6&r+2xnA1oQ0)O!0H>sVJ+B;hQD%j=T$fWKU2*vz>%Ro8 zc#b2;A(HJ+P=GL64{;pJQEa~=h73iD5^BJxoo~H(X_k?lAsZ5 zkMqjNI5q*B!*_Gh6OBMelx>yl(>ui8pT4p-v}LlYEE(jBWdDk2k{6^6N!Ud9fOy8s z0l3LgY;R?F2y>GXoB2Wu2|RjVgtgEqxpqKuxz}(Nxn0~;e>;<9Jh;DMR(^Mf(0cAc zo3s^Z#uO+jk|Z~>M{_Ijp)YFw{aS{0f)M=tdS~KM>iv{m(pCyxP1#hhq#TEJsKm$a zl%3m%vFB@OdBAnS8NPo-@^kLyD*I;RSYV}N%O6g*w9D|+kE`(Zs|>cv-x))>^gIJ$ zVnhx34>vdw>G0Y{k#3SHS}NO}K&uOob>Xp`;yo|8!d;d-b1 zTt;nhMxR@=^zqRzS{T8Vc~rS1#W&I}4}n+*ZlI8_J1YpW@%+@dG#vOkOwn{sq?6=y zLPa3j(Nu_Sznr4(FM}0s^oEG3ncr4Ji`}he+AQ)p9iD9~88GoZ^+XHz0!YwndJPN8 zjShHSpgFUbx?+CbZ+cRXyQ)Y7tT@2vUair$k!MxA`%^C^L}e1wM|Ih4Dw)SD)H5eA zN1l0{5&>Ui3Eq^y&--kDPPxDrEEn+>M#+d8Fc+2U1)}svs$REeTfrRh0%Ba>J)7I@Srlc4(^@T8~tc2lyT?I|4#h4Xtf2mQ@3YUlM%At4=TV<2$E|4AOxYE$u7%Yb_dCEH01$%{~0 zV!IJf4GRlN9j1ufEF1tyzZS{(T}-$ZJ)3BM_GM%iAh83(S$@UqiBkGHNK1KP55F?O zZF@FFi%N=(PI&&vVHmI?_@IPeJhr^QK)N1Ztel z>SI7f%P%Er;q5_sJM=t-P`#}ny6jeMrpb5telF))Z%JSR-Rjpx#F1+Jy)Rk(soMyT z(i!q51GTR3?S6mjrfY#>l#BVXr3jCTlNy;vgGze9asEvw;>(G5$yJnZLm8;e1_h0M z*b%!9;zBK}T$8#kf`b&=hr;}72UX**nP4o+`>jOYHAa1hyZ>rx^Ofn50K|(^(7pwMNZjEfy3^nqFxSR2`f5g@0D@{%))A zDMo7eS1OY*1?Kn00;fL;-as+KA-~NA79K3M1i?3ibe%^Y+bVo#+8$e!+C;d1VUsLR z07_Ohn2fus?xDJ0$+4@W?^_TNr}M`(LdTa>h)qFnIB>U%d;qnR;?=ObUv9cPm}_&L zmKA7Qy^YC5KB9t)a=rbXnSr_~ZWNvPk9R0&OSk`nKZg}!$f)tz!czZ|ek|QhXZCho zP57m!Y?BAKtG>4jt9y~C((57v?{F1mz`0e2yQwQsPtPmk6o~dtkE5$!?WF;pUC1%O z^&M45;6VE_giP&Jt7QI&Sy;OJ_2IOb%ropq_Ehsp&%`u2-YRrgF-l*T`=4T7J<

WybKlJ3kuZ3X;Lw>+DuVHx{VORk3R>+GHSD5C2z~$=$vd2*VKB;0T~phG8J*!JC+UrADMFOf{`?r*-a$`<9WU>qygQ_u#ioO! zEuJ#J7z!|TFennfTgVDiT2wuN|HLi+rpld0#=t!#w$swY@L2`FYvdd^>s7<%`S!_? zLKbc~^ZL(_<>``kACb2s`ogD29>kmlI*|O;xosWh0=~n^^x0Qx%6*uoYh)t@jzv3y z*Xll;=uMdFhRSSteZ(;d_HTzBNZrREpgkq_;a1Xt&SRndU-Xa?x?^F=?JK|mJj5&j zb!QNE?O!E>)_N;o?zj_wtCehGcH5v5yMc$2st<$7Q)}4$6?2$SIfGryOQppx zE!g8_Fjgf$QPNv~sPaBT{qok)mvUj!lKH)36SOa_M@5L+WXjlRGOr-j#pUee`MNVb ziy|*pg*2~(s)MmF|Np!IC0}`8`HD9a_-Mv*Bifw`eK;Ls2KS43Kd(tFNxAs7+q(#r z+QELSNd*N<21y&06*>E@1|RLb%Gl-+4|E8IR~Rln%<-%GL*W!3wb#^iJTctX6} zcK}3AW~~cK0P4Noznb6zvIei>!vorWGCKP-x^mf>fTe%_^gKA~EM7j@ZxWk!L8r8Z zpFNgg`V1NtTyvLPJI7~ao|rbn$&_hT4x8T3;aymH@n3s%7@DcU<4iRH*?SV?!X5#C zsVDNHKFi)b8PVCk{+46JOC1#K2#SPxZlNK|RuQc*p98XIuYi`OoMEeujVchwrf|6* z{u_5aTH1-5mlOCFLy<6PG2Vu^+<*(?0w7vY3_qnuZK2*Fm)ChgKHVO5W|F4U}EOV@RL z(@qxTS@vq2o|9?275tnScK8z18TNn!i)g$0$jYTGGtxlqbS-C{^K!}Bpfe&o#}L)L zjBxD=2&)b`6FSATLKfI_)4trG4PI?t(??A;$Koz$NuALkUnKHl^fH_5SPn*ChZ;!s z0Z+ZdbBL&#aWoJ{bPInkC(2Oqs-xrZMEW*-#D`L$x7p3mP^14&{Y=29PLAf?KFP0~Ht4TmK@dS)++QlF8VppiiRjnj5MWbk z-j>S&J{{Bo?|E`4J?))scl1CMSjs_498dC+TgqcB@of-VaN6OL z3{M<8P^SIe!A%%UnotYGIsl$ro%4Hl=0W7RmEuitv-g&&dcP2*0?lQXUDi9vw|RDQYZ8@QurY@ zY!-lif^Tt@Rb_$H*$ftJq>$v;4RZrhxw>o$!&^d4ji-q_(OQ49R@V%+UG@f@qBwR3 z14B7>_X9)6hp#Tkr$@gXoGx#ukx?Ho#{nWZk~BPLaLHFE`Lo}?n>TQ!CQ5mu(^%Pf*-}nCFx2ck}Lk?69dY?Oh&BcK&KBfb7)zYrnMXZzpweF~+=n-T=4$b0piyi}F$0 zHCyCayqm`>1$KQ- zHv!n;FBk3oH<1V4$Az(fiJtnxDo@tjc~dLW6K?jSW!N%$AVF%p+rXb=!ILQdgzD3;_hSXLPGrLs_9cMdK7C2Rl=N zLw@w0j-pBH)^gC`Mwy*62qT8Ii^GD~JV%0s(ufG_(fsG=&yJ}RvZ?ZCN&Neo@-o~J z8L4jyF(W3^3as&-<9ha$wm7hc`P~lK#pw6CYD8sloDnh7G%TF(%8YjVCJ+p>vdRDQ zjfs0*o%%D%FG0L6t=^2ra_AOb7_W5>Gsq6Alv+w+FX-WAl#)DxX?CsD%YuY6 zL1LY&DafmU>j_h{a`*--Ze4*mlks{|n*@D6gV*GOYvvfY(SvqL>-$XuyayK>aV(s! zQdJVAglF7CpTS>RPLMU!^v&cqTUht_$Tl`HNR88E-yf z8V*`#0kQ|=rDXy0yo@p`=}j*QJgk(t6Qc2uJ>szAGKuytn@n(ehe6I{3$F1?WZFAh zVH=>Ifzs5#U_5MDiQXZ>f_DV}oe9nSSoHF9eC_)0>tcNY$tEl~FnVx@XfNt6G0SkP z2}SL32Py&4uBeyw)r)2w^VW7)2AKVlQ%{&|07Y;^i%nO`{k+~??5FK^v7M|EE{XZr z>sFcyU-ZqZi4{xR`$xAV5Bz+S!U-wKWc3^Eue!t&ppC|8%bcbD`1d^@-b1dIz5I`- zO1@h;Q3OfY9JnhVRDh&hmKWz67O5~F%@}z!!3WnMggph{ha2!N4Z`;XHppU*z6|70 zdV>+6C*XU^<@JZ($ivuGkYk$<8hz@O98r3$7aGfrVdT$Pz_d8^sXhyo)^cuFna4aI zsxEp zN2z{g9(-J5WpxkynlXZOC!h*_Y0*YTmDLM;S__S+Zf*Q)$noa|+fa>(!d^`tx%SJx z)*f#SEWOn@Jgz^zMd0%-YyDXsYA{k-^S%eZV`d%Ef>-oS6Zkmb)3r0*s)4yrq8-hu zEpnDI-Bfb>rji?gJjWujwH5F=Mal*QUgmu-Vpb7nVa(c#Sz_=tJg7X=(ibxhqQ_AC zPXF%#215TosOtNS({nbki(FWxWmoThpSGsQ?()6Vwgo?h@EVy$2Cn1EU-BM-p2x24 zFfXGX0-8`qAq@|!a5Uj*S+rQDZd=7~Q>^7EvZd#W`!qzjyV!O3WrGdt3x*#hQ+bx& zn-GqmVfCVIQ!xP6pr_KYTd@aMko^YU#E0GvCF!yxw;1d5GLhktq1c|bkT=Q)1sdA$ ziv0y!Zd{y86A|GNcEP*)Nu|z~R~{XVT+!IkY0g3{=)q7^dzYv$1hQtuY-Mq$a$c2vCosVd>w^jygcPaU12`+5tZ0554E;~ zS~Vu))1-!z<`od4dfXPAZh-hD{D_ckN^)brmhbV`T(Px87%Zf+jsM>OsU7Y6FPcbf zh@n1eLA_fkh`TV#-IMmsXC!|8^ADtoIGU_r*c)E$+H}0uX&n&Ubv^bh=c3tZJ$I{y zd*cew9`rZH3QqLFkHJ)W$Ecj76iTb!s8}yYFhFGV%>GFP%Q_c}fWarA9+JsuIP(O1 zd@Te(GhuyxG3hl_NZ$r_Vk%-H$d8mgXy}UL51dSmBXa?uZ4&E!tN=(KFz8JDL(Sb; zL*l%~v%u$jKB(*`@513S=6;=Ze>@pna5ecPTlR3NAo44Ja7iL{kw1dX(+GC>F(8uh zJAu%9UhoH+-ikDtml`G(0aR1ZF|o~C(JkX;t)9`lmo#Gs5|_tMq3g2a(COUtnIYb> zsi~Tr;+=VEipRI8giihLkz|N zqgeyrxFROEk9U-8+`Sn68O)j364t)?VgTA1K9ZpGm=wVajx@}4C4=qPe0%#zJ@3;z zDB;qPG`*g=5rn)c`tIQ)8!yYZQ$e=2%~`m~I6?QlHz$EBDciSAi#tDBGYRW4s&Dt` zmnoI+l>ow&z3{a~nnro+C}k0jGb#&CvQtyJfF4PzM9thT27qn*x!yh2mNp*TKKQ19 z1qe^vd8|bJL4lfr@T1;G+(v?$8CDW*pHEz$c>1_2^wBh4!3^bRnkt+ z3y#wQ#~zB`Lu#Z^w&je8wn}mbxNEfPL!K;e9XQ{(@&{%xfhAYH!n>gV)#?+Av@8rVy&1T07mp@g|J z>U=#CGB^_q-k~m(itY-^Vu8(F)jjaPi?M4)-HR0y&^2@KJ)AKMdV;$a`mydd#o*)m z4*nl>|A4^ZJ$2&$K+HXc0fm4k@L(_H*dEVsjc!6#StF>K)!4Wp2$m9e8e)bx#J;|! zMqbBycUU$Z=&v5@dz3;WAO(Lk_HW0D*Qm+_`6Bzv^XGRoMrF5Nt^zG}uj zUI!ZJO$AjUYic&Y_e6efyP}RLUOPnPz1;0*MX1;Arxx9R-lU;*g&&na{#9$xS5iW_ z$q{MlvFrB+cO zGhTCE>(CWt`-0~J0;wro?NyRrSKP1-M5?rrL;?mwHE^YH8@2`xcbtyoW$Sp{bB1({ zNQ;4~5<4xKHwRlDhG-H=(dQrnRLn{@+#RrnDDTnrZ_5Vd-om`_s$HdO47(*Xn5?S< z8M;T#YQxEJnyG$;dj_4~m^_0`gi2lc^e4t{_OvLA*pF8FC`TlweNUzGgKTvvxW3nO z#!yos{FrT^!e21+a4ESAZcPmKD-g5AZSnN(KVKssN&T?2wFOR8LvRRk{_OTxoBI!+ z*{Xk0{ja2;xwIXT*CT|ScJ(e9ah$6$X$Xd;Tvg6Ht>rfOT|{|#$}UxzcZ7~TUx)5n zc;7QSpDjMN@oY<5@HX^rvgUeAX_xak0?kr+H;sEiim~{Kn4c6@qg7$Ke{IG~t{h_5 z+}kS-!CZ>JFlY5BxpAtypU7LVp;zLXtjxTqU=72IGJ-12?%cF@SQ@e5K)c3*+*E!m zvF$z{w?_{3ehoGor+Mmd`!-Dptd;=$^6~yM=0#o*(K@b)w4W+@L@?Xq2Z1LY=kue9 zF%SVAq0SRoYHY-z_~_P`f-k{< zQ6bXHNt_{Kka?-ph+fE|OQiN0okEbfcyF~e;X}lhG(qd!0IR@}*Pr3drw#oGCpSxo z5NcsC&4>Y`SaCl(WantbT{yntGj?gznVaSFI@lS^h4qIW+jn9>)vFUzJ0Wm}9x62O ztZ?DtH?fIlmK4JBKnkx%D#DSBA+~>k<{1&2rJ-_ex_(y68|z=vR65+xTJRg>7LE-* zC0!>AjhR0|R1WT1$clD+-Z}h}!Or>=ikv{1pk}`RM?wD&*bncH-A=3{YeEXqQaU$8oF`uhjJnl-8d^sD%i^tsCGX}<{}O6fbR@?1}NHe@@~t?II457OxP19;ch%X?MG zbZt2iFzM@e1jA*}^k?n_!nPvb2fre(?~bP29;iPT8P5c)fjWMvJ_aT%ud$5`HOMqxUsY+nyQ|y(80#paI<=?>L`Tqk?Zw@6|vaAmZ z7`lRUFWjG{xOK3sRAuE%MZB$yEyekQFDUzr1B2$V05*=7F_WJKOQ<}5F{X@i3=w0U zN=atlr6fpS9){;3)M95MQ$x5Zuc93*mQVbH}w!B4X#6-a!MKnEF@Wt~;c2=Sv^ zo*7WfP`LSHmU9?eb_{vYjXUt|K^(_`n;ZUEcMyKJXKX~GMT?EJo7=o7V7wFv>2Z9` zZ2=5TK0lRRX4%?-fFxF?aoZCl9c(E4O>V1hEc?#P7hYBJK283d=7PaoBbo$x4!3%* zEJUwR3RKKD(+Qodp`u9a^NX-%jYw03W&8drb*xdm5MBt3;Z871{-2rc>wnNl>-P1< zPD(1Gd{jGW?0H9P*LA@C8+3J+B}|EAk|LK*#*3AniJzmNK1@dN+v}9rvt$B-5AObs z3Gb&kg5w71oSJI5p*4e2Dk`vKAW{qt-o#Abb#g|VMKkvW_hPTpBD9-5-DlLl+F$q-t3&m@GAKto!L!W}8o#fjsQC&;BRrBQWcvR)s zYV0PktD+ji8+=~0W~@SKWdPoH^T3YMI=ViBkV_?lB~?0vxOSOyu&p3 z%ax+U`EFOzjk^_sFU&4vJW+>B5zF5MEgvp;N79>D5_L6yxvOJK6!yYTAMZ5e@W_a@ z84pimBcPYXI*qVTL_t=yzmiJ8V^{4xwb8*XOSbDAsa+ejRXDCiFCH^j zdmiDGop@BwyYYCw-RKdzC`Z4b+h?t5qnGu0Iz*`UTlC9uVEyP%E}lf<)Nj0yl%)Ih zC+g=6fhr`uzucL&b)=zDeoO{Tr3q#-baYEH#W(Gx5-xTVx}y{7nG(K(=f{thnm(25 z{EL*s{zuWa6e`!3ieE_0_vQN8)%K-a-*AD7#cqz8BaSFr47O~@O!$EGuNNaf@&VOy z}Q0NDigBg?-(RmR2QtU9=tg9gc6lD~r=7-FvVK^3dnGk=C=^ z;TFbW>(+Po8nNO~y&o+lI^Rg3l@lkuwpS*Uy7r>lziHvaZ(%*Jfp?x%ecKzNA-uzY zg*y|G%h|NTG*Kd988hG?~|7M?JzrO0ui@*Q74@i8+JPX;xmUTVV z)t4j8+cA8-=SF)o1ANbhJxQC_mj}_5M;bJlPGJE++KH#c!JSoA;PvuOFe)^1*2Xm>PKbHf&rwhl5 z!d6W409EEH>P7eq!uzPIkQkD|H>V^Jboo(j??+{>|6B%Hiv3nnpo#gYFC{MfsgC4L z$~1?A@7=v7YI>B@Q%8;%D;YPCyI*FNC_W&;Tht$TX#Pgp`ivEffCmxSF;B#RNWMwU zSzz}M2xPpz&PR1)Ir*UY;9t*OwT$F{qSh>y)TgYV9}|?lfxSBr6>QDswud9|!jVKj zdiuG_pKxU6YMult5;^}2V8jt8@svWvni$XVuwc7cI$_KP(HWb+Vfj$oqwJklaY zi*$bE9&4IOE4-s$e>oKGmI;{p--l3%Phm#$m-cZVe;x8mV_Nf1ni~zuSVIA8gqPuF zw&+F#{t$Xe?y2KvG0;&b>1Yj#p(RHXc4Atop zj`5Od9xpa`Qe-S0HS2c;11wA;1qh`b-z@xM6bL9L4;01flXeqSsQY$Om?if9>bx&B zzQg76uKzMYJ`RgU5h|Jjo5X9c-DcG$A=ba#F;iv3-_sDGO8bN?@KPq6JZP>rV&v^& z0<=9exa^VYx=_&;{aMH!xL?9a_sc{tLV!jLwUQllh>D}eNoX@&%`q8j%`!mP#4I30 zyGf+*lveNzAH8Sn%q2PWN)C?}%1bc@d|r}#ijiGRH=6Xjp&el-cYXp>dXkG8ySr#x zz2(ji==dAO7}{{E{67r$%RsNP!Yj#WCrVle3V@1F&$6Ae-Cx!-pzG!4-P$qViBX4X zAZ)PtChfV^^WGuGQ%Jb)1c3!zZPfXgn%J-4YRzQ|uhEMfD=~ybf%g}aZg2Ch3{%{~ zig&{q`E6EQB4dxy!|ipj@}5RFU{q+ewW~IV{-c|lsj6qe-5Ho=YWU}6nB*_HdVjpO zuPnF6)G|f!XoMeHhjuU~c;cunfnFKFdilitrr1LGu}>L?=OPVn!o6~Umg_O)8PU5v z@T!5CL;UP}jhw=t&cV6;Af?`itMn$NZBuk3#5||?k4!jJ6x;=6_1yVm1)!iMS(on8D(7|2=+;yM#Kx14y{>P{j^fk$v|idGQIxTJ z;mlBIfhv3DpH^1tc-WZ|)H%yd5)Smk40cwnBvVr8^@N2Qam7WnEt!IKJ(?=^Miipv z!t+1kM9jX2W+p6O814@6pZwxlq4(Y#zpqoR()jL-)Mqc`9XUim&PKYM0*$yDmUhxg z!ZT^zU?8Ti=(Tg&HswXiI3iKVfvX6PG8G4qHui{YEQqMUJ0a{D4ywsZjn7g`m&XLBJ2J>z(u0ln z6wAJ)iD-xnU`RTbKlE|xZy3f>^_xv8^3I(UVj@TiSOdb$=C{@-YwWbY@2qI&MM4P z-#B~sl7~%va7O{l&gznQK$&8osOh~0ZTmp`=*smS;%b0fn7EPqlAeVD9W%E1C^C8Y z_nQ?_R(fIJ+pP5t_I1*7?0>ZYGb9J7exsY|qPG$X`vF78=Zf4sF*#J9T`XP974ZQ6 zWwoiCO9>+w?=aBjQ_N~6;@Gh8MfVGUT7Tg*2E6*{KWb68Yj==^faWjx+G(z5)D7ce z0=mEEY=Y@6NWuxo!m0MI4wYFRHi#@jGpFhD-HTK4VuR07B|b_}uvoC{drs}4K5ql} zM-W*$y#5@GM6i&F7Pb2-xcVv7!5qo0R;qh`jJ;}yaYSxSK^jJp-An%q_*^vyc9thH z{>?^-hM%kB(JHi6B1Uezy-&R6*L|YXc?vtb1zW^#*ulg&y^Y#M>DBUqUeb3xwhio8 z^3@Jje8gFcd%_Et7c%nV9ARL_17NF3-mj0^*OKpu7{}MvYmX$-hW9>VPHec))uQ(7 zIhVKH3GDJZN48Su3-*ff%!Y-3G@B`VOFpa>MA8T_|9tl@*6g+cn&F;y4!0?9Wn0q6qIw;)#_^`0g=8eNohjPyi^BY2i=KVmYWS7iC9C9WF!f?bwwT z(v~{KD3+5x6wEN0dZ(ZTv5ssWj8ErL8o`n3V~l&aKnGJ;g)|zYbS+=a@~Uv`!Kq&P zLs_gJk?;gq##tBc!m>W&u!`2cB0UbF5$|{v`Q@P(*G5Qs-UGkt-*7bbI^X7jIf(2t zY)6#zmW#OQCJE<@PozK-CIYe(XHx+;3AdFI++yBxkh!;6&^xR1|IqYU`^?>TwE4Nz zl+{RpF&Dq?DE^^m0RLT9AEZU&zZ}9tTRHkaB5iV76rW-{4kUQFq(w!a7FTG426Z%- z5$l(qaW4TL9=AW_WfnbEXE3TeV=)YCL?1lYLkSm-MNV)UR+5FM^w+a%5Q-P(Ep0P#mVZ%iX$l5(4I0d9(Mx>5fZ8nlh6F&8^vp) zt~;2}x*?W#y>b#4MM1eq`3-@FUvT&5!Ggm1#h5pzQl2SrUAs@y6`v|ejQ$7z`5FT| zk7Kg(2yU_d!oY8!R#w&Xwf0`JAUyOwCkcl=YapTQR+1&2bt0K@2(>OHCLTIeXi^-U zXi8He$K_}hul)m$nFs|QXWL_9-(oCaqsuOwjI`G0{+m$Xolz6SGf)ybBO3}5mQsxi zw6}*aJ9fLy;iZPJ9tq*V`6DI2Stz94j;`($&>f8zw*U0Vdu8}!YH%-dL zgcDLppSks@lc%X~Yi5ZqeU6Fwd_f+oo5628GLb;K%XE%U_F0sagg&h-47S}4uh)JX zo82>E9d`_KfGfo@?Mlw{V>^CZag%}X8zJ+2T}Z|R-0u$|w_mhj}eKmnb>G>c4wE~V{*WeZG5>8JM|7kZHMApyNOXXf~k^@Q|UP~hyye3sq^b-xo$ zb_6~m8545(&pE-vw&=)S@a+rX zX@~}1JXy`-5mucn22!c#RN;=%%y?(o_nz8Rvlu^YJrH$Buedab+E4q={J*U(E^IZ@ z-#srmrH|<`bYS~YUxb2;CTM%m%hceZC+W!Pcyyp7umL21b*ezNG{gip&iS?8_Kr-Y|15rH;+J(oF%lIzwB zYY_h(^x=;L8$XLf@A|mU%HipA(yIg>it9dWR+tdi0IQbC6Ha#!`dd>EKYaX(=B>PF zs9Vk^=2#*{LDC2}j}bj50;oo@>0Pgac_ae&uFC*PX0mEKX70Ot;RY8%=8*fewZ-CI zNLurfFIF?EV)9h^S|=~N{C(j?E{`wH0FT(~clq?DM9~JR@8-Pm=qFuKWBDIN$B6C# z-K`{SOY*jPt{{kg8-L$WoX1#LQGqljAN?r~-koF-P{Ali=VYsW1^T(mzIwJ*Ns#aP zZDXY$_JENX`OX)%>1%yay$Ys*F7v&OH>{OzMPgMFAG7tdR->^1w~Vz0=TX08KQmu{ z(ODPTyDv3zzMe~G>3j;_OUKAu6QU#`#fnSoEVl2wr4yE|7yI;!THpQ)E2n{Te#KWq zB^%AZi#6Qu|Dt&T@EUT%8ogMJ2R6d4i38ih7=xbCqBz&h-LARjctV?}s1lIhENP=E zXPn0^fzhR&fmjn~*k>EG>p~?$hTWI%_qnDYXekA3bT&~c;1NA(GqCkJ;Boqpn`{g_ zsCzD*}l@lzX6!}x?;}NpPWc;?=OU}Owr?1_f_xT{4|)Dg&Mt^_%Kat_L4tr8I|fjpTRJ0X}SF25RfT+C?;8~v<{Bo zJU$c?8}Pe7WDFeVm7}&|hJOR%122hOzlbb@{JORs1BS0kjR1l7-)_4IecY~%tg{ao zxqD8MQWlvh<5lnUB3hCQ8|b84XAjf*kei0El=r4up$1-@$HSfU?YQ z!ODwFfJFc)TY z5VJQc&El~rYHA?6EUP|xkcORyodJOKjeQ<`Dv%o z^rda?;-)PZV7p9Nw{&GMzpwLW^lW0F;!$53nasLfa_1##!!FS57!A7M2)nMaTd20( z%k#VJjn|KNu-O{#C?f+L4kFy(;82!4LK!MtXIAr|u>pxOL!<@6d#CUCEgHjA`LKy3 zTZ+(cR)1E1Wf;A?R1Ih8+Y^g?3Os4IPNNxc{|U`C+drGKl(OIf)3m2g8aVzni}_v> zGvX5o90$A;(htf{lE&ykBwYrho;OuAaAkB*VE@`l8@a_9mJS+nbQ^q)74ds%UaUm2 zGl%gq`<0Gd_40}kLOu#fbnGGc9*JI4itx0_-(N(}2%0RyZ7m|J?+)!*p#IH3c3rmJ zx?Y@WVO{TvsYn~{5~A1(W#u{UK|cgp6mwo>dDnD0ogCFNB<+V$IhE=yrU=3KN|0rP#R~&HCJ3IGaa5Yv7Itr;Wm_R22 z#XzRB7uYn2Bi}Bjyxv%&8awc<&%EYtXTVz7K)LKGvYoU8gj5Htk4jU-W5s?a!P}!e zL-RJv>ok~xvS8|#URPSdv^qu!D+cn zITZ8jzC3vCof7kxfy9$*1U_Q@%6MkueyOawvLue`Tr(Dn`6hYEPvmL@ys%t{$DeMd zQo&YGeE4$%#RO<7=*2|;=e(?IB``|=eaKV7%qe1)yu+T_uC$ocVxmSWDkO=j`LNO6 zD9>lWAspbvGQ7d%I1s;4axTz%=GpE{Y3Wxky)P8FDa2h#uU_i#QHDMSd-)EWouMzC zP7+LEs=Z++OYTiOdo=BP6P7d`U1E;Mja+MrNlUmzlCjt42X(Gw--n!NtR^L|Q;Fce zd{1-vm_q|maUSBB$rypP3d9~qSVsBoVU@N|WnHm0_2v0jpR_YvrOr9d6NagO%O3l9 z#XXwajF<L=o`O9djvHv*1ZdaYo7NB-4SF0}1D`w;7aby7N%K!@suayw=*)Cu zQ+lN_Nkr5Avt%@dgRytWQaNE3h#YRl0x?vGUTGQR#A8=GaByD9!AcK+3Jjg&Pf=Nc z85a_7kfx?>fPVUgv=CyWkYoB_VZlraRZxK{IoAUi8B!WgC??V+rn?o7*9qKtWQHir zibjyB;gCdg-3j4}jGR`LZ!f6>j>-6?bd{%wcl<$8@#0r~nCwjdIghQcRvOsb|6bs< zMcvodwS1M!^_{j6atg0M=CPTcIf9oTwB!%%6{XWC5lkaX*N40ftgomgq)dA~Se;w_ zaTc<*nmTCpVN2d`!l8~GJ7?LBOMZ}~8*hS3L#>y=6N3XTRu;^e^Y2s}iRT zW8s#fmm(j0>~!ly=}l1TerdlBbKF*tc#?ex!tIf75qES0IJKX?fh!V2<2Doaan%hk zP{R2da$rcpO`Y|SVj*hQrVrcPGDR|0zOPZS1mBM~&poLbg=I+Vy2{j-^OpWQ`Xx`5 z%_pPt%p2=>-S4Ol1i}K=16g|(9z1t9k|$}gceoZBI_IklZdNb0+KCB4N&Tb%nnK~y z0egDrpe)(hEEgVjobeMCI(sy?^= z1bcjV6!m^~bjfZ&=TY#>$3>330zyhv<9E|HR0+e9W-4XA9~^b%Cd8;R3FrtjlT;_U zx5|5lzmZvz7hq9IVHF^4Ge3C+lgF3S<5Ub~>`z5szTW4+0u=woCJGdHk&MOb@Dl3` zfo!IJ{;rjW2rK>r=om>~6fGaSsSn7y-YkRS5hFowVsL$XF)$u!{4~--bT$8Tu05-g z{<&?Y$M3zUhuaI$0ekJ6eThO-*p|(*N?%OhO0rdG_My>zQHhoj!heGjo=7mvAMX`U z%s1e`+c#l3accg+ERxmZ7tBhxXs)EKHF%Gvzy9Zj)Iy+m8Pc~zO*AcY?U|(BOc>2l zRMaFjCO*&}Wk}LQe(5d8v<{i}lv2oQ0xO$vnL0*RDq1u_nkpnJi9j=}$U5r9TJOiF zqI&wNj~-y^d$TrOP90W4cKq2GLfHGhg9Rims_JS*Y4gQu&p}Lul=Bziu zziV{!T&O=bk90g=XgVgoenfzc*Lk|Cdiug@i$U1bxn~parUz*iiWPn$8wDk7*|Khk z6>@5UwKI~F%uOvkN6&8~L=Gp`4(bgxf=J0&<>w0o*@K23ORAUHggJisPyQ;k9?+BI&3Eic@cw3X49;tEbxA0to3 zu3U6V8n3g$WWgRq0x0)~0{ikS5?e}$RLe>ahd&Q%HodR;4%%GXNlw zpF!zLSw0cZeMuM3kd$ho`$KY8MR83hYcP`rxiNA%vx*971Bm)$7$==PU`^k zeZ!l#HE-`aTj*_dJ3c$p7&=(<4;ZIQ^$zFupe^ZEk8K!W+A}N7JgAn;v>-CD=8@^x zb5X@jPacpK%L?R(rc4^|BVfJkGK(L=4z|)|+!UG8{-U*G!L{lq)2`1Mc$INjh$91= z?VJj>`Ca7W7aZtDHH+;3^+Zvdl4~FO$~yG5?jfjWkz*x3L*WB^G^QPAc*j}*-$EL@4*t)Tfg8ae~ z+J>Rsn57fm7{u@<)lmppF7_{Rkn&TCjb~(n(!6QpYm;crZE1EwY?G$jk}g}PCT*GN zdSNm^FmI9t516J%H$q)fi955GWFcCbrE*cn*r1CUA7A4PLBSHhPlQAu@EE(O^j9UI zt#LbVe_W&F_g$Pkw~agxe0kZBvfJDtKa1#SN$LTlD_@!?+|gz{%(=o5D?%s4**Zou zGBH6qkrUuazIS){+I9{OORKBKE39s$)9#b* zlkbp7r=^Qx_~9KlHOpqV^t&0OhA-C5$RN)d$^PMOU|A|$$*4$p34Cx%9Gld#l^a$t z1pd6%0zR3MGgA%pqfGU)5=eL-oE$Ikcuy@uKLCr*08ywg?~V5lW~ISOA=CXGy(}qb z^wM&a0x_fD;(>6#7>iPb((v5*ZA0Mfjx@Su>TO{qUoT?4g4%!2)W%IGdo-ote-o|d zHKh&*QZvhpUA#Y7`CTfdH(EqV6WZ6*2(JhN&Q4;WE;M)%;DzDzT&zU`JGR8gaT4rpvfm9|W%P%I{?)p+VCQMne-pm;EYjL4 z)Zpp)!_jeRm3DR5!5`z!_BsG&l`3G+LHT3B&C|B~8KFUF@pluZGnLn%-Rm zriTwD$?WFbf;jTIXwbTLBb|iLm^TZ@0m0T^)F$h|5O@VKn>KzXHInGIh;O)%W{09w z$$!e6z=PK|hH$Tct}x;QE3M1cUtlNWKWNfld)}@OFWxE{A3oIa61XQRVkGt~@QzBT zv?YzUU{b={wfd5sEp#58ohJi4T_x{M6<0f79d|cg`C4J}7*9_-*cdA>@$#t!M;i}u zP(=&hD}v-|__p*f0rFH>%w>#A2C1ZOk^~6mXHICqJ$VgTHTROUPWHj&P8eq?Ig`dt zmdG36}aRLYnOpvPR3dM6zRd=zJTA3B=1i0ma=$x>G}R6lC-T#9Lah#>?3%& zT5=_TuqCZ(ZR$6x0eCueW{vda2%){Bq`kSgz1hsyee7`z)`2s(WDCJQiw@3!?_C#2 zDjJlg%Wc9_X=?m*5~Djc-~r0tk&WnfUuqdV5&{4y4Q72+N<1wMgrB8> z9BULjIhiu$>LK5l61W>E@cdu5fqGf+_rYNL)4?)xdlzwH>TT)mGk*FN;>6L*<1h9F zeC`K7gy0T5XR|#IBoq8`4EAU>YHU623_mwCd4=TMLtp!Dx07zh(2lc-8~7SwiKcc9 z{TOaH)MkP^t;22XHfnkOFCKXWyXD^eTuA<$SPDEkdHL-kfe<(22AjeYb3i2Y&%`NI zczzvnsu%aO?SOqzXu|u>cHPsV&C+)L#rAE06po%@PC?e$n6HPj@`@&R%)6b!cRPDY zONBTku+&reRiTt^zZ~9`^D(DFa6m|jG`FarGhxCyWJYk%8>ef@WUBa-nFZ=r@jgO{ zf;u-kmk?kP?u}Y%xYy<(QGC@^NPWJNEfNZ998lY)pUJ-R<~+KnYxUc}VFr~=QIO=! z^kB|K^tgArdnX-zyI8H>jkExtt~uUZ9a*|~OMAMGoIR$E?cv@zvVH07F!uBwJG;vA z@&wInw`z_PQW4E4U`9oWI{?s=|5Dpi&6zqEklpjAx6PvAUsd(E@PZl!?)_Y76mwD9 z+cNP#K)xMF5WLN+lj&GU-E4O>c+?hI3^jq1BGU(vRfR5YU})Q-$XO*WVkNkt$I9II z!3DbYUMH(&_+J5b;>8MHz>IS<^n<1dGeh_$nxNlQCm(q6>~W~Oj9KCUFA#+_?@k+v z#HL;GZlQku4|Es@0jjfy+C*{=+x5>1=vpEK>M}?sUO!8$hhLlUasP9kb1VP%#%dZJ zBStVftxNC;yL|&T7FM1pUwQ^y&Xd>mREU#heVWIAM;B+0M0$BU-(9I43bP~9H>_=j z4e356jg2hW8FtX=uVGf7CqQ}F;Qb=`|Fr5~q>JDro8L&A@~)e`cr$sTWV({MnlAiO ztH@GPq@~tDos}DTf%t<3hF)_qY|gnRMibt!)o#c~fMX?bPQF23NqP-`~<@VXt}XL3cK(?)}=< zSsPc0uiMq^9496Sq*l0EwEk40zC7F!>61U@k}4q`wyOTRYx@)8xY3CPAP-Cq*`jq6 zkzNlNinsy!wk6Uk4X@?)-4Lz(t{I`ty}PTwyK`&wtZ(#$t@5ddE%aGv3|$fG9wXg4 z%WE=(fkE>PUskB_oZqXU-}X2u6OY3VLbEuq+siStD-M>->VNiL@g6f4j8|? zxqNRxmLDU)N#w7h0g^RBGpnwXBR*{=EKLP#r!uJU(099gjbOy>ZoT-O*9v5G)jm&1 zttWF#@SXcVkl+2Cc{*KFRp0*GGN)Wj#`#v?acBH^_Vib}nskTe1uCJVt~3T(rZvcr z9-;A2bH~_If8q>A5Ku|pQQ{sqp;id$qEG+>QviQ`psPEJG%F9Pn%@-tD z0l=~(Zxzq!uXP%cw#En#{-m+Gmo%I|YA`}hweoBX@`mtg-dSm{!uwrNNp&)EdR%Ty zB2#Z@>!I>xmlhsoM81?7oWh5QS!#1(1#ogQ?wC!V+i&w0;er4^IC3%ZJW+{?qx1q7 zx(drf0;}$G^S6HI6*n?pyV*~=7#>c+txxt_PFY)9&;aA!u=?H-J-gCAd)$HJ^Drz>^u}ey1w~Y)1 zj>RW+iB{s z`T^gvB>qqV+WAa&`2O`&KIWfit-v($?-YjntTq&QEFKti zc|kd|O(7t#7=~4lEBCJ!fQeB>x11lxRzK`Bnifw%<|tC7+4d3c<=nf~RZ~8`$usP? z0v?F>5po34&!*A*lKo$4fDtpjl&ULRNlPShdm!v7Aktw^nl*b-=)Dnc7S)hla$cz| z;F-40lY^!JvA==F^@s!Ae(6UXHgXG};?A29Pky3jHbV3WR0J1Iis4V(hj2~flN6aA zW<3GDT5=-YJg_g1%s@H3#({=8Zy)<#NehiHWLxAS-5?Saa;9ErAr8{U z0e9-T|2|n(cel}$IaDJ&_bIj?f|&Pk>#9Yn9>gEWMs;AW6qb>XXC$Z5>6ARg#Ygxm zLyxm+D*jt{T3FD;6Sj%NUAd`)a=o;O|Cr~8V2KGV+~$u2r`y6q&J@O_KeT z6rKrfBt=;Ta;53Zzof4RBEtM$xinvXE&S8wKMFnYIf$2h`0tB``>cs;`rW>~A$xN+>v^71y%$ye3SRo>5E95zs%t&Lpx3)cR@%DC3fzU8#VGYW)JI2j5#8aXNW zHU>kIs!mxLkReC|@}(Bshl+#<7iw`DZb|0dgK{w&Q_$%PF>f2YbQS4x=@1$PBPu4! zKdp62sjT-C92ONOqf-~_%&8{{U(VA8f^h2I!j{-;&lClfq&UR)M`0bpxdj=gIjk4E zjFjZ-vX#fhm8r&All_EsT}^vf4$U7eU^{dFGlL$p<;40~5bo;kN*dfBCkkGS3ZAN&2V3-Op0U#&Jp!JFSI)?s)GQ5zl0ctw% z#xjYF8F8m=04pqKao_$)UThs=K9```7=k_9gWS$d#5GTIq9%>VOlrCziAfEhd%|8a zP6Lvt9XMB!A1fe{8Z=Vt$~CyiS z(ytQMBTy20=i&&0u(!;a2X-zPQj4?s4G?9l40b^)*(2dnjAHvEZXY*;>qaE51<7#4gQ%9^sv;}{sD0qH4tls`(CHE>3|tT~Ykxt@q$XRi$$fPl})1f+@R`Ly(XJeRMzNtsL5$Pv5O zZh`X^&AsE}kr=7$&Po*X^UsFJNx z#AL(XHb*X9+PW@j(|&#(qGJFR-Xy`~OQ%&YTWUJ`^Y85`1+1TuhFH~K_G*T)Y~z(= z2F;~zmMmFb9|E18FkT~7O3Rx(G+%>Te8l&r$5TU&Q8H`M34IGunNd$Jm_Ez6{?ln< z6#g%_o6|C=h-~v~&jrQC2s)iH_m2Pe=ycf$pYlVcmz~9rCur|5hwcZT_R+TTrNhcA zSe+F*CSnNp8zF~qoYNr)`0@wLVk#1-2V`JOBm&sUWis(c@TY(2#)#hP0EJVvH3p80 z1B~NcxBjZW_{?ZjBZq{LKhhM@w2_zNh0D%Q4-IWxx^Pk0CZk99d^MVQtD2K)mG-Ct z<$f}Uk3km9{xsGPgymbma5f9DUo>a}h5!Ws`X*q`+t?*$5~qMUE{(hHS;{6?_Lq$h zA{sa3^%Dw$PZ30c)<J4tG)V{e}oIUB!}k97pC)uZk#t#?4_+Zys$|Z8RSCSSe}#^8inW^90*WBFkJc zhZO+mVJ}ho%$y|~U%Llqn}uRs0or-ad?1T=`Ba}Z=0t0RB5#!@N-0*qm!kVXA+Qqv$3dwg@g)Ehp-hNY55pl z!jOnm%@?IMF;#*z^Dgb8EANEfu!~{(*93W zPwRVJ*+}HRU+6)tRbP)q&V~RlL&$Z3kHEb{F%IYn&e0Ba#T*S3!aghX ziIi@yKu1Pqspe2czq`5Uu%)el2A^d&U{^C(FZ}QDR-4)|{Fhc^dOT!;qnyGS6gD9~ zbG0^r15+8qoGj0Hb-wsFwHLOxm^@$cWS<-U=jQLK*%sTIzjrj3G&cvGW=(p8HuOpS zG3Bhk`LnAa;7knM&!hiQQFd46icC8tE%9_txa}x54<0LhIcLnOrQzg;(3-LKegsky z?$nM%A_&P1mmK)qXl@UE4pjM5>S={!kz~Uwt?_6mvduiZU}dm#^!}%f6IrFOuqahP zTepY~rygr2Tf7yX>yv2^NaYm`_BYSeA%zlvr0ZrPbFv4U%S-A5<8E&Ig4UT|eoBm) zhQIz%ILQm8OcWWW|Dq(n6+rR}@td5Hx-~CHeUv}W&wRGjE|}L-&3eb-*|~OWrJhGR zpPM#cc_ieBj<(P7Z1a|^)xga2t{3XwV&AanA#10ni@&HPGpjjRzFVNo#l0`jcFZ;7 zd;RGMuEtNK*6t-~dTT$Stml19drm$NL{40&VLG6m&(rJU6y@Cl5fWFpuM@Ykkbw7pvZ8|?~qiggdt5>(t z?P07wIK5MB7ZZaZg&R4cfjQew;JCs+xLq|bn#x|vgOYG^JV>yBK`q6&pAErd3XCbJ zRYqK~1hnZe_W1?#8yxleU7*Y26eHja$QL5QvZSt1lU(Dr(kOI?D3(`LOW|_kzqRP_ znQ+0QE}jiBG4R4$xv*6ef$TgU1gui%qSlj7+$%EEV7nRm2BRkeC$L70WF?rKM0n~n z0OM~o_k@2o$?@Zwh~=A68dGAnp6RSMbjGc$4Z{#$TFv*KcTTM^&m~isB>>-on`4!g zk-?ZHNOKDmI<&!Ix8{ zA1r?jU^rjAqAznrgnB!|#h@Oz01q8UIu2Yp&Ng((lPvM=27lZwzzNwMjph)9?iREgH?E^ugCRbCkz&ueIa?tnq&rM&MM%^IDf@Cp3S*g?j+|hE1gXMUG$AHj! z18ea=;sT5=#yNV1#n^zirEG-H{|oLnn*RqbiRs)JxKI5ejKdlQbHLq_;C>Lm*;*|} zyx}+6ktwWp<9w(fiUkcUJ!!Am^xfaa-Hy>td3Re3jHiIl!DpoX;cPOdqwl;CRNgJH zKb*JTg%8l|Aj%D?+yqMR(3f`oW*G6(;#P-xP zT``$T7^V~jOe&MoO-d`5G%*Ps)C@&VUBbo1Z_UJ8i#}&8$*NkzOzcGk=zz!U9$b?{GY>%43%n1fLIa=lB91X5jlX+Hg4g(}7voA#viMFa5Y$u~wd&Enn16iXPYt~Wdp~3b zf%em|)fq}`k%Ce_#3PnKJ~d@)oCdeQjsgW}K~ThL$ju+-31KH?Bs>a}uToCtAxo$d zL^}Xg?2ND=>#A`|(OAnHbY}%(>J|Ol7zQs{=6)5b&jK89886T-fJiw@op2XS6fAN{k5lC^=M)DUtfZeRSVYvZFOJ>hUu(DoWw6Wp z`liH$#nT*Ug5vX1X+Yv}^neJpCr-ER`K>YC5m)^o-A>m3nm@ zr}H8F-Uw#?@Q8MYpT26K55pME{hj4KJ7t#f4h5OC+H80S?BZ3BO+J=M#gy^4Dax!G z9n9#lq2YFMVuumnBrl;xm}`ow)RGrD43*@xY5gJe2&zGmQY)%RtO&kDlA*R+#gs+k zCF^oSonaINsk5fv?*$Lp47oL%yVZZR)Nm8TWdaS~x=b0Dq~U~FzR8Oj^yURm;EK4? z9Vql`OGyezO7ylk+1TINs*Stp2NoB$(DVi>?XdR){|xq5mMFQ#D;&oAMrK-qJ~QWJ zIcL$8W0TQu@wi-?+J3>mi%ofNW%2D`0XJr{p~iMAz}~|(er#-&E&}%pec_iZ9hYoKrU5Ug{?@O#6Y)ZXhbL>1}KmQPc z+j@A=1Z~PJT%YX3+l67@{d@rdlSkM}G1+*6pJ|JB;mY(NJ+0hqCbd*_B#Q~9Jx#4~ zO@VYfpSz*Qd|Qegn8`s7<-1NXe06NmFPsC+&R#b?qRfA@@34$t@&Cs^c#Gqy7opU3kNTY1lIe~n9A#|~&G8-Rho+-XtCj$Z zbtm3aGn%X^Dz_r3vRPbiGzZZh_I=GtY8dWxGZejVF74k|pv#ufCrr4h95Q>uUUbDS zSPD;HO6F;pxviwZGz(<#UrvK<668sp3CTHWCO9zlsG{?NmlYJXN!$2ERh4q_oMDa^ zq4i#JSzrKkr@`@T28C}xGrS|KOjMpnvO`;0V*FN?n@!Xu?k4ex+DgU7lG?E4TYanL zua)QiGrq+&gn8sj(_^%)8)6uuUXPz{R}G^CS8HIPx~sReuWN|CXU!TdFxu1W{4#Yw zi;dEVC3W9}vbII~Ln*F`zagusuOE`gqwKAP7iy@VVpxO32Tb=!#S$;aj~K|dZ$TrX zJVe-NB7bJSuwBLiFlRc!>cJwh?DOl+MgrYU`B@Xzcqn+FfbOdq)lB~azx=PNw!by#^ru$hXntIpHTqJG33+sy-FiM_AF9C4 z+U%#w#Wrth$W%pEEFr5!O$N2BtXnnP<~9+V- zxd#-pWCwt8+Q7JU;Ah1r(>P@r(2AEEnN}2%_?0NP&~JtVq9jT-!X0eR5fP?x;Tf89 zU+QiyYTAgd@!*o39nQcn=nsR^Vij*P-ZNml#~V^QwFBCo#~qwwkS}r7MN#zTG$G&$ z3?wnCfIi0E8jqH`{eFA!{mK$ZRC`IFQ*WfV;?HOwapKW5hboYT#a4CE*a%bC>~3SP z>r}mN(D9$1Q z1vB)9R%TTAjN6;yBudtQt@PK1H6t!M6c>QSQ3{3)8)fvksMP6m>XO#pU*q6`{D)5p z>A_b>B7%=pf}VH}OK&8Y2v0U#@{SAkoUWj(sK}J0)XR+&T@k{t6x37VJ zz3Oo$kKLN_w97Dsp3wU$x%d}-oPG8eYn^i)jg>>fLfPUDzhLRV09FazG~S6-RyiiN z`gX&Vj&_Udt5b#>HL%9UGgHBR72Fc8xV_`G9Q>Kei$F3OBqZT}4}yFWv>s z-)EwF%6kOvC}_z{byKlS<#zt?f6QSJR}a>`8b*RKuYMM;ilaDiY1-}A2u(C^g)8W! z5;e-0D^x`bUQTeb=;O<^WoIi3g)`lyerMne6b8l=?jNX;bcM^uYJ_O;jQ7IFKHQ`2 zV3DO+-!eNck_!!nXmX_2aFrAthn!u?CwvalBn1E6w!;*1ji3JqyA|=!sDB0NpQtfl zLqupi995j7IliM56mgD^1659R4z7>C&rQ@=qOh8YRFk3{sD{hzMU>f ziH%EQuq?tVYOOMO7TuocsZ4yp42HbC?8t(}{G{C5%(-&`S;~ZC2i!3N0h~c<5Jl^( zY9}_X1X|}rsC=mA&-6w~XDCB}3^PO4$TbVG#WQQBGh^|x&ZCd>T^?(7pFuLuG{`vw+Mo&z8g3*?!vCe*`S-O@R+tH=h5| z@k+vw`4hNxR8!87b}y##kAl2}5mFufWi)I}d)Ey%yscdL22KxxDb=z`Q&gF?AiCH` z?%&_6^Dc%DuY_%9=?9>xq*ILZnx7WrP7{XE)l0$6!|`cpSAKixkj|=?aT}LMK&3` zVK2(d(ys}vyq1bawBOxH@OJt7g^(KK-X2~ua26em36(LK&rY&f%*L2|@IeG_rbxV9 z;8f!-V+h@6KE=vt?qJPXJqi6h4y+vxx$_mRPfV^thD<^Vp{LU%_zQyxRHP^8qPZYP z0mK~s9RMAhdjN=uF_RfF>hd*Cv>p^g`I63EBw=s>)=pj1S^(j^Ubm03 zr>kr>&Q9xy?Q$gyyhFP@3iooAZEL4rudY2sx7Cxdv;JLN*w>=z!r1jm@oT%5#l4Vw zW}=EjZRj^0k_L9l?CGW`Jme{-3TR4mvFmyPR%=SYIg9eD&Yp=TbuwTMMjHu~W=+79 zOBH>oNve}b4kT^b2ey8)-GEV#S`+6#=9d3dN$bL@cV5W?aXV+xHdmnfH zyaut3t4){di|oc>Zr^aP;QlWN19H0Z)c-5md&>U53NDOb(Oqb{sz*RsIw?zixE+mN zpl@-9-{%QN_N_*rB%&f1tV}hWF8pbX8>q6+;RCkG=Q)hjVMA#^t0s z5rjxclt`3BC!*H~QKB1th+aqUHHidKqX$u z_x=74k6+9OWA1zJYhTy8)>?btaS8OiR?ldzij~o1-S^YnrOb+PuX#9XIk3A$j_u}r z4$63%TE^&g9@`(5;lhtsr#CA6qgm8WX9=*70L z3RGy~H+nOElQ}_41_i;-kJ;E^ie3U!XN)JMgN>ckXKLN%1vSc%?y~+vnPWm)Clfnu zq@)OG^P`^ys{&&*Mo!-v9Z&mN`K3NW#^#^iShsubN3UG}$xw))@?C8XN6nEAG&Aa_^XNjN2fAlyjwJb zi@4p<7OgFdG=S`HwtAzs9N(HV&!=&NZu+m~fu||I=yp`SGC2A=e&tDD6_gQO8;K5D zgbbop_;xN}rmv6<6g$Z?i&KUD+#dKM@c^RUo%f8;(W0k|Rm~8(^j{Qr<^M%-6Na?W zr5EBpTz$lwIU{ZRC6WAXGbw1lGj#G+$HkMstImxJiZu@0pWiY-l(uZ=4~?S?gBkVfUbeLy#GPJyF(*e?;aE`Wo_{F^BQzZp zE}5arf2)^TR@@eCJj@eca?8_N_~^B^XZTL=56SeO6w(oa5^b!ktaoNJk_t{_*401X z4VJZtFSU4Z?fG3BTp<23zq5jil$E}~jWj#as8{<|I`M1)Zb_%dV)WJ?0!hO)3wQ?F zRQ)T4UB!2c-*L9sE%lgK5iO3;Io1gs6CCl;tQF2bzl^-vF;~F`Eq-&mMAKFp{`=$f zhFVkO{h6sbbMr4A8m0r}l{23uGwwA#e#{GTb{M~7+{)n$*t#^M6LJWf(vkx~(%JiI zxFw!dkw40IS385MXPo=`Z)SJqWx7pip`1C5R6R~^jvN`A?JZpnO^pxWu@}b7tn(AM zVmR!U;L_Pj4DUJqDq)zJGm>E|))3oavu(wUzoh3iIuPID<%(#|RVdsfMJ$}Ya`R;|vV&SH<<+!gu9kC-#u~3a>kcx)+H-%^QYemx zUXbj{9Hmu1S#Xs2UDmsT*~1$l7~7gC!eg+(3=}Q!c%}Yzxad?%zvfcxR+ zpba?|OVd_jd!{m1y>2Iug;gHcWXyMMg*rnm{xm(zeXmBjv}eC8Q=ivP+>p)uX-DfN z_2k+8T8EI?;FC7e-$T|i8`vz;!un79_Lp+6^o}`Q{j-@qCs{{I_V${|3D)v!f3wML zK8N45N(y3Ra~}+2R~S%x>w7wANtO2I;B0nl{MIMS%NH{?8Q&6vrsI|FT;Z~24*u*l z#a?!!QVP3<5Yt&tXYh)^xFsHrn?`C{mYjF&ePntJcrsy zUf(A=|G}a@|7b~T8)Lw~(}7W2*i&2UcS6?JJG*ZDn4TV*nW5bfRgP&;=6mBUmT;~j z8=(evD^xT?E8+DVGJ`NG1 z7deKp-SX;FIR3Y{0(`pa|4rCQDStwLv9EtGtf8J*LF=`dQRcv$Bp+bzAlGwwTwMcftfcNNN>`rz?*H-r zg6&yIzI-J0c_krATFtkwN~g}&sbjM)c3hw{&^Ta8XDfc!A7G^$zJptHQ+<1W9(##0 zxCiNIO#c2e2ShmI!ytG6Acl1-JK2&Xo6=`PQb|{s)R^JB8eW@V|8Z`Ckuy@QFqvv_ z=*rEn$Bi-E2?AZbc7vSjz2n2)+^8$iT+)Ul>Wmm#MLOdeOEWkql866&-NxxfQ``@4 zYEmgXgPY(}p1rg&%kcl&T(okm{-5OxZ?2lUBiTHj6ulRod|(mao*QGr z)!x1zE*6}9_?_A=KJXW|@E7ZoyXg+oF3;+x(GH@7(SRCTPhZXBc-JcY8Rx8Qi-l)k z_Yv5xGtJb5GeI>4detlVN^(Vy-0S@^{B1-3S#g|xN*1}vd4|!L)JGYe6yqcIklAjq z1?A(PeMQDXW)=3S&l>W@Q6KJuxu$=7X6db{$67|scFW~2I#t-lmp7r&af#{*;w8#K zI5dk+uI+_a8ak@7hf|5-0~2ELg3~W@Xx7z4Y;rc%EpwyEbF`zo2{~!hni1tU98a$) z&4z5)3$*(apC?8PPFBwR&@5{BK+VxU{3;~z=?wx#nDmKCTriuNA8B6rojY84ZP=Tv zxV;1OB9aP6w?m2)=Viw3u|5^<^2&a8-_*?bVCjwzzS%l35VN$Oz1Po6fIE#Dh}QnG zTW2&(u)-p0d8?fg5N{C*mU29EZ0@ym>YeH5jEieiXjcDD*BF{e-ty>NIQX#QZh5B3 zlBHFV+T(HVSq)yW?Ch=fTmQ6Z?u(B)EpNj$u(+F&zgws-6R8QCl{q4ew35~%%GC{2 z@e`+poAIwGga0DYjGUJ|{!|;2^{)=fqV#_kG40qZ2j0MZeX0%hwJ)Rz*`@chSKslX zMeUj8-cz;qJX{TXlmGpUy;g^-A`UA3RTG8n%_B{6bf5M07O!dW`|V7tZM2-kkz89B zm#FZcXMFTBdG~BFY?t)jDAAe6|3=(v$QT&+Ld=c*oP2p0vuMZiDM#ijukAtan<1}0 zKS3+099>P$ktFgE;n%36wzAc4=ypBbNnPTVq|>mUpWb;N#I0x5pQSR)u)Ge5Sg39I z3t}m^xlH#oyu(?D!~4wm^6!;XzbmhAeJ#ACsJA;P(vHpH?IPk|+&F!A!n=8*6Y(nf z!2R-)gDf4vs);cAAqeQvXEziAvy#aU0 zr$%tvOEsvr0IbY@Z1?Y9*Y~#WE5WT+Cm3ZjS?2}a^@6VxR=<^vFn!O@<-%}3)7x&C zh_52HK>ZsOsETgQNS;DZXDAI2QhrAMZiNr>EB`I2-6j9mr_jNUzLpm(i#cf5JUhJ$ zXr5_ONa29|kt~;3_uBIFxEF^9UZjJ4A^~uZmT@^6I){ZjJ)QJ>bS^br5pjJKn~W(t zUVD))QiV+FZjFZV^Y<5WWR%WkAD-HO1>2&eG6k~-=?CrR2)7L&k-iG7h3gL=kUEN( zJ{Vk8sv@nGAlbqX=qeGTZZZN*n?O`Mlx!we5QHm&a!>wA6W@FPw^7d!L!k zxBwz*2lPHU3A)wSoikYb3g0)r;P8(uF&8$M=OZk&MIV71BY2G1BXoF z%BO6XLutg7E7O)u9rKu`)AX=UTSyuUuA#h_ms}TqwWfQVv7DMQA1{e+|0J1Xwn7ih zHe|(+aT~IR1rZU6e7^qH?B02 z8P4C7l#9R8s1^-c4`Yw#7DTtFeeu2cU}AFt{^ZFm{Jwvmv z>?dFOxVhbs5*s_)N^3nRJU(t_%{iTq_c)1=RXvJ0dpK@T6@)@165!m8aaN6SR8L9o zBae@74S}m8CAD6k2jjAb58`JzBlsqsR2)8Z9}fGoc1ZNZ4k5gu-SUpB6gk-cmxau}h$Oh#7nef!J6F1F4z^q6g& zMYeA*LbiB3RF&-{UN&m~?6k@L?5J{E@aWbdCiHA`J1z9^*5Sd732e-F=CNVO}z9)5edw2yMYerCQoNfI4dNSDi+eRgl zK+uyZ#GKzo$Z~eb=9rhhL-NRbe3nB0mcuGXo)?!1K6)SE`zA;JwhJq@d%@GtQMQFs;6t2&`VM)AjY=T9ljk zBvLok!mn9{Mk3t2Z;zj)FGrRmuTVBrBZ!HqGa@3QRZ>jKkfW|{aPgMQOu(Qg+=Op zJaMCUFyfhqo7-KMw8f0L4Sd?4;QiWe-ottFDQMU`Vcu$pS?VB^a$}k_{Z%`4%53ae zuf~o3>=j|@{?&VhE4*(<&XJM*-n$V?HwTv4pRbo9FIbrV^O7u=4oup=uZ>^*S%Uw3 z{qM*B8xu0J{{_VVR>S`?#Q)MGSOx#TR1nv2@t=jUh7h2@J^;s|Mo`g&&l;Th1O@TL zGfUH8g*%1S2L)n8rv%C5G94T;^iS2o+bxdPbJ4Ds!d@As77i6;a8{lerLu>8eYuJF z^yHU3b+%3xCU|CNG9&aOc6*%VdGC z|EZ-f$L_>;JKRw8J#BKx7$)o~hg&!)V$bYNzHIek^e+SP9P>73*A8wzu0K6#{ z*OM%>V-ye)GBBG-_Brgo*Qcd@qmZlDxm}!-#&;MW>aB{y7zA0FW*DupRuL6&ias&O!CdYctbe3Z}qoXCFe+ueo~59 z6%PS(W}e7aZOAh`;mjdVed9Ept@GTA`uEhAzZ-ILa+=lSvX+9wB`@Z#Fm@k0&YkeK z3pA*Z4N|+o(e1+C&|8>ldHN9a(eF2;2jeC}#@C%i_F~=1|W`Bof zj_fuD1YoknU!SQA1uuc1fe5N6Womt8>~Q~BGh{E!tD|8fe7m=^voqa--nAi#?7QjZ zslWc*E7{94Yx=ItuP<`<0;Ctu`m2i$lAA7*^(*}|O#nIGL=YTLLd+YL0_nr&NFjY$ z=U*<}W2OA(y>6Gg-T$t*k)u(Z$VM(oNp?Hx-&ykNVr$%!P{$_E&(CKy zcZtOfA`plo?Hj!jR4gthl$shEQtbjWwTBEd^~mf!6<;W}e%vObs3_nw_4itL{ih4N zyI!2#Mz!1sl+*Fyz64YELzt=A35X zc8oPOHGNM}Wlx`=mE@@lEa+9~!|N}Z`6`2@g+mr%SA<=@{M{~)HMk5?PFB`8=$}jd zQ1lQ(aPsotjhnBTa2DxD)b%_D%Q|jePsnikx#f(K_j`)hceDC!LD=cl@2Pu3)38|G z6)%aD;86eZdI~Q`2T9V{SpI{f)qt@d1L=I{FAJ*IRExyz_awUcYLhRu2|N$GYri0t z*{nQW&^plc>|S+BFKng`^0?PNz!ajC*}@QZLEdfoz%w8~;xUC)MW9s9VCz)(>v^28 zn%Ib77wm|_hISs^aDNjI$!>RTHBa%gH5sg2eS{|Px792^plH9hwUPE=T)4mQC{_Z; z!T%bwv(QW1Pdu5j;{?kq??J^;iyeIEDsszs$*U|lR#ld^dnvmmB>zSPEO&VNQ9zioZ_4LXpB=((_q_$l}LF7{dIHBnk5-B$ z&v>uA_7X}jpGLUG)x^y!*W-Al$(ZB2xw{h~Cwu)l38IIdjCPZo#5xI53I>Bo$pKl4 zkB`szmH}+IsKzPlIR|#}hju`aMEdihox`B{Bcyk%d!~$nJoR&kzULCuX@(epBf<%& z7^VCvnX-*#gFOZj3WaRh(3T`CHR=oIX2~ud@h=EUOkhw+9cI6VfZT%~`K zklxX+!=O`}G#k2|(Ysfyr>o|cKJpRT;gMl_M_Z5`iKRu~(9j8@E4|X>y3f@;^~|o@ zqMLAs42OE$^aH`xe!n7cP%U;jH%3Z>)_O2{PA#XeiW^yq$r5^8 zwX1@wr=0<>1R>K%Bcj#In&wfs{_VZzZXG_hXi__B5bSaZb-`p8B z_X5ir`FYn}U0;Lj{0Ay+gY(W4XYpOl;M0?5-9B`=2Ptv8vS5Yl%1_dU-K}Zt`%{n@4ACS zdde0j7VvRX_GT7LB6%~*sb{(yxR!~<5H_)>=W<*heqUADT9R(Pmy^`(zusTXGm!#0 z-8n=LEAsjp@wt5%I}tkHpKF{`A9D)?>A2r4Z_=I_;r^-;KiL+mKF|vewDdq_Ro6@<6hK7|ap*W1>ak z%Ik`CLzH?kw)f;Y)J9h?QI;#zHFK^EO{lPZJ^5zqWx;_RSK+gzoyL*6d!8bhi_EqV zrQUp0S2zsu5#!T6G=O{dn6<^>EW08VL3*p{Ga#1*Yf=uLg=VH1h|l1CprTek7AZ4O zzSlG{NB-W+kMui*y<6BE`@DfG*|zt$gepSZJkagPr_Ib~xHQT*i{P^W;q06j zlfl3-#%~ub-lX^zwQRZ;(oUxw>4U;ngEGB_YHicEOnxjssf5dZ&QTpZs$K8S$SEpU z4tG|aQ5{=+W%agRe8b7KuFp>jVeK(hu$8+(ZcRIZtk5%)XV-@6OAZExW2BVJ$!XUm zCdE~@e5!cVN(;Vo1P4Lkg_++Y?D*4GvlYf3^H(~e%@Z!a2a#O8;5AM3_Wx;X+!gGk zqtk#8&pj?jK=3#ZYW4gFiJ(H3XiNbQdAB>4q};=(JYoKcvvptM`lk=>j5&(h z!q?ihUfR9y7gelL>?TzWCC$yL?Khp{FWyJ|(R%TB|zipmQwnfsWLZNA&gcVMv z3xfNwR{n_D@K5K_yRuUH3w3G`L2pC!%&N+D7#u>DFe6q_E`_1pLP$(-IME>w`mELc zzINh98|H$uhPT=os&~zsrUP#I3E*$BICcsJkY(PUB4*tl+`4tk4w5QJAFJdrgRh0} zc%&#gB4KL9*hX&+=5UMK-BlOlwSJ+3@Hw_S4MH1E)EC|!DdLHux3O&kJZL}Orkhyd z#e;)`$_<-+PsOKWD}*%Sr{NGY_V^l2tJ--n9p9FhZw|t{=Bu_@sX*Vf>|ZYvBYIh{ zU7&WY2DBP2o6)OJ9fWVgq?GBPuk7fM^Z(5xi z4%xYbeuBp}`EIJpLYlwH11NFiC#7#@u^|@MfPi~BdhVxtSC%4ZD1VrPPi*#lT|hwj zWv4X-94*zX_-9{`&ozw@pip=>e^5?d=LH?_kG=Z(?t8OJgNXt}na4vCy}=@z^52_U zkJKNj>4zSM0Hln@WiyO!y%0w(c1ehCF85b`AqFr0fp1=;zWN}p&;Zstn0>3|@_D4L z8_+z{71|97-cn}~geb}d{|?vabLFCFZ|imIb_e|!!kK{IzXM`Vog?YV<%U?L`+^h- zr4{27A_QaaagkJ;MUDrR2*lXY1V+Imx^^=~Qu{e}Y@FR1dtcmvhXw(uB! zK0dCM_FK`Ned6tWgP0u;O0Hntu^h2D-CwBfo3*9K8@LUEy|7NeCz|dmfB@@u#L7<4 z2!fGIyDo!l4avWzGW6tVPwz1$K*=eoblfQ1e>=?3sK}4m*)A34jPc!l{6ePVDPV*G zot2*iwcmZdcy-JhdUSGXj0;!CjvSq|h{ffP%<>qVSHB$g3fUWGV6C&^KVxiiJC&TG z9|>Db`f1)80zGm}X_8<7fp&a6Wnw2}X_V^Y?*7SivzK_H3T8RXrE;8h+`CS_MKtBM zbtdIY$Yec|8NglDKwJT=5=WWHHepP2fi#Oq;|G|qa@>S4;l=n2w1bVQ`2Z5bE;!Y9 zUJAEZ(0C6In#d4!7oo^^o2sdFhiI7RG%4`nI%`a~ijRFuW-y@3+qLu>HT(_0HYnw) z{Eve028c$JBA(uKPicplJr{{Mn+T_+X?Pha6Ya-pVl+7-_~{qr6|8U}ezVeBJ=_Al zLL_AnP%G8WZ#+KwySpc3zHw2-bsWXT$3y0J+hlzuvbZ`qGizOO$j2aNi6;OuFLmu2 zL07qa$nbQ8^>*|zf>cI8Nd@kg|K4#jN)@4}NVfb@9ZKvcmEBgTZ1NPm@>k)lCz;>C zLE4?m%gY(7WlLPQf(~190?lin1PtWFILXZKW@%tc45nTvL|XwpclVpH`r&K@ORaj+ zD-7i`5R49qD3^7KQF&3PhD;xci3PpA$yAd!T$Sr7qkNNIHX5z?aXpFC2T_jjq#^>! z)YP;*h2m^KPIfRpf?7XGymW7LTV=$gKedf#1aJEDzS1RTk5we-5`Osg(#y zvOcIE96CH~EJ}R(VQ^W}y+t`ik8->mJpKJ)+VF0>a52{56Ql;S96bMnI5+o1w^`Jk zQFK+yR&RMI|5@SLw+B(lK9;GYEzt2%KrRjQz3#Qv!5zwxr1%FdGrY}hdArSAv&8(c zc<3&%@{R%=JvFEbOHQHoVSGmLY3ke3pIDy*43Ph#pIpdqnClEt9bWOT?tYzoILGTGip|L-fc9@CA}_MPjb1_QrrIvdPVg! zj^h$nm?D;Djx;$2;TSAyZMuS~PUeUpxX@iJ3lXVVu2xAZkjm2FtiK6?yz4#;%FcB5 zhSqCUln2Max50tg!|OhahdaxYD46Nu#e#XU!b-A@y#Q5WO`L*x=JQ3jez7=i$uAm( zrm9HDdNc(3rBS2($hYeeBnoMW0HX@`C^)-$G`Ex*=cEXSo-j- zB71+hI?W2<^wir&xde@VOp%|cb0>TGA#ZBwTrRHH+QaVH1&2KT-A*-$k{pK@Wl#(* znc?CdD@Rtcg8mwPxBQ#Nl1bRtyS~*`1FJft#!1a)m5Jd_fHBZ!{S~!KN#`;8OnEZ1s;2J8bJnKLe?wM%n1AhjS&Z}L%z6~7!gQgQ?RBcIq@8~275in>Eaopc&2A=hZQlE&44 zAbBApTOdz5n81?syVtBt49KU-ltZSj7(b?Td;(1x;9Au$yVRntx=^~?3`vIe5YnPj zjem?cIA*oxmqSfiWP*B5VpRKakLP2v0<~KTm&b9tMkbzlS){+3`}{0)K?NyYlPY%{ z{V95q=+Rh#>Qj3WSf!G#*Oj@mv(qBW<**dPOCbAK!Z)2*tT+53b9Q|pDYXS-> zIkzsn+K!qigTXI6OM%+~J_RkWYO{@c2fD!k$cb~x*Sv=|m-g!_;OH#G(F@&CIf@^< zjisxLn3WZWjYm4(=Fm5)b5(2A54jd~qB`V2j;N5FDD`};Wn&^EEj{g**tA*Q{&*)l zz8Ysbvx6LX)!?n8{sp3aZv%N?_SnJTnLqg&sNJ4};;TMQg`BgkivSgDl-|9h{CP13$qZmj;3jsLUYrZyV{Ej-`zj<>5uVN@)Bnr+iW*g z!lXAnA(#8*m?+vygzt`cOB0Ps14gxmS`8LomI%>0`Uiu9+TU_;{<%Lv=8^0-<=fx8 zG>Y%1+Dsp^@N3E9x@I%{Wi=OFC$~*`h>tKn`k0*pV;6YYbj1%@|99-r@f0<^WC6ah z+g7y}W{3d8c?rQ!mQy7#0`XSoF>*4iDzh(fmg_L8+%_aBarWN5XB6U#mlDD)MsB|R z!^F9NObIJe{at4otkd_>P~XncNZ;l12R0Q4CfA{WVuF~scyDty7iSTqz7sttYynx6 zsoz6?iCZ|oFVBQK0C-0qq3kgHw|l}Mztj%LV9i9i8$*)!d{iEO2%uO(%tf2cIU)5& zzRu}@k5kk(?p)|_XRIg}sUJ*@a6<4{&|G-68_=v{Y1X-;gf5!lPq}4(Z?E}j(;-RE zvJoUc5&u2u+t`7fqu5EuW68LDfP+#_l+p#eS_Uy`g-YBj=eK=qZD7S*T&=Ao=(JdM zE(e_y5Mv_S&*OO*5Zl`&<>#&8a!=4d)6DjtevVoAQufXSv;*N5C`X}Ek0_5UTAhT! zMXptzs-XqrcQ)z`ey@p56$VgF-NMjv%jHX226tQGJeWT95*r&`k!w$P615dM1O7}G z7Jj;YuExNt3chP3d<4CB0ErV3s8Glp~MGVi|@)bp2D7Z(-~*En~qUs7Nuv> zUul2uPH`u;26y|GK~}5Ye)JqjyaoxveD^jL<*=X!h2aM0MM6V$)jrUvgiFTV2f4G# zE*7+Oa_s5)zVB;-*s1zy`1R#4?p{cCYFjnC<#?aZU8UC0TS`xFxK z^&dj#&e_QeM4p(&s5swJ7rjl(gPCRj!~AFQ$RiT*a7LfCa@wGxY+EApK?cPpkrW%p zTgqzovM;SAwl`p=fU|O@w9k8;^!IA8M)iB@;tB)6&M%rLoN*vqbFwx|0zwG2p7ufAgvpGJ!No{_K56z|IW>Pl zsp82_NM+x?^xJnS^_6%h-Fnw#(7=3%NJE;9o&aX&A$PW%Ino9IH9>XHMZZ>uiDWcv zijbW7&qZ>XxA`cv^tb}+D-!wt{6`9fZO7U)s0Vp}t_0sg-5~I$!zX===I_m4L-LyZN*PZx=&vqU zlBNQ!QTwb`n9G)McR{2^sPtlpl!q#SuG=*2dN z4`8zrLP=2gb-hbw$Wkko?_;B+DA0|@S^1xxHU}O2md|@YgZzHJzetA^kR;LJ4S&kqG(NokKRGOveUwx!PL*D*-$y(^Kx~@bPCHeNX5=O)d>9ls7 zK-bdR6!M`cvS)M@vSEjW8mlc5;ii{;;``LPlai9q?g@9uo#}IUZbl2^`q7wZ6cWO` zVnP7Jn$-K$8Rz1>a)V}WRsM(9_~jLxekhDAYn81PFXM@GJri8pi<_jfOX8YE+Y7{47>?V3e$e*O%3i?R zP-NSyhS;-gpF(R@hVfTf-{?xD<^!iid_I{8?5m}c<@DPI8VuAt9MoapzmZ`o@%D|M znzPP$Ogr!Qo1`COfLO`|Ji4>ZgO?|TIuU+ZV3go$xDUHL`DV`3QiI^IWsUB6_d=7m zNo1?*KG|C?w5ih0a261(CjI?!biLK+WF2jxTkU*S^{@=iU&5KL6VJ$>18KQ4l? z;+@|;xms%H5 zMrE=e4AfW^(uvHwPm&D?!eL9OUF^vkdw5?>ngQS2TgG3OwtXxjgEWwfv4J?58#nFq z*i@{=7>jH^hNkp8sbi0Y#-(LsmIQwP<%~-WX+49;tP}u2X-hO41^AXET=vI z=_{l*SO|KCg32|4aVg1h)47$bbI3zY+kkVcY9EX-B>j zjk6Smjsr$1#WVh!wa|4O@{T7NKlv8T3aZ8PT>)C+?Y*4(SN_b0UTen}JS%ZWK{EWc zvEQnJ5c|v-XWQx9oOH4G>S{*76O^NX>X(VgmykcwzgbR#fe8EN#Y_UK1Hu~#OT$^T z#>9iAs!p>YPpw>xRe3n>PAu>oZ3b#7;EVdwj3;J`;BznUn6%y51PyNEqNNWj>*=qd z`?n96wV{zZ`szQEl4!dWYrFiU_>w7n8J~evRQLsKZ_($qc7qy#j;B=B^hd$)L&h?r zFEY&ZK#9I!Pv}o&dxs7=FmI_oE_)Juv z7cGuiHd7)bAJtGI_hd@y;#lxt3i=Adj*q@%i8N5A#fr^{tQSFy+8doX!>x4 zOqxxAvWQ-__yuac_B2d3{W*}ZE4p8TzNiN`hm3}s>KXWsP8$OG6)XPrQ%fnR_@ z|0r&%Uk?rs#kt$=$iz9rnaZ^MEouk2wDlAU8HdZPt!K*Wg&e6itxQL4Q*9i=zRF3; z${K`->vyq!C-r$l`Iiqo1y$JZZLPgcab)2$DT0b7U!Bc*3j(%KVr=G<(CE+Fqry50-(zxy0b zR2biz5~(xfLF#0NR2eSBC7}>k;q=6?)s5!~mgI$KyKEU+m_TNK(cf0DxBF~H;2=1F zG=@cQNpNRX_ov+kC@;0A=OpiDbSIx#nrg8g0bfwv_PXP$J;Cu+6%6m;81<5H%5h+yiKp3d%e{q z5Hq#O3$MT>hgs;+?s7#aeUbqkb+|=&%=M)m|D*NQI&_M-O&umU7LJ4g;Ss)3>X1=a zUgp9045X6Aq>peoywrle!;5=k778y1*$~XQOUv#6cUmcI_NFcd-Jr-E@F>N z$46h^RfgO=14MLVL&J|geDB{|bFWtVLgPWST;{y`rA+|6(~5qn_4t+c_}6EcjJ^xW zC6@Q*C3cq>b)iCl!yTFfk-@m=|T5QGdS6e|WyOHZUwCaFX zhvBxfD~>BEC$3WIkzx*7WO;>{H$57^Y82<+=xz=sA;&&E-6NKsp4cOX?32rwXI8~D zW*d~j;NL!zryeop4y`gQ@VENAZcE#TF<&63EQm*Unl&1?M+#ot43x-nVNU}+;cL0_ z0k&{e8ZLfvd!R<9kVmhMeOA9H|2|N?$&a2I8ILr}Dq?f>wPw^lGNliX^&84Pk}5H~ zl|fe@6ewVB)|lKK&q8bPIEeF2U-Sqn@gd^^x)Geq(;8e_x9b1UxaHG3KnJMV;E7J$ zoqyaIsw_4}H~C|Ir+@+pp|wUKZkaJ5Zfo+IPmSGVSz4#DmcOu{usXmp1;nlj+&b5w zXuUQl;Rm;08JazT$>fY9GamA5e+u}W(zo9$76+)}zDhOr66?1Y#}rNY&FRA*F6xW` zL9Ud84Rk{l@Ru!*vounuV*Au4Uj(|V%|zE_vg_!ls2L$lv3;kceL=(|I2&btYEan0 zfJ$ZO*v=Y4BNjK$pVWiCWlZ`#r^6nnmiW}HHAK2%e$)RC{crPeW>M!cERF3QMMQh8 zvd1^?>ALQ}Q`~(dvc_mwfC!!HJIxdMMJ9l>4@32f|7iIwrKvm3YgoVtF#`OceBsMb zCKZYl*jm}ww0SXA@(ch?SE8<_EL`R0`8@ly%o_&vc3MUyy@64f!RVj4XtW`(zwcl6 zTvW*am6pltS{>k7-Q+lD0(oM`GG7MMF_JeKFXJ3|^N`oa=x}r5>OO?OmZJTA(MPo^ z2Sy++_0j7e&RxP2Q}ikBgjZn;9VdAx+IP3NtG~BV0T<#9x~|m~I_{ZsXmbobjPCEX z7J~S3I6NqUroi7tGk%N?Qs>Kh@&uhH#}hZNnnVx$SwKKazrbDbL$}l*^<*ZE-&_OU zz&9EfA%83LM?DfD@vyv%04SosXp}b zAuErfj+^b{z`{0b2}-AoPx-RQ+w{Qc%yb<&(X^@CPn5%r`- zjEnRZ-+NCI+bi6)ror!1`>!}`Q z82?!ymtK8PrDjn~;HfuC5z+!hwkYEbSHSyc2^Z8w9`feX{@t$CIB)S?kzv2IA}2eW zi;BmFUFJ_t1mDvSBe(8~P${NsENfh?jH>^?=H^(TMm-zbor<17p>JNcea|K(h+3funa9A#^QST-wvTtKx;mIS4`2jW?GjqddrSE}Afdu|uKx<5)>LDj04L=WKE0iqZXw{`q8XwHzLsWuglFKt>ieqFrjyeLr#`aWk7wWjF}Vcp|Fh;`9_1ciILa6OTTb;U@QU$jDQ7bfb3Ro%n2c(T`gwi8nIEPWI2jpAV&SQb} zgf0k`$-xB4~jby7myE!L41HEO+JSwo{V@y z*OxX+xYNHs1rQI+059q>Pn;F-MgmV(QIUgcG4}fC!t?!RzMEHpe(#h<2JlsW)up|_ z9WfnIZUNL%{_2lg)tj*PC<~D|}WqXlU2A?r*m7$!mVgFbJ;+ zxa;Z;XLgk^=$&VJlzhf}!86K^#TaBTLF}^%?s#b;A*6NisXcKrLljJg)A42`+{eu_ zsriML^nt6m_OWA36I|Aa7-AdHY-r-R zsQ5Sf2}j#L}GQ$?Az@|`WFUZfJ*UwI%bFb^8TmfxT3V)hPWZIV6~X-QUx0T>$dr7W@wAR&LIiZ< zT)0@*+E>jvrc{8sP6}(m#Hi8VCz>O#6byu{P1M-ksoSbPa-S4+WF*vrW$bM}<&3)W zz==?{Ts{@lrRS4bmu_Pe`!K8RQwBT7Bc#8*DqWIDw|gy+r793nWqHhZKF7nRccco> zuavC?mLxSYjCJMYy83q zh!9YG!17|^x*U^0!VjRP5r2eB<7xiAjPG44;rTA!YhQYt2t^Ltih5x9)EB32UQh78 z#aDKh)y##u05rGSCzhC?7r;M(=K9MFhpbzC_7ULI%&;3)$Yv0&kFHOKiRdrvWNAb+I8p(_Hb8YQd#=Cs0wlGS+IFNWdTD<; z7e~xJ8Yw&F4NTA{iWL%$()Ro58$&7D4-&5sr8IHdf8DMaCydT?`A>ww`ei{YRk1$p zJzY6@N{|!vVc3K z^I~9&!7o3pCa5c6Vl@GHkQ~lx9O1u!5%VfjUl=Zl3E&80Py_6RCjE4b@i>i=qpOu@PZl;yd(gJXK(DyVnZJ;6?~MuUHD`5_&9A3VCzOg#2%DHVH7>12$Z)7h!Xl6?# z09TfNB2O*M#B?0$KPf3^GB{4y69(p3fHNJ3+XX26j}Nx`TDp<2e)o^Y9G_rUXn>QK z56~2Q!RD(P-voN`=2;rg99q?+o63IxUfu_-5`410vt z-J!lVCSYo>whL5j#}tVyLxHJGqUk@|4HQdT&DF48%dUBS+lRm`RB>?upibcAv8$Pw zJXePx01MpFBCj{?UsIXmwJvQSaR7!%B1^;OoDKDbl`;*iK#cJv5@^Ul(ZaFbI7|oP z??rime)1nqdzC=S&1BFrP0llFJVTW(_eTI5$K4nhFKz=TJ2ty%43ReSB>vj)-TTX@M zU7oT`&_S+nFMPWx5OA}7BzM3Rlnv03Vw_`Yc|c5*2FEy0((5eOrK|%NncBM!z!}QlAa%s79esd)Lzbv&SdgVy)wq*nfAAcTO#aG%DL%pLM*!-lcjyep#VC}l0gcK)M7Mlz&K8>}BUF;nsMkkeyv7`i~l zD*eGih~@v;@?RZqp2mu)he>{B_I-DLbFsOfzrT53IB@$#ezePmJCRDumoGo!Y~2Fd z4^j=9+5qxVd6UYr^@B~w{3kSoSg({v! z=NSrQjz9JT%HMh05DngKa#kF;Rp{;BX{nq``GEpq%8*?s)(Y0q$Q>0j=A!`2HNYhO+PR1}oqWss#)X*KAM) zPn~7|&9^=Om<{N35tozTO-wfo*S+pajaksW2_X_Y-nc_L(%O|nNuC@ac%W@TnXl)bk|LiQ$mlNGZ0 zoJX(s`}6r9zPIn~_ImyD?9uhO9_PBBbMEJU&eiJ&YKkO;41`!%SR~3ya%e0p+{?)S z=kei}F?)PVEUe2|%5rx!-4lP0Kd(tN^FBKp;K2J|9}5qvp|Vab~iSgvbrkn ztS?uC>6E?kj-8a)2V6^B!*i}@3)_NIiVfj@LB1O}lLsBru>gULSbDNASW@^Bc)$7j z79US}H^_uEha!J~5~k3>^$PeyeTm?(2Fr^x z)31-`D1`^$#O1GGEVfD6NX>L~k`0^I`&4`6|<24&glW9nNzJjd#r0} zHFOPrv-*JY{PcH`tbJ=9c?#vs)IfW|h}i$|c)7b?2Kgx{?d{=pDP9@G5ZqSh zq!jmq&UB=F1WNKX;7@z~yn;8$P71xBG53mcBa5b(Q=UGS{@$f=dvdD&p)&fTnG8V$ z8;K4>1udsPDMhNn2gZH(rOWVl(P&=wV-?w-@YPnYPF>mIZ=a-)PA&TT{0KkUe*g8w zS9l2X!bW_WW!+}pY5j7&39_MvTT{A?(!)b-i+WUD?Mj#{Gpx?aIZQq{mnczkB(1p8 zc&AsL$>GWD!9=xv>VQYb5_cUQ)v$3<?``%kr@@G>X%T%%qS%i8!ShvdPU^r1O)+`Jm;17YtH?on{wla zp9Z1}smjR$Ubx?HTXe!bI)u;2IQ)a%C|$y_<}~elN~VNqyH1Vr1no@9sgukr*A*NqEIE=F}kmq=>pP{C{i zJVfNmA${Idp%IpMnTLKP#O^xIA2hXIGOgQRxA?nBz~Uaov~faR?{WNb<(!1GD9#2c zlMH4h8ZVfw*#dj>w43#?+R4^$AhfF09N%@!-Eoikq1_q1k89T~wTcL5I2NTZhb%#4 zhKDJmp>l{Sk3E@ygmVPuew`<8DE}H;67#GCdwZuJd=I6Zef~-Dx`qU_YwgJX+V`a3&3zl1~&gXrf zUTc=zpp&iR&?}QJ&b}e9XA^k;WP82n%*R-lo3?0; zk+WZ`hGVUfv+ZY#q+jzOFl0|u;9OC5*e8EbccLaMP{Y?DxpAqzAm&efx=NPD8>XHH z0x9ZyxH(O}b`KKCt|;f=Xy0bzsyS#_PL+-NRrV!zBCoABrOMJ(+#*Tn%M+i|%fGSO z%7^Y^oNps2)9Gkv@$KxsgLN&;cJ6EpW!#BYe0(&jo#@!}bHCNDdD?>DD0xFp}9RrFpdp z1IHp#p6U7$&9+0nfpLCcCCD&@zQu=4KQr#H~-+1v5 z=e_&7$}AU6C??}(=pve5xz$ZPlDJy+R5_pz0s`(ysIooLHI%Fc6ASP~52)$H(1o9H@r!X2g1~a&ONR66d)O)8fT)H z`g@QiqsS#jv43eZ9U#SZ0WoUZBhtGU08+N1i&nN_XT3hV>`9kA<(!u2PQ(%)VA|MD zt0UM3@}3zxEs?WxF!eQR(Grs}%|>MO6*w8NI=?wpJ4fS>Ajuf}igI-Ed!^BeOtk&p z_qtD`>&!nBH3A(@zkCX$e1@C$C?+!Fkty=jjewcIpE>m%o)KhSVl)~Xe>GBAc3Xt< z-hdE|&OeVvAvQ9riB;-+Atd^7f4KVl&6?W3*AHsPb(v4+L%nv#x&p$`jue~Bm*b_r zVl-`#FZq*zt4{~#Sk){EzDbVy{$ac>EjFyo@|iXh700M520#0+VURNVS5brHZ7HzP z#admd5+|XzBt1_}7z!TqS^ZrP@Hzg|mzo}RiNK4_oekigBi~bl#$@>G5Z(pHGhNM* zu+1&?$u_Fx%+b0OM5)qCj`-z#-yMe~W1FSRSS|N$7s#G5s%s?W|IK1exH1$ypWG!c zn7DaExSyMD8A`jWJ8&h?7wO(||=+=T!Q zOq;+#Sh47ud)e!NGK3(IC!S`khY)qsi<;c!?UIq+t>gesZc) zg~GVKW)Us&%lFw6tJ`~J6a?}bhEo=d~mtJiD@ zg-p}MhHo-dh&i8E&S7u$l)R=q5RETIC|4-TIhi!yjw zr3PyenyxJ6)H&V}ot+U|#e5u&(Z)EFyEuQwWE3$d$_0hyb zK?dxVMD+6l1f?ey0KQknOu2QuU%IcSPTj+7L5c4c5%5*yX*_^5E&+%gUqSs9QOl%4U1i#^y`pSdvNf%=feQgH9% zb+Rh=AP!GDu3&5m=B^&3{b9~4rShy=N^x(~a^iF841COJmStW)hN==0l`kj${X{nf z#)R0tz_5$aF$(~DE~)KiaLoy#V+lZd$ZMX<7-!2eb+6A%`XcY13>|(#Nz2cEA94|V zd{>C+Yws-x2QPvkU^4xB-OvbOHO8Q)IdV2ZrX?6{A{(-1^9O7w8Z_f8qugs(@mvQ( zx-K;}2YCfG7HaF}i5kCCE$zA2NFVy*2W>sgJ=$Lz4}OL1J^`9Xg$s#uxgn1Y1D4tT zV;CC#O6g+=!H&jO&65N|-hXFzv1?uzGt)=xMMlR67MgQ-dpuN2Y5BurS&B+K@8|~0 zVKoHJ)0Z>$jpGQ?Eg{ABp5|UfmTVb)+1!HltFQ{3L}*f*xq=-q9^$vUk14V9ZV2+_ ze8k-$W=5x{E$>o+@&synWk8C;TVEvtUjGm<>r(VoUIToExd z$*-KF*Yh+iIwRN%I}UMNMZI_eDaqFp?h`XZiL{2l+DlYf=1y5oQQ%xYIEF|-4447e zs{JK#g-Z(SS#{mej7cy<5m#A$n6=~a)2W$mRyHmw#DwJxTxH`-w6_SbW)(&MB!%A( z&VHwHFQIln$ZPs@4>8B_b$cOFjwsC_BwkKd0cRld6(3sQlWMcH&~Lhsh1D(tA3+Wu zkDh#-+B)6x)E z8GSnix08?w=R>Y=$DXusWSu@lmTw*i+e5uy}#kwq`|c zJU6>H)=Gxs!e*CirH*EvhZyQqRFPk%>RcKV!=Y>pz9B9) z$Ie2y!u-N#QRUqyf{|1#W#ex(u91ij$_poMnoj*eUiS;&H}I-ePRMBbj}z+FTE$@Z zjS{lO#KG@kS)~DCJ(I2>28C=~H~u}wL`C+2VCYxWlcV@g6Gf}kP)kI-UR=LL`j1FN zYe>ZEDCfKpYiI`Q^hLM7>G4(DYQ|!#ckwzm^Lc>1JY&bKy~1dcuHTM{GPRmwY$$=e zbm*wNel{mJ8g#JE;VSJpCy$`8I%R|srP3dW5^~Vh^fSLaW!Y6-h_yVS}`c%WDqLQ{H*Dq!{kw|Ku zBEaiROwyPZDlWGEV*znYq=qEXy5@`p%D^6Z>qt0MV|#T@#N$o1zXsDZ36WBRU+PqD ziIe@R-v;g^Ay8%fcA(12f<$q&;O}jC<9F$1FI7Hr{oC49vH9~avMRn@DeqNf+-V*$ zWn~P$6waITOy@q7^E4?=NCjpp9C`Ow&4xW)2tPe^`1_kA>74I$LtjHZlD%I|gAv$t z&;2|P+^M}yg2~p<{N2=#t$Q_(Usyn59+#23N5f`y*^7^Zi))l~{p|)3)47nolKRug z3#MPBDQ0QIX@V%FD#hcc{WtKR5d(Db+ko_7o(S3-LfYGyl!||CB6$?a*7T^ifL3a6 zJ`22BjC5aMQwj2l5IMk7RUhtgpx_t52!Tv`01twYQ&0pJ|Vl#~d`#nuaR6J*| z4j}%Yr={`3NWj-v6K0a#!dQov=Y?MvjZgveTt5gx`15<>W1`Jhz@L{NREq1ObH%AE zB%q3%*LHRIcB|ZweFO-y#ezCQD9Uj+7BSYr`AcjARrS~k0i@X7eY#Jp$9m_AjWHk5 z_TQ%O9Us(&14Fxsv(LJ@+aSia9N``trP)q{L^AcFgFwS7lvln6S!d!%n@wk!^{r`| z55fQz6cw{ftmfxOT+9+IOaQN_riA^$+Syj~nlFQ)M?U*DnFfcK`D^G}oMntDHwOVb z%f?8I`#g9NiE%@L5aW{GOXNi|<}DF2rPsfeyGfvkA^leUG2@XCW~TcqXIWyR(<4To zJw+4QmIqj%7_eVU-opx)-bDj;Hn1niAr>q={%@JxH>kP+beE)ZAW&h1 zn#*c1RD6)j2I9$Z)!)!>Jnh=-DGyIAZFUpeRkGf8Jqt03Cg!d#h8(m>~0;!BZ2@p8_%_wn1~ zgF$uE-(Kt?koMFpXKMH41QP|wj?eEu0^sbZ)GpAwf?+?ZuF72Tl$HO zl}cZK+=8IdFD8gtHyUaixjiX znFyawn*yiR5yoM`t&$+`(DvZ!o)fc1wd`c0d~!D<&6%U)uWdg=&L4h9nP zlhTkGSq-XneZAo9>PYJbv;6g`lG#T{h9H=tNY0poVBO3~@RShPz?)gU_tK&{2c$U{ zA{a;#X@+8B#RIjb?FU_byYJC<<+U zy{`y$qrj9+!yd9#BV^H6V}6~$sL@>R)y+ZNb2Hkdf}rvIPwk=w^$k}ES3?oJmPTJ7 z@m*NqS{}Crh#AZ7>viv5FYR$;OI6^hqAfSBVv1REJDSU?o5pH|avT-@nm^xEtY1jj zlV$qPw|)LeD6U`m%~!G@QzA_ zrh;~f1UySqs-3_sEVGa`K1harcoS44srp!-gK!HZa^7(`zcdSoQIP@%4{&4>5Qe~+ zD>_d5y+ z%CJ_(-NRDn72BCF^0HjCjAxL1p0`OTsrzE5k9L35Erp2bhC3|>~bxD-RwxoExj>)9r>##zN3C>mBe8V!{0P@;hx;~|&0?Ua_#pPv-J%Qz8 z0{8t`{=hKwAN46f8ykBl7)*tcz$;v-YDM3}ReZ0;tWP&z9Bc>7?uS$WiiwAInMAle4@! z{g}!u(%HnmQQ$DHUGrG{Yku_GXF+xoEFFG3J_KrnOfqOkC{c1U`uu#LMloHRVRp?6 zO}n7&ob3IAKjm;SYk$)sd5+R(xTCLYJ=-G?%(B>JZSfV4DbYtkyyM=kXXxQ?@B4y# zBxDFFrEV|^B4y>GU)fu^p55Eqpv}o_N|Fa8=_Dmy$)dVe^zi7=EoC-b`j~FxY>rZ* zvieZI<V{-za zHc@MJPE@~#8l^x5%%7iSzyDp$(W~%3^LF1Q7g&=5x7F-S#)Tz+N~P8@5O^K=EsD8L zysDwPZ&1NJOb@0Ug&2`dG0F+NfgZf7MERcAn%(zz9sPUk8}AqYZYGCIbmmE)QA>O5 z2Xs5&KOOw}aH6QDJP#FT;B(Y;ycLwb{PO6Qz=eO}SZQwE#&_5nk-Z*}v6O?^!k?0* ze9mu-Uz{`=PVAm4j+|zNZ??A>5;9r*Kq$;OPVmBd}%oQXGI-<*D&6!wU{mEmAevv#SxJ_8^yl}s=g2WZ{oIP^Ny)XY=fwR^ z^%Lza(q~jgC;1l72VOT(h*{OLCZuHvHr1Z(Yr+OKe7kVfcQ3?fiX#L~%?MwO80e>` zd*G3@SY&eN;q$IPAMGUC2g*4elF-#b7W>6~S1aef{Owk6d)CE#Yr5@hTDqPR z3aoq_4k)m)MFzT(bkQIAupT1yWlOxwxU=eLHSNS{osq-9_ms_cMVqsT17pdfV?(JO zxBEpF{E1>tblK->pQwH`?j2S*oteGw53H2JoqXRM_>lGem)E;6IM#Tl2{YI`Q<;}0 zzKL$o-Go)Z?vO>FJ3s`C>^9LfVdJi~JjO@``#zWu^u-Gd_sazi_r2&PmGg z280x}tp8K4h z=yf>`VuBF85~7ue2C3c5VS6WYv|*WfJ>En7hq0)m-P2_B(IECOB+QRebWq<#-;2M%OAJwD z*(~X9Le%f~EJ$saSpQq`cxB7fmMo%|7}j{*Aw`X70ehkP?9^jsaQa zF)gpM>=x@(K{xA%TM_H&8<(02&fRZ5oj2jXu{av!zUi}C+_C=Pc#4C6^M?t)!yTEj z#SV#_fcoQaloDH-R6OEVQ}$E&2vJ}J9z`nPLI}nOnpk|;bREg=x1j>G}BrVtHYfQ1p-#`XyP}N&LvQo<7>VSeij3^P;_q7S* zLB1zPcYoY3)lu=uGfq+4BV7pa{6o>xV=M``>%#s21YYy?XIa-#<7gNtgCU&>GZ%|A}wirH{A2g+M%%&<7Hi#qT zMMCp2@(r3S_Now9@=*?S`C{VqM~8bBO$O47m5c8jd{Ov5C+|59x;EI-y|?IF%5U1K zDMCSM%Z|x&$IO^vU$Od7_TXtPy*>)0y5JQO`w{PD#;!lvJ`)gHXP$a?T}{0j)xq>R zouNhy6Wkf79P$oQm>;|z5v<}>#otSP1i>n#>V(XP9wl?ddxs@??ud*%Jz*I7vAQqJ zG@C9AY3OrBXLuI@gvi|}TV2xA`8xEp**&qg`I)^V>(4~BrMVw>G4KDdNFioQe=5Sa z`mtCt{(Foqm9`4IRZ5zBM1&^gbv$!Wn*V&aaoU-;u7B6#=XJbYJz^rA8ggLzvaD>^ z*}P)y5LDXh*qKmraH&BqAeFyba21#nw83<0KXD+49hO!QoMnw%KROhYs1z5Yo(RDk zhulqvQcz|X1_d$WmaeZ7ii*egHN>l5m6^AlG=zel@hnK6iN_z1zTW9&-XGk1*F!?| zA^S#i*?_vODkwjc`}&Rw z`&mB=Pw6B3f%y8|6JZE7ht=t-sJQ>vPT^*>#42GMQPvW<{8pr!8_lO2WzUarX9#&a=LKj(5?DcMi~nKw*t5r#dA4Yi=XE* z7ROziX_rMsmzWjT%Q;rBF*z+baujldu5PAM?EvXilXJ0dco}Ic*;v@_WA_f?I&0?q z^gutO3WPoa=d++V8qk~|NR2+Kl^E!wNhM#&#S(jJiYvGUqz1(MIMEdhCR+#G0XZh25HTujoB9V_7eXh;+RQwM*A)k`bj82;@8 z(#p!v(<@cWlO+WSO^O3b1)OPdz+pK4yMgyIn)h^Khza4vRiVrPV*!7AALxni_ zw9Ne&z5GyXBM+fJl2Y%qRPHk|%WT*!R>|C5%)N%&4p`P?+S2!6)9U-*KHJ~ko`rc! zqbn;qQMU}3c2CAT<3@k3@`vQi{xT0SIACK>bo0tSbtYF|Z8y0lS`1zFCAuE&3LNx} zT@U<>`trP$x7mG%X5T$}ecCfbpQ>)%f~~ z-oVnhV_+P~U4(R?$Y-?uDdQiAb)d>3Q=G;WkBY5kd?IaBu#n3KkVLHRc=CZPO54}n zt`I`d%g!E$7p!UI`XEv2l0Nj{NXOQhHN(l;sHgvap0s9(S@_GCZjIw0X77mX2EdfV zl7+hsa)oZ;hXmyy`5Q0UtVyqYAts85t^QkdJuH3++FS#Vv9An-TaKo+M8X#(XLE96{YNuH*}mQ34YK8FMyxWx%6uy2wxt89f^t_bZ^bJE+97nS}6_ z!!zy=RmBSFp<4r^TA~d#Wx%| zm9n0ODnMSRc=}r>H5+IqEl|x^MaI+7Tt3 zc7~$q!ZtzKdOWkjLi&LxG(5Q;^WM&w^H5yEVmDx-7nvj<_)r{=DW!hX=F(GqMRFG>_{frt3@m6MC%rp1P36?eH8y zZeWlgBIgn_#|nj1r;Dl&P3IVKEx%OsK1yDReuVt-)U*0RWR`%L9>uAq6swt@RvE9v zP*nYTPISD7#(=0RK6cfa@nPkyVTUQG??rfDTlYMs7eJcnuPB?FLNZtr$bKT~SJ|rP z^6p!2U22bGsrF_*oma&RE6m?_g#AH&!-Jt6Rx5irk07P@=#&oeW<^s(vVM>vRQXSC&oCoLGEk!T$P-dr7q9RmVr5g@?)TdD9> zbwbIyQhr*Zh*X#*1N$oC+Cap2UP3;L`W|%t2c4e=X;8L|P|x=bTx{;j%w)Qe7YXVZ zQbsF;=%LvMu<{$xwpDbucpxH*Uhn9M-6rv7f4j7M#7Aq96V;Mnw`ArH{YubXS(m%z zoaQ5(e-u%P*UL>8M3Q`|tpZp0wz`#C$;(ib9e2%RsAM9K*sdy16!8!&4e$_Wd&7W_ zqs4^KACznTD~uPPkTyb;tW()ZOrJk2yKoTx=aGw+XwX|{5MBJXT(1qpTq@v#y=Y{W zJ06Is3r(xkXtq7}pEt%v8+P1-p6jK7p3rSSF~AW@fQUT1>=&tXASre;!AyC5;qA8O z@SIk+qfH4-<^}$Go-W4D*NWw!Hl;LO`1s=hH`=;Ia|#IsG={elDKq7FyCdD7>ur&~ z$5T4^h%VsCoAz(P3WZ&l_<&QbRV2(XFHSv5=&Rw&v!!)mU2NKpsKonxQ!S;Z%?vui z;tT(^2#(C*1OuJ^8yeE-ZCa8MBDlXAm>U+tKjQB&v0d_mmW(8)<703!cGS)C?IR0Oo@R5b*wM>yL;a2L16;2Y4HAaQeVYM?5r=%O3Jm7jh1VxOMBFe5$kkOe7?%ps};7o=9?qOCW_iqXN?Pb!6paNGZc|L}TnTBK3yKbnfJ1@16Y^#3SNbg)WlOZon*dA0+A zXSGtaeQq1}GF&)PkCe9P$i6@TGKI!rXCl28E#tI6W2!yTLpmVM6JD|)vz+jqGY5|v z5CkkRi~DkBx(N$sR)7zCAMY~e`4T7NDcu6?sd>&pU4P=k{_o!~2O$ zM-6DH-@Exxy0ef@f+)fsCKT3nm;eX=wVVNXN_W|MWp6c z>~=NLim*kwAWxoc5>TSy&zg2%;Y}LcKFIu#fbK)bJ5Yz(!^@C?SNnEj=+j%%REWo9 zc+6=8Qaxn6=wd47fu>YlbPEVe#ogpPopN#89}f`O{zQ{kW$X@LHm+89QklUGrCMWE zz>NJD&R?ae;cv79KJAJH+jn2F#?u=rn~2I1OMbm0HU;gn43F9LK&noi5ZS^s`<~yf z3yC+O)ygCX^LjDv%o7mzlrDV_vozjKONMrkp8S>vZ?+2T+1?ea11g?E*$$X4a{1JQ zT|s#BRx#Z@biFctJNI+t5O6>}j>% z6~pXi0(oq!^=urOGnosnmmA41Hwuo49nF1;H-e#`92|&fRU$a)$YGS$-4>ZGi+VK6 zy5qNftXKoOc|_QvmFblN3Fq@%%QFY9s;#07I!G%Sy7dkd^tP!cmgG-4#O+C0-wZ() zym)D*6X~E4%TX(-Fu=+lW$M3PQp3d2Odd(uc&-)zEs=6=w#>|oKewYt0^^K}G~6+~ z@kZ5A_W!qac*8|TbKF7*3t~h?vRZv{+}rCy1+ET|ZnUvx0d1Hz$ctgX30=!9+}j<; z)(4AZ!tJ&R+5|6ejTK~YWDe9ST(PFR!VVlk^LebsB?-C!(a8uWah12LE_kL5Rj8Wr zW<*Kc$PHeZ|1sat3WuRQN3EOl#oQQyFwBLSHosi&z9A$B{1G);<3;9AuxHbRd2Vnw zfokCI0~ijZo?^P2^F{bSZu5l?;Wp1G=Bf?w=z|k2Zd=P-GpJFMpEC{NVa2rlfc+*) zO~oLT5M@ONBh<{Oz_xF#6S%YV5u*<4%eK&u)#Pg|SC^o?l6@CWuWf`-&VjZgV|x9q zdaYJJIrWU#7d=Ye+t%%2E_gS$BvRjG4O6S4-+$ZQj=`AW7u;bfFulFWW>V@Nr`+i;I+@s$!cE}Y5D^=p_(ZJ_*oJn1XE={GrdDsUV>RRvin zDQ?;H-$r^9xx(>h4oOrT8LHf`EMJVEU;e~3N5sZems+VW*B;~tb(6jS%u<@oA8U5< zZ}NonF0}7e5G>U&KS=iAU;H6X$|y{@RQU#5zNNLGzvvkadzsICClBg~|JURu%t7DswIqTx5pw*IExnB0eNP zpx|{4p+VU(5Z&f)z{Lc>GcsoJ!dlagSj$`tp1w&GG3tg4Nf-w@aCD{;}3ic#gF{*C;Ov$(tJmaUF<3Nk!gd_!b z+pvqZ&$_Y+B&Bp%D2Pf;<4~!uKgJ?sF%Ls5&e%vI@PdVebd9wEdeDVKpzgh`b;nzb zs6(~~obg+Qw>&?SZI48iGgdjs3(x%&mYC7jih}bY##~Pi*SZw zmQB7+97^=`N6rfvGL%e1bem z0l@>|6Q!6W#twAky;n50&!hsbbEWHxM z(?N=TP&=G@Z@_fKr#25seeVY&cSAZ|>$5U+VYF=c(c6s%3-0BJ1CvPn#b+U^8(&LB zvPN8;H0^M;*zvS)leVpCw??Ua1$82~^WPBc03i{%)ztrVD50+Tz9V1E@pa_nb7?NszXF}Z9GQ9D)k||NDsW|MV zVbDe92s|Zk9pI_63i5q#u9EzQQZWPu+MO+3FDj3XFJyvB!3FJFrQwjh21i%I&qNTY zkc{lIrEjbTKJx`m{FQjC=Wl{jeW>(W_Q%ly7nZ;Gjoa`@2o z`hEOgwv+$XI=>jl32&}}_x1|Rw^a`+x`?dP89Ts&Z(u=OJ(;a*6anRVZGAlpT@UM{ zSN~ui-G*n|VZQ!8;JzK)hzz|sSpm-pdDC>B>?cm{=~JV32s<^4 zkP0cj!?p{x$l7Es%xni^szs=jjzR}`h6DE+^s%$0DZdLj&aPG=g9c0j(AnX-Ce^8Q zBti;f%)ywU#PR=>mcT1fhj&e-NL|5NW~im8VI_*9hnKYQ!euoz^6d}n0) zlWfwh`Llze0xdGSDCwKi22l@DU>RI_ucdAKqb&hI8}WG1icEv}|Lj`W+cX-qKZrG^ z8~4NcLRLrL=C7JJ##!bi0j)d)9mw!{PFZ!WK~HV7hAA{vZ!lH7RmtlcNc9*Tj)18( z%do9G4g%8$kX~+p8fWwHt&BdMW+Y&L! z3a3ro+3{XkD-+P@0XGm5mEV@(2yeQewFu{(wssqC24KMz0~q3Su}4Qb(M{J?;-vjk zrz$0D z=1=;dx9|Pq?LQL`g-rfP=K21HCi5ZVM2z`1iMoLiExG!Te0DtVZOsiDEM!>f&jO=| zw`H&I?)UA7qTG_FF*}4qMib2!XCdMTm}94T461DXR-{6DS0qTSnaZGPk7t^a=%1%; z{UdX@E|VO%QL!IFRgoR+K4rSdg!8Mi?zXH*{B^z@Rw>JkgwL->V^uq?7k|Eo!<8w* zQmaga#B|@zd(hU+H^Ri`#ifY?S-@E$`%ekCmqKXHNUS^D_er44A?uO5e`V ze3>eGPX&Hc%6?lovsCP!s)QhE+Eh*i=^P?(*1$9mG%~(V`{!JxxtyaY=qHb;RgYhA z^j#Zq)t1%xQAyaFf)`A>ko)=14eIs(_^Ndwmbzq>xU(;&^Dl9EzWvgNz`UWy{`|8C zWK2JYFOnb*4&V3Lw-DKhG3-Q;<(4D>Z7i>AL`KUDih!aiY9cmY*7|&w2iG%THUh3NZ z6f@I7Y(@Y+9Kj8e`K~eQKf05@YYBQ9F4soZdU60a<)Ev@Jo>~0J(@E3dbDX14Aw_|KXvm9W)t$ zZ!tc@tgxe?(Jcyd{p=Cimh4(#!7+LFq2@oX1U&-%vXT(pKa$LvP&hm^RZ^ItNe;d+jAGG>BrHuQRb# zk=d{l`J{iBmxu@aUXqYvb@^B>-Lx96l*)O2j{~_G!5R&|h_R$4Z+;LQd~wC zVzxV^0a<_IJgpfQlP3^?o0LNn*@4yda|_4_(bnjHtrtxKLdjDDV4BfgVWkLH<$8+? zt!mb2SqW(#t0m~VxVrrg#vi;MmXnlD(fQb4UaYI}(_JLgwbtYz)lT$`7kPFjY*{%5 zR|A33*gbWU5;PO%&i)ihp6{oc7k2Xewz)m}?c%RLHKhyb^c<&Uu!dMa`K{biQZV%r zhRQy5LXgMNfoEafSLB;$A|g8XK7j3ViBPr{IdkLLO%7X(8E6^Um6J_iNzz>AE-nrA z1byT@Q#xBH#J^eI+fnBx8y zaJpA!*lBFRnQPBfH9(*kbJc$AzF+l&PbbG;p4QFrS7ZlZ3%jP2vJ|E zueA(c?BVVE+zIpOp)i-PNxv+FNSyYK?~yAQ8D9&q)cM*edKf=M9xRb^=a4=>{fZ+O z?Su>?TDp27PJxG9ydn+23$`9X8$W{ZtEWA0Vm%zY2z1KkjJ;4^VQM3>lh{jdq>ezn14|t2uO}hegJclL;1l zXo~|HY7`XJw?~cMU5Uuwepq7w!RuxDuehvqzWC4=1ooa_+}m>7tC9G|SN>@?2TtO* zX7^#Zn+@xa%S6Z!HMy3oopzvJjKVf4afluU85L*Z25Y1--8O*~gRmEUMlEfsflB?P zu7)2jgKpS2)M5qycNQRXrSf1`@`j7#Pjro_iZIxr)Lf()`>uKg{Cr7@JDxE@&M1jR z#_fD+&c{lw=CNlXD@)A*4angHL7833MgoI*a>}V3?Fkd)0~9rydt_73zM_TsDvWPI zqw4}3rNREwEQTo~^Zv4W*x-M+v%| zxCsu;)9`9dGJ!~Bnoh5Fi$RAHY?KU(3*jY{fT>Ed-Og-9S8oY~83UCs51^ORUZTNa|dE8osb$ z#CXwGFUAm}exW#191GBO=p)}n@rGPv>wPg_z3Pq!oeRGm=t=Lw?Vzjw^`zGz7CfQR z8XMQw4!qZ%R#mBV)UVgFcv%8BE#l$zr7$ZI&G;vJhFmC`%ON8&#&Bhd-ACDH|joEI|eZ%{>cyM%EV&muQyS)*YuPlfO%YC~`E~_p}F2|syl_f0vNlijT-fVg9;;z7?+amYhi9&8?Vykpv+NEndG80E>6~7D2@PgL0ASY|n zzFT|4E)Q_MQI)8q=D^pMQQ`4ebM^Vh`~Bz-w(hG**y?h19%@7%*?aE3BF2$|o?Da& zcG~b=+%Q6>D~lx~yLX2(gq(@9^;U>>1f&w=IIpD#McW@nlBAkAm-+_BhFJ87KqAK@+_#G{6ngyToncZfMc*`%LnF4uO*P%#)8ok*}q`+W_T#UBE zHf;GTt8K|BPSS->*Si~4w{r4ZH=8xmJR)6q3y`5LH=E`(VjZ|Z+nJfJ5+^=ZR;`km z6C%Xk-19|}MIiTHK;?m~ zCUg*xdR#(sl`891)=)uT6lc8n0xy2zO-%uS+t-hBy(tp!0&QqW37KS9O8G?ih?pMV z9(eeX{zk18M);zl6$D9oW#rmZv~&m;mow;?2!A7H3&;}b(>ID+Q;qgf3DNNK z2x_E@%0d@RURVDz6D2kHgSGjmI4Y; zzrTEn@!UyREB_Rn-I2XhSZD93$zR>JX)l8Z8Tr8icDhW^kII=}G%BiT?`dKWzx_1$ zZ1w4_`G-C`!jIkP7oT!fwmtk8b9lD*>hB+9bH1AiaZ302`y1yH3@i`^x!IDGv^K!3_S_|(+e~`iIR%}n4<1|P zb=i;pK2F5T{@iJAuFvT4@vVr>-pcT(8GmEb1!1Tsg}T$Ms`U)sFZ3eB`*;r^OxGXf zGaI7XWu2ObI@_z@^f9RX5baELUk>X#ZdM>^Y9o2qkYRu^O#$e4Vky#G(gbF`(mC*g z`Im_GM*BP3#O61T6Gzmi<8Btd5fe-wZF0W&0Q~JwN`9Eo0~KEuEcGw3bYdBC3A7~X zpMG>|a}&R7iQU@Swt4>8N^gm?_Mu_?OwbuB@oU}f2h4F*x?+=6w)Cr_&VgY#5AL|q z4|d5AsK0Q+m&2VWHhv1b2wf=u?#z%Ybh*x{m0W?8iCH|hj8EAr+v#We^eB~1^M;cK#?)7w((HS}ahNAp z5W*zpWIkBbu`mz(;7-SAZM;wYQ_lD2B(YtGi(Zc9Gb<<;HV6IbyFf5hI5OPZeWR)h zE+@_NTiouSJmrT{;k<81k&yI$?8Sa}%lF^rw#@Ec(rA+;%l%L*=^P(kK6zd1*EWAs zHt$~f=i_L#tYK5j3!;-pca}KCn*7dilF69l4qB=!5BsDV3;{yC5~-1?d_7+ZqhE?U z=QF%G&b=r!*nD(-r8sENX-`_u>yyCmYA5Qx^6(Y=#%9w!e%BQ=rSBmV^t|9+m z!k5xG+I6OPOC9BCpXY1*t76vEjK_z|1F7l9F_2K zQ|i0pawp&X0MgWBiVYin_Hq3wXl6T}?lyjXD%n%Z(i@bW+iCwByELPZi}~aveoD2d zY%(p;v;M}*+W-r0LR#;Z@+dOT*>}?6y~IX8jg_tYcqT5B9dM z*lmM*2uiPa!5I$z8no|EoUm+m9(k9G@FWGo8*W;d^A+#qe*Dtk64^hHBh2(BVT;1& zxrHnor5jF=KUi;y$;f*xsNpAEaA;G}sM$;}?0li*ZF~}_#_VoNO(szl62xrOykVp> zwsxSXz1HJ zQpWxS5+~cH+OF-o+1TsCt2_D~qdlfmR+FS%bTj<`~k2#HH z)fkwln2OZ$IxNnI%XO#&AbYEXb=W&>-ufe;BJWI_0p9zC%-6 zLGbBk?CT&Gw$9)2U&&<*Hr@C??R|$k)qnW6V`rwMq=O_Yk&uxU$;w_KDlf9YcNw+IW~ zyV~68nR7$ucnhj;`3?SYNjOz0^@rrDcF}``U5M6syKI*5lqk7!bmf z-^n4ivXd$h#bXWL2_+7l(!@%%n_T(>HcL5L6RzvhQ%P{e7H~*Pul5 zQBPAA$r38P@FAz0Fn4CSU7jN-^Q9l?oOBI)DXQ97RR?BmhlMOFsN<#nQ`-Kh)$58!e94K zuSbH|pXxId+E2U#3&5=w)t$C;nfbJG=}muXru>gOchh#_1=Q<#0ykCMynnJ)+>=qG?wJhw)h`u;8goi>} zJ|S3wD|UEVd?YjtH$@BnSH_{D5QGeQBaT{N?K&loLvZO*(SozkCahX-Jam@aH>!?uxC?!=Dw#L@3~!72*t5K>+ms35jy8!Ut{XX&T)W6d227@ z{o?^oj4&-)xz&tOwl1ozAoML2yU8i()`-Di(~Fie8P8Td{I{j={fVC{32 zR9gJw7xePvEZVcV!SgoO$M8ntWY=3Fey-;~r;K=cek!Byu;fE&{Vt2IETSr+uR3l$ ztP45h{O2brtG`eQsSiib)Sd`3Dt%5Qm4Kta;v}C|;6j0P+Un@XO&1h0W|qiAnX0z3 zInQ6OS{oa)*?c77cfX~&)BV~Yt;SI0(xx3wzX(m~*mNPus)YFPv`!IR?b<}Hvy*S{rJ%#a3X>{n|6ER^!o_jg zzPgTbmAY@V8t8gew#hY5Q@+d3K3Q>)CxaLH4IDp`i+D!NE{MxDR?~J(OY~f-ogPQ^ z#^F@E^rW~&uxBthk(*$Qx3_BEig>sc2Y$zCgP>avL@}`Mj3jpIdVC_4AZ=5k(v@TZ z^qxu*s$i1Y>aIRfV-Uc}6{miQt$JJAxMLZZ~>Ki3~`pn%C6Iyl^)Oia&22&5J>&h@$ z+Vil)f2>lK0snnOmTcv4&F53fwt)OD(blVKE_yGt3M;D}6t@*$7V(lx*>Pzhpeg#r zG=?Y!;4Sr28lb~hALLaA`yb+Spqg_jxSl8Yoq3F9YeRkXwA(j%(pU_A>f;Ai{t-fVOOb{Z$>r}n z&l$7d4*v4>=&bFdE#Jm0+-?qAKfFD(%Xe)^y{pRO#-(gO3wdo4Eii;+M9n`>v#BfD z9?(H=Bq*!8z{V?4Q4>`c)YZJcJ$3b%A={~+nT)MnYYKqPm!;B-xfhtk9G7~zv3A>( z?dTNo25tx|n|vivVJ?(_Vg4kFSw-C3#4&Y~?8b;*w!V==If>EO`jLX_`A-}ncnQ}) zdDu1ex9@+R=<%#LCMoYlO)qG#K%-6O#(TWcWqGlJZ)Wc4<9mq=@h4^yE;>s6P3{{Q zKb$}M@2iTjh-cqJO7W^%{kfcS>4qHf_xp3%4>lj&rf?w*dalQrjN+HEq@05$X4Q=G z#C1VA+~}RE>cn~hu2qPeih8yZa(TWDbBgz#mp}~lhS+BGgxdnwGGpz6w!%) zHl37-56Cfe9OI$p_n# z$_dQcqjkq(f2b6%8ALUOZ))*y{Jl!7Ki6@%91&&?;&JqRLbHZ8$aEfu5m=nL*bJJZ*_Dmlz|Em=~A)TKZCSo5<2BQ|Hb8Z^>t zIfoQeH77u5`D4M7O*;I|1K*<{|J#n`Cnuj~I1jIuB9T~E0>rO2n=xrO?h}-6b{Fd( zG>~#1ncv)8h#A-8-yWPXbFR6x(QVf!wb!Np)_kiV@CJ_2y`^^goe{4X$!XA}hbKEE zG!O0x4(Jop-TE!W7b*>vA)-$^n0RI=vlCGUtslR@6K{JQQvk?H6rt$Xy=jiqjeD)h z{`joU^S$zd3Ts1#H%ngU=7}|??c^gH?K>&!f?LXGTQ*^le#D&dlvhk7i$BVmOySr7 z{cNie3+Ij_qm>buYj7uD3EAF-s=m)>`_A+wLOFq`V_r0EXA`cTzogviNl*V@*1-Zw%r5ewM+vjNio>< z%X>^yDQCx(Iiu1wE0T4ZVk@FwX4hA~QC&oLex9TiH0xrQR<}R`=Fvil48BPlo!u*e zDf?&T4?0>qMLaAhLrfBwBa`%ip7lWwn~p2c=U%CDy{U-|Ce&WMqytcs-g zA%Vy;t1Y96(YLBSA$eRFFNPm@am4!U{Z!!1UoL;-|88nEXkGif#BuKB%jDm4x(C`2ZHYMr^tSm1Jzep`#16N@58kp z#`{hg+8)CwZzpIXh2X$n()t@z;f(p?Kf-PoSV;1HDi7AP@Y{3k5)5v>zI?f~toX0m zzgWT`+U^rVlAuGBGPqsNgntA-xW8oDky%l(SkT*NRN!-97-~}2O?q?iOix9jZIh58 z0<}^{J~X|>MkM7PNZVOG1*WK$Geln@oG5K=+3YjoAbmwJuMk-K>mbD5+OR=g3w*GA#aF$m^Zo^QBd0qgR7b8xEKuh010^&gZB_=!bz-$qKAp=h3EMDjRuUq{i=Q4;iXC?VoX@IeX9H z%fah0j<(w$CqRs&FhEQ3@7qLDt2>By9W0bX@1SRqlkE{+TyJ2!JD@&d2tZhOY1%^> zQQCf}cyxw>P+L~T&EXing)${Wr^`FITIQ~R`Pxak$X-zdLfZJwch-IS?$gP^?<cU$827BQU!)1TQ=WI!_c1&BuxcE7qO?ycKuj5TbQ62y?T!B$Sc6W zQ9h&g*WHxjp1bmJd_{2?d>~3)EFG>Hm3)a`J~m)L8ajEQqA0u}3=M(N&IG@vSl{(C zSV}Ba@TRQ2JZ^Nz%ivh%Id(&d_I1=4_7;JZJH!s3217yugZ6YbMF>6!zmk;821JFO zN~=<`dru2V=O+yMCE6LFPDe1L#+>e`Q08!uyCMLF;nH-4p5D0*gIt3vo9_UERvaA| zAsWn`)ZAbdl0-Ta3$#dh0Mm@Qk2+Ct!#49odePozb%tTloR0f?Uy-P#d$f4(wzM;f zYa;_vcvc27=)I`s@+m`HP;%pyYKlVHqjs?whZ6U=uI z&}QLWO`v*#AS_+`My=}URnJr@mYZ3{d%yR%%Dd+XbpJ!Pds84=VZF4F#lR~Q<7BU^ z{4Mj&-9!v6qHFx;X&6Q>0Vs#n2=0a!fxV&5XV!t z*PjcVVBvJHIum*Cdy1C51U4gi|5chNp_u;7bGQ<9H=x_@4E+KSm#fzh>X~w^4GjG( zV=2{jc^W%^ak=cZtU+jTi!25u{FFiOPwmMc);vt_e^sqKxfNc%9j_B*qM^j}_QTYU z4BPyKXwv(GSEQ1D0rb~hPC-RdE{Q8;SXHECE!TKG<`~$47iaFaugjlPQcft#X0F*} z=wE6!-iDw-QRUg7QHsFiv*l=>NoP%(3B-Fp=ql`FB|cf?M|e}2ue$#Duj3-pDZEx{ z1|H@U;LBmNJbP2O$ybfzVr;l;h(l3h1aoJ3Y?~C|-vJB1@6s7S-D&eM*$E@Em0-@O zk0O=>(2 z&gN47SisY;7KetAwo8z8VhJ002|KpOLMh z1dsl<{hj=c)byLy4>XvxLqq90HtOtS?-e^KU!S~R`@LrQhX}nQv`IlBjpFZ|ez&yQ zZ#ug1)44PKnkwogpLXfCLTt#(3`c)C=5`P7MKiH*=-C2h88q7ql`hqQ7eNd2@f{qE zjj+`%#G7ItYmWRX^aYD`>8{jUs`Zh)*!c8%mAPK>1i>+)wDFT&YP#y~@l1AI;TGtLeV+!PyA|Zpb5ZpO~q=4#}&c1hYw??M9ON<9ZwJ&{`=E~wAKSzRUju z4vYX`=Bt5YS*F42yT_@POgakm(;*4P^cwi2nV+tEMJb_IxH_4oscp?BWH(1NRn0#XIn?<~$>$FrNk|wqkUIhb7p=@f`T0ZkhR=TLcnO$Q zPuLMKf2X?rktz~GXeP(!p60{4u@8CHsI%`9_)OW>w;C-#$mNeVRi88RTYqvfB6RI3 zd*33yMP=$xMK%z_L|FiSjZALXEU=!*Pft92)5}=?;SP9#F@(0UJ%X9>N-sKn;Ql%v z!6U9$^X-S9iU96CcL%ir1uD!giX4(hluihJq=`dRO}*Ts-LpsgdgrsUZ+kAFyuEzB z6@D;9_h2K~)iTB*d$S$W7OrEw7<^kjXK;=VBG$FsOrwaG*ivz~lPfp=aPAOTUxgL3 zxmm#$BZy!u;xN;w@z7gJr6;6VNMMUEq&b8QINOB3U5TB)we}ORh}N6y(*}Bs!H3^@ zOwXp7@R(8}EePjVe(D}+#5&gu0nv_vqYYDqx%i9j6CA^O=g-RKJ&9$^&#dHYv?1nM zD~VB^2(2yYX0`+%#H`><)2G$s^PJgl)iv}0ldIbLFAjl=NtdWbsnOgiQZ$R9yr{ki zhS#14ZzJ5g&wGRa5rx+%EOS5X8=WRl#rH5dq~{qRmN~I;rkp2W`c}8f5Ws#cRQ2r~ zho6PK-V~g>uysLx_|Q;k(<X7-}O1D8Qz?na(WPB^H`OK zUS+|oZASayz3$5HPIvB&(m)Q2miDSbXf69`jYmW5e2MneVHx!uX#65PKDvhe2TUpH z;ST@KTsz#TSzaI6lN-Y%XQpjlgDCxT);%nZ=z=&4TBmL})*A6Menl0^N0@+QwmZ?~c3~>XY6%VJ| z^X!)2=Okyu(ey4KR>tQuhDv?9n0lJ@?GuLAG2odKH4!o@637J01a6%f<58b0he%Xr zb-^^`uwQ^ZAm~)gz6*VB-=>QfD24k&EmI4{&KChx{0gaQpU+rw{ISz@Ext>p2p0Nq zT;JASsW+l_ax10<-*dBj+V9Xk`tC**k~mba1m7BRT>jRx((!`MHZ8f%f@Y(H)}QFS zJ0o99rqEtKK6;i(snuMXaKfq+=_Xa;Aw_=-{=4d-D#D*4hn4%z=IUy-|Ke@HL0UTF z2+cX@eyv+&>XcuifKDP*=iLG^yC zTK{L|TQ3b4zStND>k}E#oR)Vmf8Re>q-vIO_K`h#?b*XYJ>)Sg!VjWn-MablF7O62 ziPWuVvanKsOu)pi95{yS>#`6F4dIKtrfko**Ujer=XT2A(0nGT00HoNskhhk6kPm& z{`!30B^Z22<#szujzAh~$r2geF*Migx$Mo++vCF^B-hY}-+YBw6`LUC1Sudmf&)dV zv6eE$(q7EX>=OqQ^CZH0Mk!u}tr-?do|o>{{C+qS)1YZtj21Nd0)q z@XCvY^NVPLD&b)J?`B;4a2b?Vz!e2@#$a|JTR*!Z6$V-44JbHYPCg;6fP{@tUUI5o zdtDjEYQo=F6i}lt%rtkRu)@g5k+?=@8EYW7Zn7YanxTaf-F86%BS42L2H&pk*qZFSyIgPe~*TMsDJ$1(Xd z=nUpIeYG4aa^fBaAgwDLF9c!YMGV+-ekaIHkF)d>T2H zK^ZR$H_f53#>Zm{otv~B8?0K_)8uT)VelUjGrie4K6&0=AplQ`+k@7ED@T>Las>8! z;Nx#TgA3yn%_}gkW?iQ(=TmDF^kuAC^4(wHWT-(=&lQKe4$agT6fI=31r@4YotmE$ zt`2rKSgsL%)sQwH$aJ(VqXuYdU9-+@04bvvi z_aM_2QO9yCXQs()yIuRk^9Ck+TH~EnDaR>02c*cy+aKn_XBZ)$2vbaYbkul)r=PBQ zt_+RSODzym!!l=joo&^4%m7ur)h(pBz(>Ir7bs8v@5_3B<;~Oi`)^^qfR6=k_UQG@ zRiaWoOZ#fcgl+B{B-;x>2$%~AA7eR4^61c<4)6@#JFG?b3Zs5&z8L2|U<#n-bg`pC?Q^-S*^iVf@oqP<1D&rlD*Vy`b;gE){G5Z!h ziF6GRn~hMH;1sYkOwvuJ;{%=NvCSY_kBqA42c@OlMpJgI?6$F%$XzZ-wufN8Z}jI3 zN&WdihDc=j_Z}Hn6YFbVUXb6ahSnY|?$KI1wrnAE*D){JhVHKpETkQ(JGk(q8wcoz z`nxS!KWe|FjG1ysN5QJq?|mg27qt}w0)GH>R33172`7k9z;swAisZv?gXt&sLz<&4 z6^_pTqG0FVL;!NWw&OTD{joI7^idtT9|XI&)+Y?Fbf)mupf>VMd%l`8<^fz6uWuY{ zz2B@Cbv3)Q7#2Ff&fJW*Z=~+U1(sSuFk>MddWItyy-kGaw!VHyG$2{tKN!=6!l5gk z6%T!ea~?VK#;s?IWY{Lpz~MMn1l~2{k&if|Ty@m)k&}P>OiDBv5R-8sqg@I_^0q

37S#qPiIjfykhQnQp&lD=gF=Rtv9Bh?S$+-JFxIdDZlorJH z9nIbH28ox0zB&@M89G&B9EmH5Cc=!#?V#`()eu&pM5T7M@Au!kY;I7<3ZprDMdIFS zmm`=e!Zbb7r`nNo?`hO(rcCQ_WMCiw@RK-E-Od8{LU z5ye29(43Oc*EzH0SMQGv$O4-yyz~y+K*ok}1OpcFTtkgauho~`X;Q#-DBtIov6{cPCtfbyeVp!{4=Q;6#>3(5E)OVg0f^p z<8-Qy$tHin%!e`k+r3kfmZ%gI2np_075Sy)6w)Nr(W5V);7IQFTpee&vKN$l$oh(1&bckiV?;1 zgy~wR!=7FwoEXmcunCtGL&b@*P*i@9{ zImr|K$KDcP1E8dAuLGZ7*)9NV*x1Zt?zb+bUx>e2rI D3n%5| literal 0 HcmV?d00001 diff --git a/GUI/resources.qrc b/GUI/resources.qrc new file mode 100644 index 0000000..bed5579 --- /dev/null +++ b/GUI/resources.qrc @@ -0,0 +1,9 @@ + + + pictures/bad.png + pictures/checkMark.png + pictures/deltares.png + pictures/dtu.png + pictures/warning.png + + diff --git a/GUI/versions.h b/GUI/versions.h new file mode 100644 index 0000000..ff0b2b2 --- /dev/null +++ b/GUI/versions.h @@ -0,0 +1,10 @@ +#ifndef VERSIONS_H +#define VERSIONS_H + + +#define MATLAB 0 +#define externalOutputClass 1 + + + +#endif // VERSIONS_H From 56529d09af037bb8184e033e0d865d4334c1e3dc Mon Sep 17 00:00:00 2001 From: Bo Terp Paulsen Date: Thu, 12 Nov 2015 09:44:04 +0100 Subject: [PATCH 13/56] small bug fixes for the GUI. Only for 3D --- GUI/MainWindow/runAndWrite.cpp | 8 +++++--- GUI/customgrid.cpp | 5 +++-- GUI/mainwindow.ui | 4 ++-- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/GUI/MainWindow/runAndWrite.cpp b/GUI/MainWindow/runAndWrite.cpp index ac2580e..6da6143 100644 --- a/GUI/MainWindow/runAndWrite.cpp +++ b/GUI/MainWindow/runAndWrite.cpp @@ -93,7 +93,7 @@ void MainWindow::openFile(){ ui->nz->setValue(tmp_list[5].toInt()); double dx = tmp_list[0].toDouble()/(tmp_list[3].toDouble()-1); - double dy = tmp_list[1].toDouble()/(tmp_list[2].toDouble()-1); + double dy = tmp_list[1].toDouble()/(tmp_list[4].toDouble()-1); ui->geometryType->setCurrentIndex(0); tmp_list[8].toInt()>0 ? ui->sz->setChecked(true):ui->sz->setChecked(false); if (tmp_list.length()>12){ @@ -296,6 +296,8 @@ void MainWindow::openFile(){ ui->yAbsorbStart->setValue(tmp_list[2].toDouble()); ui->yAbsorbEnd->setValue(tmp_list[3].toDouble()); + } else { + ui->pressureDampingOrRelax->setCurrentIndex(1); } tmp_line.clear(); tmp_list.clear(); @@ -329,7 +331,7 @@ void MainWindow::openFile(){ } } - if ((ui->waveType->currentIndex()==2) & (ui->waveType->currentIndex()==3) ) + if ((ui->waveType->currentIndex()==2) | (ui->waveType->currentIndex()==3) ) { ui->Hs->setValue(tmp_list[2].toDouble()); ui->Tp->setValue(tmp_list[1].toDouble()); @@ -546,7 +548,7 @@ void MainWindow::writeInputFile() outStream << xAbsorb[0] << " " << xAbsorb[1] << " " << yAbsorb[0] << " " << yAbsorb[1] << " 1 1 0\n"; } else if ((ui->waveType->currentIndex()==5) & (ui->pressureDampingOrRelax->currentIndex()==1)){ // Only absorbing relaxation zone outStream << "1 " << rampTime << " 1 X 0 \n"; - outStream << xAbsorb[0] << " " << xAbsorb[1] << " " << yAbsorb[0] << " " << yAbsorb[1] << " 1 9 3.5 X 0 X 0 \n"; + outStream << xAbsorb[0] << " " << xAbsorb[1] << " " << yAbsorb[0] << " " << yAbsorb[1] << " 9 3.5 X 0 X 0 \n"; outStream << "0 0\n"; } else if ((ui->waveType->currentIndex()!=5) & (ui->pressureDampingOrRelax->currentIndex()==0)) { outStream << "1 " << rampTime << " 1 X 0 \n"; diff --git a/GUI/customgrid.cpp b/GUI/customgrid.cpp index 7cbb753..f6d7a82 100644 --- a/GUI/customgrid.cpp +++ b/GUI/customgrid.cpp @@ -145,15 +145,16 @@ if (x<=xData.first()){ h = zData.last(); } else { for (int i=0;ix)&(xData[i]QTabWidget::Rounded - 0 + 2 @@ -654,7 +654,7 @@ - Open + Change From 1727dfcf1c9ff5d91aa575eea0ec784951126e57 Mon Sep 17 00:00:00 2001 From: Bo Terp Paulsen Date: Wed, 23 Dec 2015 11:33:23 +0100 Subject: [PATCH 14/56] GUI: *) Bug-fix: Ghost points included for 3D computations for GUI *) Important bug-fix: Seed for random waves has been changed to a negative number istead of a positive number. src: *) Now feature: An additional irregular (JONSWAP) wave type (ispec=3) has been added. Gamma value for JONSWAP spectrum can now be specified by user. Old input files (ispec= {0,1,2} with gamma:=3.3 are still supported. *) ReadInputFileParameters.f90, has been clean up bit. /Bo :wq Signed-off-by: --- GUI/MainWindow/runAndWrite.cpp | 37 ++++++--- GUI/MainWindow/waveGeneration.cpp | 8 +- GUI/mainwindow.h | 1 + GUI/mainwindow.ui | 42 +++++++++- src/IO/ReadInputFileParameters.f90 | 94 ++++++++++++++-------- src/main/OceanWave3DT0Setup.f90 | 8 +- src/utilities/JONSWAP_spectrum.f90 | 3 +- src/utilities/build_coeff.f90 | 6 +- src/utilities/random_wave_coefficients.f90 | 9 ++- src/variabledefs/datatypes.f90 | 2 +- 10 files changed, 148 insertions(+), 62 deletions(-) diff --git a/GUI/MainWindow/runAndWrite.cpp b/GUI/MainWindow/runAndWrite.cpp index 6da6143..c1a75bd 100644 --- a/GUI/MainWindow/runAndWrite.cpp +++ b/GUI/MainWindow/runAndWrite.cpp @@ -319,17 +319,19 @@ void MainWindow::openFile(){ // irregular wave parameters // if (ui->waveType->currentIndex()==2){ - tmp_line = inputFile.readLine(); + + tmp_line = inputFile.readLine();tmp_line.remove(QRegExp("[\\n\\t\\r]")); tmp_list = tmp_line.split(" "); if (tmp_list[0].toInt() == 0) { - ui->waveType->setCurrentIndex(3); + ui->waveType->setCurrentIndex(3); // PM } else if (tmp_list[0].toInt() == 1) { - ui->waveType->setCurrentIndex(2); + ui->waveType->setCurrentIndex(2); // jonswap old syntax } else if (tmp_list[0].toInt() == 2) { ui->waveType->setCurrentIndex(4); + } else if (tmp_list[0].toInt() == 3) { + ui->waveType->setCurrentIndex(2); // jonswap new syntax } - } if ((ui->waveType->currentIndex()==2) | (ui->waveType->currentIndex()==3) ) { @@ -337,7 +339,13 @@ void MainWindow::openFile(){ ui->Tp->setValue(tmp_list[1].toDouble()); ui->h->setValue(tmp_list[3].toDouble()); ui->maxkh->setValue(tmp_list[4].toDouble()); - ui->seed->setValue(tmp_list[5].toInt()); + ui->seed->setValue(-1*tmp_list[5].toInt()); + + if (tmp_list[0].toInt() == 1){ + ui->gamma_jonswap->setValue(3.3); // JONSWAP old syntax + } else { + ui->gamma_jonswap->setValue(tmp_list[9].toDouble()); // JONSWAP with variable gamma + } tmp_line.clear(); tmp_list.clear(); @@ -348,7 +356,7 @@ void MainWindow::openFile(){ ui->Tp->setValue(tmp_list[1].toDouble()); ui->h->setValue(tmp_list[3].toDouble()); ui->maxkh->setValue(tmp_list[4].toDouble()); - ui->seed->setValue(tmp_list[5].toInt()); + ui->seed->setValue(-1*tmp_list[5].toInt()); ui->irr_x0->setValue(tmp_list[7].toDouble()); ui->irr_y0->setValue(tmp_list[8].toDouble()); QFileInfo waveFile(tmp_list[9].toLatin1()); @@ -432,15 +440,15 @@ void MainWindow::writeInputFile() if (LorT==0) {SF_L =SF_T;} } if ((ui->waveType->currentIndex()==2) | (ui->waveType->currentIndex()==3)){ //JONSWAP or PM - irrFilename = 'dummyFile'; + irrFilename = QString(' '); Hs = ui->Hs->value(); Tp = ui->Tp->value(); h = ui->h->value(); - gamma = ui->gamma->value(); + gamma_jonswap = ui->gamma_jonswap->value(); seed = ui->seed->value(); khmax = ui->maxkh->value(); waveTheory=2; - ui->waveType->currentIndex()==2 ? i_spec=1 : i_spec=0; + ui->waveType->currentIndex()==2 ? i_spec=3 : i_spec=0; } if (ui->waveType->currentIndex()==5){ waveTheory=3; @@ -451,7 +459,7 @@ void MainWindow::writeInputFile() Hs = ui->Hs->value(); Tp = ui->Tp->value(); h = ui->h->value(); - gamma = ui->gamma->value(); +// gamma = ui->gamma->value(); seed = ui->seed->value(); khmax = 2*M_PI/dx*h; waveTheory=2; @@ -565,7 +573,14 @@ void MainWindow::writeInputFile() outStream << "0 0 0 0 0 0 0\n"; // SWENSE outStream << "0 \n"; // Irregualr waves` - if (waveTheory==2){outStream << i_spec << " " << Tp << " " << Hs << " " << depth << " " << khmax << " " << seed << " " << seed << " " << ui->irr_x0->value() << " " << ui->irr_y0->value() << " " << irrFilename << " 3D-off1 0\n";} + if (waveTheory==2){ + if (i_spec==2){ // Irregular wave with input file + outStream << i_spec << " " << Tp << " " << Hs << " " << depth << " " << khmax << " " << -1*seed << " " << -1*seed << " " << ui->irr_x0->value() << " " << ui->irr_y0->value() << " " << irrFilename << " \n"; + } + else if (i_spec==3) { // irregular wave with defined gamma vlaue + outStream << i_spec << " " << Tp << " " << Hs << " " << depth << " " << khmax << " " << -1*seed << " " << -1*seed << " " << ui->irr_x0->value() << " " << ui->irr_y0->value() << " " << gamma_jonswap << " \n"; + } + } if (waveTheory==3){ outStream << ui->rampTime_waveFile->value() << " " << 1 << " " << ui->selectedWaveFile->text(); } // myfile.close(); diff --git a/GUI/MainWindow/waveGeneration.cpp b/GUI/MainWindow/waveGeneration.cpp index ea1831b..907a3bc 100644 --- a/GUI/MainWindow/waveGeneration.cpp +++ b/GUI/MainWindow/waveGeneration.cpp @@ -8,7 +8,7 @@ void MainWindow::on_waveTheoryChanged() void MainWindow::on_waveTheoryChanged(int waveTheory) { - if (waveTheory==1) { + if (waveTheory==1) { // stream function waves ui->widget_SF->setVisible(true);ui->LorP_ComboBox->setVisible(true); if (ui->LorP_ComboBox->currentIndex()==0){ @@ -23,18 +23,22 @@ void MainWindow::on_waveTheoryChanged(int waveTheory) ui->widget_waveFile->setVisible(false); ui->waveGeneration_widget->setEnabled(true); ui->widget_customSpectrum->setVisible(false); - } else if (waveTheory==2){ + } else if (waveTheory==2){ // JONSWAP ui->widget_SF->setVisible(false);ui->LorP_ComboBox->setVisible(false); ui->widget_JONSWAP->setVisible(true); ui->widget_waveFile->setVisible(false); ui->waveGeneration_widget->setEnabled(true); ui->widget_customSpectrum->setVisible(false); + ui->gamma_jonswap->setVisible(true); + ui->gamma_jonswap_label->setVisible(true); } else if (waveTheory==3){ ui->widget_JONSWAP->setVisible(true); ui->widget_SF->setVisible(false); ui->widget_waveFile->setVisible(false); ui->waveGeneration_widget->setEnabled(true); ui->widget_customSpectrum->setVisible(false); + ui->gamma_jonswap->setVisible(false); + ui->gamma_jonswap_label->setVisible(false); } else if (waveTheory==4) { ui->widget_customSpectrum->setVisible(true); ui->widget_waveFile->setVisible(false); diff --git a/GUI/mainwindow.h b/GUI/mainwindow.h index 28a4929..7f17d63 100644 --- a/GUI/mainwindow.h +++ b/GUI/mainwindow.h @@ -100,6 +100,7 @@ private slots: double Tp; double h; double gamma; + double gamma_jonswap; double khmax; int SF_n; int LorT; diff --git a/GUI/mainwindow.ui b/GUI/mainwindow.ui index fd039d4..5c9be7d 100644 --- a/GUI/mainwindow.ui +++ b/GUI/mainwindow.ui @@ -499,7 +499,7 @@ QTabWidget::Rounded - 2 + 0 @@ -1647,6 +1647,9 @@ 24 + + 3 + 10000.000000000000000 @@ -2254,6 +2257,9 @@ 24 + + 3 + 9999.000000000000000 @@ -2784,7 +2790,7 @@ 30 - 90 + 110 711 80 @@ -3027,6 +3033,38 @@ 5 + + + + 480 + 30 + 62 + 23 + + + + 10.000000000000000 + + + 0.100000000000000 + + + 3.300000000000000 + + + + + + 480 + 10 + 54 + 15 + + + + gamma + + label_52 widget_SF diff --git a/src/IO/ReadInputFileParameters.f90 b/src/IO/ReadInputFileParameters.f90 index 8f1d51f..42784c6 100644 --- a/src/IO/ReadInputFileParameters.f90 +++ b/src/IO/ReadInputFileParameters.f90 @@ -12,7 +12,7 @@ SUBROUTINE ReadInputFileParameters IMPLICIT NONE INTEGER ios, i, nxIC, nyIC, iflag_phi, ispec, nGenZones REAL(kind=long) :: xtankIC, ytankIC, t0IC, Tp, Hs, h0, kh_max, seed, seed2, x0, & - y0, beta0, s0 + y0, beta0, s0, gamma_jonswap CHARACTER(len=30):: inc_wave_file READ (FILEIP(1),'(A)',ERR=100,IOSTAT=ios) HEAD(1) @@ -425,38 +425,65 @@ SUBROUTINE ReadInputFileParameters ! Linear mono-chromatic or random wave generation parameters. ! - IF (IncWaveType==3) THEN - ! Wave generation with flux condition on western boundary - READ(FILEIP(1),*,ERR=34,END=34) wave3DFlux%rampTime, wave3DFlux%order, wave3DFlux%inc_wave_file - Go To 35 -34 Print *, 'ReadInputFileParameters: For IncWaveType==3 we need: Ramp & -time, Order of interpolation in horizontal direction, file with wave paddle signal.' -35 continue - ELSE - READ(FILEIP(1),*,ERR=31,END=31) ispec, Tp, Hs, h0, & - kh_max, seed, seed2, x0, y0, & - inc_wave_file, beta0, s0 - Go To 33 -31 Backspace(FILEIP(1)) - READ(FILEIP(1),*,ERR=32,END=32) ispec, Tp, Hs, h0, & - kh_max, seed, seed2, x0, y0, & - inc_wave_file - If( abs(ispec)<30 ) Then - beta0=0 - s0=1.0 - ELSE - Print *, 'ReadInputFileParameters: For 3D waves, abs(ispec)>30, we need a heading angle and a spreading factor.' - STOP - END If - Go To 33 - -32 IF(IncWaveType==2)THEN - Print *, 'ReadInputFileParameters: For IncWaveType==2 we need irregular wave parameters.' - Stop - END IF - -33 Continue - ENDIF + IF (IncWaveType==3) THEN + ! Wave generation with flux condition on western boundary + READ(FILEIP(1),*,IOSTAT=ios) wave3DFlux%rampTime, wave3DFlux%order, wave3DFlux%inc_wave_file + IF (ios>0) THEN + Print *, 'ReadInputFileParameters: For IncWaveType==3 we need: Ramp & + time, Order of interpolation in horizontal direction, file with wave paddle signal.' + stop + END IF + + ELSEIF (IncWaveType == 2) THEN ! irregular waves + ! For irregular waves we have four options: + ! 0) PM, + ! 1) Normal JONSWAP with gamma = 3.3, + ! 2) based on input files and + ! 3) JONSWAP with variable gamma value + ! + ! To have a clean interface without too many goto statement,we first check what type we are trying to read + + READ(FILEIP(1),*,IOSTAT=ios) ispec + + IF (ispec==0 .or. ispec==1) THEN !Normal PM or JONSWAP spectrum + Backspace(FILEIP(1)) + READ(FILEIP(1),*,IOSTAT=ios) ispec, Tp, Hs, h0, & + kh_max, seed, seed2, x0, y0 + gamma_jonswap = 3.3 + + ELSEIF (ispec == 2) THEN! 2D irregular waves with input file + READ(FILEIP(1),*,IOSTAT=ios) ispec, Tp, Hs, h0, & + kh_max, seed, seed2, x0, y0, & + inc_wave_file + + ELSEIF (ispec == 3) THEN ! 2D irregular waves with non-standard gamma value + Backspace(FILEIP(1)) + READ(FILEIP(1),*,IOSTAT=ios) ispec, Tp, Hs, h0, & + kh_max, seed, seed2, x0, y0, gamma_jonswap + + ELSEIF (ispec>=30) THEN ! multi-directional irregular waves + Backspace(FILEIP(1)) + READ(FILEIP(1),*,ERR=37,END=37,IOSTAT=ios) ispec, Tp, Hs, h0, & + kh_max, seed, seed2, x0, y0, & + inc_wave_file, beta0, s0 + + END IF + + IF( abs(ispec)<30 ) THEN + beta0=0 + s0=1.0 + END IF + +37 IF(ios>0)THEN + IF (abs(ispec)<30) THEN + Print *, 'ReadInputFileParameters: For IncWaveType==2 we need irregular wave parameters.' + ELSE + Print *, 'ReadInputFileParameters: For 3D waves, abs(ispec)>30, we need a heading angle and a spreading factor.' + END IF + STOP + END IF + END IF + ! ! IF (relaxONOFF==1) THEN ! GD: add this test in case of no relaxation zones defined @@ -475,6 +502,7 @@ SUBROUTINE ReadInputFileParameters RandomWave(i)%seed=seed; RandomWave(i)%seed2=seed2; RandomWave(i)%kh_max=kh_max; RandomWave(i)%inc_wave_file=inc_wave_file; RandomWave(i)%beta0=beta0; RandomWave(i)%S0=s0 + RandomWave(i)%gamma = gamma_jonswap If(RelaxZones(i)%XorYgen=='X' .AND. RelaxZones(i)%WavegenONOFF==1) THEN nGenZones=nGenZones+1 If( abs(RandomWave(i)%ispec) >= 30 .and. RelaxZones(i)%degrees /= 0) THEN diff --git a/src/main/OceanWave3DT0Setup.f90 b/src/main/OceanWave3DT0Setup.f90 index 4cb3f76..add6edf 100644 --- a/src/main/OceanWave3DT0Setup.f90 +++ b/src/main/OceanWave3DT0Setup.f90 @@ -102,10 +102,10 @@ SUBROUTINE OceanWave3DT0Setup WRITE(6,71)RandomWave(1)%Tp,RandomWave(1)%Hs,RandomWave(1)%seed,RandomWave(1)%seed2 71 FORMAT(' The incident wave is a 2D P-M spectrum with',/,& ' T_p=', e10.4,' and H_s=',e10.4,', seed values are:',/,2i10,//) - ELSEIF(RandomWave(1)%ispec==1)THEN - WRITE(6,72)RandomWave(1)%Tp,RandomWave(1)%Hs,RandomWave(1)%seed,RandomWave(1)%seed2 + ELSEIF(RandomWave(1)%ispec==1 .or. RandomWave(1)%ispec==3)THEN + WRITE(6,72)RandomWave(1)%Tp,RandomWave(1)%Hs,RandomWave(1)%gamma,RandomWave(1)%seed,RandomWave(1)%seed2 72 FORMAT(' The incident wave is a 2D JONSWAP spectrum with ',/, & - 'T_p=', e10.4,' and H_s=',e10.4,', seed values are:',/,2i10,//) + 'T_p=', e10.4,', H_s=',e10.4,' and gamma=',e10.4, ' and seed values are:',/,2i10,//) ELSEIF(RandomWave(1)%ispec==2)THEN WRITE(6,73)RandomWave(1)%inc_wave_file 73 FORMAT(' The incident wave will be read from file ',a30,/) @@ -184,7 +184,7 @@ SUBROUTINE OceanWave3DT0Setup Call random_wave_coefficients( RandomWave(i)%ispec, n_fft, RandomWave(i)%beta0, & dt, dx, RandomWave(i)%Tp, RandomWave(i)%Hs, RandomWave(i)%h0, g, & RandomWave(i)%inc_wave_file, RandomWave(i)%kh_max, RandomWave(i)%seed, & - RandomWave(i)%seed2, RandomWave(1)%eta0, RandomWave(1)%beta, RandomWave(1)%S0, n_cut ) + RandomWave(i)%seed2, RandomWave(1)%eta0, RandomWave(1)%beta, RandomWave(1)%S0, n_cut,RandomWave(i)%gamma ) ! ! Count the total number of grid points in each generation zone and allocate space ! for eta and phiS and compute the elevation and surface potential time-histories. diff --git a/src/utilities/JONSWAP_spectrum.f90 b/src/utilities/JONSWAP_spectrum.f90 index 8fee7ff..dc8f8fd 100644 --- a/src/utilities/JONSWAP_spectrum.f90 +++ b/src/utilities/JONSWAP_spectrum.f90 @@ -1,4 +1,4 @@ - FUNCTION JONSWAP_spectrum(FREQ, Hs, Tp) + FUNCTION JONSWAP_spectrum(FREQ, Hs, Tp,gamma) ! ! This function returns the value of the JONSWAP spectrum ! for the frequency FREQ, significant wave height Hs, and peak period @@ -11,7 +11,6 @@ FUNCTION JONSWAP_spectrum(FREQ, Hs, Tp) two=2._long, half=.5_long, five=5._long, grav=9.82_long pi = acos (-one) f_p=one/Tp - gamma=3.3_long alpha=3.32285_long * Hs**2 * f_p**4 A=alpha*grav**2/(two*pi)**4 B=five/four * f_p**4 diff --git a/src/utilities/build_coeff.f90 b/src/utilities/build_coeff.f90 index 5e6d41f..8d8a7a3 100644 --- a/src/utilities/build_coeff.f90 +++ b/src/utilities/build_coeff.f90 @@ -1,4 +1,4 @@ - SUBROUTINE build_coeff (ETA, N, Hs, Tp, DELT, SEED, seed2, i_spec) + SUBROUTINE build_coeff (ETA, N, Hs, Tp, DELT, SEED, seed2, i_spec,gamma) ! ! This subroutine returns Z(w), the Fourier transform of ! the wave elevation, zeta(t). The coefficients are based on @@ -11,7 +11,7 @@ SUBROUTINE build_coeff (ETA, N, Hs, Tp, DELT, SEED, seed2, i_spec) REAL(kind=long) :: Hs, Tp, pi, delt, df, cst, freq, spec, & pm_spectrum, jonswap_spectrum, zero=0._long, & one=1._long, two=2._long, four=4._long, half=.5_long, & - twopi, ran1, psi, mag + twopi, ran1, psi, mag, gamma REAL(kind=long) :: ETA(n) ! GD : modif so that types are compatible... n has to be a power of 2 COMPLEX(kind=long) :: phase EXTERNAL gasdev, ran1_b, pm_spectrum, jonswap_spectrum @@ -49,7 +49,7 @@ SUBROUTINE build_coeff (ETA, N, Hs, Tp, DELT, SEED, seed2, i_spec) IF(i_spec==0)THEN spec= pm_spectrum(freq, Hs, Tp) ELSE - spec= jonswap_spectrum(freq, Hs, Tp) + spec= jonswap_spectrum(freq, Hs, Tp,gamma) ENDIF write(78,*)freq,1/freq,spec diff --git a/src/utilities/random_wave_coefficients.f90 b/src/utilities/random_wave_coefficients.f90 index 0ebbc13..97ab2b8 100644 --- a/src/utilities/random_wave_coefficients.f90 +++ b/src/utilities/random_wave_coefficients.f90 @@ -1,5 +1,6 @@ SUBROUTINE random_wave_coefficients(i_spec, nt, beta0, dt, dx, Tp, Hs, depth, & - grav, inc_wave_file, kh_max, seed, seed2, eta0, beta, s0, n_cut) + grav, inc_wave_file, kh_max, seed, seed2, eta0, beta, s0, & + n_cut,gamma_jonswap) !----------------------------------------------------------------------- ! ! Build the coefficients for a pseudo-random 3D wave with direction BETA0 to the @@ -18,7 +19,7 @@ SUBROUTINE random_wave_coefficients(i_spec, nt, beta0, dt, dx, Tp, Hs, depth, & CHARACTER(len=30) inc_wave_file, header integer, parameter :: long=selected_real_kind(12,99) integer i, i_spec, seed, seed2, nt, n_cut - real(kind=long) :: Tp, Hs, dt, depth, grav, kh_max, dx, s0 + real(kind=long) :: Tp, Hs, dt, depth, grav, kh_max, dx, s0, gamma_jonswap real(kind=long) :: eta0(nt), beta(nt) ! Local variables @@ -54,9 +55,9 @@ SUBROUTINE random_wave_coefficients(i_spec, nt, beta0, dt, dx, Tp, Hs, depth, & IF(i_spec==0 .or. i_spec==30)THEN ! A long-crested P-M spectrum CALL build_coeff(eta0, nt, Hs, Tp, dt, seed, seed2, 0) - ELSEIf(i_spec==1 .or. i_spec==31)THEN + ELSEIf(i_spec==1 .or. i_spec==31 .or. i_spec==3)THEN ! A long-crested JONSWAP spectrum - CALL build_coeff(eta0, nt, Hs, Tp, dt, seed, seed2, 1) + CALL build_coeff(eta0, nt, Hs, Tp, dt, seed, seed2, 1,gamma_jonswap) ELSEIF(i_spec==33)THEN ! A JONSWAP spectrum with a normal spreading CALL build_coeff_3D(eta0, beta, nt, Hs, Tp, dt, seed, seed2, beta0) diff --git a/src/variabledefs/datatypes.f90 b/src/variabledefs/datatypes.f90 index ddee240..d421569 100644 --- a/src/variabledefs/datatypes.f90 +++ b/src/variabledefs/datatypes.f90 @@ -146,7 +146,7 @@ MODULE DataTypes ! DEFINE a Structure for random and mono-chromatic wave generation parameters TYPE RandomWaveParam - REAL(KIND=long) :: Tp, Hs, h0, kh_max, dx, x0, y0, beta0, S0 + REAL(KIND=long) :: Tp, Hs, h0, kh_max, dx, x0, y0, beta0, S0, gamma INTEGER :: ispec, seed, seed2, nf, nx, ny CHARACTER(len=30) inc_wave_file REAL(KIND=long), allocatable :: eta(:,:), Phis(:,:), eta0(:), Phis0(:), beta(:) From 79e2c4eef88144e8af282a19baea2d4e04303d90 Mon Sep 17 00:00:00 2001 From: Bo Terp Paulsen Date: Wed, 23 Dec 2015 15:13:32 +0100 Subject: [PATCH 15/56] small bug fix /Bo :wq --- src/IO/ReadInputFileParameters.f90 | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/IO/ReadInputFileParameters.f90 b/src/IO/ReadInputFileParameters.f90 index 42784c6..3d7c1b8 100644 --- a/src/IO/ReadInputFileParameters.f90 +++ b/src/IO/ReadInputFileParameters.f90 @@ -444,25 +444,23 @@ SUBROUTINE ReadInputFileParameters ! To have a clean interface without too many goto statement,we first check what type we are trying to read READ(FILEIP(1),*,IOSTAT=ios) ispec - + Backspace(FILEIP(1)) + print *, 'dsfasdfasdf ', ispec IF (ispec==0 .or. ispec==1) THEN !Normal PM or JONSWAP spectrum - Backspace(FILEIP(1)) READ(FILEIP(1),*,IOSTAT=ios) ispec, Tp, Hs, h0, & kh_max, seed, seed2, x0, y0 gamma_jonswap = 3.3 - ELSEIF (ispec == 2) THEN! 2D irregular waves with input file + ELSEIF (ispec == 2) THEN ! 2D irregular waves with input file READ(FILEIP(1),*,IOSTAT=ios) ispec, Tp, Hs, h0, & kh_max, seed, seed2, x0, y0, & inc_wave_file - + print *, x0, y0, inc_wave_file ELSEIF (ispec == 3) THEN ! 2D irregular waves with non-standard gamma value - Backspace(FILEIP(1)) READ(FILEIP(1),*,IOSTAT=ios) ispec, Tp, Hs, h0, & kh_max, seed, seed2, x0, y0, gamma_jonswap ELSEIF (ispec>=30) THEN ! multi-directional irregular waves - Backspace(FILEIP(1)) READ(FILEIP(1),*,ERR=37,END=37,IOSTAT=ios) ispec, Tp, Hs, h0, & kh_max, seed, seed2, x0, y0, & inc_wave_file, beta0, s0 From 4256221bdafb08d70fd7c4e52337b62dc382d032 Mon Sep 17 00:00:00 2001 From: Bo Terp Paulsen Date: Wed, 23 Dec 2015 15:20:57 +0100 Subject: [PATCH 16/56] Silly debug statement was still in code /Bo :wq --- common.mk | 4 ++-- src/IO/ReadInputFileParameters.f90 | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/common.mk b/common.mk index 80b897a..d7baef7 100644 --- a/common.mk +++ b/common.mk @@ -5,7 +5,7 @@ # Program name PROGNAME = OceanWave3D -LIBNAME = libOceanWave3D.so +LIBNAME = libOceanWave3D_botp.so # Installation directory INSTALLDIR = $(HOME)/bin @@ -23,7 +23,7 @@ BUILDDIR = $(PWD)/build #FC = gfortran-4.4 #FC = gf90 -USER = hbb +USER = botp-dev # First the blocks based on compiler name: diff --git a/src/IO/ReadInputFileParameters.f90 b/src/IO/ReadInputFileParameters.f90 index 3d7c1b8..15239ab 100644 --- a/src/IO/ReadInputFileParameters.f90 +++ b/src/IO/ReadInputFileParameters.f90 @@ -445,7 +445,6 @@ SUBROUTINE ReadInputFileParameters READ(FILEIP(1),*,IOSTAT=ios) ispec Backspace(FILEIP(1)) - print *, 'dsfasdfasdf ', ispec IF (ispec==0 .or. ispec==1) THEN !Normal PM or JONSWAP spectrum READ(FILEIP(1),*,IOSTAT=ios) ispec, Tp, Hs, h0, & kh_max, seed, seed2, x0, y0 From 0015e96c1076f94ac9fce95642deb751deaeb7a0 Mon Sep 17 00:00:00 2001 From: hbbingham Date: Thu, 21 Jan 2016 09:05:55 +0100 Subject: [PATCH 17/56] Extended the local smoothing breaking model to 3D and corrected some bugs in the new JONSWAP gamma_factor implementation -hbb --- .../OceanWave3D.inp.FilterBreakingModel2D | 89 ++++++++++ .../OceanWave3D.inp.FilterBreakingModel3D | 89 ++++++++++ src/utilities/LocalSmoothing3D.f90 | 163 ++++++++++++++++++ 3 files changed, 341 insertions(+) create mode 100644 examples/inputfiles/OceanWave3D.inp.FilterBreakingModel2D create mode 100644 examples/inputfiles/OceanWave3D.inp.FilterBreakingModel3D create mode 100644 src/utilities/LocalSmoothing3D.f90 diff --git a/examples/inputfiles/OceanWave3D.inp.FilterBreakingModel2D b/examples/inputfiles/OceanWave3D.inp.FilterBreakingModel2D new file mode 100644 index 0000000..9e955ae --- /dev/null +++ b/examples/inputfiles/OceanWave3D.inp.FilterBreakingModel2D @@ -0,0 +1,89 @@ +A very nonlinear stream function wave in 2D with smoothing and local filtering as a "breaking model". +0 1 .425 <- Initial condition (0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 3=Whalin bar, ... see Initialization.f90:SetupInitialConditions); IncWaveType (0=none, 1=stream function, 2=linear regular or irregular waves); accel_tol_fact (Optional local filtering based on free-surface acceleration to prevent breaking. Turned off if this value does not appear) +8. .5 .5 257 1 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ (0=even,1=clustering) GhostGrid (0=off,1=on) +3 3 3 1 1 1 <- alpha, beta, gamma, alphaprecond, betaprecond, gammaprecond +1025 .015 1 0. 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, c based on the incident wave), RK4-ExtrapolationON/OFF +9.82 1015. <- gravitational acceleration constant, fluid density +1 0 23 1e-8 1e-6 1 V 1 1 2 <- GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +0.10 1. 1.0 1.0 0 0. 1 6 24 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter (This line is not used unless IncWaveType==1) +-40 20 1 1 <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +1 257 1 1 1 1 1 1025 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride +1 0 <- 0/1=linear/nonlinear computations, dummy variable +1 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order +2 .8 32. 20. 1.5 1.3 1.0 <- i_breaking, T_1/2 (0.->wavemaker period), phi_b, phi_0, f_delta, f_cel, gamma_break. +1 0. 3 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(= +/- 9,10; sign gives direction) param XorY WavegenONOFF XorYgen degrees(=IC rotation) +0. 1. 0. 1. 9 3.5 X 1 X 0. +1. 2. 0. 1. 10 3.5 X 1 X 0. +6. 8. 0. 1. 9 3.5 X 0 X 0. +0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) +0 <- Curvilinear on/off +-1 .625 .1542 .4 20. -1 34 2. 0. run06.el <- i_spec, T_p, H_s, depth, kh_max, seed, seed2, x0, inc_wave_file. For a random wave, the spectrum: -1=monochromatic, 0=P-M, 1=JONSWAP, 2=Read from a file + + +Extra line for random wave generation should appear after Curvilinear on/off. +-1 1.1312 .002 2. 20. -1 34 2. 0. run06.el <- i_spec, T_p, H_s, depth, kh_max, seed, seed2, x0, inc_wave_file. For a random wave, the spectrum: -1=monochromatic, 0=P-M, 1=JONSWAP, 2=Read from a file + + +A sample relaxation zone line +0. 100. 0. 1. 9 3.5 X 1 X 0. <- [x0 x1 y0 y1] relaxation window, [ftype=+/- 9 or 10] function shape sign gives direction, param [exponential factor], [XorY, WavegenOnOff, XorYgen, degrees] + + +2D submerged bar test +15 <- Initial condition +35 3 1 513 1 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) +3 3 3 1 1 1 <- alpha, beta, gamma +2000 0.025 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-ExtrapolationON/OFF +9.81 <- gravitational acceleration constant +1 0 35 1e-6 1e-4 1 F 1 1 5 <- GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +0.02 0.4 2.0 2.01 1 0 1 4 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter +1 1 <- StoreDataOnOff +1 0 <- 0=linear, 1=nonlinear computations +0 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order !1 5 2 0 +1 5 2 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) +0 5 0 3 -9 5 X 0 X 0 ! Zone 1: Wave absorber (left) 0 5 0 3 10 5 X 1 X 0 ! Zone 1: Wave maker +30 35 0 3 9 5 X 0 X 0 ! Zone 2: Wave absorber (right) +1 5.0 1 0 0 0 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) +0 <- Curvilinear on/off + + + + + + + +Linear standing wave (3D) Curvilinear +8 <- Initial condition +2 2 1 17 17 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGridX, GhostGridY, GhostGridZ (0=off,1=on) +3 3 3 1 1 1 <- alpha, beta, gamma, (Preconditioner stencils:) alphaprecond,betaprecond,gammaprecond +1 1.345946927933294e-002 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-ExtrapolationON/OFF +9.81 <- gravitational acceleration constant +1 0 500 1e-6 1e-4 1 F 1 1 4 <- GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +2 2 2.0 2.0 0 0 1 4 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter +1 1 <- StoreDataOnOff +0 <- 0=linear, 1=nonlinear computations +0 9 6 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order +0 0 0 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) +0 2.0 1 1 1 1 1 <- SWENSE on/off, ramp in time, direction (1:+x ; -1:-x ; 2:+y ; -2:-y) (0=off,1=on) +0 <- Curvilinear on/off + + + +Test on flat bottom +7 <- Initial condition +8 7.5 1 65 129 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) +3 3 3 1 1 1 <- alpha, beta, gamma +640 0.0125 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-ExtrapolationON/OFF +9.81 <- gravitational acceleration constant +3 0 100 1e-7 1e-5 1 F 1 1 5 <- GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +0.1 1.0 1.0 3.0 0 0.0 1 4 24 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter +1 1 <- StoreDataOnOff +1 <- 0=linear, 1=nonlinear computations +0 6 10 0.02 0.02 0.2 <- SG-filtering on/off, filter half width, poly order !1 5 2 0 +1 0.0 4 X 10 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) +0 2 0 7.5 10 5 X 1 X 10 ! Zone 1: Wave maker (west) +0 8 0 2 10 5 Y 1 X 10 ! Zone 2: Wave maker (south) +0 8 5.5 7.5 -10 5 Y 1 X 10 ! Zone 3: Wave maker (north) +6 8 0 7.5 -10 5 X 1 X 10 ! Zone 4: Wave maker (east) +0 5.0 1 0 0 0 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) +0 <- Curvilinear on/off + diff --git a/examples/inputfiles/OceanWave3D.inp.FilterBreakingModel3D b/examples/inputfiles/OceanWave3D.inp.FilterBreakingModel3D new file mode 100644 index 0000000..16c37b0 --- /dev/null +++ b/examples/inputfiles/OceanWave3D.inp.FilterBreakingModel3D @@ -0,0 +1,89 @@ +A very nonlinear stream function wave in 3D with smoothing and local filtering as a "breaking model". +0 1 .425 <- Initial condition (0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 3=Whalin bar, ... see Initialization.f90:SetupInitialConditions); IncWaveType (0=none, 1=stream function, 2=linear regular or irregular waves); accel_tol_fact (Optional local filtering based on free-surface acceleration to prevent breaking. Turned off if this value does not appear) +8. .5 .5 257 13 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ (0=even,1=clustering) GhostGrid (0=off,1=on) +3 3 3 1 1 1 <- alpha, beta, gamma, alphaprecond, betaprecond, gammaprecond +1025 .015 1 0. 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, c based on the incident wave), RK4-ExtrapolationON/OFF +9.82 1015. <- gravitational acceleration constant, fluid density +1 0 23 1e-8 1e-6 1 V 1 1 2 <- GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +0.10 1. 1.0 1.0 0 0. 1 6 24 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter (This line is not used unless IncWaveType==1) +-40 20 1 1 <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +1 257 1 1 13 1 1 1025 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride +1 0 <- 0/1=linear/nonlinear computations, dummy variable +1 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order +2 .8 32. 20. 1.5 1.3 1.0 <- i_breaking, T_1/2 (0.->wavemaker period), phi_b, phi_0, f_delta, f_cel, gamma_break. +1 0. 3 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(= +/- 9,10; sign gives direction) param XorY WavegenONOFF XorYgen degrees(=IC rotation) +0. 1. 0. 1. 9 3.5 X 1 X 0. +1. 2. 0. 1. 10 3.5 X 1 X 0. +6. 8. 0. 1. 9 3.5 X 0 X 0. +0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) +0 <- Curvilinear on/off +-1 .625 .1542 .4 20. -1 34 2. 0. run06.el <- i_spec, T_p, H_s, depth, kh_max, seed, seed2, x0, inc_wave_file. For a random wave, the spectrum: -1=monochromatic, 0=P-M, 1=JONSWAP, 2=Read from a file + + +Extra line for random wave generation should appear after Curvilinear on/off. +-1 1.1312 .002 2. 20. -1 34 2. 0. run06.el <- i_spec, T_p, H_s, depth, kh_max, seed, seed2, x0, inc_wave_file. For a random wave, the spectrum: -1=monochromatic, 0=P-M, 1=JONSWAP, 2=Read from a file + + +A sample relaxation zone line +0. 100. 0. 1. 9 3.5 X 1 X 0. <- [x0 x1 y0 y1] relaxation window, [ftype=+/- 9 or 10] function shape sign gives direction, param [exponential factor], [XorY, WavegenOnOff, XorYgen, degrees] + + +2D submerged bar test +15 <- Initial condition +35 3 1 513 1 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) +3 3 3 1 1 1 <- alpha, beta, gamma +2000 0.025 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-ExtrapolationON/OFF +9.81 <- gravitational acceleration constant +1 0 35 1e-6 1e-4 1 F 1 1 5 <- GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +0.02 0.4 2.0 2.01 1 0 1 4 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter +1 1 <- StoreDataOnOff +1 0 <- 0=linear, 1=nonlinear computations +0 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order !1 5 2 0 +1 5 2 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) +0 5 0 3 -9 5 X 0 X 0 ! Zone 1: Wave absorber (left) 0 5 0 3 10 5 X 1 X 0 ! Zone 1: Wave maker +30 35 0 3 9 5 X 0 X 0 ! Zone 2: Wave absorber (right) +1 5.0 1 0 0 0 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) +0 <- Curvilinear on/off + + + + + + + +Linear standing wave (3D) Curvilinear +8 <- Initial condition +2 2 1 17 17 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGridX, GhostGridY, GhostGridZ (0=off,1=on) +3 3 3 1 1 1 <- alpha, beta, gamma, (Preconditioner stencils:) alphaprecond,betaprecond,gammaprecond +1 1.345946927933294e-002 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-ExtrapolationON/OFF +9.81 <- gravitational acceleration constant +1 0 500 1e-6 1e-4 1 F 1 1 4 <- GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +2 2 2.0 2.0 0 0 1 4 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter +1 1 <- StoreDataOnOff +0 <- 0=linear, 1=nonlinear computations +0 9 6 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order +0 0 0 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) +0 2.0 1 1 1 1 1 <- SWENSE on/off, ramp in time, direction (1:+x ; -1:-x ; 2:+y ; -2:-y) (0=off,1=on) +0 <- Curvilinear on/off + + + +Test on flat bottom +7 <- Initial condition +8 7.5 1 65 129 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) +3 3 3 1 1 1 <- alpha, beta, gamma +640 0.0125 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-ExtrapolationON/OFF +9.81 <- gravitational acceleration constant +3 0 100 1e-7 1e-5 1 F 1 1 5 <- GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +0.1 1.0 1.0 3.0 0 0.0 1 4 24 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter +1 1 <- StoreDataOnOff +1 <- 0=linear, 1=nonlinear computations +0 6 10 0.02 0.02 0.2 <- SG-filtering on/off, filter half width, poly order !1 5 2 0 +1 0.0 4 X 10 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) +0 2 0 7.5 10 5 X 1 X 10 ! Zone 1: Wave maker (west) +0 8 0 2 10 5 Y 1 X 10 ! Zone 2: Wave maker (south) +0 8 5.5 7.5 -10 5 Y 1 X 10 ! Zone 3: Wave maker (north) +6 8 0 7.5 -10 5 X 1 X 10 ! Zone 4: Wave maker (east) +0 5.0 1 0 0 0 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) +0 <- Curvilinear on/off + diff --git a/src/utilities/LocalSmoothing3D.f90 b/src/utilities/LocalSmoothing3D.f90 new file mode 100644 index 0000000..1a87d7f --- /dev/null +++ b/src/utilities/LocalSmoothing3D.f90 @@ -0,0 +1,163 @@ +SUBROUTINE LocalSmoothing3D(nx,ny,nz,itime,fop) + ! + ! This subroutine attempts to apply automatic localized smoothing to avoid any + ! breakdowns due to discontinuities in the free-surface. We check the Lagrangian + ! downward vertical acceleration everywhere and when it exceeds a given factor times g + ! we smooth a 10-point region centered at the point with the classical 3-point + ! filter [.25 .5 .25]. The feature is turned off by switching the threshold + ! factor to something larger than 100. + ! + ! ** This is the initial 3D version with smoothing along x-lines only ** + ! + USE GlobalVariables + IMPLICIT NONE + INTEGER :: nx, ny, nz, itime, fop + + ! Local variables and automatic workspace + INTEGER, SAVE :: i_first=0 + INTEGER :: i, j, i_flag, N_smoothed, i_smoothed(nx*ny), j_smoothed(nx*ny), k + REAL(KIND=long) accel_tol, dt_inv, Max_accel + REAL(KIND=long), POINTER :: et(:,:), ph(:,:), x(:,:), y(:,:), WHist(:,:,:), etax(:,:), & + etay(:,:), hx(:,:), hy(:,:), z(:), h(:,:), EtatHist(:,:,:) + REAL(KIND=long) :: etatem(nx,ny), Phitem(nx,ny), etatt(nx,ny), alpha_s(nx,ny), Wt(nx,ny), & + dWdt(nx,ny) + REAL(KIND=long) :: U(Nz,Nx,Ny), V(Nz,Nx,Ny), W(Nz,Nx,Ny), Wz(Nz,Nx,Ny), Wx(Nz,Nx,Ny), & + Wy(Nz,Nx,Ny), d(Nx,Ny) + ! + ! Initial set up of the output file + ! + IF(i_first==0)THEN + i_first=1 + OPEN(fop,file='local.smoothing',status='unknown') + WRITE(fop,10)accel_tol_fact +10 FORMAT('# Points where Lagrangian -dw/dt exceeded',e10.2, & + ' times g and local smoothing was applied: t, x, y, dw/dt') + END IF + ! + ! Do nothing for a factor larger than 100 + ! + IF(accel_tol_fact .le. 100. .and. itime .ge. 3)THEN + ! + ! Search for high accelerations and smooth an area around points where they occur. + ! + ! + ! Initialize + ! + x => FineGrid%x; y => FineGrid%y; et => WaveField%E; ph => WaveField%P; WHist => WaveField%WHist; + etax => WaveField%Ex; etay => WaveField%Ey; hx => FineGrid%hx; hy => FineGrid%hy; + z => FineGrid%z; h => FineGrid%h; EtatHist => WaveField%EtatHist; + etatem=et + Phitem=ph + alpha_s=zero + Do j=1,Ny + Do i=1,Nx + d(i,j)=h(i,j)+etatem(i,j); + end Do + End Do + ! + ! Take the computational-space derivatives of phi + ! + CALL DiffXEven(phi,U,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & + FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,alpha) + CALL DiffXEven(phi,V,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & + FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,beta) + CALL DiffZArbitrary(phi,W,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & + FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,gamma) + ! + ! Form the Eulerian fluid velocities + ! + Do j=1,Ny + Do i=1,Nx + Do k=1,Nz + W(k,i,j) = W(k,i,j)/d(i,j) + U(k,i,j) = U(k,i,j) + ((1-z(k))*hx(i,j)-z(k)*etax(i,j))*W(k,i,j) + V(k,i,j) = V(k,i,j) + ((1-z(k))*hy(i,j)-z(k)*etay(i,j))*W(k,i,j) + END Do + END Do + END Do + ! + ! Take computational-space derivatives of w and convert to physical-space derivatives. + ! + CALL DiffZArbitrary(W,Wz,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & + FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,gamma) + CALL DiffXEven(W,Wx,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & + FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,alpha) + CALL DiffYEven(W,Wy,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & + FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,beta) + Do j=1,Ny + Do i=1,Nx + Do k=1,Nz + Wz(k,i,j) = Wz(k,i,j)/d(i,j) + Wx(k,i,j) = Wx(k,i,j) + ((1-z(k))*hx(i,j)-z(k)*etax(i,j))*Wz(k,i,j) + Wy(k,i,j) = Wy(k,i,j) + ((1-z(k))*hy(i,j)-z(k)*etay(i,j))*Wz(k,i,j) + END Do + END Do + END DO + ! + ! Take a 3-point one-sided difference to get the computational-space dw/dt at the + ! current time step and convert it to a physical-space dw/dt. This is only done + ! on the free-surface, i.e. at vertical grid point k=nz. + ! + dt_inv=one/dt + Do j=1,Ny + DO i=1,nx + Wt(i,j)=half*dt_inv*(three*WHist(i,j,1)-four*WHist(i,j,2)+WHist(i,j,3)) & + -Wz(Nz,i,j)*EtatHist(i,j,1) + END Do + END DO + ! + ! Form the vertical particle acceleration on the free-surface, (the Lagrangian dw/dt). + ! + Do j=1,Ny + DO i=1,nx + Wt(i,j)=Wt(i,j)+U(Nz,i,j)*Wx(Nz,i,j) + V(Nz,i,j)*Wy(Nz,i,j) + W(Nz,i,j)*Wz(Nz,i,j) + END DO + END Do + ! + ! First build a coefficient vector which is .25 at those points which surround a point + ! of high accelerations. + ! + accel_tol=accel_tol_fact*g + i_flag=0 + N_smoothed=0; Max_accel=zero; + Do j=1,ny + DO i=6,nx-5 + ! + ! If the downward vertical acceleration exceeds the tolerance, we smooth. + ! + IF(-Wt(i,j) >= accel_tol)THEN + i_flag=1 + N_smoothed=N_smoothed+1 + i_smoothed(N_smoothed)=i + j_smoothed(N_smoothed)=j + alpha_s(i-5:i+5,j)=0.25_long + END IF + END DO + END Do + IF(i_flag==1)THEN + ! + ! Smooth the elevation and surface velocity. + ! + Do j=1,ny + DO i=2,nx-1 + et(i,j)=alpha_s(i,j)*etatem(i-1,j)+(one-two*alpha_s(i,j))*etatem(i,j) & + +alpha_s(i,j)*etatem(i+1,j) + ph(i,j)=alpha_s(i,j)*Phitem(i-1,j)+(one-two*alpha_s(i,j))*Phitem(i,j) & + +alpha_s(i,j)*Phitem(i+1,j) + END DO + END Do + ! + ! Write the positions where smoothing was applied and the accelerations found. + ! + WRITE(fop,11) + DO i=1,N_smoothed + WRITE(fop,12)(itime-1)*dt,x(i_smoothed(i),j_smoothed(i)), & + y(i_smoothed(i),j_smoothed(i)),Wt(i_smoothed(i),j_smoothed(i)) + END DO +11 FORMAT() +12 FORMAT(4e16.4) + END IF + + END IF + RETURN +END SUBROUTINE LocalSmoothing3D From 90ce2363dbce34a112b5ba562c9075d6fcce3df5 Mon Sep 17 00:00:00 2001 From: hbbingham Date: Thu, 21 Jan 2016 09:11:36 +0100 Subject: [PATCH 18/56] committing --- common.mk | 2 +- .../inputfiles/OceanWave3D.inp.RandomWave3D_closed | 4 ++-- examples/inputfiles/OceanWave3D.inp.Whalin | 6 +++--- src/IO/ReadInputFileParameters.f90 | 4 ++-- src/main/OceanWave3DTakeATimeStep.f90 | 3 +++ src/utilities/LocalSmoothing2D.f90 | 10 +++++----- src/utilities/build_coeff_3D.f90 | 6 +++--- src/utilities/makefile.inc | 1 + src/utilities/random_wave_coefficients.f90 | 2 +- 9 files changed, 21 insertions(+), 17 deletions(-) diff --git a/common.mk b/common.mk index d7baef7..e5498cb 100644 --- a/common.mk +++ b/common.mk @@ -23,7 +23,7 @@ BUILDDIR = $(PWD)/build #FC = gfortran-4.4 #FC = gf90 -USER = botp-dev +USER = hbb # First the blocks based on compiler name: diff --git a/examples/inputfiles/OceanWave3D.inp.RandomWave3D_closed b/examples/inputfiles/OceanWave3D.inp.RandomWave3D_closed index 87d9e4c..d97daf4 100644 --- a/examples/inputfiles/OceanWave3D.inp.RandomWave3D_closed +++ b/examples/inputfiles/OceanWave3D.inp.RandomWave3D_closed @@ -1,5 +1,5 @@ A flat bottom, 3D, JONSWAP spectrum with normal spreading around beta=0. Closed tank with a beach. This is a coarse resolution to demonstrate the set-up with a relatively short run (10-15 minutes CPU) -0 2 <- Initial condition (0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 3=Whalin bar, ... see SetupInitialConditions); IncWaveType (0=none, 1=stream function, 2=linear regular or irregular waves) +0 2 1.0 <- Initial condition (0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 3=Whalin bar, ... see SetupInitialConditions); IncWaveType (0=none, 1=stream function, 2=linear regular or irregular waves); gfac (Optional local smoothing breaking model factor for -dw/dt >= gfac*g). 600. 400. 80. 97 65 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) 3 3 3 1 1 1 <- alpha, beta, gamma 1201 0.5 1 0.5 0 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-ExtrapolationON/OFF, (optional time0) @@ -16,4 +16,4 @@ A flat bottom, 3D, JONSWAP spectrum with normal spreading around beta=0. Closed 0 0 <- Damping pressure zone: PDampingOnOff=0 (off), number of zones. For each zone include the line: x1, x2, y1, y2 (bounds of the zone), gamma0 (dynamic FSBC), Gamma0 (kinematic FSBC), i_damperType (0=friction on the velocity, 1=friction on the potential). 0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) 0 <- Curvilinear on/off -33 8. 2. 80. 20. -1 34 50. 200. run06.el 0.0 1.0 <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, inc_wave_file, (beta, S if 3D). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. +33 8. 2. 80. 20. -1 -34 50. 200. run06.el 0.0 1.0 3.3 <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, inc_wave_file, (beta, S, gamma if 3D). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. diff --git a/examples/inputfiles/OceanWave3D.inp.Whalin b/examples/inputfiles/OceanWave3D.inp.Whalin index 56e2495..87f4a1c 100644 --- a/examples/inputfiles/OceanWave3D.inp.Whalin +++ b/examples/inputfiles/OceanWave3D.inp.Whalin @@ -1,12 +1,12 @@ Whalins experiment (Release Version) 3 1 <- Initial condition (0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 3=Whalin bar, ... see Initialization.f90:SetupInitialConditions); IncWaveType (0=none, 1=stream function, 2=linear irregular waves) -35. 3.048 1. 257 17 6 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) +35. 3.048 1. 257 17 7 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) 3 3 3 1 1 1 <- alpha, beta, gamma, alphaprecond 1283 0.039 1 0 0 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)) 9.81 <- gravitational acceleration constant -1 3 0 14 1e-6 1e-4 1 F 1 1 5 <- Solve (GMRES=0,DC=1), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), absolute tolerance (abstol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +1 1 0 23 1e-8 1e-6 1 V 1 1 2 <- Solve (DC=1,GMRES=1), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), absolute tolerance (abstol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven 0.015 0.4572 2.0 2.0 1 0 1 4 32 <- wavegeneration functions(0=sinusoidal, 1=SF), Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter --40 20 1 1 <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +40 20 1 1 <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. 80 80 1 1 1 1 1 800 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride 1 0 <- linear/nonlinear ONOFF 0 6 10 0.08 0.08 0.4 <- SG filterling on/off diff --git a/src/IO/ReadInputFileParameters.f90 b/src/IO/ReadInputFileParameters.f90 index 15239ab..003c29c 100644 --- a/src/IO/ReadInputFileParameters.f90 +++ b/src/IO/ReadInputFileParameters.f90 @@ -462,7 +462,7 @@ SUBROUTINE ReadInputFileParameters ELSEIF (ispec>=30) THEN ! multi-directional irregular waves READ(FILEIP(1),*,ERR=37,END=37,IOSTAT=ios) ispec, Tp, Hs, h0, & kh_max, seed, seed2, x0, y0, & - inc_wave_file, beta0, s0 + inc_wave_file, beta0, s0, gamma_jonswap END IF @@ -475,7 +475,7 @@ SUBROUTINE ReadInputFileParameters IF (abs(ispec)<30) THEN Print *, 'ReadInputFileParameters: For IncWaveType==2 we need irregular wave parameters.' ELSE - Print *, 'ReadInputFileParameters: For 3D waves, abs(ispec)>30, we need a heading angle and a spreading factor.' + Print *, 'ReadInputFileParameters: For 3D waves, abs(ispec)>30, we need a heading angle, a spreading factor and a JONSWAP gamma factor.' END IF STOP END IF diff --git a/src/main/OceanWave3DTakeATimeStep.f90 b/src/main/OceanWave3DTakeATimeStep.f90 index e4e9aff..a10635d 100644 --- a/src/main/OceanWave3DTakeATimeStep.f90 +++ b/src/main/OceanWave3DTakeATimeStep.f90 @@ -27,6 +27,9 @@ SUBROUTINE OceanWave3DTakeATimeStep IF(FineGrid%ny==1)THEN CALL LocalSmoothing2D( FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & FineGrid%Nz+GhostGridZ,tstep,fileop(12) ) + ELSE + CALL LocalSmoothing3D( FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & + FineGrid%Nz+GhostGridZ,tstep,fileop(12) ) END IF ! ! Check for wave breaking at this step and if found update diff --git a/src/utilities/LocalSmoothing2D.f90 b/src/utilities/LocalSmoothing2D.f90 index b8cee34..32b6bb2 100644 --- a/src/utilities/LocalSmoothing2D.f90 +++ b/src/utilities/LocalSmoothing2D.f90 @@ -7,7 +7,7 @@ SUBROUTINE LocalSmoothing2D(nx,ny,nz,itime,fop) ! filter [.25 .5 .25]. The feature is turned off by switching the threshold ! factor to something larger than 100. ! - ! ** This still needs to be extended to 3D. ** -hbb + ! ** This is the 2D version. ** ! USE GlobalVariables IMPLICIT NONE @@ -20,7 +20,7 @@ SUBROUTINE LocalSmoothing2D(nx,ny,nz,itime,fop) REAL(KIND=long), POINTER :: et(:,:), ph(:,:), x(:,:), WHist(:,:,:), etax(:,:), hx(:,:), z(:), & h(:,:), EtatHist(:,:,:) REAL(KIND=long) :: etatem(nx,ny), Phitem(nx,ny), etatt(nx,ny), alpha_s(nx,ny), Wt(nx,ny), dWdt(nx,ny) - REAL(KIND=long) :: Utem(Nz,Nx,Ny), V(Nz,Nx,Ny), Wtem(Nz,Nx,Ny), Wz(Nz,Nx,Ny), Wx(Nz,Nx,Ny), d(Nx,Ny) + REAL(KIND=long) :: Utem(Nz,Nx,Ny), Wtem(Nz,Nx,Ny), Wz(Nz,Nx,Ny), Wx(Nz,Nx,Ny), d(Nx,Ny) !SIGS added line above ! Initial set up of the output file ! @@ -29,7 +29,7 @@ SUBROUTINE LocalSmoothing2D(nx,ny,nz,itime,fop) OPEN(fop,file='local.smoothing',status='unknown') WRITE(fop,10)accel_tol_fact 10 FORMAT('# Points where Lagrangian -dw/dt exceeded',e10.2, & - ' times g and local smoothing was applied: t, x, dw/dt') + ' times g and local smoothing was applied: t, x, y, dw/dt') END IF ! ! Do nothing for a factor larger than 100 @@ -137,10 +137,10 @@ SUBROUTINE LocalSmoothing2D(nx,ny,nz,itime,fop) ! WRITE(fop,11) DO i=1,N_smoothed - WRITE(fop,12)(itime-1)*dt,x(i_smoothed(i),1),Wt(i_smoothed(i),1) + WRITE(fop,12)(itime-1)*dt,x(i_smoothed(i),1),0.0,Wt(i_smoothed(i),1) END DO 11 FORMAT() -12 FORMAT(3e16.4) +12 FORMAT(4e16.4) END IF END IF diff --git a/src/utilities/build_coeff_3D.f90 b/src/utilities/build_coeff_3D.f90 index ab0ae08..a61413a 100644 --- a/src/utilities/build_coeff_3D.f90 +++ b/src/utilities/build_coeff_3D.f90 @@ -1,4 +1,4 @@ - SUBROUTINE build_coeff_3D (ETA, beta, N, Hs, Tp, DELT, SEED, seed2, beta0) + SUBROUTINE build_coeff_3D (ETA, beta, N, Hs, Tp, DELT, SEED, seed2, beta0,gamma) ! ! This subroutine returns Z(w) and kvec, the Fourier transform of ! the wave elevation, zeta(t) and a direction beta(w) for each frequency. @@ -9,7 +9,7 @@ SUBROUTINE build_coeff_3D (ETA, beta, N, Hs, Tp, DELT, SEED, seed2, beta0) IMPLICIT none integer, parameter :: long=selected_real_kind(12,99) INTEGER SEED, seed2, n - REAL(kind=long) :: Hs, Tp, delt, beta0 + REAL(kind=long) :: Hs, Tp, delt, beta0,gamma REAL(kind=long) :: ETA(n), beta(n) ! Locals Integer i @@ -60,7 +60,7 @@ SUBROUTINE build_coeff_3D (ETA, beta, N, Hs, Tp, DELT, SEED, seed2, beta0) ! Get the wave spectrum value and the direction at this frequency. - spec= jonswap_spectrum(freq, Hs, Tp) + spec= jonswap_spectrum(freq, Hs, Tp, gamma) sigma=0.2_long*(freq/fp)**2.5_long erf1=Erf(pi/(two*sqrt(two*sigma))) diff --git a/src/utilities/makefile.inc b/src/utilities/makefile.inc index 2038f40..b07f942 100644 --- a/src/utilities/makefile.inc +++ b/src/utilities/makefile.inc @@ -16,6 +16,7 @@ SOURCES += $(LDIR)/eqns.f SOURCES += $(LDIR)/fdwvnum.f90 SOURCES += $(LDIR)/init.f SOURCES += $(LDIR)/LocalSmoothing2D.f90 +SOURCES += $(LDIR)/LocalSmoothing3D.f90 SOURCES += $(LDIR)/lubksb.f90 SOURCES += $(LDIR)/ludcmp.f90 SOURCES += $(LDIR)/ran1.f90 diff --git a/src/utilities/random_wave_coefficients.f90 b/src/utilities/random_wave_coefficients.f90 index 97ab2b8..69b5a65 100644 --- a/src/utilities/random_wave_coefficients.f90 +++ b/src/utilities/random_wave_coefficients.f90 @@ -60,7 +60,7 @@ SUBROUTINE random_wave_coefficients(i_spec, nt, beta0, dt, dx, Tp, Hs, depth, & CALL build_coeff(eta0, nt, Hs, Tp, dt, seed, seed2, 1,gamma_jonswap) ELSEIF(i_spec==33)THEN ! A JONSWAP spectrum with a normal spreading - CALL build_coeff_3D(eta0, beta, nt, Hs, Tp, dt, seed, seed2, beta0) + CALL build_coeff_3D(eta0, beta, nt, Hs, Tp, dt, seed, seed2, beta0, gamma_jonswap) ELSEIF(i_spec==34)THEN ! A JONSWAP spectrum with a cos^s spreading CALL build_coeff_3D_Cos(eta0, beta, nt, Hs, Tp, dt, seed, seed2, beta0, s0) From e1583ed092a0ccbce61945e696e78dc73bc3054a Mon Sep 17 00:00:00 2001 From: hbbingham Date: Thu, 21 Jan 2016 11:29:32 +0100 Subject: [PATCH 19/56] Fixed a last bug in the 3D irregular wave generation routines -hbb --- src/utilities/JONSWAP_spectrum.f90 | 4 ++-- src/utilities/build_coeff_3D_Cos.f90 | 8 ++++---- src/utilities/random_wave_coefficients.f90 | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/utilities/JONSWAP_spectrum.f90 b/src/utilities/JONSWAP_spectrum.f90 index dc8f8fd..dbca060 100644 --- a/src/utilities/JONSWAP_spectrum.f90 +++ b/src/utilities/JONSWAP_spectrum.f90 @@ -1,4 +1,4 @@ - FUNCTION JONSWAP_spectrum(FREQ, Hs, Tp,gamma) + FUNCTION JONSWAP_spectrum(FREQ, Hs, Tp, gamma) ! ! This function returns the value of the JONSWAP spectrum ! for the frequency FREQ, significant wave height Hs, and peak period @@ -15,7 +15,7 @@ FUNCTION JONSWAP_spectrum(FREQ, Hs, Tp,gamma) A=alpha*grav**2/(two*pi)**4 B=five/four * f_p**4 - IF (freq.le.zero) then + IF (freq.le.zero) then jonswap_spectrum = zero ELSEIF(freq<=f_p)THEN sigma=.07_long diff --git a/src/utilities/build_coeff_3D_Cos.f90 b/src/utilities/build_coeff_3D_Cos.f90 index e381263..2ec2078 100644 --- a/src/utilities/build_coeff_3D_Cos.f90 +++ b/src/utilities/build_coeff_3D_Cos.f90 @@ -1,4 +1,4 @@ - SUBROUTINE build_coeff_3D_Cos (ETA, beta, N, Hs, Tp, DELT, SEED, seed2, beta0, s0) + SUBROUTINE build_coeff_3D_Cos (ETA, beta, N, Hs, Tp, DELT, SEED, seed2, beta0, s0, gamma) ! ! This subroutine returns Z(w) and kvec, the Fourier transform of ! the wave elevation, zeta(t) and a direction beta(w) for each frequency. @@ -8,7 +8,7 @@ SUBROUTINE build_coeff_3D_Cos (ETA, beta, N, Hs, Tp, DELT, SEED, seed2, beta0, s IMPLICIT none integer, parameter :: long=selected_real_kind(12,99) INTEGER SEED, seed2, n, ncta - REAL(kind=long) :: Hs, Tp, delt, beta0, s0 + REAL(kind=long) :: Hs, Tp, delt, beta0, s0, gamma REAL(kind=long) :: ETA(n), beta(n) ! Locals Integer i @@ -40,7 +40,7 @@ SUBROUTINE build_coeff_3D_Cos (ETA, beta, N, Hs, Tp, DELT, SEED, seed2, beta0, s mr0=0.0 DO i = 1,n freq=i*df - sf= jonswap_spectrum(freq, Hs, Tp) + sf= jonswap_spectrum(freq, Hs, Tp, gamma) mr0=mr0+sf*df END DO @@ -83,7 +83,7 @@ SUBROUTINE build_coeff_3D_Cos (ETA, beta, N, Hs, Tp, DELT, SEED, seed2, beta0, s ! Get the wave spectrum value and the direction at this frequency. - spec= jonswap_spectrum(freq, Hs, Tp) + spec= jonswap_spectrum(freq, Hs, Tp, gamma) ! ! Write the spectral coefficients for inspection. diff --git a/src/utilities/random_wave_coefficients.f90 b/src/utilities/random_wave_coefficients.f90 index 69b5a65..9100184 100644 --- a/src/utilities/random_wave_coefficients.f90 +++ b/src/utilities/random_wave_coefficients.f90 @@ -63,7 +63,7 @@ SUBROUTINE random_wave_coefficients(i_spec, nt, beta0, dt, dx, Tp, Hs, depth, & CALL build_coeff_3D(eta0, beta, nt, Hs, Tp, dt, seed, seed2, beta0, gamma_jonswap) ELSEIF(i_spec==34)THEN ! A JONSWAP spectrum with a cos^s spreading - CALL build_coeff_3D_Cos(eta0, beta, nt, Hs, Tp, dt, seed, seed2, beta0, s0) + CALL build_coeff_3D_Cos(eta0, beta, nt, Hs, Tp, dt, seed, seed2, beta0, s0, gamma_jonswap) ELSEIF(i_spec == 2) THEN open(21,file=inc_wave_file,status='old') READ(21,'(A)',err=15)header From 33d1a9d0b5968d90cf300ddfc875558e185742ef Mon Sep 17 00:00:00 2001 From: hbbingham Date: Sun, 24 Jan 2016 20:58:30 +0100 Subject: [PATCH 20/56] The log file 'LOG.txt' now contains the info that is written to the screen. -hbb --- .../OceanWave3D.inp.RollerBreakingModel2D | 21 +++++ src/IO/ReadInputFileParameters.f90 | 76 +++++++++++++++- .../ConstructTableCrossDerivatives.f90 | 2 +- src/functions/FactorPreconditioner.f90 | 6 +- src/functions/FilterInit.f90 | 7 +- src/functions/PreparePreconditioner.f90 | 9 +- src/initialization/Initialize.f90 | 4 +- src/initialization/PreProcessDiffStencils.f90 | 5 +- .../PreprocessRelaxationZones.f90 | 3 + src/initialization/SetupInitialConditions.f90 | 35 ++++++- src/main/OceanWave3D.f90 | 2 + src/main/OceanWave3DT0Setup.f90 | 91 ++++++++++++++----- src/main/OceanWave3DTakeATimeStep.f90 | 21 +++++ src/wrappers/LUfactor.f90 | 9 +- 14 files changed, 251 insertions(+), 40 deletions(-) create mode 100644 examples/inputfiles/OceanWave3D.inp.RollerBreakingModel2D diff --git a/examples/inputfiles/OceanWave3D.inp.RollerBreakingModel2D b/examples/inputfiles/OceanWave3D.inp.RollerBreakingModel2D new file mode 100644 index 0000000..49d75c3 --- /dev/null +++ b/examples/inputfiles/OceanWave3D.inp.RollerBreakingModel2D @@ -0,0 +1,21 @@ +A very nonlinear stream function wave in 2D with SG smoothing and the roller breaking model turned on. +0 1 <- Initial condition (0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 3=Whalin bar, ... see Initialization.f90:SetupInitialConditions); IncWaveType (0=none, 1=stream function, 2=linear regular or irregular waves); accel_tol_fact (Optional local filtering based on free-surface acceleration to prevent breaking. Turned off if this value does not appear) +8. 1. .5 257 1 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ (0=even,1=clustering) GhostGrid (0=off,1=on) +3 3 3 1 1 1 <- alpha, beta, gamma, alphaprecond, betaprecond, gammaprecond +1025 .015 1 0. 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, c based on the incident wave), RK4-ExtrapolationON/OFF +9.82 1015. <- gravitational acceleration constant, fluid density +1 0 23 1e-8 1e-6 1 V 1 1 2 <- GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +0.10 1. 1.0 1.0 0 0. 1 6 24 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter (This line is not used unless IncWaveType==1) +-40 20 1 1 <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +1 257 1 1 1 1 1 1025 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride +1 0 <- 0/1=linear/nonlinear computations, dummy variable +1 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order +1 .8 32. 20. 1.5 1.3 1.0 <- i_breaking, T_1/2 (0.->wavemaker period), phi_b, phi_0, f_delta, f_cel, gamma_break. +1 0. 3 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(= +/- 9,10; sign gives direction) param XorY WavegenONOFF XorYgen degrees(=IC rotation) +0. 1. 0. 1. 9 3.5 X 1 X 0. +1. 2. 0. 1. 10 3.5 X 1 X 0. +6. 8. 0. 1. 9 3.5 X 0 X 0. +0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) +0 <- Curvilinear on/off +-1 .625 .1542 .4 20. -1 34 2. 0. run06.el <- i_spec, T_p, H_s, depth, kh_max, seed, seed2, x0, inc_wave_file. For a random wave, the spectrum: -1=monochromatic, 0=P-M, 1=JONSWAP, 2=Read from a file + diff --git a/src/IO/ReadInputFileParameters.f90 b/src/IO/ReadInputFileParameters.f90 index 003c29c..18cc7e5 100644 --- a/src/IO/ReadInputFileParameters.f90 +++ b/src/IO/ReadInputFileParameters.f90 @@ -18,6 +18,8 @@ SUBROUTINE ReadInputFileParameters READ (FILEIP(1),'(A)',ERR=100,IOSTAT=ios) HEAD(1) WRITE (*,FMT='(A,A/)') ' Input file with model parameters : ', filenameINPUT WRITE (*,FMT='(A,A/)') ' Header title.................... : ', HEAD(1) + WRITE (fileop(1),FMT='(A,A/)') ' Input file with model parameters : ', filenameINPUT + WRITE (fileop(1),FMT='(A,A/)') ' Header title.................... : ', HEAD(1) READ (FILEIP(1),*) IC BACKSPACE(FILEIP(1)) @@ -30,6 +32,11 @@ SUBROUTINE ReadInputFileParameters WRITE(*,FMT='(A,F8.4)') ' Local filtering downward vertical acceleration limit is: ', & accel_tol_fact WRITE(*,FMT='(A//)') ' * g m/s^2. Theoretically breaking should occur between 0.5 and 1.' + WRITE(fileop(1),FMT='(A/)') ' PARAMETER INPUT' + WRITE(fileop(1),FMT='(A,I3/)') ' Initial Condition (IC), Predefined : ',IC + WRITE(fileop(1),FMT='(A,F8.4)') ' Local filtering downward vertical acceleration limit is: ', & + accel_tol_fact + WRITE(fileop(1),FMT='(A//)') ' * g m/s^2. Theoretically breaking should occur between 0.5 and 1.' GO TO 24 @@ -47,36 +54,47 @@ SUBROUTINE ReadInputFileParameters READ (FILEIP(1),*) Lx, Ly, Lz, FineGrid%Nx, FineGrid%Ny, FineGrid%Nz, GridX, GridY, GridZ, GhostGridX, & GhostGridY, GhostGridZ, fname_bottom WRITE(*,FMT='(A,A,A)') ' Bathymetry: ',fname_bottom,' (file)' + WRITE(fileop(1),FMT='(A,A,A)') ' Bathymetry: ',fname_bottom,' (file)' ELSE WRITE(*,FMT='(A)') ' Bathymetry : Predefined (in setup for IC)' + WRITE(fileop(1),FMT='(A)') ' Bathymetry : Predefined (in setup for IC)' END IF ! WRITE (*,900) ' (Nx,Ny,Nz)=(',FineGrid%Nx,',',FineGrid%Ny,',',FineGrid%Nz,')' IF (FineGrid%Nx>1) THEN dx = Lx/(FineGrid%Nx-one) WRITE (*,903) ' Size of dx: ',dx + WRITE (fileop(1),903) ' Size of dx: ',dx ELSE WRITE (*,FMT='(/A)') ' The problem is without an x-dimension.' + WRITE (fileop(1),FMT='(/A)') ' The problem is without an x-dimension.' GhostGridX=0 ENDIF IF (FineGrid%Ny>1) THEN dy = Ly/(FineGrid%Ny-one) WRITE (*,903) ' Size of dy: ',dy + WRITE (fileop(1),903) ' Size of dy: ',dy ELSE WRITE (*,FMT='(/A)') ' The problem is without a y-dimension.' + WRITE (fileop(1),FMT='(/A)') ' The problem is without a y-dimension.' GhostGridY=0 ENDIF IF (GridZ==0) THEN WRITE (*,FMT='(/A)') ' Even node-distribution in Z' + WRITE (fileop(1),FMT='(/A)') ' Even node-distribution in Z' ELSEIF (GridZ==1) THEN WRITE (*,FMT='(/A)') ' Uneven node-distribution in Z' + WRITE (fileop(1),FMT='(/A)') ' Uneven node-distribution in Z' ENDIF IF (GhostGridZ==1) THEN WRITE (*,FMT='(A/)') ' Ghost point layer included below bottom.' + WRITE (fileop(1),FMT='(A/)') ' Ghost point layer included below bottom.' ELSE IF (GhostGridZ==0) THEN WRITE (*,FMT='(A/)') ' Kinematic condition will be imposed directly.' + WRITE (fileop(1),FMT='(A/)') ' Kinematic condition will be imposed directly.' ELSE WRITE (*,FMT='(A/)') ' Error: GhostGrid not 0 or 1.'; STOP + WRITE (fileop(1),FMT='(A/)') ' Error: GhostGrid not 0 or 1.'; STOP ENDIF IF(IC<0)THEN @@ -85,6 +103,9 @@ SUBROUTINE ReadInputFileParameters PRINT *,'INPUT: Initial conditions will be read from OceanWave3D.init with header' PRINT *, head(3) print *,' ' + WRITE(FILEOP(1),*)'INPUT: Initial conditions will be read from OceanWave3D.init with header' + WRITE(FILEOP(1),*) head(3) + write(fileop(1),*)' ' READ(fileip(3),*)xtankIC,ytankIC,nxIC,nyIC,t0IC IF ((nxIC-FineGrid%Nx .ne. 0) .or. (nyIC-FineGrid%Ny .ne. 0)) THEN PRINT *, 'Your input and initial conditions grids must agree.' @@ -108,6 +129,8 @@ SUBROUTINE ReadInputFileParameters ENDIF WRITE (*,901) ' Half-width stencils: (alpha,beta,gamma)=(',alpha,',',beta,',',gamma,')' WRITE (*,901) ' Half-width stencils: (alpha,beta,gamma)=(',alphaprecond,',',betaprecond,',',gammaprecond,') (Preconditioner)' + WRITE (fileop(1),901) ' Half-width stencils: (alpha,beta,gamma)=(',alpha,',',beta,',',gamma,')' + WRITE (fileop(1),901) ' Half-width stencils: (alpha,beta,gamma)=(',alphaprecond,',',betaprecond,',',gammaprecond,') (Preconditioner)' IF (2*alpha+1>FineGrid%Nx .AND. FineGrid%Nx>1) THEN GOTO 101 ENDIF @@ -152,28 +175,39 @@ SUBROUTINE ReadInputFileParameters print *, '** Your run starting time from OceanWave3D.inp does not agree with the ' print *,' one from OceanWave3D.init. The init value will be used. **' print *, ' ' + write(fileop(1),*) ' ' + write(fileop(1),*) '** Your run starting time from OceanWave3D.inp does not agree with the ' + write(fileop(1),*)' one from OceanWave3D.init. The init value will be used. **' + write(fileop(1),*) ' ' END IF print *, 'Starting time for this run is ',time0 WRITE (*,902) ' Number of time steps chosen: ', Nsteps + write(fileop(1),*), 'Starting time for this run is ',time0 + WRITE (fileop(1),902) ' Number of time steps chosen: ', Nsteps IF (CFL/=zero) THEN ! GD: FIXME for 2D-3D case with propagation along y... IF(FineGrid%Nx==1) THEN dt = CFL*dy !/c WRITE (*,903) ' CFL constant given by user (dt=CFL*dy)', CFL + WRITE (fileop(1),903) ' CFL constant given by user (dt=CFL*dy)', CFL ELSE dt = CFL*dx !/c WRITE (*,903) ' CFL constant given by user (dt=CFL*dx)', CFL + WRITE (fileop(1),903) ' CFL constant given by user (dt=CFL*dx)', CFL ENDIF ENDIF WRITE (*,903) ' Size of time increment: ', dt + WRITE (fileop(1),903) ' Size of time increment: ', dt SELECT CASE (timemethod) CASE (1) ! Classical RK4 RKSTAGES = 4 WRITE (*,*) ' Time-integration method: Classical Runge-Kutta fourth order' + WRITE (fileop(1),*) ' Time-integration method: Classical Runge-Kutta fourth order' IF (extrapolationONOFF==1) THEN WRITE (*,*) ' - Optimization of RK scheme using extrapolation on seperate RK stages will be employed.' + WRITE (fileop(1),*) ' - Optimization of RK scheme using extrapolation on seperate RK stages will be employed.' ENDIF CASE (2) ! Carpenter & Kennedy low-storage RK45 ! @@ -181,6 +215,7 @@ SUBROUTINE ReadInputFileParameters RKSTAGES = 5 WRITE (*,*) ' Time-integration method: Low-storage five-stage Runge-Kutta fourth order (Carpenter & Kennedy)' + WRITE (fileop(1),*) ' Time-integration method: Low-storage five-stage Runge-Kutta fourth order (Carpenter & Kennedy)' CASE DEFAULT WRITE (*,*) 'Error: Chosen time integration method not valid.' STOP @@ -191,6 +226,7 @@ SUBROUTINE ReadInputFileParameters 139 BACKSPACE(fileip(1)) READ (FILEIP(1),*,err=139) g Print *, ' ** No input value for rho, using 1000.' + write(fileop(1),*) ' ** No input value for rho, using 1000.' rho=1000. 140 continue @@ -204,30 +240,38 @@ SUBROUTINE ReadInputFileParameters 142 SELECT CASE (solver) CASE(0) WRITE(*,*) ' Defect correction (DC) method is chosen.' + WRITE(fileop(1),*) ' Defect correction (DC) method is chosen.' CASE DEFAULT WRITE(*,*) ' GMRES method is chosen.' + WRITE(fileop(1),*) ' GMRES method is chosen.' END SELECT IF (Precond==1) THEN SELECT CASE (solver) CASE(0) WRITE(*,*) ' Strategy: DC + LU (order ',2*alphaprecond,')' + WRITE(fileop(1),*) ' Strategy: DC + LU (order ',2*alphaprecond,')' CASE DEFAULT WRITE(*,*) ' Strategy: GMRES + LU (order ',2*alphaprecond,')' + WRITE(fileop(1),*) ' Strategy: GMRES + LU (order ',2*alphaprecond,')' END SELECT ELSE IF (Precond==3) THEN SELECT CASE (solver) CASE(0) WRITE(*,*) ' Strategy: DC + MG-RB-',cyclet,'(',nu(1),',',nu(2),')' + WRITE(fileop(1),*) ' Strategy: DC + MG-RB-',cyclet,'(',nu(1),',',nu(2),')' CASE DEFAULT WRITE(*,*) ' Strategy: GMRES + MG-RB-',cyclet,'(',nu(1),',',nu(2),')' + WRITE(fileop(1),*) ' Strategy: GMRES + MG-RB-',cyclet,'(',nu(1),',',nu(2),')' END SELECT END IF WRITE(*,*) ' Tolerance levels user-defined. RelTol = ',reltol,' and AbsTol = ',abstol + WRITE(fileop(1),*) ' Tolerance levels user-defined. RelTol = ',reltol,' and AbsTol = ',abstol IF (Precond==3 .AND. GhostGridZ/=1 ) THEN GOTO 104 ENDIF WRITE (*,*) '' + WRITE (fileop(1),*) '' ! STREAM FUNCTION SOLUTION PARAMETERS READ (FILEIP(1),*) SFsol%HH, SFsol%h, SFsol%L, SFsol%T, SFsol%i_wavel_or_per, SFsol%e_or_s_vel, & @@ -250,6 +294,8 @@ SUBROUTINE ReadInputFileParameters END IF print *, 'Kinematics output requested in ',nOutFiles,' file(s) named "Kinematics_**.bin".' print *, ' ' + write(fileop(1),*) 'Kinematics output requested in ',nOutFiles,' file(s) named "Kinematics_**.bin".' + write(fileop(1),*) ' ' Do i=1,nOutFiles READ (FILEIP(1),*,err=110)Output(i)%xbeg,Output(i)%xend,Output(i)%xstride,Output(i)%ybeg, & Output(i)%yend,Output(i)%ystride,Output(i)%tbeg,Output(i)%tend,Output(i)%tstride @@ -285,18 +331,24 @@ SUBROUTINE ReadInputFileParameters READ (FILEIP(1),*) LinearONOFF, PressureTermONOFF IF (LinearONOFF==0) THEN WRITE(*,'(A/)') ' Linear model is employed.' + WRITE(fileop(1),'(A/)') ' Linear model is employed.' ELSE WRITE(*,'(A/)') ' Fully nonlinear model is employed.' + WRITE(fileop(1),'(A/)') ' Fully nonlinear model is employed.' ENDIF ! IF(PressureTermOnOff==0)THEN WRITE(*,'(A/)') ' No free-surface pressure term is being applied. ' + WRITE(fileop(1),'(A/)') ' No free-surface pressure term is being applied. ' ELSEIF(PressureTermOnOff==1)THEN WRITE(*,'(A/)') ' A 2D Gaussian surface pressure is being applied. (See "funPressureTerm.f90".)' + WRITE(fileop(1),'(A/)') ' A 2D Gaussian surface pressure is being applied. (See "funPressureTerm.f90".)' ELSEIF(PressureTermOnOff==2)THEN WRITE(*,'(A/)') ' A 3D Gaussian surface pressure is being applied. (See "funPressureTerm.f90".)' + WRITE(fileop(1),'(A/)') ' A 3D Gaussian surface pressure is being applied. (See "funPressureTerm.f90".)' ELSEIF(PressureTermOnOff==3)THEN WRITE(*,'(A/)') ' A 3D tanh surface pressure is being applied. (See "funPressureTerm.f90".)' + WRITE(fileop(1),'(A/)') ' A 3D tanh surface pressure is being applied. (See "funPressureTerm.f90".)' ELSE Print *, 'No pressure field defined for PressureTermOnOff=',PressureTermOnOff stop @@ -305,10 +357,12 @@ SUBROUTINE ReadInputFileParameters IF(TimeMethod /= 1)THEN IF(IncWaveType>1 )THEN Print *, 'Only RK-4 is implemented with this incident wave-type, TimeMethod -> 1.' + write(fileop(1),*) 'Only RK-4 is implemented with this incident wave-type, TimeMethod -> 1.' TimeMethod=1; RKstages=4; END IF IF(PressureTermOnOff /= 0)THEN Print *, 'Only RK-4 is implemented with an applied free-surface pressure. TimeMethod -> 1.' + write(fileop(1),*) 'Only RK-4 is implemented with an applied free-surface pressure. TimeMethod -> 1.' TimeMethod=1; RKstages=4; END IF END IF @@ -318,6 +372,7 @@ SUBROUTINE ReadInputFileParameters READ (FILEIP(1),*) filteringONOFF, filterALPHA, filterORDER, sigma_filt(1), sigma_filt(2), sigma_filt(3) IF (filteringONOFF>0) THEN WRITE(*,*) ' SG(',2*filterALPHA+1,',',filterORDER,')-filtering will be employed after every ',filteringONOFF,' time step.' + WRITE(fileop(1),*) ' SG(',2*filterALPHA+1,',',filterORDER,')-filtering will be employed after every ',filteringONOFF,' time step.' filterNP = filterALPHA*2+1 ALLOCATE(filtercoefficients(filterNP),tmpfilter(max(filterNP,13))) filtercoefficients = zero; tmpfilter = zero @@ -327,6 +382,8 @@ SUBROUTINE ReadInputFileParameters IF (filterALPHA>6)Then WRITE(*,*)'** WARNING: Off-centered filtering coefficients are only implemented for filterALPHA<=6.' WRITE(*,*)'** Some points may be left unfiltered. ' + WRITE(fileop(1),*)'** WARNING: Off-centered filtering coefficients are only implemented for filterALPHA<=6.' + WRITE(fileop(1),*)'** Some points may be left unfiltered. ' end IF ENDIF @@ -339,16 +396,23 @@ SUBROUTINE ReadInputFileParameters If (BreakMod%i_breaking /= 0)Then print*, ' ' Print*, 'Breaking model has been turned on.' - print*, ' ' + print *, ' ' + write(fileop(1),*) ' ' + write(fileop(1),*) 'Breaking model has been turned on.' + write(fileop(1),*) ' ' IF (BreakMod%i_breaking==2) Then BreakMod%i_break_time=2*nsteps print *, ' Breaking geometry will be computed, but no model is being applied.' + write(fileop(1),*) ' Breaking geometry will be computed, but no model is being applied.' END IF end If GoTo 42 41 print*, ' ' Print*, 'No breaking model line found, the feature is off.' print*, ' ' + write(fileop(1),*) ' ' + write(fileop(1),*) 'No breaking model line found, the feature is off.' + write(fileop(1),*) ' ' BreakMod%i_breaking=0 BACKSPACE(fileip(1)) 42 continue @@ -357,6 +421,7 @@ SUBROUTINE ReadInputFileParameters READ (FILEIP(1),*) relaxONOFF, relaxTransientTime, relaxNo, relaxXorY, relaxDegrees IF (relaxONOFF==1) THEN WRITE(*,*) ' Total relaxation zones defined: ',relaxNo + WRITE(fileop(1),*) ' Total relaxation zones defined: ',relaxNo ALLOCATE( RelaxZones(relaxNo) ) ! DO i=1,relaxNo @@ -404,10 +469,14 @@ SUBROUTINE ReadInputFileParameters 64 continue print *, ' ' print *, 'No Pressure damping line found, the feature is off.' + write(fileop(1),*) ' ' + write(fileop(1),*) 'No Pressure damping line found, the feature is off.' backspace(FILEIP(1)) 65 continue print *, ' ' print *, 'Found ', NDampZones, ' pressure damping zones.' + write(fileop(1),*) ' ' + write(fileop(1),*) 'Found ', NDampZones, ' pressure damping zones.' ! SWENSE line READ(FILEIP(1),*) swenseONOFF, swenseTransientTime, swenseDir, West_refl, East_refl, North_refl, South_refl @@ -417,8 +486,10 @@ SUBROUTINE ReadInputFileParameters IF (curvilinearONOFF==1 .AND. FineGrid%Nx>1 .AND. FineGrid%Ny>1) THEN ! NOTE: It is only possible to run the curvilinear model for 3D cases, i.e. 2D cases excluded WRITE(*,'(A/)') ' Curvilinear model employed.' + WRITE(fileop(1),'(A/)') ' Curvilinear model employed.' ELSE WRITE(*,'(A/)') ' Standard Cartesian model employed.' + WRITE(fileop(1),'(A/)') ' Standard Cartesian model employed.' curvilinearONOFF = 0 ! Make sure it is the standard model which is employed (also for curvilinear 2D choices) END IF ! @@ -511,6 +582,9 @@ SUBROUTINE ReadInputFileParameters Print *, ' Found ',nGenZones, & ' generation zones for the linear wave. (Only used for IncWaveType==2)' Print *, ' ' + write(fileop(1),*) ' Found ',nGenZones, & + ' generation zones for the linear wave. (Only used for IncWaveType==2)' + write(fileop(1),*) ' ' ENDIF ENDIF diff --git a/src/functions/ConstructTableCrossDerivatives.f90 b/src/functions/ConstructTableCrossDerivatives.f90 index 020c8b0..af58b0d 100644 --- a/src/functions/ConstructTableCrossDerivatives.f90 +++ b/src/functions/ConstructTableCrossDerivatives.f90 @@ -6,7 +6,7 @@ SUBROUTINE ConstructTableCrossDerivatives(CompGrid, DiffStencils, kappa, GhostGr IMPLICIT NONE TYPE (Level_def), INTENT(IN) :: CompGrid TYPE (Diff_def) :: DiffStencils -INTEGER :: GhostGridX, GhostGridY, GhostGridZ, Precond +INTEGER :: GhostGridX, GhostGridY, GhostGridZ, Precond, fileop INTEGER :: alpha, beta, kappa, i, j, k, diffa, diffb, diffg, rank,ranka,rankb, Nxg, Nyg, Nzg INTEGER, DIMENSION((CompGrid%Nz+GhostGridZ),(CompGrid%Nx+2*GhostGridX),(CompGrid%Ny+2*GhostGridY)) :: L ! diff --git a/src/functions/FactorPreconditioner.f90 b/src/functions/FactorPreconditioner.f90 index 0b862c3..83581e2 100644 --- a/src/functions/FactorPreconditioner.f90 +++ b/src/functions/FactorPreconditioner.f90 @@ -1,9 +1,9 @@ -SUBROUTINE FactorPreconditioner(PreconditioningMatrix, Nfs) +SUBROUTINE FactorPreconditioner(PreconditioningMatrix, Nfs, fileop) ! By Allan P. Engsig-Karup. USE Precision USE DataTypes IMPLICIT NONE -INTEGER :: Nfs +INTEGER :: Nfs, fileop TYPE (SparseArray_COO) :: PreconditioningMatrix -CALL LUfactor(PreconditioningMatrix, Nfs) +CALL LUfactor(PreconditioningMatrix, Nfs, fileop) END SUBROUTINE FactorPreconditioner diff --git a/src/functions/FilterInit.f90 b/src/functions/FilterInit.f90 index 82c70c8..1044621 100644 --- a/src/functions/FilterInit.f90 +++ b/src/functions/FilterInit.f90 @@ -1,7 +1,7 @@ SUBROUTINE FilterInit(filtercoefficients,filtercoefficients2) USE Precision -USE GlobalVariables, ONLY: tmpfilter,filterNP,filterALPHA,filterORDER,sigma_filt +USE GlobalVariables, ONLY: tmpfilter,filterNP,filterALPHA,filterORDER,sigma_filt,fileop USE Constants ! ! Set up the filtering coefficients. The variables tmpfilter, filtercoefficients @@ -214,6 +214,8 @@ SUBROUTINE FilterInit(filtercoefficients,filtercoefficients2) if(abs(sigma_filt(1))<1.e-12)then print *, 'FilterInit: Boundary filtering is turned off.' print *, ' ' + write(fileop(1),*) 'FilterInit: Boundary filtering is turned off.' + write(fileop(1),*) ' ' filtercoefficients2=zero do i=1,max(filterALPHA,6) filtercoefficients2(i,i)=one @@ -222,6 +224,9 @@ SUBROUTINE FilterInit(filtercoefficients,filtercoefficients2) print *, 'FilterInit: Boundary filtering is turned on with values:' print *, sigma_filt print *, ' ' + write(fileop(1),*) 'FilterInit: Boundary filtering is turned on with values:' + write(fileop(1),*) sigma_filt + write(fileop(1),*) ' ' end if diff --git a/src/functions/PreparePreconditioner.f90 b/src/functions/PreparePreconditioner.f90 index 5180b97..0bcbf19 100644 --- a/src/functions/PreparePreconditioner.f90 +++ b/src/functions/PreparePreconditioner.f90 @@ -1,12 +1,12 @@ SUBROUTINE PreparePreconditioner(PreconditioningMatrix,FineGrid,GhostGridX, GhostGridY, GhostGridZ, & - alpha, beta, gamma, Precond, CurvilinearONOFF) + alpha, beta, gamma, Precond, CurvilinearONOFF,fileop) ! By Allan P. Engsig-Karup. USE Precision USE Constants USE DataTypes IMPLICIT NONE INTEGER :: GhostGridX, GhostGridY, GhostGridZ, alpha, beta, gamma, kappa, Precond, CurvilinearONOFF, iERR -INTEGER :: Nxg,Nyg,Nzg,Nx,Ny,Nz +INTEGER :: Nxg,Nyg,Nzg,Nx,Ny,Nz,fileop TYPE (Level_def) :: FineGrid TYPE (SparseArray_COO) :: PreconditioningMatrix TYPE (Wavefield_FS) :: tmp_wavefield @@ -23,7 +23,7 @@ SUBROUTINE PreparePreconditioner(PreconditioningMatrix,FineGrid,GhostGridX, Ghos CASE (1) ! Linear LU-preconditining IF (CurvilinearONOFF==1) THEN ! FDM stencils - vertical stencils needed for precond. matrix generation - CALL PreProcessDiffStencilsZ(FineGrid,FineGrid%DiffStencils,GhostGridZ,gamma) + CALL PreProcessDiffStencilsZ(FineGrid,FineGrid%DiffStencils,GhostGridZ,gamma,fileop) ! determine curvilinear transformation weights for the 2D plane CALL DetermineCurvilinearTransform2D(FineGrid,alpha,beta,gamma,GhostGridX,GhostGridY,GhostGridZ) @@ -78,7 +78,7 @@ SUBROUTINE PreparePreconditioner(PreconditioningMatrix,FineGrid,GhostGridX, Ghos ALLOCATE( FineGrid%dsigmanew(Nzg,Nxg,Nyg,5),STAT=iERR ) CALL CheckError(iERR,10) - CALL PreProcessDiffStencils(FineGrid,FineGrid%DiffStencils,GhostGridX,GhostGridY,GhostGridZ, alpha,beta,gamma) + CALL PreProcessDiffStencils(FineGrid,FineGrid%DiffStencils,GhostGridX,GhostGridY,GhostGridZ, alpha,beta,gamma,fileop) ! print*,'alpha=',alpha ! print*,'beta=',beta ! print*,'gamma=',gamma @@ -114,6 +114,7 @@ SUBROUTINE PreparePreconditioner(PreconditioningMatrix,FineGrid,GhostGridX, Ghos ! filename = "dsigma.bin" !CALL StoreRealArray(FineGrid%dsigma,(FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ),5,filename) PRINT*,' Preconditioning matrix generated.' + WRITE(FILEOP,*)' Preconditioning matrix generated.' CASE (3) ! Multigrid CASE DEFAULT PRINT *,'Error: No default precondtioning strategy. (PreparePreconditioner)' diff --git a/src/initialization/Initialize.f90 b/src/initialization/Initialize.f90 index fe593f5..51e3040 100644 --- a/src/initialization/Initialize.f90 +++ b/src/initialization/Initialize.f90 @@ -44,6 +44,8 @@ SUBROUTINE Initialize RETURN ! ERROR HANDLING -100 PRINT *,'Error: Problem with specified input file.'; STOP +100 PRINT *,'Error: Problem with specified input file.'; +WRITE(fileop(1),*),'Error: Problem with specified input file.' +STOP END SUBROUTINE Initialize diff --git a/src/initialization/PreProcessDiffStencils.f90 b/src/initialization/PreProcessDiffStencils.f90 index e2d623a..ecd1d85 100644 --- a/src/initialization/PreProcessDiffStencils.f90 +++ b/src/initialization/PreProcessDiffStencils.f90 @@ -1,4 +1,4 @@ -SUBROUTINE PreProcessDiffStencils(FineGrid,DiffStencils,GhostGridX,GhostGridY,GhostGridZ,alpha,beta,gamma) +SUBROUTINE PreProcessDiffStencils(FineGrid,DiffStencils,GhostGridX,GhostGridY,GhostGridZ,alpha,beta,gamma,fileop) ! By Allan P. Engsig-Karup. USE Precision USE Constants @@ -6,7 +6,7 @@ SUBROUTINE PreProcessDiffStencils(FineGrid,DiffStencils,GhostGridX,GhostGridY,Gh IMPLICIT NONE TYPE (Diff_def), INTENT(OUT) :: DiffStencils TYPE (Level_def), INTENT(IN) :: FineGrid -INTEGER :: GhostGridX,GhostGridY,GhostGridZ,STAT +INTEGER :: GhostGridX,GhostGridY,GhostGridZ,STAT, fileop INTEGER :: rank, Nx, Ny, Nz, order, Nzp, Diff, alpha, beta, gamma, i REAL(KIND=long), DIMENSION(:), ALLOCATABLE :: Stencil INTEGER, DIMENSION(:), ALLOCATABLE :: idx @@ -40,6 +40,7 @@ SUBROUTINE PreProcessDiffStencils(FineGrid,DiffStencils,GhostGridX,GhostGridY,Gh DiffStencils%StencilY=zero print*,'Building stencils...' +write(fileop,*)'Building stencils...' DO order = 1,2 IF (Nx>1) THEN ! print*,'FineGrid%x=',FineGrid%x diff --git a/src/initialization/PreprocessRelaxationZones.f90 b/src/initialization/PreprocessRelaxationZones.f90 index f69f03b..ed32c0e 100644 --- a/src/initialization/PreprocessRelaxationZones.f90 +++ b/src/initialization/PreprocessRelaxationZones.f90 @@ -22,6 +22,7 @@ SUBROUTINE PreprocessRelaxationZones END DO END DO WRITE(*,*) 'Relaxation zone setup:' +WRITE(fileop(1),*) 'Relaxation zone setup:' DO i = 1, relaxNo RelaxZones(i)%dir = SIGN(1,RelaxZones(i)%ftype) ! Define indexmaps @@ -96,6 +97,8 @@ SUBROUTINE PreprocessRelaxationZones ! OUTPUT SETUP WRITE(*,789) ' Zone ',i,': idx=(',RelaxZones(i)%idx(1),',',RelaxZones(i)%idx(2),',',RelaxZones(i)%idx(3),',',& RelaxZones(i)%idx(4),')' + WRITE(fileop(1),789) ' Zone ',i,': idx=(',RelaxZones(i)%idx(1),',',RelaxZones(i)%idx(2),',',RelaxZones(i)%idx(3),',',& + RelaxZones(i)%idx(4),')' 789 FORMAT(A,I2,A,I6,A,I6,A,I6,A,I6,A) !stop END DO diff --git a/src/initialization/SetupInitialConditions.f90 b/src/initialization/SetupInitialConditions.f90 index ce500db..a595729 100644 --- a/src/initialization/SetupInitialConditions.f90 +++ b/src/initialization/SetupInitialConditions.f90 @@ -12,11 +12,13 @@ SUBROUTINE SetupInitialConditions Nz = FineGrid%Nz DetermineBottomGradients = 0 print*,'IC chosen is case ',IC + write(fileop(1),*)'IC chosen is case ',IC SELECT CASE (IC) CASE (-1, 0) ! Initial condition determined by PressureTermOnOff and funPressureTerm.f90 or read from the init file 'OceanWave3D.init'. IF (IC==-1)THEN print *, 'Reading the initial conditions. ** Not implemented curvilinear! **' + write(fileop(1),*) 'Reading the initial conditions. ** Not implemented curvilinear! **' DO j=1+GhostGridY,FineGrid%Ny+GhostGridY Do i=1+GhostGridX,FineGrid%Nx+GhostGridX @@ -27,10 +29,13 @@ SUBROUTINE SetupInitialConditions ELSE IF(PressureTermOnOff==0)THEN print*, 'Initial condition is still water.' + write(fileop(1),*) 'Initial condition is still water.' ELSEIF(PressureTermOnOff==1)THEN print *, 'Initial condition determined by PressureTermOnOff is a 2D stationary Gaussian hump' + write(fileop(1),*) 'Initial condition determined by PressureTermOnOff is a 2D stationary Gaussian hump' ELSEIF(PressureTermOnOff==2)THEN print *, 'Initial condition determined by PressureTermOnOff is a 3D moving Gaussian hump' + write(fileop(1),*) 'Initial condition determined by PressureTermOnOff is a 3D moving Gaussian hump' END IF Call funInitialFreeSurfaceElevation(g,FineGrid%Nx+2*GhostGridX,& FineGrid%Ny+2*GhostGridY,FineGrid,WaveField) @@ -43,10 +48,15 @@ SUBROUTINE SetupInitialConditions PRINT *,fname_bottom,' with header:' PRINT *, head(4) PRINT *, ' ' + WRITE(FILEOP(1),*) 'SetUpInitialConditions: Reading the bottom contours from file:' + WRITE(FILEOP(1),*)fname_bottom,' with header:' + WRITE(FILEOP(1),*) head(4) + WRITE(FILEOP(1),*) ' ' READ(fileip(4),*) DetermineBottomGradients ! Read the gradient flag IF(DetermineBottomGradients==1)THEN Print *, ' Reading h and computing derivatives of h numerically.' + write(fileop(1),*) ' Reading h and computing derivatives of h numerically.' ! Read in h(x,y) do j=1,ny DO i=1,nx @@ -57,6 +67,8 @@ SUBROUTINE SetupInitialConditions ! Read h(x,y),h_x,h_xx,h_y,h_yy Print *, ' Reading h,h_x,h_xx,h_y,h_yy.' print *, ' ' + write(fileop(1),*) ' Reading h,h_x,h_xx,h_y,h_yy.' + write(fileop(1),*) ' ' ! Do j=1+GhostGridY,ny+GhostGridY DO i=1+GhostGridX,nx+GhostGridX @@ -95,6 +107,7 @@ SUBROUTINE SetupInitialConditions CASE (1) ! Mildly nonlinear standing wave, deep water (Agnon & Glozman (1996)) print *, 'Mildly nonlinear standing wave (deep water) in a rectangular domain.' + write(fileop(1),*) 'Mildly nonlinear standing wave (deep water) in a rectangular domain.' IF (Nx>1) THEN FineGrid%h = two; FineGrid%hx=zero; FineGrid%hxx=zero CALL nonlinearstandingwave1D(pi,FineGrid%h(1,1),FineGrid%x,tmp2D,Wavefield%W,Wavefield%E, & @@ -276,7 +289,8 @@ SUBROUTINE SetupInitialConditions IF (relaxONOFF==1) THEN CALL RelaxationModule(Wavefield%E,Wavefield%P,0.d0) ENDIF - print*, 'initialisation of Linear Shoaling' + print *, 'initialisation of Linear Shoaling' + write(fileop(1),*) 'initialisation of Linear Shoaling' CASE (7) ! Flat bottom, depth defined from SF-wave IF (Nx>1) THEN @@ -394,8 +408,10 @@ SUBROUTINE SetupInitialConditions ELSE dymin = two*dx ENDIF - PRINT*,' dt = ',dt - PRINT*,' Cr = ',SFsol%c*dt/MIN(dxmin,dymin) + PRINT *,' dt = ',dt + PRINT *,' Cr = ',SFsol%c*dt/MIN(dxmin,dymin) + WRITE(FILEOP(1),*)' dt = ',dt + WRITE(FILEOP(1),*)' Cr = ',SFsol%c*dt/MIN(dxmin,dymin) CASE (9) ! Berkhoff (3D) CALL BottomBerkoff(FineGrid,GhostGridX,GhostGridY) DetermineBottomGradients = 1 @@ -601,6 +617,11 @@ SUBROUTINE SetupInitialConditions print*,' T = ',SFsol%T print*,' c = ',SFsol%c print*,' h = ',SFsol%h + write(fileop(1),*)' Linear standing wave parameters:' + write(fileop(1),*)' kh = ',SFsol%k*SFsol%h + write(fileop(1),*)' T = ',SFsol%T + write(fileop(1),*)' c = ',SFsol%c + write(fileop(1),*)' h = ',SFsol%h IF (FineGrid%Nx>1) THEN dxmin = dx ELSE @@ -613,6 +634,8 @@ SUBROUTINE SetupInitialConditions ENDIF PRINT*,' dt = ',dt PRINT*,' Cr = ',SFsol%c*dt/MIN(dxmin,dymin) + WRITE(FILEOP(1),*)' dt = ',dt + WRITE(FILEOP(1),*)' Cr = ',SFsol%c*dt/MIN(dxmin,dymin) CASE (14) ! Mildly nonlinear standing wave, deep water (Agnon & Glozman (1996)) with SWENSE IF (Nx>1) THEN FineGrid%h = two; FineGrid%hx=zero; FineGrid%hxx=zero @@ -698,6 +721,10 @@ SUBROUTINE SetupInitialConditions PRINT *,fname_bottom,' with header:' PRINT *, head(4) PRINT *, ' ' + WRITE(FILEOP(1),*) 'SetUpInitialConditions: Reading the bottom contours from file:' + WRITE(FILEOP(1),*)fname_bottom,' with header:' + WRITE(FILEOP(1),*) head(4) + WRITE(FILEOP(1),*) ' ' READ(fileip(4),*) DetermineBottomGradients ! Read the gradient flag !------------------------------------------------------------------------- @@ -705,6 +732,8 @@ SUBROUTINE SetupInitialConditions !------------------------------------------------------------------------- Print *, ' Reading h,h_x,h_xx,h_y,h_yy.' print *, ' ' + write(fileop(1),*) ' Reading h,h_x,h_xx,h_y,h_yy.' + write(fileop(1),*) ' ' Do j=1+GhostGridY,ny+GhostGridY DO i=1+GhostGridX,nx+GhostGridX READ(fileip(4),*) FineGrid%h(i,j), & diff --git a/src/main/OceanWave3D.f90 b/src/main/OceanWave3D.f90 index 9fe6f8e..276741e 100644 --- a/src/main/OceanWave3D.f90 +++ b/src/main/OceanWave3D.f90 @@ -20,12 +20,14 @@ PROGRAM OceanWave3D ! Step through time and solve the problem ! print *, ' Starting to time step.' + write(fileop(1),*) ' Starting to time step.' DO tstep=1,Nsteps-1 CALL OceanWave3DTakeATimeStep END DO ! CALL SYSTEM_CLOCK(count_1, count_rate, count_max) WRITE (6,2030) ((count_1-CPUinitial)*one)/count_rate,Nsteps,FineGrid%Nx*FineGrid%Ny*(FineGrid%Nz+GhostGridZ) + WRITE (fileop(1),2030) ((count_1-CPUinitial)*one)/count_rate,Nsteps,FineGrid%Nx*FineGrid%Ny*(FineGrid%Nz+GhostGridZ) ! ! ! Upon completion, write the file OceanWave3D.end, which can be used as initial conditions for a continued run diff --git a/src/main/OceanWave3DT0Setup.f90 b/src/main/OceanWave3DT0Setup.f90 index add6edf..462fad7 100644 --- a/src/main/OceanWave3DT0Setup.f90 +++ b/src/main/OceanWave3DT0Setup.f90 @@ -13,10 +13,14 @@ SUBROUTINE OceanWave3DT0Setup TYPE (Diff_def) :: FullRankStencils INTEGER i, j, k, n_cut, NxT, NyT - ! OUTPUT HEADER TO SCREEN - WRITE (6,2010) - + ! + ! Set up the input/output file structure, open the log file and output the + ! header to the screen and the log file + ! CALL Initialize + WRITE (6,2010) + WRITE (fileop(1),2010) + ! Read in the run parameters CALL ReadInputFileParameters !CALL SetupCompDomain @@ -40,7 +44,8 @@ SUBROUTINE OceanWave3DT0Setup ! ! Allocate space for the solution variables and wavefield. ! - print*,'do initialization...' + print *,'Initializing variables and arrays.' + write(fileop(1),*)'Initializing variables and arrays.' CALL InitializeVariables ! ! We start at time=0 here but if this is a hot start, time0 will be read in SetupInitialConditions. @@ -51,7 +56,8 @@ SUBROUTINE OceanWave3DT0Setup ! IF (relaxONOFF>0) THEN CALL PreprocessRelaxationZones - PRINT*,' Relaxation zones have been setup.' + PRINT *,' Relaxation zones have been setup.' + WRITE(FILEOP(1),*)' Relaxation zones have been setup.' IF(IncWaveType==2)THEN ! SFsol%T and SFsol%L are used to determine dt based on the Cr number, so they are ! re-set here for other wave generation types. -HBB @@ -72,20 +78,28 @@ SUBROUTINE OceanWave3DT0Setup dsigmamin = FineGrid%z(FineGrid%Nz)-FineGrid%z(FineGrid%Nz-1) c = SFsol%L / SFsol%T dt = CFL*MIN(dxmin,dymin)/c - PRINT*,'' - PRINT*,' Time step size modified based on the incident wave. dt = ',dt - PRINT*,' Courant number based on min. (dx,dy) and c=',c,', Cr = ',c*dt/MIN(dxmin,dymin) - PRINT*,' Discrete anisotropy, ds_min/dx_min = ',dsigmamin/dxmin + PRINT *,'' + PRINT *,' Time step size modified based on the incident wave. dt = ',dt + PRINT *,' Courant number based on min. (dx,dy) and c=',c,', Cr = ',c*dt/MIN(dxmin,dymin) + PRINT *,' Discrete anisotropy, ds_min/dx_min = ',dsigmamin/dxmin + WRITE(FILEOP(1),*)'' + WRITE(FILEOP(1),*)' Time step size modified based on the incident wave. dt = ',dt + WRITE(FILEOP(1),*)' Courant number based on min. (dx,dy) and c=',c,', Cr = ',c*dt/MIN(dxmin,dymin) + WRITE(FILEOP(1),*)' Discrete anisotropy, ds_min/dx_min = ',dsigmamin/dxmin END IF IF (IncWaveType==1 ) THEN CALL stream_func_set_up(g,SFsol%h,SFsol%T,SFsol%i_wavel_or_per,SFsol%L, & SFsol%k,SFsol%HH,SFsol%i_euler_or_stokes,SFsol%e_or_s_vel,SFsol%i_deep_or_finite, & SFsol%n_h_steps,SFsol%n_four_modes,SFsol%nwrk,SFsol%yy,SFsol%zz) - PRINT*,' SF solution: k=',SFsol%k,',h=',SFsol%h,',H=',SFsol%HH,',T=',SFsol%T,',L=',SFsol%L - PRINT*,' kh=',SFsol%k*SFsol%h,',c=',SFsol%L/SFsol%T + PRINT *,' SF solution: k=',SFsol%k,',h=',SFsol%h,',H=',SFsol%HH,',T=',SFsol%T,',L=',SFsol%L + PRINT *,' kh=',SFsol%k*SFsol%h,',c=',SFsol%L/SFsol%T + WRITE(FILEOP(1),*)' SF solution: k=',SFsol%k,',h=',SFsol%h,',H=',SFsol%HH,',T=',SFsol%T,',L=',SFsol%L + WRITE(FILEOP(1),*)' kh=',SFsol%k*SFsol%h,',c=',SFsol%L/SFsol%T WRITE(6,62)two*pi/SFsol%k,SFsol%T,SFsol%zz(2)/SFsol%k, & SFsol%zz(5)*sqrt(g/SFsol%k), SFsol%zz(6)*sqrt(g/SFsol%k) + WRITE(fileop(1),62)two*pi/SFsol%k,SFsol%T,SFsol%zz(2)/SFsol%k, & + SFsol%zz(5)*sqrt(g/SFsol%k), SFsol%zz(6)*sqrt(g/SFsol%k) 62 FORMAT(' The incident wave is a stream function wave with L=', & e12.6,/,' T=',e12.6,' H=',e12.6,' u_E=',e12.6,' and u_S=', & e12.6,//) @@ -94,40 +108,52 @@ SUBROUTINE OceanWave3DT0Setup ! A linear regular or irregular wave ! print *, ' ' + write(fileop(1),*) ' ' IF(RandomWave(1)%ispec==-1)THEN WRITE(6,70)RandomWave(1)%Tp,RandomWave(1)%Hs + WRITE(fileop(1),70)RandomWave(1)%Tp,RandomWave(1)%Hs 70 FORMAT(' The incident wave is a linear mono-chromatic wave with',/,& ' T=', e10.4,' and H=',e10.4,'.',//) ELSEIF(RandomWave(1)%ispec==0)THEN WRITE(6,71)RandomWave(1)%Tp,RandomWave(1)%Hs,RandomWave(1)%seed,RandomWave(1)%seed2 + WRITE(fileop(1),71)RandomWave(1)%Tp,RandomWave(1)%Hs,RandomWave(1)%seed,RandomWave(1)%seed2 71 FORMAT(' The incident wave is a 2D P-M spectrum with',/,& ' T_p=', e10.4,' and H_s=',e10.4,', seed values are:',/,2i10,//) ELSEIF(RandomWave(1)%ispec==1 .or. RandomWave(1)%ispec==3)THEN WRITE(6,72)RandomWave(1)%Tp,RandomWave(1)%Hs,RandomWave(1)%gamma,RandomWave(1)%seed,RandomWave(1)%seed2 + WRITE(fileop(1),72)RandomWave(1)%Tp,RandomWave(1)%Hs,RandomWave(1)%gamma,RandomWave(1)%seed,RandomWave(1)%seed2 72 FORMAT(' The incident wave is a 2D JONSWAP spectrum with ',/, & 'T_p=', e10.4,', H_s=',e10.4,' and gamma=',e10.4, ' and seed values are:',/,2i10,//) ELSEIF(RandomWave(1)%ispec==2)THEN WRITE(6,73)RandomWave(1)%inc_wave_file + WRITE(fileop(1),73)RandomWave(1)%inc_wave_file 73 FORMAT(' The incident wave will be read from file ',a30,/) ELSEIF(RandomWave(1)%ispec==-30)THEN WRITE(6,74)RandomWave(1)%Tp,RandomWave(1)%Hs,RandomWave(1)%beta0 + WRITE(fileop(1),74)RandomWave(1)%Tp,RandomWave(1)%Hs,RandomWave(1)%beta0 74 FORMAT(' The incident wave is a linear, long-crested mono-chromatic wave with',/,& ' T=', e10.4,' and H=',e10.4,' at angle ',f10.2,' deg. to the x-axis.',//) ELSEIF(RandomWave(1)%ispec==30)THEN WRITE(6,75)RandomWave(1)%Tp,RandomWave(1)%Hs,RandomWave(1)%seed,RandomWave(1)%seed2,& RandomWave(1)%beta0 + WRITE(fileop(1),75)RandomWave(1)%Tp,RandomWave(1)%Hs,RandomWave(1)%seed,RandomWave(1)%seed2,& + RandomWave(1)%beta0 75 FORMAT(' The incident wave is a 2D P-M spectrum with',/,& ' T_p=', e10.4,' and H_s=',e10.4,', seed values are:',/,2i10,/, & ' at angle ',f10.2,' deg. to the x-axis.',// ) ELSEIF(RandomWave(1)%ispec==31)THEN WRITE(6,76)RandomWave(1)%Tp,RandomWave(1)%Hs,RandomWave(1)%seed,RandomWave(1)%seed2,& RandomWave(1)%beta0 + WRITE(fileop(1),76)RandomWave(1)%Tp,RandomWave(1)%Hs,RandomWave(1)%seed,RandomWave(1)%seed2,& + RandomWave(1)%beta0 76 FORMAT(' The incident wave is a 2D JONSWAP spectrum with ',/, & 'T_p=', e10.4,' and H_s=',e10.4,', seed values are:',/,2i10,/, & ' at angle ',f10.2,' deg. to the x-axis.',// ) ELSEIF(RandomWave(1)%ispec==33)THEN WRITE(6,77)RandomWave(1)%beta0,RandomWave(1)%Tp,RandomWave(1)%Hs,RandomWave(1)%seed, & RandomWave(1)%seed2 + WRITE(fileop(1),77)RandomWave(1)%beta0,RandomWave(1)%Tp,RandomWave(1)%Hs,RandomWave(1)%seed, & + RandomWave(1)%seed2 77 FORMAT(' The incident wave is a 3D JONSWAP spectrum with Normal spreading at heading angle ',e10.4,/, & ' deg. to the x-axis. T_p=', e10.4,' H_s=',e10.4,', seed values are:',/,2i10,//) @@ -135,9 +161,11 @@ SUBROUTINE OceanWave3DT0Setup ELSEIF(RandomWave(1)%ispec==34)THEN WRITE(6,78)RandomWave(1)%beta0, RandomWave(1)%S0, RandomWave(1)%Tp, RandomWave(1)%Hs, & - RandomWave(1)%seed,RandomWave(1)%seed2 + RandomWave(1)%seed,RandomWave(1)%seed2,RandomWave(1)%gamma + WRITE(fileop(1),78)RandomWave(1)%beta0, RandomWave(1)%S0, RandomWave(1)%Tp, RandomWave(1)%Hs, & + RandomWave(1)%seed,RandomWave(1)%seed2,RandomWave(1)%gamma 78 FORMAT(' The incident wave is a 3D JONSWAP spectrum with Cos^(2S) spreading at heading angle ',e10.4,/, & - ' deg. to the x-axis. S=',e10.4,', T_p=', e10.4,' H_s=',e10.4,', seed values are:',/,2i10,//) + ' deg. to the x-axis. S=',e10.4,', T_p=', e10.4,' H_s=',e10.4,', seed values are:',/,2i10,' gamma=',e10.4//) ELSE @@ -202,6 +230,11 @@ SUBROUTINE OceanWave3DT0Setup RandomWave(i)%y0, & ') in a depth of',RandomWave(i)%h0,' This generation zone contains ',& n_wavem, ' grid points.' + write(fileop(1),*) 'Zone ',i,':' + write(fileop(1),*) 'The generated wave is centered at (x,y)=(',RandomWave(i)%x0,',',& + RandomWave(i)%y0, & + ') in a depth of',RandomWave(i)%h0,' This generation zone contains ',& + n_wavem, ' grid points.' RandomWave(i)%nf=FineGrid%nx+2*GhostGridX ! ALLOCATE(RandomWave(i)%eta(n_wavem,n_fft), RandomWave(i)%Phis(n_wavem,n_fft) ) @@ -233,6 +266,11 @@ SUBROUTINE OceanWave3DT0Setup RandomWave(i)%y0, & ') in a depth of',RandomWave(i)%h0,' This generation zone contains ', & RandomWave(i)%nx, ' by ',RandomWave(i)%ny,' grid points.' + write(fileop(1),*) 'Zone ',i,':' + write(fileop(1),*) 'The generated wave is centered at (x,y)=(',RandomWave(i)%x0,',', & + RandomWave(i)%y0, & + ') in a depth of',RandomWave(i)%h0,' This generation zone contains ', & + RandomWave(i)%nx, ' by ',RandomWave(i)%ny,' grid points.' ! ALLOCATE(RandomWave(i)%eta(n_wavem,n_fft), RandomWave(i)%Phis(n_wavem,n_fft) ) @@ -267,11 +305,13 @@ SUBROUTINE OceanWave3DT0Setup ! ! Set up the initial conditions and the bathymetry data ! - print*,'setup ICs...' + print *,'setup ICs...' + write(fileop(1),*)'setup ICs...' CALL SetupInitialConditions time=time0 dt0 = dt ! botp,Used in AnalyticWaveMaker2D.f90 since OpenFoam changes the timestep - print*,'done with ICs' + print *,'done with ICs' + write(fileop(1),*)'done with ICs' ! ! Set up the Pressure Damping Zones if any. ! @@ -280,6 +320,9 @@ SUBROUTINE OceanWave3DT0Setup print *, ' ' print *, 'Pressure damping zones are set up' print *, ' ' + write(fileop(1),*) ' ' + write(fileop(1),*) 'Pressure damping zones are set up' + write(fileop(1),*) ' ' END If IF (.FALSE.) THEN ! @@ -289,9 +332,10 @@ SUBROUTINE OceanWave3DT0Setup END IF ! IF (DetermineBottomGradients==1) THEN - PRINT*,'Warning: determining bottom gradients numerically, this is only implemented for rectangular grids. (HBB)' + PRINT *,'Warning: determining bottom gradients numerically, this is only implemented for rectangular grids. (HBB)' + WRITE(FILEOP(1),*)'Warning: determining bottom gradients numerically, this is only implemented for rectangular grids. (HBB)' ! Determine the bottom gradients numerically - CALL PreProcessDiffStencils(FineGrid,FineGrid%DiffStencils,GhostGridX,GhostGridY,GhostGridZ,alpha,beta,gamma) + CALL PreProcessDiffStencils(FineGrid,FineGrid%DiffStencils,GhostGridX,GhostGridY,GhostGridZ,alpha,beta,gamma,fileop(1)) NxT=FineGrid%Nx+2*GhostGridX; NyT=FineGrid%NY+2*GhostGridY IF (FineGrid%Nx==1) THEN FineGrid%hx = zero; FineGrid%hxx = zero; @@ -326,14 +370,15 @@ SUBROUTINE OceanWave3DT0Setup ! DETERMINE LOW-ORDER FINITE DIFFERENCE STENCILS ! FIXME: make it possible to choose the order of the preconditioner in the input file WRITE(*,FMT='(A,I2,A)') ' Preconditioner: DIRECT LU (',2*alphaprecond,' order, linear)' + WRITE(fileop(1),FMT='(A,I2,A)') ' Preconditioner: DIRECT LU (',2*alphaprecond,' order, linear)' CALL PreparePreconditioner(FineGrid%PreconditioningMatrix,FineGrid,GhostGridX, GhostGridY, GhostGridZ, & - alphaprecond, betaprecond, gammaprecond, Precond, CurvilinearONOFF) + alphaprecond, betaprecond, gammaprecond, Precond, CurvilinearONOFF,fileop(1)) ! filename = "SparseMatrix.bin" ! CALL StoreSparseMatrix(FineGrid%PreconditioningMatrix,filename,formattype) ! print*,'Preconditioningmatrix stored in SparseMatrix.bin.' CALL FactorPreconditioner(FineGrid%PreconditioningMatrix, & - (FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ)) + (FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ),fileop(1)) ELSE IF (Precond==3) THEN @@ -346,9 +391,10 @@ SUBROUTINE OceanWave3DT0Setup ! ! DETERMINE HIGH-ORDER FINITE DIFFERENCE STENCILS ! Now, determine fullrank stencils for the x- , y- and z- directions; - print*,'Determine finite difference stencils for the system matrix...' + print *,'Determine finite difference stencils for the system matrix...' + write(fileop(1),*)'Determine finite difference stencils for the system matrix...' IF (curvilinearONOFF==0) THEN - CALL PreProcessDiffStencils(FineGrid,FineGrid%DiffStencils,GhostGridX,GhostGridY,GhostGridZ,alpha,beta,gamma) + CALL PreProcessDiffStencils(FineGrid,FineGrid%DiffStencils,GhostGridX,GhostGridY,GhostGridZ,alpha,beta,gamma,fileop(1)) ! GD: Determine the cross derivatives coefficients CALL ConstructTableCrossDerivatives(FineGrid, FineGrid%DiffStencils, gamma, GhostGridX, GhostGridY, GhostGridZ, 0) ELSE @@ -380,8 +426,9 @@ SUBROUTINE OceanWave3DT0Setup GhostGridX, GhostGridY, GhostGridZ) END IF print*,'...done!' + write(fileop(1),*)'...done!' ! - ! GD: Test to define correct initial spatail derivaties... + ! GD: Test to define correct initial spatial derivaties... CALL DifferentiationsFreeSurfacePlane(Wavefield,GhostGridX,GhostGridY,FineGrid,alpha,beta) diff --git a/src/main/OceanWave3DTakeATimeStep.f90 b/src/main/OceanWave3DTakeATimeStep.f90 index a10635d..56f2e1e 100644 --- a/src/main/OceanWave3DTakeATimeStep.f90 +++ b/src/main/OceanWave3DTakeATimeStep.f90 @@ -1,4 +1,7 @@ SUBROUTINE OceanWave3DTakeATimeStep +! +! Take one time step to move the solution from tstep to tstep+1 +! USE GlobalVariables USE MGLevels IMPLICIT NONE @@ -53,30 +56,44 @@ SUBROUTINE OceanWave3DTakeATimeStep WRITE (6,2007) TOTALITER WRITE (6,2008) TOTALITERFS WRITE (6,2009) REAL(TOTALITER,long)/(RKSTAGES*REAL(tstep-1,long)) + WRITE (fileop(1),2007) TOTALITER + WRITE (fileop(1),2008) TOTALITERFS + WRITE (fileop(1),2009) REAL(TOTALITER,long)/(RKSTAGES*REAL(tstep-1,long)) ELSE WRITE (6,2001) TOTALITER WRITE (6,2002) TOTALITERFS WRITE (6,2003) REAL(TOTALITER,long)/(RKSTAGES*REAL(tstep-1,long)) + WRITE (fileop(1),2001) TOTALITER + WRITE (fileop(1),2002) TOTALITERFS + WRITE (fileop(1),2003) REAL(TOTALITER,long)/(RKSTAGES*REAL(tstep-1,long)) ENDIF WRITE (6,2005) MINITER, MAXITER + WRITE (fileop(1),2005) MINITER, MAXITER IF (tstep>2) THEN IF (solver==0) THEN WRITE (6,2010) REAL(TOTALITER-TOTALITERFS,long)/(RKSTAGES*REAL(tstep-2,long)) + WRITE (fileop(1),2010) REAL(TOTALITER-TOTALITERFS,long)/(RKSTAGES*REAL(tstep-2,long)) ELSE WRITE (6,2004) REAL(TOTALITER-TOTALITERFS,long)/(RKSTAGES*REAL(tstep-2,long)) + WRITE (fileop(1),2004) REAL(TOTALITER-TOTALITERFS,long)/(RKSTAGES*REAL(tstep-2,long)) ENDIF WRITE (6,2006) MINITERNOFS, MAXITERNOFS + WRITE (fileop(1),2006) MINITERNOFS, MAXITERNOFS ENDIF else ! Print the simulation time to the screen every 10 time steps. IF(MOD(tstep,10)==0)THEN print *, 'time step number ',tstep,' t=',time + write(fileop(1),*) 'time step number ',tstep,' t=',time IF (solver==0) THEN WRITE (6,2009) REAL(TOTALITER,long)/(RKSTAGES*REAL(tstep-1,long)) + WRITE (fileop(1),2009) REAL(TOTALITER,long)/(RKSTAGES*REAL(tstep-1,long)) ELSE WRITE (6,2003) REAL(TOTALITER,long)/(RKSTAGES*REAL(tstep-1,long)) + WRITE (fileop(1),2003) REAL(TOTALITER,long)/(RKSTAGES*REAL(tstep-1,long)) END IF WRITE (6,2005) MINITER, MAXITER + WRITE (fileop(1),2005) MINITER, MAXITER endif endif ! IF(MOD(tstep,10)==0)THEN @@ -105,6 +122,8 @@ SUBROUTINE OceanWave3DTakeATimeStep ! Write the file OceanWave3D.end, which can be used as initial conditions for a hot start WRITE(*,FMT='(A)') 'Writing OceanWave3D.end file, for possible restart.' WRITE(*,FMT='(A)') 'Change the file name to OceanWave3D.init and change IC to -1 for a hot start.' + WRITE(fileop(1),FMT='(A)') 'Writing OceanWave3D.end file, for possible restart.' + WRITE(fileop(1),FMT='(A)') 'Change the file name to OceanWave3D.init and change IC to -1 for a hot start.' CLOSE(fileip(3)) OPEN(fileip(3), file = 'OceanWave3D.end', status = 'unknown') WRITE(fileip(3),*) 'Initial conditions outputted from a previous simulation.' ! Header @@ -126,6 +145,8 @@ SUBROUTINE OceanWave3DTakeATimeStep ! Write the file OceanWave3D.end, which can be used as initial conditions for a hot start WRITE(*,FMT='(A)') 'Writing OceanWave3D.end file, for possible restart.' WRITE(*,FMT='(A)') 'Change the file name to OceanWave3D.init and change IC to -1 for a hot start.' + WRITE(fileop(1),FMT='(A)') 'Writing OceanWave3D.end file, for possible restart.' + WRITE(fileop(1),FMT='(A)') 'Change the file name to OceanWave3D.init and change IC to -1 for a hot start.' CLOSE(fileip(3)) OPEN(fileip(3), file = 'OceanWave3D.end', status = 'unknown') WRITE(fileip(3),*) 'Initial conditions outputted from a previous simulation.' ! Header diff --git a/src/wrappers/LUfactor.f90 b/src/wrappers/LUfactor.f90 index daad4e6..30b2927 100644 --- a/src/wrappers/LUfactor.f90 +++ b/src/wrappers/LUfactor.f90 @@ -1,4 +1,4 @@ -SUBROUTINE LUfactor(SparseMatrix, Nr) +SUBROUTINE LUfactor(SparseMatrix, Nr, fileop) ! ! LU factor matrix given in sparse format. ! @@ -9,7 +9,7 @@ SUBROUTINE LUfactor(SparseMatrix, Nr) USE HSL_LU IMPLICIT NONE TYPE (SparseArray_COO) :: SparseMatrix -INTEGER :: Nr, Nxz, nnz, STAT +INTEGER :: Nr, Nxz, nnz, STAT, fileop nnz = SIZE(SparseMatrix%val) nxz = Nr ! total number of grid points @@ -53,9 +53,11 @@ SUBROUTINE LUfactor(SparseMatrix, Nr) END IF WRITE (*,'(/A)') ' Factorization of preconditioner:' +WRITE (fileop,'(/A)') ' Factorization of preconditioner:' MAXS = INFOHSL(8) ! Minimum size allowable from analysis PRINT *, ' Real workspace for LU factors: MAXS = ', MAXS +write(fileop,*) ' Real workspace for LU factors: MAXS = ', MAXS ALLOCATE ( SS(MAXS), STAT=STAT) CALL CheckError(STAT,5) @@ -72,6 +74,9 @@ SUBROUTINE LUfactor(SparseMatrix, Nr) WRITE (*,'(A,I6)') ' Size of real space used to store the LU factors = ', INFOHSL(9) WRITE (*,'(A,I6)') ' Size of integer space used to store the LU factors = ', INFOHSL(10) WRITE (*,'(A,I6/)') ' Number of off-diagonal pivots = ', INFOHSL(12) +WRITE (fileop,'(A,I6)') ' Size of real space used to store the LU factors = ', INFOHSL(9) +WRITE (fileop,'(A,I6)') ' Size of integer space used to store the LU factors = ', INFOHSL(10) +WRITE (fileop,'(A,I6/)') ' Number of off-diagonal pivots = ', INFOHSL(12) JOB = 3 ! Solution From 173dfea6212ad6bdb1eebae0f97c871db3ee53d4 Mon Sep 17 00:00:00 2001 From: hbbingham Date: Sat, 30 Jan 2016 13:56:19 +0100 Subject: [PATCH 21/56] Added screen and log file output info on the flux boundary condition and also a check of the y-spacing so the code stops if it is not uniform. -hbb --- src/initialization/setupWavePaddle.f90 | 30 +++++++++++++++++-- src/main/OceanWave3DT0Setup.f90 | 4 ++- .../ShowFreeSurfaceEvolution2D.m | 10 +++---- 3 files changed, 36 insertions(+), 8 deletions(-) diff --git a/src/initialization/setupWavePaddle.f90 b/src/initialization/setupWavePaddle.f90 index a4a061e..b6c7be5 100644 --- a/src/initialization/setupWavePaddle.f90 +++ b/src/initialization/setupWavePaddle.f90 @@ -2,14 +2,17 @@ SUBROUTINE setupwavepaddle ! Prepare for wave generation from paddle signal ! Written by Bo Terp Paulsen, botp@mek.dtu.dk ! + ! Added output info to screen and LOG file and a check for + ! the correct uniform spacing of flux points in the y-direction. - hbb@mek.dtu.dk. + ! ! Inputs / outputs ! USE GlobalVariables USE DataTypes IMPLICIT NONE - INTEGER :: Ny, Nz, ndat, i,n2,j,nt - REAL(KIND=long) :: dt_inc + INTEGER :: Ny, Nz, ndat, i,n2,j,nt, flag + REAL(KIND=long) :: dt_inc, dy_local REAL(KIND=long),ALLOCATABLE :: waveFlux_inci(:,:) CHARACTER(len=30) header @@ -23,6 +26,10 @@ SUBROUTINE setupwavepaddle open(21,file=wave3DFlux%inc_wave_file,status='old') READ(21,'(A)',err=15)header READ(21,*)dt_inc, nt, n2 + write(6,23),wave3DFlux%inc_wave_file,header + write(fileop(1),23),wave3DFlux%inc_wave_file,header +23 FORMAT('Reading the wall boundary flux from file: ',A,'with header ',/,A) + ! ! Allocate fields ! ALLOCATE(waveFlux_inci(nt,n2),wave3DFlux%time(nt),& @@ -40,6 +47,25 @@ SUBROUTINE setupwavepaddle 16 print *, 'error reading wave flux data' stop 14 CLOSE(21) + ! + write(6,24)nt,dt_inc,n2,wave3DFlux%y + write(fileop(1),24)nt,dt_inc,n2,wave3DFlux%y +24 FORMAT('Found nt=',i10,' time steps at dt = ',e12.4,' for ny= ',i10,' points in the y-direction ',/, & + 'at positions: ',/,1000e12.4) + ! + ! Check that the points are spaced correctly. + ! + dy_local=2*wave3DFlux%y(1); + flag=0 + do i=2,n2-1 + if(abs(wave3DFlux%y(i)-(wave3DFlux%y(i-1)+dy_local)).ge.1.e-5) then + flag=1 + end if + end do + if (flag .ne. 0)then + write(6,*)' ** Your wavemaker flux points must be uniformly spaced from y=dy/2 to ymax-dy/2. **' + stop + end if IF(nt*dt_inc < Nsteps*dt) THEN PRINT *, 'Time series for incident waves is to short, (nt*dt)_solver & diff --git a/src/main/OceanWave3DT0Setup.f90 b/src/main/OceanWave3DT0Setup.f90 index 462fad7..a47e371 100644 --- a/src/main/OceanWave3DT0Setup.f90 +++ b/src/main/OceanWave3DT0Setup.f90 @@ -293,8 +293,10 @@ SUBROUTINE OceanWave3DT0Setup ENDIF IF(IncWaveType==3) THEN ! Wave generation by flux condition on western wall, botp + WRITE(6,79) + WRITE(fileop(1),79) +79 FORMAT(/,' The incident wave is a flux boundary condition applied at the Western boundary.',/) CALL setupWavePaddle() - ENDIF ! Uneumann is in all cases added to the western boundary. Only if ! IncWaveType==3 is it non-zero. diff --git a/utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m b/utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m index 3b7d4e7..d061553 100644 --- a/utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m +++ b/utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m @@ -15,18 +15,18 @@ %dirpath = '/Users/apek/CVS/tests/OleLindberg'; %dirpath = '/Users/apek/OW3Dtest'; %dirpath = '/Users/apek/Desktop/OCW3D'; -dirpath = '/Users/apek/Desktop/OCWD3DWhalinTest'; -cd(dirpath) +%dirpath = '/Users/apek/Desktop/OCWD3DWhalinTest'; +%cd(dirpath) % %************************************************************************ % *** Set these values to correspond to the run at hand.*** initialstep = 0; -Nsteps = 1283; %915; -jump = 1; +Nsteps = 20; %915; +jump = 2; dt = .0245 g = 9.81; plotmethod = 2; % 1-> 2D, 2->3D -Amax=0.04;%10*50*0.125; % To set the scale of the z-axis plot +Amax=1.;%10*50*0.125; % To set the scale of the z-axis plot IOmethod = 1; %0:binary ; 1:classical unformatted ; 2:unformatted ftn95 fac = 1; %1e-1; % From d8db718f1687fd1eaea9570c3c30edd1a2f62ad2 Mon Sep 17 00:00:00 2001 From: hbbingham Date: Sat, 30 Jan 2016 17:16:31 +0100 Subject: [PATCH 22/56] Added a new matlab utility to read and plot the boundary flux. -hbb --- .../visualization/PlotWaveMakerSignal.m | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 utils/matlab/visualization/PlotWaveMakerSignal.m diff --git a/utils/matlab/visualization/PlotWaveMakerSignal.m b/utils/matlab/visualization/PlotWaveMakerSignal.m new file mode 100644 index 0000000..dba36e7 --- /dev/null +++ b/utils/matlab/visualization/PlotWaveMakerSignal.m @@ -0,0 +1,22 @@ +function PlotWaveMakerSignal(fname) +% +% Read in the flux boundary condition and plot it up for visualization. +% +fid = fopen(fname,'r'); +header=fgetl(fid); +tmp=fscanf(fid,'%f %d %d \n',[3,1]); dt=tmp(1); nt=tmp(2); ny=tmp(3); +y=zeros(ny,1); u=zeros(nt,ny); +y=fscanf(fid,'%f',ny); + +for it=1:nt + tmp=fscanf(fid,'%f',ny+1); + t(it)=tmp(1); + u(it,:)=tmp(2:ny+1); +end + +fclose(fid); +[Y,T]=meshgrid(y,t); +mesh(T,Y,u); +xlabel('t'); ylabel('y'); zlabel('u'); +title('Flux at the Western boundary'); +end From df78ea5eeb19046831f8ee7ed15fb01370b03cb0 Mon Sep 17 00:00:00 2001 From: hbbingham Date: Wed, 3 Feb 2016 11:45:50 +0100 Subject: [PATCH 23/56] The flux boundary wave generation feature has been modified so that: 1. Information is output to the screen and LOG.txt file, 2. Linear interpolation in time is used between the closest two input values and the current RKtime value, 3. The flux BC is put into the RHS vector in RungeKutta4.f90 rather than during the matrix-vector product in Build_Linear_System.f90, 4. The phi_x and eta_x values are added to the ghost point source terms so that the x-derivatives on the FS are consistent with the BC. The linear FSBC eta_x=-1/g u_t is used to get eta_x from the input flux. -hbb --- src/IO/ReadInputFileParameters.f90 | 2 +- src/functions/BuildLinearSystem.f90 | 7 +- src/functions/polint.f90 | 5 +- src/initialization/setupWavePaddle.f90 | 194 +++++++++++------- src/main/OceanWave3DT0Setup.f90 | 20 +- src/main/OceanWave3DTakeATimeStep.f90 | 22 ++ src/timeintegration/Runge_Kutta_4.f90 | 60 ++++-- src/utilities/build_coeff.f90 | 1 - .../waveGenerationFromPaddleSignal.f90 | 191 +++++++++-------- src/variabledefs/datatypes.f90 | 2 +- .../visualization/PlotWaveMakerSignal.m | 26 ++- 11 files changed, 339 insertions(+), 191 deletions(-) diff --git a/src/IO/ReadInputFileParameters.f90 b/src/IO/ReadInputFileParameters.f90 index 18cc7e5..5e923dc 100644 --- a/src/IO/ReadInputFileParameters.f90 +++ b/src/IO/ReadInputFileParameters.f90 @@ -493,7 +493,7 @@ SUBROUTINE ReadInputFileParameters curvilinearONOFF = 0 ! Make sure it is the standard model which is employed (also for curvilinear 2D choices) END IF ! -! Linear mono-chromatic or random wave generation parameters. +! Linear mono-chromatic, random wave or flux boundary generation parameters. ! IF (IncWaveType==3) THEN diff --git a/src/functions/BuildLinearSystem.f90 b/src/functions/BuildLinearSystem.f90 index 186e1b0..31bf260 100644 --- a/src/functions/BuildLinearSystem.f90 +++ b/src/functions/BuildLinearSystem.f90 @@ -1,5 +1,10 @@ SUBROUTINE BuildLinearSystem(Nx,Ny,Nz,PHI,output,GridStruct,alpha,beta,gamma) ! By Allan P. Engsig-Karup. +! +! Form: output = A PHI +! +! where A is the system matrix and phi the current guess +! USE Precision USE Constants USE DataTypes @@ -150,7 +155,7 @@ SUBROUTINE BuildLinearSystem(Nx,Ny,Nz,PHI,output,GridStruct,alpha,beta,gamma) !But keep this loop from 1 to Nz for SWENSE (use of Gidx3...) Gidx = k + (i-1)*Nz + (j-1)*Nx*Nz Gidx2 = k + (i-1+1)*Nz + (j-1)*Nx*Nz - output(Gidx) = dpdx(Gidx2) + Uneumann(k,j) + output(Gidx) = dpdx(Gidx2) !+ Uneumann(k,j) ! GD: SWENSE addition comes here IF (swenseONOFF/=0) THEN output(Gidx) = output(Gidx) + Wavefield%Px_I_bp(Gidx3) diff --git a/src/functions/polint.f90 b/src/functions/polint.f90 index 02dccd5..93ecc7e 100644 --- a/src/functions/polint.f90 +++ b/src/functions/polint.f90 @@ -38,7 +38,10 @@ SUBROUTINE polint(xa,ya,n,x,y,dy) hp=xa(i+m)-x w=c(i+1)-d(i) den=ho-hp - IF(den.eq.0.)print*, 'failure in polint'; stop + IF(den.eq.0.)then + print*, 'failure in polint' + stop + end if !This error can occur only if two input xa’s are (to within roundoff) identical. den=w/den d(i)=hp*den ! Here the c’s and d’s are updated. diff --git a/src/initialization/setupWavePaddle.f90 b/src/initialization/setupWavePaddle.f90 index b6c7be5..50ccbe6 100644 --- a/src/initialization/setupWavePaddle.f90 +++ b/src/initialization/setupWavePaddle.f90 @@ -1,82 +1,124 @@ - SUBROUTINE setupwavepaddle - ! Prepare for wave generation from paddle signal - ! Written by Bo Terp Paulsen, botp@mek.dtu.dk - ! - ! Added output info to screen and LOG file and a check for - ! the correct uniform spacing of flux points in the y-direction. - hbb@mek.dtu.dk. - ! +SUBROUTINE setupwavepaddle + ! + ! Prepare for wave generation from a paddle signal applied as + ! a uniform flux along the Western boundary. + ! + ! Written by Bo Terp Paulsen, botp@mek.dtu.dk + ! + ! Feb. 2016: modified by Harry B. Bingham - hbb@mek.dtu.dk. + ! Added output info to screen and LOG file and a check for + ! the correct uniform spacing of flux points in the y-direction. + ! Also added the free surface slope condition based on the linear + ! FSBC eta_x = -1/g u_t to be applied in the ghost point update + ! in UpdateGhostLayerX.f90. + ! + ! + ! + ! Inputs / outputs + ! + ! The flux boundary conditions are read from the input file and + ! loaded into the structure: wave3DFlux with variables: + ! %nt + ! %n2 (ny) + ! %dt_inc + ! %flux(nt,n2) + ! %etax(nt,n2) + ! + USE GlobalVariables + USE DataTypes + IMPLICIT NONE + ! + ! local variables + INTEGER :: Ny, Nz, ndat, i, n2, j, nt, flag + REAL(KIND=long) :: dt_inc, dy_local, FluxTime(5), FluxTimeC(5,5), gfac + REAL(KIND=long),ALLOCATABLE :: waveFlux_inci(:,:) !hbb should remove this... + CHARACTER(len=30) header - ! Inputs / outputs - ! - USE GlobalVariables - USE DataTypes - IMPLICIT NONE - INTEGER :: Ny, Nz, ndat, i,n2,j,nt, flag - REAL(KIND=long) :: dt_inc, dy_local - REAL(KIND=long),ALLOCATABLE :: waveFlux_inci(:,:) - CHARACTER(len=30) header - + Ny = FineGrid%Ny + GhostGridY*2 + Nz = FineGrid%Nz + GhostGridZ + ! + ! Read the input file header + ! + open(21,file=wave3DFlux%inc_wave_file,status='old') + READ(21,'(A)',err=15)header + READ(21,*)dt_inc, nt, n2 + ! Informative output + write(6,23),wave3DFlux%inc_wave_file,header + write(fileop(1),23),wave3DFlux%inc_wave_file,header +23 FORMAT('Reading the wall boundary flux from file: ',A,'with header ',/,A) + ! + ! Allocate fields + ! + ALLOCATE(waveFlux_inci(nt,n2),wave3DFlux%time(nt),& + wave3DFlux%flux(nt,n2),wave3DFlux%y(n2), wave3DFlux%etax(nt,n2)) - Ny = FineGrid%Ny + GhostGridY*2 - Nz = FineGrid%Nz + GhostGridZ + ! Read the rest of file + ! + READ(21,*)(wave3DFlux%y(j),j=1,n2) + DO i=1,nt + READ(21,*,end=16) wave3DFlux%time(i),(waveFlux_inci(i,j),j=1,n2) + ENDDO + go to 14 +15 print *, 'wave paddle.f90: No header line' + stop +16 print *, 'error reading wave flux data' + stop +14 CLOSE(21) + ! + ! Informative output + write(6,24)nt,dt_inc,n2,wave3DFlux%y + write(fileop(1),24)nt,dt_inc,n2,wave3DFlux%y +24 FORMAT('Found nt=',i10,' time steps at dt = ',e12.4,' for ny= ', & + i10,' points in the y-direction ',/, 'at positions: ',/,1000e12.4) + ! + ! Check that the points are spaced correctly in y. + ! + dy_local=2*wave3DFlux%y(1); + flag=0 + do i=2,n2-1 + if(abs(wave3DFlux%y(i)-(wave3DFlux%y(i-1)+dy_local)).ge.1.e-5) then + flag=1 + end if + end do + if (flag .ne. 0)then + write(6,*)' ** Your wavemaker flux points must be uniformly spaced from y=dy/2 to ymax-dy/2. **' + stop + end if - ! Read header - ! - open(21,file=wave3DFlux%inc_wave_file,status='old') - READ(21,'(A)',err=15)header - READ(21,*)dt_inc, nt, n2 - write(6,23),wave3DFlux%inc_wave_file,header - write(fileop(1),23),wave3DFlux%inc_wave_file,header -23 FORMAT('Reading the wall boundary flux from file: ',A,'with header ',/,A) - ! - ! Allocate fields - ! - ALLOCATE(waveFlux_inci(nt,n2),wave3DFlux%time(nt),& - wave3DFlux%flux(nt,n2),wave3DFlux%y(n2)) + IF(nt*dt_inc < Nsteps*dt) THEN + PRINT *, 'Time series for the boundary flux incident waves is too short, (nt*dt)_solver & + < (Nsteps*dt)_waveMaker.' + stop + ENDIF + ! + ! Save the data in the global structure + ! + write(6,28)wave3DFlux%order-1 +28 Format('Interpolation in the y-direction will be done to order ',i10,//) - ! Read rest of file - ! - READ(21,*)(wave3DFlux%y(j),j=1,n2) - DO i=1,nt - READ(21,*,end=16) wave3DFlux%time(i),(waveFlux_inci(i,j),j=1,n2) - ENDDO - go to 14 -15 print *, 'wave paddle.f90: No header line' - stop -16 print *, 'error reading wave flux data' - stop -14 CLOSE(21) - ! - write(6,24)nt,dt_inc,n2,wave3DFlux%y - write(fileop(1),24)nt,dt_inc,n2,wave3DFlux%y -24 FORMAT('Found nt=',i10,' time steps at dt = ',e12.4,' for ny= ',i10,' points in the y-direction ',/, & - 'at positions: ',/,1000e12.4) - ! - ! Check that the points are spaced correctly. - ! - dy_local=2*wave3DFlux%y(1); - flag=0 - do i=2,n2-1 - if(abs(wave3DFlux%y(i)-(wave3DFlux%y(i-1)+dy_local)).ge.1.e-5) then - flag=1 - end if - end do - if (flag .ne. 0)then - write(6,*)' ** Your wavemaker flux points must be uniformly spaced from y=dy/2 to ymax-dy/2. **' - stop - end if + wave3DFlux%flux = waveFlux_inci + deallocate(waveFlux_inci) + wave3DFlux%n2 = n2 + wave3DFlux%dt = dt_inc + ! + ! Take a 4th-order derivative of the flux in time and build eta_x=-1/g u_t. + ! + Do i=1,5 + FluxTime(i)=(i-1)*dt_inc + END Do + CALL BuildStencilsGridX(2,1,FluxTime,FluxTimeC,5,1) + gfac=-1._long/g + Do j=1,n2 + Do i=1,2 + wave3DFlux%etax(i,j)=gfac*Dot_Product(FluxTimeC(i,:),wave3DFlux%flux(1:5,j)) + END Do + Do i=3,nt-2 + wave3DFlux%etax(i,j)=gfac*Dot_Product(FluxTimeC(3,:),wave3DFlux%flux(i-2:i+2,j)) + END Do + Do i=nt-1,nt + wave3DFlux%etax(i,j)=gfac*Dot_Product(FluxTimeC(5-(nt-i),:),wave3DFlux%flux(nt-4:nt,j)) + END Do + END Do - IF(nt*dt_inc < Nsteps*dt) THEN - PRINT *, 'Time series for incident waves is to short, (nt*dt)_solver & - < (Nsteps*dt)_waveMaker.' - stop - ENDIF - - ! Save data in global struct - ! - wave3DFlux%flux = waveFlux_inci - wave3DFlux%n2 = n2 - wave3DFlux%dt = dt_inc - - END SUBROUTINE +END SUBROUTINE setupwavepaddle diff --git a/src/main/OceanWave3DT0Setup.f90 b/src/main/OceanWave3DT0Setup.f90 index a47e371..da6a97e 100644 --- a/src/main/OceanWave3DT0Setup.f90 +++ b/src/main/OceanWave3DT0Setup.f90 @@ -4,6 +4,7 @@ SUBROUTINE OceanWave3DT0Setup ! begins. ! ! By Allan P. Engsig-Karup. + ! USE GlobalVariables USE MGLevels IMPLICIT NONE @@ -209,10 +210,11 @@ SUBROUTINE OceanWave3DT0Setup ! Allocate( RandomWave(1)%eta0(n_fft), RandomWave(1)%beta(n_fft) ) ! - Call random_wave_coefficients( RandomWave(i)%ispec, n_fft, RandomWave(i)%beta0, & - dt, dx, RandomWave(i)%Tp, RandomWave(i)%Hs, RandomWave(i)%h0, g, & - RandomWave(i)%inc_wave_file, RandomWave(i)%kh_max, RandomWave(i)%seed, & - RandomWave(i)%seed2, RandomWave(1)%eta0, RandomWave(1)%beta, RandomWave(1)%S0, n_cut,RandomWave(i)%gamma ) + Call random_wave_coefficients( RandomWave(i)%ispec, n_fft, RandomWave(i)%beta0, & + dt, dx, RandomWave(i)%Tp, RandomWave(i)%Hs, RandomWave(i)%h0, g, & + RandomWave(i)%inc_wave_file, RandomWave(i)%kh_max, RandomWave(i)%seed, & + RandomWave(i)%seed2, RandomWave(1)%eta0, RandomWave(1)%beta, RandomWave(1)%S0, & + n_cut,RandomWave(i)%gamma ) ! ! Count the total number of grid points in each generation zone and allocate space ! for eta and phiS and compute the elevation and surface potential time-histories. @@ -231,8 +233,8 @@ SUBROUTINE OceanWave3DT0Setup ') in a depth of',RandomWave(i)%h0,' This generation zone contains ',& n_wavem, ' grid points.' write(fileop(1),*) 'Zone ',i,':' - write(fileop(1),*) 'The generated wave is centered at (x,y)=(',RandomWave(i)%x0,',',& - RandomWave(i)%y0, & + write(fileop(1),*) 'The generated wave is centered at (x,y)=(',RandomWave(i)%x0,& + ',',RandomWave(i)%y0, & ') in a depth of',RandomWave(i)%h0,' This generation zone contains ',& n_wavem, ' grid points.' RandomWave(i)%nf=FineGrid%nx+2*GhostGridX @@ -267,8 +269,8 @@ SUBROUTINE OceanWave3DT0Setup ') in a depth of',RandomWave(i)%h0,' This generation zone contains ', & RandomWave(i)%nx, ' by ',RandomWave(i)%ny,' grid points.' write(fileop(1),*) 'Zone ',i,':' - write(fileop(1),*) 'The generated wave is centered at (x,y)=(',RandomWave(i)%x0,',', & - RandomWave(i)%y0, & + write(fileop(1),*) 'The generated wave is centered at (x,y)=(',RandomWave(i)%x0,& + ',', RandomWave(i)%y0, & ') in a depth of',RandomWave(i)%h0,' This generation zone contains ', & RandomWave(i)%nx, ' by ',RandomWave(i)%ny,' grid points.' ! @@ -298,7 +300,7 @@ SUBROUTINE OceanWave3DT0Setup 79 FORMAT(/,' The incident wave is a flux boundary condition applied at the Western boundary.',/) CALL setupWavePaddle() ENDIF - ! Uneumann is in all cases added to the western boundary. Only if + ! Uneumann is in all cases added to the western boundary RHS. Only if ! IncWaveType==3 is it non-zero. ! FIXME: Is there a better solution where this field is only loaded if needed? ! botp diff --git a/src/main/OceanWave3DTakeATimeStep.f90 b/src/main/OceanWave3DTakeATimeStep.f90 index 56f2e1e..f7c6601 100644 --- a/src/main/OceanWave3DTakeATimeStep.f90 +++ b/src/main/OceanWave3DTakeATimeStep.f90 @@ -7,6 +7,7 @@ SUBROUTINE OceanWave3DTakeATimeStep IMPLICIT NONE INTEGER i, j, k + REAL(kind=long) :: maxEta, maxh TOTALITEROLD = TOTALITER @@ -16,6 +17,7 @@ SUBROUTINE OceanWave3DTakeATimeStep ! Print the simulation time to the screen every 10 time steps. IF(MOD(tstep,10)==0)THEN WRITE(6,2000) tstep, time + WRITE(fileop(1),2000) tstep, time END IF ! ! Use the free-surface conditions to step forward in time and get new @@ -44,6 +46,26 @@ SUBROUTINE OceanWave3DTakeATimeStep ! This is only implemented in 2D. CALL detect_breaking(fileop(14),FineGrid%Nx+2*GhostGridX,Wavefield,1) end IF + ! + ! Check for an unstable solution and abort if found + ! + maxEta=maxval(abs(wavefield%E)); maxh=maxval(finegrid%h) + IF ( maxEta .gt. 10.*maxh) Then + write(6,*)' ********************************************************.' + write(6,*)' The solution looks to be going unstable, aborting here.' + write(6,*)' eta_max =',maxEta,' > 10 h_max =',10*maxh + write(6,*)' ********************************************************.' + write(fileop(1),*)' ********************************************************.' + write(fileop(1),*)' The solution looks to be going unstable, aborting here.' + write(fileop(1),*)' eta_max =',maxEta,' > 10 h_max =',10*maxh + write(fileop(1),*)' ********************************************************.' + ! CLOSE OPEN FILES + CALL CloseIOFiles + ! + ! DEALLOCATE + CALL CloseVariables + stop + END IF time = time + dt diff --git a/src/timeintegration/Runge_Kutta_4.f90 b/src/timeintegration/Runge_Kutta_4.f90 index f958ec0..cbf8d98 100644 --- a/src/timeintegration/Runge_Kutta_4.f90 +++ b/src/timeintegration/Runge_Kutta_4.f90 @@ -7,7 +7,7 @@ SUBROUTINE Runge_Kutta_4(rhsFreeSurface) RHS, relaxONOFF, LASTPHI, tstep, extrapolationONOFF, LinearONOFF, filteringONOFF, & filterALPHA, filterNP, filtercoefficients, GhostGridX, GhostGridY, & swenseONOFF, swenseDir, SFsol, Wavefield , curvilinearONOFF, Wavefield_tmp, & - filtercoefficients2, BreakMod, fileop, IncWaveType + filtercoefficients2, BreakMod, fileop, IncWaveType, Uneumann IMPLICIT NONE ! EXTERNAL rhsFreeSurface, BuildLinearSystem, BuildLinearSystemTransformedCurvilinear, DiffXEven, DiffYEven, FILTERING, & @@ -23,7 +23,9 @@ SUBROUTINE Runge_Kutta_4(rhsFreeSurface) CALL ALLOCATE_Wavefield_Type(Wavefield_tmp,FineGrid%Nx,FineGrid%Ny,FineGrid%Nz,GhostGridX,GhostGridy,GhostGridZ,swenseONOFF) ENDIF ! - ! Last computed solution for PHI + ! The last computed solution for PHI and all derivatives are up to date at the old time step, + ! so we can take the first stage step immediately. + ! idxnew = MOD(tstep-1,2)+1 idxlast = MOD(tstep ,2)+1 ! idxold = MOD(tstep+1,3)+1 @@ -53,12 +55,16 @@ SUBROUTINE Runge_Kutta_4(rhsFreeSurface) IF (BreakMod%i_breaking>0 .and. FineGrid%ny==1) THEN CALL detect_breaking(fileop(14),FineGrid%Nx+2*GhostGridX,Wavefield,0) END IF - + ! + ! Build the FSBC right hand sides + ! CALL rhsFreeSurface(time,Wavefield,g,k1_E,k1_P,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY) IF(GhostGridX+GhostGridY==2) THEN !GD: 3D case, no time advance of corners values (which are not useful)... CALL Zero_Corners(k1_E,k1_P,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY) ENDIF - + ! + ! Advance the solution to stage 2 + ! Wavefield_tmp%E = Wavefield%E + half*dt*k1_E Wavefield_tmp%P = Wavefield%P + half*dt*k1_P RKtime = time+half*dt @@ -70,7 +76,7 @@ SUBROUTINE Runge_Kutta_4(rhsFreeSurface) ENDIF ! If waves are generated by an inhomogeneous Neumann condition, we update the - ! boundary condition. /botp + ! boundary condition in Uneumann(k,j). /botp IF (IncWaveType==3) THEN CALL waveGenerationFromPaddleSignal(RKtime) ENDIF @@ -86,15 +92,24 @@ SUBROUTINE Runge_Kutta_4(rhsFreeSurface) FineGrid,FineGrid%dsigmanew,Wavefield_tmp) ! ENDIF ENDIF - + ! + ! Put the Dirichelet points into the RHS vector. + ! RHS(FineGrid%Nz+GhostGridZ,1+GhostGridX:FineGrid%Nx+GhostGridX,1+GhostGridY:FineGrid%Ny+GhostGridY) = & Wavefield_tmp%P(1+GhostGridX:FineGrid%Nx+GhostGridX,1+GhostGridY:FineGrid%Ny+GhostGridY) + ! + ! Put the wavemaker Western boundary flux Nuemann points into the RHS vector. + ! + RHS(1:FineGrid%Nz+GhostGridZ,1,1+GhostGridY:FineGrid%Ny+GhostGridY) = & + Uneumann(1:FineGrid%Nz+GhostGridZ,1+GhostGridY:FineGrid%Ny+GhostGridY) IF (extrapolationONOFF==1) THEN ! Improving initial guess for iterative solver PHI = 1.5_long*LASTPHI(:,:,:,idxnew) - LASTPHI(:,:,:,idxlast)*half ! PHI = three*LASTPHI(:,:,:,idxnew) - three*LASTPHI(:,:,:,idxlast) + LASTPHI(:,:,:,idxold) ENDIF - + ! + ! Solve iteratively for the current 3D PHI. BuildLinearSystem here is the A_time_x routine. + ! IF (curvilinearONOFF==1) THEN CALL iterative_solution(RHS,(FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ),& BuildLinearSystemTransformedCurvilinear,PHI,FineGrid) @@ -102,7 +117,9 @@ SUBROUTINE Runge_Kutta_4(rhsFreeSurface) CALL iterative_solution(RHS,(FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ),& BuildLinearSystem,PHI,FineGrid) END IF - +! +! Get the vertical derivative on the free surface to complete the solution update at this stage. +! CALL VerticalFreeSurfaceVelocity(Wavefield_tmp%W,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY,FineGrid%Nz+GhostGridZ,PHI,& FineGrid%DiffStencils,FineGrid%dsigmanew(:,:,:,5), gamma) @@ -149,12 +166,12 @@ SUBROUTINE Runge_Kutta_4(rhsFreeSurface) ! CALL RelaxationModule(Wavefield_tmp%E,Wavefield_tmp%P,RKtime) CALL RelaxationModule_new(Wavefield_tmp%E,Wavefield_tmp%P,RKtime,time) ENDIF - +!hbb No need to do this since the time has not changed. ! If waves are generated by an inhomogeneous Neumann condition, we update the ! boundary condition. /botp - IF (IncWaveType==3) THEN - CALL waveGenerationFromPaddleSignal(RKtime) - ENDIF + !IF (IncWaveType==3) THEN + ! CALL waveGenerationFromPaddleSignal(RKtime) + !ENDIF CALL DifferentiationsFreeSurfacePlane(Wavefield_tmp,GhostGridX,GhostGridY,FineGrid,alpha,beta) IF (LinearONOFF==1) THEN @@ -167,9 +184,15 @@ SUBROUTINE Runge_Kutta_4(rhsFreeSurface) ENDIF ENDIF + ! + ! Put the non-homogeneous Dirichelet (FS) and Neumann (Western wall) BCs into the RHS vector. + ! RHS(FineGrid%Nz+GhostGridZ,1+GhostGridX:FineGrid%Nx+GhostGridX,1+GhostGridY:FineGrid%Ny+GhostGridY) = & Wavefield_tmp%P(1+GhostGridX:FineGrid%Nx+GhostGridX,1+GhostGridY:FineGrid%Ny+GhostGridY) + RHS(1:FineGrid%Nz+GhostGridZ,1,1+GhostGridY:FineGrid%Ny+GhostGridY) = & + Uneumann(1:FineGrid%Nz+GhostGridZ,1+GhostGridY:FineGrid%Ny+GhostGridY) + IF (curvilinearONOFF==1) THEN CALL iterative_solution(RHS,(FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ),& BuildLinearSystemTransformedCurvilinear,PHI,FineGrid) @@ -237,9 +260,15 @@ SUBROUTINE Runge_Kutta_4(rhsFreeSurface) ENDIF ENDIF + ! + ! Put the non-homogeneous Dirichelet (FS) and Neumann (Western wall) BCs into the RHS vector. + ! RHS(FineGrid%Nz+GhostGridZ,1+GhostGridX:FineGrid%Nx+GhostGridX,1+GhostGridY:FineGrid%Ny+GhostGridY) = & Wavefield_tmp%P(1+GhostGridX:FineGrid%Nx+GhostGridX,1+GhostGridY:FineGrid%Ny+GhostGridY) + RHS(1:FineGrid%Nz+GhostGridZ,1,1+GhostGridY:FineGrid%Ny+GhostGridY) = & + Uneumann(1:FineGrid%Nz+GhostGridZ,1+GhostGridY:FineGrid%Ny+GhostGridY) + IF (extrapolationONOFF==1 .AND. tstep>1) THEN ! Improving initial guess for iterative solver ! PHI = (two*LASTPHI(:,:,:,idxnew) - LASTPHI(:,:,:,idxold)) PHI = 2.66667_long*PHI - two*LASTPHI(:,:,:,idxnew) + 0.333333_long*LASTPHI(:,:,:,idxlast) !checked OK Lagrange interp. @@ -346,10 +375,15 @@ SUBROUTINE Runge_Kutta_4(rhsFreeSurface) FineGrid,FineGrid%dsigmanew,Wavefield) ENDIF ENDIF - + ! + ! Add the inhomogeneous Dirichlet FS and Western boundary Neumann points to the rhs vector. + ! RHS(FineGrid%Nz+GhostGridZ,1+GhostGridX:FineGrid%Nx+GhostGridX,1+GhostGridY:FineGrid%Ny+GhostGridY) = & Wavefield%P(1+GhostGridX:FineGrid%Nx+GhostGridX,1+GhostGridY:FineGrid%Ny+GhostGridY) + RHS(1:FineGrid%Nz+GhostGridZ,1,1+GhostGridY:FineGrid%Ny+GhostGridY) = & + Uneumann(1:FineGrid%Nz+GhostGridZ,1+GhostGridY:FineGrid%Ny+GhostGridY) + IF (curvilinearONOFF==1) THEN CALL iterative_solution(RHS,(FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ),& BuildLinearSystemTransformedCurvilinear,PHI,FineGrid) diff --git a/src/utilities/build_coeff.f90 b/src/utilities/build_coeff.f90 index 8d8a7a3..ca74d37 100644 --- a/src/utilities/build_coeff.f90 +++ b/src/utilities/build_coeff.f90 @@ -23,7 +23,6 @@ SUBROUTINE build_coeff (ETA, N, Hs, Tp, DELT, SEED, seed2, i_spec,gamma) ! Take care of zero and Nyquist frequencies. - !eta (1) = czero eta (1) = zero eta (2) = zero open(unit=78,file='spectrum',status='unknown') diff --git a/src/utilities/waveGenerationFromPaddleSignal.f90 b/src/utilities/waveGenerationFromPaddleSignal.f90 index a008d4a..69c951e 100644 --- a/src/utilities/waveGenerationFromPaddleSignal.f90 +++ b/src/utilities/waveGenerationFromPaddleSignal.f90 @@ -1,87 +1,112 @@ - SUBROUTINE waveGenerationFromPaddleSignal(RKtime) - ! 3-dimensional wave generation. - ! Implementation through inhomogeneous Neumann boundary conditions - ! specified in BuildLinearSystem.f90 - ! - ! Inputs: - ! - ! - ! Outputs: - ! U:= Velocity array size(NZ,NY) (Global variable) - ! - ! - ! Written by Bo Terp Paulsen, botp@mek.dtu.dk - ! +SUBROUTINE waveGenerationFromPaddleSignal(RKtime) + ! + ! 3-dimensional wave generation via a Western boundary flux. + ! This is implemented via inhomogeneous Neumann boundary conditions + ! added to the RHS vector in subroutine RungeKutta44.f90. In the + ! nonlinear case, source terms are also added to the update of the + ! ghost points for eta and phi on the free surface. + ! + ! Inputs: + ! RKtime + ! + ! Outputs: + ! Uneumann:= Velocity array size(NZ,NY) (Global variable) + ! wavefield%SourceEx:= Velocity array size(1,NY) (Global variable) + ! wavefield%SourcePx:= Velocity array size(1,NY) (Global variable) + ! + ! + ! Written by Bo Terp Paulsen, botp@mek.dtu.dk + ! + ! Modified Feb. 2016 by Harry Bingham, hbb@mek.dtu.dk. + ! + ! Added linear interpolation between the enclosing two time steps + ! and placed the inhomogeneous conditions for phi^S_x and eta_x into + ! the source terms for the ghost point update in UpdateGhostLayerX.f90. + ! Also moved the insertion of Uneumann to the RHS in RungeKutta44.f90 + ! from the matrix-vector product of BuildLinearSystem.f90. + ! + ! Inputs / outputs + ! + USE Precision + USE GlobalVariables + IMPLICIT NONE + ! + Real(kind=long) :: RKtime + ! + ! Local variables + ! + INTEGER :: j, k, NNY, itime + REAL(KIND=long) :: omega, dz, dy_local, FAC, flux, flux0, flux1, y0, error, & + tWeight(2), dt_local(2), etax, etax0, etax1 + REAL(KIND=long) :: FluxInterp(wave3DFlux%order) + ! + ! Find the nearest boundary flux index less than the current time. + ! + itime = floor(RKtime/(wave3DFlux%dt))+1 + ! + ! Compute the linear interpolation wieghts for the two boundary flux + ! time-levels that bracket the current time level. + ! + dt_local(1)=rktime-(itime-1)*wave3DFlux%dt + dt_local(2)=(itime)*wave3DFlux%dt-rktime + tWeight(1)=dt_local(2)/(dt_local(1)+dt_local(2)) + tWeight(2)=dt_local(1)/(dt_local(1)+dt_local(2)) + ! + ! Linear ramping in time + ! + IF (RKtimewave3DFlux%n2) THEN + NNY = wave3DFlux%n2 - wave3DFlux%order + 1 + ENDIF + ! + ! Interpolate in y at time step itime + ! + FluxInterp = wave3DFlux%flux(itime,NNy:NNy+wave3DFlux%order-1) + CALL polint(wave3DFlux%y(NNy),FluxInterp,wave3DFlux%order,y0,flux0,error) + FluxInterp = wave3DFlux%etax(itime,NNy:NNy+wave3DFlux%order-1) + CALL polint(wave3DFlux%y(NNy),FluxInterp,wave3DFlux%order,y0,etax0,error) + ! + ! Interpolate in y at time step itime+1 + ! + FluxInterp = wave3DFlux%flux(itime+1,NNy:NNy+wave3DFlux%order-1) + CALL polint(wave3DFlux%y(NNy),FluxInterp,wave3DFlux%order,y0,flux1,error) + FluxInterp = wave3DFlux%etax(itime+1,NNy:NNy+wave3DFlux%order-1) + CALL polint(wave3DFlux%y(NNy),FluxInterp,wave3DFlux%order,y0,etax1,error) + ! + ! Linearly interpolate between the two time values to get the value at RKtime. + ! + flux = tWeight(1)*flux0 + tWeight(2)*flux1 + etax = tWeight(1)*etax0 + tWeight(2)*etax1 - ! Nearest neighbour interpolation in time !TODO: implement higher order - ! scheme. - itime = floor(RKtime/(wave3DFlux%dt))+1 - - !itime = (time-zero)/dt0+1 - - IF (MOD(RKtime,wave3DFlux%dt)/wave3DFlux%dt<=1/100) THEN - tWeight = 0; - ELSE - tWeight = RKtime/wave3DFlux%dt-itime+1 - ENDIF - - ! Linear ramping in time - ! - IF (RKtimewave3DFlux%n2) THEN - NNY = wave3DFlux%n2 - wave3DFlux%order + 1 - ENDIF - - FluxInterp = wave3DFlux%flux(itime,NNy:NNy+wave3DFlux%order-1) - CALL polint(wave3DFlux%y(NNy),FluxInterp,wave3DFlux%order,y0,flux,error) - - IF (tWeight/=0) THEN - tmp = flux - FluxInterp = wave3DFlux%flux(itime+1,NNy:NNy+wave3DFlux%order-1) - CALL polint(wave3DFlux%y(NNy),FluxInterp,wave3DFlux%order,y0,flux,error) - - flux = (1-tWeight)*flux + tmp*tWeight - ENDIF - ! Loop over the vertical direction and copy into global array - DO k = 1+GhostGridZ,FineGrid%Nz + GhostGridZ - Uneumann(k,j) = -FAC*flux - END DO - END DO - END SUBROUTINE + ! Loop over the vertical direction and copy into the global flux array + DO k = 1+GhostGridZ,FineGrid%Nz + GhostGridZ + Uneumann(k,j) = FAC*flux + END DO + ! Add the Neumann conditions on the free surface the source terms for the + ! Western boundary ghost points + wavefield%sourcePx(1+GhostGridX,j) = Uneumann(FineGrid%Nz+GhostGridZ,j) + wavefield%sourceEx(1+GhostGridX,j) = etax + END DO +END SUBROUTINE waveGenerationFromPaddleSignal diff --git a/src/variabledefs/datatypes.f90 b/src/variabledefs/datatypes.f90 index d421569..a3c10c9 100644 --- a/src/variabledefs/datatypes.f90 +++ b/src/variabledefs/datatypes.f90 @@ -156,7 +156,7 @@ MODULE DataTypes REAL(KIND=long) :: dt, rampTime INTEGER :: n2, order CHARACTER(len=30) inc_wave_file - REAL(KIND=long), allocatable :: flux(:,:), y(:), time(:) + REAL(KIND=long), allocatable :: flux(:,:), y(:), time(:), etax(:,:) END TYPE wave3DFluxStruct ! DEFINE a Structure for the wave breaking model parameters diff --git a/utils/matlab/visualization/PlotWaveMakerSignal.m b/utils/matlab/visualization/PlotWaveMakerSignal.m index dba36e7..6d719ad 100644 --- a/utils/matlab/visualization/PlotWaveMakerSignal.m +++ b/utils/matlab/visualization/PlotWaveMakerSignal.m @@ -1,22 +1,38 @@ -function PlotWaveMakerSignal(fname) +function [t,y,u]=PlotWaveMakerSignal(fname) % % Read in the flux boundary condition and plot it up for visualization. +% +% Note that the read statements here are more sensitive than the Fortran +% statements in the OW3D code, so no additional characters should appear +% after the header line. +% +% Written by H.B. Bingham (hbb@mek.dtu.dk) Feb. 2016. % fid = fopen(fname,'r'); header=fgetl(fid); tmp=fscanf(fid,'%f %d %d \n',[3,1]); dt=tmp(1); nt=tmp(2); ny=tmp(3); y=zeros(ny,1); u=zeros(nt,ny); + y=fscanf(fid,'%f',ny); for it=1:nt tmp=fscanf(fid,'%f',ny+1); t(it)=tmp(1); - u(it,:)=tmp(2:ny+1); + u(it,:)=tmp(2:ny+1); end fclose(fid); -[Y,T]=meshgrid(y,t); -mesh(T,Y,u); -xlabel('t'); ylabel('y'); zlabel('u'); +% +% Plot the flux in time and space. +% +figure title('Flux at the Western boundary'); +if ny==1 + plot(t,u) + xlabel('t'); ylabel('u'); +else + [Y,T]=meshgrid(y,t); + mesh(T,Y,u); + xlabel('t'); ylabel('y'); zlabel('u'); +end end From e12a3a0cd0bf9d3d2e1dfcfb1a4e9a8623250da3 Mon Sep 17 00:00:00 2001 From: hbbingham Date: Thu, 4 Feb 2016 13:50:38 +0100 Subject: [PATCH 24/56] Bug fix in irregular wave seed values -hbb --- .../inputfiles/OceanWave3D.inp.RandomWave2D | 2 +- .../OceanWave3D.inp.RandomWave2DShoaling | 2 +- .../inputfiles/OceanWave3D.inp.RandomWave3D | 2 +- .../OceanWave3D.inp.RandomWave3D_closed | 2 +- .../OceanWave3D.inp.RandomWave3D_open | 2 +- src/IO/ReadInputFileParameters.f90 | 110 +++++++++--------- src/main/OceanWave3DT0Setup.f90 | 49 ++++---- src/utilities/random_wave_coefficients.f90 | 2 +- 8 files changed, 86 insertions(+), 85 deletions(-) diff --git a/examples/inputfiles/OceanWave3D.inp.RandomWave2D b/examples/inputfiles/OceanWave3D.inp.RandomWave2D index 53adb38..259aa51 100644 --- a/examples/inputfiles/OceanWave3D.inp.RandomWave2D +++ b/examples/inputfiles/OceanWave3D.inp.RandomWave2D @@ -17,5 +17,5 @@ A linear random wave in 2D on a flat bottom with nonlinear FSBCs, no filtering. 600. 800. 0. 0. 1. 1. 0 0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) 0 <- Curvilinear on/off -1 9. 4. 50. 20. -1 34 100. 0. run06.el <- i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, inc_wave_file. For a random wave, the spectrum: 0=P-M, 1=JONSWAP, 2=Read from a file +1 9. 4. 50. 20. -1 34 100. 0. run06.el <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, (inc_wave_file or gamma_JONSWAP, if ispec=2 or 3), (inc_wave_file,beta,S,gamma_JONSWAP if ispec>=30). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file, 3=>JONSWAP with input gamma; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. diff --git a/examples/inputfiles/OceanWave3D.inp.RandomWave2DShoaling b/examples/inputfiles/OceanWave3D.inp.RandomWave2DShoaling index e16ec10..8d11680 100644 --- a/examples/inputfiles/OceanWave3D.inp.RandomWave2DShoaling +++ b/examples/inputfiles/OceanWave3D.inp.RandomWave2DShoaling @@ -17,5 +17,5 @@ A linear random wave shoaling nonlinearly in 2D on a sloping bottom 600. 800. 0. 0. 1. 1. 0 0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) 0 <- Curvilinear on/off -1 9. 4. 50. 20. -1 34 100. 0. run06.el <- i_spec, T_p, H_s, h0, kh_max, seed, seed2, inc_wave_file. For a random wave, the spectrum: 0=P-M, 1=JONSWAP, 2=Read from a file +1 9. 4. 50. 20. -1 34 100. 0. run06.el <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, (inc_wave_file or gamma_JONSWAP, if ispec=2 or 3), (inc_wave_file,beta,S,gamma_JONSWAP if ispec>=30). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file, 3=>JONSWAP with input gamma; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. diff --git a/examples/inputfiles/OceanWave3D.inp.RandomWave3D b/examples/inputfiles/OceanWave3D.inp.RandomWave3D index 087c930..19c142c 100644 --- a/examples/inputfiles/OceanWave3D.inp.RandomWave3D +++ b/examples/inputfiles/OceanWave3D.inp.RandomWave3D @@ -17,4 +17,4 @@ A flat bottom, linear 3D JONSWAP spectrum with Normal directional spreading arou 0 0 <- Damping pressure zone: PDampingOnOff=0 (off), number of zones. For each zone include the line: x1, x2, y1, y2 (bounds of the zone), gamma0 (dynamic FSBC), Gamma0 (kinematic FSBC), i_damperType (0=friction on the velocity, 1=friction on the potential). 0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) 0 <- Curvilinear on/off -33 8. 2. 80. 20. -1 34 100. 50. run06.el 22.5 1.0 <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, inc_wave_file, (beta, S if 3D). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. +33 8. 2. 80. 20. -1 -11 100. 50. run06.el 22.5 1.0 3.3 <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, (inc_wave_file or gamma_JONSWAP, if ispec=2 or 3), (inc_wave_file,beta,S,gamma_JONSWAP if ispec>=30). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file, 3=>JONSWAP with input gamma; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. diff --git a/examples/inputfiles/OceanWave3D.inp.RandomWave3D_closed b/examples/inputfiles/OceanWave3D.inp.RandomWave3D_closed index d97daf4..cc0748d 100644 --- a/examples/inputfiles/OceanWave3D.inp.RandomWave3D_closed +++ b/examples/inputfiles/OceanWave3D.inp.RandomWave3D_closed @@ -16,4 +16,4 @@ A flat bottom, 3D, JONSWAP spectrum with normal spreading around beta=0. Closed 0 0 <- Damping pressure zone: PDampingOnOff=0 (off), number of zones. For each zone include the line: x1, x2, y1, y2 (bounds of the zone), gamma0 (dynamic FSBC), Gamma0 (kinematic FSBC), i_damperType (0=friction on the velocity, 1=friction on the potential). 0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) 0 <- Curvilinear on/off -33 8. 2. 80. 20. -1 -34 50. 200. run06.el 0.0 1.0 3.3 <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, inc_wave_file, (beta, S, gamma if 3D). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. +33 8. 2. 80. 20. -1 -34 50. 200. run06.el 0.0 1.0 3.3 <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, (inc_wave_file or gamma_JONSWAP, if ispec=2 or 3), (inc_wave_file,beta,S,gamma_JONSWAP if ispec>=30). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file, 3=>JONSWAP with input gamma; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. diff --git a/examples/inputfiles/OceanWave3D.inp.RandomWave3D_open b/examples/inputfiles/OceanWave3D.inp.RandomWave3D_open index eddf457..c34e7d3 100644 --- a/examples/inputfiles/OceanWave3D.inp.RandomWave3D_open +++ b/examples/inputfiles/OceanWave3D.inp.RandomWave3D_open @@ -18,4 +18,4 @@ A flat bottom, 3D, JONSWAP spectrum with normal spreading. Generation along 3 s 0 0 <- Damping pressure zone: PDampingOnOff=0 (off), number of zones. For each zone include the line: x1, x2, y1, y2 (bounds of the zone), gamma0 (dynamic FSBC), Gamma0 (kinematic FSBC), i_damperType (0=friction on the velocity, 1=friction on the potential). 0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) 0 <- Curvilinear on/off -33 8. 2. 80. 20. -1 34 50. 200. run06.el 0.0 1.0 <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, inc_wave_file, (beta, S if 3D). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. +33 8. 2. 80. 20. -1 34 50. 200. run06.el 0.0 1.0 3.3 <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, (inc_wave_file or gamma_JONSWAP, if ispec=2 or 3), (inc_wave_file,beta,S,gamma_JONSWAP if ispec>=30). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file, 3=>JONSWAP with input gamma; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. diff --git a/src/IO/ReadInputFileParameters.f90 b/src/IO/ReadInputFileParameters.f90 index 5e923dc..0b5ce39 100644 --- a/src/IO/ReadInputFileParameters.f90 +++ b/src/IO/ReadInputFileParameters.f90 @@ -496,61 +496,61 @@ SUBROUTINE ReadInputFileParameters ! Linear mono-chromatic, random wave or flux boundary generation parameters. ! - IF (IncWaveType==3) THEN - ! Wave generation with flux condition on western boundary - READ(FILEIP(1),*,IOSTAT=ios) wave3DFlux%rampTime, wave3DFlux%order, wave3DFlux%inc_wave_file - IF (ios>0) THEN - Print *, 'ReadInputFileParameters: For IncWaveType==3 we need: Ramp & - time, Order of interpolation in horizontal direction, file with wave paddle signal.' - stop - END IF - - ELSEIF (IncWaveType == 2) THEN ! irregular waves - ! For irregular waves we have four options: - ! 0) PM, - ! 1) Normal JONSWAP with gamma = 3.3, - ! 2) based on input files and - ! 3) JONSWAP with variable gamma value - ! - ! To have a clean interface without too many goto statement,we first check what type we are trying to read - - READ(FILEIP(1),*,IOSTAT=ios) ispec - Backspace(FILEIP(1)) - IF (ispec==0 .or. ispec==1) THEN !Normal PM or JONSWAP spectrum - READ(FILEIP(1),*,IOSTAT=ios) ispec, Tp, Hs, h0, & - kh_max, seed, seed2, x0, y0 - gamma_jonswap = 3.3 - - ELSEIF (ispec == 2) THEN ! 2D irregular waves with input file - READ(FILEIP(1),*,IOSTAT=ios) ispec, Tp, Hs, h0, & - kh_max, seed, seed2, x0, y0, & - inc_wave_file - print *, x0, y0, inc_wave_file - ELSEIF (ispec == 3) THEN ! 2D irregular waves with non-standard gamma value - READ(FILEIP(1),*,IOSTAT=ios) ispec, Tp, Hs, h0, & - kh_max, seed, seed2, x0, y0, gamma_jonswap - - ELSEIF (ispec>=30) THEN ! multi-directional irregular waves - READ(FILEIP(1),*,ERR=37,END=37,IOSTAT=ios) ispec, Tp, Hs, h0, & - kh_max, seed, seed2, x0, y0, & - inc_wave_file, beta0, s0, gamma_jonswap - - END IF - - IF( abs(ispec)<30 ) THEN - beta0=0 - s0=1.0 - END IF - -37 IF(ios>0)THEN - IF (abs(ispec)<30) THEN - Print *, 'ReadInputFileParameters: For IncWaveType==2 we need irregular wave parameters.' - ELSE - Print *, 'ReadInputFileParameters: For 3D waves, abs(ispec)>30, we need a heading angle, a spreading factor and a JONSWAP gamma factor.' - END IF - STOP - END IF - END IF + IF (IncWaveType==3) THEN + ! Wave generation with flux condition on western boundary + READ(FILEIP(1),*,IOSTAT=ios) wave3DFlux%rampTime, wave3DFlux%order, wave3DFlux%inc_wave_file + IF (ios>0) THEN + Print *, 'ReadInputFileParameters: For IncWaveType==3 we need: Ramp & + time, Order of interpolation in horizontal direction, file with wave paddle signal.' + stop + END IF + + ELSEIF (IncWaveType == 2) THEN ! irregular waves + ! For irregular waves we have four options: + ! 0) PM, + ! 1) Normal JONSWAP with gamma = 3.3, + ! 2) based on input files and + ! 3) JONSWAP with variable gamma value + ! + ! To have a clean interface without too many goto statement,we first check what type we are trying to read + + READ(FILEIP(1),*,IOSTAT=ios) ispec + Backspace(FILEIP(1)) + IF (ispec==0 .or. ispec==1) THEN !Normal PM or JONSWAP spectrum + READ(FILEIP(1),*,IOSTAT=ios) ispec, Tp, Hs, h0, & + kh_max, seed, seed2, x0, y0 + gamma_jonswap = 3.3 + + ELSEIF (ispec == 2) THEN ! 2D irregular waves with input file + READ(FILEIP(1),*,IOSTAT=ios) ispec, Tp, Hs, h0, & + kh_max, seed, seed2, x0, y0, & + inc_wave_file + print *, x0, y0, inc_wave_file + ELSEIF (ispec == 3) THEN ! 2D irregular waves with non-standard gamma value + READ(FILEIP(1),*,IOSTAT=ios) ispec, Tp, Hs, h0, & + kh_max, seed, seed2, x0, y0, gamma_jonswap + + ELSEIF (ispec>=30) THEN ! multi-directional irregular waves + READ(FILEIP(1),*,ERR=37,END=37,IOSTAT=ios) ispec, Tp, Hs, h0, & + kh_max, seed, seed2, x0, y0, & + inc_wave_file, beta0, s0, gamma_jonswap + + END IF + + IF( abs(ispec)<30 ) THEN + beta0=0 + s0=1.0 + END IF + +37 IF(ios>0)THEN + IF (abs(ispec)<30) THEN + Print *, 'ReadInputFileParameters: For IncWaveType==2 we need irregular wave parameters.' + ELSE + Print *, 'ReadInputFileParameters: For 3D waves, abs(ispec)>30, we need a heading angle, a spreading factor and a JONSWAP gamma factor.' + END IF + STOP + END IF + END IF ! ! diff --git a/src/main/OceanWave3DT0Setup.f90 b/src/main/OceanWave3DT0Setup.f90 index da6a97e..c94c926 100644 --- a/src/main/OceanWave3DT0Setup.f90 +++ b/src/main/OceanWave3DT0Setup.f90 @@ -143,20 +143,21 @@ SUBROUTINE OceanWave3DT0Setup ' T_p=', e10.4,' and H_s=',e10.4,', seed values are:',/,2i10,/, & ' at angle ',f10.2,' deg. to the x-axis.',// ) ELSEIF(RandomWave(1)%ispec==31)THEN - WRITE(6,76)RandomWave(1)%Tp,RandomWave(1)%Hs,RandomWave(1)%seed,RandomWave(1)%seed2,& - RandomWave(1)%beta0 - WRITE(fileop(1),76)RandomWave(1)%Tp,RandomWave(1)%Hs,RandomWave(1)%seed,RandomWave(1)%seed2,& - RandomWave(1)%beta0 + WRITE(6,76)RandomWave(1)%Tp,RandomWave(1)%Hs,RandomWave(1)%gamma,RandomWave(1)%seed, & + RandomWave(1)%seed2,RandomWave(1)%beta0 + WRITE(fileop(1),76)RandomWave(1)%Tp,RandomWave(1)%Hs,RandomWave(1)%gamma, & + RandomWave(1)%seed,RandomWave(1)%seed2,RandomWave(1)%beta0 76 FORMAT(' The incident wave is a 2D JONSWAP spectrum with ',/, & - 'T_p=', e10.4,' and H_s=',e10.4,', seed values are:',/,2i10,/, & + 'T_p=', e10.4,', H_s=',e10.4,' and gamma=',e10.4,', seed values are:',/,2i10,/, & ' at angle ',f10.2,' deg. to the x-axis.',// ) ELSEIF(RandomWave(1)%ispec==33)THEN - WRITE(6,77)RandomWave(1)%beta0,RandomWave(1)%Tp,RandomWave(1)%Hs,RandomWave(1)%seed, & - RandomWave(1)%seed2 - WRITE(fileop(1),77)RandomWave(1)%beta0,RandomWave(1)%Tp,RandomWave(1)%Hs,RandomWave(1)%seed, & - RandomWave(1)%seed2 + WRITE(6,77)RandomWave(1)%beta0,RandomWave(1)%Tp,RandomWave(1)%Hs,RandomWave(1)%gamma, & + RandomWave(1)%seed,RandomWave(1)%seed2 + WRITE(fileop(1),77)RandomWave(1)%beta0,RandomWave(1)%Tp,RandomWave(1)%Hs, & + RandomWave(1)%gamma,RandomWave(1)%seed,RandomWave(1)%seed2 77 FORMAT(' The incident wave is a 3D JONSWAP spectrum with Normal spreading at heading angle ',e10.4,/, & - ' deg. to the x-axis. T_p=', e10.4,' H_s=',e10.4,', seed values are:',/,2i10,//) + ' deg. to the x-axis. T_p=', e10.4,' H_s=',e10.4,' and gamma=',e10.4, & + ', seed values are:',/,2i10,//) ! 3D random waves with a cos^2s0 spreading @@ -166,7 +167,7 @@ SUBROUTINE OceanWave3DT0Setup WRITE(fileop(1),78)RandomWave(1)%beta0, RandomWave(1)%S0, RandomWave(1)%Tp, RandomWave(1)%Hs, & RandomWave(1)%seed,RandomWave(1)%seed2,RandomWave(1)%gamma 78 FORMAT(' The incident wave is a 3D JONSWAP spectrum with Cos^(2S) spreading at heading angle ',e10.4,/, & - ' deg. to the x-axis. S=',e10.4,', T_p=', e10.4,' H_s=',e10.4,', seed values are:',/,2i10,' gamma=',e10.4//) + ' deg. to the x-axis. S=',e10.4,', T_p=', e10.4,' H_s=',e10.4,', seed values are:',/,2i10,', gamma=',e10.4//) ELSE @@ -210,11 +211,11 @@ SUBROUTINE OceanWave3DT0Setup ! Allocate( RandomWave(1)%eta0(n_fft), RandomWave(1)%beta(n_fft) ) ! - Call random_wave_coefficients( RandomWave(i)%ispec, n_fft, RandomWave(i)%beta0, & - dt, dx, RandomWave(i)%Tp, RandomWave(i)%Hs, RandomWave(i)%h0, g, & - RandomWave(i)%inc_wave_file, RandomWave(i)%kh_max, RandomWave(i)%seed, & - RandomWave(i)%seed2, RandomWave(1)%eta0, RandomWave(1)%beta, RandomWave(1)%S0, & - n_cut,RandomWave(i)%gamma ) + Call random_wave_coefficients( RandomWave(1)%ispec, n_fft, RandomWave(1)%beta0, & + dt, dx, RandomWave(1)%Tp, RandomWave(1)%Hs, RandomWave(1)%h0, g, & + RandomWave(1)%inc_wave_file, RandomWave(1)%kh_max, RandomWave(1)%seed, & + RandomWave(1)%seed2, RandomWave(1)%eta0, RandomWave(1)%beta, RandomWave(1)%S0, & + n_cut,RandomWave(1)%gamma ) ! ! Count the total number of grid points in each generation zone and allocate space ! for eta and phiS and compute the elevation and surface potential time-histories. @@ -241,11 +242,11 @@ SUBROUTINE OceanWave3DT0Setup ! ALLOCATE(RandomWave(i)%eta(n_wavem,n_fft), RandomWave(i)%Phis(n_wavem,n_fft) ) - CALL random_wave_signal(RandomWave(i)%ispec, n_fft, n_wavem, RandomWave(i)%x0, & + CALL random_wave_signal(RandomWave(1)%ispec, n_fft, n_wavem, RandomWave(1)%x0, & FineGrid%x(RelaxZones(i)%idx(1):RelaxZones(i)%idx(2),1), & - dt, RandomWave(i)%Tp, RandomWave(i)%Hs, RandomWave(i)%h0, & - g, RandomWave(i)%inc_wave_file, RandomWave(i)%kh_max, RandomWave(i)%seed, & - RandomWave(i)%seed2, RandomWave(i)%eta, RandomWave(i)%Phis, & + dt, RandomWave(1)%Tp, RandomWave(1)%Hs, RandomWave(1)%h0, & + g, RandomWave(1)%inc_wave_file, RandomWave(1)%kh_max, RandomWave(1)%seed, & + RandomWave(1)%seed2, RandomWave(i)%eta, RandomWave(i)%Phis, & RandomWave(1)%eta0, n_cut, time0 ) END If END DO @@ -276,16 +277,16 @@ SUBROUTINE OceanWave3DT0Setup ! ALLOCATE(RandomWave(i)%eta(n_wavem,n_fft), RandomWave(i)%Phis(n_wavem,n_fft) ) - CALL random_wave_signal_3D(RandomWave(i)%ispec, RandomWave(1)%eta0, n_cut, & + CALL random_wave_signal_3D(RandomWave(1)%ispec, RandomWave(1)%eta0, n_cut, & RandomWave(1)%beta, n_fft, RandomWave(i)%nx, RandomWave(i)%ny, & RandomWave(1)%beta0, RandomWave(1)%x0, RandomWave(1)%y0, & FineGrid%x(RelaxZones(i)%idx(1):RelaxZones(i)%idx(2), & RelaxZones(i)%idx(3):RelaxZones(i)%idx(4)), & FineGrid%y(RelaxZones(i)%idx(1):RelaxZones(i)%idx(2), & RelaxZones(i)%idx(3):RelaxZones(i)%idx(4)), & - dt, RandomWave(i)%Tp, RandomWave(i)%Hs, RandomWave(i)%h0, & - g, RandomWave(i)%inc_wave_file, RandomWave(i)%kh_max, RandomWave(i)%seed, & - RandomWave(i)%seed2, RandomWave(i)%eta, RandomWave(i)%Phis, time0 ) + dt, RandomWave(1)%Tp, RandomWave(1)%Hs, RandomWave(1)%h0, & + g, RandomWave(1)%inc_wave_file, RandomWave(1)%kh_max, RandomWave(1)%seed, & + RandomWave(1)%seed2, RandomWave(i)%eta, RandomWave(i)%Phis, time0 ) !hbb ! write(201,*)RandomWave(i) END If diff --git a/src/utilities/random_wave_coefficients.f90 b/src/utilities/random_wave_coefficients.f90 index 9100184..06cddb5 100644 --- a/src/utilities/random_wave_coefficients.f90 +++ b/src/utilities/random_wave_coefficients.f90 @@ -8,7 +8,7 @@ SUBROUTINE random_wave_coefficients(i_spec, nt, beta0, dt, dx, Tp, Hs, depth, & ! is DEPTH. The wave can be based on a long-crested P-M (i_spec=30) or ! JONSWAP (ispec=31) spectrum at angle BETA0 to the x-axis, or it can be ! a JONSWAP with NORMAL directional spreading about the angle BETA0 (i_spec=33). - ! The coefficients are returned in COEF ready to be moved around in space and + ! The coefficients are returned in ETA0 ready to be moved around in space and ! FFT'ed by the subroutine random_wave_signal_3D.f90. ! ! When i_spec=-30, a mono-chromatic wave is generated with period Tp, From 6a074f4de1f8fa491777fe5fc0d36dea66d31ad2 Mon Sep 17 00:00:00 2001 From: hbbingham Date: Thu, 4 Feb 2016 20:14:49 +0100 Subject: [PATCH 25/56] Added a check that seed values are negative. -hbb --- .../OceanWave3D.inp.ObliqueRandomWave2D | 2 +- .../OceanWave3D.inp.ObliqueRandomWave3D_open | 2 +- .../inputfiles/OceanWave3D.inp.RandomWave2D | 2 +- .../OceanWave3D.inp.RandomWave2DShoaling | 2 +- .../OceanWave3D.inp.RandomWave3D_open | 2 +- src/IO/ReadInputFileParameters.f90 | 19 +++++++++++++++++-- 6 files changed, 22 insertions(+), 7 deletions(-) diff --git a/examples/inputfiles/OceanWave3D.inp.ObliqueRandomWave2D b/examples/inputfiles/OceanWave3D.inp.ObliqueRandomWave2D index 8e888ff..a1e0abf 100644 --- a/examples/inputfiles/OceanWave3D.inp.ObliqueRandomWave2D +++ b/examples/inputfiles/OceanWave3D.inp.ObliqueRandomWave2D @@ -17,4 +17,4 @@ A flat bottom, 2D, JONSWAP spectrum wave at an angle of beta=22.5 degrees. Gene 0 0 <- Damping pressure zone: PDampingOnOff=0 (off), number of zones. For each zone include the line: x1, x2, y1, y2 (bounds of the zone), gamma0 (dynamic FSBC), Gamma0 (kinematic FSBC), i_damperType (0=friction on the velocity, 1=friction on the potential). 0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) 0 <- Curvilinear on/off -31 8. 2. 80. 20. -1 34 0. 0. run06.el 22.5 1.0 <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, inc_wave_file, (beta, S if 3D). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. +31 8. 2. 80. 20. -1 -34 0. 0. run06.el 22.5 1.0 3.3 <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, (inc_wave_file or gamma_JONSWAP, if ispec=2 or 3), (inc_wave_file,beta,S,gamma_JONSWAP if ispec>=30). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file, 3=>JONSWAP with input gamma; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. diff --git a/examples/inputfiles/OceanWave3D.inp.ObliqueRandomWave3D_open b/examples/inputfiles/OceanWave3D.inp.ObliqueRandomWave3D_open index 3365562..f242cf1 100644 --- a/examples/inputfiles/OceanWave3D.inp.ObliqueRandomWave3D_open +++ b/examples/inputfiles/OceanWave3D.inp.ObliqueRandomWave3D_open @@ -18,4 +18,4 @@ A flat bottom, 3D, JONSWAP spectrum with normal spreading around beta=10. Gener 0 0 <- Damping pressure zone: PDampingOnOff=0 (off), number of zones. For each zone include the line: x1, x2, y1, y2 (bounds of the zone), gamma0 (dynamic FSBC), Gamma0 (kinematic FSBC), i_damperType (0=friction on the velocity, 1=friction on the potential). 0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) 0 <- Curvilinear on/off -33 8. 2. 80. 20. -1 34 50. 200. run06.el 10.0 1.0 <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, inc_wave_file, (beta, S if 3D). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. +33 8. 2. 80. 20. -1 34 50. 200. run06.el 10.0 1.0 3.3 <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, (inc_wave_file or gamma_JONSWAP, if ispec=2 or 3), (inc_wave_file,beta,S,gamma_JONSWAP if ispec>=30). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file, 3=>JONSWAP with input gamma; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. diff --git a/examples/inputfiles/OceanWave3D.inp.RandomWave2D b/examples/inputfiles/OceanWave3D.inp.RandomWave2D index 259aa51..7824172 100644 --- a/examples/inputfiles/OceanWave3D.inp.RandomWave2D +++ b/examples/inputfiles/OceanWave3D.inp.RandomWave2D @@ -17,5 +17,5 @@ A linear random wave in 2D on a flat bottom with nonlinear FSBCs, no filtering. 600. 800. 0. 0. 1. 1. 0 0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) 0 <- Curvilinear on/off -1 9. 4. 50. 20. -1 34 100. 0. run06.el <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, (inc_wave_file or gamma_JONSWAP, if ispec=2 or 3), (inc_wave_file,beta,S,gamma_JONSWAP if ispec>=30). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file, 3=>JONSWAP with input gamma; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. +1 9. 4. 50. 20. -1 -34 100. 0. run06.el <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, (inc_wave_file or gamma_JONSWAP, if ispec=2 or 3), (inc_wave_file,beta,S,gamma_JONSWAP if ispec>=30). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file, 3=>JONSWAP with input gamma; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. diff --git a/examples/inputfiles/OceanWave3D.inp.RandomWave2DShoaling b/examples/inputfiles/OceanWave3D.inp.RandomWave2DShoaling index 8d11680..0c3fde7 100644 --- a/examples/inputfiles/OceanWave3D.inp.RandomWave2DShoaling +++ b/examples/inputfiles/OceanWave3D.inp.RandomWave2DShoaling @@ -17,5 +17,5 @@ A linear random wave shoaling nonlinearly in 2D on a sloping bottom 600. 800. 0. 0. 1. 1. 0 0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) 0 <- Curvilinear on/off -1 9. 4. 50. 20. -1 34 100. 0. run06.el <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, (inc_wave_file or gamma_JONSWAP, if ispec=2 or 3), (inc_wave_file,beta,S,gamma_JONSWAP if ispec>=30). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file, 3=>JONSWAP with input gamma; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. +1 9. 4. 50. 20. -1 -34 100. 0. run06.el <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, (inc_wave_file or gamma_JONSWAP, if ispec=2 or 3), (inc_wave_file,beta,S,gamma_JONSWAP if ispec>=30). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file, 3=>JONSWAP with input gamma; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. diff --git a/examples/inputfiles/OceanWave3D.inp.RandomWave3D_open b/examples/inputfiles/OceanWave3D.inp.RandomWave3D_open index c34e7d3..9cedb65 100644 --- a/examples/inputfiles/OceanWave3D.inp.RandomWave3D_open +++ b/examples/inputfiles/OceanWave3D.inp.RandomWave3D_open @@ -18,4 +18,4 @@ A flat bottom, 3D, JONSWAP spectrum with normal spreading. Generation along 3 s 0 0 <- Damping pressure zone: PDampingOnOff=0 (off), number of zones. For each zone include the line: x1, x2, y1, y2 (bounds of the zone), gamma0 (dynamic FSBC), Gamma0 (kinematic FSBC), i_damperType (0=friction on the velocity, 1=friction on the potential). 0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) 0 <- Curvilinear on/off -33 8. 2. 80. 20. -1 34 50. 200. run06.el 0.0 1.0 3.3 <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, (inc_wave_file or gamma_JONSWAP, if ispec=2 or 3), (inc_wave_file,beta,S,gamma_JONSWAP if ispec>=30). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file, 3=>JONSWAP with input gamma; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. +33 8. 2. 80. 20. -1 -34 50. 200. run06.el 0.0 1.0 3.3 <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, (inc_wave_file or gamma_JONSWAP, if ispec=2 or 3), (inc_wave_file,beta,S,gamma_JONSWAP if ispec>=30). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file, 3=>JONSWAP with input gamma; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. diff --git a/src/IO/ReadInputFileParameters.f90 b/src/IO/ReadInputFileParameters.f90 index 0b5ce39..7e60072 100644 --- a/src/IO/ReadInputFileParameters.f90 +++ b/src/IO/ReadInputFileParameters.f90 @@ -10,8 +10,8 @@ SUBROUTINE ReadInputFileParameters USE GlobalVariables USE MGLevels IMPLICIT NONE - INTEGER ios, i, nxIC, nyIC, iflag_phi, ispec, nGenZones - REAL(kind=long) :: xtankIC, ytankIC, t0IC, Tp, Hs, h0, kh_max, seed, seed2, x0, & + INTEGER ios, i, nxIC, nyIC, iflag_phi, ispec, nGenZones, seed, seed2 + REAL(kind=long) :: xtankIC, ytankIC, t0IC, Tp, Hs, h0, kh_max, x0, & y0, beta0, s0, gamma_jonswap CHARACTER(len=30):: inc_wave_file @@ -550,6 +550,21 @@ SUBROUTINE ReadInputFileParameters END IF STOP END IF + ! + ! Check that the seed values are negative and if not make them negative + ! + IF (seed >=0) THEN + seed = - seed + write(6,38)seed + write(fileop(1),38)seed +38 format(/,'**WARNING**: Seed values must be negative, changed seed to ',i10,/) + end IF + IF (seed2 >=0) THEN + seed2 = - seed2 + write(6,39)seed2 + write(fileop(1),39)seed2 +39 format(/,'**WARNING**: Seed values must be negative, changed seed2 to ',i10,/) + end IF END IF ! From bf588f1378897dbfc26ffbc29ad8f240d90b3781 Mon Sep 17 00:00:00 2001 From: hbbingham Date: Mon, 11 Apr 2016 19:31:19 +0200 Subject: [PATCH 26/56] Added the missing FromFile_IncidentWave file -hbb --- common.mk | 2 +- examples/inputfiles/FromFile_IncidentWave | 110003 +++++++++++++++++++ src/variabledefs/datatypes.f90 | 282 +- 3 files changed, 110145 insertions(+), 142 deletions(-) create mode 100644 examples/inputfiles/FromFile_IncidentWave diff --git a/common.mk b/common.mk index e5498cb..8a48da0 100644 --- a/common.mk +++ b/common.mk @@ -80,7 +80,7 @@ ifeq ($(USER),hbb) LIBDIRS = -L $(HOME)/lib/ LINLIB = -lharwell -lskit -llapack -lblas DBFLAGS = -pg -g -fbounds-check -ffpe-trap=invalid,zero,overflow -ffree-line-length-none -fno-automatic - OPTFLAGS = -O3 -ffree-line-length-none -fno-automatic -ffpe-trap=invalid,zero,overflow + OPTFLAGS = -pg -O3 -ffree-line-length-none -fno-automatic -ffpe-trap=invalid,zero,overflow # OPTFLAGS = -g -fast endif diff --git a/examples/inputfiles/FromFile_IncidentWave b/examples/inputfiles/FromFile_IncidentWave new file mode 100644 index 0000000..7287cfa --- /dev/null +++ b/examples/inputfiles/FromFile_IncidentWave @@ -0,0 +1,110003 @@ +# An externally specified irregular wave time series for OW3D + 2.000000000000000e-01 <- dt +-5.089800000000000e-01 <- zeta(0) +-5.312400000000000e-01 <- zeta(dt) ... +-5.100500000000000e-01 +-4.462300000000000e-01 +-3.464200000000000e-01 +-2.288500000000000e-01 +-1.224200000000000e-01 +-5.602800000000000e-02 +-4.373200000000000e-02 +-7.630700000000000e-02 +-1.264700000000000e-01 +-1.651400000000000e-01 +-1.773900000000000e-01 +-1.665900000000000e-01 +-1.448700000000000e-01 +-1.185700000000000e-01 +-8.137000000000000e-02 +-2.070100000000000e-02 + 6.834899999999999e-02 + 1.738400000000000e-01 + 2.708400000000000e-01 + 3.358400000000000e-01 + 3.608500000000000e-01 + 3.569800000000000e-01 + 3.459400000000000e-01 + 3.470000000000000e-01 + 3.686900000000000e-01 + 4.088900000000000e-01 + 4.593000000000000e-01 + 5.083000000000000e-01 + 5.403000000000000e-01 + 5.350900000000000e-01 + 4.718600000000000e-01 + 3.378300000000000e-01 + 1.357300000000000e-01 +-1.155200000000000e-01 +-3.873900000000000e-01 +-6.495700000000000e-01 +-8.727000000000000e-01 +-1.026400000000000e+00 +-1.079500000000000e+00 +-1.010100000000000e+00 +-8.221600000000000e-01 +-5.570000000000001e-01 +-2.854300000000000e-01 +-7.829400000000000e-02 + 2.895500000000000e-02 + 5.433500000000000e-02 + 5.566600000000000e-02 + 9.245100000000001e-02 + 1.885300000000000e-01 + 3.205700000000000e-01 + 4.385500000000000e-01 + 5.012600000000000e-01 + 5.001000000000000e-01 + 4.558700000000000e-01 + 3.953700000000000e-01 + 3.299000000000000e-01 + 2.533900000000000e-01 + 1.592200000000000e-01 + 5.805500000000000e-02 +-2.157300000000000e-02 +-5.200300000000000e-02 +-2.861500000000000e-02 + 2.445700000000000e-02 + 7.122100000000001e-02 + 8.990200000000000e-02 + 8.646900000000000e-02 + 8.446099999999999e-02 + 1.004000000000000e-01 + 1.267000000000000e-01 + 1.373700000000000e-01 + 1.117500000000000e-01 + 5.472900000000000e-02 +-5.931200000000000e-03 +-4.486600000000000e-02 +-6.583799999999999e-02 +-1.050800000000000e-01 +-2.041600000000000e-01 +-3.711100000000000e-01 +-5.607100000000000e-01 +-6.928800000000001e-01 +-6.998400000000000e-01 +-5.700700000000000e-01 +-3.578200000000000e-01 +-1.512300000000000e-01 +-2.113400000000000e-02 + 1.484200000000000e-02 +-9.069900000000001e-03 +-3.953900000000000e-02 +-4.161500000000000e-02 +-1.442600000000000e-02 + 2.185300000000000e-02 + 5.237500000000000e-02 + 8.396800000000000e-02 + 1.390400000000000e-01 + 2.342000000000000e-01 + 3.627700000000000e-01 + 4.960100000000000e-01 + 6.016200000000000e-01 + 6.640800000000000e-01 + 6.901500000000000e-01 + 6.957000000000000e-01 + 6.849100000000000e-01 + 6.396600000000000e-01 + 5.288200000000000e-01 + 3.319500000000000e-01 + 6.073900000000000e-02 +-2.376600000000000e-01 +-4.986800000000000e-01 +-6.690000000000000e-01 +-7.283900000000000e-01 +-6.928800000000001e-01 +-5.997900000000000e-01 +-4.863700000000000e-01 +-3.754400000000000e-01 +-2.748600000000000e-01 +-1.868800000000000e-01 +-1.176600000000000e-01 +-7.870099999999999e-02 +-7.924500000000000e-02 +-1.165200000000000e-01 +-1.721500000000000e-01 +-2.186900000000000e-01 +-2.327400000000000e-01 +-2.061200000000000e-01 +-1.479700000000000e-01 +-7.691099999999999e-02 +-8.987300000000000e-03 + 5.014800000000000e-02 + 1.042900000000000e-01 + 1.588300000000000e-01 + 2.128300000000000e-01 + 2.575400000000000e-01 + 2.825800000000000e-01 + 2.851300000000000e-01 + 2.746800000000000e-01 + 2.693900000000000e-01 + 2.854200000000000e-01 + 3.261900000000000e-01 + 3.783800000000000e-01 + 4.174600000000000e-01 + 4.196800000000000e-01 + 3.738000000000000e-01 + 2.864800000000000e-01 + 1.789500000000000e-01 + 7.703000000000000e-02 +-3.534600000000000e-04 +-4.912800000000000e-02 +-8.098800000000000e-02 +-1.168700000000000e-01 +-1.755600000000000e-01 +-2.623400000000000e-01 +-3.633200000000000e-01 +-4.491700000000000e-01 +-4.877500000000000e-01 +-4.601300000000000e-01 +-3.718500000000000e-01 +-2.529200000000000e-01 +-1.457400000000000e-01 +-8.679600000000000e-02 +-9.125300000000000e-02 +-1.478800000000000e-01 +-2.256100000000000e-01 +-2.872200000000000e-01 +-3.029400000000000e-01 +-2.588700000000000e-01 +-1.592200000000000e-01 +-2.394500000000000e-02 + 1.162200000000000e-01 + 2.271700000000000e-01 + 2.811800000000000e-01 + 2.674900000000000e-01 + 1.989700000000000e-01 + 1.101000000000000e-01 + 4.458400000000000e-02 + 3.717800000000000e-02 + 9.865300000000000e-02 + 2.119600000000000e-01 + 3.416400000000000e-01 + 4.508800000000000e-01 + 5.166700000000000e-01 + 5.355900000000000e-01 + 5.191800000000000e-01 + 4.836600000000000e-01 + 4.407300000000000e-01 + 3.932400000000000e-01 + 3.357600000000000e-01 + 2.576500000000000e-01 + 1.473600000000000e-01 +-2.187100000000000e-03 +-1.874400000000000e-01 +-3.897700000000000e-01 +-5.772300000000000e-01 +-7.147200000000000e-01 +-7.794200000000000e-01 +-7.728900000000000e-01 +-7.209800000000000e-01 +-6.594500000000000e-01 +-6.128900000000000e-01 +-5.801700000000000e-01 +-5.366600000000000e-01 +-4.520400000000000e-01 +-3.121200000000000e-01 +-1.299300000000000e-01 + 6.117200000000000e-02 + 2.266900000000000e-01 + 3.486000000000000e-01 + 4.296900000000000e-01 + 4.832600000000000e-01 + 5.180800000000000e-01 + 5.308200000000000e-01 + 5.115200000000000e-01 + 4.565300000000000e-01 + 3.775500000000000e-01 + 2.988900000000000e-01 + 2.448400000000000e-01 + 2.265800000000000e-01 + 2.380900000000000e-01 + 2.630500000000000e-01 + 2.861200000000000e-01 + 2.999300000000000e-01 + 3.036000000000000e-01 + 2.963000000000000e-01 + 2.726100000000000e-01 + 2.235500000000000e-01 + 1.415900000000000e-01 + 2.425400000000000e-02 +-1.264800000000000e-01 +-3.065400000000000e-01 +-5.092900000000000e-01 +-7.203000000000001e-01 +-9.122000000000000e-01 +-1.046800000000000e+00 +-1.087600000000000e+00 +-1.017900000000000e+00 +-8.512100000000000e-01 +-6.256200000000000e-01 +-3.843300000000000e-01 +-1.541200000000000e-01 + 6.259700000000000e-02 + 2.766600000000000e-01 + 4.907800000000000e-01 + 6.847299999999999e-01 + 8.196099999999999e-01 + 8.594900000000000e-01 + 7.956600000000000e-01 + 6.564500000000000e-01 + 4.956500000000000e-01 + 3.671400000000000e-01 + 3.017300000000000e-01 + 2.988900000000000e-01 + 3.345300000000000e-01 + 3.765200000000000e-01 + 3.972000000000000e-01 + 3.784600000000000e-01 + 3.119800000000000e-01 + 1.990500000000000e-01 + 5.151200000000000e-02 +-1.098100000000000e-01 +-2.620200000000000e-01 +-3.907700000000000e-01 +-4.972700000000000e-01 +-5.951800000000000e-01 +-6.975200000000000e-01 +-8.024900000000000e-01 +-8.892600000000001e-01 +-9.285099999999999e-01 +-9.012600000000000e-01 +-8.124900000000000e-01 +-6.890300000000000e-01 +-5.623700000000000e-01 +-4.482200000000000e-01 +-3.372800000000000e-01 +-2.036800000000000e-01 +-2.499600000000000e-02 + 2.003700000000000e-01 + 4.496700000000000e-01 + 6.874500000000000e-01 + 8.828900000000000e-01 + 1.020900000000000e+00 + 1.101000000000000e+00 + 1.127500000000000e+00 + 1.100700000000000e+00 + 1.017000000000000e+00 + 8.770400000000000e-01 + 6.943100000000000e-01 + 4.972000000000000e-01 + 3.200200000000000e-01 + 1.884100000000000e-01 + 1.082300000000000e-01 + 6.460299999999999e-02 + 3.173100000000000e-02 +-1.337300000000000e-02 +-8.154400000000001e-02 +-1.715000000000000e-01 +-2.772400000000000e-01 +-3.959700000000000e-01 +-5.296300000000000e-01 +-6.788200000000000e-01 +-8.339100000000000e-01 +-9.716700000000000e-01 +-1.062100000000000e+00 +-1.083200000000000e+00 +-1.033700000000000e+00 +-9.358100000000000e-01 +-8.224900000000001e-01 +-7.181700000000000e-01 +-6.240599999999999e-01 +-5.190900000000001e-01 +-3.764300000000000e-01 +-1.852300000000000e-01 + 3.716300000000000e-02 + 2.512700000000000e-01 + 4.166400000000000e-01 + 5.147200000000000e-01 + 5.589300000000000e-01 + 5.859700000000000e-01 + 6.341700000000000e-01 + 7.223200000000000e-01 + 8.410000000000000e-01 + 9.595700000000000e-01 + 1.042900000000000e+00 + 1.067600000000000e+00 + 1.030700000000000e+00 + 9.480100000000000e-01 + 8.461700000000000e-01 + 7.514900000000000e-01 + 6.795500000000000e-01 + 6.277100000000000e-01 + 5.734399999999999e-01 + 4.807500000000000e-01 + 3.146500000000000e-01 + 5.851500000000000e-02 +-2.739700000000000e-01 +-6.397400000000000e-01 +-9.812400000000000e-01 +-1.248200000000000e+00 +-1.414900000000000e+00 +-1.483900000000000e+00 +-1.475800000000000e+00 +-1.413100000000000e+00 +-1.308000000000000e+00 +-1.160400000000000e+00 +-9.669300000000000e-01 +-7.302300000000000e-01 +-4.646900000000000e-01 +-1.936300000000000e-01 + 5.832500000000000e-02 + 2.724500000000000e-01 + 4.391300000000000e-01 + 5.568800000000000e-01 + 6.299300000000000e-01 + 6.666299999999999e-01 + 6.788400000000000e-01 + 6.808000000000000e-01 + 6.857100000000000e-01 + 7.004700000000000e-01 + 7.212700000000000e-01 + 7.330200000000000e-01 + 7.141100000000000e-01 + 6.451600000000000e-01 + 5.177500000000000e-01 + 3.390100000000000e-01 + 1.296800000000000e-01 +-8.312799999999999e-02 +-2.747200000000000e-01 +-4.286900000000000e-01 +-5.372500000000000e-01 +-5.970800000000001e-01 +-6.045800000000000e-01 +-5.543600000000000e-01 +-4.427800000000000e-01 +-2.739200000000000e-01 +-6.399900000000000e-02 + 1.594600000000000e-01 + 3.634800000000000e-01 + 5.176300000000000e-01 + 6.004000000000000e-01 + 6.022500000000000e-01 + 5.263400000000000e-01 + 3.884100000000000e-01 + 2.155500000000000e-01 + 4.173400000000000e-02 +-1.014500000000000e-01 +-1.966000000000000e-01 +-2.483200000000000e-01 +-2.803900000000000e-01 +-3.213900000000000e-01 +-3.858700000000000e-01 +-4.636100000000000e-01 +-5.252000000000000e-01 +-5.417900000000000e-01 +-5.061200000000000e-01 +-4.394200000000000e-01 +-3.780600000000000e-01 +-3.482900000000000e-01 +-3.469900000000000e-01 +-3.428500000000000e-01 +-2.986300000000000e-01 +-1.991600000000000e-01 +-6.492000000000001e-02 + 5.949900000000000e-02 + 1.351500000000000e-01 + 1.565700000000000e-01 + 1.584500000000000e-01 + 1.957500000000000e-01 + 3.100100000000000e-01 + 5.029200000000000e-01 + 7.327600000000000e-01 + 9.343300000000000e-01 + 1.048500000000000e+00 + 1.044700000000000e+00 + 9.256500000000000e-01 + 7.187300000000000e-01 + 4.619400000000000e-01 + 1.946800000000000e-01 +-4.589800000000000e-02 +-2.272500000000000e-01 +-3.276600000000000e-01 +-3.453100000000000e-01 +-3.041000000000000e-01 +-2.487400000000000e-01 +-2.281300000000000e-01 +-2.735900000000000e-01 +-3.838300000000000e-01 +-5.251000000000000e-01 +-6.470700000000000e-01 +-7.058300000000000e-01 +-6.817299999999999e-01 +-5.838400000000000e-01 +-4.411300000000000e-01 +-2.875300000000000e-01 +-1.502100000000000e-01 +-4.588800000000000e-02 + 1.634400000000000e-02 + 3.165100000000000e-02 + 1.682300000000000e-04 +-6.841800000000001e-02 +-1.515000000000000e-01 +-2.168600000000000e-01 +-2.334700000000000e-01 +-1.845800000000000e-01 +-7.469500000000000e-02 + 7.467400000000000e-02 + 2.381000000000000e-01 + 3.995100000000000e-01 + 5.564500000000000e-01 + 7.125700000000000e-01 + 8.643500000000000e-01 + 9.926700000000001e-01 + 1.066800000000000e+00 + 1.059100000000000e+00 + 9.617400000000000e-01 + 7.926100000000000e-01 + 5.874900000000000e-01 + 3.823000000000000e-01 + 1.970900000000000e-01 + 3.065200000000000e-02 +-1.325600000000000e-01 +-3.094500000000000e-01 +-5.077199999999999e-01 +-7.222900000000000e-01 +-9.377100000000000e-01 +-1.132300000000000e+00 +-1.281800000000000e+00 +-1.362300000000000e+00 +-1.356700000000000e+00 +-1.261000000000000e+00 +-1.088800000000000e+00 +-8.677900000000000e-01 +-6.273600000000000e-01 +-3.853800000000000e-01 +-1.420500000000000e-01 + 1.130200000000000e-01 + 3.847900000000000e-01 + 6.589400000000000e-01 + 9.010800000000000e-01 + 1.071100000000000e+00 + 1.143300000000000e+00 + 1.119300000000000e+00 + 1.023900000000000e+00 + 8.892900000000000e-01 + 7.369100000000000e-01 + 5.716200000000000e-01 + 3.895800000000000e-01 + 1.931500000000000e-01 + 3.940100000000000e-04 +-1.580700000000000e-01 +-2.525000000000000e-01 +-2.685100000000000e-01 +-2.134100000000000e-01 +-1.121700000000000e-01 + 2.664600000000000e-03 + 1.005100000000000e-01 + 1.583400000000000e-01 + 1.631800000000000e-01 + 1.139700000000000e-01 + 2.292800000000000e-02 +-8.621100000000000e-02 +-1.854600000000000e-01 +-2.535400000000000e-01 +-2.848400000000000e-01 +-2.903800000000000e-01 +-2.898600000000000e-01 +-2.997100000000000e-01 +-3.251900000000000e-01 +-3.607700000000000e-01 +-3.968700000000000e-01 +-4.266400000000000e-01 +-4.477300000000000e-01 +-4.592500000000000e-01 +-4.583900000000000e-01 +-4.407000000000000e-01 +-4.032000000000000e-01 +-3.463100000000000e-01 +-2.712500000000000e-01 +-1.751200000000000e-01 +-4.982000000000000e-02 + 1.109700000000000e-01 + 3.000700000000000e-01 + 4.901900000000000e-01 + 6.414200000000000e-01 + 7.216600000000000e-01 + 7.273700000000000e-01 + 6.884300000000000e-01 + 6.503900000000000e-01 + 6.440500000000000e-01 + 6.631400000000000e-01 + 6.670100000000000e-01 + 6.080700000000000e-01 + 4.650600000000000e-01 + 2.585600000000000e-01 + 3.769400000000000e-02 +-1.517100000000000e-01 +-2.937400000000000e-01 +-4.047300000000000e-01 +-5.111700000000000e-01 +-6.218100000000000e-01 +-7.163700000000000e-01 +-7.592500000000000e-01 +-7.268400000000000e-01 +-6.263800000000000e-01 +-4.918800000000000e-01 +-3.606800000000000e-01 +-2.494100000000000e-01 +-1.474200000000000e-01 +-3.128300000000000e-02 + 1.125700000000000e-01 + 2.750800000000000e-01 + 4.303000000000000e-01 + 5.529400000000000e-01 + 6.322300000000000e-01 + 6.717000000000000e-01 + 6.773200000000000e-01 + 6.460500000000000e-01 + 5.658300000000001e-01 + 4.266300000000000e-01 + 2.326500000000000e-01 + 4.767200000000000e-03 +-2.288900000000000e-01 +-4.455900000000000e-01 +-6.334000000000000e-01 +-7.856000000000000e-01 +-8.912900000000000e-01 +-9.325599999999999e-01 +-8.931000000000000e-01 +-7.714500000000000e-01 +-5.872400000000000e-01 +-3.732800000000000e-01 +-1.583200000000000e-01 + 4.616000000000000e-02 + 2.443400000000000e-01 + 4.408800000000000e-01 + 6.247300000000000e-01 + 7.660500000000000e-01 + 8.303000000000000e-01 + 7.994300000000000e-01 + 6.845400000000000e-01 + 5.202100000000000e-01 + 3.452000000000000e-01 + 1.839600000000000e-01 + 4.193100000000000e-02 +-8.394300000000000e-02 +-1.903900000000000e-01 +-2.620800000000000e-01 +-2.802600000000000e-01 +-2.386100000000000e-01 +-1.529900000000000e-01 +-5.641800000000000e-02 + 1.805000000000000e-02 + 5.468800000000000e-02 + 6.115000000000000e-02 + 6.024000000000000e-02 + 7.435700000000001e-02 + 1.132900000000000e-01 + 1.717000000000000e-01 + 2.345800000000000e-01 + 2.844800000000000e-01 + 3.051600000000000e-01 + 2.819400000000000e-01 + 2.025600000000000e-01 + 6.132600000000000e-02 +-1.349700000000000e-01 +-3.642700000000000e-01 +-5.933500000000000e-01 +-7.875500000000000e-01 +-9.208900000000000e-01 +-9.803700000000000e-01 +-9.633000000000000e-01 +-8.713900000000000e-01 +-7.074000000000000e-01 +-4.775900000000000e-01 +-1.976300000000000e-01 + 1.037300000000000e-01 + 3.877400000000000e-01 + 6.156199999999999e-01 + 7.604800000000000e-01 + 8.151200000000000e-01 + 7.918900000000000e-01 + 7.155400000000000e-01 + 6.129000000000000e-01 + 5.043000000000000e-01 + 3.996100000000000e-01 + 2.995500000000000e-01 + 2.008700000000000e-01 + 1.029000000000000e-01 + 1.230900000000000e-02 +-5.672200000000000e-02 +-8.799400000000000e-02 +-7.250600000000000e-02 +-1.646600000000000e-02 + 5.738100000000000e-02 + 1.175000000000000e-01 + 1.372500000000000e-01 + 1.069400000000000e-01 + 3.714400000000000e-02 +-4.891900000000000e-02 +-1.287900000000000e-01 +-1.913100000000000e-01 +-2.381700000000000e-01 +-2.770700000000000e-01 +-3.133600000000000e-01 +-3.470000000000000e-01 +-3.764800000000000e-01 +-4.041800000000000e-01 +-4.361900000000000e-01 +-4.741300000000000e-01 +-5.050800000000000e-01 +-4.997100000000000e-01 +-4.242800000000000e-01 +-2.617700000000000e-01 +-2.854200000000000e-02 + 2.263800000000000e-01 + 4.416100000000000e-01 + 5.720100000000000e-01 + 6.079400000000000e-01 + 5.735900000000000e-01 + 5.073000000000000e-01 + 4.384900000000000e-01 + 3.764000000000000e-01 + 3.157000000000000e-01 + 2.505500000000000e-01 + 1.838200000000000e-01 + 1.241200000000000e-01 + 7.516200000000001e-02 + 2.900300000000000e-02 +-2.924700000000000e-02 +-1.084400000000000e-01 +-2.016500000000000e-01 +-2.893000000000000e-01 +-3.533600000000000e-01 +-3.910300000000000e-01 +-4.153600000000000e-01 +-4.413200000000000e-01 +-4.688000000000000e-01 +-4.775900000000000e-01 +-4.403700000000000e-01 +-3.442600000000000e-01 +-2.033900000000000e-01 +-5.102600000000000e-02 + 8.364500000000000e-02 + 1.959300000000000e-01 + 3.063100000000000e-01 + 4.399100000000000e-01 + 6.003800000000000e-01 + 7.588100000000000e-01 + 8.670099999999999e-01 + 8.853300000000000e-01 + 8.046100000000000e-01 + 6.471000000000000e-01 + 4.482500000000000e-01 + 2.357500000000000e-01 + 2.204400000000000e-02 +-1.866600000000000e-01 +-3.767300000000000e-01 +-5.241200000000000e-01 +-6.066700000000000e-01 +-6.215000000000001e-01 +-5.911900000000000e-01 +-5.514000000000000e-01 +-5.280300000000000e-01 +-5.219700000000000e-01 +-5.133900000000000e-01 +-4.819300000000000e-01 +-4.256400000000000e-01 +-3.628200000000000e-01 +-3.150800000000000e-01 +-2.860900000000000e-01 +-2.542300000000000e-01 +-1.864800000000000e-01 +-6.332500000000001e-02 + 1.045400000000000e-01 + 2.808700000000000e-01 + 4.264200000000000e-01 + 5.225000000000000e-01 + 5.785200000000000e-01 + 6.192299999999999e-01 + 6.623700000000000e-01 + 7.036100000000000e-01 + 7.188300000000000e-01 + 6.809900000000000e-01 + 5.788300000000000e-01 + 4.254900000000000e-01 + 2.528200000000000e-01 + 9.657700000000000e-02 +-1.866700000000000e-02 +-8.782900000000000e-02 +-1.244800000000000e-01 +-1.524900000000000e-01 +-1.939100000000000e-01 +-2.578100000000000e-01 +-3.350200000000000e-01 +-4.023400000000000e-01 +-4.352400000000000e-01 +-4.226000000000000e-01 +-3.747000000000000e-01 +-3.184900000000000e-01 +-2.825100000000000e-01 +-2.808000000000000e-01 +-3.061600000000000e-01 +-3.361500000000000e-01 +-3.461300000000000e-01 +-3.197900000000000e-01 +-2.511300000000000e-01 +-1.407500000000000e-01 + 6.502100000000000e-03 + 1.778900000000000e-01 + 3.471000000000000e-01 + 4.753200000000000e-01 + 5.245900000000000e-01 + 4.779900000000000e-01 + 3.532700000000000e-01 + 1.980400000000000e-01 + 6.680500000000000e-02 +-6.292300000000000e-03 +-2.152200000000000e-02 +-5.905200000000000e-03 + 8.944100000000000e-03 + 6.732400000000000e-03 +-9.037399999999999e-03 +-2.595300000000000e-02 +-3.705100000000000e-02 +-4.585000000000000e-02 +-5.909600000000000e-02 +-7.576600000000000e-02 +-8.389199999999999e-02 +-6.913600000000000e-02 +-2.789700000000000e-02 + 2.690900000000000e-02 + 7.318400000000000e-02 + 9.464000000000000e-02 + 9.138800000000000e-02 + 7.780900000000000e-02 + 7.005900000000000e-02 + 7.392799999999999e-02 + 8.272300000000000e-02 + 8.576800000000000e-02 + 7.923300000000000e-02 + 6.975000000000001e-02 + 6.832700000000000e-02 + 8.060600000000000e-02 + 1.020200000000000e-01 + 1.211400000000000e-01 + 1.268600000000000e-01 + 1.124900000000000e-01 + 7.378300000000000e-02 + 5.471500000000000e-03 +-9.756300000000000e-02 +-2.327300000000000e-01 +-3.820300000000000e-01 +-5.130500000000000e-01 +-5.918800000000000e-01 +-6.009400000000000e-01 +-5.488499999999999e-01 +-4.640200000000000e-01 +-3.752700000000000e-01 +-2.928700000000000e-01 +-2.036700000000000e-01 +-8.345800000000000e-02 + 8.258000000000000e-02 + 2.859900000000000e-01 + 4.967200000000000e-01 + 6.775099999999999e-01 + 8.000500000000000e-01 + 8.526899999999999e-01 + 8.374600000000000e-01 + 7.623300000000000e-01 + 6.362200000000000e-01 + 4.694500000000000e-01 + 2.766000000000000e-01 + 7.675999999999999e-02 +-1.104900000000000e-01 +-2.704900000000000e-01 +-3.960500000000000e-01 +-4.861000000000000e-01 +-5.427600000000000e-01 +-5.703900000000000e-01 +-5.768400000000000e-01 +-5.734600000000000e-01 +-5.706300000000000e-01 +-5.696500000000000e-01 +-5.569499999999999e-01 +-5.070000000000000e-01 +-3.950900000000000e-01 +-2.136000000000000e-01 + 1.859000000000000e-02 + 2.605300000000000e-01 + 4.655900000000000e-01 + 6.004500000000000e-01 + 6.562600000000000e-01 + 6.468300000000000e-01 + 5.974100000000000e-01 + 5.320200000000000e-01 + 4.659200000000000e-01 + 4.050300000000000e-01 + 3.490700000000000e-01 + 2.943000000000000e-01 + 2.346000000000000e-01 + 1.618700000000000e-01 + 6.795300000000000e-02 +-5.148400000000000e-02 +-1.930000000000000e-01 +-3.437400000000000e-01 +-4.835700000000000e-01 +-5.904000000000000e-01 +-6.466100000000000e-01 +-6.444700000000000e-01 +-5.885500000000000e-01 +-4.942200000000000e-01 +-3.824400000000000e-01 +-2.725200000000000e-01 +-1.755000000000000e-01 +-9.157200000000000e-02 +-1.240300000000000e-02 + 7.272000000000001e-02 + 1.706400000000000e-01 + 2.810900000000000e-01 + 3.972000000000000e-01 + 5.077600000000000e-01 + 5.986600000000000e-01 + 6.529100000000000e-01 + 6.511200000000000e-01 + 5.755300000000000e-01 + 4.177900000000000e-01 + 1.873600000000000e-01 +-8.499500000000000e-02 +-3.523300000000000e-01 +-5.641200000000000e-01 +-6.809800000000000e-01 +-6.852100000000000e-01 +-5.835500000000000e-01 +-4.028600000000000e-01 +-1.819600000000000e-01 + 3.724200000000000e-02 + 2.182300000000000e-01 + 3.372400000000000e-01 + 3.882500000000000e-01 + 3.830600000000000e-01 + 3.449200000000000e-01 + 2.974200000000000e-01 + 2.539300000000000e-01 + 2.136400000000000e-01 + 1.664800000000000e-01 + 1.035600000000000e-01 + 2.561800000000000e-02 +-5.616200000000000e-02 +-1.275200000000000e-01 +-1.808000000000000e-01 +-2.195700000000000e-01 +-2.546400000000000e-01 +-2.943100000000000e-01 +-3.363100000000000e-01 +-3.673800000000000e-01 +-3.713300000000000e-01 +-3.399800000000000e-01 +-2.795400000000000e-01 +-2.077000000000000e-01 +-1.434300000000000e-01 +-9.577800000000000e-02 +-5.910300000000000e-02 +-1.762000000000000e-02 + 4.348500000000000e-02 + 1.275300000000000e-01 + 2.231300000000000e-01 + 3.105200000000000e-01 + 3.735800000000000e-01 + 4.096200000000000e-01 + 4.302900000000000e-01 + 4.520800000000000e-01 + 4.822300000000000e-01 + 5.094200000000000e-01 + 5.064600000000000e-01 + 4.449000000000000e-01 + 3.132900000000000e-01 + 1.277700000000000e-01 +-7.227800000000000e-02 +-2.416900000000000e-01 +-3.501000000000000e-01 +-3.937100000000000e-01 +-3.923800000000000e-01 +-3.753800000000000e-01 +-3.653000000000000e-01 +-3.695300000000000e-01 +-3.821600000000000e-01 +-3.922700000000000e-01 +-3.917700000000000e-01 +-3.781100000000000e-01 +-3.523800000000000e-01 +-3.161200000000000e-01 +-2.697800000000000e-01 +-2.129500000000000e-01 +-1.446900000000000e-01 +-6.300000000000000e-02 + 3.536800000000000e-02 + 1.529300000000000e-01 + 2.869800000000000e-01 + 4.254600000000000e-01 + 5.470800000000000e-01 + 6.274700000000000e-01 + 6.489800000000000e-01 + 6.086100000000000e-01 + 5.195800000000000e-01 + 4.059400000000000e-01 + 2.934700000000000e-01 + 2.016200000000000e-01 + 1.388200000000000e-01 + 1.013800000000000e-01 + 7.476200000000000e-02 + 3.760500000000000e-02 +-3.075700000000000e-02 +-1.400200000000000e-01 +-2.802400000000000e-01 +-4.209600000000000e-01 +-5.218300000000000e-01 +-5.510200000000000e-01 +-5.017500000000000e-01 +-3.964500000000000e-01 +-2.753100000000000e-01 +-1.760800000000000e-01 +-1.178200000000000e-01 +-9.816700000000000e-02 +-1.034600000000000e-01 +-1.220200000000000e-01 +-1.496500000000000e-01 +-1.840100000000000e-01 +-2.147300000000000e-01 +-2.204700000000000e-01 +-1.782200000000000e-01 +-7.983000000000000e-02 + 5.702200000000000e-02 + 1.933800000000000e-01 + 2.883100000000000e-01 + 3.211600000000000e-01 + 3.020900000000000e-01 + 2.643100000000000e-01 + 2.435800000000000e-01 + 2.586300000000000e-01 + 3.041300000000000e-01 + 3.586100000000000e-01 + 3.995800000000000e-01 + 4.154600000000000e-01 + 4.081100000000000e-01 + 3.872700000000000e-01 + 3.627800000000000e-01 + 3.396800000000000e-01 + 3.171600000000000e-01 + 2.897700000000000e-01 + 2.488400000000000e-01 + 1.845700000000000e-01 + 8.917799999999999e-02 +-3.919900000000000e-02 +-1.947800000000000e-01 +-3.665200000000000e-01 +-5.435300000000000e-01 +-7.187600000000000e-01 +-8.866600000000000e-01 +-1.035200000000000e+00 +-1.139200000000000e+00 +-1.162700000000000e+00 +-1.073900000000000e+00 +-8.652700000000000e-01 +-5.661600000000000e-01 +-2.365500000000000e-01 + 5.681800000000000e-02 + 2.695000000000000e-01 + 3.962700000000000e-01 + 4.660100000000000e-01 + 5.185100000000000e-01 + 5.786000000000000e-01 + 6.434600000000000e-01 + 6.892600000000000e-01 + 6.903000000000000e-01 + 6.368200000000001e-01 + 5.411100000000000e-01 + 4.302500000000000e-01 + 3.326800000000000e-01 + 2.670600000000000e-01 + 2.377800000000000e-01 + 2.360100000000000e-01 + 2.433100000000000e-01 + 2.365100000000000e-01 + 1.949700000000000e-01 + 1.097700000000000e-01 +-8.753700000000000e-03 +-1.312800000000000e-01 +-2.206600000000000e-01 +-2.497600000000000e-01 +-2.158800000000000e-01 +-1.419000000000000e-01 +-6.305800000000000e-02 +-7.927399999999999e-03 + 1.332800000000000e-02 + 6.307600000000000e-03 +-2.058100000000000e-02 +-6.718399999999999e-02 +-1.406900000000000e-01 +-2.434200000000000e-01 +-3.607500000000000e-01 +-4.618900000000000e-01 +-5.163300000000000e-01 +-5.149899999999999e-01 +-4.794100000000000e-01 +-4.492700000000000e-01 +-4.550800000000000e-01 +-4.948700000000000e-01 +-5.325600000000000e-01 +-5.203600000000000e-01 +-4.301400000000000e-01 +-2.718000000000000e-01 +-8.591300000000000e-02 + 8.326600000000001e-02 + 2.144400000000000e-01 + 3.171400000000000e-01 + 4.170200000000000e-01 + 5.321100000000000e-01 + 6.586700000000000e-01 + 7.765100000000000e-01 + 8.668800000000000e-01 + 9.262700000000000e-01 + 9.634600000000000e-01 + 9.825199999999999e-01 + 9.672600000000000e-01 + 8.831900000000000e-01 + 6.995000000000000e-01 + 4.169200000000000e-01 + 8.021499999999999e-02 +-2.368800000000000e-01 +-4.673500000000000e-01 +-5.851400000000000e-01 +-6.158600000000000e-01 +-6.170000000000000e-01 +-6.410500000000000e-01 +-7.051500000000001e-01 +-7.857000000000000e-01 +-8.385800000000000e-01 +-8.292300000000000e-01 +-7.521400000000000e-01 +-6.287900000000000e-01 +-4.888900000000000e-01 +-3.505200000000000e-01 +-2.132500000000000e-01 +-6.738900000000000e-02 + 8.988200000000000e-02 + 2.448900000000000e-01 + 3.719900000000000e-01 + 4.487900000000000e-01 + 4.707600000000000e-01 + 4.545100000000000e-01 + 4.275000000000000e-01 + 4.108600000000000e-01 + 4.067300000000000e-01 + 3.977000000000000e-01 + 3.582000000000000e-01 + 2.707100000000000e-01 + 1.375400000000000e-01 +-1.744900000000000e-02 +-1.571300000000000e-01 +-2.450000000000000e-01 +-2.585400000000000e-01 +-1.971300000000000e-01 +-8.191600000000000e-02 + 5.231100000000000e-02 + 1.701500000000000e-01 + 2.482600000000000e-01 + 2.816900000000000e-01 + 2.804700000000000e-01 + 2.585100000000000e-01 + 2.218200000000000e-01 + 1.642800000000000e-01 + 7.459600000000000e-02 +-5.024700000000000e-02 +-1.948800000000000e-01 +-3.276500000000000e-01 +-4.152400000000000e-01 +-4.406700000000000e-01 +-4.123400000000000e-01 +-3.573700000000000e-01 +-3.041600000000000e-01 +-2.665900000000000e-01 +-2.412700000000000e-01 +-2.184700000000000e-01 +-1.966600000000000e-01 +-1.874800000000000e-01 +-2.057400000000000e-01 +-2.517000000000000e-01 +-3.002500000000000e-01 +-3.074800000000000e-01 +-2.325200000000000e-01 +-6.100000000000000e-02 + 1.851700000000000e-01 + 4.576600000000000e-01 + 7.037000000000000e-01 + 8.860600000000000e-01 + 9.901600000000000e-01 + 1.018000000000000e+00 + 9.774700000000000e-01 + 8.755100000000000e-01 + 7.187300000000000e-01 + 5.171400000000000e-01 + 2.857500000000000e-01 + 4.260500000000000e-02 +-1.943700000000000e-01 +-4.083900000000000e-01 +-5.832500000000000e-01 +-7.045500000000000e-01 +-7.649899999999999e-01 +-7.706600000000000e-01 +-7.418000000000000e-01 +-7.038800000000000e-01 +-6.729300000000000e-01 +-6.453900000000000e-01 +-6.014100000000000e-01 +-5.209700000000000e-01 +-4.011900000000000e-01 +-2.610500000000000e-01 +-1.289700000000000e-01 +-2.222200000000000e-02 + 6.529100000000000e-02 + 1.566600000000000e-01 + 2.716500000000000e-01 + 4.087700000000000e-01 + 5.444500000000000e-01 + 6.498500000000000e-01 + 7.111900000000000e-01 + 7.362700000000000e-01 + 7.416199999999999e-01 + 7.317700000000000e-01 + 6.895900000000000e-01 + 5.878900000000000e-01 + 4.144900000000000e-01 + 1.903700000000000e-01 +-3.537400000000000e-02 +-2.120900000000000e-01 +-3.168300000000000e-01 +-3.647800000000000e-01 +-3.937400000000000e-01 +-4.354600000000000e-01 +-4.954200000000000e-01 +-5.547299999999999e-01 +-5.892500000000001e-01 +-5.880600000000000e-01 +-5.563500000000000e-01 +-5.025700000000000e-01 +-4.240300000000000e-01 +-3.061300000000000e-01 +-1.376200000000000e-01 + 7.077100000000000e-02 + 2.813100000000000e-01 + 4.446600000000000e-01 + 5.260300000000000e-01 + 5.235600000000000e-01 + 4.661200000000000e-01 + 3.930100000000000e-01 + 3.308800000000000e-01 + 2.833300000000000e-01 + 2.375400000000000e-01 + 1.798800000000000e-01 + 1.074000000000000e-01 + 2.877500000000000e-02 +-4.279200000000000e-02 +-9.662400000000000e-02 +-1.269900000000000e-01 +-1.323000000000000e-01 +-1.154300000000000e-01 +-8.605599999999999e-02 +-6.104400000000000e-02 +-5.806200000000000e-02 +-8.388000000000000e-02 +-1.259600000000000e-01 +-1.569400000000000e-01 +-1.530300000000000e-01 +-1.150400000000000e-01 +-7.534000000000000e-02 +-8.125300000000001e-02 +-1.625800000000000e-01 +-3.042600000000000e-01 +-4.449600000000000e-01 +-5.062400000000000e-01 +-4.361900000000000e-01 +-2.405500000000000e-01 + 1.836600000000000e-02 + 2.541500000000000e-01 + 3.998300000000000e-01 + 4.366500000000000e-01 + 3.935300000000000e-01 + 3.223200000000000e-01 + 2.673800000000000e-01 + 2.481900000000000e-01 + 2.613400000000000e-01 + 2.944700000000000e-01 + 3.384100000000000e-01 + 3.887700000000000e-01 + 4.385400000000000e-01 + 4.708600000000000e-01 + 4.606800000000000e-01 + 3.860300000000000e-01 + 2.417300000000000e-01 + 4.556700000000000e-02 +-1.681500000000000e-01 +-3.641400000000000e-01 +-5.210700000000000e-01 +-6.366000000000001e-01 +-7.203000000000001e-01 +-7.802600000000000e-01 +-8.136000000000000e-01 +-8.077900000000000e-01 +-7.520700000000000e-01 +-6.502100000000000e-01 +-5.243500000000000e-01 +-4.052100000000000e-01 +-3.134400000000000e-01 +-2.440300000000000e-01 +-1.650900000000000e-01 +-3.399700000000000e-02 + 1.772300000000000e-01 + 4.621600000000000e-01 + 7.777600000000000e-01 + 1.061600000000000e+00 + 1.258900000000000e+00 + 1.343000000000000e+00 + 1.320200000000000e+00 + 1.217000000000000e+00 + 1.060300000000000e+00 + 8.646300000000000e-01 + 6.317500000000000e-01 + 3.618500000000000e-01 + 6.482200000000000e-02 +-2.369900000000000e-01 +-5.166600000000000e-01 +-7.546700000000000e-01 +-9.453500000000000e-01 +-1.092400000000000e+00 +-1.197400000000000e+00 +-1.250200000000000e+00 +-1.231100000000000e+00 +-1.123700000000000e+00 +-9.308500000000000e-01 +-6.815099999999999e-01 +-4.218100000000000e-01 +-1.952600000000000e-01 +-2.388800000000000e-02 + 9.768400000000001e-02 + 1.923800000000000e-01 + 2.829500000000000e-01 + 3.787400000000000e-01 + 4.749900000000000e-01 + 5.622000000000000e-01 + 6.360000000000000e-01 + 6.987700000000000e-01 + 7.523300000000001e-01 + 7.896800000000000e-01 + 7.946000000000000e-01 + 7.513300000000001e-01 + 6.566200000000000e-01 + 5.238900000000000e-01 + 3.745400000000000e-01 + 2.230300000000000e-01 + 6.802300000000000e-02 +-1.016000000000000e-01 +-2.897500000000000e-01 +-4.786100000000000e-01 +-6.299900000000000e-01 +-7.041500000000001e-01 +-6.839300000000000e-01 +-5.867599999999999e-01 +-4.553400000000000e-01 +-3.332300000000000e-01 +-2.422200000000000e-01 +-1.764100000000000e-01 +-1.150100000000000e-01 +-4.249600000000000e-02 + 3.882200000000000e-02 + 1.111800000000000e-01 + 1.540000000000000e-01 + 1.558300000000000e-01 + 1.180500000000000e-01 + 5.109900000000000e-02 +-3.043700000000000e-02 +-1.096700000000000e-01 +-1.678200000000000e-01 +-1.879600000000000e-01 +-1.629700000000000e-01 +-1.022800000000000e-01 +-2.925800000000000e-02 + 3.247800000000000e-02 + 7.551400000000000e-02 + 1.145900000000000e-01 + 1.750200000000000e-01 + 2.702500000000000e-01 + 3.855400000000000e-01 + 4.817400000000000e-01 + 5.181500000000000e-01 + 4.783600000000000e-01 + 3.794600000000000e-01 + 2.576800000000000e-01 + 1.420200000000000e-01 + 3.661200000000000e-02 +-7.469800000000000e-02 +-2.064200000000000e-01 +-3.510800000000000e-01 +-4.777400000000000e-01 +-5.507100000000000e-01 +-5.529300000000000e-01 +-4.952500000000000e-01 +-4.045600000000000e-01 +-3.017300000000000e-01 +-1.883200000000000e-01 +-5.287800000000000e-02 + 1.091600000000000e-01 + 2.796700000000000e-01 + 4.204200000000000e-01 + 4.931100000000000e-01 + 4.817800000000000e-01 + 4.009500000000000e-01 + 2.842500000000000e-01 + 1.635900000000000e-01 + 5.457200000000000e-02 +-4.264800000000000e-02 +-1.310200000000000e-01 +-2.051300000000000e-01 +-2.502900000000000e-01 +-2.522400000000000e-01 +-2.088000000000000e-01 +-1.343600000000000e-01 +-5.442500000000000e-02 + 5.234800000000000e-03 + 2.804300000000000e-02 + 1.081700000000000e-02 +-3.702800000000000e-02 +-9.729800000000000e-02 +-1.488300000000000e-01 +-1.747600000000000e-01 +-1.693400000000000e-01 +-1.402800000000000e-01 +-1.035200000000000e-01 +-7.247600000000000e-02 +-4.865700000000000e-02 +-2.135400000000000e-02 + 2.261200000000000e-02 + 8.642200000000000e-02 + 1.587800000000000e-01 + 2.221700000000000e-01 + 2.675300000000000e-01 + 3.025200000000000e-01 + 3.447600000000000e-01 + 4.040400000000000e-01 + 4.680300000000000e-01 + 5.050200000000000e-01 + 4.837900000000000e-01 + 3.962600000000000e-01 + 2.648500000000000e-01 + 1.273500000000000e-01 + 1.024200000000000e-02 +-8.919900000000000e-02 +-1.977500000000000e-01 +-3.417800000000000e-01 +-5.221900000000000e-01 +-7.073800000000000e-01 +-8.490100000000000e-01 +-9.079199999999999e-01 +-8.718200000000000e-01 +-7.550600000000000e-01 +-5.855100000000000e-01 +-3.918800000000000e-01 +-2.002700000000000e-01 +-3.668500000000000e-02 + 7.455199999999999e-02 + 1.219700000000000e-01 + 1.212400000000000e-01 + 1.182300000000000e-01 + 1.716200000000000e-01 + 3.210600000000000e-01 + 5.603800000000000e-01 + 8.344400000000000e-01 + 1.063900000000000e+00 + 1.182800000000000e+00 + 1.166500000000000e+00 + 1.034200000000000e+00 + 8.280600000000000e-01 + 5.874300000000000e-01 + 3.328100000000000e-01 + 6.822499999999999e-02 +-2.056400000000000e-01 +-4.794400000000000e-01 +-7.321299999999999e-01 +-9.364200000000000e-01 +-1.066900000000000e+00 +-1.106600000000000e+00 +-1.050600000000000e+00 +-9.087100000000000e-01 +-7.066500000000000e-01 +-4.816500000000000e-01 +-2.722800000000000e-01 +-1.047500000000000e-01 + 1.609300000000000e-02 + 1.045100000000000e-01 + 1.805000000000000e-01 + 2.540600000000000e-01 + 3.182400000000000e-01 + 3.560500000000000e-01 + 3.563800000000000e-01 + 3.268900000000000e-01 + 2.938700000000000e-01 + 2.885700000000000e-01 + 3.288200000000000e-01 + 4.078200000000000e-01 + 4.967800000000000e-01 + 5.588400000000000e-01 + 5.653200000000000e-01 + 5.056900000000000e-01 + 3.878600000000000e-01 + 2.310800000000000e-01 + 5.686600000000000e-02 +-1.178300000000000e-01 +-2.834600000000000e-01 +-4.369500000000000e-01 +-5.780900000000000e-01 +-7.045900000000000e-01 +-8.077100000000000e-01 +-8.709000000000000e-01 +-8.728800000000000e-01 +-7.951500000000000e-01 +-6.310400000000000e-01 +-3.924600000000000e-01 +-1.109700000000000e-01 + 1.685200000000000e-01 + 3.999900000000000e-01 + 5.509400000000000e-01 + 6.138500000000000e-01 + 6.088300000000000e-01 + 5.744600000000000e-01 + 5.488900000000000e-01 + 5.498499999999999e-01 + 5.648100000000000e-01 + 5.588500000000000e-01 + 4.978000000000000e-01 + 3.736700000000000e-01 + 2.157200000000000e-01 + 7.777400000000000e-02 + 7.613600000000000e-03 + 1.660200000000000e-02 + 6.936000000000000e-02 + 1.010800000000000e-01 + 5.254700000000000e-02 +-9.816800000000001e-02 +-3.257300000000000e-01 +-5.728600000000000e-01 +-7.790200000000000e-01 +-9.044300000000000e-01 +-9.377300000000000e-01 +-8.887000000000000e-01 +-7.763800000000000e-01 +-6.221500000000000e-01 +-4.495100000000000e-01 +-2.848300000000000e-01 +-1.525400000000000e-01 +-6.499300000000000e-02 +-1.392400000000000e-02 + 2.849200000000000e-02 + 9.664200000000001e-02 + 2.130400000000000e-01 + 3.751500000000000e-01 + 5.552800000000000e-01 + 7.133500000000000e-01 + 8.150600000000000e-01 + 8.459300000000000e-01 + 8.151700000000000e-01 + 7.489900000000000e-01 + 6.777400000000000e-01 + 6.229200000000000e-01 + 5.888500000000000e-01 + 5.621800000000000e-01 + 5.190000000000000e-01 + 4.367300000000000e-01 + 3.052900000000000e-01 + 1.318500000000000e-01 +-6.336200000000000e-02 +-2.578000000000000e-01 +-4.371800000000000e-01 +-5.993100000000000e-01 +-7.492000000000000e-01 +-8.892900000000000e-01 +-1.012000000000000e+00 +-1.100100000000000e+00 +-1.133900000000000e+00 +-1.100800000000000e+00 +-1.000700000000000e+00 +-8.452400000000000e-01 +-6.516200000000000e-01 +-4.375800000000000e-01 +-2.186500000000000e-01 +-8.326399999999999e-03 + 1.811100000000000e-01 + 3.392100000000000e-01 + 4.593200000000000e-01 + 5.404600000000001e-01 + 5.881600000000000e-01 + 6.136600000000000e-01 + 6.321099999999999e-01 + 6.593300000000000e-01 + 7.068500000000000e-01 + 7.758400000000000e-01 + 8.525600000000000e-01 + 9.092100000000000e-01 + 9.121200000000000e-01 + 8.351800000000000e-01 + 6.720500000000000e-01 + 4.406800000000000e-01 + 1.770900000000000e-01 +-7.804899999999999e-02 +-2.931900000000000e-01 +-4.531800000000000e-01 +-5.584900000000000e-01 +-6.190099999999999e-01 +-6.473800000000000e-01 +-6.547300000000000e-01 +-6.490200000000000e-01 +-6.342900000000000e-01 +-6.099599999999999e-01 +-5.707900000000000e-01 +-5.086900000000000e-01 +-4.165600000000000e-01 +-2.926300000000000e-01 +-1.436200000000000e-01 + 1.457500000000000e-02 + 1.586400000000000e-01 + 2.618800000000000e-01 + 3.006900000000000e-01 + 2.628800000000000e-01 + 1.554100000000000e-01 + 6.819200000000000e-03 +-1.394300000000000e-01 +-2.403300000000000e-01 +-2.706900000000000e-01 +-2.325500000000000e-01 +-1.505900000000000e-01 +-5.559100000000000e-02 + 3.321600000000000e-02 + 1.155700000000000e-01 + 2.028800000000000e-01 + 3.029300000000000e-01 + 4.087700000000000e-01 + 5.007500000000000e-01 + 5.598500000000000e-01 + 5.813900000000000e-01 + 5.777800000000000e-01 + 5.678200000000000e-01 + 5.606000000000000e-01 + 5.465100000000001e-01 + 5.025600000000000e-01 + 4.077500000000000e-01 + 2.574900000000000e-01 + 6.691200000000000e-02 +-1.380100000000000e-01 +-3.337300000000000e-01 +-5.073000000000000e-01 +-6.550400000000000e-01 +-7.753000000000000e-01 +-8.623400000000000e-01 +-9.059500000000000e-01 +-8.956700000000000e-01 +-8.253700000000000e-01 +-6.953700000000000e-01 +-5.125600000000000e-01 +-2.912300000000000e-01 +-5.441500000000000e-02 + 1.670700000000000e-01 + 3.413800000000000e-01 + 4.471400000000000e-01 + 4.830800000000000e-01 + 4.681500000000000e-01 + 4.299200000000000e-01 + 3.877900000000000e-01 + 3.428600000000000e-01 + 2.821400000000000e-01 + 1.944500000000000e-01 + 8.605200000000000e-02 +-1.653300000000000e-02 +-7.971300000000001e-02 +-8.300800000000000e-02 +-3.166400000000000e-02 + 4.742000000000000e-02 + 1.231100000000000e-01 + 1.777300000000000e-01 + 2.123100000000000e-01 + 2.368100000000000e-01 + 2.544400000000000e-01 + 2.532600000000000e-01 + 2.122000000000000e-01 + 1.173400000000000e-01 +-2.397900000000000e-02 +-1.815400000000000e-01 +-3.146500000000000e-01 +-3.902600000000000e-01 +-3.957900000000000e-01 +-3.403300000000000e-01 +-2.462600000000000e-01 +-1.384000000000000e-01 +-3.691200000000000e-02 + 4.479700000000000e-02 + 9.968800000000000e-02 + 1.269900000000000e-01 + 1.323000000000000e-01 + 1.255900000000000e-01 + 1.162700000000000e-01 + 1.073000000000000e-01 + 9.308300000000000e-02 + 6.369800000000000e-02 + 1.313700000000000e-02 +-5.453000000000000e-02 +-1.265200000000000e-01 +-1.900300000000000e-01 +-2.417200000000000e-01 +-2.899600000000000e-01 +-3.466600000000000e-01 +-4.136900000000000e-01 +-4.743400000000000e-01 +-4.974100000000000e-01 +-4.532800000000000e-01 +-3.318700000000000e-01 +-1.505600000000000e-01 + 5.387900000000000e-02 + 2.442500000000000e-01 + 4.005200000000000e-01 + 5.250800000000000e-01 + 6.336300000000000e-01 + 7.392400000000000e-01 + 8.408099999999999e-01 + 9.223000000000000e-01 + 9.609600000000000e-01 + 9.367300000000000e-01 + 8.367900000000000e-01 + 6.551300000000000e-01 + 3.924400000000000e-01 + 6.033800000000000e-02 +-3.118100000000000e-01 +-6.747800000000000e-01 +-9.689200000000000e-01 +-1.144100000000000e+00 +-1.180000000000000e+00 +-1.095000000000000e+00 +-9.359000000000000e-01 +-7.546900000000000e-01 +-5.866200000000000e-01 +-4.412800000000000e-01 +-3.102900000000000e-01 +-1.830900000000000e-01 +-5.807900000000000e-02 + 5.804000000000000e-02 + 1.599700000000000e-01 + 2.525200000000000e-01 + 3.498900000000000e-01 + 4.651700000000000e-01 + 5.975900000000000e-01 + 7.273200000000000e-01 + 8.216800000000000e-01 + 8.492700000000000e-01 + 7.938200000000000e-01 + 6.606100000000000e-01 + 4.738100000000000e-01 + 2.671400000000000e-01 + 7.243500000000000e-02 +-9.042400000000000e-02 +-2.191400000000000e-01 +-3.278600000000000e-01 +-4.380800000000000e-01 +-5.638200000000000e-01 +-6.982200000000000e-01 +-8.101300000000000e-01 +-8.556400000000000e-01 +-8.001100000000000e-01 +-6.385300000000000e-01 +-4.012500000000000e-01 +-1.407700000000000e-01 + 9.253100000000000e-02 + 2.703300000000000e-01 + 3.904800000000000e-01 + 4.652700000000000e-01 + 5.047900000000000e-01 + 5.088000000000000e-01 + 4.716600000000000e-01 + 3.943300000000000e-01 + 2.918500000000000e-01 + 1.896000000000000e-01 + 1.117000000000000e-01 + 7.113800000000001e-02 + 6.882800000000000e-02 + 1.000600000000000e-01 + 1.601000000000000e-01 + 2.424400000000000e-01 + 3.314000000000000e-01 + 3.982400000000000e-01 + 4.086300000000000e-01 + 3.395700000000000e-01 + 1.946900000000000e-01 + 5.217400000000000e-03 +-1.859900000000000e-01 +-3.468100000000000e-01 +-4.689300000000000e-01 +-5.626800000000000e-01 +-6.394000000000000e-01 +-6.969100000000000e-01 +-7.205800000000000e-01 +-6.988400000000000e-01 +-6.392300000000000e-01 +-5.693700000000000e-01 +-5.197900000000000e-01 +-5.006200000000000e-01 +-4.909500000000000e-01 +-4.502300000000000e-01 +-3.447200000000000e-01 +-1.697300000000000e-01 + 4.842400000000000e-02 + 2.714000000000000e-01 + 4.736800000000000e-01 + 6.541900000000000e-01 + 8.268900000000000e-01 + 9.987100000000000e-01 + 1.153100000000000e+00 + 1.252400000000000e+00 + 1.257600000000000e+00 + 1.150900000000000e+00 + 9.464900000000001e-01 + 6.821600000000000e-01 + 3.998100000000000e-01 + 1.287200000000000e-01 +-1.193000000000000e-01 +-3.427600000000000e-01 +-5.393900000000000e-01 +-6.994500000000000e-01 +-8.068400000000000e-01 +-8.453100000000000e-01 +-8.052900000000000e-01 +-6.885500000000000e-01 +-5.104700000000000e-01 +-2.998800000000000e-01 +-9.552300000000000e-02 + 6.200300000000000e-02 + 1.416100000000000e-01 + 1.316200000000000e-01 + 4.264300000000000e-02 +-9.867500000000000e-02 +-2.612200000000000e-01 +-4.191200000000000e-01 +-5.541400000000000e-01 +-6.516700000000000e-01 +-6.963900000000000e-01 +-6.735300000000000e-01 +-5.760999999999999e-01 +-4.122000000000000e-01 +-2.051600000000000e-01 + 1.522800000000000e-02 + 2.251100000000000e-01 + 4.136500000000000e-01 + 5.803100000000000e-01 + 7.255000000000000e-01 + 8.435900000000000e-01 + 9.245600000000000e-01 + 9.627800000000000e-01 + 9.640900000000000e-01 + 9.432199999999999e-01 + 9.112800000000000e-01 + 8.629300000000000e-01 + 7.746900000000000e-01 + 6.186600000000000e-01 + 3.836800000000000e-01 + 8.921400000000000e-02 +-2.190700000000000e-01 +-4.901100000000000e-01 +-6.912600000000000e-01 +-8.195800000000000e-01 +-8.942300000000000e-01 +-9.372000000000000e-01 +-9.569000000000000e-01 +-9.456500000000000e-01 +-8.906500000000001e-01 +-7.881100000000000e-01 +-6.492400000000000e-01 +-4.942500000000000e-01 +-3.404900000000000e-01 +-1.946800000000000e-01 +-5.460200000000000e-02 + 8.216300000000000e-02 + 2.108900000000000e-01 + 3.196800000000000e-01 + 3.963900000000000e-01 + 4.363400000000000e-01 + 4.446900000000000e-01 + 4.321000000000000e-01 + 4.080900000000000e-01 + 3.774400000000000e-01 + 3.416800000000000e-01 + 3.033600000000000e-01 + 2.684300000000000e-01 + 2.447500000000000e-01 + 2.381300000000000e-01 + 2.491500000000000e-01 + 2.727800000000000e-01 + 2.999100000000000e-01 + 3.191600000000000e-01 + 3.182100000000000e-01 + 2.861300000000000e-01 + 2.175500000000000e-01 + 1.172000000000000e-01 + 6.965300000000000e-04 +-1.114400000000000e-01 +-2.047400000000000e-01 +-2.798700000000000e-01 +-3.522700000000000e-01 +-4.406300000000000e-01 +-5.505300000000000e-01 +-6.645200000000000e-01 +-7.462200000000000e-01 +-7.571700000000000e-01 +-6.762300000000000e-01 +-5.101200000000000e-01 +-2.899600000000000e-01 +-5.789900000000000e-02 + 1.471100000000000e-01 + 2.976600000000000e-01 + 3.798200000000000e-01 + 3.924400000000000e-01 + 3.468400000000000e-01 + 2.654200000000000e-01 + 1.761100000000000e-01 + 1.021300000000000e-01 + 5.254400000000000e-02 + 2.083800000000000e-02 +-5.551500000000000e-03 +-3.095000000000000e-02 +-4.384300000000000e-02 +-2.367700000000000e-02 + 4.150200000000000e-02 + 1.400400000000000e-01 + 2.375600000000000e-01 + 2.956700000000000e-01 + 2.960500000000000e-01 + 2.522100000000000e-01 + 1.996700000000000e-01 + 1.716300000000000e-01 + 1.784300000000000e-01 + 2.058700000000000e-01 + 2.320400000000000e-01 + 2.474200000000000e-01 + 2.604600000000000e-01 + 2.835700000000000e-01 + 3.118100000000000e-01 + 3.138900000000000e-01 + 2.464900000000000e-01 + 8.381100000000000e-02 +-1.586200000000000e-01 +-4.246900000000000e-01 +-6.440900000000001e-01 +-7.671000000000000e-01 +-7.854800000000000e-01 +-7.279600000000001e-01 +-6.373500000000000e-01 +-5.476100000000000e-01 +-4.751600000000000e-01 +-4.249500000000000e-01 +-3.998000000000000e-01 +-4.017500000000000e-01 +-4.242500000000000e-01 +-4.449600000000000e-01 +-4.297900000000000e-01 +-3.491200000000000e-01 +-1.950600000000000e-01 + 1.365800000000000e-02 + 2.442600000000000e-01 + 4.705000000000000e-01 + 6.852700000000000e-01 + 8.951400000000000e-01 + 1.101500000000000e+00 + 1.283900000000000e+00 + 1.401100000000000e+00 + 1.409600000000000e+00 + 1.289200000000000e+00 + 1.055800000000000e+00 + 7.548600000000000e-01 + 4.397000000000000e-01 + 1.505800000000000e-01 +-9.352100000000001e-02 +-2.894800000000000e-01 +-4.401700000000000e-01 +-5.502400000000000e-01 +-6.294800000000000e-01 +-6.969600000000000e-01 +-7.768500000000000e-01 +-8.846700000000000e-01 +-1.012400000000000e+00 +-1.124900000000000e+00 +-1.174300000000000e+00 +-1.125000000000000e+00 +-9.754300000000000e-01 +-7.610900000000000e-01 +-5.376400000000000e-01 +-3.532700000000000e-01 +-2.272700000000000e-01 +-1.457700000000000e-01 +-7.448299999999999e-02 + 2.160100000000000e-02 + 1.634300000000000e-01 + 3.538100000000000e-01 + 5.816600000000000e-01 + 8.280500000000000e-01 + 1.069100000000000e+00 + 1.276600000000000e+00 + 1.419400000000000e+00 + 1.470000000000000e+00 + 1.414000000000000e+00 + 1.256900000000000e+00 + 1.024100000000000e+00 + 7.523300000000001e-01 + 4.763400000000000e-01 + 2.173500000000000e-01 +-2.114000000000000e-02 +-2.492800000000000e-01 +-4.811800000000000e-01 +-7.243100000000000e-01 +-9.721600000000000e-01 +-1.202800000000000e+00 +-1.383500000000000e+00 +-1.480700000000000e+00 +-1.471200000000000e+00 +-1.351500000000000e+00 +-1.140500000000000e+00 +-8.738200000000000e-01 +-5.918400000000000e-01 +-3.269100000000000e-01 +-9.507400000000001e-02 + 1.041100000000000e-01 + 2.808400000000000e-01 + 4.461200000000000e-01 + 6.049000000000000e-01 + 7.537300000000000e-01 + 8.816300000000000e-01 + 9.728900000000000e-01 + 1.010800000000000e+00 + 9.831700000000000e-01 + 8.894500000000000e-01 + 7.461100000000001e-01 + 5.856900000000000e-01 + 4.461000000000000e-01 + 3.531700000000000e-01 + 3.054800000000000e-01 + 2.718800000000000e-01 + 2.057900000000000e-01 + 7.003900000000000e-02 +-1.419300000000000e-01 +-4.012000000000000e-01 +-6.576900000000000e-01 +-8.638000000000000e-01 +-9.923200000000000e-01 +-1.038400000000000e+00 +-1.008200000000000e+00 +-9.051500000000000e-01 +-7.280700000000000e-01 +-4.811300000000000e-01 +-1.879200000000000e-01 + 1.045400000000000e-01 + 3.388200000000000e-01 + 4.710700000000000e-01 + 4.911900000000000e-01 + 4.263600000000000e-01 + 3.259000000000000e-01 + 2.377800000000000e-01 + 1.908400000000000e-01 + 1.909000000000000e-01 + 2.279500000000000e-01 + 2.852800000000000e-01 + 3.433900000000000e-01 + 3.792600000000000e-01 + 3.675100000000000e-01 + 2.885100000000000e-01 + 1.411800000000000e-01 +-4.885400000000000e-02 +-2.342900000000000e-01 +-3.647900000000000e-01 +-4.096200000000000e-01 +-3.707800000000000e-01 +-2.790100000000000e-01 +-1.760200000000000e-01 +-9.477500000000000e-02 +-4.916100000000000e-02 +-3.650700000000000e-02 +-4.702700000000000e-02 +-7.128700000000000e-02 +-1.009900000000000e-01 +-1.258100000000000e-01 +-1.328300000000000e-01 +-1.119800000000000e-01 +-6.422000000000000e-02 +-4.594100000000000e-03 + 4.477500000000000e-02 + 6.913999999999999e-02 + 7.313000000000000e-02 + 8.055100000000000e-02 + 1.201200000000000e-01 + 2.055100000000000e-01 + 3.230200000000000e-01 + 4.358200000000000e-01 + 5.027800000000000e-01 + 4.999200000000000e-01 + 4.312100000000000e-01 + 3.227500000000000e-01 + 2.055200000000000e-01 + 9.893000000000000e-02 + 5.315100000000000e-03 +-8.329000000000000e-02 +-1.732600000000000e-01 +-2.620100000000000e-01 +-3.397700000000000e-01 +-3.971400000000000e-01 +-4.311500000000000e-01 +-4.445800000000000e-01 +-4.400600000000000e-01 +-4.155000000000000e-01 +-3.658700000000000e-01 +-2.909200000000000e-01 +-2.018000000000000e-01 +-1.197700000000000e-01 +-6.551700000000001e-02 +-4.572700000000000e-02 +-4.681700000000000e-02 +-4.133300000000000e-02 +-3.922900000000000e-03 + 7.325100000000000e-02 + 1.754800000000000e-01 + 2.735200000000000e-01 + 3.386800000000000e-01 + 3.552700000000000e-01 + 3.238900000000000e-01 + 2.562900000000000e-01 + 1.675900000000000e-01 + 7.163799999999999e-02 +-1.925800000000000e-02 +-9.325899999999999e-02 +-1.398300000000000e-01 +-1.528800000000000e-01 +-1.333900000000000e-01 +-8.889800000000000e-02 +-3.000300000000000e-02 + 3.322600000000000e-02 + 9.228000000000000e-02 + 1.393800000000000e-01 + 1.679400000000000e-01 + 1.764600000000000e-01 + 1.737300000000000e-01 + 1.796100000000000e-01 + 2.174200000000000e-01 + 2.998800000000000e-01 + 4.172700000000000e-01 + 5.368900000000000e-01 + 6.160600000000001e-01 + 6.213500000000000e-01 + 5.420100000000000e-01 + 3.896900000000000e-01 + 1.866200000000000e-01 +-4.731400000000000e-02 +-2.988400000000000e-01 +-5.552800000000000e-01 +-7.961000000000000e-01 +-9.918100000000000e-01 +-1.113400000000000e+00 +-1.145500000000000e+00 +-1.094100000000000e+00 +-9.808600000000000e-01 +-8.310800000000000e-01 +-6.639100000000000e-01 +-4.919800000000000e-01 +-3.279600000000000e-01 +-1.885300000000000e-01 +-8.832300000000000e-02 +-2.687400000000000e-02 + 1.962700000000000e-02 + 9.089200000000000e-02 + 2.199500000000000e-01 + 4.093800000000000e-01 + 6.240500000000000e-01 + 8.081199999999999e-01 + 9.168700000000000e-01 + 9.422700000000001e-01 + 9.153500000000000e-01 + 8.840300000000000e-01 + 8.823900000000000e-01 + 9.121500000000000e-01 + 9.470499999999999e-01 + 9.539900000000000e-01 + 9.137999999999999e-01 + 8.270600000000000e-01 + 7.038900000000000e-01 + 5.488800000000000e-01 + 3.550300000000000e-01 + 1.118600000000000e-01 +-1.796700000000000e-01 +-4.985900000000000e-01 +-8.096500000000000e-01 +-1.080100000000000e+00 +-1.295500000000000e+00 +-1.461500000000000e+00 +-1.592200000000000e+00 +-1.690200000000000e+00 +-1.736500000000000e+00 +-1.696700000000000e+00 +-1.541000000000000e+00 +-1.266600000000000e+00 +-9.052300000000000e-01 +-5.110700000000000e-01 +-1.344500000000000e-01 + 2.021600000000000e-01 + 5.103600000000000e-01 + 8.195000000000000e-01 + 1.147500000000000e+00 + 1.477600000000000e+00 + 1.757000000000000e+00 + 1.918600000000000e+00 + 1.914800000000000e+00 + 1.739700000000000e+00 + 1.430700000000000e+00 + 1.046500000000000e+00 + 6.414700000000000e-01 + 2.491100000000000e-01 +-1.148200000000000e-01 +-4.392600000000000e-01 +-7.076700000000000e-01 +-9.001300000000000e-01 +-1.004500000000000e+00 +-1.025000000000000e+00 +-9.797400000000001e-01 +-8.884600000000000e-01 +-7.624800000000000e-01 +-6.063300000000000e-01 +-4.298500000000000e-01 +-2.582300000000000e-01 +-1.269600000000000e-01 +-6.098000000000000e-02 +-5.272500000000000e-02 +-5.841500000000000e-02 +-2.050700000000000e-02 + 9.593599999999999e-02 + 2.778700000000000e-01 + 4.689600000000000e-01 + 6.026100000000000e-01 + 6.409500000000000e-01 + 5.937500000000000e-01 + 5.062100000000000e-01 + 4.269600000000000e-01 + 3.802100000000000e-01 + 3.591000000000000e-01 + 3.394500000000000e-01 + 2.983100000000000e-01 + 2.223500000000000e-01 + 1.042000000000000e-01 +-6.279700000000001e-02 +-2.805800000000000e-01 +-5.338200000000000e-01 +-7.817700000000000e-01 +-9.672400000000000e-01 +-1.042400000000000e+00 +-9.952299999999999e-01 +-8.563900000000000e-01 +-6.801100000000000e-01 +-5.110600000000000e-01 +-3.607700000000000e-01 +-2.096600000000000e-01 +-3.089300000000000e-02 + 1.835500000000000e-01 + 4.142200000000000e-01 + 6.270600000000000e-01 + 7.949000000000001e-01 + 9.093300000000000e-01 + 9.753700000000000e-01 + 9.966600000000000e-01 + 9.663700000000000e-01 + 8.724499999999999e-01 + 7.117000000000000e-01 + 4.991700000000000e-01 + 2.639800000000000e-01 + 3.510400000000000e-02 +-1.704700000000000e-01 +-3.475700000000000e-01 +-4.930100000000000e-01 +-5.976300000000000e-01 +-6.498000000000000e-01 +-6.481600000000000e-01 +-6.109599999999999e-01 +-5.698800000000001e-01 +-5.494800000000000e-01 +-5.467500000000000e-01 +-5.283099999999999e-01 +-4.504000000000000e-01 +-2.892800000000000e-01 +-6.076800000000000e-02 + 1.848500000000000e-01 + 3.885000000000000e-01 + 5.102800000000000e-01 + 5.418600000000000e-01 + 4.987200000000000e-01 + 4.031200000000000e-01 + 2.730500000000000e-01 + 1.240000000000000e-01 +-2.265600000000000e-02 +-1.368400000000000e-01 +-1.888800000000000e-01 +-1.650400000000000e-01 +-7.734500000000000e-02 + 4.093700000000000e-02 + 1.510900000000000e-01 + 2.249900000000000e-01 + 2.512400000000000e-01 + 2.306700000000000e-01 + 1.689600000000000e-01 + 7.467600000000001e-02 +-3.666000000000000e-02 +-1.397200000000000e-01 +-2.054000000000000e-01 +-2.153200000000000e-01 +-1.748900000000000e-01 +-1.133800000000000e-01 +-6.788600000000000e-02 +-6.074900000000000e-02 +-8.614300000000000e-02 +-1.157400000000000e-01 +-1.195400000000000e-01 +-8.664300000000000e-02 +-3.108700000000000e-02 + 2.068200000000000e-02 + 5.033200000000000e-02 + 6.024600000000000e-02 + 6.910800000000000e-02 + 9.476700000000000e-02 + 1.381800000000000e-01 + 1.807700000000000e-01 + 1.969000000000000e-01 + 1.716100000000000e-01 + 1.104300000000000e-01 + 3.475700000000000e-02 +-3.280400000000000e-02 +-8.147400000000000e-02 +-1.144200000000000e-01 +-1.395200000000000e-01 +-1.571900000000000e-01 +-1.555800000000000e-01 +-1.177500000000000e-01 +-3.600400000000000e-02 + 7.674200000000000e-02 + 1.872200000000000e-01 + 2.545100000000000e-01 + 2.481300000000000e-01 + 1.613500000000000e-01 + 1.306100000000000e-02 +-1.614300000000000e-01 +-3.241600000000000e-01 +-4.454200000000000e-01 +-5.076100000000000e-01 +-5.036200000000000e-01 +-4.338800000000000e-01 +-3.056800000000000e-01 +-1.346300000000000e-01 + 5.473000000000000e-02 + 2.324900000000000e-01 + 3.713600000000000e-01 + 4.555800000000000e-01 + 4.857800000000000e-01 + 4.763900000000000e-01 + 4.467100000000000e-01 + 4.104300000000000e-01 + 3.694500000000000e-01 + 3.152100000000000e-01 + 2.366800000000000e-01 + 1.302800000000000e-01 + 6.289000000000000e-03 +-1.118700000000000e-01 +-1.955900000000000e-01 +-2.228300000000000e-01 +-1.885500000000000e-01 +-1.088300000000000e-01 +-1.637500000000000e-02 + 5.146300000000000e-02 + 6.725600000000000e-02 + 2.415500000000000e-02 +-6.255600000000000e-02 +-1.639400000000000e-01 +-2.516200000000000e-01 +-3.103100000000000e-01 +-3.420600000000000e-01 +-3.606000000000000e-01 +-3.799700000000000e-01 +-4.048600000000000e-01 +-4.284700000000000e-01 +-4.382100000000000e-01 +-4.244800000000000e-01 +-3.856900000000000e-01 +-3.264500000000000e-01 +-2.506800000000000e-01 +-1.559200000000000e-01 +-3.381700000000000e-02 + 1.228400000000000e-01 + 3.113900000000000e-01 + 5.154000000000000e-01 + 7.087300000000000e-01 + 8.649600000000000e-01 + 9.657600000000000e-01 + 1.002900000000000e+00 + 9.739600000000000e-01 + 8.763400000000000e-01 + 7.071499999999999e-01 + 4.694900000000000e-01 + 1.812500000000000e-01 +-1.217300000000000e-01 +-3.930800000000000e-01 +-5.916300000000000e-01 +-6.959100000000000e-01 +-7.085100000000000e-01 +-6.478100000000000e-01 +-5.339900000000000e-01 +-3.803700000000000e-01 +-1.966300000000000e-01 +-2.761600000000000e-04 + 1.750500000000000e-01 + 2.848400000000000e-01 + 2.926200000000000e-01 + 1.913000000000000e-01 + 1.140200000000000e-02 +-1.912200000000000e-01 +-3.617400000000000e-01 +-4.702000000000000e-01 +-5.180300000000000e-01 +-5.251800000000000e-01 +-5.093299999999999e-01 +-4.732000000000000e-01 +-4.078200000000000e-01 +-3.061900000000000e-01 +-1.739500000000000e-01 +-2.772700000000000e-02 + 1.165400000000000e-01 + 2.532900000000000e-01 + 3.852100000000000e-01 + 5.105200000000000e-01 + 6.118200000000000e-01 + 6.590800000000000e-01 + 6.278200000000000e-01 + 5.197700000000000e-01 + 3.687600000000000e-01 + 2.247300000000000e-01 + 1.254700000000000e-01 + 7.623900000000000e-02 + 5.208600000000000e-02 + 2.057600000000000e-02 +-3.253600000000000e-02 +-9.391099999999999e-02 +-1.352300000000000e-01 +-1.363200000000000e-01 +-1.001000000000000e-01 +-4.862300000000000e-02 +-5.780400000000000e-03 + 1.803900000000000e-02 + 2.712600000000000e-02 + 2.907500000000000e-02 + 2.337500000000000e-02 + 1.551400000000000e-03 +-4.130700000000000e-02 +-9.532400000000001e-02 +-1.373100000000000e-01 +-1.461900000000000e-01 +-1.204700000000000e-01 +-8.247200000000000e-02 +-6.416500000000000e-02 +-8.441700000000001e-02 +-1.352700000000000e-01 +-1.878700000000000e-01 +-2.133700000000000e-01 +-2.024400000000000e-01 +-1.691600000000000e-01 +-1.380700000000000e-01 +-1.262300000000000e-01 +-1.345100000000000e-01 +-1.525200000000000e-01 +-1.694800000000000e-01 +-1.793900000000000e-01 +-1.762000000000000e-01 +-1.464500000000000e-01 +-7.070500000000000e-02 + 6.203100000000000e-02 + 2.364400000000000e-01 + 4.055600000000000e-01 + 5.075400000000000e-01 + 4.979100000000000e-01 + 3.773800000000000e-01 + 1.961600000000000e-01 + 3.025500000000000e-02 +-5.614600000000000e-02 +-3.980200000000000e-02 + 5.670000000000000e-02 + 1.835900000000000e-01 + 2.914300000000000e-01 + 3.505800000000000e-01 + 3.545600000000000e-01 + 3.112500000000000e-01 + 2.324100000000000e-01 + 1.290300000000000e-01 + 1.278500000000000e-02 +-1.016200000000000e-01 +-1.982900000000000e-01 +-2.662800000000000e-01 +-3.054400000000000e-01 +-3.269700000000000e-01 +-3.469800000000000e-01 +-3.764200000000000e-01 +-4.135800000000000e-01 +-4.438500000000000e-01 +-4.473800000000000e-01 +-4.102700000000000e-01 +-3.324300000000000e-01 +-2.271100000000000e-01 +-1.120800000000000e-01 + 1.755600000000000e-03 + 1.160000000000000e-01 + 2.398700000000000e-01 + 3.771800000000000e-01 + 5.148600000000000e-01 + 6.226400000000000e-01 + 6.667800000000000e-01 + 6.296300000000000e-01 + 5.211500000000000e-01 + 3.730200000000000e-01 + 2.181400000000000e-01 + 7.026800000000000e-02 +-8.067500000000000e-02 +-2.528500000000000e-01 +-4.476500000000000e-01 +-6.349300000000000e-01 +-7.614500000000000e-01 +-7.787500000000001e-01 +-6.723000000000000e-01 +-4.722500000000000e-01 +-2.389300000000000e-01 +-3.328300000000000e-02 + 1.088200000000000e-01 + 1.846300000000000e-01 + 2.148400000000000e-01 + 2.270900000000000e-01 + 2.439300000000000e-01 + 2.786800000000000e-01 + 3.351200000000000e-01 + 4.059000000000000e-01 + 4.704800000000000e-01 + 4.983500000000000e-01 + 4.611100000000000e-01 + 3.489800000000000e-01 + 1.808000000000000e-01 +-1.058500000000000e-03 +-1.497200000000000e-01 +-2.349700000000000e-01 +-2.534300000000000e-01 +-2.228900000000000e-01 +-1.679400000000000e-01 +-1.085700000000000e-01 +-5.812600000000000e-02 +-2.730400000000000e-02 +-2.543500000000000e-02 +-5.484100000000000e-02 +-1.033100000000000e-01 +-1.443900000000000e-01 +-1.498300000000000e-01 +-1.075800000000000e-01 +-3.174600000000000e-02 + 4.418500000000000e-02 + 8.682400000000000e-02 + 8.059700000000000e-02 + 3.106000000000000e-02 +-4.640800000000000e-02 +-1.403300000000000e-01 +-2.458900000000000e-01 +-3.546700000000000e-01 +-4.433800000000000e-01 +-4.761500000000000e-01 +-4.242200000000000e-01 +-2.892600000000000e-01 +-1.104600000000000e-01 + 5.484700000000000e-02 + 1.659300000000000e-01 + 2.239300000000000e-01 + 2.675900000000000e-01 + 3.411100000000000e-01 + 4.571600000000000e-01 + 5.827800000000000e-01 + 6.594000000000000e-01 + 6.428600000000000e-01 + 5.346700000000000e-01 + 3.822700000000000e-01 + 2.487400000000000e-01 + 1.731700000000000e-01 + 1.484700000000000e-01 + 1.294500000000000e-01 + 6.381100000000001e-02 +-7.491100000000001e-02 +-2.718200000000000e-01 +-4.788600000000000e-01 +-6.391600000000000e-01 +-7.131000000000000e-01 +-6.935500000000000e-01 +-6.049400000000000e-01 +-4.885600000000000e-01 +-3.817700000000000e-01 +-3.011500000000000e-01 +-2.378900000000000e-01 +-1.679000000000000e-01 +-7.086300000000000e-02 + 5.380500000000000e-02 + 1.850300000000000e-01 + 2.940200000000000e-01 + 3.642000000000000e-01 + 4.018900000000000e-01 + 4.287200000000000e-01 + 4.611400000000000e-01 + 4.933900000000000e-01 + 4.987700000000000e-01 + 4.502400000000000e-01 + 3.451000000000000e-01 + 2.136200000000000e-01 + 1.028900000000000e-01 + 4.583200000000000e-02 + 3.801100000000000e-02 + 3.961900000000000e-02 + 2.055300000000000e-03 +-9.957500000000000e-02 +-2.503900000000000e-01 +-4.057900000000000e-01 +-5.184900000000000e-01 +-5.628100000000000e-01 +-5.411800000000000e-01 +-4.728100000000000e-01 +-3.768300000000000e-01 +-2.636400000000000e-01 +-1.386600000000000e-01 +-1.201500000000000e-02 + 9.643000000000000e-02 + 1.619000000000000e-01 + 1.663600000000000e-01 + 1.091400000000000e-01 + 1.001500000000000e-02 +-9.628700000000000e-02 +-1.713600000000000e-01 +-1.859700000000000e-01 +-1.307000000000000e-01 +-2.053900000000000e-02 + 1.098700000000000e-01 + 2.209700000000000e-01 + 2.877400000000000e-01 + 3.133300000000000e-01 + 3.270400000000000e-01 + 3.652500000000000e-01 + 4.458600000000000e-01 + 5.527700000000000e-01 + 6.418000000000000e-01 + 6.649600000000000e-01 + 5.972300000000000e-01 + 4.484800000000000e-01 + 2.540800000000000e-01 + 5.336800000000000e-02 +-1.281000000000000e-01 +-2.815600000000000e-01 +-4.059300000000000e-01 +-4.982700000000000e-01 +-5.531700000000001e-01 +-5.702300000000000e-01 +-5.601400000000000e-01 +-5.408500000000001e-01 +-5.255900000000000e-01 +-5.130900000000000e-01 +-4.899100000000000e-01 +-4.437600000000000e-01 +-3.762100000000000e-01 +-3.022100000000000e-01 +-2.351800000000000e-01 +-1.702700000000000e-01 +-8.228500000000000e-02 + 5.587400000000000e-02 + 2.462100000000000e-01 + 4.516200000000000e-01 + 6.092400000000000e-01 + 6.653100000000000e-01 + 6.085900000000000e-01 + 4.780900000000000e-01 + 3.385000000000000e-01 + 2.396600000000000e-01 + 1.876100000000000e-01 + 1.468000000000000e-01 + 7.094700000000000e-02 +-5.946800000000000e-02 +-2.187100000000000e-01 +-3.480700000000000e-01 +-3.899900000000000e-01 +-3.215500000000000e-01 +-1.670000000000000e-01 + 1.665900000000000e-02 + 1.704300000000000e-01 + 2.613100000000000e-01 + 2.921300000000000e-01 + 2.897700000000000e-01 + 2.813400000000000e-01 + 2.738200000000000e-01 + 2.502100000000000e-01 + 1.840800000000000e-01 + 6.318000000000000e-02 +-9.384199999999999e-02 +-2.397700000000000e-01 +-3.208400000000000e-01 +-3.056900000000000e-01 +-2.032700000000000e-01 +-5.764800000000000e-02 + 7.699400000000001e-02 + 1.649000000000000e-01 + 2.021100000000000e-01 + 2.070500000000000e-01 + 1.973000000000000e-01 + 1.711800000000000e-01 + 1.084500000000000e-01 +-1.060700000000000e-02 +-1.828300000000000e-01 +-3.743400000000000e-01 +-5.340200000000001e-01 +-6.194900000000000e-01 +-6.180600000000001e-01 +-5.498800000000000e-01 +-4.536100000000000e-01 +-3.659900000000000e-01 +-3.081900000000000e-01 +-2.836100000000000e-01 +-2.828800000000000e-01 +-2.888900000000000e-01 +-2.791700000000000e-01 +-2.290800000000000e-01 +-1.194100000000000e-01 + 5.274700000000000e-02 + 2.676100000000000e-01 + 4.878400000000000e-01 + 6.749900000000000e-01 + 8.075400000000000e-01 + 8.882300000000000e-01 + 9.353399999999999e-01 + 9.641999999999999e-01 + 9.726399999999999e-01 + 9.408900000000000e-01 + 8.457200000000000e-01 + 6.778900000000000e-01 + 4.507500000000000e-01 + 1.947400000000000e-01 +-5.663800000000000e-02 +-2.788700000000000e-01 +-4.594300000000000e-01 +-5.927700000000000e-01 +-6.744599999999999e-01 +-7.007100000000001e-01 +-6.735000000000000e-01 +-6.061500000000000e-01 +-5.231900000000000e-01 +-4.527300000000000e-01 +-4.153500000000000e-01 +-4.155800000000000e-01 +-4.405400000000000e-01 +-4.657700000000000e-01 +-4.648900000000000e-01 +-4.188600000000000e-01 +-3.216900000000000e-01 +-1.815700000000000e-01 +-1.766300000000000e-02 + 1.456400000000000e-01 + 2.849700000000000e-01 + 3.827900000000000e-01 + 4.298100000000000e-01 + 4.257600000000000e-01 + 3.793800000000000e-01 + 3.076500000000000e-01 + 2.326600000000000e-01 + 1.745600000000000e-01 + 1.419400000000000e-01 + 1.250600000000000e-01 + 9.826900000000000e-02 + 3.395200000000000e-02 +-7.795199999999999e-02 +-2.170500000000000e-01 +-3.366400000000000e-01 +-3.855500000000000e-01 +-3.357700000000000e-01 +-1.988800000000000e-01 +-2.032300000000000e-02 + 1.449900000000000e-01 + 2.601100000000000e-01 + 3.196300000000000e-01 + 3.429300000000000e-01 + 3.551500000000000e-01 + 3.708300000000000e-01 + 3.905700000000000e-01 + 4.093700000000000e-01 + 4.260200000000000e-01 + 4.440400000000000e-01 + 4.637000000000000e-01 + 4.735500000000000e-01 + 4.512900000000000e-01 + 3.755100000000000e-01 + 2.405500000000000e-01 + 6.310499999999999e-02 +-1.246400000000000e-01 +-2.907700000000000e-01 +-4.173700000000000e-01 +-5.041900000000000e-01 +-5.622200000000001e-01 +-6.043800000000000e-01 +-6.402900000000000e-01 +-6.764700000000000e-01 +-7.177600000000000e-01 +-7.653500000000000e-01 +-8.119499999999999e-01 +-8.394300000000000e-01 +-8.241800000000000e-01 +-7.493800000000000e-01 +-6.167200000000000e-01 +-4.485900000000000e-01 +-2.778200000000000e-01 +-1.303400000000000e-01 +-1.187600000000000e-02 + 9.343100000000000e-02 + 2.120300000000000e-01 + 3.652400000000000e-01 + 5.581300000000000e-01 + 7.779000000000000e-01 + 1.000400000000000e+00 + 1.199400000000000e+00 + 1.352600000000000e+00 + 1.445200000000000e+00 + 1.469200000000000e+00 + 1.422900000000000e+00 + 1.309600000000000e+00 + 1.136100000000000e+00 + 9.106400000000000e-01 + 6.407700000000000e-01 + 3.332900000000000e-01 +-4.335200000000000e-03 +-3.614700000000000e-01 +-7.222800000000000e-01 +-1.065100000000000e+00 +-1.363100000000000e+00 +-1.587500000000000e+00 +-1.712000000000000e+00 +-1.720500000000000e+00 +-1.613800000000000e+00 +-1.413400000000000e+00 +-1.157200000000000e+00 +-8.874500000000000e-01 +-6.357100000000000e-01 +-4.118600000000000e-01 +-2.037400000000000e-01 + 1.230100000000000e-02 + 2.556900000000000e-01 + 5.290600000000000e-01 + 8.147400000000000e-01 + 1.080500000000000e+00 + 1.290100000000000e+00 + 1.413600000000000e+00 + 1.434000000000000e+00 + 1.349900000000000e+00 + 1.174400000000000e+00 + 9.303000000000000e-01 + 6.425900000000000e-01 + 3.310900000000000e-01 + 7.277300000000000e-03 +-3.211800000000000e-01 +-6.399500000000000e-01 +-9.191600000000000e-01 +-1.115000000000000e+00 +-1.184700000000000e+00 +-1.109100000000000e+00 +-9.078800000000000e-01 +-6.372000000000000e-01 +-3.674300000000000e-01 +-1.534700000000000e-01 +-1.432500000000000e-02 + 6.688800000000000e-02 + 1.245400000000000e-01 + 1.871100000000000e-01 + 2.634800000000000e-01 + 3.449400000000000e-01 + 4.173200000000000e-01 + 4.720400000000000e-01 + 5.083200000000000e-01 + 5.276300000000000e-01 + 5.278300000000000e-01 + 5.034400000000000e-01 + 4.518000000000000e-01 + 3.789700000000000e-01 + 2.992100000000000e-01 + 2.274500000000000e-01 + 1.704900000000000e-01 + 1.237300000000000e-01 + 7.555199999999999e-02 + 1.524800000000000e-02 +-6.210500000000000e-02 +-1.566600000000000e-01 +-2.678100000000000e-01 +-3.954700000000000e-01 +-5.361100000000000e-01 +-6.770699999999999e-01 +-7.961000000000000e-01 +-8.697200000000000e-01 +-8.863700000000000e-01 +-8.543700000000000e-01 +-7.971300000000000e-01 +-7.363900000000000e-01 +-6.745300000000000e-01 +-5.888700000000000e-01 +-4.437100000000000e-01 +-2.134100000000000e-01 + 9.813100000000000e-02 + 4.545000000000000e-01 + 8.016200000000000e-01 + 1.090400000000000e+00 + 1.293200000000000e+00 + 1.405200000000000e+00 + 1.434300000000000e+00 + 1.389200000000000e+00 + 1.274900000000000e+00 + 1.096200000000000e+00 + 8.638500000000000e-01 + 5.948400000000000e-01 + 3.062700000000000e-01 + 8.599700000000000e-03 +-2.943900000000000e-01 +-5.970400000000000e-01 +-8.809399999999999e-01 +-1.112000000000000e+00 +-1.250500000000000e+00 +-1.270400000000000e+00 +-1.174600000000000e+00 +-9.961800000000000e-01 +-7.843300000000000e-01 +-5.824700000000000e-01 +-4.134600000000000e-01 +-2.783500000000000e-01 +-1.666500000000000e-01 +-6.802100000000000e-02 + 2.297800000000000e-02 + 1.104400000000000e-01 + 2.024800000000000e-01 + 3.111300000000000e-01 + 4.451700000000000e-01 + 6.013500000000001e-01 + 7.611700000000000e-01 + 8.964100000000000e-01 + 9.790700000000000e-01 + 9.886600000000000e-01 + 9.133700000000000e-01 + 7.479700000000000e-01 + 4.948800000000000e-01 + 1.706300000000000e-01 +-1.871600000000000e-01 +-5.217900000000000e-01 +-7.732500000000000e-01 +-9.020200000000000e-01 +-9.064700000000000e-01 +-8.211900000000000e-01 +-6.955100000000000e-01 +-5.657900000000000e-01 +-4.401600000000000e-01 +-3.056000000000000e-01 +-1.506200000000000e-01 + 1.473100000000000e-02 + 1.582100000000000e-01 + 2.450400000000000e-01 + 2.632200000000000e-01 + 2.345300000000000e-01 + 2.018600000000000e-01 + 2.014000000000000e-01 + 2.395800000000000e-01 + 2.912200000000000e-01 + 3.194900000000000e-01 + 3.026500000000000e-01 + 2.482800000000000e-01 + 1.860000000000000e-01 + 1.453900000000000e-01 + 1.359700000000000e-01 + 1.428000000000000e-01 + 1.390300000000000e-01 + 1.049000000000000e-01 + 3.986300000000000e-02 +-3.868500000000000e-02 +-1.066800000000000e-01 +-1.456600000000000e-01 +-1.490700000000000e-01 +-1.215800000000000e-01 +-7.499500000000001e-02 +-2.415300000000000e-02 + 1.614400000000000e-02 + 3.449200000000000e-02 + 2.653600000000000e-02 +-3.165800000000000e-03 +-4.360800000000000e-02 +-8.390599999999999e-02 +-1.200800000000000e-01 +-1.570700000000000e-01 +-2.042300000000000e-01 +-2.673300000000000e-01 +-3.430400000000000e-01 +-4.196400000000000e-01 +-4.825000000000000e-01 +-5.195000000000000e-01 +-5.221500000000000e-01 +-4.830300000000000e-01 +-3.937400000000000e-01 +-2.475500000000000e-01 +-4.589300000000000e-02 + 1.961700000000000e-01 + 4.509000000000000e-01 + 6.856000000000000e-01 + 8.722800000000001e-01 + 9.928100000000000e-01 + 1.037500000000000e+00 + 1.000700000000000e+00 + 8.804800000000000e-01 + 6.834300000000000e-01 + 4.315200000000000e-01 + 1.621100000000000e-01 +-8.265500000000001e-02 +-2.728400000000000e-01 +-4.029600000000000e-01 +-4.902100000000000e-01 +-5.588800000000000e-01 +-6.212500000000000e-01 +-6.685300000000000e-01 +-6.779100000000000e-01 +-6.299100000000000e-01 +-5.230800000000000e-01 +-3.755400000000000e-01 +-2.136500000000000e-01 +-5.783600000000000e-02 + 8.342400000000000e-02 + 2.081700000000000e-01 + 3.109000000000000e-01 + 3.784400000000000e-01 + 3.963300000000000e-01 + 3.607300000000000e-01 + 2.849000000000000e-01 + 1.933700000000000e-01 + 1.070600000000000e-01 + 3.065700000000000e-02 +-4.747800000000000e-02 +-1.421400000000000e-01 +-2.546300000000000e-01 +-3.651400000000000e-01 +-4.401200000000000e-01 +-4.489300000000000e-01 +-3.785000000000000e-01 +-2.367600000000000e-01 +-4.585200000000000e-02 + 1.672500000000000e-01 + 3.748400000000000e-01 + 5.470699999999999e-01 + 6.515900000000000e-01 + 6.607300000000000e-01 + 5.652199999999999e-01 + 3.850800000000000e-01 + 1.666800000000000e-01 +-3.608700000000000e-02 +-1.870300000000000e-01 +-2.828200000000000e-01 +-3.474400000000000e-01 +-4.091200000000000e-01 +-4.756800000000000e-01 +-5.256999999999999e-01 +-5.219900000000000e-01 +-4.380300000000000e-01 +-2.788600000000000e-01 +-8.180000000000000e-02 + 1.033600000000000e-01 + 2.412400000000000e-01 + 3.270500000000000e-01 + 3.822600000000000e-01 + 4.343200000000000e-01 + 4.948400000000000e-01 + 5.506700000000000e-01 + 5.727100000000001e-01 + 5.352400000000000e-01 + 4.326800000000000e-01 + 2.832200000000000e-01 + 1.182800000000000e-01 +-3.455500000000000e-02 +-1.637800000000000e-01 +-2.744600000000000e-01 +-3.776700000000000e-01 +-4.768300000000000e-01 +-5.604200000000000e-01 +-6.062400000000000e-01 +-5.947900000000000e-01 +-5.229500000000000e-01 +-4.090000000000000e-01 +-2.848300000000000e-01 +-1.798200000000000e-01 +-1.062900000000000e-01 +-5.564400000000000e-02 +-7.528800000000000e-03 + 5.430000000000000e-02 + 1.302100000000000e-01 + 2.045800000000000e-01 + 2.568400000000000e-01 + 2.751800000000000e-01 + 2.633400000000000e-01 + 2.361000000000000e-01 + 2.078100000000000e-01 + 1.828200000000000e-01 + 1.547600000000000e-01 + 1.143500000000000e-01 + 5.940500000000000e-02 +-4.491000000000000e-04 +-4.702600000000000e-02 +-6.174700000000000e-02 +-3.312200000000000e-02 + 3.977600000000000e-02 + 1.472100000000000e-01 + 2.696900000000000e-01 + 3.792900000000000e-01 + 4.437400000000000e-01 + 4.354200000000000e-01 + 3.435400000000000e-01 + 1.828700000000000e-01 +-8.104200000000001e-03 +-1.817200000000000e-01 +-3.014200000000000e-01 +-3.565000000000000e-01 +-3.624500000000000e-01 +-3.472700000000000e-01 +-3.333400000000000e-01 +-3.261000000000000e-01 +-3.155600000000000e-01 +-2.872800000000000e-01 +-2.342500000000000e-01 +-1.622300000000000e-01 +-8.748400000000001e-02 +-3.008600000000000e-02 +-7.029000000000000e-03 +-2.638600000000000e-02 +-8.217000000000001e-02 +-1.510500000000000e-01 +-1.948100000000000e-01 +-1.721500000000000e-01 +-5.761400000000000e-02 + 1.415000000000000e-01 + 3.820200000000000e-01 + 6.004600000000000e-01 + 7.402700000000000e-01 + 7.744500000000000e-01 + 7.098800000000000e-01 + 5.720300000000000e-01 + 3.833900000000000e-01 + 1.527800000000000e-01 +-1.160000000000000e-01 +-4.048000000000000e-01 +-6.690400000000000e-01 +-8.471900000000000e-01 +-8.892700000000000e-01 +-7.860300000000000e-01 +-5.780700000000000e-01 +-3.365700000000000e-01 +-1.271400000000000e-01 + 2.039800000000000e-02 + 1.178900000000000e-01 + 1.989200000000000e-01 + 2.885500000000000e-01 + 3.833300000000000e-01 + 4.534500000000000e-01 + 4.635200000000000e-01 + 3.969400000000000e-01 + 2.689200000000000e-01 + 1.214500000000000e-01 + 4.635000000000000e-03 +-4.498900000000000e-02 +-1.896600000000000e-02 + 6.132500000000000e-02 + 1.553300000000000e-01 + 2.213600000000000e-01 + 2.342000000000000e-01 + 1.943900000000000e-01 + 1.247100000000000e-01 + 5.559100000000000e-02 + 7.664100000000000e-03 +-1.837700000000000e-02 +-3.868200000000000e-02 +-7.290400000000000e-02 +-1.304900000000000e-01 +-2.061800000000000e-01 +-2.867700000000000e-01 +-3.620900000000000e-01 +-4.301900000000000e-01 +-4.924500000000000e-01 +-5.436200000000000e-01 +-5.672600000000000e-01 +-5.426400000000000e-01 +-4.590300000000000e-01 +-3.259500000000000e-01 +-1.697100000000000e-01 +-1.785900000000000e-02 + 1.167800000000000e-01 + 2.395900000000000e-01 + 3.623900000000000e-01 + 4.863500000000000e-01 + 5.945600000000000e-01 + 6.613800000000000e-01 + 6.711400000000000e-01 + 6.303400000000000e-01 + 5.619100000000000e-01 + 4.853800000000000e-01 + 3.992800000000000e-01 + 2.819400000000000e-01 + 1.125600000000000e-01 +-1.027300000000000e-01 +-3.208600000000000e-01 +-4.782600000000000e-01 +-5.244600000000000e-01 +-4.507900000000000e-01 +-2.947900000000000e-01 +-1.184900000000000e-01 + 2.345700000000000e-02 + 1.048700000000000e-01 + 1.275500000000000e-01 + 1.055200000000000e-01 + 4.992200000000000e-02 +-3.351500000000000e-02 +-1.356600000000000e-01 +-2.357300000000000e-01 +-3.044700000000000e-01 +-3.191600000000000e-01 +-2.790300000000000e-01 +-2.084600000000000e-01 +-1.435700000000000e-01 +-1.109400000000000e-01 +-1.127200000000000e-01 +-1.276300000000000e-01 +-1.258200000000000e-01 +-8.663000000000000e-02 +-8.332200000000000e-03 + 9.377900000000000e-02 + 1.963100000000000e-01 + 2.766700000000000e-01 + 3.183100000000000e-01 + 3.137500000000000e-01 + 2.674800000000000e-01 + 1.979200000000000e-01 + 1.339400000000000e-01 + 1.035100000000000e-01 + 1.181400000000000e-01 + 1.632700000000000e-01 + 2.036700000000000e-01 + 2.036000000000000e-01 + 1.502600000000000e-01 + 6.391200000000000e-02 +-1.404700000000000e-02 +-4.911600000000000e-02 +-3.882500000000000e-02 +-1.666200000000000e-02 +-3.027400000000000e-02 +-1.077300000000000e-01 +-2.349400000000000e-01 +-3.605700000000000e-01 +-4.260200000000000e-01 +-4.009100000000000e-01 +-3.006400000000000e-01 +-1.751100000000000e-01 +-7.728400000000001e-02 +-3.302700000000000e-02 +-3.118800000000000e-02 +-3.757100000000000e-02 +-2.034300000000000e-02 + 3.143700000000000e-02 + 1.067300000000000e-01 + 1.854400000000000e-01 + 2.524900000000000e-01 + 3.022500000000000e-01 + 3.326800000000000e-01 + 3.378700000000000e-01 + 3.083700000000000e-01 + 2.403600000000000e-01 + 1.455400000000000e-01 + 5.093000000000000e-02 +-1.440600000000000e-02 +-3.782200000000000e-02 +-3.271400000000000e-02 +-3.066900000000000e-02 +-6.000900000000000e-02 +-1.253100000000000e-01 +-2.027400000000000e-01 +-2.554500000000000e-01 +-2.588000000000000e-01 +-2.184900000000000e-01 +-1.688800000000000e-01 +-1.524700000000000e-01 +-1.936100000000000e-01 +-2.828700000000000e-01 +-3.807600000000000e-01 +-4.377900000000000e-01 +-4.185300000000000e-01 +-3.171700000000000e-01 +-1.579400000000000e-01 + 1.719100000000000e-02 + 1.663700000000000e-01 + 2.632300000000000e-01 + 3.044900000000000e-01 + 3.082700000000000e-01 + 3.045600000000000e-01 + 3.218700000000000e-01 + 3.752900000000000e-01 + 4.611100000000000e-01 + 5.602700000000000e-01 + 6.487100000000000e-01 + 7.085000000000000e-01 + 7.333900000000000e-01 + 7.258800000000000e-01 + 6.884700000000000e-01 + 6.158900000000000e-01 + 4.941100000000000e-01 + 3.073400000000000e-01 + 4.893800000000000e-02 +-2.703800000000000e-01 +-6.216000000000000e-01 +-9.638099999999999e-01 +-1.254400000000000e+00 +-1.458600000000000e+00 +-1.555300000000000e+00 +-1.538800000000000e+00 +-1.417400000000000e+00 +-1.209500000000000e+00 +-9.379000000000000e-01 +-6.253800000000000e-01 +-2.912100000000000e-01 + 4.800000000000000e-02 + 3.747800000000000e-01 + 6.672000000000000e-01 + 8.988500000000000e-01 + 1.044100000000000e+00 + 1.087000000000000e+00 + 1.029800000000000e+00 + 8.954299999999999e-01 + 7.229300000000000e-01 + 5.565700000000000e-01 + 4.333200000000000e-01 + 3.731100000000000e-01 + 3.751600000000000e-01 + 4.210800000000000e-01 + 4.830400000000000e-01 + 5.335000000000000e-01 + 5.527000000000000e-01 + 5.307600000000000e-01 + 4.643200000000000e-01 + 3.509800000000000e-01 + 1.863600000000000e-01 +-3.269000000000000e-02 +-2.999000000000000e-01 +-5.922900000000000e-01 +-8.707300000000000e-01 +-1.091000000000000e+00 +-1.220900000000000e+00 +-1.253500000000000e+00 +-1.207900000000000e+00 +-1.117100000000000e+00 +-1.008600000000000e+00 +-8.915999999999999e-01 +-7.566000000000001e-01 +-5.867200000000000e-01 +-3.722500000000000e-01 +-1.188100000000000e-01 + 1.547000000000000e-01 + 4.241700000000000e-01 + 6.676800000000001e-01 + 8.676600000000000e-01 + 1.009600000000000e+00 + 1.082300000000000e+00 + 1.082200000000000e+00 + 1.020000000000000e+00 + 9.212200000000000e-01 + 8.190000000000000e-01 + 7.384500000000001e-01 + 6.835400000000000e-01 + 6.348200000000001e-01 + 5.609200000000000e-01 + 4.371700000000000e-01 + 2.598300000000000e-01 + 4.679900000000000e-02 +-1.746100000000000e-01 +-3.838000000000000e-01 +-5.754600000000000e-01 +-7.548899999999999e-01 +-9.245400000000000e-01 +-1.072600000000000e+00 +-1.173400000000000e+00 +-1.200300000000000e+00 +-1.143400000000000e+00 +-1.019400000000000e+00 +-8.646800000000000e-01 +-7.159900000000000e-01 +-5.895600000000000e-01 +-4.721600000000000e-01 +-3.303900000000000e-01 +-1.328400000000000e-01 + 1.288300000000000e-01 + 4.325300000000000e-01 + 7.359900000000000e-01 + 9.971800000000000e-01 + 1.191400000000000e+00 + 1.315200000000000e+00 + 1.377900000000000e+00 + 1.387900000000000e+00 + 1.346000000000000e+00 + 1.248100000000000e+00 + 1.093900000000000e+00 + 8.916500000000001e-01 + 6.553500000000000e-01 + 3.960900000000000e-01 + 1.170400000000000e-01 +-1.824000000000000e-01 +-4.954700000000000e-01 +-7.990600000000000e-01 +-1.056100000000000e+00 +-1.230000000000000e+00 +-1.302500000000000e+00 +-1.282100000000000e+00 +-1.198200000000000e+00 +-1.083800000000000e+00 +-9.611700000000000e-01 +-8.376300000000000e-01 +-7.141500000000000e-01 +-5.958700000000000e-01 +-4.951200000000000e-01 +-4.236800000000000e-01 +-3.808600000000000e-01 +-3.476700000000000e-01 +-2.924900000000000e-01 +-1.845400000000000e-01 +-5.987500000000000e-03 + 2.440600000000000e-01 + 5.529400000000000e-01 + 8.990600000000000e-01 + 1.252800000000000e+00 + 1.575000000000000e+00 + 1.819700000000000e+00 + 1.945000000000000e+00 + 1.928800000000000e+00 + 1.778400000000000e+00 + 1.527000000000000e+00 + 1.215900000000000e+00 + 8.745000000000001e-01 + 5.121599999999999e-01 + 1.263700000000000e-01 +-2.794600000000000e-01 +-6.838600000000000e-01 +-1.051100000000000e+00 +-1.348000000000000e+00 +-1.560800000000000e+00 +-1.697600000000000e+00 +-1.774200000000000e+00 +-1.794300000000000e+00 +-1.740600000000000e+00 +-1.585100000000000e+00 +-1.312700000000000e+00 +-9.422800000000000e-01 +-5.295500000000000e-01 +-1.485500000000000e-01 + 1.375500000000000e-01 + 3.003300000000000e-01 + 3.529200000000000e-01 + 3.388600000000000e-01 + 3.117000000000000e-01 + 3.156500000000000e-01 + 3.744800000000000e-01 + 4.893900000000000e-01 + 6.436200000000000e-01 + 8.107000000000000e-01 + 9.640800000000000e-01 + 1.085300000000000e+00 + 1.167900000000000e+00 + 1.215200000000000e+00 + 1.232300000000000e+00 + 1.217900000000000e+00 + 1.160800000000000e+00 + 1.044400000000000e+00 + 8.573300000000000e-01 + 6.026800000000000e-01 + 3.004000000000000e-01 +-1.940000000000000e-02 +-3.286800000000000e-01 +-6.119000000000000e-01 +-8.687500000000000e-01 +-1.107600000000000e+00 +-1.333800000000000e+00 +-1.538800000000000e+00 +-1.698100000000000e+00 +-1.777700000000000e+00 +-1.749300000000000e+00 +-1.603900000000000e+00 +-1.357700000000000e+00 +-1.046600000000000e+00 +-7.103000000000000e-01 +-3.762600000000000e-01 +-5.316700000000000e-02 + 2.621000000000000e-01 + 5.688200000000000e-01 + 8.499900000000000e-01 + 1.073900000000000e+00 + 1.210400000000000e+00 + 1.252200000000000e+00 + 1.224900000000000e+00 + 1.176500000000000e+00 + 1.152400000000000e+00 + 1.168800000000000e+00 + 1.204700000000000e+00 + 1.215000000000000e+00 + 1.157400000000000e+00 + 1.013300000000000e+00 + 7.920800000000000e-01 + 5.179600000000000e-01 + 2.123600000000000e-01 +-1.137800000000000e-01 +-4.539600000000000e-01 +-7.941800000000000e-01 +-1.107600000000000e+00 +-1.362000000000000e+00 +-1.535700000000000e+00 +-1.627300000000000e+00 +-1.652800000000000e+00 +-1.630000000000000e+00 +-1.562400000000000e+00 +-1.435600000000000e+00 +-1.228900000000000e+00 +-9.337200000000000e-01 +-5.659000000000000e-01 +-1.621800000000000e-01 + 2.351000000000000e-01 + 5.950700000000000e-01 + 9.059199999999999e-01 + 1.170000000000000e+00 + 1.392200000000000e+00 + 1.569400000000000e+00 + 1.689400000000000e+00 + 1.734600000000000e+00 + 1.690000000000000e+00 + 1.547700000000000e+00 + 1.309400000000000e+00 + 9.881400000000000e-01 + 6.085600000000000e-01 + 2.061200000000000e-01 +-1.785300000000000e-01 +-5.094600000000000e-01 +-7.657300000000000e-01 +-9.464100000000000e-01 +-1.066600000000000e+00 +-1.146300000000000e+00 +-1.198800000000000e+00 +-1.224100000000000e+00 +-1.212400000000000e+00 +-1.151400000000000e+00 +-1.035300000000000e+00 +-8.681500000000000e-01 +-6.617400000000000e-01 +-4.313000000000000e-01 +-1.915300000000000e-01 + 4.464500000000000e-02 + 2.657200000000000e-01 + 4.612200000000000e-01 + 6.223900000000000e-01 + 7.434400000000000e-01 + 8.221300000000000e-01 + 8.592400000000000e-01 + 8.572600000000000e-01 + 8.195000000000000e-01 + 7.501900000000000e-01 + 6.551399999999999e-01 + 5.420300000000000e-01 + 4.195900000000000e-01 + 2.958100000000000e-01 + 1.760500000000000e-01 + 6.210000000000000e-02 +-4.705300000000000e-02 +-1.529000000000000e-01 +-2.543700000000000e-01 +-3.457400000000000e-01 +-4.170000000000000e-01 +-4.575300000000000e-01 +-4.620100000000000e-01 +-4.355700000000000e-01 +-3.946700000000000e-01 +-3.617300000000000e-01 +-3.549900000000000e-01 +-3.785600000000000e-01 +-4.183600000000000e-01 +-4.467000000000000e-01 +-4.338100000000000e-01 +-3.602300000000000e-01 +-2.240900000000000e-01 +-4.041200000000000e-02 + 1.653400000000000e-01 + 3.650300000000000e-01 + 5.332600000000000e-01 + 6.501100000000000e-01 + 7.031100000000000e-01 + 6.897700000000000e-01 + 6.194499999999999e-01 + 5.115800000000000e-01 + 3.885400000000000e-01 + 2.662500000000000e-01 + 1.482100000000000e-01 + 2.804800000000000e-02 +-1.001400000000000e-01 +-2.308600000000000e-01 +-3.444500000000000e-01 +-4.162500000000000e-01 +-4.322600000000000e-01 +-4.003700000000000e-01 +-3.476800000000000e-01 +-3.045400000000000e-01 +-2.856800000000000e-01 +-2.818200000000000e-01 +-2.683900000000000e-01 +-2.255100000000000e-01 +-1.548100000000000e-01 +-8.057499999999999e-02 +-3.372200000000000e-02 +-2.961900000000000e-02 +-5.540600000000000e-02 +-7.578200000000000e-02 +-5.329700000000000e-02 + 3.056300000000000e-02 + 1.669500000000000e-01 + 3.277300000000000e-01 + 4.824900000000000e-01 + 6.120700000000000e-01 + 7.105300000000000e-01 + 7.771300000000000e-01 + 8.068500000000000e-01 + 7.876600000000000e-01 + 7.063100000000000e-01 + 5.573600000000000e-01 + 3.482500000000000e-01 + 9.715600000000001e-02 +-1.738400000000000e-01 +-4.447500000000000e-01 +-6.989200000000000e-01 +-9.205800000000000e-01 +-1.092500000000000e+00 +-1.197700000000000e+00 +-1.224500000000000e+00 +-1.172100000000000e+00 +-1.052300000000000e+00 +-8.861200000000000e-01 +-6.955500000000000e-01 +-4.957900000000000e-01 +-2.902500000000000e-01 +-7.105700000000000e-02 + 1.749000000000000e-01 + 4.562100000000000e-01 + 7.674200000000000e-01 + 1.084000000000000e+00 + 1.365800000000000e+00 + 1.567800000000000e+00 + 1.655200000000000e+00 + 1.613700000000000e+00 + 1.451600000000000e+00 + 1.192000000000000e+00 + 8.618900000000000e-01 + 4.854900000000000e-01 + 8.472200000000001e-02 +-3.149400000000000e-01 +-6.809500000000001e-01 +-9.774900000000000e-01 +-1.176000000000000e+00 +-1.266200000000000e+00 +-1.259000000000000e+00 +-1.181300000000000e+00 +-1.063600000000000e+00 +-9.300900000000000e-01 +-7.942500000000000e-01 +-6.604600000000000e-01 +-5.271500000000000e-01 +-3.884600000000000e-01 +-2.351700000000000e-01 +-5.786900000000000e-02 + 1.462000000000000e-01 + 3.657900000000000e-01 + 5.736800000000000e-01 + 7.339000000000000e-01 + 8.158300000000001e-01 + 8.075500000000000e-01 + 7.207900000000000e-01 + 5.851499999999999e-01 + 4.359500000000000e-01 + 3.030500000000000e-01 + 2.050800000000000e-01 + 1.488500000000000e-01 + 1.306500000000000e-01 + 1.375400000000000e-01 + 1.502000000000000e-01 + 1.495100000000000e-01 + 1.258400000000000e-01 + 8.545400000000000e-02 + 4.764300000000000e-02 + 3.184900000000000e-02 + 4.187800000000000e-02 + 5.866000000000000e-02 + 4.847900000000000e-02 +-1.695600000000000e-02 +-1.414100000000000e-01 +-2.990100000000000e-01 +-4.468300000000000e-01 +-5.468300000000000e-01 +-5.828400000000000e-01 +-5.628500000000000e-01 +-5.076800000000000e-01 +-4.360400000000000e-01 +-3.561500000000000e-01 +-2.674200000000000e-01 +-1.672800000000000e-01 +-5.645000000000000e-02 + 6.055100000000000e-02 + 1.770300000000000e-01 + 2.837900000000000e-01 + 3.665900000000000e-01 + 4.054700000000000e-01 + 3.807900000000000e-01 + 2.850000000000000e-01 + 1.329300000000000e-01 +-3.808300000000000e-02 +-1.812100000000000e-01 +-2.595300000000000e-01 +-2.601200000000000e-01 +-1.942500000000000e-01 +-8.506300000000000e-02 + 4.714800000000000e-02 + 1.913500000000000e-01 + 3.402900000000000e-01 + 4.795000000000000e-01 + 5.818500000000000e-01 + 6.139500000000000e-01 + 5.520400000000000e-01 + 3.968500000000000e-01 + 1.775800000000000e-01 +-5.824600000000000e-02 +-2.632500000000000e-01 +-4.064900000000000e-01 +-4.794100000000000e-01 +-4.901700000000000e-01 +-4.518900000000000e-01 +-3.733300000000000e-01 +-2.579300000000000e-01 +-1.110700000000000e-01 + 5.042300000000000e-02 + 1.946300000000000e-01 + 2.821500000000000e-01 + 2.830400000000000e-01 + 1.942000000000000e-01 + 4.605200000000000e-02 +-1.080100000000000e-01 +-2.153700000000000e-01 +-2.481100000000000e-01 +-2.128400000000000e-01 +-1.405300000000000e-01 +-6.365100000000000e-02 + 3.203100000000000e-03 + 6.590500000000001e-02 + 1.358800000000000e-01 + 2.104200000000000e-01 + 2.649300000000000e-01 + 2.647600000000000e-01 + 1.890900000000000e-01 + 4.919700000000000e-02 +-1.131000000000000e-01 +-2.466100000000000e-01 +-3.174200000000000e-01 +-3.233600000000000e-01 +-2.880500000000000e-01 +-2.411700000000000e-01 +-1.998600000000000e-01 +-1.631200000000000e-01 +-1.195800000000000e-01 +-5.974400000000000e-02 + 1.690000000000000e-02 + 1.028200000000000e-01 + 1.870200000000000e-01 + 2.577100000000000e-01 + 3.023800000000000e-01 + 3.092900000000000e-01 + 2.734800000000000e-01 + 2.046400000000000e-01 + 1.290500000000000e-01 + 8.002700000000000e-02 + 7.993500000000001e-02 + 1.252400000000000e-01 + 1.863200000000000e-01 + 2.241300000000000e-01 + 2.133700000000000e-01 + 1.567000000000000e-01 + 8.075599999999999e-02 + 1.781100000000000e-02 +-1.340600000000000e-02 +-1.511600000000000e-02 +-3.701100000000000e-03 + 3.291000000000000e-03 +-4.261900000000000e-03 +-2.930200000000000e-02 +-7.255900000000000e-02 +-1.349800000000000e-01 +-2.147500000000000e-01 +-3.028400000000000e-01 +-3.835800000000000e-01 +-4.419400000000000e-01 +-4.725000000000000e-01 +-4.819800000000000e-01 +-4.821800000000000e-01 +-4.783800000000000e-01 +-4.623700000000000e-01 +-4.160600000000000e-01 +-3.230300000000000e-01 +-1.794100000000000e-01 + 3.358800000000000e-03 + 2.040000000000000e-01 + 3.992900000000000e-01 + 5.680900000000000e-01 + 6.910700000000000e-01 + 7.508000000000000e-01 + 7.364200000000000e-01 + 6.513800000000000e-01 + 5.172099999999999e-01 + 3.675500000000000e-01 + 2.340000000000000e-01 + 1.328500000000000e-01 + 6.212900000000000e-02 + 1.090100000000000e-02 +-2.742900000000000e-02 +-4.903000000000000e-02 +-4.580400000000000e-02 +-1.796400000000000e-02 + 1.876200000000000e-02 + 3.878400000000000e-02 + 2.167500000000000e-02 +-3.523300000000000e-02 +-1.168000000000000e-01 +-2.023800000000000e-01 +-2.801100000000000e-01 +-3.513200000000000e-01 +-4.220800000000000e-01 +-4.898500000000000e-01 +-5.377700000000000e-01 +-5.425500000000000e-01 +-4.907100000000000e-01 +-3.906000000000000e-01 +-2.705800000000000e-01 +-1.640600000000000e-01 +-9.118800000000001e-02 +-4.895400000000000e-02 +-1.459600000000000e-02 + 4.111400000000000e-02 + 1.387000000000000e-01 + 2.796500000000000e-01 + 4.438200000000000e-01 + 5.943900000000000e-01 + 6.896099999999999e-01 + 6.989400000000000e-01 + 6.181900000000000e-01 + 4.752600000000000e-01 + 3.201800000000000e-01 + 2.009800000000000e-01 + 1.377200000000000e-01 + 1.111200000000000e-01 + 7.543400000000000e-02 +-1.070100000000000e-02 +-1.547300000000000e-01 +-3.221100000000000e-01 +-4.558400000000000e-01 +-5.107500000000000e-01 +-4.794800000000000e-01 +-3.934900000000000e-01 +-2.999900000000000e-01 +-2.324400000000000e-01 +-1.947100000000000e-01 +-1.674800000000000e-01 +-1.286600000000000e-01 +-7.126900000000000e-02 +-6.280700000000000e-03 + 4.874800000000000e-02 + 8.439900000000000e-02 + 1.058400000000000e-01 + 1.274300000000000e-01 + 1.611400000000000e-01 + 2.073800000000000e-01 + 2.536600000000000e-01 + 2.800900000000000e-01 + 2.678200000000000e-01 + 2.071000000000000e-01 + 1.032900000000000e-01 +-2.082900000000000e-02 +-1.290300000000000e-01 +-1.839300000000000e-01 +-1.645700000000000e-01 +-8.046300000000001e-02 + 2.809400000000000e-02 + 1.073800000000000e-01 + 1.175400000000000e-01 + 5.394300000000000e-02 +-5.111400000000000e-02 +-1.479700000000000e-01 +-1.977500000000000e-01 +-1.910600000000000e-01 +-1.464900000000000e-01 +-9.262300000000000e-02 +-4.836600000000000e-02 +-1.527600000000000e-02 + 1.504700000000000e-02 + 4.769300000000000e-02 + 7.772900000000001e-02 + 9.547700000000001e-02 + 9.807399999999999e-02 + 9.603000000000000e-02 + 1.078400000000000e-01 + 1.459800000000000e-01 + 2.052700000000000e-01 + 2.629800000000000e-01 + 2.912400000000000e-01 + 2.727700000000000e-01 + 2.088400000000000e-01 + 1.146400000000000e-01 + 6.768600000000000e-03 +-1.071300000000000e-01 +-2.288600000000000e-01 +-3.607100000000000e-01 +-4.945900000000000e-01 +-6.078000000000000e-01 +-6.694700000000000e-01 +-6.539800000000000e-01 +-5.537500000000000e-01 +-3.841800000000000e-01 +-1.783600000000000e-01 + 2.519200000000000e-02 + 1.956700000000000e-01 + 3.180900000000000e-01 + 3.935000000000000e-01 + 4.322900000000000e-01 + 4.449700000000000e-01 + 4.355900000000000e-01 + 4.014500000000000e-01 + 3.390800000000000e-01 + 2.526600000000000e-01 + 1.590200000000000e-01 + 8.514600000000000e-02 + 5.812300000000000e-02 + 9.235699999999999e-02 + 1.808500000000000e-01 + 2.954300000000000e-01 + 3.962400000000000e-01 + 4.457600000000000e-01 + 4.212100000000000e-01 + 3.199800000000000e-01 + 1.575000000000000e-01 +-4.021200000000000e-02 +-2.449400000000000e-01 +-4.322500000000000e-01 +-5.839800000000001e-01 +-6.882700000000000e-01 +-7.388100000000000e-01 +-7.346400000000000e-01 +-6.807000000000000e-01 +-5.878800000000000e-01 +-4.718000000000000e-01 +-3.500600000000000e-01 +-2.387700000000000e-01 +-1.498600000000000e-01 +-8.955100000000001e-02 +-5.783900000000000e-02 +-4.772800000000000e-02 +-4.442600000000000e-02 +-2.613200000000000e-02 + 3.112500000000000e-02 + 1.439500000000000e-01 + 3.106800000000000e-01 + 5.055500000000001e-01 + 6.839499999999999e-01 + 7.989300000000000e-01 + 8.219800000000000e-01 + 7.564300000000000e-01 + 6.350200000000000e-01 + 5.020900000000000e-01 + 3.905700000000000e-01 + 3.071000000000000e-01 + 2.337800000000000e-01 + 1.438200000000000e-01 + 2.053600000000000e-02 +-1.320000000000000e-01 +-2.914300000000000e-01 +-4.286000000000000e-01 +-5.198600000000000e-01 +-5.539100000000000e-01 +-5.325299999999999e-01 +-4.681900000000000e-01 +-3.809300000000000e-01 +-2.937900000000000e-01 +-2.255700000000000e-01 +-1.823300000000000e-01 +-1.530900000000000e-01 +-1.150500000000000e-01 +-4.832500000000000e-02 + 4.825800000000000e-02 + 1.515900000000000e-01 + 2.249900000000000e-01 + 2.397000000000000e-01 + 1.929600000000000e-01 + 1.097900000000000e-01 + 2.665500000000000e-02 +-3.142900000000000e-02 +-6.413000000000001e-02 +-9.050700000000000e-02 +-1.302600000000000e-01 +-1.863000000000000e-01 +-2.415400000000000e-01 +-2.710100000000000e-01 +-2.589400000000000e-01 +-2.075900000000000e-01 +-1.324700000000000e-01 +-4.985900000000000e-02 + 3.247000000000000e-02 + 1.147700000000000e-01 + 1.978500000000000e-01 + 2.770300000000000e-01 + 3.432100000000000e-01 + 3.891700000000000e-01 + 4.137100000000000e-01 + 4.193000000000000e-01 + 4.057200000000000e-01 + 3.676500000000000e-01 + 3.009700000000000e-01 + 2.134100000000000e-01 + 1.287900000000000e-01 + 7.718400000000000e-02 + 7.464899999999999e-02 + 1.071000000000000e-01 + 1.326900000000000e-01 + 1.046500000000000e-01 + 7.218900000000000e-04 +-1.612200000000000e-01 +-3.328000000000000e-01 +-4.632000000000000e-01 +-5.257300000000000e-01 +-5.250600000000000e-01 +-4.830500000000000e-01 +-4.176300000000000e-01 +-3.332900000000000e-01 +-2.297500000000000e-01 +-1.183900000000000e-01 +-2.844500000000000e-02 + 6.858400000000000e-03 +-2.453200000000000e-02 +-9.756600000000000e-02 +-1.593300000000000e-01 +-1.603900000000000e-01 +-8.705800000000000e-02 + 2.924800000000000e-02 + 1.332200000000000e-01 + 1.826600000000000e-01 + 1.747700000000000e-01 + 1.436100000000000e-01 + 1.324300000000000e-01 + 1.625100000000000e-01 + 2.216600000000000e-01 + 2.783600000000000e-01 + 3.080200000000000e-01 + 3.094100000000000e-01 + 2.990700000000000e-01 + 2.904200000000000e-01 + 2.766500000000000e-01 + 2.326800000000000e-01 + 1.353500000000000e-01 +-1.408000000000000e-02 +-1.831900000000000e-01 +-3.226900000000000e-01 +-3.914400000000000e-01 +-3.744000000000000e-01 +-2.830300000000000e-01 +-1.419000000000000e-01 + 2.506500000000000e-02 + 1.980000000000000e-01 + 3.548700000000000e-01 + 4.662000000000000e-01 + 5.005700000000000e-01 + 4.401900000000000e-01 + 2.949900000000000e-01 + 1.022700000000000e-01 +-9.088100000000000e-02 +-2.512400000000000e-01 +-3.727100000000000e-01 +-4.696600000000000e-01 +-5.563300000000000e-01 +-6.289800000000000e-01 +-6.654400000000000e-01 +-6.425800000000000e-01 +-5.579800000000000e-01 +-4.376700000000000e-01 +-3.223600000000000e-01 +-2.409900000000000e-01 +-1.905800000000000e-01 +-1.374800000000000e-01 +-3.990800000000000e-02 + 1.233400000000000e-01 + 3.372600000000000e-01 + 5.578000000000000e-01 + 7.356200000000001e-01 + 8.400500000000000e-01 + 8.680600000000001e-01 + 8.350300000000000e-01 + 7.566800000000000e-01 + 6.364100000000000e-01 + 4.669700000000000e-01 + 2.444200000000000e-01 +-1.639700000000000e-02 +-2.763300000000000e-01 +-4.813500000000000e-01 +-5.826100000000000e-01 +-5.568400000000000e-01 +-4.171000000000000e-01 +-2.087600000000000e-01 + 7.047600000000000e-03 + 1.749800000000000e-01 + 2.630300000000000e-01 + 2.691700000000000e-01 + 2.155500000000000e-01 + 1.340200000000000e-01 + 5.050000000000000e-02 +-2.454100000000000e-02 +-9.579200000000000e-02 +-1.749000000000000e-01 +-2.699800000000000e-01 +-3.789600000000000e-01 +-4.894200000000000e-01 +-5.837000000000000e-01 +-6.452200000000000e-01 +-6.627100000000000e-01 +-6.313800000000001e-01 +-5.526100000000000e-01 +-4.333800000000000e-01 +-2.857700000000000e-01 +-1.250500000000000e-01 + 3.395300000000000e-02 + 1.812400000000000e-01 + 3.137300000000000e-01 + 4.330400000000000e-01 + 5.396900000000000e-01 + 6.274999999999999e-01 + 6.825900000000000e-01 + 6.890700000000000e-01 + 6.390000000000000e-01 + 5.410300000000000e-01 + 4.218600000000000e-01 + 3.184400000000000e-01 + 2.632600000000000e-01 + 2.693400000000000e-01 + 3.221000000000000e-01 + 3.826200000000000e-01 + 4.022100000000000e-01 + 3.425000000000000e-01 + 1.923800000000000e-01 +-2.621800000000000e-02 +-2.671600000000000e-01 +-4.796400000000000e-01 +-6.286600000000000e-01 +-7.059500000000000e-01 +-7.258700000000000e-01 +-7.097900000000000e-01 +-6.694500000000000e-01 +-6.001500000000000e-01 +-4.880800000000000e-01 +-3.262500000000000e-01 +-1.278200000000000e-01 + 7.286800000000000e-02 + 2.325400000000000e-01 + 3.171800000000000e-01 + 3.150000000000000e-01 + 2.378800000000000e-01 + 1.126000000000000e-01 +-3.071600000000000e-02 +-1.658000000000000e-01 +-2.714900000000000e-01 +-3.306500000000000e-01 +-3.312600000000000e-01 +-2.709300000000000e-01 +-1.608300000000000e-01 +-2.453000000000000e-02 + 1.100800000000000e-01 + 2.215900000000000e-01 + 3.024200000000000e-01 + 3.584000000000000e-01 + 4.019000000000000e-01 + 4.435000000000000e-01 + 4.873100000000000e-01 + 5.309900000000000e-01 + 5.678900000000000e-01 + 5.882600000000000e-01 + 5.790400000000000e-01 + 5.250899999999999e-01 + 4.141700000000000e-01 + 2.450300000000000e-01 + 3.348200000000000e-02 +-1.889600000000000e-01 +-3.854300000000000e-01 +-5.283900000000000e-01 +-6.102900000000000e-01 +-6.441100000000000e-01 +-6.532800000000000e-01 +-6.574200000000000e-01 +-6.620600000000000e-01 +-6.572400000000000e-01 +-6.244100000000000e-01 +-5.465500000000000e-01 +-4.161500000000000e-01 +-2.384000000000000e-01 +-2.999400000000000e-02 + 1.844200000000000e-01 + 3.772400000000000e-01 + 5.238900000000000e-01 + 6.092100000000000e-01 + 6.324000000000000e-01 + 6.077300000000000e-01 + 5.592100000000000e-01 + 5.107300000000000e-01 + 4.758700000000000e-01 + 4.524000000000000e-01 + 4.245600000000000e-01 + 3.721400000000000e-01 + 2.817700000000000e-01 + 1.548800000000000e-01 + 8.381400000000001e-03 +-1.323100000000000e-01 +-2.445300000000000e-01 +-3.184400000000000e-01 +-3.609100000000000e-01 +-3.909600000000000e-01 +-4.289100000000000e-01 +-4.848000000000000e-01 +-5.524700000000000e-01 +-6.127700000000000e-01 +-6.440200000000000e-01 +-6.333400000000000e-01 +-5.817700000000000e-01 +-5.003900000000000e-01 +-4.007700000000000e-01 +-2.872600000000000e-01 +-1.571300000000000e-01 +-8.460600000000000e-03 + 1.508900000000000e-01 + 3.014500000000000e-01 + 4.205500000000000e-01 + 4.958800000000000e-01 + 5.342100000000000e-01 + 5.574400000000000e-01 + 5.874800000000000e-01 + 6.299600000000000e-01 + 6.690100000000000e-01 + 6.779900000000000e-01 + 6.396500000000001e-01 + 5.616500000000000e-01 + 4.755800000000000e-01 + 4.186800000000000e-01 + 4.094500000000000e-01 + 4.331800000000000e-01 + 4.469500000000000e-01 + 4.015000000000000e-01 + 2.665900000000000e-01 + 4.532200000000000e-02 +-2.294800000000000e-01 +-5.122800000000000e-01 +-7.640900000000000e-01 +-9.635500000000000e-01 +-1.106500000000000e+00 +-1.197700000000000e+00 +-1.242300000000000e+00 +-1.240700000000000e+00 +-1.189600000000000e+00 +-1.084600000000000e+00 +-9.244900000000000e-01 +-7.135000000000000e-01 +-4.619200000000000e-01 +-1.851000000000000e-01 + 9.939800000000000e-02 + 3.752500000000000e-01 + 6.293500000000000e-01 + 8.508500000000000e-01 + 1.028100000000000e+00 + 1.146900000000000e+00 + 1.192600000000000e+00 + 1.158600000000000e+00 + 1.054100000000000e+00 + 9.064700000000000e-01 + 7.531700000000000e-01 + 6.259500000000000e-01 + 5.365400000000000e-01 + 4.721500000000000e-01 + 4.039900000000000e-01 + 3.030800000000000e-01 + 1.536100000000000e-01 +-4.325900000000000e-02 +-2.744000000000000e-01 +-5.220500000000000e-01 +-7.670200000000000e-01 +-9.872000000000000e-01 +-1.156200000000000e+00 +-1.247800000000000e+00 +-1.245600000000000e+00 +-1.151400000000000e+00 +-9.859300000000000e-01 +-7.783600000000001e-01 +-5.531199999999999e-01 +-3.224600000000000e-01 +-8.979700000000000e-02 + 1.407000000000000e-01 + 3.580900000000000e-01 + 5.485500000000000e-01 + 7.061100000000000e-01 + 8.392800000000000e-01 + 9.650600000000000e-01 + 1.091900000000000e+00 + 1.204400000000000e+00 + 1.263000000000000e+00 + 1.223300000000000e+00 + 1.062500000000000e+00 + 7.963400000000000e-01 + 4.728200000000000e-01 + 1.474700000000000e-01 +-1.437200000000000e-01 +-3.958300000000000e-01 +-6.254300000000000e-01 +-8.489800000000000e-01 +-1.065400000000000e+00 +-1.253400000000000e+00 +-1.382900000000000e+00 +-1.429400000000000e+00 +-1.382100000000000e+00 +-1.243500000000000e+00 +-1.025900000000000e+00 +-7.485700000000000e-01 +-4.384000000000000e-01 +-1.277100000000000e-01 + 1.524600000000000e-01 + 3.819700000000000e-01 + 5.572300000000000e-01 + 6.879500000000000e-01 + 7.869000000000000e-01 + 8.607100000000000e-01 + 9.087100000000000e-01 + 9.297700000000000e-01 + 9.297299999999999e-01 + 9.213700000000000e-01 + 9.159300000000000e-01 + 9.130900000000000e-01 + 8.988000000000000e-01 + 8.536100000000000e-01 + 7.650000000000000e-01 + 6.335400000000000e-01 + 4.682600000000000e-01 + 2.764400000000000e-01 + 5.824000000000000e-02 +-1.881800000000000e-01 +-4.557000000000000e-01 +-7.227000000000000e-01 +-9.604200000000001e-01 +-1.148500000000000e+00 +-1.285700000000000e+00 +-1.384900000000000e+00 +-1.454100000000000e+00 +-1.480400000000000e+00 +-1.430200000000000e+00 +-1.270200000000000e+00 +-9.946900000000000e-01 +-6.373600000000000e-01 +-2.587800000000000e-01 + 8.336200000000001e-02 + 3.594700000000000e-01 + 5.721900000000000e-01 + 7.398900000000000e-01 + 8.753400000000000e-01 + 9.774000000000000e-01 + 1.039500000000000e+00 + 1.063500000000000e+00 + 1.062700000000000e+00 + 1.049400000000000e+00 + 1.018800000000000e+00 + 9.456599999999999e-01 + 8.013200000000000e-01 + 5.794300000000000e-01 + 3.093800000000000e-01 + 4.417100000000000e-02 +-1.702200000000000e-01 +-3.208900000000000e-01 +-4.292400000000000e-01 +-5.263400000000000e-01 +-6.222700000000000e-01 +-6.945500000000000e-01 +-7.050000000000000e-01 +-6.317300000000000e-01 +-4.905000000000000e-01 +-3.284700000000000e-01 +-1.953200000000000e-01 +-1.141400000000000e-01 +-7.329900000000000e-02 +-4.313600000000000e-02 +-1.587900000000000e-03 + 5.184800000000000e-02 + 1.025500000000000e-01 + 1.382700000000000e-01 + 1.599600000000000e-01 + 1.763100000000000e-01 + 1.884300000000000e-01 + 1.811600000000000e-01 + 1.318800000000000e-01 + 3.173500000000000e-02 +-9.858100000000000e-02 +-2.140200000000000e-01 +-2.708100000000000e-01 +-2.551400000000000e-01 +-1.935800000000000e-01 +-1.365400000000000e-01 +-1.256900000000000e-01 +-1.679400000000000e-01 +-2.333700000000000e-01 +-2.771400000000000e-01 +-2.688400000000000e-01 +-2.090600000000000e-01 +-1.237900000000000e-01 +-4.294300000000000e-02 + 2.028700000000000e-02 + 7.586700000000000e-02 + 1.469600000000000e-01 + 2.527200000000000e-01 + 3.960200000000000e-01 + 5.626300000000000e-01 + 7.294700000000000e-01 + 8.740900000000000e-01 + 9.792100000000000e-01 + 1.031600000000000e+00 + 1.019800000000000e+00 + 9.345000000000000e-01 + 7.739500000000000e-01 + 5.482500000000000e-01 + 2.789100000000000e-01 +-8.847799999999999e-03 +-2.971000000000000e-01 +-5.817600000000001e-01 +-8.687800000000000e-01 +-1.160900000000000e+00 +-1.442900000000000e+00 +-1.676700000000000e+00 +-1.811300000000000e+00 +-1.805200000000000e+00 +-1.646700000000000e+00 +-1.361500000000000e+00 +-9.998400000000000e-01 +-6.132400000000000e-01 +-2.341300000000000e-01 + 1.288600000000000e-01 + 4.787600000000000e-01 + 8.121000000000000e-01 + 1.109000000000000e+00 + 1.339300000000000e+00 + 1.479200000000000e+00 + 1.526200000000000e+00 + 1.501100000000000e+00 + 1.435000000000000e+00 + 1.351100000000000e+00 + 1.253500000000000e+00 + 1.128700000000000e+00 + 9.572200000000000e-01 + 7.265600000000000e-01 + 4.381700000000000e-01 + 1.073600000000000e-01 +-2.406200000000000e-01 +-5.752100000000000e-01 +-8.654500000000001e-01 +-1.086700000000000e+00 +-1.227900000000000e+00 +-1.295700000000000e+00 +-1.309500000000000e+00 +-1.289000000000000e+00 +-1.241200000000000e+00 +-1.156700000000000e+00 +-1.020700000000000e+00 +-8.302000000000000e-01 +-6.065400000000000e-01 +-3.898100000000000e-01 +-2.177400000000000e-01 +-1.021700000000000e-01 +-2.022100000000000e-02 + 7.240099999999999e-02 + 2.140700000000000e-01 + 4.138700000000000e-01 + 6.474200000000000e-01 + 8.731300000000000e-01 + 1.056500000000000e+00 + 1.185400000000000e+00 + 1.267400000000000e+00 + 1.313700000000000e+00 + 1.323600000000000e+00 + 1.280700000000000e+00 + 1.162700000000000e+00 + 9.578200000000000e-01 + 6.755000000000000e-01 + 3.454800000000000e-01 + 7.456700000000000e-03 +-3.022300000000000e-01 +-5.598700000000000e-01 +-7.569800000000000e-01 +-8.974800000000001e-01 +-9.924900000000000e-01 +-1.054800000000000e+00 +-1.094000000000000e+00 +-1.113600000000000e+00 +-1.109600000000000e+00 +-1.073000000000000e+00 +-9.946199999999999e-01 +-8.706300000000000e-01 +-7.066300000000000e-01 +-5.177400000000000e-01 +-3.244000000000000e-01 +-1.449200000000000e-01 + 1.230300000000000e-02 + 1.530200000000000e-01 + 2.948800000000000e-01 + 4.578200000000000e-01 + 6.508000000000000e-01 + 8.618400000000001e-01 + 1.058300000000000e+00 + 1.199200000000000e+00 + 1.253600000000000e+00 + 1.214800000000000e+00 + 1.100200000000000e+00 + 9.377900000000000e-01 + 7.484499999999999e-01 + 5.361500000000000e-01 + 2.943000000000000e-01 + 2.275100000000000e-02 +-2.579600000000000e-01 +-5.073800000000001e-01 +-6.824300000000000e-01 +-7.604700000000000e-01 +-7.524700000000000e-01 +-6.973300000000000e-01 +-6.410600000000000e-01 +-6.140400000000000e-01 +-6.193700000000000e-01 +-6.366300000000000e-01 +-6.354500000000000e-01 +-5.893800000000000e-01 +-4.843500000000000e-01 +-3.215800000000000e-01 +-1.178400000000000e-01 + 9.640899999999999e-02 + 2.833100000000000e-01 + 4.101500000000000e-01 + 4.642800000000000e-01 + 4.614700000000000e-01 + 4.395200000000000e-01 + 4.376400000000000e-01 + 4.724700000000000e-01 + 5.261400000000001e-01 + 5.550500000000000e-01 + 5.146900000000000e-01 + 3.849500000000000e-01 + 1.805000000000000e-01 +-5.887400000000000e-02 +-2.893500000000000e-01 +-4.807000000000000e-01 +-6.203800000000000e-01 +-7.051600000000000e-01 +-7.305700000000001e-01 +-6.879600000000000e-01 +-5.714399999999999e-01 +-3.879800000000000e-01 +-1.612200000000000e-01 + 7.507000000000000e-02 + 2.900300000000000e-01 + 4.663500000000000e-01 + 6.017800000000000e-01 + 7.017400000000000e-01 + 7.690100000000000e-01 + 7.980600000000000e-01 + 7.772700000000000e-01 + 6.967000000000000e-01 + 5.561000000000000e-01 + 3.683800000000000e-01 + 1.572800000000000e-01 +-4.888300000000000e-02 +-2.245800000000000e-01 +-3.533800000000000e-01 +-4.321500000000000e-01 +-4.723200000000000e-01 +-4.971800000000000e-01 +-5.341600000000000e-01 +-6.032600000000000e-01 +-7.052900000000000e-01 +-8.161700000000000e-01 +-8.921600000000000e-01 +-8.863600000000000e-01 +-7.703300000000000e-01 +-5.499600000000000e-01 +-2.662200000000000e-01 + 2.126300000000000e-02 + 2.599600000000000e-01 + 4.254800000000000e-01 + 5.261600000000000e-01 + 5.893500000000000e-01 + 6.390000000000000e-01 + 6.795700000000000e-01 + 6.962500000000000e-01 + 6.698400000000000e-01 + 5.944199999999999e-01 + 4.846900000000000e-01 + 3.685200000000000e-01 + 2.709700000000000e-01 + 2.023700000000000e-01 + 1.579800000000000e-01 + 1.272500000000000e-01 + 1.033900000000000e-01 + 8.513400000000000e-02 + 7.115600000000000e-02 + 5.432000000000000e-02 + 2.311800000000000e-02 +-3.018200000000000e-02 +-1.025700000000000e-01 +-1.824100000000000e-01 +-2.603000000000000e-01 +-3.390700000000000e-01 +-4.320900000000000e-01 +-5.483600000000000e-01 +-6.751500000000000e-01 +-7.742700000000000e-01 +-7.987700000000000e-01 +-7.210200000000000e-01 +-5.523900000000000e-01 +-3.388100000000000e-01 +-1.340800000000000e-01 + 3.038000000000000e-02 + 1.576600000000000e-01 + 2.715600000000000e-01 + 3.889300000000000e-01 + 5.006000000000000e-01 + 5.758700000000000e-01 + 5.861000000000000e-01 + 5.280899999999999e-01 + 4.281400000000000e-01 + 3.237100000000000e-01 + 2.375600000000000e-01 + 1.648000000000000e-01 + 8.290200000000000e-02 +-2.374400000000000e-02 +-1.439800000000000e-01 +-2.405400000000000e-01 +-2.712100000000000e-01 +-2.161200000000000e-01 +-9.263700000000000e-02 + 5.121800000000000e-02 + 1.602600000000000e-01 + 1.985200000000000e-01 + 1.646100000000000e-01 + 8.986400000000000e-02 + 2.168600000000000e-02 + 7.882900000000000e-04 + 4.217700000000000e-02 + 1.280500000000000e-01 + 2.159700000000000e-01 + 2.592800000000000e-01 + 2.299900000000000e-01 + 1.320200000000000e-01 +-3.100900000000000e-03 +-1.357800000000000e-01 +-2.407200000000000e-01 +-3.174800000000000e-01 +-3.827400000000000e-01 +-4.510800000000000e-01 +-5.196900000000000e-01 +-5.687700000000000e-01 +-5.769100000000000e-01 +-5.383800000000000e-01 +-4.677200000000000e-01 +-3.875000000000000e-01 +-3.091800000000000e-01 +-2.230000000000000e-01 +-1.056300000000000e-01 + 5.983800000000000e-02 + 2.668900000000000e-01 + 4.845500000000000e-01 + 6.725500000000000e-01 + 8.010100000000000e-01 + 8.611000000000000e-01 + 8.614500000000000e-01 + 8.166500000000000e-01 + 7.383999999999999e-01 + 6.348400000000000e-01 + 5.146800000000000e-01 + 3.886800000000000e-01 + 2.647200000000000e-01 + 1.409600000000000e-01 + 4.699100000000000e-03 +-1.591200000000000e-01 +-3.546400000000000e-01 +-5.665700000000000e-01 +-7.630400000000001e-01 +-9.080800000000000e-01 +-9.752400000000000e-01 +-9.548500000000000e-01 +-8.533600000000000e-01 +-6.892100000000000e-01 +-4.895700000000000e-01 +-2.878100000000000e-01 +-1.176500000000000e-01 +-2.297600000000000e-03 + 5.719900000000000e-02 + 8.527899999999999e-02 + 1.212700000000000e-01 + 1.983200000000000e-01 + 3.239500000000000e-01 + 4.743900000000000e-01 + 6.060900000000000e-01 + 6.766300000000000e-01 + 6.623200000000000e-01 + 5.641000000000000e-01 + 4.028400000000000e-01 + 2.107100000000000e-01 + 2.439200000000000e-02 +-1.203100000000000e-01 +-1.954900000000000e-01 +-1.903800000000000e-01 +-1.177000000000000e-01 +-9.971100000000000e-03 + 9.509800000000000e-02 + 1.723500000000000e-01 + 2.178500000000000e-01 + 2.420000000000000e-01 + 2.528100000000000e-01 + 2.432200000000000e-01 + 1.938800000000000e-01 + 8.979300000000000e-02 +-6.226200000000000e-02 +-2.307000000000000e-01 +-3.741400000000000e-01 +-4.640700000000000e-01 +-4.984300000000000e-01 +-4.966900000000000e-01 +-4.814300000000000e-01 +-4.611100000000000e-01 +-4.266100000000000e-01 +-3.620500000000000e-01 +-2.598600000000000e-01 +-1.281300000000000e-01 + 1.321400000000000e-02 + 1.418800000000000e-01 + 2.397600000000000e-01 + 2.934900000000000e-01 + 2.932200000000000e-01 + 2.353300000000000e-01 + 1.292900000000000e-01 + 2.033200000000000e-03 +-1.075500000000000e-01 +-1.644600000000000e-01 +-1.547400000000000e-01 +-9.223400000000000e-02 +-9.051500000000001e-03 + 6.407700000000000e-02 + 1.147800000000000e-01 + 1.526700000000000e-01 + 1.986900000000000e-01 + 2.688900000000000e-01 + 3.630400000000000e-01 + 4.636600000000000e-01 + 5.436700000000000e-01 + 5.768500000000000e-01 + 5.467200000000000e-01 + 4.520300000000000e-01 + 3.083600000000000e-01 + 1.447400000000000e-01 +-5.499200000000000e-03 +-1.172400000000000e-01 +-1.834300000000000e-01 +-2.157600000000000e-01 +-2.349800000000000e-01 +-2.572200000000000e-01 +-2.860100000000000e-01 +-3.156100000000000e-01 +-3.417900000000000e-01 +-3.696100000000000e-01 +-4.103700000000000e-01 +-4.695000000000000e-01 +-5.361700000000000e-01 +-5.848500000000000e-01 +-5.894700000000000e-01 +-5.395900000000000e-01 +-4.455600000000000e-01 +-3.283800000000000e-01 +-2.028100000000000e-01 +-6.825199999999999e-02 + 8.463000000000000e-02 + 2.573200000000000e-01 + 4.313600000000000e-01 + 5.721700000000000e-01 + 6.469300000000000e-01 + 6.435400000000000e-01 + 5.768500000000000e-01 + 4.790100000000000e-01 + 3.824900000000000e-01 + 3.080500000000000e-01 + 2.630200000000000e-01 + 2.456000000000000e-01 + 2.476200000000000e-01 + 2.535500000000000e-01 + 2.412700000000000e-01 + 1.905200000000000e-01 + 9.720700000000000e-02 +-1.757100000000000e-02 +-1.152500000000000e-01 +-1.637500000000000e-01 +-1.624900000000000e-01 +-1.483000000000000e-01 +-1.740600000000000e-01 +-2.723300000000000e-01 +-4.292700000000000e-01 +-5.885800000000000e-01 +-6.837100000000000e-01 +-6.759700000000000e-01 +-5.726599999999999e-01 +-4.149200000000000e-01 +-2.475000000000000e-01 +-9.427199999999999e-02 + 4.426800000000000e-02 + 1.746000000000000e-01 + 2.922900000000000e-01 + 3.788000000000000e-01 + 4.147800000000000e-01 + 3.972100000000000e-01 + 3.453700000000000e-01 + 2.906800000000000e-01 + 2.587600000000000e-01 + 2.567700000000000e-01 + 2.733300000000000e-01 + 2.879000000000000e-01 + 2.813500000000000e-01 + 2.418400000000000e-01 + 1.666200000000000e-01 + 6.247000000000000e-02 +-5.446000000000000e-02 +-1.625000000000000e-01 +-2.435700000000000e-01 +-2.932800000000000e-01 +-3.233800000000000e-01 +-3.516700000000000e-01 +-3.846200000000000e-01 +-4.065800000000000e-01 +-3.870200000000000e-01 +-3.036800000000000e-01 +-1.650300000000000e-01 +-1.321500000000000e-02 + 9.804800000000000e-02 + 1.365000000000000e-01 + 1.114900000000000e-01 + 6.599600000000000e-02 + 4.661800000000000e-02 + 7.381200000000000e-02 + 1.335900000000000e-01 + 1.939700000000000e-01 + 2.303500000000000e-01 + 2.388400000000000e-01 + 2.294100000000000e-01 + 2.086600000000000e-01 + 1.705200000000000e-01 + 1.036600000000000e-01 + 8.225500000000000e-03 +-9.544200000000000e-02 +-1.761500000000000e-01 +-2.129000000000000e-01 +-2.097900000000000e-01 +-1.913000000000000e-01 +-1.814800000000000e-01 +-1.843300000000000e-01 +-1.817900000000000e-01 +-1.503600000000000e-01 +-8.147900000000000e-02 + 1.184400000000000e-02 + 1.066900000000000e-01 + 1.883100000000000e-01 + 2.572700000000000e-01 + 3.194200000000000e-01 + 3.689900000000000e-01 + 3.830200000000000e-01 + 3.354800000000000e-01 + 2.213900000000000e-01 + 7.022100000000001e-02 +-6.532300000000001e-02 +-1.392400000000000e-01 +-1.392100000000000e-01 +-9.036900000000000e-02 +-3.368300000000000e-02 + 3.366300000000000e-03 + 2.091600000000000e-02 + 3.631900000000000e-02 + 6.026800000000000e-02 + 8.094800000000001e-02 + 6.994300000000001e-02 + 4.770400000000000e-03 +-1.108300000000000e-01 +-2.453800000000000e-01 +-3.577000000000000e-01 +-4.199600000000000e-01 +-4.285500000000000e-01 +-3.971000000000000e-01 +-3.407600000000000e-01 +-2.664100000000000e-01 +-1.764100000000000e-01 +-7.993599999999999e-02 + 6.939200000000000e-04 + 3.730500000000000e-02 + 1.297100000000000e-02 +-6.356900000000000e-02 +-1.576100000000000e-01 +-2.237300000000000e-01 +-2.273100000000000e-01 +-1.596800000000000e-01 +-3.927300000000000e-02 + 9.954200000000001e-02 + 2.224300000000000e-01 + 3.075000000000000e-01 + 3.500000000000000e-01 + 3.596000000000000e-01 + 3.532600000000000e-01 + 3.474800000000000e-01 + 3.532300000000000e-01 + 3.753900000000000e-01 + 4.158500000000000e-01 + 4.769300000000000e-01 + 5.607000000000000e-01 + 6.630200000000001e-01 + 7.658800000000000e-01 + 8.353300000000000e-01 + 8.303300000000000e-01 + 7.200700000000000e-01 + 5.005600000000000e-01 + 1.992400000000000e-01 +-1.361400000000000e-01 +-4.576300000000000e-01 +-7.335000000000000e-01 +-9.513100000000000e-01 +-1.108900000000000e+00 +-1.202800000000000e+00 +-1.225800000000000e+00 +-1.173500000000000e+00 +-1.055100000000000e+00 +-8.958700000000001e-01 +-7.288700000000000e-01 +-5.807900000000000e-01 +-4.630300000000000e-01 +-3.734500000000000e-01 +-3.054800000000000e-01 +-2.548300000000000e-01 +-2.175700000000000e-01 +-1.821100000000000e-01 +-1.249100000000000e-01 +-1.747300000000000e-02 + 1.570600000000000e-01 + 3.890600000000000e-01 + 6.411400000000000e-01 + 8.633000000000000e-01 + 1.016100000000000e+00 + 1.087300000000000e+00 + 1.093200000000000e+00 + 1.065400000000000e+00 + 1.033400000000000e+00 + 1.011800000000000e+00 + 9.988300000000000e-01 + 9.800700000000000e-01 + 9.352600000000000e-01 + 8.441400000000000e-01 + 6.922900000000000e-01 + 4.770600000000000e-01 + 2.114200000000000e-01 +-7.784199999999999e-02 +-3.586900000000000e-01 +-6.051800000000001e-01 +-8.048800000000000e-01 +-9.581700000000000e-01 +-1.071300000000000e+00 +-1.149900000000000e+00 +-1.197600000000000e+00 +-1.219500000000000e+00 +-1.223500000000000e+00 +-1.214800000000000e+00 +-1.186500000000000e+00 +-1.114800000000000e+00 +-9.675800000000000e-01 +-7.245200000000001e-01 +-3.976300000000000e-01 +-3.590600000000000e-02 + 2.921100000000000e-01 + 5.296300000000000e-01 + 6.578600000000000e-01 + 7.005900000000000e-01 + 7.052500000000000e-01 + 7.136700000000000e-01 + 7.419800000000000e-01 + 7.806300000000000e-01 + 8.107400000000000e-01 + 8.218299999999999e-01 + 8.173600000000000e-01 + 8.055099999999999e-01 + 7.848200000000000e-01 + 7.378500000000000e-01 + 6.392900000000000e-01 + 4.736800000000000e-01 + 2.502900000000000e-01 + 4.478300000000000e-03 +-2.160400000000000e-01 +-3.720800000000000e-01 +-4.492700000000000e-01 +-4.615400000000000e-01 +-4.413800000000000e-01 +-4.236300000000000e-01 +-4.315400000000000e-01 +-4.711200000000000e-01 +-5.343300000000000e-01 +-6.068400000000000e-01 +-6.744100000000000e-01 +-7.240900000000000e-01 +-7.412000000000000e-01 +-7.064000000000000e-01 +-5.984600000000000e-01 +-4.041200000000000e-01 +-1.308100000000000e-01 + 1.861800000000000e-01 + 4.894100000000000e-01 + 7.182200000000000e-01 + 8.323700000000001e-01 + 8.278100000000000e-01 + 7.352400000000000e-01 + 6.021800000000000e-01 + 4.690700000000000e-01 + 3.535700000000000e-01 + 2.510800000000000e-01 + 1.488200000000000e-01 + 4.239000000000000e-02 +-5.707400000000000e-02 +-1.291500000000000e-01 +-1.584300000000000e-01 +-1.461000000000000e-01 +-1.110900000000000e-01 +-8.062000000000000e-02 +-7.715000000000000e-02 +-1.100900000000000e-01 +-1.759200000000000e-01 +-2.641100000000000e-01 +-3.629200000000000e-01 +-4.607500000000000e-01 +-5.438400000000000e-01 +-5.943700000000000e-01 +-5.929900000000000e-01 +-5.258000000000000e-01 +-3.916000000000000e-01 +-2.041900000000000e-01 + 1.213900000000000e-02 + 2.315000000000000e-01 + 4.341300000000000e-01 + 6.085600000000000e-01 + 7.483400000000000e-01 + 8.474200000000000e-01 + 8.987400000000000e-01 + 8.975400000000000e-01 + 8.459500000000000e-01 + 7.536900000000000e-01 + 6.323200000000000e-01 + 4.862600000000000e-01 + 3.080800000000000e-01 + 8.395200000000000e-02 +-1.914300000000000e-01 +-4.993700000000000e-01 +-7.927999999999999e-01 +-1.009300000000000e+00 +-1.097000000000000e+00 +-1.039500000000000e+00 +-8.656300000000000e-01 +-6.365800000000000e-01 +-4.194800000000000e-01 +-2.605000000000000e-01 +-1.724800000000000e-01 +-1.405600000000000e-01 +-1.387300000000000e-01 +-1.449000000000000e-01 +-1.465500000000000e-01 +-1.369500000000000e-01 +-1.090800000000000e-01 +-5.407200000000000e-02 + 3.448400000000000e-02 + 1.545400000000000e-01 + 2.936500000000000e-01 + 4.331300000000000e-01 + 5.552700000000000e-01 + 6.485600000000000e-01 + 7.080800000000000e-01 + 7.323900000000000e-01 + 7.207600000000000e-01 + 6.733400000000000e-01 + 5.938900000000000e-01 + 4.918900000000000e-01 + 3.820200000000000e-01 + 2.808100000000000e-01 + 2.024300000000000e-01 + 1.552700000000000e-01 + 1.393600000000000e-01 + 1.440700000000000e-01 + 1.469200000000000e-01 + 1.160000000000000e-01 + 1.851800000000000e-02 +-1.654200000000000e-01 +-4.294800000000000e-01 +-7.364100000000000e-01 +-1.026900000000000e+00 +-1.239700000000000e+00 +-1.334400000000000e+00 +-1.304000000000000e+00 +-1.173900000000000e+00 +-9.862400000000000e-01 +-7.817800000000000e-01 +-5.871400000000000e-01 +-4.122200000000000e-01 +-2.555000000000000e-01 +-1.107400000000000e-01 + 2.979500000000000e-02 + 1.757300000000000e-01 + 3.391300000000000e-01 + 5.312400000000000e-01 + 7.551000000000000e-01 + 9.980599999999999e-01 + 1.230000000000000e+00 + 1.410500000000000e+00 + 1.502800000000000e+00 + 1.487800000000000e+00 + 1.371100000000000e+00 + 1.178000000000000e+00 + 9.409100000000000e-01 + 6.849900000000000e-01 + 4.218000000000000e-01 + 1.525700000000000e-01 +-1.217200000000000e-01 +-3.917400000000000e-01 +-6.391400000000000e-01 +-8.441800000000000e-01 +-9.957600000000000e-01 +-1.096000000000000e+00 +-1.155900000000000e+00 +-1.184400000000000e+00 +-1.180800000000000e+00 +-1.134500000000000e+00 +-1.033100000000000e+00 +-8.730400000000000e-01 +-6.639900000000000e-01 +-4.260400000000000e-01 +-1.818800000000000e-01 + 4.893500000000000e-02 + 2.507600000000000e-01 + 4.099800000000000e-01 + 5.157100000000000e-01 + 5.649500000000000e-01 + 5.685100000000000e-01 + 5.506400000000000e-01 + 5.386800000000000e-01 + 5.475500000000000e-01 + 5.692700000000001e-01 + 5.764000000000000e-01 + 5.386700000000000e-01 + 4.423800000000000e-01 + 2.997800000000000e-01 + 1.425100000000000e-01 + 4.462100000000000e-03 +-9.371400000000001e-02 +-1.488700000000000e-01 +-1.683400000000000e-01 +-1.596400000000000e-01 +-1.256100000000000e-01 +-6.733500000000001e-02 + 1.027800000000000e-02 + 9.641500000000000e-02 + 1.775800000000000e-01 + 2.418600000000000e-01 + 2.792200000000000e-01 + 2.779400000000000e-01 + 2.230800000000000e-01 + 1.025800000000000e-01 +-8.009700000000000e-02 +-2.961200000000000e-01 +-4.949700000000000e-01 +-6.237100000000000e-01 +-6.519500000000000e-01 +-5.864200000000001e-01 +-4.650200000000000e-01 +-3.343400000000000e-01 +-2.259700000000000e-01 +-1.468600000000000e-01 +-8.759699999999999e-02 +-3.888200000000000e-02 +-2.065600000000000e-03 + 1.352200000000000e-02 + 1.506600000000000e-03 +-3.365000000000000e-02 +-7.890200000000000e-02 +-1.216900000000000e-01 +-1.559500000000000e-01 +-1.783900000000000e-01 +-1.786900000000000e-01 +-1.346800000000000e-01 +-2.055700000000000e-02 + 1.745900000000000e-01 + 4.313600000000000e-01 + 7.006599999999999e-01 + 9.225100000000001e-01 + 1.051500000000000e+00 + 1.072800000000000e+00 + 9.998899999999999e-01 + 8.587300000000000e-01 + 6.723400000000000e-01 + 4.553100000000000e-01 + 2.190300000000000e-01 +-2.154100000000000e-02 +-2.477900000000000e-01 +-4.442200000000000e-01 +-6.048300000000000e-01 +-7.317800000000000e-01 +-8.272300000000000e-01 +-8.863900000000000e-01 +-8.997100000000000e-01 +-8.633700000000000e-01 +-7.884000000000000e-01 +-6.979900000000000e-01 +-6.124300000000000e-01 +-5.328900000000000e-01 +-4.388400000000000e-01 +-3.043500000000000e-01 +-1.229100000000000e-01 + 7.871900000000000e-02 + 2.507500000000000e-01 + 3.502100000000000e-01 + 3.701600000000000e-01 + 3.466000000000000e-01 + 3.370300000000000e-01 + 3.847300000000000e-01 + 4.932300000000000e-01 + 6.276600000000000e-01 + 7.399500000000000e-01 + 7.983400000000000e-01 + 8.002100000000000e-01 + 7.614600000000000e-01 + 6.941700000000000e-01 + 5.923400000000000e-01 + 4.377100000000000e-01 + 2.211500000000000e-01 +-3.838700000000000e-02 +-2.938400000000000e-01 +-4.914600000000000e-01 +-6.000500000000000e-01 +-6.277300000000000e-01 +-6.143500000000000e-01 +-6.043100000000000e-01 +-6.178000000000000e-01 +-6.396400000000000e-01 +-6.323800000000001e-01 +-5.644200000000000e-01 +-4.340400000000000e-01 +-2.735700000000000e-01 +-1.314300000000000e-01 +-4.410500000000000e-02 +-1.610300000000000e-02 +-1.975600000000000e-02 +-1.377900000000000e-02 + 3.237200000000000e-02 + 1.235000000000000e-01 + 2.406400000000000e-01 + 3.558800000000000e-01 + 4.481700000000000e-01 + 5.097600000000000e-01 + 5.412200000000000e-01 + 5.419500000000000e-01 + 5.056400000000000e-01 + 4.251500000000000e-01 + 3.027300000000000e-01 + 1.566100000000000e-01 + 1.718500000000000e-02 +-8.589900000000000e-02 +-1.379000000000000e-01 +-1.450200000000000e-01 +-1.288100000000000e-01 +-1.132600000000000e-01 +-1.128800000000000e-01 +-1.284200000000000e-01 +-1.505400000000000e-01 +-1.669300000000000e-01 +-1.676300000000000e-01 +-1.466400000000000e-01 +-1.017400000000000e-01 +-3.532700000000000e-02 + 4.324900000000000e-02 + 1.163000000000000e-01 + 1.603800000000000e-01 + 1.534500000000000e-01 + 8.374200000000000e-02 +-4.418000000000000e-02 +-2.092000000000000e-01 +-3.791500000000000e-01 +-5.190500000000000e-01 +-5.991100000000000e-01 +-6.004300000000000e-01 +-5.184100000000000e-01 +-3.640700000000000e-01 +-1.629600000000000e-01 + 4.885400000000000e-02 + 2.320900000000000e-01 + 3.537400000000000e-01 + 3.965700000000000e-01 + 3.655800000000000e-01 + 2.886900000000000e-01 + 2.096900000000000e-01 + 1.740800000000000e-01 + 2.113000000000000e-01 + 3.204100000000000e-01 + 4.668900000000000e-01 + 5.946900000000001e-01 + 6.500899999999999e-01 + 6.061900000000000e-01 + 4.750100000000000e-01 + 2.995500000000000e-01 + 1.300700000000000e-01 +-1.565100000000000e-03 +-9.451700000000000e-02 +-1.716800000000000e-01 +-2.590200000000000e-01 +-3.657700000000000e-01 +-4.782400000000000e-01 +-5.693700000000000e-01 +-6.157100000000000e-01 +-6.099800000000000e-01 +-5.623700000000000e-01 +-4.923300000000000e-01 +-4.185300000000000e-01 +-3.526200000000000e-01 +-2.978200000000000e-01 +-2.493900000000000e-01 +-1.953100000000000e-01 +-1.189300000000000e-01 +-6.184000000000000e-03 + 1.436700000000000e-01 + 3.105200000000000e-01 + 4.570100000000000e-01 + 5.448000000000000e-01 + 5.554200000000000e-01 + 5.014900000000000e-01 + 4.193200000000000e-01 + 3.463800000000000e-01 + 2.987300000000000e-01 + 2.644500000000000e-01 + 2.173100000000000e-01 + 1.400600000000000e-01 + 3.908300000000000e-02 +-6.039400000000000e-02 +-1.340600000000000e-01 +-1.767100000000000e-01 +-2.037800000000000e-01 +-2.351200000000000e-01 +-2.744600000000000e-01 +-3.023200000000000e-01 +-2.892200000000000e-01 +-2.197100000000000e-01 +-1.085200000000000e-01 + 4.563600000000000e-03 + 7.833900000000001e-02 + 9.569500000000000e-02 + 7.289000000000000e-02 + 4.677500000000000e-02 + 4.983300000000000e-02 + 9.065600000000000e-02 + 1.518900000000000e-01 + 2.043800000000000e-01 + 2.254500000000000e-01 + 2.090300000000000e-01 + 1.632500000000000e-01 + 1.010400000000000e-01 + 3.220000000000000e-02 +-3.857700000000000e-02 +-1.096600000000000e-01 +-1.809400000000000e-01 +-2.544000000000000e-01 +-3.339300000000000e-01 +-4.207500000000000e-01 +-5.051600000000001e-01 +-5.608000000000000e-01 +-5.490100000000000e-01 +-4.350200000000000e-01 +-2.085900000000000e-01 + 1.032000000000000e-01 + 4.403200000000000e-01 + 7.302600000000000e-01 + 9.140800000000000e-01 + 9.641700000000000e-01 + 8.862300000000000e-01 + 7.081300000000000e-01 + 4.650000000000000e-01 + 1.898500000000000e-01 +-8.774400000000000e-02 +-3.389800000000000e-01 +-5.354900000000000e-01 +-6.540700000000000e-01 +-6.840700000000000e-01 +-6.321000000000000e-01 +-5.204900000000000e-01 +-3.802500000000000e-01 +-2.424300000000000e-01 +-1.315400000000000e-01 +-6.227200000000000e-02 +-3.821700000000000e-02 +-5.149600000000000e-02 +-8.357500000000000e-02 +-1.090400000000000e-01 +-1.029800000000000e-01 +-4.993400000000000e-02 + 4.998800000000000e-02 + 1.812700000000000e-01 + 3.197600000000000e-01 + 4.420800000000000e-01 + 5.324700000000000e-01 + 5.838900000000000e-01 + 5.943800000000000e-01 + 5.628000000000000e-01 + 4.879900000000000e-01 + 3.719600000000000e-01 + 2.248300000000000e-01 + 6.680400000000000e-02 +-7.506200000000000e-02 +-1.750200000000000e-01 +-2.180900000000000e-01 +-2.064200000000000e-01 +-1.595100000000000e-01 +-1.078100000000000e-01 +-8.185400000000000e-02 +-1.013300000000000e-01 +-1.685000000000000e-01 +-2.690600000000000e-01 +-3.800200000000000e-01 +-4.801500000000000e-01 +-5.570500000000000e-01 +-6.065700000000001e-01 +-6.256400000000000e-01 +-6.049500000000000e-01 +-5.289400000000000e-01 +-3.856900000000000e-01 +-1.812800000000000e-01 + 5.227800000000000e-02 + 2.641600000000000e-01 + 4.058000000000000e-01 + 4.546000000000000e-01 + 4.250700000000000e-01 + 3.596300000000000e-01 + 3.041900000000000e-01 + 2.843300000000000e-01 + 2.967200000000000e-01 + 3.198400000000000e-01 + 3.342300000000000e-01 + 3.369500000000000e-01 + 3.405500000000000e-01 + 3.595100000000000e-01 + 3.961600000000000e-01 + 4.369500000000000e-01 + 4.602500000000000e-01 + 4.477400000000000e-01 + 3.897400000000000e-01 + 2.823700000000000e-01 + 1.228400000000000e-01 +-8.864100000000000e-02 +-3.395800000000000e-01 +-5.965900000000000e-01 +-8.087900000000000e-01 +-9.262200000000000e-01 +-9.238400000000000e-01 +-8.148100000000000e-01 +-6.427000000000000e-01 +-4.570300000000000e-01 +-2.891100000000000e-01 +-1.442000000000000e-01 +-1.359600000000000e-02 + 1.056300000000000e-01 + 2.002900000000000e-01 + 2.487100000000000e-01 + 2.390300000000000e-01 + 1.821800000000000e-01 + 1.077700000000000e-01 + 4.611400000000000e-02 + 1.078200000000000e-02 +-4.186600000000000e-03 +-1.096800000000000e-02 +-1.061900000000000e-02 + 1.294600000000000e-02 + 8.185199999999999e-02 + 2.045600000000000e-01 + 3.631800000000000e-01 + 5.178500000000000e-01 + 6.250700000000000e-01 + 6.569500000000000e-01 + 6.094200000000000e-01 + 4.971000000000000e-01 + 3.421400000000000e-01 + 1.663300000000000e-01 +-1.047000000000000e-02 +-1.696400000000000e-01 +-2.959000000000000e-01 +-3.826200000000000e-01 +-4.347500000000000e-01 +-4.645500000000000e-01 +-4.815200000000000e-01 +-4.844400000000000e-01 +-4.631900000000000e-01 +-4.096100000000000e-01 +-3.283200000000000e-01 +-2.369700000000000e-01 +-1.539900000000000e-01 +-8.359700000000000e-02 +-1.148600000000000e-02 + 8.264100000000001e-02 + 2.040100000000000e-01 + 3.299100000000000e-01 + 4.171000000000000e-01 + 4.265400000000000e-01 + 3.486600000000000e-01 + 2.109000000000000e-01 + 6.217600000000000e-02 +-5.488900000000000e-02 +-1.248500000000000e-01 +-1.606600000000000e-01 +-1.873600000000000e-01 +-2.219400000000000e-01 +-2.631800000000000e-01 +-2.955100000000000e-01 +-3.003600000000000e-01 +-2.651900000000000e-01 +-1.856500000000000e-01 +-6.361700000000001e-02 + 9.341099999999999e-02 + 2.701000000000000e-01 + 4.418400000000000e-01 + 5.788000000000000e-01 + 6.553000000000000e-01 + 6.590700000000000e-01 + 5.935700000000000e-01 + 4.723200000000000e-01 + 3.102700000000000e-01 + 1.198400000000000e-01 +-8.603200000000000e-02 +-2.882200000000000e-01 +-4.606900000000000e-01 +-5.780900000000000e-01 +-6.270300000000000e-01 +-6.122400000000000e-01 +-5.521000000000000e-01 +-4.663000000000000e-01 +-3.649100000000000e-01 +-2.467200000000000e-01 +-1.070600000000000e-01 + 5.211300000000000e-02 + 2.182700000000000e-01 + 3.728000000000000e-01 + 4.990700000000000e-01 + 5.868900000000000e-01 + 6.306000000000000e-01 + 6.244700000000000e-01 + 5.617000000000000e-01 + 4.394200000000000e-01 + 2.654500000000000e-01 + 6.011900000000000e-02 +-1.501400000000000e-01 +-3.432400000000000e-01 +-5.081300000000000e-01 +-6.425000000000000e-01 +-7.441000000000000e-01 +-8.035700000000000e-01 +-8.058500000000000e-01 +-7.395800000000000e-01 +-6.074300000000000e-01 +-4.289400000000000e-01 +-2.331300000000000e-01 +-4.597500000000000e-02 + 1.192100000000000e-01 + 2.629100000000000e-01 + 3.929800000000000e-01 + 5.156400000000000e-01 + 6.289800000000000e-01 + 7.208400000000000e-01 + 7.708600000000000e-01 + 7.562300000000000e-01 + 6.610300000000000e-01 + 4.877300000000000e-01 + 2.654500000000000e-01 + 4.795700000000000e-02 +-1.028900000000000e-01 +-1.433800000000000e-01 +-7.096500000000000e-02 + 7.044300000000001e-02 + 2.085500000000000e-01 + 2.760600000000000e-01 + 2.411600000000000e-01 + 1.184500000000000e-01 +-4.456600000000000e-02 +-1.956600000000000e-01 +-3.035200000000000e-01 +-3.673000000000000e-01 +-4.079100000000000e-01 +-4.493600000000000e-01 +-5.023700000000000e-01 +-5.584200000000000e-01 +-5.951900000000000e-01 +-5.884800000000000e-01 +-5.241700000000000e-01 +-4.048500000000000e-01 +-2.489100000000000e-01 +-8.280700000000001e-02 + 6.965700000000000e-02 + 1.953100000000000e-01 + 2.921200000000000e-01 + 3.618700000000000e-01 + 4.005600000000000e-01 + 3.949900000000000e-01 + 3.304300000000000e-01 + 2.056200000000000e-01 + 4.409700000000000e-02 +-1.091000000000000e-01 +-2.067200000000000e-01 +-2.236600000000000e-01 +-1.698900000000000e-01 +-8.197500000000001e-02 + 1.738100000000000e-03 + 6.509000000000000e-02 + 1.201700000000000e-01 + 1.915800000000000e-01 + 2.913200000000000e-01 + 4.040300000000000e-01 + 4.940400000000000e-01 + 5.290800000000000e-01 + 5.025500000000001e-01 + 4.372100000000000e-01 + 3.673900000000000e-01 + 3.130200000000000e-01 + 2.648600000000000e-01 + 1.917800000000000e-01 + 6.493000000000000e-02 +-1.182700000000000e-01 +-3.267900000000000e-01 +-5.097100000000000e-01 +-6.217100000000000e-01 +-6.440800000000000e-01 +-5.899300000000000e-01 +-4.928400000000000e-01 +-3.881000000000000e-01 +-2.981100000000000e-01 +-2.290200000000000e-01 +-1.773800000000000e-01 +-1.402700000000000e-01 +-1.209000000000000e-01 +-1.258200000000000e-01 +-1.560900000000000e-01 +-1.989100000000000e-01 +-2.274200000000000e-01 +-2.111900000000000e-01 +-1.328900000000000e-01 +-9.261500000000000e-04 + 1.518400000000000e-01 + 2.848500000000000e-01 + 3.733200000000000e-01 + 4.232300000000000e-01 + 4.665400000000000e-01 + 5.377999999999999e-01 + 6.468800000000000e-01 + 7.658000000000000e-01 + 8.397700000000000e-01 + 8.158100000000000e-01 + 6.710400000000000e-01 + 4.233100000000000e-01 + 1.194500000000000e-01 +-1.887100000000000e-01 +-4.641200000000000e-01 +-6.896000000000000e-01 +-8.599700000000000e-01 +-9.713700000000000e-01 +-1.016900000000000e+00 +-9.897899999999999e-01 +-8.880200000000000e-01 +-7.159300000000000e-01 +-4.824700000000000e-01 +-2.014100000000000e-01 + 1.038900000000000e-01 + 3.956000000000000e-01 + 6.252100000000000e-01 + 7.498500000000000e-01 + 7.543500000000000e-01 + 6.632800000000000e-01 + 5.310300000000000e-01 + 4.126500000000000e-01 + 3.335400000000000e-01 + 2.794500000000000e-01 + 2.144300000000000e-01 + 1.140400000000000e-01 +-1.138000000000000e-02 +-1.212700000000000e-01 +-1.743000000000000e-01 +-1.600200000000000e-01 +-1.081000000000000e-01 +-6.742099999999999e-02 +-7.081899999999999e-02 +-1.118900000000000e-01 +-1.514700000000000e-01 +-1.484600000000000e-01 +-9.188200000000001e-02 +-1.073500000000000e-02 + 4.443000000000000e-02 + 3.383900000000000e-02 +-4.827100000000000e-02 +-1.736900000000000e-01 +-2.999400000000000e-01 +-3.935600000000000e-01 +-4.416100000000000e-01 +-4.480000000000000e-01 +-4.224700000000000e-01 +-3.725500000000000e-01 +-3.029300000000000e-01 +-2.182000000000000e-01 +-1.234400000000000e-01 +-2.102600000000000e-02 + 9.176700000000000e-02 + 2.199900000000000e-01 + 3.635600000000000e-01 + 5.115700000000000e-01 + 6.444400000000000e-01 + 7.434900000000000e-01 + 8.002500000000000e-01 + 8.170800000000000e-01 + 7.977700000000000e-01 + 7.365000000000000e-01 + 6.163800000000000e-01 + 4.218600000000000e-01 + 1.571200000000000e-01 +-1.443800000000000e-01 +-4.291500000000000e-01 +-6.479700000000000e-01 +-7.793000000000000e-01 +-8.353600000000000e-01 +-8.464800000000000e-01 +-8.353699999999999e-01 +-8.001100000000000e-01 +-7.180900000000000e-01 +-5.668400000000000e-01 +-3.459500000000000e-01 +-8.372599999999999e-02 + 1.749100000000000e-01 + 3.891400000000000e-01 + 5.360600000000000e-01 + 6.097600000000000e-01 + 6.105500000000000e-01 + 5.371200000000000e-01 + 3.904400000000000e-01 + 1.861300000000000e-01 +-3.718000000000000e-02 +-2.250700000000000e-01 +-3.296700000000000e-01 +-3.337500000000000e-01 +-2.596400000000000e-01 +-1.554000000000000e-01 +-6.636400000000001e-02 +-1.065000000000000e-02 + 2.541500000000000e-02 + 7.029900000000000e-02 + 1.419400000000000e-01 + 2.324700000000000e-01 + 3.130600000000000e-01 + 3.541400000000000e-01 + 3.453200000000000e-01 + 3.009500000000000e-01 + 2.482800000000000e-01 + 2.081400000000000e-01 + 1.823100000000000e-01 + 1.557500000000000e-01 + 1.102200000000000e-01 + 3.823800000000000e-02 +-5.250100000000000e-02 +-1.457100000000000e-01 +-2.270100000000000e-01 +-2.896300000000000e-01 +-3.319400000000000e-01 +-3.512700000000000e-01 +-3.414500000000000e-01 +-2.979500000000000e-01 +-2.267400000000000e-01 +-1.487200000000000e-01 +-9.353700000000000e-02 +-8.483000000000000e-02 +-1.258300000000000e-01 +-1.953900000000000e-01 +-2.579700000000000e-01 +-2.818300000000000e-01 +-2.544300000000000e-01 +-1.857700000000000e-01 +-9.893399999999999e-02 +-1.483600000000000e-02 + 5.863900000000000e-02 + 1.269400000000000e-01 + 1.997900000000000e-01 + 2.800100000000000e-01 + 3.579100000000000e-01 + 4.149800000000000e-01 + 4.342500000000000e-01 + 4.108200000000000e-01 + 3.559500000000000e-01 + 2.922400000000000e-01 + 2.423100000000000e-01 + 2.170700000000000e-01 + 2.101100000000000e-01 + 2.016900000000000e-01 + 1.705400000000000e-01 + 1.075000000000000e-01 + 2.334700000000000e-02 +-5.430500000000000e-02 +-9.415800000000001e-02 +-7.815400000000000e-02 +-1.333800000000000e-02 + 6.778099999999999e-02 + 1.189100000000000e-01 + 9.825700000000000e-02 +-1.479000000000000e-02 +-2.114100000000000e-01 +-4.558000000000000e-01 +-6.963200000000001e-01 +-8.805100000000000e-01 +-9.691400000000000e-01 +-9.452800000000000e-01 +-8.162800000000000e-01 +-6.084900000000000e-01 +-3.567600000000000e-01 +-9.345900000000000e-02 + 1.583400000000000e-01 + 3.848800000000000e-01 + 5.766700000000000e-01 + 7.234600000000000e-01 + 8.143700000000000e-01 + 8.436300000000000e-01 + 8.171200000000000e-01 + 7.529700000000000e-01 + 6.728600000000000e-01 + 5.884000000000000e-01 + 4.919800000000000e-01 + 3.602800000000000e-01 + 1.703500000000000e-01 +-8.098800000000000e-02 +-3.673200000000000e-01 +-6.395999999999999e-01 +-8.463000000000001e-01 +-9.545500000000000e-01 +-9.598100000000001e-01 +-8.801099999999999e-01 +-7.411000000000000e-01 +-5.633100000000000e-01 +-3.590700000000000e-01 +-1.380900000000000e-01 + 8.584400000000000e-02 + 2.942000000000000e-01 + 4.700600000000000e-01 + 6.055800000000000e-01 + 7.038600000000000e-01 + 7.728500000000000e-01 + 8.158100000000000e-01 + 8.258000000000000e-01 + 7.884600000000000e-01 + 6.913400000000000e-01 + 5.332100000000000e-01 + 3.274200000000000e-01 + 9.798800000000001e-02 +-1.284900000000000e-01 +-3.300900000000000e-01 +-4.932200000000000e-01 +-6.129599999999999e-01 +-6.915800000000000e-01 +-7.360800000000000e-01 +-7.547300000000000e-01 +-7.525200000000000e-01 +-7.277800000000000e-01 +-6.725200000000000e-01 +-5.778100000000000e-01 +-4.416800000000000e-01 +-2.742200000000000e-01 +-9.553000000000000e-02 + 7.307000000000000e-02 + 2.191700000000000e-01 + 3.437200000000000e-01 + 4.564500000000000e-01 + 5.652600000000000e-01 + 6.669500000000000e-01 + 7.457100000000000e-01 + 7.802000000000000e-01 + 7.544600000000000e-01 + 6.653700000000000e-01 + 5.229200000000001e-01 + 3.445200000000000e-01 + 1.481400000000000e-01 +-5.118300000000000e-02 +-2.407500000000000e-01 +-4.079300000000000e-01 +-5.394400000000000e-01 +-6.232300000000000e-01 +-6.518000000000000e-01 +-6.245700000000000e-01 +-5.482200000000000e-01 +-4.353200000000000e-01 +-3.022900000000000e-01 +-1.669200000000000e-01 +-4.499600000000000e-02 + 5.373200000000000e-02 + 1.288300000000000e-01 + 1.888500000000000e-01 + 2.461100000000000e-01 + 3.083700000000000e-01 + 3.720200000000000e-01 + 4.219400000000000e-01 + 4.390500000000000e-01 + 4.118200000000000e-01 + 3.445900000000000e-01 + 2.571000000000000e-01 + 1.747600000000000e-01 + 1.155400000000000e-01 + 8.132399999999999e-02 + 5.906400000000000e-02 + 3.042300000000000e-02 +-1.642900000000000e-02 +-8.041700000000000e-02 +-1.499500000000000e-01 +-2.115200000000000e-01 +-2.580200000000000e-01 +-2.912300000000000e-01 +-3.175100000000000e-01 +-3.409000000000000e-01 +-3.590700000000000e-01 +-3.652700000000000e-01 +-3.541800000000000e-01 +-3.265500000000000e-01 +-2.887500000000000e-01 +-2.474900000000000e-01 +-2.042200000000000e-01 +-1.540400000000000e-01 +-9.045400000000001e-02 +-1.196400000000000e-02 + 7.489100000000000e-02 + 1.590000000000000e-01 + 2.317700000000000e-01 + 2.917100000000000e-01 + 3.418200000000000e-01 + 3.818800000000000e-01 + 4.023100000000000e-01 + 3.867800000000000e-01 + 3.235100000000000e-01 + 2.177000000000000e-01 + 9.482400000000001e-02 +-9.782799999999999e-03 +-6.915700000000000e-02 +-7.813700000000000e-02 +-5.204200000000000e-02 +-1.157600000000000e-02 + 3.423600000000000e-02 + 9.329100000000000e-02 + 1.791900000000000e-01 + 2.923100000000000e-01 + 4.089200000000000e-01 + 4.885400000000000e-01 + 4.956800000000000e-01 + 4.203900000000000e-01 + 2.823500000000000e-01 + 1.159600000000000e-01 +-5.188100000000000e-02 +-2.138600000000000e-01 +-3.757100000000000e-01 +-5.380300000000000e-01 +-6.830900000000000e-01 +-7.791300000000000e-01 +-7.999200000000000e-01 +-7.445500000000000e-01 +-6.410300000000000e-01 +-5.302600000000000e-01 +-4.416800000000000e-01 +-3.784700000000000e-01 +-3.218900000000000e-01 +-2.492500000000000e-01 +-1.506100000000000e-01 +-3.196800000000000e-02 + 9.422500000000000e-02 + 2.200600000000000e-01 + 3.435100000000000e-01 + 4.595800000000000e-01 + 5.515900000000000e-01 + 5.941100000000000e-01 + 5.688700000000000e-01 + 4.823500000000000e-01 + 3.698500000000000e-01 + 2.798300000000000e-01 + 2.475200000000000e-01 + 2.756500000000000e-01 + 3.354500000000000e-01 + 3.861800000000000e-01 + 3.988000000000000e-01 + 3.679500000000000e-01 + 3.070300000000000e-01 + 2.340500000000000e-01 + 1.607100000000000e-01 + 9.131900000000000e-02 + 2.784600000000000e-02 +-2.733700000000000e-02 +-7.485799999999999e-02 +-1.233100000000000e-01 +-1.876200000000000e-01 +-2.781900000000000e-01 +-3.883400000000000e-01 +-4.916300000000000e-01 +-5.549800000000000e-01 +-5.600200000000000e-01 +-5.171400000000000e-01 +-4.603500000000000e-01 +-4.254700000000000e-01 +-4.272400000000000e-01 +-4.522400000000000e-01 +-4.718800000000000e-01 +-4.642000000000000e-01 +-4.268100000000000e-01 +-3.714800000000000e-01 +-3.068900000000000e-01 +-2.260100000000000e-01 +-1.098900000000000e-01 + 5.469200000000000e-02 + 2.589400000000000e-01 + 4.715000000000000e-01 + 6.551200000000000e-01 + 7.872900000000000e-01 + 8.685100000000000e-01 + 9.124300000000000e-01 + 9.274000000000000e-01 + 9.060300000000000e-01 + 8.320400000000000e-01 + 6.981000000000001e-01 + 5.185200000000000e-01 + 3.244400000000000e-01 + 1.444100000000000e-01 +-1.406000000000000e-02 +-1.660700000000000e-01 +-3.319400000000000e-01 +-5.143000000000000e-01 +-6.881100000000000e-01 +-8.121200000000000e-01 +-8.532400000000000e-01 +-8.054200000000000e-01 +-6.894500000000000e-01 +-5.354800000000000e-01 +-3.635200000000000e-01 +-1.774500000000000e-01 + 2.404800000000000e-02 + 2.307900000000000e-01 + 4.142100000000000e-01 + 5.378100000000000e-01 + 5.774600000000000e-01 + 5.357700000000000e-01 + 4.391500000000000e-01 + 3.196000000000000e-01 + 1.949500000000000e-01 + 6.244800000000000e-02 +-9.034300000000001e-02 +-2.665300000000000e-01 +-4.480400000000000e-01 +-6.005800000000000e-01 +-6.922199999999999e-01 +-7.123100000000000e-01 +-6.770400000000000e-01 +-6.173700000000000e-01 +-5.569300000000000e-01 +-4.947800000000000e-01 +-4.044500000000000e-01 +-2.507400000000000e-01 +-1.467400000000000e-02 + 2.882700000000000e-01 + 6.077000000000000e-01 + 8.770700000000000e-01 + 1.041900000000000e+00 + 1.082600000000000e+00 + 1.020200000000000e+00 + 9.015800000000000e-01 + 7.739200000000001e-01 + 6.623400000000000e-01 + 5.632600000000000e-01 + 4.555600000000000e-01 + 3.209800000000000e-01 + 1.600000000000000e-01 +-6.644800000000000e-03 +-1.505800000000000e-01 +-2.530200000000000e-01 +-3.148800000000000e-01 +-3.536900000000000e-01 +-3.910700000000000e-01 +-4.398800000000000e-01 +-4.994400000000000e-01 +-5.600700000000000e-01 +-6.117700000000000e-01 +-6.499700000000000e-01 +-6.750500000000000e-01 +-6.879500000000000e-01 +-6.866200000000000e-01 +-6.663700000000000e-01 +-6.231300000000000e-01 +-5.560900000000000e-01 +-4.672200000000000e-01 +-3.586500000000000e-01 +-2.307800000000000e-01 +-8.329900000000000e-02 + 8.147600000000001e-02 + 2.559300000000000e-01 + 4.274700000000000e-01 + 5.817099999999999e-01 + 7.062000000000000e-01 + 7.925000000000000e-01 + 8.364500000000000e-01 + 8.381600000000000e-01 + 8.027200000000000e-01 + 7.408600000000000e-01 + 6.671300000000000e-01 + 5.947100000000000e-01 + 5.291000000000000e-01 + 4.650700000000000e-01 + 3.901900000000000e-01 + 2.937000000000000e-01 + 1.750700000000000e-01 + 4.612900000000000e-02 +-7.550100000000000e-02 +-1.773800000000000e-01 +-2.603500000000000e-01 +-3.380000000000000e-01 +-4.279100000000000e-01 +-5.401300000000000e-01 +-6.699800000000000e-01 +-7.985300000000000e-01 +-8.995100000000000e-01 +-9.482300000000000e-01 +-9.287900000000000e-01 +-8.382600000000000e-01 +-6.880600000000000e-01 +-5.023800000000000e-01 +-3.126500000000000e-01 +-1.480100000000000e-01 +-2.438300000000000e-02 + 6.208200000000000e-02 + 1.321900000000000e-01 + 2.113100000000000e-01 + 3.135700000000000e-01 + 4.322900000000000e-01 + 5.433400000000000e-01 + 6.197800000000000e-01 + 6.489100000000000e-01 + 6.404900000000000e-01 + 6.205300000000000e-01 + 6.146100000000000e-01 + 6.312400000000000e-01 + 6.556300000000000e-01 + 6.576300000000000e-01 + 6.084000000000001e-01 + 4.962000000000000e-01 + 3.325400000000000e-01 + 1.467500000000000e-01 +-2.715900000000000e-02 +-1.640900000000000e-01 +-2.560500000000000e-01 +-3.126900000000000e-01 +-3.551600000000000e-01 +-4.063600000000000e-01 +-4.810700000000000e-01 +-5.796100000000000e-01 +-6.873800000000000e-01 +-7.811600000000000e-01 +-8.394400000000000e-01 +-8.517600000000000e-01 +-8.217700000000000e-01 +-7.619200000000000e-01 +-6.831400000000000e-01 +-5.863000000000000e-01 +-4.619600000000000e-01 +-2.990300000000000e-01 +-9.671399999999999e-02 + 1.290500000000000e-01 + 3.501900000000000e-01 + 5.400400000000000e-01 + 6.869499999999999e-01 + 7.981900000000000e-01 + 8.909200000000000e-01 + 9.760500000000000e-01 + 1.046200000000000e+00 + 1.077100000000000e+00 + 1.042400000000000e+00 + 9.327700000000000e-01 + 7.655500000000000e-01 + 5.794000000000000e-01 + 4.150700000000000e-01 + 2.946000000000000e-01 + 2.111300000000000e-01 + 1.346100000000000e-01 + 2.915700000000000e-02 +-1.283300000000000e-01 +-3.382300000000000e-01 +-5.800800000000000e-01 +-8.226800000000000e-01 +-1.035300000000000e+00 +-1.194600000000000e+00 +-1.286500000000000e+00 +-1.304700000000000e+00 +-1.249700000000000e+00 +-1.128400000000000e+00 +-9.544899999999999e-01 +-7.476800000000000e-01 +-5.303200000000000e-01 +-3.229500000000000e-01 +-1.390900000000000e-01 + 1.848700000000000e-02 + 1.585500000000000e-01 + 2.979400000000000e-01 + 4.540000000000000e-01 + 6.350200000000000e-01 + 8.329400000000000e-01 + 1.022700000000000e+00 + 1.170000000000000e+00 + 1.244400000000000e+00 + 1.232000000000000e+00 + 1.140200000000000e+00 + 9.931100000000000e-01 + 8.197700000000000e-01 + 6.418700000000001e-01 + 4.679800000000000e-01 + 2.956700000000000e-01 + 1.189000000000000e-01 +-6.449500000000000e-02 +-2.492600000000000e-01 +-4.238200000000000e-01 +-5.741000000000001e-01 +-6.873899999999999e-01 +-7.548100000000000e-01 +-7.720900000000001e-01 +-7.396200000000001e-01 +-6.621500000000000e-01 +-5.489600000000000e-01 +-4.143800000000000e-01 +-2.782600000000000e-01 +-1.649500000000000e-01 +-9.912100000000000e-02 +-9.801900000000000e-02 +-1.628600000000000e-01 +-2.744400000000000e-01 +-3.974200000000000e-01 +-4.934800000000000e-01 +-5.366500000000000e-01 +-5.220500000000000e-01 +-4.618500000000000e-01 +-3.713400000000000e-01 +-2.551800000000000e-01 +-1.046300000000000e-01 + 9.145600000000000e-02 + 3.299600000000000e-01 + 5.843800000000000e-01 + 8.118400000000000e-01 + 9.727600000000000e-01 + 1.050100000000000e+00 + 1.054800000000000e+00 + 1.014300000000000e+00 + 9.531500000000001e-01 + 8.799000000000000e-01 + 7.879400000000000e-01 + 6.668700000000000e-01 + 5.132800000000000e-01 + 3.322000000000000e-01 + 1.303500000000000e-01 +-8.983600000000000e-02 +-3.278800000000000e-01 +-5.755500000000000e-01 +-8.094300000000000e-01 +-9.947800000000000e-01 +-1.100500000000000e+00 +-1.114800000000000e+00 +-1.048800000000000e+00 +-9.249100000000000e-01 +-7.603400000000000e-01 +-5.584900000000000e-01 +-3.171400000000000e-01 +-4.556800000000000e-02 + 2.251100000000000e-01 + 4.496000000000000e-01 + 5.903900000000000e-01 + 6.377100000000000e-01 + 6.114900000000000e-01 + 5.433200000000000e-01 + 4.524500000000000e-01 + 3.351200000000000e-01 + 1.754500000000000e-01 +-3.122600000000000e-02 +-2.621900000000000e-01 +-4.720800000000000e-01 +-6.154800000000000e-01 +-6.701500000000000e-01 +-6.440000000000000e-01 +-5.620800000000000e-01 +-4.458600000000000e-01 +-3.016200000000000e-01 +-1.254800000000000e-01 + 8.169200000000000e-02 + 3.039800000000000e-01 + 5.137699999999999e-01 + 6.850400000000000e-01 + 8.048400000000000e-01 + 8.737500000000000e-01 + 8.971400000000000e-01 + 8.769600000000000e-01 + 8.123899999999999e-01 + 7.078200000000000e-01 + 5.783400000000000e-01 + 4.448700000000000e-01 + 3.206700000000000e-01 + 2.010700000000000e-01 + 6.718499999999999e-02 +-9.699600000000000e-02 +-2.870600000000000e-01 +-4.756700000000000e-01 +-6.291000000000000e-01 +-7.310700000000000e-01 +-7.945000000000000e-01 +-8.502300000000000e-01 +-9.200700000000001e-01 +-9.945600000000000e-01 +-1.033800000000000e+00 +-9.922000000000000e-01 +-8.499500000000000e-01 +-6.288000000000000e-01 +-3.807700000000000e-01 +-1.587500000000000e-01 + 1.050900000000000e-02 + 1.336500000000000e-01 + 2.366900000000000e-01 + 3.428300000000000e-01 + 4.586600000000000e-01 + 5.757200000000000e-01 + 6.817400000000000e-01 + 7.696400000000000e-01 + 8.373699999999999e-01 + 8.809500000000000e-01 + 8.895999999999999e-01 + 8.490400000000000e-01 + 7.513000000000000e-01 + 6.031900000000000e-01 + 4.265100000000000e-01 + 2.494900000000000e-01 + 9.551800000000001e-02 +-2.396900000000000e-02 +-1.097200000000000e-01 +-1.706300000000000e-01 +-2.198700000000000e-01 +-2.730000000000000e-01 +-3.460800000000000e-01 +-4.510700000000000e-01 +-5.885800000000000e-01 +-7.420099999999999e-01 +-8.781300000000000e-01 +-9.561800000000000e-01 +-9.420200000000000e-01 +-8.210400000000000e-01 +-6.036600000000000e-01 +-3.217600000000000e-01 +-1.826200000000000e-02 + 2.650600000000000e-01 + 4.973300000000000e-01 + 6.629800000000000e-01 + 7.604100000000000e-01 + 7.962100000000000e-01 + 7.777900000000000e-01 + 7.084600000000000e-01 + 5.878200000000000e-01 + 4.173500000000000e-01 + 2.076300000000000e-01 +-1.842500000000000e-02 +-2.296800000000000e-01 +-3.967900000000000e-01 +-5.021400000000000e-01 +-5.435000000000000e-01 +-5.295000000000000e-01 +-4.709500000000000e-01 +-3.750900000000000e-01 +-2.470100000000000e-01 +-9.623400000000000e-02 + 5.787900000000000e-02 + 1.882300000000000e-01 + 2.697300000000000e-01 + 2.909000000000000e-01 + 2.595500000000000e-01 + 1.986800000000000e-01 + 1.354700000000000e-01 + 9.030800000000000e-02 + 7.180800000000000e-02 + 7.858000000000000e-02 + 1.038700000000000e-01 + 1.386100000000000e-01 + 1.716600000000000e-01 + 1.895700000000000e-01 + 1.791000000000000e-01 + 1.325100000000000e-01 + 5.232400000000000e-02 +-4.872500000000000e-02 +-1.532600000000000e-01 +-2.469600000000000e-01 +-3.227300000000000e-01 +-3.783800000000000e-01 +-4.103300000000000e-01 +-4.090700000000000e-01 +-3.616300000000000e-01 +-2.602600000000000e-01 +-1.116600000000000e-01 + 6.051700000000000e-02 + 2.227100000000000e-01 + 3.445100000000000e-01 + 4.097200000000000e-01 + 4.191200000000000e-01 + 3.841600000000000e-01 + 3.170300000000000e-01 + 2.241900000000000e-01 + 1.073600000000000e-01 +-3.004500000000000e-02 +-1.767300000000000e-01 +-3.125200000000000e-01 +-4.134100000000000e-01 +-4.589600000000000e-01 +-4.377200000000000e-01 +-3.483800000000000e-01 +-1.986300000000000e-01 +-4.448100000000000e-03 + 2.090100000000000e-01 + 4.076200000000000e-01 + 5.533100000000000e-01 + 6.149300000000000e-01 + 5.807900000000000e-01 + 4.652600000000000e-01 + 3.034900000000000e-01 + 1.356000000000000e-01 +-1.101500000000000e-02 +-1.304100000000000e-01 +-2.322200000000000e-01 +-3.257800000000000e-01 +-4.062600000000000e-01 +-4.538700000000000e-01 +-4.477700000000000e-01 +-3.853000000000000e-01 +-2.914700000000000e-01 +-2.097200000000000e-01 +-1.777800000000000e-01 +-2.035600000000000e-01 +-2.579000000000000e-01 +-2.903100000000000e-01 +-2.588400000000000e-01 +-1.556300000000000e-01 +-1.179100000000000e-02 + 1.213100000000000e-01 + 2.024700000000000e-01 + 2.239200000000000e-01 + 2.139000000000000e-01 + 2.184700000000000e-01 + 2.746900000000000e-01 + 3.911900000000000e-01 + 5.456000000000000e-01 + 6.971600000000000e-01 + 8.051100000000000e-01 + 8.422700000000000e-01 + 7.993800000000000e-01 + 6.819800000000000e-01 + 5.050300000000000e-01 + 2.887600000000000e-01 + 5.574600000000000e-02 +-1.725200000000000e-01 +-3.799600000000000e-01 +-5.589400000000000e-01 +-7.088700000000000e-01 +-8.298600000000000e-01 +-9.153200000000000e-01 +-9.495100000000000e-01 +-9.138900000000000e-01 +-8.000699999999999e-01 +-6.213800000000000e-01 +-4.146300000000000e-01 +-2.285000000000000e-01 +-1.038000000000000e-01 +-5.623300000000000e-02 +-7.099000000000000e-02 +-1.117700000000000e-01 +-1.379500000000000e-01 +-1.200800000000000e-01 +-4.666800000000000e-02 + 7.778700000000000e-02 + 2.381500000000000e-01 + 4.120800000000000e-01 + 5.710100000000000e-01 + 6.827000000000000e-01 + 7.196100000000000e-01 + 6.719200000000000e-01 + 5.577200000000000e-01 + 4.218600000000000e-01 + 3.200600000000000e-01 + 2.949800000000000e-01 + 3.566800000000000e-01 + 4.784600000000000e-01 + 6.099000000000000e-01 + 6.986500000000000e-01 + 7.088700000000000e-01 + 6.279900000000000e-01 + 4.627100000000000e-01 + 2.308700000000000e-01 +-4.378400000000000e-02 +-3.327800000000000e-01 +-6.039300000000000e-01 +-8.262900000000000e-01 +-9.787200000000000e-01 +-1.056900000000000e+00 +-1.073200000000000e+00 +-1.047800000000000e+00 +-9.973300000000000e-01 +-9.276000000000000e-01 +-8.347400000000000e-01 +-7.133300000000000e-01 +-5.645000000000000e-01 +-3.988900000000000e-01 +-2.332000000000000e-01 +-8.373100000000000e-02 + 3.907800000000000e-02 + 1.331100000000000e-01 + 2.047500000000000e-01 + 2.676800000000000e-01 + 3.399000000000000e-01 + 4.379300000000000e-01 + 5.690600000000000e-01 + 7.253300000000000e-01 + 8.841800000000000e-01 + 1.016900000000000e+00 + 1.100600000000000e+00 + 1.126600000000000e+00 + 1.099300000000000e+00 + 1.026900000000000e+00 + 9.124700000000000e-01 + 7.518000000000000e-01 + 5.397700000000000e-01 + 2.798700000000000e-01 +-1.177900000000000e-02 +-3.109800000000000e-01 +-5.942700000000000e-01 +-8.441500000000000e-01 +-1.046500000000000e+00 +-1.184000000000000e+00 +-1.234400000000000e+00 +-1.178700000000000e+00 +-1.016200000000000e+00 +-7.747800000000000e-01 +-5.063800000000001e-01 +-2.680200000000000e-01 +-9.822599999999999e-02 +-3.492100000000000e-03 + 3.782100000000000e-02 + 5.811700000000000e-02 + 8.165799999999999e-02 + 1.149200000000000e-01 + 1.489300000000000e-01 + 1.685600000000000e-01 + 1.618200000000000e-01 + 1.255100000000000e-01 + 6.797100000000000e-02 + 9.806600000000000e-03 +-1.910800000000000e-02 + 1.103700000000000e-02 + 1.153300000000000e-01 + 2.816100000000000e-01 + 4.699800000000000e-01 + 6.287600000000000e-01 + 7.193700000000000e-01 + 7.347600000000000e-01 + 6.980200000000000e-01 + 6.414600000000000e-01 + 5.808400000000000e-01 + 5.039500000000000e-01 + 3.823100000000000e-01 + 1.975100000000000e-01 +-3.784800000000000e-02 +-2.807900000000000e-01 +-4.803800000000000e-01 +-6.059700000000000e-01 +-6.617400000000000e-01 +-6.786700000000000e-01 +-6.917000000000000e-01 +-7.191000000000000e-01 +-7.568500000000000e-01 +-7.879900000000000e-01 +-7.960800000000000e-01 +-7.715800000000000e-01 +-7.086000000000000e-01 +-5.988200000000000e-01 +-4.313400000000000e-01 +-2.007500000000000e-01 + 8.252500000000000e-02 + 3.887100000000000e-01 + 6.761400000000000e-01 + 9.058200000000000e-01 + 1.054300000000000e+00 + 1.118500000000000e+00 + 1.112100000000000e+00 + 1.057400000000000e+00 + 9.778300000000000e-01 + 8.917100000000000e-01 + 8.078000000000000e-01 + 7.214500000000000e-01 + 6.146900000000000e-01 + 4.623600000000000e-01 + 2.441800000000000e-01 +-4.293800000000000e-02 +-3.789500000000000e-01 +-7.252400000000000e-01 +-1.037000000000000e+00 +-1.276600000000000e+00 +-1.421200000000000e+00 +-1.463300000000000e+00 +-1.406800000000000e+00 +-1.263300000000000e+00 +-1.050500000000000e+00 +-7.916200000000000e-01 +-5.123300000000000e-01 +-2.370300000000000e-01 + 1.566100000000000e-02 + 2.345400000000000e-01 + 4.147300000000000e-01 + 5.555900000000000e-01 + 6.595100000000000e-01 + 7.316600000000000e-01 + 7.789600000000000e-01 + 8.073900000000001e-01 + 8.190000000000000e-01 + 8.115000000000000e-01 + 7.813600000000001e-01 + 7.283700000000000e-01 + 6.569900000000000e-01 + 5.722900000000000e-01 + 4.735400000000000e-01 + 3.518000000000000e-01 + 1.958900000000000e-01 + 4.351600000000000e-03 +-2.054700000000000e-01 +-3.998000000000000e-01 +-5.432000000000000e-01 +-6.171000000000000e-01 +-6.294900000000000e-01 +-6.087700000000000e-01 +-5.855600000000000e-01 +-5.745700000000000e-01 +-5.679400000000000e-01 +-5.427800000000000e-01 +-4.761700000000000e-01 +-3.576700000000000e-01 +-1.931600000000000e-01 +-1.533500000000000e-03 + 1.913100000000000e-01 + 3.576000000000000e-01 + 4.726200000000000e-01 + 5.210100000000000e-01 + 5.031300000000000e-01 + 4.369800000000000e-01 + 3.516400000000000e-01 + 2.738700000000000e-01 + 2.154400000000000e-01 + 1.692800000000000e-01 + 1.170200000000000e-01 + 4.178000000000000e-02 +-6.281399999999999e-02 +-1.922800000000000e-01 +-3.365900000000000e-01 +-4.836700000000000e-01 +-6.171500000000000e-01 +-7.120800000000000e-01 +-7.369100000000000e-01 +-6.656500000000000e-01 +-4.946000000000000e-01 +-2.514800000000000e-01 + 1.213700000000000e-02 + 2.423100000000000e-01 + 4.050400000000000e-01 + 4.955600000000000e-01 + 5.311000000000000e-01 + 5.354800000000000e-01 + 5.283800000000000e-01 + 5.244000000000000e-01 + 5.363200000000000e-01 + 5.729300000000001e-01 + 6.288100000000000e-01 + 6.751900000000000e-01 + 6.654000000000000e-01 + 5.584000000000000e-01 + 3.478800000000000e-01 + 7.484000000000000e-02 +-1.897100000000000e-01 +-3.840800000000000e-01 +-4.910800000000000e-01 +-5.435000000000000e-01 +-5.949700000000000e-01 +-6.769900000000000e-01 +-7.734600000000000e-01 +-8.312200000000000e-01 +-7.981500000000000e-01 +-6.607200000000000e-01 +-4.544800000000000e-01 +-2.424200000000000e-01 +-7.929799999999999e-02 + 1.250700000000000e-02 + 4.247800000000000e-02 + 3.389000000000000e-02 + 6.746400000000000e-03 +-2.545300000000000e-02 +-4.785700000000000e-02 +-3.877500000000000e-02 + 2.346200000000000e-02 + 1.448000000000000e-01 + 3.051300000000000e-01 + 4.649600000000000e-01 + 5.868200000000000e-01 + 6.562100000000000e-01 + 6.856900000000000e-01 + 6.989800000000000e-01 + 7.074500000000000e-01 + 6.975200000000000e-01 + 6.389500000000000e-01 + 5.076200000000000e-01 + 3.056900000000000e-01 + 6.471800000000000e-02 +-1.696000000000000e-01 +-3.596200000000000e-01 +-4.900900000000000e-01 +-5.674800000000000e-01 +-6.084600000000000e-01 +-6.274300000000000e-01 +-6.311400000000000e-01 +-6.209000000000000e-01 +-5.975100000000000e-01 +-5.637600000000000e-01 +-5.230500000000000e-01 +-4.765200000000000e-01 +-4.214800000000000e-01 +-3.523700000000000e-01 +-2.632000000000000e-01 +-1.499700000000000e-01 +-1.228200000000000e-02 + 1.460500000000000e-01 + 3.171700000000000e-01 + 4.903300000000000e-01 + 6.532800000000000e-01 + 7.930000000000000e-01 + 8.953200000000000e-01 + 9.445600000000000e-01 + 9.258300000000000e-01 + 8.312100000000000e-01 + 6.672500000000000e-01 + 4.582200000000000e-01 + 2.397300000000000e-01 + 4.419400000000000e-02 +-1.140600000000000e-01 +-2.432500000000000e-01 +-3.637300000000000e-01 +-4.889400000000000e-01 +-6.114400000000000e-01 +-7.051100000000000e-01 +-7.429600000000000e-01 +-7.174199999999999e-01 +-6.474400000000000e-01 +-5.659900000000000e-01 +-4.969200000000000e-01 +-4.387300000000000e-01 +-3.680700000000000e-01 +-2.607000000000000e-01 +-1.139600000000000e-01 + 4.665800000000000e-02 + 1.820800000000000e-01 + 2.648200000000000e-01 + 2.960500000000000e-01 + 3.024400000000000e-01 + 3.158000000000000e-01 + 3.507100000000000e-01 + 3.961700000000000e-01 + 4.258500000000000e-01 + 4.183500000000000e-01 + 3.725800000000000e-01 + 3.080500000000000e-01 + 2.516400000000000e-01 + 2.207900000000000e-01 + 2.145000000000000e-01 + 2.166500000000000e-01 + 2.077700000000000e-01 + 1.768600000000000e-01 + 1.260400000000000e-01 + 6.655999999999999e-02 + 9.835099999999999e-03 +-4.014300000000000e-02 +-8.825500000000000e-02 +-1.428700000000000e-01 +-2.074800000000000e-01 +-2.754500000000000e-01 +-3.323300000000000e-01 +-3.650200000000000e-01 +-3.718600000000000e-01 +-3.655200000000000e-01 +-3.651400000000000e-01 +-3.816600000000000e-01 +-4.069800000000000e-01 +-4.159200000000000e-01 +-3.816100000000000e-01 +-2.941000000000000e-01 +-1.684100000000000e-01 +-3.517400000000000e-02 + 7.986300000000000e-02 + 1.719500000000000e-01 + 2.560200000000000e-01 + 3.484800000000000e-01 + 4.464100000000000e-01 + 5.216800000000000e-01 + 5.364600000000000e-01 + 4.696400000000000e-01 + 3.345000000000000e-01 + 1.738500000000000e-01 + 3.594900000000000e-02 +-5.097300000000000e-02 +-8.744000000000000e-02 +-9.049699999999999e-02 +-7.314500000000000e-02 +-3.398200000000000e-02 + 3.422500000000000e-02 + 1.254700000000000e-01 + 2.094700000000000e-01 + 2.414800000000000e-01 + 1.887800000000000e-01 + 5.510200000000000e-02 +-1.161300000000000e-01 +-2.636700000000000e-01 +-3.413800000000000e-01 +-3.403200000000000e-01 +-2.862700000000000e-01 +-2.171400000000000e-01 +-1.577200000000000e-01 +-1.094100000000000e-01 +-5.965200000000000e-02 +-1.095100000000000e-03 + 5.531300000000000e-02 + 8.347900000000000e-02 + 5.900700000000000e-02 +-2.215400000000000e-02 +-1.358200000000000e-01 +-2.375700000000000e-01 +-2.821500000000000e-01 +-2.439400000000000e-01 +-1.282800000000000e-01 + 3.131000000000000e-02 + 1.884100000000000e-01 + 3.040500000000000e-01 + 3.625400000000000e-01 + 3.749200000000000e-01 + 3.685200000000000e-01 + 3.681400000000000e-01 + 3.799500000000000e-01 + 3.877600000000000e-01 + 3.638000000000000e-01 + 2.869500000000000e-01 + 1.560300000000000e-01 +-1.029600000000000e-02 +-1.862600000000000e-01 +-3.540600000000000e-01 +-5.097000000000000e-01 +-6.554600000000000e-01 +-7.852300000000000e-01 +-8.752000000000000e-01 +-8.886700000000000e-01 +-7.938100000000000e-01 +-5.835000000000000e-01 +-2.846900000000000e-01 + 4.853600000000000e-02 + 3.542700000000000e-01 + 5.836200000000000e-01 + 7.134900000000000e-01 + 7.474700000000000e-01 + 7.079299999999999e-01 + 6.248300000000000e-01 + 5.262200000000000e-01 + 4.320800000000000e-01 + 3.519000000000000e-01 + 2.854600000000000e-01 + 2.267700000000000e-01 + 1.698100000000000e-01 + 1.136300000000000e-01 + 6.402400000000000e-02 + 3.065000000000000e-02 + 2.100900000000000e-02 + 3.483900000000000e-02 + 6.206500000000000e-02 + 8.527800000000001e-02 + 8.526300000000001e-02 + 4.682200000000000e-02 +-3.736200000000000e-02 +-1.657300000000000e-01 +-3.292900000000000e-01 +-5.143100000000000e-01 +-7.047700000000000e-01 +-8.833700000000000e-01 +-1.031000000000000e+00 +-1.125900000000000e+00 +-1.145600000000000e+00 +-1.072300000000000e+00 +-9.010899999999999e-01 +-6.469400000000000e-01 +-3.436100000000000e-01 +-3.375700000000000e-02 + 2.466000000000000e-01 + 4.804800000000000e-01 + 6.719200000000000e-01 + 8.364300000000000e-01 + 9.867500000000000e-01 + 1.123400000000000e+00 + 1.235900000000000e+00 + 1.311400000000000e+00 + 1.342900000000000e+00 + 1.330000000000000e+00 + 1.271500000000000e+00 + 1.158200000000000e+00 + 9.741200000000000e-01 + 7.061400000000000e-01 + 3.583700000000000e-01 +-4.131800000000000e-02 +-4.469500000000000e-01 +-8.096500000000000e-01 +-1.093100000000000e+00 +-1.280800000000000e+00 +-1.373400000000000e+00 +-1.381700000000000e+00 +-1.321000000000000e+00 +-1.208900000000000e+00 +-1.064800000000000e+00 +-9.069300000000000e-01 +-7.461800000000000e-01 +-5.830900000000000e-01 +-4.104500000000000e-01 +-2.220100000000000e-01 +-2.135000000000000e-02 + 1.760900000000000e-01 + 3.496000000000000e-01 + 4.832800000000000e-01 + 5.717900000000000e-01 + 6.176900000000000e-01 + 6.239500000000000e-01 + 5.897000000000000e-01 + 5.140400000000001e-01 + 4.053700000000000e-01 + 2.875000000000000e-01 + 1.951100000000000e-01 + 1.594600000000000e-01 + 1.933700000000000e-01 + 2.858100000000000e-01 + 4.094900000000000e-01 + 5.351900000000001e-01 + 6.418600000000000e-01 + 7.163000000000000e-01 + 7.453100000000000e-01 + 7.102300000000000e-01 + 5.917400000000000e-01 + 3.836200000000000e-01 + 1.053000000000000e-01 +-1.980000000000000e-01 +-4.710600000000000e-01 +-6.721700000000000e-01 +-7.901000000000000e-01 +-8.439500000000000e-01 +-8.659500000000000e-01 +-8.787900000000000e-01 +-8.817300000000000e-01 +-8.542300000000000e-01 +-7.740200000000000e-01 +-6.373600000000000e-01 +-4.677500000000000e-01 +-3.065700000000000e-01 +-1.902800000000000e-01 +-1.277000000000000e-01 +-9.202600000000000e-02 +-3.395900000000000e-02 + 8.964300000000000e-02 + 2.877900000000000e-01 + 5.249900000000000e-01 + 7.361900000000000e-01 + 8.593499999999999e-01 + 8.671900000000000e-01 + 7.789300000000000e-01 + 6.456900000000000e-01 + 5.192900000000000e-01 + 4.248700000000000e-01 + 3.538200000000000e-01 + 2.795300000000000e-01 + 1.821900000000000e-01 + 6.462700000000000e-02 +-5.139100000000000e-02 +-1.429500000000000e-01 +-2.027200000000000e-01 +-2.413900000000000e-01 +-2.753000000000000e-01 +-3.106400000000000e-01 +-3.381400000000000e-01 +-3.426600000000000e-01 +-3.191400000000000e-01 +-2.811400000000000e-01 +-2.540000000000000e-01 +-2.577400000000000e-01 +-2.932800000000000e-01 +-3.429300000000000e-01 +-3.843100000000000e-01 +-4.056100000000000e-01 +-4.095300000000000e-01 +-4.028700000000000e-01 +-3.813000000000000e-01 +-3.237500000000000e-01 +-2.030200000000000e-01 +-5.990100000000000e-03 + 2.519000000000000e-01 + 5.298000000000000e-01 + 7.809100000000000e-01 + 9.746700000000000e-01 + 1.106100000000000e+00 + 1.186800000000000e+00 + 1.225900000000000e+00 + 1.217300000000000e+00 + 1.141500000000000e+00 + 9.816400000000000e-01 + 7.388200000000000e-01 + 4.354900000000000e-01 + 1.037700000000000e-01 +-2.313200000000000e-01 +-5.607600000000000e-01 +-8.860600000000000e-01 +-1.204800000000000e+00 +-1.499700000000000e+00 +-1.739700000000000e+00 +-1.892500000000000e+00 +-1.938800000000000e+00 +-1.876700000000000e+00 +-1.715300000000000e+00 +-1.464600000000000e+00 +-1.131700000000000e+00 +-7.278300000000000e-01 +-2.789700000000000e-01 + 1.714100000000000e-01 + 5.743100000000000e-01 + 8.966200000000000e-01 + 1.137300000000000e+00 + 1.325100000000000e+00 + 1.497100000000000e+00 + 1.670800000000000e+00 + 1.829800000000000e+00 + 1.932600000000000e+00 + 1.938800000000000e+00 + 1.835000000000000e+00 + 1.641900000000000e+00 + 1.399500000000000e+00 + 1.141100000000000e+00 + 8.759400000000001e-01 + 5.910100000000000e-01 + 2.690700000000000e-01 +-9.210300000000000e-02 +-4.734700000000000e-01 +-8.444000000000000e-01 +-1.178800000000000e+00 +-1.464400000000000e+00 +-1.700000000000000e+00 +-1.884000000000000e+00 +-2.006700000000000e+00 +-2.052500000000000e+00 +-2.009400000000000e+00 +-1.877000000000000e+00 +-1.667100000000000e+00 +-1.395500000000000e+00 +-1.075200000000000e+00 +-7.163600000000000e-01 +-3.330300000000000e-01 + 5.159800000000000e-02 + 4.080200000000000e-01 + 7.117400000000000e-01 + 9.542900000000000e-01 + 1.144100000000000e+00 + 1.295200000000000e+00 + 1.411400000000000e+00 + 1.480400000000000e+00 + 1.482300000000000e+00 + 1.407600000000000e+00 + 1.271100000000000e+00 + 1.109100000000000e+00 + 9.607400000000000e-01 + 8.460600000000000e-01 + 7.560000000000000e-01 + 6.603800000000000e-01 + 5.281100000000000e-01 + 3.456600000000000e-01 + 1.230800000000000e-01 +-1.133100000000000e-01 +-3.341300000000000e-01 +-5.172800000000000e-01 +-6.518800000000000e-01 +-7.378900000000000e-01 +-7.846700000000000e-01 +-8.089600000000000e-01 +-8.297099999999999e-01 +-8.592100000000000e-01 +-8.944800000000001e-01 +-9.161700000000000e-01 +-8.986499999999999e-01 +-8.271200000000000e-01 +-7.104600000000000e-01 +-5.797200000000000e-01 +-4.714200000000000e-01 +-4.056800000000000e-01 +-3.738800000000000e-01 +-3.437300000000000e-01 +-2.782900000000000e-01 +-1.559300000000000e-01 + 2.113300000000000e-02 + 2.328700000000000e-01 + 4.551300000000000e-01 + 6.701700000000000e-01 + 8.678000000000000e-01 + 1.039300000000000e+00 + 1.171500000000000e+00 + 1.246600000000000e+00 + 1.249000000000000e+00 + 1.171500000000000e+00 + 1.019100000000000e+00 + 8.062300000000000e-01 + 5.516200000000000e-01 + 2.746200000000000e-01 +-5.570500000000000e-03 +-2.688400000000000e-01 +-4.942900000000000e-01 +-6.627900000000000e-01 +-7.611400000000000e-01 +-7.857100000000000e-01 +-7.437300000000000e-01 +-6.515900000000000e-01 +-5.310100000000000e-01 +-4.042500000000000e-01 +-2.898600000000000e-01 +-2.003400000000000e-01 +-1.420400000000000e-01 +-1.162000000000000e-01 +-1.194100000000000e-01 +-1.420900000000000e-01 +-1.666100000000000e-01 +-1.689100000000000e-01 +-1.267400000000000e-01 +-3.294800000000000e-02 + 9.378800000000000e-02 + 2.103400000000000e-01 + 2.663500000000000e-01 + 2.304700000000000e-01 + 1.102400000000000e-01 +-4.834200000000000e-02 +-1.833900000000000e-01 +-2.488600000000000e-01 +-2.354700000000000e-01 +-1.679100000000000e-01 +-8.221500000000000e-02 +-7.904800000000000e-04 + 7.690800000000000e-02 + 1.631300000000000e-01 + 2.617100000000000e-01 + 3.571300000000000e-01 + 4.227700000000000e-01 + 4.414000000000000e-01 + 4.206000000000000e-01 + 3.890600000000000e-01 + 3.754800000000000e-01 + 3.860000000000000e-01 + 3.981300000000000e-01 + 3.766600000000000e-01 + 2.999200000000000e-01 + 1.769600000000000e-01 + 4.318500000000000e-02 +-6.211200000000000e-02 +-1.197700000000000e-01 +-1.401300000000000e-01 +-1.529400000000000e-01 +-1.867700000000000e-01 +-2.526800000000000e-01 +-3.412500000000000e-01 +-4.316400000000000e-01 +-5.040500000000000e-01 +-5.470400000000000e-01 +-5.578000000000000e-01 +-5.386700000000000e-01 +-4.945900000000000e-01 +-4.330100000000000e-01 +-3.643400000000000e-01 +-3.004500000000000e-01 +-2.507000000000000e-01 +-2.175200000000000e-01 +-1.940800000000000e-01 +-1.654500000000000e-01 +-1.132800000000000e-01 +-2.286300000000000e-02 + 1.092900000000000e-01 + 2.703600000000000e-01 + 4.323000000000000e-01 + 5.607900000000000e-01 + 6.298600000000000e-01 + 6.344000000000000e-01 + 5.927500000000000e-01 + 5.358800000000000e-01 + 4.893300000000000e-01 + 4.595800000000000e-01 + 4.343900000000000e-01 + 3.966300000000000e-01 + 3.407400000000000e-01 + 2.786900000000000e-01 + 2.302400000000000e-01 + 2.051900000000000e-01 + 1.922600000000000e-01 + 1.643400000000000e-01 + 9.697400000000000e-02 +-1.403100000000000e-02 +-1.493600000000000e-01 +-2.797100000000000e-01 +-3.853000000000000e-01 +-4.662500000000000e-01 +-5.367800000000000e-01 +-6.088900000000000e-01 +-6.791600000000000e-01 +-7.286100000000000e-01 +-7.344500000000000e-01 +-6.839499999999999e-01 +-5.806400000000000e-01 +-4.408900000000000e-01 +-2.862900000000000e-01 +-1.380700000000000e-01 +-1.450400000000000e-02 + 7.231799999999999e-02 + 1.226000000000000e-01 + 1.535700000000000e-01 + 1.948100000000000e-01 + 2.712600000000000e-01 + 3.819300000000000e-01 + 4.907800000000000e-01 + 5.413500000000000e-01 + 4.907300000000000e-01 + 3.415000000000000e-01 + 1.480500000000000e-01 +-1.102800000000000e-02 +-7.835000000000000e-02 +-5.088500000000000e-02 + 2.229700000000000e-02 + 7.634199999999999e-02 + 7.574599999999999e-02 + 3.719400000000000e-02 + 1.539200000000000e-02 + 6.334700000000000e-02 + 1.952700000000000e-01 + 3.763300000000000e-01 + 5.430800000000000e-01 + 6.381700000000000e-01 + 6.358800000000000e-01 + 5.456400000000000e-01 + 3.971000000000000e-01 + 2.211100000000000e-01 + 3.915300000000000e-02 +-1.362000000000000e-01 +-2.960000000000000e-01 +-4.320100000000000e-01 +-5.382600000000000e-01 +-6.138800000000000e-01 +-6.631899999999999e-01 +-6.925700000000000e-01 +-7.069299999999999e-01 +-7.087100000000000e-01 +-6.992400000000000e-01 +-6.797200000000000e-01 +-6.499700000000000e-01 +-6.059099999999999e-01 +-5.389699999999999e-01 +-4.394500000000000e-01 +-3.021200000000000e-01 +-1.300700000000000e-01 + 6.623999999999999e-02 + 2.738100000000000e-01 + 4.818700000000000e-01 + 6.829100000000000e-01 + 8.696400000000000e-01 + 1.031100000000000e+00 + 1.151500000000000e+00 + 1.213300000000000e+00 + 1.202300000000000e+00 + 1.112700000000000e+00 + 9.496200000000000e-01 + 7.290700000000000e-01 + 4.759800000000000e-01 + 2.193600000000000e-01 +-1.488800000000000e-02 +-2.116800000000000e-01 +-3.706700000000000e-01 +-5.030800000000000e-01 +-6.220500000000000e-01 +-7.325700000000001e-01 +-8.282600000000000e-01 +-8.975200000000000e-01 +-9.342700000000000e-01 +-9.437100000000000e-01 +-9.370500000000000e-01 +-9.184800000000000e-01 +-8.754200000000000e-01 +-7.821700000000000e-01 +-6.171000000000000e-01 +-3.822000000000000e-01 +-1.097300000000000e-01 + 1.506700000000000e-01 + 3.571900000000000e-01 + 4.966000000000000e-01 + 5.868000000000000e-01 + 6.607600000000000e-01 + 7.441200000000000e-01 + 8.419500000000000e-01 + 9.412900000000000e-01 + 1.023400000000000e+00 + 1.074000000000000e+00 + 1.083500000000000e+00 + 1.041200000000000e+00 + 9.314500000000000e-01 + 7.401600000000000e-01 + 4.672100000000000e-01 + 1.353000000000000e-01 +-2.136500000000000e-01 +-5.339900000000000e-01 +-7.938000000000000e-01 +-9.830300000000000e-01 +-1.108300000000000e+00 +-1.180000000000000e+00 +-1.202800000000000e+00 +-1.174000000000000e+00 +-1.090000000000000e+00 +-9.526400000000000e-01 +-7.691000000000000e-01 +-5.486700000000000e-01 +-2.993900000000000e-01 +-3.001200000000000e-02 + 2.442700000000000e-01 + 4.981500000000000e-01 + 6.996400000000000e-01 + 8.205300000000000e-01 + 8.481400000000000e-01 + 7.914200000000000e-01 + 6.778999999999999e-01 + 5.433700000000000e-01 + 4.196600000000000e-01 + 3.257300000000000e-01 + 2.648400000000000e-01 + 2.279000000000000e-01 + 2.009100000000000e-01 + 1.733800000000000e-01 + 1.432700000000000e-01 + 1.153000000000000e-01 + 9.299600000000000e-02 + 6.978100000000000e-02 + 2.703100000000000e-02 +-5.652800000000000e-02 +-1.880300000000000e-01 +-3.479700000000000e-01 +-4.935500000000000e-01 +-5.794000000000000e-01 +-5.839200000000000e-01 +-5.228400000000000e-01 +-4.388000000000000e-01 +-3.722700000000000e-01 +-3.338000000000000e-01 +-2.978300000000000e-01 +-2.232100000000000e-01 +-8.612300000000001e-02 + 9.838900000000000e-02 + 2.818200000000000e-01 + 4.102700000000000e-01 + 4.549400000000000e-01 + 4.244700000000000e-01 + 3.531000000000000e-01 + 2.763700000000000e-01 + 2.131000000000000e-01 + 1.641800000000000e-01 + 1.243600000000000e-01 + 9.366099999999999e-02 + 7.847100000000000e-02 + 8.340200000000000e-02 + 1.034200000000000e-01 + 1.243100000000000e-01 + 1.306800000000000e-01 + 1.137200000000000e-01 + 7.190199999999999e-02 + 5.830700000000000e-03 +-8.486000000000000e-02 +-1.969900000000000e-01 +-3.147900000000000e-01 +-4.068800000000000e-01 +-4.370600000000000e-01 +-3.855800000000000e-01 +-2.662800000000000e-01 +-1.249300000000000e-01 +-1.647100000000000e-02 + 2.524200000000000e-02 + 5.194400000000000e-03 +-3.941000000000000e-02 +-6.462300000000000e-02 +-4.598900000000000e-02 + 1.127700000000000e-02 + 8.179400000000001e-02 + 1.387100000000000e-01 + 1.671000000000000e-01 + 1.650400000000000e-01 + 1.367200000000000e-01 + 8.699700000000000e-02 + 2.217800000000000e-02 +-4.621100000000000e-02 +-1.018000000000000e-01 +-1.304900000000000e-01 +-1.291200000000000e-01 +-1.074400000000000e-01 +-8.030600000000000e-02 +-5.575100000000000e-02 +-2.912100000000000e-02 + 1.158700000000000e-02 + 7.360999999999999e-02 + 1.512300000000000e-01 + 2.287900000000000e-01 + 2.922900000000000e-01 + 3.390200000000000e-01 + 3.764300000000000e-01 + 4.110900000000000e-01 + 4.379200000000000e-01 + 4.399800000000000e-01 + 4.003400000000000e-01 + 3.163600000000000e-01 + 2.041900000000000e-01 + 8.899500000000000e-02 +-1.179100000000000e-02 +-9.889199999999999e-02 +-1.872800000000000e-01 +-2.914000000000000e-01 +-4.112600000000000e-01 +-5.296200000000000e-01 +-6.211400000000000e-01 +-6.653200000000000e-01 +-6.542100000000000e-01 +-5.919400000000000e-01 +-4.902300000000000e-01 +-3.654000000000000e-01 +-2.380400000000000e-01 +-1.313800000000000e-01 +-6.470099999999999e-02 +-4.418300000000000e-02 +-5.825900000000000e-02 +-8.316100000000000e-02 +-9.632300000000001e-02 +-8.788100000000000e-02 +-6.105000000000000e-02 +-2.127600000000000e-02 + 3.563300000000000e-02 + 1.242100000000000e-01 + 2.558100000000000e-01 + 4.209200000000000e-01 + 5.830900000000000e-01 + 6.927400000000000e-01 + 7.137200000000000e-01 + 6.445700000000000e-01 + 5.191500000000000e-01 + 3.861600000000000e-01 + 2.820700000000000e-01 + 2.155800000000000e-01 + 1.719200000000000e-01 + 1.300400000000000e-01 + 7.850000000000000e-02 + 1.968500000000000e-02 +-3.619600000000000e-02 +-7.883999999999999e-02 +-1.004700000000000e-01 +-9.453300000000001e-02 +-5.665200000000000e-02 + 9.100400000000000e-03 + 8.363200000000000e-02 + 1.348400000000000e-01 + 1.316900000000000e-01 + 6.272600000000000e-02 +-5.517800000000000e-02 +-1.864300000000000e-01 +-2.993900000000000e-01 +-3.852300000000000e-01 +-4.582600000000000e-01 +-5.373000000000000e-01 +-6.238700000000000e-01 +-6.955500000000000e-01 +-7.212100000000000e-01 +-6.857900000000000e-01 +-6.044300000000000e-01 +-5.133500000000000e-01 +-4.441800000000000e-01 +-4.014900000000000e-01 +-3.606300000000000e-01 +-2.864400000000000e-01 +-1.571900000000000e-01 + 2.429700000000000e-02 + 2.378300000000000e-01 + 4.609400000000000e-01 + 6.765700000000000e-01 + 8.673100000000000e-01 + 1.005600000000000e+00 + 1.054800000000000e+00 + 9.879000000000000e-01 + 8.114800000000000e-01 + 5.756599999999999e-01 + 3.568100000000000e-01 + 2.202700000000000e-01 + 1.867500000000000e-01 + 2.252100000000000e-01 + 2.764000000000000e-01 + 2.901900000000000e-01 + 2.508300000000000e-01 + 1.752200000000000e-01 + 8.992900000000000e-02 + 6.929200000000000e-03 +-8.346099999999999e-02 +-1.996600000000000e-01 +-3.483500000000000e-01 +-5.129899999999999e-01 +-6.593700000000000e-01 +-7.525700000000000e-01 +-7.734200000000000e-01 +-7.248700000000000e-01 +-6.273300000000001e-01 +-5.084400000000000e-01 +-3.930000000000000e-01 +-2.958000000000000e-01 +-2.178800000000000e-01 +-1.472400000000000e-01 +-6.539200000000001e-02 + 4.065900000000000e-02 + 1.666600000000000e-01 + 2.875500000000000e-01 + 3.670200000000000e-01 + 3.763300000000000e-01 + 3.112300000000000e-01 + 1.958200000000000e-01 + 7.065500000000000e-02 +-2.668900000000000e-02 +-7.638300000000001e-02 +-7.879200000000000e-02 +-4.696700000000000e-02 + 2.464900000000000e-03 + 5.372300000000000e-02 + 9.250300000000000e-02 + 1.081600000000000e-01 + 9.991600000000000e-02 + 8.244600000000001e-02 + 8.247200000000000e-02 + 1.237000000000000e-01 + 2.080600000000000e-01 + 3.078200000000000e-01 + 3.778300000000000e-01 + 3.823700000000000e-01 + 3.183800000000000e-01 + 2.177900000000000e-01 + 1.261500000000000e-01 + 7.329200000000000e-02 + 5.751500000000000e-02 + 5.435600000000000e-02 + 4.116600000000000e-02 + 1.631600000000000e-02 +-3.008100000000000e-03 +-2.049000000000000e-03 + 1.006000000000000e-02 +-1.854500000000000e-03 +-7.793600000000001e-02 +-2.341100000000000e-01 +-4.467200000000000e-01 +-6.621100000000000e-01 +-8.237200000000000e-01 +-8.969300000000000e-01 +-8.766400000000000e-01 +-7.775000000000000e-01 +-6.191800000000000e-01 +-4.196000000000000e-01 +-1.975300000000000e-01 + 2.379600000000000e-02 + 2.212100000000000e-01 + 3.828100000000000e-01 + 5.152900000000000e-01 + 6.373000000000000e-01 + 7.605499999999999e-01 + 8.731100000000001e-01 + 9.402500000000000e-01 + 9.255900000000000e-01 + 8.183200000000000e-01 + 6.455100000000000e-01 + 4.586000000000000e-01 + 3.025200000000000e-01 + 1.894500000000000e-01 + 9.604799999999999e-02 +-1.483500000000000e-02 +-1.645000000000000e-01 +-3.421100000000000e-01 +-5.116300000000000e-01 +-6.344700000000000e-01 +-6.907799999999999e-01 +-6.862500000000000e-01 +-6.438400000000000e-01 +-5.896700000000000e-01 +-5.427500000000000e-01 +-5.113200000000000e-01 +-4.926800000000000e-01 +-4.733500000000000e-01 +-4.310700000000000e-01 +-3.422400000000000e-01 +-1.944700000000000e-01 + 2.855600000000000e-03 + 2.191100000000000e-01 + 4.167000000000000e-01 + 5.705800000000000e-01 + 6.786400000000000e-01 + 7.545500000000001e-01 + 8.083500000000000e-01 + 8.310400000000000e-01 + 7.971300000000000e-01 + 6.845599999999999e-01 + 4.966000000000000e-01 + 2.671200000000000e-01 + 4.339700000000000e-02 +-1.414500000000000e-01 +-2.851700000000000e-01 +-4.094000000000000e-01 +-5.347200000000000e-01 +-6.578200000000000e-01 +-7.488200000000000e-01 +-7.705300000000000e-01 +-7.038800000000000e-01 +-5.600200000000000e-01 +-3.707700000000000e-01 +-1.674000000000000e-01 + 3.445100000000000e-02 + 2.320400000000000e-01 + 4.199500000000000e-01 + 5.774500000000000e-01 + 6.719300000000000e-01 + 6.776100000000000e-01 + 5.952700000000000e-01 + 4.573300000000000e-01 + 3.133300000000000e-01 + 2.052800000000000e-01 + 1.487200000000000e-01 + 1.297300000000000e-01 + 1.169600000000000e-01 + 7.886300000000000e-02 +-3.338200000000000e-03 +-1.304300000000000e-01 +-2.859400000000000e-01 +-4.405900000000000e-01 +-5.601800000000000e-01 +-6.175600000000000e-01 +-6.051900000000000e-01 +-5.409400000000000e-01 +-4.605800000000000e-01 +-3.984500000000000e-01 +-3.672500000000000e-01 +-3.511300000000000e-01 +-3.181500000000000e-01 +-2.444800000000000e-01 +-1.329000000000000e-01 +-1.186000000000000e-02 + 8.494000000000000e-02 + 1.433200000000000e-01 + 1.794000000000000e-01 + 2.282100000000000e-01 + 3.186300000000000e-01 + 4.525600000000000e-01 + 6.022700000000000e-01 + 7.260200000000000e-01 + 7.892100000000000e-01 + 7.769400000000000e-01 + 6.929600000000000e-01 + 5.512500000000000e-01 + 3.706000000000000e-01 + 1.761500000000000e-01 + 2.494800000000000e-03 +-1.108200000000000e-01 +-1.346400000000000e-01 +-6.863300000000000e-02 + 5.101800000000000e-02 + 1.636000000000000e-01 + 2.114700000000000e-01 + 1.674600000000000e-01 + 4.539000000000000e-02 +-1.129400000000000e-01 +-2.651200000000000e-01 +-3.921400000000000e-01 +-5.039500000000000e-01 +-6.243500000000000e-01 +-7.664800000000001e-01 +-9.156300000000001e-01 +-1.031100000000000e+00 +-1.065900000000000e+00 +-9.923999999999999e-01 +-8.186400000000000e-01 +-5.847300000000000e-01 +-3.426500000000000e-01 +-1.305500000000000e-01 + 4.313000000000000e-02 + 1.969300000000000e-01 + 3.576700000000000e-01 + 5.379400000000000e-01 + 7.239800000000000e-01 + 8.813400000000000e-01 + 9.736900000000001e-01 + 9.823499999999999e-01 + 9.141500000000000e-01 + 7.942100000000000e-01 + 6.506900000000000e-01 + 5.031200000000000e-01 + 3.611500000000000e-01 + 2.311500000000000e-01 + 1.217900000000000e-01 + 4.156600000000000e-02 +-9.788500000000000e-03 +-4.711800000000000e-02 +-9.463000000000001e-02 +-1.706500000000000e-01 +-2.729400000000000e-01 +-3.766800000000000e-01 +-4.483200000000000e-01 +-4.658200000000000e-01 +-4.303200000000000e-01 +-3.607100000000000e-01 +-2.764200000000000e-01 +-1.836900000000000e-01 +-7.727199999999999e-02 + 4.412500000000000e-02 + 1.631000000000000e-01 + 2.447400000000000e-01 + 2.559100000000000e-01 + 1.885500000000000e-01 + 6.791999999999999e-02 +-6.264200000000000e-02 +-1.697500000000000e-01 +-2.489200000000000e-01 +-3.190300000000000e-01 +-3.968900000000000e-01 +-4.733000000000000e-01 +-5.122900000000000e-01 +-4.765700000000000e-01 +-3.606000000000000e-01 +-2.042200000000000e-01 +-7.387000000000001e-02 +-2.246700000000000e-02 +-5.619900000000000e-02 +-1.316600000000000e-01 +-1.845800000000000e-01 +-1.687500000000000e-01 +-7.816600000000000e-02 + 6.012400000000000e-02 + 2.122800000000000e-01 + 3.604600000000000e-01 + 5.058500000000000e-01 + 6.535000000000000e-01 + 7.954599999999999e-01 + 9.075800000000001e-01 + 9.622900000000000e-01 + 9.455500000000000e-01 + 8.638200000000000e-01 + 7.367700000000000e-01 + 5.839000000000000e-01 + 4.171700000000000e-01 + 2.441200000000000e-01 + 7.505700000000000e-02 +-7.608100000000000e-02 +-2.001800000000000e-01 +-3.031900000000000e-01 +-4.062700000000000e-01 +-5.318500000000000e-01 +-6.847700000000000e-01 +-8.438900000000000e-01 +-9.728700000000000e-01 +-1.043000000000000e+00 +-1.050300000000000e+00 +-1.012300000000000e+00 +-9.479100000000000e-01 +-8.556900000000000e-01 +-7.121000000000000e-01 +-4.918000000000000e-01 +-1.959200000000000e-01 + 1.348600000000000e-01 + 4.344500000000000e-01 + 6.441700000000000e-01 + 7.411700000000000e-01 + 7.430600000000001e-01 + 6.878100000000000e-01 + 6.061100000000000e-01 + 5.073800000000001e-01 + 3.872300000000000e-01 + 2.459800000000000e-01 + 1.001500000000000e-01 +-2.355000000000000e-02 +-1.051100000000000e-01 +-1.426900000000000e-01 +-1.474200000000000e-01 +-1.259000000000000e-01 +-6.702700000000000e-02 + 5.255700000000000e-02 + 2.457800000000000e-01 + 4.925300000000000e-01 + 7.367500000000000e-01 + 9.091000000000000e-01 + 9.613300000000000e-01 + 8.889899999999999e-01 + 7.268800000000000e-01 + 5.217300000000000e-01 + 3.023400000000000e-01 + 6.842600000000000e-02 +-1.959700000000000e-01 +-4.965300000000000e-01 +-8.108100000000000e-01 +-1.091400000000000e+00 +-1.286900000000000e+00 +-1.365700000000000e+00 +-1.326800000000000e+00 +-1.192800000000000e+00 +-9.935700000000000e-01 +-7.527199999999999e-01 +-4.840400000000000e-01 +-1.979400000000000e-01 + 9.041200000000001e-02 + 3.578500000000000e-01 + 5.767300000000000e-01 + 7.221600000000000e-01 + 7.788000000000000e-01 + 7.449000000000000e-01 + 6.336300000000000e-01 + 4.721700000000000e-01 + 2.979100000000000e-01 + 1.507500000000000e-01 + 6.238000000000000e-02 + 4.585800000000000e-02 + 9.071799999999999e-02 + 1.669900000000000e-01 + 2.373700000000000e-01 + 2.721700000000000e-01 + 2.602700000000000e-01 + 2.106700000000000e-01 + 1.447500000000000e-01 + 8.359200000000000e-02 + 3.743800000000000e-02 + 2.824500000000000e-03 +-3.156100000000000e-02 +-7.461400000000000e-02 +-1.253100000000000e-01 +-1.734600000000000e-01 +-2.085400000000000e-01 +-2.300500000000000e-01 +-2.507000000000000e-01 +-2.879900000000000e-01 +-3.483000000000000e-01 +-4.148600000000000e-01 +-4.501700000000000e-01 +-4.145100000000000e-01 +-2.905200000000000e-01 +-9.764900000000000e-02 + 1.141900000000000e-01 + 2.889300000000000e-01 + 3.914500000000000e-01 + 4.202700000000000e-01 + 3.991900000000000e-01 + 3.560900000000000e-01 + 3.055000000000000e-01 + 2.470600000000000e-01 + 1.783300000000000e-01 + 1.088600000000000e-01 + 6.181400000000000e-02 + 6.009200000000000e-02 + 1.073800000000000e-01 + 1.791300000000000e-01 + 2.315300000000000e-01 + 2.229700000000000e-01 + 1.340500000000000e-01 +-2.613500000000000e-02 +-2.283100000000000e-01 +-4.375600000000000e-01 +-6.233400000000000e-01 +-7.614300000000001e-01 +-8.320200000000000e-01 +-8.206200000000000e-01 +-7.236900000000001e-01 +-5.540700000000000e-01 +-3.398800000000000e-01 +-1.154700000000000e-01 + 9.001700000000000e-02 + 2.588000000000000e-01 + 3.825000000000000e-01 + 4.565100000000000e-01 + 4.780500000000000e-01 + 4.506500000000000e-01 + 3.901800000000000e-01 + 3.241000000000000e-01 + 2.808500000000000e-01 + 2.751300000000000e-01 + 3.004000000000000e-01 + 3.352100000000000e-01 + 3.590100000000000e-01 + 3.649500000000000e-01 + 3.592300000000000e-01 + 3.482000000000000e-01 + 3.252800000000000e-01 + 2.711800000000000e-01 + 1.692700000000000e-01 + 2.459100000000000e-02 +-1.301700000000000e-01 +-2.493600000000000e-01 +-3.007300000000000e-01 +-2.848100000000000e-01 +-2.330200000000000e-01 +-1.864300000000000e-01 +-1.713100000000000e-01 +-1.890500000000000e-01 +-2.251400000000000e-01 +-2.666300000000000e-01 +-3.117100000000000e-01 +-3.639400000000000e-01 +-4.183100000000000e-01 +-4.544300000000000e-01 +-4.457800000000000e-01 +-3.792200000000000e-01 +-2.686200000000000e-01 +-1.498300000000000e-01 +-5.894500000000000e-02 +-9.505400000000001e-03 + 1.400900000000000e-02 + 4.188800000000000e-02 + 9.543800000000000e-02 + 1.718100000000000e-01 + 2.477100000000000e-01 + 2.970300000000000e-01 + 3.075200000000000e-01 + 2.844000000000000e-01 + 2.411900000000000e-01 + 1.884300000000000e-01 + 1.310300000000000e-01 + 7.518200000000000e-02 + 3.583400000000000e-02 + 3.460200000000000e-02 + 8.684699999999999e-02 + 1.874600000000000e-01 + 3.076600000000000e-01 + 4.073000000000000e-01 + 4.547600000000000e-01 + 4.408200000000000e-01 + 3.778100000000000e-01 + 2.869600000000000e-01 + 1.854200000000000e-01 + 8.214000000000000e-02 +-1.728600000000000e-02 +-1.055300000000000e-01 +-1.757900000000000e-01 +-2.303900000000000e-01 +-2.860500000000000e-01 +-3.666000000000000e-01 +-4.841400000000000e-01 +-6.215100000000000e-01 +-7.316200000000000e-01 +-7.587800000000000e-01 +-6.707900000000000e-01 +-4.809800000000000e-01 +-2.442900000000000e-01 +-2.888600000000000e-02 + 1.187700000000000e-01 + 1.931100000000000e-01 + 2.223600000000000e-01 + 2.425700000000000e-01 + 2.720500000000000e-01 + 3.031600000000000e-01 + 3.141500000000000e-01 + 2.898200000000000e-01 + 2.352700000000000e-01 + 1.738500000000000e-01 + 1.331700000000000e-01 + 1.298600000000000e-01 + 1.626400000000000e-01 + 2.154200000000000e-01 + 2.651300000000000e-01 + 2.884200000000000e-01 + 2.656600000000000e-01 + 1.847400000000000e-01 + 4.700200000000000e-02 +-1.269300000000000e-01 +-2.972200000000000e-01 +-4.154100000000000e-01 +-4.432700000000000e-01 +-3.707600000000000e-01 +-2.223200000000000e-01 +-4.720900000000000e-02 + 1.012500000000000e-01 + 1.858900000000000e-01 + 1.954300000000000e-01 + 1.414100000000000e-01 + 4.787000000000000e-02 +-5.806600000000000e-02 +-1.508200000000000e-01 +-2.082400000000000e-01 +-2.151200000000000e-01 +-1.696400000000000e-01 +-8.835700000000000e-02 +-3.189300000000000e-03 + 5.164100000000000e-02 + 5.711500000000000e-02 + 2.054400000000000e-02 +-2.779500000000000e-02 +-5.143200000000000e-02 +-2.767600000000000e-02 + 4.151100000000000e-02 + 1.334100000000000e-01 + 2.186700000000000e-01 + 2.750200000000000e-01 + 2.925700000000000e-01 + 2.705600000000000e-01 + 2.124700000000000e-01 + 1.256000000000000e-01 + 2.499600000000000e-02 +-6.505000000000000e-02 +-1.181500000000000e-01 +-1.205000000000000e-01 +-8.352200000000000e-02 +-4.314600000000000e-02 +-4.258100000000000e-02 +-1.072400000000000e-01 +-2.275400000000000e-01 +-3.613000000000000e-01 +-4.546800000000000e-01 +-4.688000000000000e-01 +-3.961900000000000e-01 +-2.589400000000000e-01 +-9.297200000000000e-02 + 6.993400000000000e-02 + 2.117200000000000e-01 + 3.268900000000000e-01 + 4.155100000000000e-01 + 4.768200000000000e-01 + 5.070900000000000e-01 + 5.006300000000000e-01 + 4.521600000000000e-01 + 3.597400000000000e-01 + 2.290300000000000e-01 + 7.734800000000000e-02 +-6.599900000000000e-02 +-1.670400000000000e-01 +-2.010900000000000e-01 +-1.663500000000000e-01 +-8.770699999999999e-02 +-6.741700000000000e-03 + 3.714500000000000e-02 + 2.280300000000000e-02 +-4.868700000000000e-02 +-1.621500000000000e-01 +-2.997400000000000e-01 +-4.459600000000000e-01 +-5.842200000000000e-01 +-6.919200000000000e-01 +-7.431300000000000e-01 +-7.201800000000000e-01 +-6.254400000000000e-01 +-4.818600000000000e-01 +-3.187300000000000e-01 +-1.525800000000000e-01 + 2.118500000000000e-02 + 2.176000000000000e-01 + 4.404200000000000e-01 + 6.679100000000000e-01 + 8.601500000000000e-01 + 9.842400000000000e-01 + 1.037300000000000e+00 + 1.047100000000000e+00 + 1.047400000000000e+00 + 1.046100000000000e+00 + 1.013100000000000e+00 + 8.994300000000000e-01 + 6.745100000000001e-01 + 3.540200000000000e-01 +-4.797400000000000e-03 +-3.366400000000000e-01 +-6.052000000000000e-01 +-8.158100000000000e-01 +-9.960400000000000e-01 +-1.162200000000000e+00 +-1.299900000000000e+00 +-1.373700000000000e+00 +-1.355300000000000e+00 +-1.245100000000000e+00 +-1.070200000000000e+00 +-8.604900000000000e-01 +-6.281300000000000e-01 +-3.674700000000000e-01 +-7.613399999999999e-02 + 2.241900000000000e-01 + 4.891000000000000e-01 + 6.774100000000000e-01 + 7.809900000000000e-01 + 8.317800000000000e-01 + 8.768100000000000e-01 + 9.394200000000000e-01 + 9.983600000000000e-01 + 1.003500000000000e+00 + 9.175200000000000e-01 + 7.502500000000000e-01 + 5.573100000000000e-01 + 4.020200000000000e-01 + 3.096200000000000e-01 + 2.495700000000000e-01 + 1.602500000000000e-01 +-2.595100000000000e-03 +-2.302300000000000e-01 +-4.642800000000000e-01 +-6.348900000000000e-01 +-7.041900000000000e-01 +-6.837900000000000e-01 +-6.175400000000000e-01 +-5.469600000000000e-01 +-4.871700000000000e-01 +-4.285600000000000e-01 +-3.570700000000000e-01 +-2.722100000000000e-01 +-1.877400000000000e-01 +-1.172000000000000e-01 +-6.031200000000000e-02 +-3.935700000000000e-03 + 6.295700000000000e-02 + 1.343500000000000e-01 + 1.866000000000000e-01 + 1.940100000000000e-01 + 1.482500000000000e-01 + 6.601500000000000e-02 +-2.113200000000000e-02 +-8.612400000000001e-02 +-1.199400000000000e-01 +-1.300100000000000e-01 +-1.270800000000000e-01 +-1.127500000000000e-01 +-7.807500000000001e-02 +-1.324400000000000e-02 + 8.053200000000001e-02 + 1.868100000000000e-01 + 2.803200000000000e-01 + 3.387900000000000e-01 + 3.521000000000000e-01 + 3.246400000000000e-01 + 2.718500000000000e-01 + 2.150000000000000e-01 + 1.761400000000000e-01 + 1.726900000000000e-01 + 2.112700000000000e-01 + 2.830000000000000e-01 + 3.643500000000000e-01 + 4.256700000000000e-01 + 4.440400000000000e-01 + 4.125300000000000e-01 + 3.399300000000000e-01 + 2.410800000000000e-01 + 1.254600000000000e-01 +-7.403900000000000e-03 +-1.624800000000000e-01 +-3.386800000000000e-01 +-5.221600000000000e-01 +-6.890900000000000e-01 +-8.159900000000000e-01 +-8.901500000000000e-01 +-9.130400000000000e-01 +-8.954900000000000e-01 +-8.491800000000000e-01 +-7.802300000000000e-01 +-6.875599999999999e-01 +-5.651200000000000e-01 +-4.054300000000000e-01 +-2.040700000000000e-01 + 3.449900000000000e-02 + 2.906800000000000e-01 + 5.276300000000000e-01 + 6.987200000000000e-01 + 7.652900000000000e-01 + 7.173900000000000e-01 + 5.847800000000000e-01 + 4.285500000000000e-01 + 3.148900000000000e-01 + 2.847500000000000e-01 + 3.369300000000000e-01 + 4.341900000000000e-01 + 5.273200000000000e-01 + 5.810200000000000e-01 + 5.858700000000000e-01 + 5.517800000000000e-01 + 4.914500000000000e-01 + 4.080700000000000e-01 + 2.959800000000000e-01 + 1.517900000000000e-01 +-1.477400000000000e-02 +-1.801300000000000e-01 +-3.174600000000000e-01 +-4.112900000000000e-01 +-4.654300000000000e-01 +-4.993600000000000e-01 +-5.353800000000000e-01 +-5.850600000000000e-01 +-6.422900000000000e-01 +-6.857700000000000e-01 +-6.884800000000000e-01 +-6.293200000000000e-01 +-5.024000000000000e-01 +-3.213500000000000e-01 +-1.171800000000000e-01 + 7.026200000000001e-02 + 2.049300000000000e-01 + 2.670300000000000e-01 + 2.596600000000000e-01 + 2.062500000000000e-01 + 1.398100000000000e-01 + 8.955000000000000e-02 + 7.138400000000000e-02 + 8.630200000000000e-02 + 1.253400000000000e-01 + 1.765900000000000e-01 + 2.299200000000000e-01 + 2.779500000000000e-01 + 3.149500000000000e-01 + 3.359000000000000e-01 + 3.366500000000000e-01 + 3.143200000000000e-01 + 2.672900000000000e-01 + 1.952700000000000e-01 + 1.007000000000000e-01 +-8.763500000000000e-03 +-1.189200000000000e-01 +-2.120000000000000e-01 +-2.743800000000000e-01 +-3.050100000000000e-01 +-3.179100000000000e-01 +-3.346900000000000e-01 +-3.698200000000000e-01 +-4.175000000000000e-01 +-4.498600000000000e-01 +-4.293200000000000e-01 +-3.286600000000000e-01 +-1.468200000000000e-01 + 8.888600000000001e-02 + 3.343000000000000e-01 + 5.455900000000000e-01 + 6.919300000000000e-01 + 7.588400000000000e-01 + 7.451900000000000e-01 + 6.601700000000000e-01 + 5.230500000000000e-01 + 3.628500000000000e-01 + 2.123900000000000e-01 + 9.563800000000000e-02 + 1.490500000000000e-02 +-5.164800000000000e-02 +-1.366500000000000e-01 +-2.602100000000000e-01 +-4.116700000000000e-01 +-5.504100000000000e-01 +-6.274600000000000e-01 +-6.152000000000000e-01 +-5.253000000000000e-01 +-4.024900000000000e-01 +-2.981600000000000e-01 +-2.411600000000000e-01 +-2.250500000000000e-01 +-2.186100000000000e-01 +-1.906300000000000e-01 +-1.309300000000000e-01 +-5.427700000000000e-02 + 1.294500000000000e-02 + 5.172600000000000e-02 + 6.137200000000000e-02 + 5.671100000000000e-02 + 5.652300000000000e-02 + 7.317600000000000e-02 + 1.100700000000000e-01 + 1.657700000000000e-01 + 2.386300000000000e-01 + 3.269500000000000e-01 + 4.251400000000000e-01 + 5.205500000000000e-01 + 5.951600000000000e-01 + 6.314000000000000e-01 + 6.182000000000000e-01 + 5.530400000000000e-01 + 4.399200000000000e-01 + 2.865100000000000e-01 + 1.035300000000000e-01 +-9.374100000000000e-02 +-2.852300000000000e-01 +-4.495000000000000e-01 +-5.701000000000001e-01 +-6.401300000000000e-01 +-6.617300000000000e-01 +-6.409000000000000e-01 +-5.826200000000000e-01 +-4.910000000000000e-01 +-3.741900000000000e-01 +-2.485300000000000e-01 +-1.357900000000000e-01 +-5.274500000000000e-02 + 4.003300000000000e-04 + 4.329400000000000e-02 + 1.058300000000000e-01 + 2.103100000000000e-01 + 3.564700000000000e-01 + 5.190300000000000e-01 + 6.587100000000000e-01 + 7.391000000000000e-01 + 7.390500000000000e-01 + 6.556400000000000e-01 + 5.000200000000000e-01 + 2.925800000000000e-01 + 6.056700000000000e-02 +-1.638200000000000e-01 +-3.492000000000000e-01 +-4.749700000000000e-01 +-5.398900000000000e-01 +-5.614300000000000e-01 +-5.637500000000000e-01 +-5.612700000000000e-01 +-5.498800000000000e-01 +-5.129400000000000e-01 +-4.384200000000000e-01 +-3.333600000000000e-01 +-2.234400000000000e-01 +-1.363000000000000e-01 +-8.094700000000001e-02 +-3.941200000000000e-02 + 2.135500000000000e-02 + 1.250100000000000e-01 + 2.662200000000000e-01 + 4.103500000000000e-01 + 5.129600000000000e-01 + 5.454100000000000e-01 + 5.096500000000000e-01 + 4.339800000000000e-01 + 3.553900000000000e-01 + 3.020800000000000e-01 + 2.861900000000000e-01 + 3.068000000000000e-01 + 3.553100000000000e-01 + 4.161400000000000e-01 + 4.635200000000000e-01 + 4.619200000000000e-01 + 3.765700000000000e-01 + 1.920100000000000e-01 +-7.242700000000001e-02 +-3.625200000000000e-01 +-6.082200000000000e-01 +-7.531099999999999e-01 +-7.778800000000000e-01 +-7.048200000000000e-01 +-5.817500000000000e-01 +-4.560100000000000e-01 +-3.538300000000000e-01 +-2.756500000000000e-01 +-2.070700000000000e-01 +-1.361800000000000e-01 +-6.551500000000000e-02 +-1.140800000000000e-02 + 8.095500000000000e-03 +-1.157000000000000e-02 +-5.339300000000000e-02 +-8.412300000000000e-02 +-7.147600000000000e-02 +-3.896400000000000e-03 + 9.936300000000001e-02 + 1.957800000000000e-01 + 2.424900000000000e-01 + 2.220800000000000e-01 + 1.551200000000000e-01 + 9.021899999999999e-02 + 7.580800000000000e-02 + 1.307000000000000e-01 + 2.320300000000000e-01 + 3.288300000000000e-01 + 3.729900000000000e-01 + 3.474900000000000e-01 + 2.740200000000000e-01 + 1.959900000000000e-01 + 1.495300000000000e-01 + 1.425400000000000e-01 + 1.548900000000000e-01 + 1.576400000000000e-01 + 1.359400000000000e-01 + 9.897400000000001e-02 + 7.081000000000000e-02 + 7.006600000000000e-02 + 9.377600000000000e-02 + 1.168400000000000e-01 + 1.068300000000000e-01 + 4.339500000000000e-02 +-7.047500000000000e-02 +-2.116600000000000e-01 +-3.506700000000000e-01 +-4.660700000000000e-01 +-5.510900000000000e-01 +-6.101400000000000e-01 +-6.499400000000000e-01 +-6.722200000000000e-01 +-6.721700000000000e-01 +-6.422800000000000e-01 +-5.774200000000000e-01 +-4.773100000000000e-01 +-3.451800000000000e-01 +-1.847000000000000e-01 + 1.428800000000000e-03 + 2.092700000000000e-01 + 4.288800000000000e-01 + 6.404000000000000e-01 + 8.148800000000000e-01 + 9.210500000000000e-01 + 9.361200000000000e-01 + 8.553100000000000e-01 + 6.956100000000000e-01 + 4.913500000000000e-01 + 2.837000000000000e-01 + 1.082800000000000e-01 +-1.415600000000000e-02 +-8.158700000000001e-02 +-1.087400000000000e-01 +-1.204900000000000e-01 +-1.424200000000000e-01 +-1.904900000000000e-01 +-2.630300000000000e-01 +-3.389800000000000e-01 +-3.849900000000000e-01 +-3.704300000000000e-01 +-2.837900000000000e-01 +-1.418300000000000e-01 + 1.504900000000000e-02 + 1.400400000000000e-01 + 2.007700000000000e-01 + 1.920200000000000e-01 + 1.333700000000000e-01 + 5.412300000000000e-02 +-2.391000000000000e-02 +-9.467700000000000e-02 +-1.628200000000000e-01 +-2.306600000000000e-01 +-2.881300000000000e-01 +-3.139800000000000e-01 +-2.883200000000000e-01 +-2.078700000000000e-01 +-9.296500000000001e-02 + 1.954200000000000e-02 + 9.415100000000000e-02 + 1.148400000000000e-01 + 9.245200000000001e-02 + 5.661500000000000e-02 + 3.706600000000000e-02 + 4.563700000000000e-02 + 7.020899999999999e-02 + 8.473899999999999e-02 + 6.929399999999999e-02 + 2.711300000000000e-02 +-1.345500000000000e-02 +-1.512200000000000e-02 + 4.317400000000000e-02 + 1.485000000000000e-01 + 2.566500000000000e-01 + 3.156500000000000e-01 + 2.960400000000000e-01 + 2.081400000000000e-01 + 9.446300000000001e-02 + 1.936300000000000e-03 +-4.713600000000000e-02 +-6.553700000000000e-02 +-8.641500000000001e-02 +-1.348600000000000e-01 +-2.068600000000000e-01 +-2.705800000000000e-01 +-2.879500000000000e-01 +-2.399300000000000e-01 +-1.371800000000000e-01 +-1.053700000000000e-02 + 1.088900000000000e-01 + 2.035500000000000e-01 + 2.683800000000000e-01 + 2.998400000000000e-01 + 2.883500000000000e-01 + 2.230800000000000e-01 + 1.054300000000000e-01 +-4.200800000000000e-02 +-1.812600000000000e-01 +-2.773200000000000e-01 +-3.153000000000000e-01 +-3.028400000000000e-01 +-2.563300000000000e-01 +-1.833000000000000e-01 +-7.695299999999999e-02 + 7.160500000000000e-02 + 2.534600000000000e-01 + 4.319400000000000e-01 + 5.531600000000000e-01 + 5.711900000000000e-01 + 4.704700000000000e-01 + 2.701400000000000e-01 + 9.435000000000001e-03 +-2.724600000000000e-01 +-5.466500000000000e-01 +-7.895900000000000e-01 +-9.723200000000000e-01 +-1.057900000000000e+00 +-1.013500000000000e+00 +-8.297400000000000e-01 +-5.320800000000000e-01 +-1.748500000000000e-01 + 1.795500000000000e-01 + 4.826200000000000e-01 + 7.100300000000000e-01 + 8.576300000000000e-01 + 9.306000000000000e-01 + 9.357200000000000e-01 + 8.809000000000000e-01 + 7.782900000000000e-01 + 6.450300000000000e-01 + 4.999200000000000e-01 + 3.593400000000000e-01 + 2.362900000000000e-01 + 1.418300000000000e-01 + 8.422800000000000e-02 + 6.245600000000000e-02 + 5.805300000000000e-02 + 3.439200000000000e-02 +-5.010200000000000e-02 +-2.189700000000000e-01 +-4.592000000000000e-01 +-7.215200000000001e-01 +-9.419100000000000e-01 +-1.071500000000000e+00 +-1.095600000000000e+00 +-1.030300000000000e+00 +-9.024400000000000e-01 +-7.303100000000000e-01 +-5.197700000000000e-01 +-2.768000000000000e-01 +-2.260700000000000e-02 + 2.045600000000000e-01 + 3.651100000000000e-01 + 4.406400000000000e-01 + 4.461100000000000e-01 + 4.221300000000000e-01 + 4.127700000000000e-01 + 4.439100000000000e-01 + 5.148100000000000e-01 + 6.042800000000000e-01 + 6.833700000000000e-01 + 7.250799999999999e-01 + 7.088900000000000e-01 + 6.239700000000000e-01 + 4.746900000000000e-01 + 2.853600000000000e-01 + 9.695900000000000e-02 +-4.829800000000000e-02 +-1.280500000000000e-01 +-1.526900000000000e-01 +-1.588600000000000e-01 +-1.853200000000000e-01 +-2.465900000000000e-01 +-3.227200000000000e-01 +-3.726400000000000e-01 +-3.617800000000000e-01 +-2.848200000000000e-01 +-1.687500000000000e-01 +-5.628600000000000e-02 + 1.709000000000000e-02 + 3.682600000000000e-02 + 7.479400000000000e-03 +-5.876300000000000e-02 +-1.519100000000000e-01 +-2.654600000000000e-01 +-3.911900000000000e-01 +-5.146600000000000e-01 +-6.168000000000000e-01 +-6.801500000000000e-01 +-6.945500000000000e-01 +-6.578600000000000e-01 +-5.726000000000000e-01 +-4.424600000000000e-01 +-2.718200000000000e-01 +-6.760099999999999e-02 + 1.595300000000000e-01 + 3.963800000000000e-01 + 6.292000000000000e-01 + 8.436700000000000e-01 + 1.022600000000000e+00 + 1.144300000000000e+00 + 1.186900000000000e+00 + 1.137100000000000e+00 + 1.000100000000000e+00 + 8.019900000000000e-01 + 5.810800000000000e-01 + 3.725900000000000e-01 + 1.953700000000000e-01 + 4.831000000000000e-02 +-8.246700000000000e-02 +-2.117200000000000e-01 +-3.457300000000000e-01 +-4.794100000000000e-01 +-5.986800000000000e-01 +-6.851800000000000e-01 +-7.219500000000000e-01 +-7.002900000000000e-01 +-6.269300000000000e-01 +-5.268500000000000e-01 +-4.366000000000000e-01 +-3.872500000000000e-01 +-3.851000000000000e-01 +-4.033900000000000e-01 +-3.942500000000000e-01 +-3.170700000000000e-01 +-1.666200000000000e-01 + 1.833200000000000e-02 + 1.738600000000000e-01 + 2.467400000000000e-01 + 2.247300000000000e-01 + 1.422500000000000e-01 + 5.861200000000000e-02 + 2.413700000000000e-02 + 5.586800000000000e-02 + 1.361100000000000e-01 + 2.303600000000000e-01 + 3.094400000000000e-01 + 3.608700000000000e-01 + 3.854200000000000e-01 + 3.863600000000000e-01 + 3.624200000000000e-01 + 3.102200000000000e-01 + 2.324400000000000e-01 + 1.432900000000000e-01 + 6.512400000000000e-02 + 1.763500000000000e-02 + 6.525600000000000e-03 + 1.942900000000000e-02 + 3.194600000000000e-02 + 2.061200000000000e-02 +-2.415500000000000e-02 +-9.191800000000000e-02 +-1.561800000000000e-01 +-1.868900000000000e-01 +-1.657100000000000e-01 +-9.648300000000000e-02 +-5.040100000000000e-03 + 7.224300000000000e-02 + 1.054200000000000e-01 + 8.424300000000000e-02 + 2.052900000000000e-02 +-6.089900000000000e-02 +-1.357600000000000e-01 +-1.893000000000000e-01 +-2.160700000000000e-01 +-2.136800000000000e-01 +-1.782400000000000e-01 +-1.072800000000000e-01 +-7.925700000000001e-03 + 9.751700000000001e-02 + 1.760700000000000e-01 + 1.982100000000000e-01 + 1.531000000000000e-01 + 5.435100000000000e-02 +-6.778400000000000e-02 +-1.821400000000000e-01 +-2.693300000000000e-01 +-3.237400000000000e-01 +-3.464000000000000e-01 +-3.367800000000000e-01 +-2.915400000000000e-01 +-2.107900000000000e-01 +-1.051500000000000e-01 + 3.815800000000000e-03 + 9.191600000000000e-02 + 1.437100000000000e-01 + 1.588000000000000e-01 + 1.490600000000000e-01 + 1.298000000000000e-01 + 1.120400000000000e-01 + 1.008000000000000e-01 + 9.884800000000001e-02 + 1.108900000000000e-01 + 1.436300000000000e-01 + 2.015900000000000e-01 + 2.820000000000000e-01 + 3.727400000000000e-01 + 4.546400000000000e-01 + 5.066700000000000e-01 + 5.120600000000000e-01 + 4.639100000000000e-01 + 3.689500000000000e-01 + 2.475200000000000e-01 + 1.272900000000000e-01 + 3.117400000000000e-02 +-3.560600000000000e-02 +-9.044700000000000e-02 +-1.646300000000000e-01 +-2.834300000000000e-01 +-4.467300000000000e-01 +-6.235300000000000e-01 +-7.656300000000000e-01 +-8.325399999999999e-01 +-8.113899999999999e-01 +-7.189500000000000e-01 +-5.859600000000000e-01 +-4.365200000000000e-01 +-2.781600000000000e-01 +-1.084800000000000e-01 + 6.927100000000000e-02 + 2.362500000000000e-01 + 3.627400000000000e-01 + 4.242200000000000e-01 + 4.160500000000000e-01 + 3.557900000000000e-01 + 2.724500000000000e-01 + 1.919900000000000e-01 + 1.298000000000000e-01 + 9.318600000000000e-02 + 8.763799999999999e-02 + 1.181800000000000e-01 + 1.832600000000000e-01 + 2.674300000000000e-01 + 3.419700000000000e-01 + 3.767400000000000e-01 + 3.566700000000000e-01 + 2.911000000000000e-01 + 2.086700000000000e-01 + 1.406300000000000e-01 + 1.037500000000000e-01 + 9.382900000000000e-02 + 9.229400000000000e-02 + 7.979400000000000e-02 + 4.688500000000000e-02 +-3.848800000000000e-03 +-6.310700000000000e-02 +-1.222500000000000e-01 +-1.780900000000000e-01 +-2.337200000000000e-01 +-2.967200000000000e-01 +-3.755900000000000e-01 +-4.749900000000000e-01 +-5.905300000000000e-01 +-7.058200000000000e-01 +-7.947700000000000e-01 +-8.297300000000000e-01 +-7.915900000000000e-01 +-6.755900000000000e-01 +-4.897200000000000e-01 +-2.479900000000000e-01 + 3.465500000000000e-02 + 3.409100000000000e-01 + 6.452400000000000e-01 + 9.111800000000000e-01 + 1.098300000000000e+00 + 1.177500000000000e+00 + 1.145100000000000e+00 + 1.024700000000000e+00 + 8.537200000000000e-01 + 6.638900000000000e-01 + 4.682000000000000e-01 + 2.637400000000000e-01 + 4.610100000000000e-02 +-1.769600000000000e-01 +-3.836000000000000e-01 +-5.483900000000000e-01 +-6.558600000000000e-01 +-7.058800000000000e-01 +-7.076100000000000e-01 +-6.688400000000000e-01 +-5.909000000000000e-01 +-4.733300000000000e-01 +-3.230300000000000e-01 +-1.584600000000000e-01 +-3.934200000000000e-03 + 1.213000000000000e-01 + 2.096500000000000e-01 + 2.616400000000000e-01 + 2.761000000000000e-01 + 2.445300000000000e-01 + 1.569600000000000e-01 + 1.640300000000000e-02 +-1.497100000000000e-01 +-2.928800000000000e-01 +-3.630600000000000e-01 +-3.336800000000000e-01 +-2.169000000000000e-01 +-5.930300000000000e-02 + 7.937700000000000e-02 + 1.529500000000000e-01 + 1.474600000000000e-01 + 8.477500000000000e-02 + 1.157300000000000e-02 +-2.018900000000000e-02 + 2.608000000000000e-02 + 1.569000000000000e-01 + 3.453500000000000e-01 + 5.411899999999999e-01 + 6.909200000000000e-01 + 7.584600000000000e-01 + 7.355100000000000e-01 + 6.362500000000000e-01 + 4.815700000000000e-01 + 2.854800000000000e-01 + 5.464700000000000e-02 +-1.995700000000000e-01 +-4.485200000000000e-01 +-6.477400000000000e-01 +-7.560500000000000e-01 +-7.602600000000000e-01 +-6.861900000000000e-01 +-5.845700000000000e-01 +-4.997900000000000e-01 +-4.433000000000000e-01 +-3.919300000000000e-01 +-3.123300000000000e-01 +-1.928900000000000e-01 +-5.785200000000000e-02 + 4.774400000000000e-02 + 9.095499999999999e-02 + 7.638499999999999e-02 + 4.450100000000000e-02 + 4.410400000000000e-02 + 9.951699999999999e-02 + 1.960200000000000e-01 + 2.923400000000000e-01 + 3.490700000000000e-01 + 3.520700000000000e-01 + 3.167300000000000e-01 + 2.745400000000000e-01 + 2.548000000000000e-01 + 2.732800000000000e-01 + 3.305600000000000e-01 + 4.142400000000000e-01 + 5.000900000000000e-01 + 5.537500000000000e-01 + 5.386100000000000e-01 + 4.316300000000000e-01 + 2.394400000000000e-01 + 1.705200000000000e-03 +-2.248900000000000e-01 +-3.950900000000000e-01 +-4.977400000000000e-01 +-5.565900000000000e-01 +-6.081000000000000e-01 +-6.719200000000000e-01 +-7.352300000000001e-01 +-7.616000000000001e-01 +-7.169100000000000e-01 +-5.928000000000000e-01 +-4.116200000000000e-01 +-2.113900000000000e-01 +-2.414300000000000e-02 + 1.365400000000000e-01 + 2.720900000000000e-01 + 3.863900000000000e-01 + 4.766600000000000e-01 + 5.349699999999999e-01 + 5.570800000000000e-01 + 5.488100000000000e-01 + 5.231100000000000e-01 + 4.897200000000000e-01 + 4.465300000000000e-01 + 3.804700000000000e-01 + 2.780100000000000e-01 + 1.375500000000000e-01 +-2.535500000000000e-02 +-1.835900000000000e-01 +-3.106400000000000e-01 +-3.913300000000000e-01 +-4.253400000000000e-01 +-4.233300000000000e-01 +-3.998300000000000e-01 +-3.673700000000000e-01 +-3.336400000000000e-01 +-3.009900000000000e-01 +-2.671300000000000e-01 +-2.269100000000000e-01 +-1.752100000000000e-01 +-1.106500000000000e-01 +-3.782400000000000e-02 + 3.385400000000000e-02 + 9.489800000000000e-02 + 1.414400000000000e-01 + 1.781400000000000e-01 + 2.161600000000000e-01 + 2.670100000000000e-01 + 3.358400000000000e-01 + 4.176700000000000e-01 + 4.983700000000000e-01 + 5.593300000000000e-01 + 5.838100000000001e-01 + 5.621500000000000e-01 + 4.946800000000000e-01 + 3.913300000000000e-01 + 2.681400000000000e-01 + 1.419000000000000e-01 + 2.479500000000000e-02 +-7.846599999999999e-02 +-1.698700000000000e-01 +-2.544000000000000e-01 +-3.359000000000000e-01 +-4.153600000000000e-01 +-4.920600000000000e-01 +-5.661100000000000e-01 +-6.393300000000000e-01 +-7.127400000000000e-01 +-7.818300000000000e-01 +-8.330700000000000e-01 +-8.451100000000000e-01 +-7.958000000000000e-01 +-6.724800000000000e-01 +-4.806200000000000e-01 +-2.460300000000000e-01 +-8.611700000000000e-03 + 1.907000000000000e-01 + 3.243600000000000e-01 + 3.880400000000000e-01 + 4.014500000000000e-01 + 3.997800000000000e-01 + 4.197500000000000e-01 + 4.864700000000000e-01 + 6.062700000000000e-01 + 7.669899999999999e-01 + 9.433800000000000e-01 + 1.103500000000000e+00 + 1.214100000000000e+00 + 1.245100000000000e+00 + 1.175300000000000e+00 + 9.993200000000000e-01 + 7.328200000000000e-01 + 4.107100000000000e-01 + 7.702100000000001e-02 +-2.301600000000000e-01 +-4.904600000000000e-01 +-7.027900000000000e-01 +-8.762200000000000e-01 +-1.017300000000000e+00 +-1.123200000000000e+00 +-1.184800000000000e+00 +-1.196800000000000e+00 +-1.164700000000000e+00 +-1.102200000000000e+00 +-1.021100000000000e+00 +-9.212900000000001e-01 +-7.902600000000000e-01 +-6.129400000000000e-01 +-3.850500000000000e-01 +-1.197800000000000e-01 + 1.568900000000000e-01 + 4.177000000000000e-01 + 6.432400000000000e-01 + 8.224700000000000e-01 + 9.469700000000000e-01 + 1.006800000000000e+00 + 9.940700000000000e-01 + 9.131400000000000e-01 + 7.868200000000000e-01 + 6.516900000000000e-01 + 5.417000000000000e-01 + 4.702600000000000e-01 + 4.234000000000000e-01 + 3.697900000000000e-01 + 2.813200000000000e-01 + 1.505900000000000e-01 +-6.058100000000000e-03 +-1.609700000000000e-01 +-2.932900000000000e-01 +-4.000900000000000e-01 +-4.933300000000000e-01 +-5.859000000000000e-01 +-6.767600000000000e-01 +-7.453300000000000e-01 +-7.589300000000000e-01 +-6.892400000000000e-01 +-5.292000000000000e-01 +-3.013800000000000e-01 +-5.312800000000000e-02 + 1.602000000000000e-01 + 2.968200000000000e-01 + 3.447600000000000e-01 + 3.241100000000000e-01 + 2.736900000000000e-01 + 2.290300000000000e-01 + 2.047800000000000e-01 + 1.919000000000000e-01 + 1.709800000000000e-01 + 1.312600000000000e-01 + 8.108000000000000e-02 + 4.152300000000000e-02 + 2.825500000000000e-02 + 3.634500000000000e-02 + 4.139700000000000e-02 + 1.787200000000000e-02 +-3.859800000000000e-02 +-1.026500000000000e-01 +-1.329000000000000e-01 +-9.988900000000001e-02 +-9.103900000000000e-03 + 9.767199999999999e-02 + 1.644500000000000e-01 + 1.526500000000000e-01 + 6.237000000000000e-02 +-6.850299999999999e-02 +-1.848600000000000e-01 +-2.408700000000000e-01 +-2.182800000000000e-01 +-1.299000000000000e-01 +-1.084000000000000e-02 + 9.586600000000001e-02 + 1.535800000000000e-01 + 1.433400000000000e-01 + 6.998500000000001e-02 +-3.908900000000000e-02 +-1.440900000000000e-01 +-2.090300000000000e-01 +-2.168500000000000e-01 +-1.753100000000000e-01 +-1.104100000000000e-01 +-5.156700000000000e-02 +-1.774700000000000e-02 +-1.157300000000000e-02 +-2.239200000000000e-02 +-3.343000000000000e-02 +-2.794000000000000e-02 + 6.892600000000000e-03 + 7.610400000000000e-02 + 1.721200000000000e-01 + 2.722700000000000e-01 + 3.440500000000000e-01 + 3.598100000000000e-01 + 3.138200000000000e-01 + 2.298200000000000e-01 + 1.506800000000000e-01 + 1.141400000000000e-01 + 1.297000000000000e-01 + 1.725800000000000e-01 + 1.998100000000000e-01 + 1.773300000000000e-01 + 9.960700000000000e-02 +-1.066900000000000e-02 +-1.202200000000000e-01 +-2.053500000000000e-01 +-2.603800000000000e-01 +-2.912600000000000e-01 +-3.038200000000000e-01 +-2.985900000000000e-01 +-2.758000000000000e-01 +-2.438200000000000e-01 +-2.202500000000000e-01 +-2.226400000000000e-01 +-2.557800000000000e-01 +-3.070300000000000e-01 +-3.540900000000000e-01 +-3.788300000000000e-01 +-3.750200000000000e-01 +-3.439300000000000e-01 +-2.833900000000000e-01 +-1.828300000000000e-01 +-3.187500000000000e-02 + 1.632700000000000e-01 + 3.704100000000000e-01 + 5.404400000000000e-01 + 6.316400000000000e-01 + 6.327500000000000e-01 + 5.674800000000000e-01 + 4.773200000000000e-01 + 3.958700000000000e-01 + 3.343300000000000e-01 + 2.873100000000000e-01 + 2.506900000000000e-01 + 2.334500000000000e-01 + 2.508900000000000e-01 + 3.045000000000000e-01 + 3.666700000000000e-01 + 3.862800000000000e-01 + 3.153300000000000e-01 + 1.389600000000000e-01 +-1.122400000000000e-01 +-3.764400000000000e-01 +-5.911900000000000e-01 +-7.200500000000000e-01 +-7.599900000000001e-01 +-7.302700000000000e-01 +-6.555100000000000e-01 +-5.562900000000000e-01 +-4.502200000000000e-01 +-3.558900000000000e-01 +-2.910500000000000e-01 +-2.638400000000000e-01 +-2.648500000000000e-01 +-2.688000000000000e-01 +-2.468100000000000e-01 +-1.811100000000000e-01 +-7.156899999999999e-02 + 6.969300000000000e-02 + 2.291700000000000e-01 + 3.980800000000000e-01 + 5.687500000000000e-01 + 7.260100000000000e-01 + 8.438600000000001e-01 + 8.932600000000001e-01 + 8.570500000000000e-01 + 7.406700000000001e-01 + 5.699100000000000e-01 + 3.767300000000000e-01 + 1.834000000000000e-01 +-3.556000000000000e-03 +-1.867400000000000e-01 +-3.651800000000000e-01 +-5.266999999999999e-01 +-6.508600000000000e-01 +-7.190900000000000e-01 +-7.231500000000000e-01 +-6.657000000000000e-01 +-5.544500000000000e-01 +-3.969200000000000e-01 +-2.016800000000000e-01 + 1.538600000000000e-02 + 2.266200000000000e-01 + 3.967600000000000e-01 + 4.955800000000000e-01 + 5.114900000000000e-01 + 4.567600000000000e-01 + 3.605700000000000e-01 + 2.543700000000000e-01 + 1.592100000000000e-01 + 8.224800000000000e-02 + 2.244000000000000e-02 +-2.114300000000000e-02 +-4.575400000000000e-02 +-4.882300000000000e-02 +-3.530300000000000e-02 +-2.154300000000000e-02 +-3.110200000000000e-02 +-8.378600000000000e-02 +-1.840700000000000e-01 +-3.159000000000000e-01 +-4.472100000000000e-01 +-5.421000000000000e-01 +-5.746700000000000e-01 +-5.380100000000000e-01 +-4.446300000000000e-01 +-3.188300000000000e-01 +-1.852500000000000e-01 +-5.932900000000000e-02 + 5.598500000000000e-02 + 1.661900000000000e-01 + 2.767800000000000e-01 + 3.855700000000000e-01 + 4.809200000000000e-01 + 5.470300000000000e-01 + 5.736300000000000e-01 + 5.634600000000000e-01 + 5.323000000000000e-01 + 4.999900000000000e-01 + 4.772500000000000e-01 + 4.564200000000000e-01 + 4.131400000000000e-01 + 3.197000000000000e-01 + 1.634700000000000e-01 +-4.048900000000000e-02 +-2.510200000000000e-01 +-4.172300000000000e-01 +-5.010200000000000e-01 +-4.933800000000000e-01 +-4.154100000000000e-01 +-3.047800000000000e-01 +-1.967900000000000e-01 +-1.118900000000000e-01 +-5.575700000000000e-02 +-2.874700000000000e-02 +-3.507000000000000e-02 +-8.348000000000000e-02 +-1.789600000000000e-01 +-3.126700000000000e-01 +-4.592600000000000e-01 +-5.847900000000000e-01 +-6.603599999999999e-01 +-6.718700000000000e-01 +-6.201500000000000e-01 +-5.133400000000000e-01 +-3.593800000000000e-01 +-1.653600000000000e-01 + 5.709200000000000e-02 + 2.871800000000000e-01 + 4.984400000000000e-01 + 6.700000000000000e-01 + 7.974500000000000e-01 + 8.934800000000001e-01 + 9.755200000000001e-01 + 1.048300000000000e+00 + 1.094600000000000e+00 + 1.082100000000000e+00 + 9.828700000000000e-01 + 7.922300000000000e-01 + 5.329700000000001e-01 + 2.433800000000000e-01 +-4.243100000000000e-02 +-3.077400000000000e-01 +-5.518800000000000e-01 +-7.780300000000000e-01 +-9.812000000000000e-01 +-1.145300000000000e+00 +-1.250200000000000e+00 +-1.280200000000000e+00 +-1.228200000000000e+00 +-1.092800000000000e+00 +-8.751600000000000e-01 +-5.817099999999999e-01 +-2.329800000000000e-01 + 1.297700000000000e-01 + 4.490300000000000e-01 + 6.690400000000000e-01 + 7.593900000000000e-01 + 7.302900000000000e-01 + 6.292000000000000e-01 + 5.196600000000000e-01 + 4.533000000000000e-01 + 4.496000000000000e-01 + 4.922700000000000e-01 + 5.416600000000000e-01 + 5.548000000000000e-01 + 5.029000000000000e-01 + 3.798300000000000e-01 + 2.005800000000000e-01 +-7.153300000000000e-03 +-2.131600000000000e-01 +-3.926400000000000e-01 +-5.293200000000000e-01 +-6.145699999999999e-01 +-6.449800000000000e-01 +-6.216100000000000e-01 +-5.517000000000000e-01 +-4.506000000000000e-01 +-3.398200000000000e-01 +-2.393900000000000e-01 +-1.578600000000000e-01 +-8.686800000000000e-02 +-6.092900000000000e-03 + 1.027600000000000e-01 + 2.417100000000000e-01 + 3.922200000000000e-01 + 5.247500000000000e-01 + 6.149800000000000e-01 + 6.544400000000000e-01 + 6.473900000000000e-01 + 5.977100000000000e-01 + 4.990300000000000e-01 + 3.395700000000000e-01 + 1.203000000000000e-01 +-1.283700000000000e-01 +-3.487200000000000e-01 +-4.813600000000000e-01 +-5.000500000000000e-01 +-4.311600000000000e-01 +-3.410600000000000e-01 +-2.967900000000000e-01 +-3.249200000000000e-01 +-3.958500000000000e-01 +-4.440500000000000e-01 +-4.096800000000000e-01 +-2.740700000000000e-01 +-6.745500000000000e-02 + 1.515400000000000e-01 + 3.271000000000000e-01 + 4.268500000000000e-01 + 4.432700000000000e-01 + 3.832800000000000e-01 + 2.600700000000000e-01 + 9.447700000000001e-02 +-7.952500000000000e-02 +-2.165800000000000e-01 +-2.746400000000000e-01 +-2.357100000000000e-01 +-1.179200000000000e-01 + 3.141500000000000e-02 + 1.590800000000000e-01 + 2.312700000000000e-01 + 2.456200000000000e-01 + 2.244000000000000e-01 + 1.961900000000000e-01 + 1.789100000000000e-01 + 1.731900000000000e-01 + 1.662100000000000e-01 + 1.399100000000000e-01 + 7.818000000000000e-02 +-2.771700000000000e-02 +-1.741100000000000e-01 +-3.404900000000000e-01 +-4.898400000000000e-01 +-5.781600000000000e-01 +-5.719500000000000e-01 +-4.651800000000000e-01 +-2.845800000000000e-01 +-7.833200000000000e-02 + 1.063000000000000e-01 + 2.426800000000000e-01 + 3.302400000000000e-01 + 3.839600000000000e-01 + 4.175700000000000e-01 + 4.334300000000000e-01 + 4.255900000000000e-01 + 3.915700000000000e-01 + 3.413200000000000e-01 + 2.946900000000000e-01 + 2.681900000000000e-01 + 2.610300000000000e-01 + 2.517400000000000e-01 + 2.092800000000000e-01 + 1.121200000000000e-01 +-3.704600000000000e-02 +-2.107500000000000e-01 +-3.708900000000000e-01 +-4.886600000000000e-01 +-5.580900000000000e-01 +-5.951100000000000e-01 +-6.233000000000000e-01 +-6.556200000000000e-01 +-6.834700000000000e-01 +-6.801600000000000e-01 +-6.168900000000000e-01 +-4.815800000000000e-01 +-2.891200000000000e-01 +-7.621900000000000e-02 + 1.163400000000000e-01 + 2.634500000000000e-01 + 3.655200000000000e-01 + 4.424100000000000e-01 + 5.158600000000000e-01 + 5.919900000000000e-01 + 6.552400000000000e-01 + 6.774800000000000e-01 + 6.361100000000000e-01 + 5.294200000000000e-01 + 3.801100000000000e-01 + 2.257100000000000e-01 + 1.024200000000000e-01 + 3.161000000000000e-02 + 1.463800000000000e-02 + 3.600600000000000e-02 + 7.098900000000000e-02 + 9.380900000000000e-02 + 8.450299999999999e-02 + 3.405500000000000e-02 +-5.302100000000000e-02 +-1.601300000000000e-01 +-2.646000000000000e-01 +-3.460700000000000e-01 +-3.926900000000000e-01 +-4.017500000000000e-01 +-3.750900000000000e-01 +-3.141400000000000e-01 +-2.195600000000000e-01 +-9.637400000000000e-02 + 4.001400000000000e-02 + 1.636500000000000e-01 + 2.461100000000000e-01 + 2.686500000000000e-01 + 2.298500000000000e-01 + 1.433600000000000e-01 + 2.764300000000000e-02 +-1.037500000000000e-01 +-2.434900000000000e-01 +-3.831200000000000e-01 +-5.051200000000000e-01 +-5.838100000000001e-01 +-5.976100000000000e-01 +-5.445900000000000e-01 +-4.482800000000000e-01 +-3.463300000000000e-01 +-2.670800000000000e-01 +-2.096800000000000e-01 +-1.422600000000000e-01 +-2.150900000000000e-02 + 1.781400000000000e-01 + 4.443400000000000e-01 + 7.286300000000000e-01 + 9.686700000000000e-01 + 1.116900000000000e+00 + 1.158600000000000e+00 + 1.110900000000000e+00 + 1.006200000000000e+00 + 8.724100000000000e-01 + 7.208000000000000e-01 + 5.462700000000000e-01 + 3.362200000000000e-01 + 8.199900000000000e-02 +-2.123900000000000e-01 +-5.266200000000000e-01 +-8.254500000000000e-01 +-1.065400000000000e+00 +-1.205600000000000e+00 +-1.221200000000000e+00 +-1.113500000000000e+00 +-9.121800000000000e-01 +-6.666299999999999e-01 +-4.296800000000000e-01 +-2.401900000000000e-01 +-1.122600000000000e-01 +-3.530500000000000e-02 + 1.656400000000000e-02 + 7.071100000000000e-02 + 1.438300000000000e-01 + 2.357900000000000e-01 + 3.311500000000000e-01 + 4.074600000000000e-01 + 4.470100000000000e-01 + 4.468900000000000e-01 + 4.218800000000000e-01 + 3.971500000000000e-01 + 3.933400000000000e-01 + 4.121700000000000e-01 + 4.320700000000000e-01 + 4.189200000000000e-01 + 3.470900000000000e-01 + 2.183500000000000e-01 + 6.560400000000000e-02 +-6.287200000000000e-02 +-1.301900000000000e-01 +-1.323600000000000e-01 +-1.007300000000000e-01 +-8.376599999999999e-02 +-1.196400000000000e-01 +-2.164100000000000e-01 +-3.506500000000000e-01 +-4.826800000000000e-01 +-5.765100000000000e-01 +-6.122000000000000e-01 +-5.861600000000000e-01 +-5.044800000000000e-01 +-3.779300000000000e-01 +-2.224600000000000e-01 +-6.167800000000000e-02 + 7.573299999999999e-02 + 1.663400000000000e-01 + 2.046900000000000e-01 + 2.085100000000000e-01 + 2.101900000000000e-01 + 2.383200000000000e-01 + 3.012900000000000e-01 + 3.842600000000000e-01 + 4.614500000000000e-01 + 5.140500000000000e-01 + 5.401700000000000e-01 + 5.497100000000000e-01 + 5.490600000000000e-01 + 5.292900000000000e-01 + 4.684000000000000e-01 + 3.471000000000000e-01 + 1.662200000000000e-01 +-4.832400000000000e-02 +-2.577700000000000e-01 +-4.317300000000000e-01 +-5.628600000000000e-01 +-6.643700000000000e-01 +-7.524500000000000e-01 +-8.272699999999999e-01 +-8.670700000000000e-01 +-8.401999999999999e-01 +-7.269000000000000e-01 +-5.356500000000000e-01 +-3.027800000000000e-01 +-7.578500000000001e-02 + 1.093300000000000e-01 + 2.429200000000000e-01 + 3.413400000000000e-01 + 4.331000000000000e-01 + 5.401600000000000e-01 + 6.640900000000000e-01 + 7.830300000000000e-01 + 8.598000000000000e-01 + 8.574200000000000e-01 + 7.555900000000000e-01 + 5.614300000000000e-01 + 3.092100000000000e-01 + 4.836100000000000e-02 +-1.754900000000000e-01 +-3.371500000000000e-01 +-4.374400000000000e-01 +-4.949400000000000e-01 +-5.298400000000000e-01 +-5.506300000000000e-01 +-5.521100000000000e-01 +-5.247900000000000e-01 +-4.669500000000000e-01 +-3.891300000000000e-01 +-3.069800000000000e-01 +-2.281000000000000e-01 +-1.440900000000000e-01 +-3.558200000000000e-02 + 1.119000000000000e-01 + 2.918000000000000e-01 + 4.718800000000000e-01 + 6.048600000000000e-01 + 6.485800000000000e-01 + 5.837900000000000e-01 + 4.209200000000000e-01 + 1.945400000000000e-01 +-4.891300000000000e-02 +-2.633400000000000e-01 +-4.118200000000000e-01 +-4.725000000000000e-01 +-4.425700000000000e-01 +-3.392400000000000e-01 +-1.950200000000000e-01 +-4.644500000000000e-02 + 7.979300000000000e-02 + 1.759600000000000e-01 + 2.518600000000000e-01 + 3.233300000000000e-01 + 3.980100000000000e-01 + 4.674200000000000e-01 + 5.104400000000000e-01 + 5.053900000000000e-01 + 4.426800000000000e-01 + 3.301700000000000e-01 + 1.889800000000000e-01 + 4.320500000000000e-02 +-8.975900000000001e-02 +-2.035900000000000e-01 +-3.011900000000000e-01 +-3.892000000000000e-01 +-4.726100000000000e-01 +-5.518600000000000e-01 +-6.230400000000000e-01 +-6.799900000000000e-01 +-7.164100000000000e-01 +-7.261200000000000e-01 +-7.011200000000000e-01 +-6.294600000000000e-01 +-4.965300000000000e-01 +-2.923200000000000e-01 +-2.306700000000000e-02 + 2.792200000000000e-01 + 5.582300000000000e-01 + 7.498100000000000e-01 + 8.085700000000000e-01 + 7.312100000000000e-01 + 5.622800000000000e-01 + 3.770100000000000e-01 + 2.489800000000000e-01 + 2.198200000000000e-01 + 2.862000000000000e-01 + 4.084600000000000e-01 + 5.322100000000000e-01 + 6.090300000000000e-01 + 6.069500000000000e-01 + 5.115600000000000e-01 + 3.246700000000000e-01 + 6.588900000000000e-02 +-2.250100000000000e-01 +-4.922800000000000e-01 +-6.794000000000000e-01 +-7.508600000000000e-01 +-7.083600000000000e-01 +-5.901800000000000e-01 +-4.522100000000000e-01 +-3.410800000000000e-01 +-2.746900000000000e-01 +-2.400400000000000e-01 +-2.067200000000000e-01 +-1.456800000000000e-01 +-4.252800000000000e-02 + 9.897400000000001e-02 + 2.601000000000000e-01 + 4.120400000000000e-01 + 5.205600000000000e-01 + 5.525400000000000e-01 + 4.861700000000000e-01 + 3.219100000000000e-01 + 8.748400000000001e-02 +-1.687700000000000e-01 +-3.951000000000000e-01 +-5.552800000000000e-01 +-6.386200000000000e-01 +-6.559800000000000e-01 +-6.258300000000000e-01 +-5.606600000000000e-01 +-4.622900000000000e-01 +-3.275300000000000e-01 +-1.581800000000000e-01 + 3.249100000000000e-02 + 2.213600000000000e-01 + 3.833600000000000e-01 + 5.006200000000000e-01 + 5.681100000000000e-01 + 5.940000000000000e-01 + 5.953800000000000e-01 + 5.912800000000000e-01 + 5.949800000000000e-01 + 6.082500000000000e-01 + 6.203200000000000e-01 + 6.131000000000000e-01 + 5.707400000000000e-01 + 4.882700000000000e-01 + 3.735000000000000e-01 + 2.404600000000000e-01 + 9.888900000000000e-02 +-5.225100000000000e-02 +-2.217600000000000e-01 +-4.151800000000000e-01 +-6.236500000000000e-01 +-8.211500000000000e-01 +-9.724800000000000e-01 +-1.046800000000000e+00 +-1.028200000000000e+00 +-9.189800000000000e-01 +-7.354000000000001e-01 +-5.035600000000000e-01 +-2.568100000000000e-01 +-3.358800000000000e-02 + 1.290400000000000e-01 + 2.075800000000000e-01 + 2.042100000000000e-01 + 1.493800000000000e-01 + 8.945599999999999e-02 + 6.416700000000000e-02 + 8.715199999999999e-02 + 1.423000000000000e-01 + 1.983200000000000e-01 + 2.313500000000000e-01 + 2.399500000000000e-01 + 2.427400000000000e-01 + 2.620100000000000e-01 + 3.061200000000000e-01 + 3.633100000000000e-01 + 4.099400000000000e-01 + 4.255700000000000e-01 + 4.033700000000000e-01 + 3.500300000000000e-01 + 2.780400000000000e-01 + 1.982700000000000e-01 + 1.184800000000000e-01 + 4.674400000000000e-02 +-5.984100000000000e-03 +-2.829000000000000e-02 +-1.483700000000000e-02 + 2.827000000000000e-02 + 8.376500000000001e-02 + 1.290200000000000e-01 + 1.431900000000000e-01 + 1.116000000000000e-01 + 2.704200000000000e-02 +-1.093700000000000e-01 +-2.853600000000000e-01 +-4.746700000000000e-01 +-6.390300000000000e-01 +-7.383100000000000e-01 +-7.463600000000000e-01 +-6.640000000000000e-01 +-5.203600000000000e-01 +-3.599300000000000e-01 +-2.215900000000000e-01 +-1.213600000000000e-01 +-4.837900000000000e-02 + 2.415500000000000e-02 + 1.202300000000000e-01 + 2.451100000000000e-01 + 3.803200000000000e-01 + 4.912300000000000e-01 + 5.422800000000000e-01 + 5.125800000000000e-01 + 4.049000000000000e-01 + 2.449400000000000e-01 + 7.149700000000000e-02 +-7.822100000000000e-02 +-1.816900000000000e-01 +-2.368600000000000e-01 +-2.582400000000000e-01 +-2.656700000000000e-01 +-2.721300000000000e-01 +-2.769800000000000e-01 +-2.673800000000000e-01 +-2.259500000000000e-01 +-1.395600000000000e-01 +-5.192800000000000e-03 + 1.680900000000000e-01 + 3.597400000000000e-01 + 5.399100000000000e-01 + 6.742899999999999e-01 + 7.328000000000000e-01 + 7.009200000000000e-01 + 5.882300000000000e-01 + 4.274900000000000e-01 + 2.618400000000000e-01 + 1.256300000000000e-01 + 2.995500000000000e-02 +-3.771600000000000e-02 +-9.954499999999999e-02 +-1.686800000000000e-01 +-2.392100000000000e-01 +-2.916400000000000e-01 +-3.092800000000000e-01 +-2.926900000000000e-01 +-2.612000000000000e-01 +-2.403900000000000e-01 +-2.454400000000000e-01 +-2.727200000000000e-01 +-3.055400000000000e-01 +-3.287600000000000e-01 +-3.405900000000000e-01 +-3.527000000000000e-01 +-3.794400000000000e-01 +-4.246800000000000e-01 +-4.759900000000000e-01 +-5.096100000000000e-01 +-5.015100000000000e-01 +-4.371600000000000e-01 +-3.150400000000000e-01 +-1.449700000000000e-01 + 5.513800000000000e-02 + 2.615200000000000e-01 + 4.471900000000000e-01 + 5.871000000000000e-01 + 6.659300000000000e-01 + 6.842000000000000e-01 + 6.578900000000000e-01 + 6.100800000000000e-01 + 5.590400000000000e-01 + 5.102900000000000e-01 + 4.574400000000000e-01 + 3.903700000000000e-01 + 3.044200000000000e-01 + 2.041400000000000e-01 + 1.006100000000000e-01 + 5.807400000000000e-03 +-7.072199999999999e-02 +-1.218800000000000e-01 +-1.423900000000000e-01 +-1.311000000000000e-01 +-9.597200000000000e-02 +-5.663100000000000e-02 +-3.935400000000000e-02 +-6.425800000000000e-02 +-1.319000000000000e-01 +-2.191300000000000e-01 +-2.892800000000000e-01 +-3.117300000000000e-01 +-2.790000000000000e-01 +-2.100800000000000e-01 +-1.381400000000000e-01 +-9.124800000000000e-02 +-7.877600000000000e-02 +-9.133900000000000e-02 +-1.116100000000000e-01 +-1.264100000000000e-01 +-1.314100000000000e-01 +-1.273700000000000e-01 +-1.144500000000000e-01 +-9.195800000000000e-02 +-6.434100000000000e-02 +-4.706600000000000e-02 +-6.378399999999999e-02 +-1.327500000000000e-01 +-2.501700000000000e-01 +-3.832300000000000e-01 +-4.809000000000000e-01 +-4.983900000000000e-01 +-4.209500000000000e-01 +-2.712200000000000e-01 +-9.492299999999999e-02 + 6.636599999999999e-02 + 1.977700000000000e-01 + 3.147000000000000e-01 + 4.461300000000000e-01 + 6.094300000000000e-01 + 7.937200000000000e-01 + 9.619100000000000e-01 + 1.069100000000000e+00 + 1.084800000000000e+00 + 1.006300000000000e+00 + 8.550400000000000e-01 + 6.631899999999999e-01 + 4.572700000000000e-01 + 2.500100000000000e-01 + 4.216400000000000e-02 +-1.687500000000000e-01 +-3.792600000000000e-01 +-5.755300000000000e-01 +-7.356500000000000e-01 +-8.374600000000000e-01 +-8.686000000000000e-01 +-8.343200000000000e-01 +-7.587600000000000e-01 +-6.775900000000000e-01 +-6.234900000000000e-01 +-6.107200000000000e-01 +-6.269900000000000e-01 +-6.383000000000000e-01 +-6.054100000000000e-01 +-5.036000000000000e-01 +-3.346400000000000e-01 +-1.243900000000000e-01 + 9.199499999999999e-02 + 2.876000000000000e-01 + 4.534100000000000e-01 + 5.952300000000000e-01 + 7.217900000000000e-01 + 8.329400000000000e-01 + 9.157300000000000e-01 + 9.501600000000000e-01 + 9.198100000000000e-01 + 8.206500000000000e-01 + 6.636700000000000e-01 + 4.712000000000000e-01 + 2.697800000000000e-01 + 8.275399999999999e-02 +-7.546500000000000e-02 +-2.019500000000000e-01 +-3.036400000000000e-01 +-3.912600000000000e-01 +-4.706300000000000e-01 +-5.362600000000000e-01 +-5.720400000000000e-01 +-5.602800000000000e-01 +-4.947100000000000e-01 +-3.888700000000000e-01 +-2.733600000000000e-01 +-1.823900000000000e-01 +-1.373700000000000e-01 +-1.374800000000000e-01 +-1.623500000000000e-01 +-1.838800000000000e-01 +-1.789200000000000e-01 +-1.359300000000000e-01 +-5.494600000000000e-02 + 5.502900000000000e-02 + 1.769700000000000e-01 + 2.861300000000000e-01 + 3.541000000000000e-01 + 3.595700000000000e-01 + 3.016300000000000e-01 + 2.060500000000000e-01 + 1.166100000000000e-01 + 7.347099999999999e-02 + 9.095300000000001e-02 + 1.500100000000000e-01 + 2.115300000000000e-01 + 2.421300000000000e-01 + 2.347100000000000e-01 + 2.094500000000000e-01 + 1.954100000000000e-01 + 2.067700000000000e-01 + 2.313500000000000e-01 + 2.389800000000000e-01 + 2.020700000000000e-01 + 1.126200000000000e-01 +-1.586700000000000e-02 +-1.602900000000000e-01 +-3.017100000000000e-01 +-4.297700000000000e-01 +-5.364100000000001e-01 +-6.078100000000000e-01 +-6.250599999999999e-01 +-5.754800000000000e-01 +-4.654500000000000e-01 +-3.226600000000000e-01 +-1.830400000000000e-01 +-7.058100000000000e-02 + 1.511800000000000e-02 + 9.360700000000000e-02 + 1.840600000000000e-01 + 2.860100000000000e-01 + 3.748500000000000e-01 + 4.157400000000000e-01 + 3.858200000000000e-01 + 2.891900000000000e-01 + 1.550500000000000e-01 + 2.174000000000000e-02 +-8.146299999999999e-02 +-1.434700000000000e-01 +-1.683700000000000e-01 +-1.660500000000000e-01 +-1.447100000000000e-01 +-1.094800000000000e-01 +-6.476500000000000e-02 +-1.573800000000000e-02 + 3.318700000000000e-02 + 8.071600000000000e-02 + 1.282700000000000e-01 + 1.762100000000000e-01 + 2.203200000000000e-01 + 2.529900000000000e-01 + 2.696200000000000e-01 + 2.752000000000000e-01 + 2.839300000000000e-01 + 3.094300000000000e-01 + 3.505700000000000e-01 + 3.835200000000000e-01 + 3.681400000000000e-01 + 2.677300000000000e-01 + 7.142000000000000e-02 +-1.945600000000000e-01 +-4.745200000000000e-01 +-7.061900000000000e-01 +-8.457600000000000e-01 +-8.813700000000000e-01 +-8.290000000000000e-01 +-7.159900000000000e-01 +-5.638600000000000e-01 +-3.813100000000000e-01 +-1.697100000000000e-01 + 6.511900000000000e-02 + 3.045800000000000e-01 + 5.191000000000000e-01 + 6.788500000000000e-01 + 7.660300000000000e-01 + 7.808000000000000e-01 + 7.374400000000000e-01 + 6.540100000000000e-01 + 5.426500000000000e-01 + 4.063000000000000e-01 + 2.427500000000000e-01 + 5.210500000000000e-02 +-1.577200000000000e-01 +-3.703900000000000e-01 +-5.647700000000000e-01 +-7.198600000000001e-01 +-8.186200000000000e-01 +-8.504900000000000e-01 +-8.135000000000000e-01 +-7.158700000000000e-01 +-5.755800000000000e-01 +-4.161700000000000e-01 +-2.591400000000000e-01 +-1.165600000000000e-01 + 1.148500000000000e-02 + 1.325800000000000e-01 + 2.537000000000000e-01 + 3.748000000000000e-01 + 4.888500000000000e-01 + 5.878100000000001e-01 + 6.689700000000000e-01 + 7.358400000000000e-01 + 7.923500000000000e-01 + 8.350600000000000e-01 + 8.505000000000000e-01 + 8.206900000000000e-01 + 7.336000000000000e-01 + 5.908500000000000e-01 + 4.074100000000000e-01 + 2.042600000000000e-01 + 2.040900000000000e-04 +-1.912800000000000e-01 +-3.600200000000000e-01 +-4.969300000000000e-01 +-5.964600000000000e-01 +-6.625200000000000e-01 +-7.111100000000000e-01 +-7.632700000000000e-01 +-8.295100000000000e-01 +-8.964200000000000e-01 +-9.275800000000000e-01 +-8.823200000000000e-01 +-7.421500000000000e-01 +-5.268600000000000e-01 +-2.874700000000000e-01 +-7.897200000000000e-02 + 6.918299999999999e-02 + 1.650200000000000e-01 + 2.407500000000000e-01 + 3.248400000000000e-01 + 4.197800000000000e-01 + 5.008100000000000e-01 + 5.344900000000000e-01 + 5.022900000000000e-01 + 4.123900000000000e-01 + 2.938100000000000e-01 + 1.804200000000000e-01 + 9.782000000000000e-02 + 6.020800000000000e-02 + 7.378899999999999e-02 + 1.382800000000000e-01 + 2.423800000000000e-01 + 3.585000000000000e-01 + 4.462000000000000e-01 + 4.683200000000000e-01 + 4.121500000000000e-01 + 3.006700000000000e-01 + 1.832200000000000e-01 + 1.088900000000000e-01 + 9.893800000000000e-02 + 1.358000000000000e-01 + 1.755300000000000e-01 + 1.742600000000000e-01 + 1.109400000000000e-01 +-6.702500000000000e-03 +-1.531900000000000e-01 +-3.021300000000000e-01 +-4.366800000000000e-01 +-5.495300000000000e-01 +-6.375000000000000e-01 +-6.985700000000000e-01 +-7.340900000000000e-01 +-7.516600000000000e-01 +-7.620700000000000e-01 +-7.695300000000000e-01 +-7.617000000000000e-01 +-7.094000000000000e-01 +-5.798600000000000e-01 +-3.570600000000000e-01 +-5.613100000000000e-02 + 2.789300000000000e-01 + 5.939600000000000e-01 + 8.485100000000000e-01 + 1.029700000000000e+00 + 1.147800000000000e+00 + 1.217000000000000e+00 + 1.236500000000000e+00 + 1.183700000000000e+00 + 1.027900000000000e+00 + 7.543000000000000e-01 + 3.841600000000000e-01 +-2.297100000000000e-02 +-3.894100000000000e-01 +-6.516900000000000e-01 +-7.875799999999999e-01 +-8.219000000000000e-01 +-8.076100000000001e-01 +-7.927700000000000e-01 +-7.931200000000000e-01 +-7.865600000000000e-01 +-7.322100000000000e-01 +-6.014200000000000e-01 +-4.002900000000000e-01 +-1.696300000000000e-01 + 3.715300000000000e-02 + 1.830100000000000e-01 + 2.646400000000000e-01 + 3.086700000000000e-01 + 3.517200000000000e-01 + 4.190700000000000e-01 + 5.146700000000000e-01 + 6.254000000000000e-01 + 7.317300000000000e-01 + 8.152700000000001e-01 + 8.592700000000000e-01 + 8.464100000000000e-01 + 7.603100000000000e-01 + 5.926399999999999e-01 + 3.506900000000000e-01 + 5.822900000000000e-02 +-2.521800000000000e-01 +-5.497200000000000e-01 +-8.104400000000000e-01 +-1.013900000000000e+00 +-1.136900000000000e+00 +-1.154600000000000e+00 +-1.051200000000000e+00 +-8.362700000000000e-01 +-5.502800000000000e-01 +-2.531800000000000e-01 + 6.426300000000000e-04 + 1.845000000000000e-01 + 3.035700000000000e-01 + 3.786400000000000e-01 + 4.229800000000000e-01 + 4.307600000000000e-01 + 3.859100000000000e-01 + 2.833600000000000e-01 + 1.436800000000000e-01 + 7.649000000000000e-03 +-8.662900000000000e-02 +-1.264900000000000e-01 +-1.293300000000000e-01 +-1.253000000000000e-01 +-1.314400000000000e-01 +-1.376500000000000e-01 +-1.148600000000000e-01 +-3.852300000000000e-02 + 9.132999999999999e-02 + 2.486200000000000e-01 + 3.981100000000000e-01 + 5.164200000000000e-01 + 6.006200000000000e-01 + 6.593700000000000e-01 + 6.959100000000000e-01 + 6.982300000000000e-01 + 6.452800000000000e-01 + 5.243000000000000e-01 + 3.454800000000000e-01 + 1.421300000000000e-01 +-4.438800000000000e-02 +-1.850400000000000e-01 +-2.759400000000000e-01 +-3.366900000000000e-01 +-3.967900000000000e-01 +-4.789700000000000e-01 +-5.878700000000000e-01 +-7.083600000000000e-01 +-8.129000000000000e-01 +-8.740500000000000e-01 +-8.772500000000000e-01 +-8.282100000000000e-01 +-7.506500000000000e-01 +-6.739700000000000e-01 +-6.161300000000000e-01 +-5.716200000000000e-01 +-5.127800000000000e-01 +-4.051900000000000e-01 +-2.279500000000000e-01 + 1.435400000000000e-02 + 2.956100000000000e-01 + 5.843800000000000e-01 + 8.591900000000000e-01 + 1.110900000000000e+00 + 1.331100000000000e+00 + 1.497200000000000e+00 + 1.570100000000000e+00 + 1.508900000000000e+00 + 1.296000000000000e+00 + 9.543100000000000e-01 + 5.442700000000000e-01 + 1.409200000000000e-01 +-1.944400000000000e-01 +-4.313800000000000e-01 +-5.690300000000000e-01 +-6.222200000000000e-01 +-6.081100000000000e-01 +-5.424300000000000e-01 +-4.438600000000000e-01 +-3.383100000000000e-01 +-2.558500000000000e-01 +-2.209500000000000e-01 +-2.433300000000000e-01 +-3.164500000000000e-01 +-4.236300000000000e-01 +-5.460300000000000e-01 +-6.656200000000000e-01 +-7.628800000000000e-01 +-8.144600000000000e-01 +-7.971800000000000e-01 +-6.982200000000000e-01 +-5.246900000000000e-01 +-3.040400000000000e-01 +-7.278999999999999e-02 + 1.396700000000000e-01 + 3.216300000000000e-01 + 4.770100000000000e-01 + 6.134200000000000e-01 + 7.302200000000000e-01 + 8.157200000000000e-01 + 8.551299999999999e-01 + 8.422200000000000e-01 + 7.853200000000000e-01 + 7.028600000000000e-01 + 6.118800000000000e-01 + 5.176700000000000e-01 + 4.114800000000000e-01 + 2.775400000000000e-01 + 1.049200000000000e-01 +-1.023800000000000e-01 +-3.218800000000000e-01 +-5.171500000000000e-01 +-6.491600000000000e-01 +-6.905600000000000e-01 +-6.377400000000000e-01 +-5.145800000000000e-01 +-3.643900000000000e-01 +-2.319400000000000e-01 +-1.439000000000000e-01 +-9.882100000000001e-02 +-7.334800000000000e-02 +-4.139600000000000e-02 + 5.982000000000000e-03 + 5.362500000000000e-02 + 7.334900000000000e-02 + 4.554800000000000e-02 +-2.392400000000000e-02 +-1.036500000000000e-01 +-1.534400000000000e-01 +-1.464600000000000e-01 +-8.177500000000000e-02 + 1.932900000000000e-02 + 1.284700000000000e-01 + 2.245800000000000e-01 + 2.983700000000000e-01 + 3.470200000000000e-01 + 3.671100000000000e-01 + 3.535000000000000e-01 + 3.052800000000000e-01 + 2.322000000000000e-01 + 1.540300000000000e-01 + 9.139400000000000e-02 + 5.393500000000000e-02 + 3.466800000000000e-02 + 1.467600000000000e-02 +-2.534700000000000e-02 +-9.465600000000000e-02 +-1.890200000000000e-01 +-2.940000000000000e-01 +-3.902300000000000e-01 +-4.567800000000000e-01 +-4.732200000000000e-01 +-4.240000000000000e-01 +-3.066000000000000e-01 +-1.393500000000000e-01 + 3.875700000000000e-02 + 1.805800000000000e-01 + 2.514300000000000e-01 + 2.458300000000000e-01 + 1.887800000000000e-01 + 1.195500000000000e-01 + 6.786200000000001e-02 + 3.808500000000000e-02 + 1.196400000000000e-02 +-3.283700000000000e-02 +-1.020100000000000e-01 +-1.766100000000000e-01 +-2.232600000000000e-01 +-2.151500000000000e-01 +-1.490900000000000e-01 +-4.765700000000000e-02 + 5.410400000000000e-02 + 1.275500000000000e-01 + 1.629700000000000e-01 + 1.694300000000000e-01 + 1.649500000000000e-01 + 1.652200000000000e-01 + 1.780300000000000e-01 + 2.048600000000000e-01 + 2.455400000000000e-01 + 3.007800000000000e-01 + 3.700600000000000e-01 + 4.471400000000000e-01 + 5.170600000000000e-01 + 5.581300000000000e-01 + 5.485100000000001e-01 + 4.746200000000000e-01 + 3.367800000000000e-01 + 1.494600000000000e-01 +-6.440300000000000e-02 +-2.820200000000000e-01 +-4.878000000000000e-01 +-6.747700000000000e-01 +-8.392700000000000e-01 +-9.726399999999999e-01 +-1.056200000000000e+00 +-1.065300000000000e+00 +-9.822000000000000e-01 +-8.111600000000000e-01 +-5.854600000000000e-01 +-3.584100000000000e-01 +-1.811100000000000e-01 +-7.823300000000000e-02 +-3.659400000000000e-02 +-1.429300000000000e-02 + 3.449700000000000e-02 + 1.341700000000000e-01 + 2.773100000000000e-01 + 4.347000000000000e-01 + 5.773700000000000e-01 + 6.945000000000000e-01 + 7.949500000000000e-01 + 8.926700000000000e-01 + 9.880200000000000e-01 + 1.060100000000000e+00 + 1.076100000000000e+00 + 1.011400000000000e+00 + 8.656300000000000e-01 + 6.627800000000000e-01 + 4.363700000000000e-01 + 2.101200000000000e-01 +-1.151700000000000e-02 +-2.369500000000000e-01 +-4.706700000000000e-01 +-6.993200000000001e-01 +-8.914400000000000e-01 +-1.011600000000000e+00 +-1.039800000000000e+00 +-9.829800000000000e-01 +-8.720200000000000e-01 +-7.460300000000000e-01 +-6.339000000000000e-01 +-5.432000000000000e-01 +-4.614700000000000e-01 +-3.672100000000000e-01 +-2.437300000000000e-01 +-8.882000000000000e-02 + 8.357400000000000e-02 + 2.491100000000000e-01 + 3.831100000000000e-01 + 4.702700000000000e-01 + 5.099100000000000e-01 + 5.141700000000000e-01 + 4.998300000000000e-01 + 4.776400000000000e-01 + 4.453400000000000e-01 + 3.891800000000000e-01 + 2.945300000000000e-01 + 1.602500000000000e-01 + 8.199500000000000e-03 +-1.194700000000000e-01 +-1.761400000000000e-01 +-1.330900000000000e-01 + 2.979300000000000e-03 + 1.868900000000000e-01 + 3.497200000000000e-01 + 4.256100000000000e-01 + 3.788000000000000e-01 + 2.185200000000000e-01 +-5.273200000000000e-03 +-2.235400000000000e-01 +-3.770900000000000e-01 +-4.393300000000000e-01 +-4.222200000000000e-01 +-3.636200000000000e-01 +-3.039500000000000e-01 +-2.654000000000000e-01 +-2.449800000000000e-01 +-2.237200000000000e-01 +-1.841100000000000e-01 +-1.234200000000000e-01 +-5.405100000000000e-02 + 7.706000000000000e-03 + 5.488700000000000e-02 + 9.427500000000000e-02 + 1.386800000000000e-01 + 1.936700000000000e-01 + 2.499100000000000e-01 + 2.879200000000000e-01 + 2.917300000000000e-01 + 2.605100000000000e-01 + 2.085600000000000e-01 + 1.534600000000000e-01 + 1.021000000000000e-01 + 4.637500000000000e-02 +-2.722300000000000e-02 +-1.214100000000000e-01 +-2.185600000000000e-01 +-2.863600000000000e-01 +-2.954800000000000e-01 +-2.370000000000000e-01 +-1.274000000000000e-01 + 1.479400000000000e-03 + 1.189800000000000e-01 + 2.070300000000000e-01 + 2.603800000000000e-01 + 2.795100000000000e-01 + 2.652300000000000e-01 + 2.201100000000000e-01 + 1.538200000000000e-01 + 8.443500000000000e-02 + 3.102600000000000e-02 + 1.432100000000000e-03 +-1.496600000000000e-02 +-4.215400000000000e-02 +-1.022900000000000e-01 +-2.010200000000000e-01 +-3.238400000000000e-01 +-4.453000000000000e-01 +-5.425900000000000e-01 +-6.026899999999999e-01 +-6.187400000000000e-01 +-5.821700000000000e-01 +-4.810000000000000e-01 +-3.090600000000000e-01 +-7.972100000000000e-02 + 1.688300000000000e-01 + 3.847500000000000e-01 + 5.254799999999999e-01 + 5.774800000000000e-01 + 5.591900000000000e-01 + 5.054800000000000e-01 + 4.457300000000000e-01 + 3.913300000000000e-01 + 3.398500000000000e-01 + 2.889700000000000e-01 + 2.461000000000000e-01 + 2.246300000000000e-01 + 2.301900000000000e-01 + 2.501800000000000e-01 + 2.571800000000000e-01 + 2.252300000000000e-01 + 1.468400000000000e-01 + 3.755200000000000e-02 +-7.509299999999999e-02 +-1.687500000000000e-01 +-2.361700000000000e-01 +-2.814700000000000e-01 +-3.086800000000000e-01 +-3.147400000000000e-01 +-2.943400000000000e-01 +-2.520800000000000e-01 +-2.096800000000000e-01 +-1.989300000000000e-01 +-2.431200000000000e-01 +-3.400700000000000e-01 +-4.601200000000000e-01 +-5.615400000000000e-01 +-6.124000000000001e-01 +-6.033300000000000e-01 +-5.433600000000000e-01 +-4.441700000000000e-01 +-3.071500000000000e-01 +-1.242500000000000e-01 + 1.082500000000000e-01 + 3.748600000000000e-01 + 6.379300000000000e-01 + 8.502800000000000e-01 + 9.752900000000000e-01 + 1.000900000000000e+00 + 9.391000000000000e-01 + 8.126500000000000e-01 + 6.406300000000000e-01 + 4.322000000000000e-01 + 1.918300000000000e-01 +-6.992800000000000e-02 +-3.293900000000000e-01 +-5.521000000000000e-01 +-7.031100000000000e-01 +-7.588800000000000e-01 +-7.141500000000000e-01 +-5.813700000000001e-01 +-3.847900000000000e-01 +-1.534400000000000e-01 + 8.341100000000000e-02 + 2.977600000000000e-01 + 4.631100000000000e-01 + 5.559500000000001e-01 + 5.599200000000000e-01 + 4.716200000000000e-01 + 3.052100000000000e-01 + 9.210900000000000e-02 +-1.258400000000000e-01 +-3.080900000000000e-01 +-4.270300000000000e-01 +-4.740800000000000e-01 +-4.574900000000000e-01 +-3.937700000000000e-01 +-2.986400000000000e-01 +-1.825300000000000e-01 +-5.241700000000000e-02 + 8.336800000000000e-02 + 2.122300000000000e-01 + 3.191700000000000e-01 + 3.920200000000000e-01 + 4.256800000000000e-01 + 4.224200000000000e-01 + 3.884000000000000e-01 + 3.296300000000000e-01 + 2.503500000000000e-01 + 1.540300000000000e-01 + 4.463000000000000e-02 +-7.382900000000001e-02 +-1.986700000000000e-01 +-3.283600000000000e-01 +-4.589500000000000e-01 +-5.792100000000000e-01 +-6.693100000000000e-01 +-7.064600000000000e-01 +-6.757800000000000e-01 +-5.797000000000000e-01 +-4.388900000000000e-01 +-2.831300000000000e-01 +-1.380900000000000e-01 +-1.673700000000000e-02 + 7.939200000000000e-02 + 1.521300000000000e-01 + 2.000100000000000e-01 + 2.197100000000000e-01 + 2.145600000000000e-01 + 2.020700000000000e-01 + 2.116900000000000e-01 + 2.712800000000000e-01 + 3.899900000000000e-01 + 5.490800000000000e-01 + 7.079299999999999e-01 + 8.222800000000000e-01 + 8.642000000000000e-01 + 8.325000000000000e-01 + 7.490700000000000e-01 + 6.451000000000000e-01 + 5.458600000000000e-01 + 4.611500000000000e-01 + 3.842200000000000e-01 + 2.975400000000000e-01 + 1.818700000000000e-01 + 2.550100000000000e-02 +-1.693100000000000e-01 +-3.854300000000000e-01 +-5.967000000000000e-01 +-7.784500000000000e-01 +-9.174400000000000e-01 +-1.015100000000000e+00 +-1.081700000000000e+00 +-1.125900000000000e+00 +-1.146700000000000e+00 +-1.135200000000000e+00 +-1.082300000000000e+00 +-9.884700000000000e-01 +-8.636500000000000e-01 +-7.201000000000000e-01 +-5.625700000000000e-01 +-3.861100000000000e-01 +-1.843700000000000e-01 + 3.793800000000000e-02 + 2.600400000000000e-01 + 4.538700000000000e-01 + 6.021200000000000e-01 + 7.119300000000000e-01 + 8.124300000000000e-01 + 9.357600000000000e-01 + 1.094000000000000e+00 + 1.268200000000000e+00 + 1.417800000000000e+00 + 1.502300000000000e+00 + 1.501800000000000e+00 + 1.420900000000000e+00 + 1.278500000000000e+00 + 1.091500000000000e+00 + 8.683100000000000e-01 + 6.132400000000000e-01 + 3.358100000000000e-01 + 5.340200000000000e-02 +-2.172900000000000e-01 +-4.731100000000000e-01 +-7.288400000000000e-01 +-1.005800000000000e+00 +-1.309900000000000e+00 +-1.614200000000000e+00 +-1.860500000000000e+00 +-1.981500000000000e+00 +-1.932200000000000e+00 +-1.711700000000000e+00 +-1.363400000000000e+00 +-9.552400000000000e-01 +-5.525099999999999e-01 +-1.986200000000000e-01 + 8.890199999999999e-02 + 3.103600000000000e-01 + 4.730300000000000e-01 + 5.851600000000000e-01 + 6.558600000000000e-01 + 6.968900000000000e-01 + 7.213600000000000e-01 + 7.388700000000000e-01 + 7.507200000000001e-01 + 7.499000000000000e-01 + 7.271800000000000e-01 + 6.795500000000000e-01 + 6.151700000000000e-01 + 5.505500000000000e-01 + 5.013000000000000e-01 + 4.723800000000000e-01 + 4.544100000000000e-01 + 4.290100000000000e-01 + 3.799700000000000e-01 + 3.027300000000000e-01 + 2.061400000000000e-01 + 1.050100000000000e-01 + 9.075800000000000e-03 +-8.396600000000000e-02 +-1.862500000000000e-01 +-3.099000000000000e-01 +-4.565100000000000e-01 +-6.133600000000000e-01 +-7.584000000000000e-01 +-8.698399999999999e-01 +-9.331100000000000e-01 +-9.408500000000000e-01 +-8.884100000000000e-01 +-7.710700000000000e-01 +-5.880100000000000e-01 +-3.512200000000000e-01 +-9.161200000000000e-02 + 1.452400000000000e-01 + 3.147800000000000e-01 + 3.925800000000000e-01 + 3.852100000000000e-01 + 3.259100000000000e-01 + 2.573600000000000e-01 + 2.123500000000000e-01 + 2.028900000000000e-01 + 2.219600000000000e-01 + 2.533500000000000e-01 + 2.816100000000000e-01 + 2.969100000000000e-01 + 2.954600000000000e-01 + 2.790900000000000e-01 + 2.558200000000000e-01 + 2.393900000000000e-01 + 2.442300000000000e-01 + 2.762400000000000e-01 + 3.250100000000000e-01 + 3.647500000000000e-01 + 3.661300000000000e-01 + 3.126900000000000e-01 + 2.108100000000000e-01 + 8.544700000000000e-02 +-3.571600000000000e-02 +-1.383300000000000e-01 +-2.258100000000000e-01 +-3.092500000000000e-01 +-3.916000000000000e-01 +-4.595400000000000e-01 +-4.904000000000000e-01 +-4.693900000000000e-01 +-4.038600000000000e-01 +-3.229800000000000e-01 +-2.622100000000000e-01 +-2.431300000000000e-01 +-2.625600000000000e-01 +-2.972700000000000e-01 +-3.194200000000000e-01 +-3.112000000000000e-01 +-2.693100000000000e-01 +-1.992400000000000e-01 +-1.067200000000000e-01 + 5.509100000000000e-03 + 1.334200000000000e-01 + 2.646400000000000e-01 + 3.759400000000000e-01 + 4.388500000000000e-01 + 4.312100000000000e-01 + 3.483400000000000e-01 + 2.083700000000000e-01 + 4.899300000000000e-02 +-8.306400000000000e-02 +-1.471800000000000e-01 +-1.239000000000000e-01 +-2.421500000000000e-02 + 1.127800000000000e-01 + 2.361900000000000e-01 + 3.082600000000000e-01 + 3.254600000000000e-01 + 3.216300000000000e-01 + 3.480100000000000e-01 + 4.390500000000000e-01 + 5.848600000000000e-01 + 7.290000000000000e-01 + 7.959500000000000e-01 + 7.324900000000000e-01 + 5.373000000000000e-01 + 2.598400000000000e-01 +-2.979900000000000e-02 +-2.793700000000000e-01 +-4.758200000000000e-01 +-6.375700000000000e-01 +-7.869200000000000e-01 +-9.250100000000000e-01 +-1.027800000000000e+00 +-1.064300000000000e+00 +-1.020400000000000e+00 +-9.107499999999999e-01 +-7.685400000000000e-01 +-6.241500000000000e-01 +-4.893400000000000e-01 +-3.587300000000000e-01 +-2.251900000000000e-01 +-9.438700000000000e-02 + 1.468100000000000e-02 + 8.415700000000000e-02 + 1.148200000000000e-01 + 1.318100000000000e-01 + 1.731300000000000e-01 + 2.686700000000000e-01 + 4.246000000000000e-01 + 6.226300000000000e-01 + 8.319900000000000e-01 + 1.023000000000000e+00 + 1.172500000000000e+00 + 1.260900000000000e+00 + 1.268200000000000e+00 + 1.178100000000000e+00 + 9.889200000000000e-01 + 7.234300000000000e-01 + 4.258000000000000e-01 + 1.444900000000000e-01 +-8.936600000000000e-02 +-2.730900000000000e-01 +-4.251100000000000e-01 +-5.644900000000000e-01 +-6.929600000000000e-01 +-7.932900000000001e-01 +-8.451000000000000e-01 +-8.456300000000000e-01 +-8.185200000000000e-01 +-8.025900000000000e-01 +-8.275100000000000e-01 +-8.929700000000000e-01 +-9.660000000000000e-01 +-9.980100000000000e-01 +-9.499500000000000e-01 +-8.095300000000000e-01 +-5.912500000000001e-01 +-3.224200000000000e-01 +-2.683900000000000e-02 + 2.826800000000000e-01 + 5.996100000000000e-01 + 9.127100000000000e-01 + 1.197800000000000e+00 + 1.419300000000000e+00 + 1.540000000000000e+00 + 1.536100000000000e+00 + 1.407600000000000e+00 + 1.180600000000000e+00 + 8.995500000000000e-01 + 6.114300000000000e-01 + 3.490200000000000e-01 + 1.205700000000000e-01 +-8.791100000000000e-02 +-2.975100000000000e-01 +-5.164200000000000e-01 +-7.273400000000000e-01 +-8.918700000000001e-01 +-9.714300000000000e-01 +-9.522800000000000e-01 +-8.582200000000000e-01 +-7.408400000000001e-01 +-6.521100000000000e-01 +-6.160500000000000e-01 +-6.178100000000000e-01 +-6.163500000000000e-01 +-5.715900000000000e-01 +-4.674100000000000e-01 +-3.165200000000000e-01 +-1.466300000000000e-01 + 1.944900000000000e-02 + 1.750100000000000e-01 + 3.256900000000000e-01 + 4.768800000000000e-01 + 6.237600000000000e-01 + 7.517800000000000e-01 + 8.451800000000000e-01 + 8.950000000000000e-01 + 8.999300000000000e-01 + 8.609700000000000e-01 + 7.771400000000001e-01 + 6.480100000000000e-01 + 4.818200000000000e-01 + 3.009500000000000e-01 + 1.373300000000000e-01 + 1.792900000000000e-02 +-5.086200000000000e-02 +-8.844299999999999e-02 +-1.300700000000000e-01 +-2.070900000000000e-01 +-3.293500000000000e-01 +-4.800200000000000e-01 +-6.246100000000000e-01 +-7.277300000000000e-01 +-7.679800000000000e-01 +-7.446199999999999e-01 +-6.748800000000000e-01 +-5.848600000000000e-01 +-4.980800000000000e-01 +-4.253900000000000e-01 +-3.600200000000000e-01 +-2.811700000000000e-01 +-1.663900000000000e-01 +-7.821300000000000e-03 + 1.773300000000000e-01 + 3.506400000000000e-01 + 4.708800000000000e-01 + 5.168700000000001e-01 + 4.992900000000000e-01 + 4.521500000000000e-01 + 4.087000000000000e-01 + 3.786400000000000e-01 + 3.438600000000000e-01 + 2.766100000000000e-01 + 1.670000000000000e-01 + 3.834600000000000e-02 +-6.283100000000000e-02 +-9.630100000000000e-02 +-5.572800000000000e-02 + 2.656700000000000e-02 + 1.020000000000000e-01 + 1.389800000000000e-01 + 1.422100000000000e-01 + 1.435800000000000e-01 + 1.718600000000000e-01 + 2.250600000000000e-01 + 2.673400000000000e-01 + 2.540500000000000e-01 + 1.662400000000000e-01 + 2.852200000000000e-02 +-1.044700000000000e-01 +-1.843800000000000e-01 +-2.025000000000000e-01 +-1.962000000000000e-01 +-2.235000000000000e-01 +-3.232900000000000e-01 +-4.884700000000000e-01 +-6.695400000000000e-01 +-8.043000000000000e-01 +-8.520100000000000e-01 +-8.091699999999999e-01 +-6.988100000000000e-01 +-5.453700000000000e-01 +-3.559700000000000e-01 +-1.227400000000000e-01 + 1.573900000000000e-01 + 4.627000000000000e-01 + 7.446600000000000e-01 + 9.480700000000000e-01 + 1.040200000000000e+00 + 1.028300000000000e+00 + 9.523000000000000e-01 + 8.575700000000001e-01 + 7.664100000000000e-01 + 6.683100000000000e-01 + 5.347000000000000e-01 + 3.465100000000000e-01 + 1.140100000000000e-01 +-1.252200000000000e-01 +-3.280900000000000e-01 +-4.713800000000000e-01 +-5.627799999999999e-01 +-6.310000000000000e-01 +-7.033199999999999e-01 +-7.867100000000000e-01 +-8.642200000000000e-01 +-9.062600000000000e-01 +-8.868900000000000e-01 +-7.943200000000000e-01 +-6.320600000000000e-01 +-4.150100000000000e-01 +-1.660000000000000e-01 + 8.592400000000000e-02 + 3.091800000000000e-01 + 4.786000000000000e-01 + 5.866000000000000e-01 + 6.480600000000000e-01 + 6.917700000000000e-01 + 7.408100000000000e-01 + 7.939600000000000e-01 + 8.223300000000000e-01 + 7.859100000000000e-01 + 6.599900000000000e-01 + 4.535000000000000e-01 + 2.062500000000000e-01 +-3.300900000000000e-02 +-2.316100000000000e-01 +-3.840000000000000e-01 +-5.028400000000000e-01 +-5.995400000000000e-01 +-6.708200000000000e-01 +-7.011300000000000e-01 +-6.767300000000001e-01 +-5.982200000000000e-01 +-4.803900000000000e-01 +-3.404600000000000e-01 +-1.860600000000000e-01 +-1.452800000000000e-02 + 1.754400000000000e-01 + 3.702900000000000e-01 + 5.394099999999999e-01 + 6.484600000000000e-01 + 6.792600000000000e-01 + 6.410700000000000e-01 + 5.639100000000000e-01 + 4.782500000000000e-01 + 3.958100000000000e-01 + 3.048900000000000e-01 + 1.828300000000000e-01 + 1.523300000000000e-02 +-1.920700000000000e-01 +-4.155600000000000e-01 +-6.270300000000000e-01 +-8.058900000000000e-01 +-9.418800000000001e-01 +-1.028400000000000e+00 +-1.054200000000000e+00 +-1.001500000000000e+00 +-8.537600000000000e-01 +-6.072900000000000e-01 +-2.792000000000000e-01 + 9.397600000000000e-02 + 4.659400000000000e-01 + 7.932300000000000e-01 + 1.044600000000000e+00 + 1.204300000000000e+00 + 1.268800000000000e+00 + 1.242100000000000e+00 + 1.131000000000000e+00 + 9.431600000000000e-01 + 6.899900000000000e-01 + 3.895700000000000e-01 + 6.903900000000000e-02 +-2.376100000000000e-01 +-4.962100000000000e-01 +-6.810500000000000e-01 +-7.808400000000000e-01 +-7.989900000000000e-01 +-7.486500000000000e-01 +-6.463100000000001e-01 +-5.082000000000000e-01 +-3.506500000000000e-01 +-1.915200000000000e-01 +-4.919200000000000e-02 + 6.246700000000000e-02 + 1.396800000000000e-01 + 1.901200000000000e-01 + 2.274000000000000e-01 + 2.614500000000000e-01 + 2.911200000000000e-01 + 3.040300000000000e-01 + 2.836300000000000e-01 + 2.187700000000000e-01 + 1.095900000000000e-01 +-3.251000000000000e-02 +-1.891200000000000e-01 +-3.396600000000000e-01 +-4.648100000000000e-01 +-5.492500000000000e-01 +-5.845900000000001e-01 +-5.715100000000000e-01 +-5.182200000000000e-01 +-4.345200000000000e-01 +-3.245300000000000e-01 +-1.844800000000000e-01 +-9.434900000000000e-03 + 1.947200000000000e-01 + 4.036700000000000e-01 + 5.801700000000000e-01 + 6.921200000000000e-01 + 7.316700000000000e-01 + 7.205800000000000e-01 + 6.957900000000000e-01 + 6.837200000000000e-01 + 6.819600000000000e-01 + 6.622400000000001e-01 + 5.934100000000000e-01 + 4.671400000000000e-01 + 3.066300000000000e-01 + 1.510100000000000e-01 + 2.709900000000000e-02 +-7.000600000000000e-02 +-1.724200000000000e-01 +-3.141900000000000e-01 +-5.038100000000000e-01 +-7.144200000000001e-01 +-8.978500000000000e-01 +-1.011400000000000e+00 +-1.038300000000000e+00 +-9.897300000000000e-01 +-8.906600000000000e-01 +-7.623200000000000e-01 +-6.143700000000000e-01 +-4.489700000000000e-01 +-2.699300000000000e-01 +-8.779500000000000e-02 + 8.281500000000000e-02 + 2.295500000000000e-01 + 3.463500000000000e-01 + 4.325100000000000e-01 + 4.895600000000000e-01 + 5.201500000000000e-01 + 5.302400000000000e-01 + 5.311399999999999e-01 + 5.376800000000000e-01 + 5.619000000000000e-01 + 6.062900000000000e-01 + 6.614600000000000e-01 + 7.097300000000000e-01 + 7.317600000000000e-01 + 7.115600000000000e-01 + 6.383400000000000e-01 + 5.070200000000000e-01 + 3.201000000000000e-01 + 9.073800000000000e-02 +-1.566700000000000e-01 +-3.920500000000000e-01 +-5.901100000000000e-01 +-7.394300000000000e-01 +-8.433300000000000e-01 +-9.110800000000000e-01 +-9.459000000000000e-01 +-9.392600000000000e-01 +-8.765300000000000e-01 +-7.501800000000000e-01 +-5.704100000000000e-01 +-3.649000000000000e-01 +-1.674200000000000e-01 +-3.404700000000000e-03 + 1.178900000000000e-01 + 2.008600000000000e-01 + 2.546800000000000e-01 + 2.860900000000000e-01 + 2.988300000000000e-01 + 2.981900000000000e-01 + 2.950400000000000e-01 + 3.049000000000000e-01 + 3.421000000000000e-01 + 4.126600000000000e-01 + 5.100400000000000e-01 + 6.151900000000000e-01 + 7.004100000000000e-01 + 7.364000000000001e-01 + 7.015900000000000e-01 + 5.920299999999999e-01 + 4.265800000000000e-01 + 2.421400000000000e-01 + 7.754500000000000e-02 +-4.690900000000000e-02 +-1.413600000000000e-01 +-2.396300000000000e-01 +-3.751900000000000e-01 +-5.544500000000000e-01 +-7.460100000000000e-01 +-8.951600000000000e-01 +-9.553199999999999e-01 +-9.156000000000000e-01 +-8.058600000000000e-01 +-6.764600000000000e-01 +-5.678500000000000e-01 +-4.912500000000000e-01 +-4.316000000000000e-01 +-3.666000000000000e-01 +-2.842000000000000e-01 +-1.848300000000000e-01 +-6.931200000000000e-02 + 7.337800000000000e-02 + 2.640500000000000e-01 + 5.152800000000000e-01 + 8.104100000000000e-01 + 1.097500000000000e+00 + 1.306500000000000e+00 + 1.380800000000000e+00 + 1.305400000000000e+00 + 1.112800000000000e+00 + 8.662400000000000e-01 + 6.294000000000000e-01 + 4.411300000000000e-01 + 3.053600000000000e-01 + 1.984300000000000e-01 + 8.624800000000001e-02 +-5.777500000000000e-02 +-2.408300000000000e-01 +-4.482000000000000e-01 +-6.502300000000000e-01 +-8.162600000000000e-01 +-9.293300000000000e-01 +-9.938000000000000e-01 +-1.030200000000000e+00 +-1.058900000000000e+00 +-1.082200000000000e+00 +-1.078200000000000e+00 +-1.011700000000000e+00 +-8.573100000000000e-01 +-6.188200000000000e-01 +-3.312100000000000e-01 +-4.268000000000000e-02 + 2.108200000000000e-01 + 4.209200000000000e-01 + 6.014900000000000e-01 + 7.676400000000000e-01 + 9.154500000000000e-01 + 1.018100000000000e+00 + 1.041700000000000e+00 + 9.680800000000001e-01 + 8.094200000000000e-01 + 6.026500000000000e-01 + 3.898900000000000e-01 + 1.986500000000000e-01 + 3.564000000000000e-02 +-1.037300000000000e-01 +-2.196200000000000e-01 +-2.994000000000000e-01 +-3.237000000000000e-01 +-2.821400000000000e-01 +-1.865000000000000e-01 +-7.045100000000000e-02 + 2.542000000000000e-02 + 7.427400000000001e-02 + 7.619600000000000e-02 + 5.547300000000000e-02 + 4.373300000000000e-02 + 5.946000000000000e-02 + 9.634700000000000e-02 + 1.271000000000000e-01 + 1.197400000000000e-01 + 5.613300000000000e-02 +-5.798300000000000e-02 +-1.964700000000000e-01 +-3.260300000000000e-01 +-4.203300000000000e-01 +-4.670200000000000e-01 +-4.655400000000000e-01 +-4.203400000000000e-01 +-3.362900000000000e-01 +-2.201300000000000e-01 +-8.549600000000000e-02 + 4.435300000000000e-02 + 1.408800000000000e-01 + 1.809600000000000e-01 + 1.578900000000000e-01 + 8.562200000000000e-02 +-6.691200000000000e-03 +-8.696600000000000e-02 +-1.324900000000000e-01 +-1.365100000000000e-01 +-1.071500000000000e-01 +-6.103500000000000e-02 +-1.517500000000000e-02 + 1.971200000000000e-02 + 4.286000000000000e-02 + 6.324800000000000e-02 + 9.521300000000001e-02 + 1.509400000000000e-01 + 2.329300000000000e-01 + 3.307700000000000e-01 + 4.245700000000000e-01 + 4.934400000000000e-01 + 5.234900000000000e-01 + 5.100500000000000e-01 + 4.534400000000000e-01 + 3.534200000000000e-01 + 2.087500000000000e-01 + 2.415600000000000e-02 +-1.806900000000000e-01 +-3.694000000000000e-01 +-4.994800000000000e-01 +-5.414400000000000e-01 +-4.943900000000000e-01 +-3.871900000000000e-01 +-2.634400000000000e-01 +-1.597200000000000e-01 +-9.111500000000000e-02 +-5.194500000000000e-02 +-2.818400000000000e-02 +-1.033500000000000e-02 + 2.970900000000000e-03 + 1.113400000000000e-02 + 1.942900000000000e-02 + 3.954100000000000e-02 + 8.101999999999999e-02 + 1.405500000000000e-01 + 1.986200000000000e-01 + 2.277700000000000e-01 + 2.074000000000000e-01 + 1.354600000000000e-01 + 2.974700000000000e-02 +-8.105100000000000e-02 +-1.700000000000000e-01 +-2.211800000000000e-01 +-2.323800000000000e-01 +-2.121200000000000e-01 +-1.740900000000000e-01 +-1.308300000000000e-01 +-8.849100000000000e-02 +-4.477600000000000e-02 + 7.514800000000000e-03 + 7.160900000000001e-02 + 1.379000000000000e-01 + 1.830300000000000e-01 + 1.813200000000000e-01 + 1.233900000000000e-01 + 2.894100000000000e-02 +-5.851000000000000e-02 +-9.508800000000001e-02 +-6.410399999999999e-02 + 1.215600000000000e-02 + 8.641000000000000e-02 + 1.174000000000000e-01 + 9.586100000000000e-02 + 4.653100000000000e-02 + 5.762200000000000e-03 +-6.922600000000000e-03 +-6.495300000000001e-04 +-1.182000000000000e-05 +-1.953100000000000e-02 +-4.852900000000000e-02 +-5.978200000000000e-02 +-3.434700000000000e-02 + 1.956800000000000e-02 + 7.110700000000000e-02 + 9.178200000000000e-02 + 7.982800000000000e-02 + 6.234700000000000e-02 + 7.228900000000001e-02 + 1.191100000000000e-01 + 1.781900000000000e-01 + 2.086200000000000e-01 + 1.851500000000000e-01 + 1.173300000000000e-01 + 3.974100000000000e-02 +-1.864600000000000e-02 +-5.944100000000000e-02 +-1.120100000000000e-01 +-2.039600000000000e-01 +-3.290600000000000e-01 +-4.402000000000000e-01 +-4.754000000000000e-01 +-3.982900000000000e-01 +-2.230800000000000e-01 +-5.981900000000000e-03 + 1.888900000000000e-01 + 3.227600000000000e-01 + 3.916200000000000e-01 + 4.097900000000000e-01 + 3.860200000000000e-01 + 3.139300000000000e-01 + 1.835500000000000e-01 + 1.462000000000000e-03 +-2.001800000000000e-01 +-3.751900000000000e-01 +-4.870500000000000e-01 +-5.263900000000000e-01 +-5.098400000000000e-01 +-4.631800000000000e-01 +-4.034100000000000e-01 +-3.326600000000000e-01 +-2.453400000000000e-01 +-1.390300000000000e-01 +-1.900500000000000e-02 + 1.058200000000000e-01 + 2.286600000000000e-01 + 3.453400000000000e-01 + 4.494400000000000e-01 + 5.289800000000000e-01 + 5.710200000000000e-01 + 5.719200000000000e-01 + 5.440500000000000e-01 + 5.101700000000000e-01 + 4.873000000000000e-01 + 4.720400000000000e-01 + 4.402100000000000e-01 + 3.632100000000000e-01 + 2.298800000000000e-01 + 5.701200000000000e-02 +-1.195900000000000e-01 +-2.665800000000000e-01 +-3.704300000000000e-01 +-4.379600000000000e-01 +-4.815800000000000e-01 +-5.036700000000000e-01 +-4.941600000000000e-01 +-4.437800000000000e-01 +-3.607300000000000e-01 +-2.749100000000000e-01 +-2.233500000000000e-01 +-2.260100000000000e-01 +-2.698900000000000e-01 +-3.137000000000000e-01 +-3.107900000000000e-01 +-2.349900000000000e-01 +-9.305800000000000e-02 + 8.215900000000000e-02 + 2.500500000000000e-01 + 3.787800000000000e-01 + 4.511700000000000e-01 + 4.611600000000000e-01 + 4.086500000000000e-01 + 2.990100000000000e-01 + 1.462900000000000e-01 +-2.549200000000000e-02 +-1.879200000000000e-01 +-3.184800000000000e-01 +-4.085000000000000e-01 +-4.618500000000000e-01 +-4.846500000000000e-01 +-4.735400000000000e-01 +-4.120900000000000e-01 +-2.795100000000000e-01 +-6.683400000000000e-02 + 2.101600000000000e-01 + 5.104800000000000e-01 + 7.810900000000000e-01 + 9.765300000000000e-01 + 1.073600000000000e+00 + 1.073800000000000e+00 + 9.945200000000000e-01 + 8.550600000000000e-01 + 6.686000000000000e-01 + 4.427400000000000e-01 + 1.868200000000000e-01 +-8.111000000000000e-02 +-3.343300000000000e-01 +-5.451000000000000e-01 +-6.951400000000000e-01 +-7.815600000000000e-01 +-8.145200000000000e-01 +-8.084800000000000e-01 +-7.736400000000000e-01 +-7.137500000000000e-01 +-6.308700000000000e-01 +-5.325299999999999e-01 +-4.342100000000000e-01 +-3.541100000000000e-01 +-3.031600000000000e-01 +-2.776400000000000e-01 +-2.601900000000000e-01 +-2.291900000000000e-01 +-1.703400000000000e-01 +-8.287300000000000e-02 + 2.317900000000000e-02 + 1.355200000000000e-01 + 2.471600000000000e-01 + 3.575700000000000e-01 + 4.675900000000000e-01 + 5.730100000000000e-01 + 6.624700000000000e-01 + 7.218300000000000e-01 + 7.418100000000000e-01 + 7.237200000000000e-01 + 6.791400000000000e-01 + 6.238600000000000e-01 + 5.696800000000000e-01 + 5.184400000000000e-01 + 4.611800000000000e-01 + 3.826000000000000e-01 + 2.684600000000000e-01 + 1.130900000000000e-01 +-7.628500000000001e-02 +-2.803600000000000e-01 +-4.736600000000000e-01 +-6.328400000000000e-01 +-7.432500000000000e-01 +-8.004100000000000e-01 +-8.064200000000000e-01 +-7.649700000000000e-01 +-6.797400000000000e-01 +-5.578600000000000e-01 +-4.153600000000000e-01 +-2.783000000000000e-01 +-1.755800000000000e-01 +-1.257800000000000e-01 +-1.261500000000000e-01 +-1.520300000000000e-01 +-1.689700000000000e-01 +-1.506800000000000e-01 +-9.155000000000001e-02 +-5.888800000000000e-03 + 8.486299999999999e-02 + 1.675400000000000e-01 + 2.444400000000000e-01 + 3.279900000000000e-01 + 4.276900000000000e-01 + 5.391899999999999e-01 + 6.430900000000001e-01 + 7.138700000000000e-01 + 7.323000000000000e-01 + 6.937300000000000e-01 + 6.082700000000000e-01 + 4.944200000000000e-01 + 3.710900000000000e-01 + 2.521400000000000e-01 + 1.446100000000000e-01 + 4.973100000000000e-02 +-3.507500000000000e-02 +-1.141200000000000e-01 +-1.918200000000000e-01 +-2.719200000000000e-01 +-3.575400000000000e-01 +-4.513400000000000e-01 +-5.545300000000000e-01 +-6.636500000000000e-01 +-7.668300000000000e-01 +-8.424900000000000e-01 +-8.639400000000000e-01 +-8.093300000000000e-01 +-6.725300000000000e-01 +-4.685400000000000e-01 +-2.295600000000000e-01 + 6.309100000000000e-03 + 2.076100000000000e-01 + 3.571000000000000e-01 + 4.522100000000000e-01 + 5.011400000000000e-01 + 5.184600000000000e-01 + 5.218600000000000e-01 + 5.284300000000000e-01 + 5.486400000000000e-01 + 5.799100000000000e-01 + 6.048000000000000e-01 + 5.981900000000000e-01 + 5.420600000000000e-01 + 4.390800000000000e-01 + 3.148500000000000e-01 + 2.048600000000000e-01 + 1.329200000000000e-01 + 9.484900000000000e-02 + 5.895100000000000e-02 +-1.615600000000000e-02 +-1.573400000000000e-01 +-3.614500000000000e-01 +-5.971100000000000e-01 +-8.208600000000000e-01 +-9.958800000000000e-01 +-1.102100000000000e+00 +-1.134200000000000e+00 +-1.092300000000000e+00 +-9.751700000000000e-01 +-7.802000000000000e-01 +-5.105300000000000e-01 +-1.828200000000000e-01 + 1.695900000000000e-01 + 5.012799999999999e-01 + 7.660500000000000e-01 + 9.311800000000000e-01 + 9.893000000000000e-01 + 9.622100000000000e-01 + 8.927400000000000e-01 + 8.262300000000000e-01 + 7.889200000000000e-01 + 7.753300000000000e-01 + 7.529400000000001e-01 + 6.833399999999999e-01 + 5.475300000000000e-01 + 3.590900000000000e-01 + 1.561800000000000e-01 +-2.233800000000000e-02 +-1.599500000000000e-01 +-2.685500000000000e-01 +-3.739700000000000e-01 +-4.930100000000000e-01 +-6.198200000000000e-01 +-7.317600000000000e-01 +-8.086100000000001e-01 +-8.485900000000000e-01 +-8.676100000000000e-01 +-8.824700000000000e-01 +-8.925700000000000e-01 +-8.759800000000000e-01 +-8.040900000000000e-01 +-6.635900000000000e-01 +-4.681800000000000e-01 +-2.509700000000000e-01 +-4.397300000000000e-02 + 1.388100000000000e-01 + 3.020400000000000e-01 + 4.550100000000000e-01 + 5.965900000000000e-01 + 7.129200000000000e-01 + 7.897700000000000e-01 + 8.278200000000000e-01 + 8.461200000000000e-01 + 8.689600000000000e-01 + 9.056500000000000e-01 + 9.397700000000000e-01 + 9.372400000000000e-01 + 8.677100000000000e-01 + 7.233300000000000e-01 + 5.213600000000000e-01 + 2.905100000000000e-01 + 5.347800000000000e-02 +-1.801100000000000e-01 +-4.063100000000000e-01 +-6.141900000000000e-01 +-7.813500000000000e-01 +-8.836400000000000e-01 +-9.115500000000000e-01 +-8.791800000000000e-01 +-8.164600000000000e-01 +-7.495000000000001e-01 +-6.837500000000000e-01 +-6.033500000000001e-01 +-4.874300000000000e-01 +-3.306900000000000e-01 +-1.522600000000000e-01 + 1.400100000000000e-02 + 1.399600000000000e-01 + 2.189000000000000e-01 + 2.650700000000000e-01 + 2.988200000000000e-01 + 3.300600000000000e-01 + 3.529700000000000e-01 + 3.550000000000000e-01 + 3.312400000000000e-01 + 2.913700000000000e-01 + 2.531300000000000e-01 + 2.276400000000000e-01 + 2.094200000000000e-01 + 1.797200000000000e-01 + 1.217100000000000e-01 + 3.576000000000000e-02 +-5.697300000000000e-02 +-1.259700000000000e-01 +-1.495900000000000e-01 +-1.271200000000000e-01 +-7.655300000000000e-02 +-2.087100000000000e-02 + 2.601800000000000e-02 + 6.338700000000000e-02 + 9.598200000000000e-02 + 1.223500000000000e-01 + 1.300300000000000e-01 + 1.027700000000000e-01 + 3.455900000000000e-02 +-6.040900000000000e-02 +-1.508400000000000e-01 +-2.036500000000000e-01 +-2.016400000000000e-01 +-1.513200000000000e-01 +-7.585500000000001e-02 + 1.684300000000000e-03 + 7.266400000000001e-02 + 1.447800000000000e-01 + 2.307100000000000e-01 + 3.321500000000000e-01 + 4.311400000000000e-01 + 4.951800000000000e-01 + 4.931000000000000e-01 + 4.114600000000000e-01 + 2.613600000000000e-01 + 7.220000000000000e-02 +-1.227400000000000e-01 +-2.995800000000000e-01 +-4.488000000000000e-01 +-5.708100000000000e-01 +-6.670600000000000e-01 +-7.334800000000000e-01 +-7.602900000000000e-01 +-7.374300000000000e-01 +-6.612700000000000e-01 +-5.379100000000000e-01 +-3.813500000000000e-01 +-2.081800000000000e-01 +-3.275600000000000e-02 + 1.338500000000000e-01 + 2.809000000000000e-01 + 3.942300000000000e-01 + 4.562600000000000e-01 + 4.523400000000000e-01 + 3.813400000000000e-01 + 2.637800000000000e-01 + 1.400200000000000e-01 + 5.608500000000000e-02 + 4.243200000000000e-02 + 9.769700000000001e-02 + 1.884800000000000e-01 + 2.676200000000000e-01 + 3.015000000000000e-01 + 2.898900000000000e-01 + 2.651700000000000e-01 + 2.708000000000000e-01 + 3.324200000000000e-01 + 4.402300000000000e-01 + 5.540500000000000e-01 + 6.267100000000000e-01 + 6.298200000000000e-01 + 5.647000000000000e-01 + 4.532600000000000e-01 + 3.178400000000000e-01 + 1.660800000000000e-01 +-8.346900000000001e-03 +-2.121800000000000e-01 +-4.387100000000000e-01 +-6.660199999999999e-01 +-8.684400000000000e-01 +-1.031000000000000e+00 +-1.153800000000000e+00 +-1.241100000000000e+00 +-1.285000000000000e+00 +-1.257900000000000e+00 +-1.123900000000000e+00 +-8.645200000000000e-01 +-5.011800000000000e-01 +-9.781200000000000e-02 + 2.613700000000000e-01 + 5.071000000000000e-01 + 6.130800000000000e-01 + 6.014699999999999e-01 + 5.254700000000000e-01 + 4.419500000000000e-01 + 3.905700000000000e-01 + 3.878700000000000e-01 + 4.332500000000000e-01 + 5.167400000000000e-01 + 6.216600000000000e-01 + 7.230300000000000e-01 + 7.887800000000000e-01 + 7.888500000000001e-01 + 7.095200000000000e-01 + 5.634200000000000e-01 + 3.863100000000000e-01 + 2.198500000000000e-01 + 9.033200000000000e-02 +-2.914500000000000e-03 +-8.158100000000000e-02 +-1.690700000000000e-01 +-2.714900000000000e-01 +-3.725900000000000e-01 +-4.460500000000000e-01 +-4.761800000000000e-01 +-4.715600000000000e-01 +-4.611400000000000e-01 +-4.746300000000000e-01 +-5.204800000000001e-01 +-5.764200000000000e-01 +-5.996100000000000e-01 +-5.499700000000000e-01 +-4.124900000000000e-01 +-2.055700000000000e-01 + 2.781400000000000e-02 + 2.388700000000000e-01 + 3.901100000000000e-01 + 4.631500000000000e-01 + 4.572000000000000e-01 + 3.838300000000000e-01 + 2.630200000000000e-01 + 1.211600000000000e-01 +-1.232800000000000e-02 +-1.120000000000000e-01 +-1.651600000000000e-01 +-1.765600000000000e-01 +-1.644200000000000e-01 +-1.483600000000000e-01 +-1.366300000000000e-01 +-1.206900000000000e-01 +-8.123000000000000e-02 +-1.613700000000000e-03 + 1.199500000000000e-01 + 2.669400000000000e-01 + 4.110700000000000e-01 + 5.235300000000001e-01 + 5.840200000000000e-01 + 5.836300000000000e-01 + 5.226400000000000e-01 + 4.072500000000000e-01 + 2.479000000000000e-01 + 5.913600000000000e-02 +-1.412000000000000e-01 +-3.343300000000000e-01 +-5.034100000000000e-01 +-6.345800000000000e-01 +-7.159799999999999e-01 +-7.368200000000000e-01 +-6.893300000000000e-01 +-5.741300000000000e-01 +-4.054500000000000e-01 +-2.110200000000000e-01 +-2.466800000000000e-02 + 1.255600000000000e-01 + 2.266800000000000e-01 + 2.816700000000000e-01 + 3.022000000000000e-01 + 2.989500000000000e-01 + 2.769600000000000e-01 + 2.388300000000000e-01 + 1.920000000000000e-01 + 1.526200000000000e-01 + 1.410500000000000e-01 + 1.709000000000000e-01 + 2.390600000000000e-01 + 3.244900000000000e-01 + 3.977300000000000e-01 + 4.356900000000000e-01 + 4.325800000000000e-01 + 4.003700000000000e-01 + 3.590400000000000e-01 + 3.230200000000000e-01 + 2.920300000000000e-01 + 2.514400000000000e-01 + 1.809200000000000e-01 + 6.604900000000000e-02 +-9.352500000000000e-02 +-2.831500000000000e-01 +-4.790700000000000e-01 +-6.575700000000000e-01 +-8.028400000000000e-01 +-9.099200000000000e-01 +-9.822100000000000e-01 +-1.025300000000000e+00 +-1.040800000000000e+00 +-1.023700000000000e+00 +-9.641000000000000e-01 +-8.530000000000000e-01 +-6.880700000000000e-01 +-4.772900000000000e-01 +-2.379800000000000e-01 + 8.158400000000000e-03 + 2.422800000000000e-01 + 4.550000000000000e-01 + 6.495600000000000e-01 + 8.391999999999999e-01 + 1.038400000000000e+00 + 1.250900000000000e+00 + 1.459600000000000e+00 + 1.625400000000000e+00 + 1.698800000000000e+00 + 1.639500000000000e+00 + 1.435400000000000e+00 + 1.111100000000000e+00 + 7.180200000000000e-01 + 3.138500000000000e-01 +-5.771800000000000e-02 +-3.752700000000000e-01 +-6.326900000000000e-01 +-8.253300000000000e-01 +-9.420500000000001e-01 +-9.707400000000000e-01 +-9.132200000000000e-01 +-7.966000000000000e-01 +-6.694300000000000e-01 +-5.820100000000000e-01 +-5.624200000000000e-01 +-6.041000000000000e-01 +-6.732100000000000e-01 +-7.300700000000000e-01 +-7.498200000000000e-01 +-7.289200000000000e-01 +-6.759200000000000e-01 +-5.965700000000000e-01 +-4.864300000000000e-01 +-3.369000000000000e-01 +-1.483700000000000e-01 + 6.146100000000000e-02 + 2.624500000000000e-01 + 4.274700000000000e-01 + 5.471000000000000e-01 + 6.325800000000000e-01 + 7.045700000000000e-01 + 7.758000000000000e-01 + 8.398200000000000e-01 + 8.732700000000000e-01 + 8.499200000000000e-01 + 7.568800000000000e-01 + 6.032300000000000e-01 + 4.167200000000000e-01 + 2.316200000000000e-01 + 7.495599999999999e-02 +-4.194300000000000e-02 +-1.233700000000000e-01 +-1.818800000000000e-01 +-2.280100000000000e-01 +-2.625500000000000e-01 +-2.757000000000000e-01 +-2.541500000000000e-01 +-1.922500000000000e-01 +-1.002600000000000e-01 +-3.413700000000000e-03 + 6.931900000000001e-02 + 1.001700000000000e-01 + 9.114999999999999e-02 + 5.940500000000000e-02 + 2.216800000000000e-02 +-1.755000000000000e-02 +-7.247800000000000e-02 +-1.569400000000000e-01 +-2.669600000000000e-01 +-3.710400000000000e-01 +-4.222300000000000e-01 +-3.866400000000000e-01 +-2.700000000000000e-01 +-1.224000000000000e-01 +-1.497800000000000e-02 +-1.401300000000000e-03 +-8.827900000000000e-02 +-2.331200000000000e-01 +-3.702300000000000e-01 +-4.465600000000000e-01 +-4.443400000000000e-01 +-3.783000000000000e-01 +-2.740500000000000e-01 +-1.463700000000000e-01 + 6.367200000000000e-03 + 1.896500000000000e-01 + 3.949900000000000e-01 + 5.928400000000000e-01 + 7.433200000000000e-01 + 8.168800000000001e-01 + 8.093800000000000e-01 + 7.404200000000000e-01 + 6.366700000000000e-01 + 5.134100000000000e-01 + 3.681400000000000e-01 + 1.906700000000000e-01 +-1.884000000000000e-02 +-2.383400000000000e-01 +-4.283000000000000e-01 +-5.499200000000000e-01 +-5.849700000000000e-01 +-5.442800000000000e-01 +-4.597600000000000e-01 +-3.656600000000000e-01 +-2.812200000000000e-01 +-2.045600000000000e-01 +-1.201700000000000e-01 +-1.401900000000000e-02 + 1.130100000000000e-01 + 2.407200000000000e-01 + 3.359800000000000e-01 + 3.664200000000000e-01 + 3.152500000000000e-01 + 1.905000000000000e-01 + 2.453400000000000e-02 +-1.369000000000000e-01 +-2.521000000000000e-01 +-2.994400000000000e-01 +-2.841100000000000e-01 +-2.316000000000000e-01 +-1.714200000000000e-01 +-1.208700000000000e-01 +-7.865400000000000e-02 +-3.178600000000000e-02 + 3.026000000000000e-02 + 1.053200000000000e-01 + 1.801600000000000e-01 + 2.420900000000000e-01 + 2.899900000000000e-01 + 3.339700000000000e-01 + 3.824000000000000e-01 + 4.264800000000000e-01 + 4.369000000000000e-01 + 3.791500000000000e-01 + 2.388100000000000e-01 + 3.832500000000000e-02 +-1.696600000000000e-01 +-3.305800000000000e-01 +-4.193600000000000e-01 +-4.522500000000000e-01 +-4.699500000000000e-01 +-5.038800000000000e-01 +-5.506500000000000e-01 +-5.738799999999999e-01 +-5.320400000000000e-01 +-4.111200000000000e-01 +-2.375500000000000e-01 +-6.221600000000000e-02 + 7.176200000000001e-02 + 1.528400000000000e-01 + 2.000200000000000e-01 + 2.403400000000000e-01 + 2.848200000000000e-01 + 3.217400000000000e-01 + 3.307900000000000e-01 + 3.039300000000000e-01 + 2.546000000000000e-01 + 2.085200000000000e-01 + 1.855500000000000e-01 + 1.892500000000000e-01 + 2.124600000000000e-01 + 2.512600000000000e-01 + 3.116600000000000e-01 + 3.998600000000000e-01 + 5.036000000000000e-01 + 5.834200000000000e-01 + 5.867300000000000e-01 + 4.795900000000000e-01 + 2.737700000000000e-01 + 2.698900000000000e-02 +-1.874000000000000e-01 +-3.221100000000000e-01 +-3.805600000000000e-01 +-4.078800000000000e-01 +-4.561900000000000e-01 +-5.494599999999999e-01 +-6.717900000000000e-01 +-7.835000000000000e-01 +-8.494200000000000e-01 +-8.574800000000000e-01 +-8.166700000000000e-01 +-7.412400000000000e-01 +-6.371000000000000e-01 +-5.012200000000000e-01 +-3.315400000000000e-01 +-1.358900000000000e-01 + 6.870800000000001e-02 + 2.645200000000000e-01 + 4.402200000000000e-01 + 5.900300000000001e-01 + 7.074200000000000e-01 + 7.823900000000000e-01 + 8.081600000000000e-01 + 7.920800000000000e-01 + 7.588600000000000e-01 + 7.381900000000000e-01 + 7.423700000000000e-01 + 7.509200000000000e-01 + 7.174800000000000e-01 + 5.984000000000000e-01 + 3.849900000000000e-01 + 1.159800000000000e-01 +-1.403600000000000e-01 +-3.237600000000000e-01 +-4.140500000000000e-01 +-4.370000000000000e-01 +-4.419600000000000e-01 +-4.687600000000000e-01 +-5.265600000000000e-01 +-5.959300000000000e-01 +-6.480399999999999e-01 +-6.639200000000000e-01 +-6.413400000000000e-01 +-5.887800000000000e-01 +-5.164700000000000e-01 +-4.333600000000000e-01 +-3.506800000000000e-01 +-2.842800000000000e-01 +-2.492100000000000e-01 +-2.474400000000000e-01 +-2.585700000000000e-01 +-2.427400000000000e-01 +-1.572100000000000e-01 + 2.251600000000000e-02 + 2.897400000000000e-01 + 6.086800000000000e-01 + 9.285800000000000e-01 + 1.200000000000000e+00 + 1.384900000000000e+00 + 1.458900000000000e+00 + 1.410400000000000e+00 + 1.241500000000000e+00 + 9.705400000000000e-01 + 6.323100000000000e-01 + 2.710700000000000e-01 +-7.181999999999999e-02 +-3.699200000000000e-01 +-6.160000000000000e-01 +-8.160700000000000e-01 +-9.777100000000000e-01 +-1.100700000000000e+00 +-1.176300000000000e+00 +-1.194700000000000e+00 +-1.154600000000000e+00 +-1.067600000000000e+00 +-9.537900000000000e-01 +-8.296200000000000e-01 +-6.975300000000000e-01 +-5.432600000000000e-01 +-3.448200000000000e-01 +-8.928000000000000e-02 + 2.121500000000000e-01 + 5.203300000000000e-01 + 7.803800000000000e-01 + 9.450100000000000e-01 + 9.969600000000000e-01 + 9.572700000000000e-01 + 8.735300000000000e-01 + 7.942700000000000e-01 + 7.440900000000000e-01 + 7.145400000000000e-01 + 6.752800000000000e-01 + 5.975900000000000e-01 + 4.745700000000000e-01 + 3.252000000000000e-01 + 1.815300000000000e-01 + 6.885500000000000e-02 +-7.473200000000000e-03 +-6.125200000000000e-02 +-1.139300000000000e-01 +-1.821500000000000e-01 +-2.724400000000000e-01 +-3.840000000000000e-01 +-5.137800000000000e-01 +-6.578800000000000e-01 +-8.079300000000000e-01 +-9.468600000000000e-01 +-1.049500000000000e+00 +-1.089200000000000e+00 +-1.047100000000000e+00 +-9.184400000000000e-01 +-7.122700000000000e-01 +-4.478600000000000e-01 +-1.499800000000000e-01 + 1.541400000000000e-01 + 4.374600000000000e-01 + 6.771500000000000e-01 + 8.594700000000000e-01 + 9.822100000000000e-01 + 1.051200000000000e+00 + 1.071600000000000e+00 + 1.040500000000000e+00 + 9.458700000000000e-01 + 7.758800000000000e-01 + 5.322000000000000e-01 + 2.381000000000000e-01 +-6.493500000000001e-02 +-3.310500000000000e-01 +-5.258200000000000e-01 +-6.348400000000000e-01 +-6.619100000000000e-01 +-6.205700000000000e-01 +-5.265500000000000e-01 +-3.954300000000000e-01 +-2.444800000000000e-01 +-9.361999999999999e-02 + 3.731900000000000e-02 + 1.339000000000000e-01 + 1.905800000000000e-01 + 2.096500000000000e-01 + 1.968200000000000e-01 + 1.577600000000000e-01 + 9.837100000000000e-02 + 2.763200000000000e-02 +-4.129900000000000e-02 +-9.459500000000000e-02 +-1.243400000000000e-01 +-1.330900000000000e-01 +-1.323600000000000e-01 +-1.356400000000000e-01 +-1.512000000000000e-01 +-1.796700000000000e-01 +-2.169900000000000e-01 +-2.584100000000000e-01 +-2.987100000000000e-01 +-3.282900000000000e-01 +-3.300400000000000e-01 +-2.829700000000000e-01 +-1.729400000000000e-01 +-4.016400000000000e-03 + 1.989300000000000e-01 + 4.002200000000000e-01 + 5.704500000000000e-01 + 6.989600000000000e-01 + 7.927100000000000e-01 + 8.625800000000000e-01 + 9.078500000000000e-01 + 9.108100000000000e-01 + 8.455500000000000e-01 + 6.941000000000001e-01 + 4.579200000000000e-01 + 1.573700000000000e-01 +-1.781100000000000e-01 +-5.192600000000001e-01 +-8.384800000000000e-01 +-1.104700000000000e+00 +-1.281000000000000e+00 +-1.332500000000000e+00 +-1.243800000000000e+00 +-1.033100000000000e+00 +-7.520000000000000e-01 +-4.655600000000000e-01 +-2.245500000000000e-01 +-4.641100000000000e-02 + 8.279200000000000e-02 + 1.885700000000000e-01 + 2.855900000000000e-01 + 3.691000000000000e-01 + 4.250000000000000e-01 + 4.484200000000000e-01 + 4.543300000000000e-01 + 4.700300000000000e-01 + 5.144900000000000e-01 + 5.805800000000000e-01 + 6.346400000000000e-01 + 6.353799999999999e-01 + 5.592700000000000e-01 + 4.149900000000000e-01 + 2.372200000000000e-01 + 6.528399999999999e-02 +-7.753200000000000e-02 +-1.900100000000000e-01 +-2.820700000000000e-01 +-3.574400000000000e-01 +-4.045100000000000e-01 +-4.022800000000000e-01 +-3.366600000000000e-01 +-2.141400000000000e-01 +-6.266600000000000e-02 + 8.061699999999999e-02 + 1.856600000000000e-01 + 2.392100000000000e-01 + 2.434800000000000e-01 + 2.081600000000000e-01 + 1.439100000000000e-01 + 6.178700000000000e-02 +-2.385500000000000e-02 +-9.537400000000000e-02 +-1.383400000000000e-01 +-1.511800000000000e-01 +-1.497500000000000e-01 +-1.610400000000000e-01 +-2.080000000000000e-01 +-2.949600000000000e-01 +-4.036900000000000e-01 +-5.030300000000000e-01 +-5.653800000000000e-01 +-5.787099999999999e-01 +-5.469600000000000e-01 +-4.805700000000000e-01 +-3.861700000000000e-01 +-2.637700000000000e-01 +-1.125300000000000e-01 + 6.126000000000000e-02 + 2.422400000000000e-01 + 4.123000000000000e-01 + 5.599700000000000e-01 + 6.842700000000000e-01 + 7.891000000000000e-01 + 8.725000000000001e-01 + 9.202399999999999e-01 + 9.104200000000000e-01 + 8.270300000000000e-01 + 6.728800000000000e-01 + 4.720300000000000e-01 + 2.595700000000000e-01 + 6.577800000000000e-02 +-9.431700000000000e-02 +-2.199400000000000e-01 +-3.149800000000000e-01 +-3.790900000000000e-01 +-4.069600000000000e-01 +-3.957600000000000e-01 +-3.534300000000000e-01 +-2.997600000000000e-01 +-2.582700000000000e-01 +-2.444900000000000e-01 +-2.591800000000000e-01 +-2.910400000000000e-01 +-3.261400000000000e-01 +-3.566700000000000e-01 +-3.830200000000000e-01 +-4.093900000000000e-01 +-4.377700000000000e-01 +-4.655700000000000e-01 +-4.874600000000000e-01 +-4.980100000000000e-01 +-4.913900000000000e-01 +-4.582100000000000e-01 +-3.839400000000000e-01 +-2.532800000000000e-01 +-6.009200000000000e-02 + 1.831100000000000e-01 + 4.437500000000000e-01 + 6.787700000000000e-01 + 8.507000000000000e-01 + 9.408700000000000e-01 + 9.526100000000000e-01 + 9.043400000000000e-01 + 8.189600000000000e-01 + 7.168900000000000e-01 + 6.152800000000000e-01 + 5.294200000000000e-01 + 4.707800000000000e-01 + 4.402400000000000e-01 + 4.216900000000000e-01 + 3.840200000000000e-01 + 2.945600000000000e-01 + 1.382200000000000e-01 +-6.997299999999999e-02 +-2.890600000000000e-01 +-4.727400000000000e-01 +-5.946500000000000e-01 +-6.622600000000000e-01 +-7.101499999999999e-01 +-7.766999999999999e-01 +-8.793200000000000e-01 +-1.003700000000000e+00 +-1.112900000000000e+00 +-1.168500000000000e+00 +-1.149100000000000e+00 +-1.055500000000000e+00 +-9.011700000000000e-01 +-6.989900000000000e-01 +-4.551000000000000e-01 +-1.737600000000000e-01 + 1.322200000000000e-01 + 4.363800000000000e-01 + 7.051200000000000e-01 + 9.124200000000000e-01 + 1.052500000000000e+00 + 1.140100000000000e+00 + 1.198300000000000e+00 + 1.241400000000000e+00 + 1.264900000000000e+00 + 1.249900000000000e+00 + 1.177100000000000e+00 + 1.041100000000000e+00 + 8.536100000000000e-01 + 6.366400000000000e-01 + 4.097100000000000e-01 + 1.825200000000000e-01 +-4.324400000000000e-02 +-2.662500000000000e-01 +-4.796000000000000e-01 +-6.720100000000000e-01 +-8.346300000000000e-01 +-9.666000000000000e-01 +-1.073400000000000e+00 +-1.158200000000000e+00 +-1.213500000000000e+00 +-1.220400000000000e+00 +-1.158200000000000e+00 +-1.018900000000000e+00 +-8.160100000000000e-01 +-5.809200000000000e-01 +-3.490000000000000e-01 +-1.434200000000000e-01 + 3.224800000000000e-02 + 1.890100000000000e-01 + 3.391100000000000e-01 + 4.841400000000000e-01 + 6.122900000000000e-01 + 7.055700000000000e-01 + 7.514000000000000e-01 + 7.503200000000000e-01 + 7.154500000000000e-01 + 6.648700000000000e-01 + 6.123499999999999e-01 + 5.619800000000000e-01 + 5.090600000000000e-01 + 4.455000000000000e-01 + 3.663700000000000e-01 + 2.744900000000000e-01 + 1.814600000000000e-01 + 1.050500000000000e-01 + 6.332500000000001e-02 + 6.694100000000000e-02 + 1.116700000000000e-01 + 1.746300000000000e-01 + 2.175200000000000e-01 + 1.977100000000000e-01 + 8.437100000000000e-02 +-1.270300000000000e-01 +-4.090000000000000e-01 +-7.089000000000000e-01 +-9.664100000000000e-01 +-1.134000000000000e+00 +-1.190800000000000e+00 +-1.144900000000000e+00 +-1.023200000000000e+00 +-8.566600000000000e-01 +-6.681200000000000e-01 +-4.691400000000000e-01 +-2.641600000000000e-01 +-5.753600000000000e-02 + 1.425400000000000e-01 + 3.255100000000000e-01 + 4.830400000000000e-01 + 6.120000000000000e-01 + 7.133100000000000e-01 + 7.874700000000000e-01 + 8.312200000000000e-01 + 8.386100000000000e-01 + 8.062300000000000e-01 + 7.386400000000000e-01 + 6.491600000000000e-01 + 5.547100000000000e-01 + 4.677500000000000e-01 + 3.908000000000000e-01 + 3.170600000000000e-01 + 2.364000000000000e-01 + 1.423300000000000e-01 + 3.553500000000000e-02 +-7.697900000000001e-02 +-1.851700000000000e-01 +-2.786100000000000e-01 +-3.478300000000000e-01 +-3.859000000000000e-01 +-3.918600000000000e-01 +-3.748200000000000e-01 +-3.550100000000000e-01 +-3.583900000000000e-01 +-4.056600000000000e-01 +-5.013800000000000e-01 +-6.300600000000000e-01 +-7.621599999999999e-01 +-8.662200000000000e-01 +-9.194400000000000e-01 +-9.107700000000000e-01 +-8.368700000000000e-01 +-6.969400000000000e-01 +-4.923600000000000e-01 +-2.318700000000000e-01 + 6.318100000000000e-02 + 3.602200000000000e-01 + 6.252400000000000e-01 + 8.356800000000000e-01 + 9.875100000000000e-01 + 1.091500000000000e+00 + 1.161700000000000e+00 + 1.204000000000000e+00 + 1.213300000000000e+00 + 1.179600000000000e+00 + 1.096300000000000e+00 + 9.644300000000000e-01 + 7.902400000000001e-01 + 5.794300000000000e-01 + 3.354500000000000e-01 + 6.343400000000000e-02 +-2.237000000000000e-01 +-5.034300000000000e-01 +-7.490500000000000e-01 +-9.389200000000000e-01 +-1.062600000000000e+00 +-1.119900000000000e+00 +-1.114400000000000e+00 +-1.049600000000000e+00 +-9.303399999999999e-01 +-7.696900000000000e-01 +-5.924000000000000e-01 +-4.294400000000000e-01 +-3.047100000000000e-01 +-2.224200000000000e-01 +-1.647900000000000e-01 +-1.026900000000000e-01 +-1.239200000000000e-02 + 1.124800000000000e-01 + 2.604800000000000e-01 + 4.110400000000000e-01 + 5.438499999999999e-01 + 6.421700000000000e-01 + 6.905400000000000e-01 + 6.734100000000000e-01 + 5.802700000000000e-01 + 4.155200000000000e-01 + 2.049000000000000e-01 +-9.366599999999999e-03 +-1.841100000000000e-01 +-2.923900000000000e-01 +-3.305500000000000e-01 +-3.109100000000000e-01 +-2.465600000000000e-01 +-1.407800000000000e-01 + 1.083100000000000e-02 + 2.079200000000000e-01 + 4.337400000000000e-01 + 6.547500000000001e-01 + 8.328100000000001e-01 + 9.411000000000000e-01 + 9.724600000000000e-01 + 9.347500000000000e-01 + 8.381300000000000e-01 + 6.847900000000000e-01 + 4.684300000000000e-01 + 1.831300000000000e-01 +-1.659600000000000e-01 +-5.573500000000000e-01 +-9.559200000000000e-01 +-1.320400000000000e+00 +-1.611000000000000e+00 +-1.795600000000000e+00 +-1.854900000000000e+00 +-1.787300000000000e+00 +-1.610000000000000e+00 +-1.355300000000000e+00 +-1.058500000000000e+00 +-7.441200000000000e-01 +-4.189800000000000e-01 +-7.643100000000000e-02 + 2.894500000000000e-01 + 6.700600000000000e-01 + 1.038700000000000e+00 + 1.359500000000000e+00 + 1.603000000000000e+00 + 1.756300000000000e+00 + 1.822600000000000e+00 + 1.812400000000000e+00 + 1.734400000000000e+00 + 1.593900000000000e+00 + 1.397400000000000e+00 + 1.156800000000000e+00 + 8.866500000000000e-01 + 5.968200000000000e-01 + 2.857600000000000e-01 +-5.568100000000000e-02 +-4.311300000000000e-01 +-8.248000000000000e-01 +-1.198300000000000e+00 +-1.502900000000000e+00 +-1.700600000000000e+00 +-1.780200000000000e+00 +-1.758600000000000e+00 +-1.666000000000000e+00 +-1.526800000000000e+00 +-1.348000000000000e+00 +-1.122400000000000e+00 +-8.413500000000000e-01 +-5.085800000000000e-01 +-1.447900000000000e-01 + 2.167400000000000e-01 + 5.397600000000000e-01 + 7.940900000000000e-01 + 9.609700000000000e-01 + 1.035600000000000e+00 + 1.028000000000000e+00 + 9.615700000000000e-01 + 8.676400000000000e-01 + 7.767500000000001e-01 + 7.090200000000000e-01 + 6.691100000000000e-01 + 6.484900000000000e-01 + 6.328500000000000e-01 + 6.092500000000000e-01 + 5.686500000000000e-01 + 5.038800000000000e-01 + 4.074700000000000e-01 + 2.735000000000000e-01 + 1.032900000000000e-01 +-9.021100000000000e-02 +-2.846800000000000e-01 +-4.580000000000000e-01 +-5.991200000000000e-01 +-7.120300000000001e-01 +-8.089100000000000e-01 +-8.966300000000000e-01 +-9.666000000000000e-01 +-9.961700000000000e-01 +-9.617200000000000e-01 +-8.547100000000000e-01 +-6.897100000000000e-01 +-4.982600000000000e-01 +-3.127600000000000e-01 +-1.507700000000000e-01 +-9.947400000000000e-03 + 1.237800000000000e-01 + 2.612100000000000e-01 + 3.984900000000000e-01 + 5.169700000000000e-01 + 5.943000000000001e-01 + 6.194300000000000e-01 + 6.017300000000000e-01 + 5.682199999999999e-01 + 5.497400000000000e-01 + 5.639000000000000e-01 + 6.045300000000000e-01 + 6.440900000000001e-01 + 6.480800000000000e-01 + 5.935900000000000e-01 + 4.811300000000000e-01 + 3.324900000000000e-01 + 1.762400000000000e-01 + 3.013100000000000e-02 +-1.075400000000000e-01 +-2.514700000000000e-01 +-4.119600000000000e-01 +-5.791400000000000e-01 +-7.207600000000000e-01 +-7.968800000000000e-01 +-7.822800000000000e-01 +-6.818700000000000e-01 +-5.283800000000000e-01 +-3.643300000000000e-01 +-2.208600000000000e-01 +-1.079300000000000e-01 +-2.104700000000000e-02 + 4.302900000000000e-02 + 7.583900000000000e-02 + 6.138900000000000e-02 +-8.025100000000000e-03 +-1.175700000000000e-01 +-2.301300000000000e-01 +-3.031200000000000e-01 +-3.108200000000000e-01 +-2.562900000000000e-01 +-1.640400000000000e-01 +-5.924600000000000e-02 + 5.080200000000000e-02 + 1.785100000000000e-01 + 3.394900000000000e-01 + 5.300900000000000e-01 + 7.166800000000000e-01 + 8.464100000000000e-01 + 8.740300000000000e-01 + 7.880400000000000e-01 + 6.191000000000000e-01 + 4.255100000000000e-01 + 2.649000000000000e-01 + 1.691300000000000e-01 + 1.357600000000000e-01 + 1.379900000000000e-01 + 1.435100000000000e-01 + 1.297000000000000e-01 + 8.731300000000000e-02 + 1.481500000000000e-02 +-8.883600000000000e-02 +-2.254200000000000e-01 +-3.917400000000000e-01 +-5.724700000000000e-01 +-7.390500000000000e-01 +-8.579900000000000e-01 +-9.047800000000000e-01 +-8.752200000000000e-01 +-7.866200000000000e-01 +-6.678600000000000e-01 +-5.441100000000000e-01 +-4.255900000000000e-01 +-3.067000000000000e-01 +-1.751900000000000e-01 +-2.450800000000000e-02 + 1.389400000000000e-01 + 2.978300000000000e-01 + 4.329300000000000e-01 + 5.322500000000000e-01 + 5.942600000000000e-01 + 6.239900000000000e-01 + 6.260900000000000e-01 + 6.008300000000000e-01 + 5.456299999999999e-01 + 4.604600000000000e-01 + 3.520000000000000e-01 + 2.332200000000000e-01 + 1.189100000000000e-01 + 2.096900000000000e-02 +-5.301000000000000e-02 +-9.788100000000000e-02 +-1.090400000000000e-01 +-8.394200000000000e-02 +-2.689200000000000e-02 + 4.697100000000000e-02 + 1.134500000000000e-01 + 1.480400000000000e-01 + 1.372300000000000e-01 + 8.510500000000000e-02 + 1.030300000000000e-02 +-6.525300000000001e-02 +-1.284700000000000e-01 +-1.802500000000000e-01 +-2.306400000000000e-01 +-2.879700000000000e-01 +-3.500000000000000e-01 +-4.029400000000000e-01 +-4.287000000000000e-01 +-4.148300000000000e-01 +-3.604900000000000e-01 +-2.753500000000000e-01 +-1.731800000000000e-01 +-6.560000000000001e-02 + 3.998800000000000e-02 + 1.377000000000000e-01 + 2.190600000000000e-01 + 2.716900000000000e-01 + 2.829100000000000e-01 + 2.467700000000000e-01 + 1.701800000000000e-01 + 7.394500000000000e-02 +-1.319400000000000e-02 +-6.541400000000000e-02 +-7.051000000000000e-02 +-3.496000000000000e-02 + 1.952300000000000e-02 + 6.633500000000001e-02 + 8.576600000000000e-02 + 7.207600000000000e-02 + 3.278400000000000e-02 +-1.793700000000000e-02 +-6.646500000000000e-02 +-1.028700000000000e-01 +-1.195700000000000e-01 +-1.091400000000000e-01 +-6.596100000000001e-02 + 8.158600000000000e-03 + 9.871300000000000e-02 + 1.801200000000000e-01 + 2.263200000000000e-01 + 2.252600000000000e-01 + 1.873800000000000e-01 + 1.409600000000000e-01 + 1.161300000000000e-01 + 1.274700000000000e-01 + 1.672300000000000e-01 + 2.131400000000000e-01 + 2.446000000000000e-01 + 2.546200000000000e-01 + 2.490800000000000e-01 + 2.351000000000000e-01 + 2.093300000000000e-01 + 1.565400000000000e-01 + 6.009800000000000e-02 +-8.402300000000000e-02 +-2.611300000000000e-01 +-4.444600000000000e-01 +-6.086700000000000e-01 +-7.391700000000000e-01 +-8.302500000000000e-01 +-8.753100000000000e-01 +-8.599300000000000e-01 +-7.660100000000000e-01 +-5.856700000000000e-01 +-3.341200000000000e-01 +-5.012200000000000e-02 + 2.181400000000000e-01 + 4.328200000000000e-01 + 5.785900000000000e-01 + 6.601800000000000e-01 + 6.895800000000000e-01 + 6.746700000000000e-01 + 6.179400000000000e-01 + 5.244400000000000e-01 + 4.095100000000000e-01 + 2.972300000000000e-01 + 2.087300000000000e-01 + 1.490000000000000e-01 + 1.029500000000000e-01 + 4.480300000000000e-02 +-4.504400000000000e-02 +-1.669900000000000e-01 +-3.008500000000000e-01 +-4.155700000000000e-01 +-4.825100000000000e-01 +-4.844200000000000e-01 +-4.174900000000000e-01 +-2.891100000000000e-01 +-1.155800000000000e-01 + 7.929000000000000e-02 + 2.664400000000000e-01 + 4.167200000000000e-01 + 5.078300000000000e-01 + 5.296000000000000e-01 + 4.843500000000000e-01 + 3.832900000000000e-01 + 2.422400000000000e-01 + 7.986400000000000e-02 +-8.207100000000001e-02 +-2.197900000000000e-01 +-3.123500000000000e-01 +-3.486300000000000e-01 +-3.316300000000000e-01 +-2.762900000000000e-01 +-2.020000000000000e-01 +-1.253400000000000e-01 +-5.811500000000000e-02 +-1.070600000000000e-02 + 4.911200000000000e-03 +-2.218800000000000e-02 +-9.367800000000000e-02 +-1.950700000000000e-01 +-2.979200000000000e-01 +-3.724700000000000e-01 +-4.030800000000000e-01 +-3.951600000000000e-01 +-3.678500000000000e-01 +-3.379200000000000e-01 +-3.069500000000000e-01 +-2.616000000000000e-01 +-1.855900000000000e-01 +-7.276299999999999e-02 + 6.961900000000000e-02 + 2.287500000000000e-01 + 3.964800000000000e-01 + 5.706900000000000e-01 + 7.456300000000000e-01 + 9.005500000000000e-01 + 9.998700000000000e-01 + 1.009700000000000e+00 + 9.205600000000000e-01 + 7.588000000000000e-01 + 5.745200000000000e-01 + 4.123300000000000e-01 + 2.848200000000000e-01 + 1.684100000000000e-01 + 2.533900000000000e-02 +-1.637800000000000e-01 +-3.809000000000000e-01 +-5.787000000000000e-01 +-7.098600000000000e-01 +-7.561900000000000e-01 +-7.376000000000000e-01 +-6.964200000000000e-01 +-6.701500000000000e-01 +-6.718000000000000e-01 +-6.891300000000000e-01 +-6.986000000000000e-01 +-6.809700000000000e-01 +-6.272600000000000e-01 +-5.347800000000000e-01 +-4.009000000000000e-01 +-2.232000000000000e-01 +-6.222800000000000e-03 + 2.318500000000000e-01 + 4.605200000000000e-01 + 6.475200000000000e-01 + 7.718900000000000e-01 + 8.303600000000000e-01 + 8.326700000000000e-01 + 7.900600000000000e-01 + 7.061900000000000e-01 + 5.774600000000000e-01 + 4.026100000000000e-01 + 1.941200000000000e-01 +-1.767800000000000e-02 +-1.923800000000000e-01 +-2.957900000000000e-01 +-3.157900000000000e-01 +-2.683600000000000e-01 +-1.895700000000000e-01 +-1.171500000000000e-01 +-7.160800000000000e-02 +-4.780800000000000e-02 +-2.207600000000000e-02 + 2.895600000000000e-02 + 1.095100000000000e-01 + 1.982500000000000e-01 + 2.592200000000000e-01 + 2.636000000000000e-01 + 2.078500000000000e-01 + 1.155400000000000e-01 + 2.154000000000000e-02 +-5.051500000000000e-02 +-1.012400000000000e-01 +-1.499200000000000e-01 +-2.150300000000000e-01 +-2.961900000000000e-01 +-3.714800000000000e-01 +-4.122400000000000e-01 +-4.038000000000000e-01 +-3.562100000000000e-01 +-2.968200000000000e-01 +-2.508500000000000e-01 +-2.247000000000000e-01 +-2.042000000000000e-01 +-1.680400000000000e-01 +-1.054600000000000e-01 +-2.531700000000000e-02 + 4.889200000000000e-02 + 9.280099999999999e-02 + 9.394800000000000e-02 + 5.667100000000000e-02 +-7.303700000000000e-04 +-5.225100000000000e-02 +-7.067500000000000e-02 +-3.438500000000000e-02 + 6.476400000000000e-02 + 2.149600000000000e-01 + 3.848900000000000e-01 + 5.346300000000000e-01 + 6.332600000000000e-01 + 6.724599999999999e-01 + 6.658400000000000e-01 + 6.336500000000000e-01 + 5.837100000000000e-01 + 5.041600000000001e-01 + 3.746500000000000e-01 + 1.883100000000000e-01 +-3.304700000000000e-02 +-2.437800000000000e-01 +-3.973800000000000e-01 +-4.712400000000000e-01 +-4.754800000000000e-01 +-4.402300000000000e-01 +-3.927600000000000e-01 +-3.425900000000000e-01 +-2.848100000000000e-01 +-2.159200000000000e-01 +-1.465300000000000e-01 +-9.866400000000000e-02 +-8.988599999999999e-02 +-1.187100000000000e-01 +-1.648100000000000e-01 +-2.050400000000000e-01 +-2.322600000000000e-01 +-2.607600000000000e-01 +-3.128700000000000e-01 +-3.965800000000000e-01 +-4.916500000000000e-01 +-5.556000000000000e-01 +-5.458499999999999e-01 +-4.429800000000000e-01 +-2.602200000000000e-01 +-3.504600000000000e-02 + 1.892600000000000e-01 + 3.800100000000000e-01 + 5.218600000000000e-01 + 6.146800000000000e-01 + 6.675300000000000e-01 + 6.930100000000000e-01 + 7.022000000000000e-01 + 7.001200000000000e-01 + 6.831100000000000e-01 + 6.413200000000000e-01 + 5.670500000000001e-01 + 4.643300000000000e-01 + 3.520100000000000e-01 + 2.557900000000000e-01 + 1.932500000000000e-01 + 1.624700000000000e-01 + 1.434800000000000e-01 + 1.123800000000000e-01 + 5.730400000000000e-02 +-1.613700000000000e-02 +-9.436500000000000e-02 +-1.720200000000000e-01 +-2.607100000000000e-01 +-3.818700000000000e-01 +-5.486000000000000e-01 +-7.504100000000000e-01 +-9.533100000000000e-01 +-1.115300000000000e+00 +-1.206100000000000e+00 +-1.216300000000000e+00 +-1.152200000000000e+00 +-1.022600000000000e+00 +-8.301300000000000e-01 +-5.745400000000001e-01 +-2.634300000000000e-01 + 7.982900000000000e-02 + 4.189400000000000e-01 + 7.168300000000000e-01 + 9.480700000000000e-01 + 1.103200000000000e+00 + 1.184100000000000e+00 + 1.196400000000000e+00 + 1.145300000000000e+00 + 1.038200000000000e+00 + 8.868000000000000e-01 + 7.071300000000000e-01 + 5.143900000000000e-01 + 3.190400000000000e-01 + 1.279800000000000e-01 +-4.970100000000000e-02 +-1.985200000000000e-01 +-3.000500000000000e-01 +-3.436300000000000e-01 +-3.366800000000000e-01 +-3.055100000000000e-01 +-2.838600000000000e-01 +-2.955600000000000e-01 +-3.428800000000000e-01 +-4.078700000000000e-01 +-4.651900000000000e-01 +-4.968800000000000e-01 +-4.996500000000000e-01 +-4.816000000000000e-01 +-4.527700000000000e-01 +-4.170300000000000e-01 +-3.697700000000000e-01 +-3.013500000000000e-01 +-2.027000000000000e-01 +-7.037300000000000e-02 + 9.006800000000000e-02 + 2.630900000000000e-01 + 4.254800000000000e-01 + 5.527900000000000e-01 + 6.281200000000000e-01 + 6.484000000000000e-01 + 6.235400000000000e-01 + 5.678000000000000e-01 + 4.894700000000000e-01 + 3.867600000000000e-01 + 2.541500000000000e-01 + 9.426300000000000e-02 +-7.488900000000000e-02 +-2.248300000000000e-01 +-3.315900000000000e-01 +-3.898900000000000e-01 +-4.150800000000000e-01 +-4.310200000000000e-01 +-4.526700000000000e-01 +-4.766400000000000e-01 +-4.858900000000000e-01 +-4.632200000000000e-01 +-4.019100000000000e-01 +-3.059000000000000e-01 +-1.822200000000000e-01 +-3.569400000000000e-02 + 1.277600000000000e-01 + 2.925900000000000e-01 + 4.310100000000000e-01 + 5.134900000000000e-01 + 5.274200000000000e-01 + 4.887900000000000e-01 + 4.346100000000000e-01 + 3.983600000000000e-01 + 3.860600000000000e-01 + 3.726200000000000e-01 + 3.230500000000000e-01 + 2.232000000000000e-01 + 9.538700000000000e-02 +-1.475800000000000e-02 +-7.143700000000000e-02 +-7.618400000000000e-02 +-6.790599999999999e-02 +-9.489100000000000e-02 +-1.802800000000000e-01 +-3.073500000000000e-01 +-4.347500000000000e-01 +-5.279199999999999e-01 +-5.806200000000000e-01 +-6.103200000000000e-01 +-6.328700000000000e-01 +-6.397400000000000e-01 +-5.978500000000000e-01 +-4.732700000000000e-01 +-2.602800000000000e-01 + 7.340300000000000e-03 + 2.714000000000000e-01 + 4.792500000000000e-01 + 6.069200000000000e-01 + 6.610700000000000e-01 + 6.626900000000000e-01 + 6.284000000000000e-01 + 5.637799999999999e-01 + 4.703900000000000e-01 + 3.567000000000000e-01 + 2.409300000000000e-01 + 1.432600000000000e-01 + 7.455199999999999e-02 + 3.175500000000000e-02 + 3.161400000000000e-03 +-2.189300000000000e-02 +-4.762900000000000e-02 +-7.438400000000001e-02 +-1.050000000000000e-01 +-1.475300000000000e-01 +-2.106100000000000e-01 +-2.948300000000000e-01 +-3.870700000000000e-01 +-4.625300000000000e-01 +-4.931300000000000e-01 +-4.575900000000000e-01 +-3.491800000000000e-01 +-1.800000000000000e-01 + 1.804200000000000e-02 + 1.972900000000000e-01 + 3.063400000000000e-01 + 3.095700000000000e-01 + 2.065400000000000e-01 + 3.871500000000000e-02 +-1.253700000000000e-01 +-2.224300000000000e-01 +-2.267400000000000e-01 +-1.616600000000000e-01 +-8.169999999999999e-02 +-3.587400000000000e-02 +-3.674900000000000e-02 +-5.574300000000000e-02 +-4.683500000000000e-02 + 1.918700000000000e-02 + 1.343600000000000e-01 + 2.601300000000000e-01 + 3.540100000000000e-01 + 3.958700000000000e-01 + 3.962500000000000e-01 + 3.839000000000000e-01 + 3.846200000000000e-01 + 4.070500000000000e-01 + 4.423200000000000e-01 + 4.726800000000000e-01 + 4.793200000000000e-01 + 4.442300000000000e-01 + 3.496300000000000e-01 + 1.816300000000000e-01 +-6.026800000000000e-02 +-3.538300000000000e-01 +-6.545299999999999e-01 +-9.088000000000001e-01 +-1.073800000000000e+00 +-1.131400000000000e+00 +-1.088300000000000e+00 +-9.644100000000000e-01 +-7.801399999999999e-01 +-5.515700000000000e-01 +-2.947900000000000e-01 +-3.181500000000000e-02 + 2.100600000000000e-01 + 4.070300000000000e-01 + 5.483700000000000e-01 + 6.380900000000000e-01 + 6.861600000000000e-01 + 6.963800000000000e-01 + 6.616100000000000e-01 + 5.715600000000000e-01 + 4.277100000000000e-01 + 2.530700000000000e-01 + 8.735000000000000e-02 +-3.113300000000000e-02 +-8.501800000000000e-02 +-8.550300000000000e-02 +-6.265000000000000e-02 +-4.513200000000000e-02 +-4.320200000000000e-02 +-4.581900000000000e-02 +-3.270000000000000e-02 + 7.980200000000000e-03 + 6.867200000000000e-02 + 1.253600000000000e-01 + 1.518800000000000e-01 + 1.359100000000000e-01 + 8.640200000000001e-02 + 2.796300000000000e-02 +-1.412600000000000e-02 +-2.882600000000000e-02 +-2.508000000000000e-02 +-2.491500000000000e-02 +-4.829700000000000e-02 +-9.943299999999999e-02 +-1.635300000000000e-01 +-2.164700000000000e-01 +-2.412000000000000e-01 +-2.397200000000000e-01 +-2.322000000000000e-01 +-2.431000000000000e-01 +-2.838100000000000e-01 +-3.439600000000000e-01 +-3.976100000000000e-01 +-4.198300000000000e-01 +-4.015300000000000e-01 +-3.515500000000000e-01 +-2.851900000000000e-01 +-2.086400000000000e-01 +-1.127100000000000e-01 + 1.848000000000000e-02 + 1.896200000000000e-01 + 3.813500000000000e-01 + 5.535000000000000e-01 + 6.641100000000000e-01 + 6.921400000000000e-01 + 6.487600000000000e-01 + 5.698900000000000e-01 + 4.954400000000000e-01 + 4.489700000000000e-01 + 4.296300000000000e-01 + 4.189400000000000e-01 + 3.950700000000000e-01 + 3.441700000000000e-01 + 2.629600000000000e-01 + 1.544100000000000e-01 + 2.274100000000000e-02 +-1.273500000000000e-01 +-2.875900000000000e-01 +-4.432000000000000e-01 +-5.741800000000000e-01 +-6.612200000000000e-01 +-6.929800000000000e-01 +-6.705300000000000e-01 +-6.066400000000000e-01 +-5.206100000000000e-01 +-4.311300000000000e-01 +-3.503400000000000e-01 +-2.811700000000000e-01 +-2.189900000000000e-01 +-1.569500000000000e-01 +-9.233700000000000e-02 +-3.015400000000000e-02 + 1.903400000000000e-02 + 4.673500000000000e-02 + 5.494600000000000e-02 + 5.897000000000000e-02 + 8.104300000000000e-02 + 1.375800000000000e-01 + 2.282300000000000e-01 + 3.348400000000000e-01 + 4.319900000000000e-01 + 5.021900000000000e-01 + 5.451000000000000e-01 + 5.735900000000000e-01 + 5.996200000000000e-01 + 6.203200000000000e-01 + 6.153300000000000e-01 + 5.581700000000001e-01 + 4.341900000000000e-01 + 2.528100000000000e-01 + 4.546200000000000e-02 +-1.491000000000000e-01 +-3.025000000000000e-01 +-4.064100000000000e-01 +-4.699000000000000e-01 +-5.082800000000000e-01 +-5.320800000000000e-01 +-5.427300000000000e-01 +-5.356200000000000e-01 +-5.067199999999999e-01 +-4.576000000000000e-01 +-3.961800000000000e-01 +-3.338200000000000e-01 +-2.803100000000000e-01 +-2.391300000000000e-01 +-2.044600000000000e-01 +-1.620500000000000e-01 +-9.523900000000000e-02 + 5.347100000000000e-03 + 1.328600000000000e-01 + 2.625600000000000e-01 + 3.609700000000000e-01 + 4.026200000000000e-01 + 3.851600000000000e-01 + 3.324500000000000e-01 + 2.822700000000000e-01 + 2.650100000000000e-01 + 2.864700000000000e-01 + 3.257800000000000e-01 + 3.495300000000000e-01 + 3.327200000000000e-01 + 2.728300000000000e-01 + 1.889900000000000e-01 + 1.083500000000000e-01 + 5.004700000000000e-02 + 1.706200000000000e-02 +-4.776400000000000e-04 +-1.534600000000000e-02 +-3.491100000000000e-02 +-5.977100000000000e-02 +-8.845200000000000e-02 +-1.229100000000000e-01 +-1.699400000000000e-01 +-2.374200000000000e-01 +-3.280600000000000e-01 +-4.347200000000000e-01 +-5.396000000000000e-01 +-6.177200000000000e-01 +-6.435100000000000e-01 +-5.987800000000000e-01 +-4.798500000000000e-01 +-3.007700000000000e-01 +-9.030600000000000e-02 + 1.174800000000000e-01 + 2.949500000000000e-01 + 4.287700000000000e-01 + 5.192500000000000e-01 + 5.722800000000000e-01 + 5.901900000000000e-01 + 5.691200000000000e-01 + 5.053100000000000e-01 + 4.049600000000000e-01 + 2.885600000000000e-01 + 1.838200000000000e-01 + 1.104900000000000e-01 + 6.759999999999999e-02 + 3.348500000000000e-02 +-1.977000000000000e-02 +-1.066500000000000e-01 +-2.168200000000000e-01 +-3.202100000000000e-01 +-3.848600000000000e-01 +-3.951900000000000e-01 +-3.583100000000000e-01 +-2.953900000000000e-01 +-2.257500000000000e-01 +-1.553300000000000e-01 +-7.707500000000000e-02 + 1.905400000000000e-02 + 1.346000000000000e-01 + 2.572500000000000e-01 + 3.633200000000000e-01 + 4.246200000000000e-01 + 4.154500000000000e-01 + 3.187600000000000e-01 + 1.324600000000000e-01 +-1.243500000000000e-01 +-4.092600000000000e-01 +-6.638600000000000e-01 +-8.310500000000000e-01 +-8.751900000000000e-01 +-7.935300000000000e-01 +-6.113600000000000e-01 +-3.641200000000000e-01 +-7.948200000000000e-02 + 2.274100000000000e-01 + 5.431700000000000e-01 + 8.406000000000000e-01 + 1.074500000000000e+00 + 1.196500000000000e+00 + 1.181600000000000e+00 + 1.045900000000000e+00 + 8.409799999999999e-01 + 6.264300000000000e-01 + 4.366800000000000e-01 + 2.664700000000000e-01 + 8.365900000000000e-02 +-1.406100000000000e-01 +-4.068500000000000e-01 +-6.848300000000000e-01 +-9.333200000000000e-01 +-1.124600000000000e+00 +-1.254400000000000e+00 +-1.330600000000000e+00 +-1.352300000000000e+00 +-1.299300000000000e+00 +-1.141800000000000e+00 +-8.647100000000000e-01 +-4.874000000000000e-01 +-6.322200000000000e-02 + 3.421300000000000e-01 + 6.783100000000000e-01 + 9.255100000000001e-01 + 1.089500000000000e+00 + 1.183900000000000e+00 + 1.215200000000000e+00 + 1.181500000000000e+00 + 1.082500000000000e+00 + 9.292100000000000e-01 + 7.441800000000000e-01 + 5.507600000000000e-01 + 3.620500000000000e-01 + 1.786400000000000e-01 +-3.287600000000000e-03 +-1.813800000000000e-01 +-3.438000000000000e-01 +-4.763200000000000e-01 +-5.728500000000000e-01 +-6.394400000000000e-01 +-6.870400000000000e-01 +-7.187900000000000e-01 +-7.228700000000000e-01 +-6.782100000000000e-01 +-5.697500000000000e-01 +-4.019500000000000e-01 +-2.001700000000000e-01 + 1.095300000000000e-03 + 1.740000000000000e-01 + 3.058600000000000e-01 + 3.955100000000000e-01 + 4.430100000000000e-01 + 4.427800000000000e-01 + 3.866600000000000e-01 + 2.737200000000000e-01 + 1.178700000000000e-01 +-5.426900000000000e-02 +-2.144300000000000e-01 +-3.443100000000000e-01 +-4.391300000000000e-01 +-5.010900000000000e-01 +-5.290000000000000e-01 +-5.133600000000000e-01 +-4.411000000000000e-01 +-3.064900000000000e-01 +-1.192900000000000e-01 + 9.590000000000000e-02 + 3.087600000000000e-01 + 4.939600000000000e-01 + 6.366700000000000e-01 + 7.309000000000000e-01 + 7.746499999999999e-01 + 7.673300000000000e-01 + 7.116900000000000e-01 + 6.174500000000001e-01 + 5.015100000000000e-01 + 3.826600000000000e-01 + 2.732300000000000e-01 + 1.734800000000000e-01 + 7.288900000000000e-02 +-4.202500000000000e-02 +-1.783900000000000e-01 +-3.316000000000000e-01 +-4.864200000000000e-01 +-6.227600000000000e-01 +-7.222700000000000e-01 +-7.724600000000000e-01 +-7.679800000000000e-01 +-7.106100000000000e-01 +-6.093499999999999e-01 +-4.805000000000000e-01 +-3.461400000000000e-01 +-2.297300000000000e-01 +-1.491100000000000e-01 +-1.093200000000000e-01 +-9.869699999999999e-02 +-9.079000000000000e-02 +-5.284300000000000e-02 + 4.150000000000000e-02 + 1.998500000000000e-01 + 4.045800000000000e-01 + 6.161700000000000e-01 + 7.864400000000000e-01 + 8.768200000000000e-01 + 8.732500000000000e-01 + 7.901700000000000e-01 + 6.608100000000000e-01 + 5.187100000000000e-01 + 3.804800000000000e-01 + 2.399000000000000e-01 + 7.680200000000000e-02 +-1.242300000000000e-01 +-3.566300000000000e-01 +-5.866600000000000e-01 +-7.641900000000000e-01 +-8.438600000000001e-01 +-8.055800000000000e-01 +-6.635900000000000e-01 +-4.601400000000000e-01 +-2.477600000000000e-01 +-6.976499999999999e-02 + 5.211500000000000e-02 + 1.185900000000000e-01 + 1.445100000000000e-01 + 1.476200000000000e-01 + 1.408800000000000e-01 + 1.310400000000000e-01 + 1.221400000000000e-01 + 1.195900000000000e-01 + 1.310500000000000e-01 + 1.631500000000000e-01 + 2.164600000000000e-01 + 2.826200000000000e-01 + 3.460700000000000e-01 + 3.897200000000000e-01 + 4.010600000000000e-01 + 3.750200000000000e-01 + 3.122300000000000e-01 + 2.152900000000000e-01 + 8.672700000000000e-02 +-6.871099999999999e-02 +-2.391900000000000e-01 +-4.032600000000000e-01 +-5.340400000000000e-01 +-6.099200000000000e-01 +-6.260000000000000e-01 +-5.980500000000000e-01 +-5.544700000000000e-01 +-5.194900000000000e-01 +-4.976900000000000e-01 +-4.703900000000000e-01 +-4.073000000000000e-01 +-2.867000000000000e-01 +-1.109200000000000e-01 + 9.326700000000000e-02 + 2.899000000000000e-01 + 4.539300000000000e-01 + 5.821700000000000e-01 + 6.875000000000000e-01 + 7.813900000000000e-01 + 8.587100000000000e-01 + 8.973200000000000e-01 + 8.736600000000000e-01 + 7.825600000000000e-01 + 6.454100000000000e-01 + 4.984200000000000e-01 + 3.682900000000000e-01 + 2.529700000000000e-01 + 1.230100000000000e-01 +-5.542400000000000e-02 +-2.912200000000000e-01 +-5.537300000000001e-01 +-7.844500000000000e-01 +-9.280700000000000e-01 +-9.619600000000000e-01 +-9.047300000000000e-01 +-7.993200000000000e-01 +-6.843700000000000e-01 +-5.746900000000000e-01 +-4.633300000000000e-01 +-3.402400000000000e-01 +-2.105800000000000e-01 +-9.697000000000000e-02 +-2.425000000000000e-02 + 3.090900000000000e-04 +-5.075900000000000e-03 +-7.291500000000000e-03 + 2.083700000000000e-02 + 8.537599999999999e-02 + 1.723400000000000e-01 + 2.620900000000000e-01 + 3.439400000000000e-01 + 4.194600000000000e-01 + 4.932800000000000e-01 + 5.619200000000000e-01 + 6.117700000000000e-01 + 6.288700000000000e-01 + 6.120200000000000e-01 + 5.768500000000000e-01 + 5.464000000000000e-01 + 5.348000000000001e-01 + 5.370600000000000e-01 + 5.324500000000000e-01 + 4.979800000000000e-01 + 4.203100000000000e-01 + 2.972100000000000e-01 + 1.301900000000000e-01 +-8.175800000000000e-02 +-3.384000000000000e-01 +-6.263600000000000e-01 +-9.104900000000000e-01 +-1.140200000000000e+00 +-1.270900000000000e+00 +-1.286500000000000e+00 +-1.207300000000000e+00 +-1.074800000000000e+00 +-9.242000000000000e-01 +-7.650900000000000e-01 +-5.841200000000000e-01 +-3.667700000000000e-01 +-1.202000000000000e-01 + 1.218900000000000e-01 + 3.171900000000000e-01 + 4.417500000000000e-01 + 5.055300000000000e-01 + 5.443100000000000e-01 + 5.946300000000000e-01 + 6.702800000000000e-01 + 7.570600000000000e-01 + 8.270500000000000e-01 + 8.595400000000000e-01 + 8.521100000000000e-01 + 8.153500000000000e-01 + 7.588900000000000e-01 + 6.820800000000000e-01 + 5.773800000000000e-01 + 4.421800000000000e-01 + 2.872200000000000e-01 + 1.331900000000000e-01 +-2.319300000000000e-03 +-1.166100000000000e-01 +-2.222900000000000e-01 +-3.354100000000000e-01 +-4.605600000000000e-01 +-5.844900000000000e-01 +-6.833100000000000e-01 +-7.375200000000000e-01 +-7.440800000000000e-01 +-7.171900000000000e-01 +-6.784900000000000e-01 +-6.441300000000000e-01 +-6.171100000000000e-01 +-5.883300000000000e-01 +-5.434800000000000e-01 +-4.706600000000000e-01 +-3.650000000000000e-01 +-2.298400000000000e-01 +-7.601400000000000e-02 + 8.024299999999999e-02 + 2.208600000000000e-01 + 3.311700000000000e-01 + 4.051800000000000e-01 + 4.478700000000000e-01 + 4.726800000000000e-01 + 4.951700000000000e-01 + 5.262700000000000e-01 + 5.688900000000000e-01 + 6.186600000000000e-01 + 6.670900000000000e-01 + 7.037200000000000e-01 + 7.160100000000000e-01 + 6.883600000000000e-01 + 6.034400000000000e-01 + 4.478100000000000e-01 + 2.207400000000000e-01 +-5.801300000000000e-02 +-3.466600000000000e-01 +-5.893900000000000e-01 +-7.330300000000000e-01 +-7.468500000000000e-01 +-6.369400000000000e-01 +-4.470400000000000e-01 +-2.431200000000000e-01 +-8.678000000000000e-02 +-9.735100000000000e-03 +-3.088400000000000e-03 +-2.810600000000000e-02 +-4.326300000000000e-02 +-3.180700000000000e-02 +-1.272100000000000e-02 +-2.760200000000000e-02 +-1.112200000000000e-01 +-2.644200000000000e-01 +-4.468600000000000e-01 +-5.944700000000001e-01 +-6.508500000000000e-01 +-5.934900000000000e-01 +-4.405100000000000e-01 +-2.364600000000000e-01 +-2.843500000000000e-02 + 1.528700000000000e-01 + 2.985300000000000e-01 + 4.145300000000000e-01 + 5.103900000000000e-01 + 5.906800000000000e-01 + 6.520500000000000e-01 + 6.849000000000000e-01 + 6.773700000000000e-01 + 6.210599999999999e-01 + 5.172200000000000e-01 + 3.807200000000000e-01 + 2.378800000000000e-01 + 1.165400000000000e-01 + 3.275600000000000e-02 +-1.751300000000000e-02 +-5.453200000000000e-02 +-9.978300000000000e-02 +-1.596700000000000e-01 +-2.202000000000000e-01 +-2.577500000000000e-01 +-2.585800000000000e-01 +-2.325400000000000e-01 +-2.094300000000000e-01 +-2.194600000000000e-01 +-2.717000000000000e-01 +-3.462300000000000e-01 +-4.062700000000000e-01 +-4.215000000000000e-01 +-3.858600000000000e-01 +-3.178300000000000e-01 +-2.446700000000000e-01 +-1.834100000000000e-01 +-1.328700000000000e-01 +-8.081199999999999e-02 +-1.846200000000000e-02 + 5.025000000000000e-02 + 1.117200000000000e-01 + 1.540600000000000e-01 + 1.761200000000000e-01 + 1.863400000000000e-01 + 1.927400000000000e-01 + 1.935900000000000e-01 + 1.779600000000000e-01 + 1.370000000000000e-01 + 7.754999999999999e-02 + 2.616400000000000e-02 + 1.828000000000000e-02 + 7.786899999999999e-02 + 2.006100000000000e-01 + 3.523100000000000e-01 + 4.846800000000000e-01 + 5.595400000000000e-01 + 5.668700000000000e-01 + 5.259200000000001e-01 + 4.690500000000000e-01 + 4.186000000000000e-01 + 3.711400000000000e-01 + 2.990100000000000e-01 + 1.685200000000000e-01 +-3.610600000000000e-02 +-2.974900000000000e-01 +-5.680100000000000e-01 +-7.898100000000000e-01 +-9.205800000000000e-01 +-9.509700000000000e-01 +-9.046100000000000e-01 +-8.223100000000000e-01 +-7.404200000000000e-01 +-6.753700000000000e-01 +-6.209500000000000e-01 +-5.568400000000000e-01 +-4.612700000000000e-01 +-3.210200000000000e-01 +-1.358300000000000e-01 + 8.180600000000000e-02 + 3.095600000000000e-01 + 5.200399999999999e-01 + 6.875300000000000e-01 + 7.955200000000000e-01 + 8.413700000000000e-01 + 8.350400000000000e-01 + 7.915400000000000e-01 + 7.222700000000000e-01 + 6.316200000000000e-01 + 5.217200000000000e-01 + 4.012600000000000e-01 + 2.897800000000000e-01 + 2.114600000000000e-01 + 1.810400000000000e-01 + 1.917000000000000e-01 + 2.150800000000000e-01 + 2.151700000000000e-01 + 1.672400000000000e-01 + 6.877200000000000e-02 +-6.450800000000000e-02 +-2.127700000000000e-01 +-3.640200000000000e-01 +-5.140600000000000e-01 +-6.557900000000000e-01 +-7.692700000000000e-01 +-8.242300000000000e-01 +-7.966200000000000e-01 +-6.881699999999999e-01 +-5.335299999999999e-01 +-3.871800000000000e-01 +-2.968200000000000e-01 +-2.795100000000000e-01 +-3.154400000000000e-01 +-3.616400000000000e-01 +-3.755600000000000e-01 +-3.338300000000000e-01 +-2.370600000000000e-01 +-1.021600000000000e-01 + 4.980100000000000e-02 + 2.024400000000000e-01 + 3.471300000000000e-01 + 4.820200000000000e-01 + 6.094300000000000e-01 + 7.319700000000000e-01 + 8.473100000000000e-01 + 9.433000000000000e-01 + 9.975700000000000e-01 + 9.845600000000000e-01 + 8.879800000000000e-01 + 7.116400000000001e-01 + 4.809600000000000e-01 + 2.333300000000000e-01 + 2.954500000000000e-03 +-1.898300000000000e-01 +-3.390800000000000e-01 +-4.454500000000000e-01 +-5.081500000000000e-01 +-5.236800000000000e-01 +-4.916500000000000e-01 +-4.214500000000000e-01 +-3.330300000000000e-01 +-2.500000000000000e-01 +-1.899200000000000e-01 +-1.585200000000000e-01 +-1.509400000000000e-01 +-1.575400000000000e-01 +-1.692300000000000e-01 +-1.795500000000000e-01 +-1.847600000000000e-01 +-1.844800000000000e-01 +-1.833100000000000e-01 +-1.907300000000000e-01 +-2.166000000000000e-01 +-2.635100000000000e-01 +-3.214500000000000e-01 +-3.698400000000000e-01 +-3.870000000000000e-01 +-3.606100000000000e-01 +-2.917400000000000e-01 +-1.901100000000000e-01 +-6.567600000000000e-02 + 7.545900000000000e-02 + 2.276800000000000e-01 + 3.794500000000000e-01 + 5.120800000000000e-01 + 6.073100000000000e-01 + 6.583599999999999e-01 + 6.741200000000001e-01 + 6.712900000000001e-01 + 6.594400000000000e-01 + 6.319399999999999e-01 + 5.718000000000000e-01 + 4.686700000000000e-01 + 3.330300000000000e-01 + 1.939500000000000e-01 + 8.075000000000000e-02 + 2.936800000000000e-03 +-5.421900000000000e-02 +-1.137400000000000e-01 +-1.837000000000000e-01 +-2.471800000000000e-01 +-2.757700000000000e-01 +-2.565400000000000e-01 +-2.093700000000000e-01 +-1.780900000000000e-01 +-2.001200000000000e-01 +-2.784100000000000e-01 +-3.790700000000000e-01 +-4.576900000000000e-01 +-4.933400000000000e-01 +-5.019200000000000e-01 +-5.172800000000000e-01 +-5.555400000000000e-01 +-5.933000000000000e-01 +-5.801800000000000e-01 +-4.777900000000000e-01 +-2.943600000000000e-01 +-8.597800000000000e-02 + 7.904100000000000e-02 + 1.663200000000000e-01 + 1.967000000000000e-01 + 2.260000000000000e-01 + 2.987500000000000e-01 + 4.116200000000000e-01 + 5.144500000000000e-01 + 5.480500000000000e-01 + 4.897700000000000e-01 + 3.732900000000000e-01 + 2.686000000000000e-01 + 2.377000000000000e-01 + 2.970200000000000e-01 + 4.104200000000000e-01 + 5.135900000000000e-01 + 5.505000000000000e-01 + 4.985800000000000e-01 + 3.715700000000000e-01 + 2.049500000000000e-01 + 3.733000000000000e-02 +-1.019800000000000e-01 +-1.974100000000000e-01 +-2.468600000000000e-01 +-2.598100000000000e-01 +-2.532000000000000e-01 +-2.443500000000000e-01 +-2.429000000000000e-01 +-2.467900000000000e-01 +-2.459700000000000e-01 +-2.318200000000000e-01 +-2.055400000000000e-01 +-1.788900000000000e-01 +-1.668300000000000e-01 +-1.781700000000000e-01 +-2.112800000000000e-01 +-2.577200000000000e-01 +-3.091400000000000e-01 +-3.609300000000000e-01 +-4.096600000000000e-01 +-4.477700000000000e-01 +-4.619000000000000e-01 +-4.380900000000000e-01 +-3.703000000000000e-01 +-2.652200000000000e-01 +-1.389800000000000e-01 +-7.869500000000000e-03 + 1.196500000000000e-01 + 2.438500000000000e-01 + 3.676400000000000e-01 + 4.892100000000000e-01 + 5.998000000000000e-01 + 6.878100000000000e-01 + 7.453200000000000e-01 + 7.714600000000000e-01 + 7.704700000000000e-01 + 7.470599999999999e-01 + 7.033700000000001e-01 + 6.392300000000000e-01 + 5.541600000000000e-01 + 4.480300000000000e-01 + 3.199800000000000e-01 + 1.679400000000000e-01 +-8.661100000000000e-03 +-2.037700000000000e-01 +-4.013800000000000e-01 +-5.784600000000000e-01 +-7.139200000000000e-01 +-7.982700000000000e-01 +-8.369600000000000e-01 +-8.447900000000000e-01 +-8.355500000000000e-01 +-8.143100000000000e-01 +-7.773300000000000e-01 +-7.183500000000000e-01 +-6.347000000000000e-01 +-5.281000000000000e-01 +-4.004000000000000e-01 +-2.494600000000000e-01 +-7.046300000000000e-02 + 1.371000000000000e-01 + 3.619800000000000e-01 + 5.794700000000000e-01 + 7.577000000000000e-01 + 8.681700000000000e-01 + 8.947800000000000e-01 + 8.376900000000000e-01 + 7.126700000000000e-01 + 5.482200000000000e-01 + 3.813900000000000e-01 + 2.503400000000000e-01 + 1.825900000000000e-01 + 1.824600000000000e-01 + 2.253700000000000e-01 + 2.657600000000000e-01 + 2.576700000000000e-01 + 1.777200000000000e-01 + 3.662800000000000e-02 +-1.283500000000000e-01 +-2.749700000000000e-01 +-3.774200000000000e-01 +-4.338400000000000e-01 +-4.572200000000000e-01 +-4.590300000000000e-01 +-4.393600000000000e-01 +-3.907700000000000e-01 +-3.112600000000000e-01 +-2.142000000000000e-01 +-1.260300000000000e-01 +-7.305200000000001e-02 +-6.728800000000000e-02 +-1.023100000000000e-01 +-1.609700000000000e-01 +-2.276300000000000e-01 +-2.941200000000000e-01 +-3.551500000000000e-01 +-3.985000000000000e-01 +-4.005900000000000e-01 +-3.340100000000000e-01 +-1.834500000000000e-01 + 4.100000000000000e-02 + 3.035900000000000e-01 + 5.569300000000000e-01 + 7.613700000000000e-01 + 8.974400000000000e-01 + 9.644900000000000e-01 + 9.689800000000000e-01 + 9.127600000000000e-01 + 7.907900000000000e-01 + 5.993200000000000e-01 + 3.475100000000000e-01 + 6.278200000000000e-02 +-2.151200000000000e-01 +-4.477300000000000e-01 +-6.106700000000000e-01 +-6.980600000000000e-01 +-7.178600000000001e-01 +-6.832600000000000e-01 +-6.074300000000000e-01 +-5.041500000000000e-01 +-3.913000000000000e-01 +-2.908400000000000e-01 +-2.221700000000000e-01 +-1.916200000000000e-01 +-1.861100000000000e-01 +-1.775300000000000e-01 +-1.373800000000000e-01 +-5.365900000000000e-02 + 6.120400000000000e-02 + 1.768800000000000e-01 + 2.624800000000000e-01 + 3.031800000000000e-01 + 3.054600000000000e-01 + 2.882300000000000e-01 + 2.675500000000000e-01 + 2.467500000000000e-01 + 2.192000000000000e-01 + 1.805300000000000e-01 + 1.394900000000000e-01 + 1.172800000000000e-01 + 1.340800000000000e-01 + 1.920700000000000e-01 + 2.677400000000000e-01 + 3.206300000000000e-01 + 3.142000000000000e-01 + 2.359600000000000e-01 + 1.045800000000000e-01 +-3.983100000000000e-02 +-1.557700000000000e-01 +-2.187100000000000e-01 +-2.287800000000000e-01 +-2.060700000000000e-01 +-1.784900000000000e-01 +-1.694300000000000e-01 +-1.897400000000000e-01 +-2.355700000000000e-01 +-2.911900000000000e-01 +-3.354900000000000e-01 +-3.505100000000000e-01 +-3.291400000000000e-01 +-2.782300000000000e-01 +-2.150300000000000e-01 +-1.579300000000000e-01 +-1.169500000000000e-01 +-8.945900000000000e-02 +-6.388800000000000e-02 +-2.834900000000000e-02 + 2.172100000000000e-02 + 8.179100000000000e-02 + 1.425100000000000e-01 + 1.960200000000000e-01 + 2.398500000000000e-01 + 2.765200000000000e-01 + 3.108900000000000e-01 + 3.475400000000000e-01 + 3.893000000000000e-01 + 4.356000000000000e-01 + 4.800500000000000e-01 + 5.087300000000000e-01 + 5.025700000000000e-01 + 4.452800000000000e-01 + 3.332100000000000e-01 + 1.804500000000000e-01 + 1.368000000000000e-02 +-1.416100000000000e-01 +-2.750000000000000e-01 +-3.948100000000000e-01 +-5.180300000000000e-01 +-6.528500000000000e-01 +-7.861100000000000e-01 +-8.853700000000000e-01 +-9.148400000000000e-01 +-8.546000000000000e-01 +-7.105399999999999e-01 +-5.090600000000000e-01 +-2.814900000000000e-01 +-4.949800000000000e-02 + 1.791400000000000e-01 + 4.037000000000000e-01 + 6.193200000000000e-01 + 8.105400000000000e-01 + 9.540400000000000e-01 + 1.028200000000000e+00 + 1.023000000000000e+00 + 9.443000000000000e-01 + 8.111400000000000e-01 + 6.471800000000000e-01 + 4.715400000000000e-01 + 2.929100000000000e-01 + 1.097400000000000e-01 +-8.353800000000000e-02 +-2.870400000000000e-01 +-4.885600000000000e-01 +-6.643900000000000e-01 +-7.890800000000000e-01 +-8.491600000000000e-01 +-8.517200000000000e-01 +-8.210000000000000e-01 +-7.836700000000000e-01 +-7.521200000000000e-01 +-7.173600000000000e-01 +-6.567800000000000e-01 +-5.513000000000000e-01 +-3.992200000000000e-01 +-2.170500000000000e-01 +-2.792200000000000e-02 + 1.521800000000000e-01 + 3.187700000000000e-01 + 4.714100000000000e-01 + 6.027900000000000e-01 + 6.962100000000000e-01 + 7.360200000000000e-01 + 7.230100000000000e-01 + 6.806900000000000e-01 + 6.442400000000000e-01 + 6.379600000000000e-01 + 6.577600000000000e-01 + 6.728300000000000e-01 + 6.466900000000000e-01 + 5.625300000000000e-01 + 4.343300000000000e-01 + 2.956900000000000e-01 + 1.755100000000000e-01 + 7.888100000000001e-02 +-1.308600000000000e-02 +-1.262100000000000e-01 +-2.729900000000000e-01 +-4.441000000000000e-01 +-6.154700000000000e-01 +-7.627400000000000e-01 +-8.706900000000000e-01 +-9.325700000000000e-01 +-9.442800000000000e-01 +-9.022200000000000e-01 +-8.081100000000000e-01 +-6.751600000000000e-01 +-5.266700000000000e-01 +-3.845900000000000e-01 +-2.559400000000000e-01 +-1.293000000000000e-01 + 1.285800000000000e-02 + 1.742300000000000e-01 + 3.329900000000000e-01 + 4.501300000000000e-01 + 4.939800000000000e-01 + 4.635100000000000e-01 + 3.918900000000000e-01 + 3.260700000000000e-01 + 2.961800000000000e-01 + 2.970500000000000e-01 + 2.954900000000000e-01 + 2.580800000000000e-01 + 1.789100000000000e-01 + 8.725600000000000e-02 + 3.008000000000000e-02 + 4.295000000000000e-02 + 1.301600000000000e-01 + 2.668100000000000e-01 + 4.184400000000000e-01 + 5.616300000000000e-01 + 6.896000000000000e-01 + 8.004300000000000e-01 + 8.790900000000000e-01 + 8.899200000000000e-01 + 7.878100000000000e-01 + 5.427999999999999e-01 + 1.625200000000000e-01 +-3.018100000000000e-01 +-7.699400000000000e-01 +-1.159800000000000e+00 +-1.413400000000000e+00 +-1.510200000000000e+00 +-1.465000000000000e+00 +-1.315700000000000e+00 +-1.107200000000000e+00 +-8.789700000000000e-01 +-6.568300000000000e-01 +-4.513000000000000e-01 +-2.602300000000000e-01 +-7.611600000000000e-02 + 1.046000000000000e-01 + 2.744800000000000e-01 + 4.151100000000000e-01 + 5.057900000000000e-01 + 5.372900000000000e-01 + 5.221800000000000e-01 + 4.937800000000000e-01 + 4.920600000000000e-01 + 5.432000000000000e-01 + 6.447000000000001e-01 + 7.654600000000000e-01 + 8.612000000000000e-01 + 8.957000000000001e-01 + 8.550400000000000e-01 + 7.472800000000001e-01 + 5.904700000000001e-01 + 3.995500000000000e-01 + 1.822400000000000e-01 +-5.443800000000000e-02 +-2.945000000000000e-01 +-5.102400000000000e-01 +-6.708000000000000e-01 +-7.566000000000001e-01 +-7.689900000000000e-01 +-7.278000000000000e-01 +-6.588900000000000e-01 +-5.812100000000000e-01 +-5.024000000000000e-01 +-4.236300000000000e-01 +-3.466400000000000e-01 +-2.748100000000000e-01 +-2.069300000000000e-01 +-1.312800000000000e-01 +-2.921600000000000e-02 + 1.103400000000000e-01 + 2.748700000000000e-01 + 4.249700000000000e-01 + 5.105000000000000e-01 + 4.984300000000000e-01 + 3.939000000000000e-01 + 2.392200000000000e-01 + 9.031300000000000e-02 +-1.385900000000000e-02 +-6.843399999999999e-02 +-9.636800000000000e-02 +-1.258500000000000e-01 +-1.692800000000000e-01 +-2.182300000000000e-01 +-2.545000000000000e-01 +-2.652900000000000e-01 +-2.489100000000000e-01 +-2.083900000000000e-01 +-1.415200000000000e-01 +-3.926100000000000e-02 + 1.043000000000000e-01 + 2.789600000000000e-01 + 4.553100000000000e-01 + 5.970100000000000e-01 + 6.805900000000000e-01 + 7.076600000000000e-01 + 6.991400000000000e-01 + 6.752899999999999e-01 + 6.366500000000000e-01 + 5.607500000000000e-01 + 4.175900000000000e-01 + 1.928900000000000e-01 +-9.755700000000000e-02 +-4.114800000000000e-01 +-6.981900000000000e-01 +-9.181800000000000e-01 +-1.053000000000000e+00 +-1.103000000000000e+00 +-1.078600000000000e+00 +-9.940000000000000e-01 +-8.647000000000000e-01 +-7.069299999999999e-01 +-5.347600000000000e-01 +-3.547500000000000e-01 +-1.628700000000000e-01 + 5.163700000000000e-02 + 2.954700000000000e-01 + 5.596300000000000e-01 + 8.146300000000000e-01 + 1.016500000000000e+00 + 1.121400000000000e+00 + 1.101400000000000e+00 + 9.554900000000000e-01 + 7.116400000000001e-01 + 4.200000000000000e-01 + 1.392300000000000e-01 +-8.065899999999999e-02 +-2.138600000000000e-01 +-2.665700000000000e-01 +-2.719800000000000e-01 +-2.729400000000000e-01 +-3.000100000000000e-01 +-3.566100000000000e-01 +-4.200500000000000e-01 +-4.571100000000000e-01 +-4.440400000000000e-01 +-3.777800000000000e-01 +-2.726800000000000e-01 +-1.474300000000000e-01 +-1.411000000000000e-02 + 1.222700000000000e-01 + 2.549600000000000e-01 + 3.671000000000000e-01 + 4.336400000000000e-01 + 4.342500000000000e-01 + 3.683700000000000e-01 + 2.600600000000000e-01 + 1.475900000000000e-01 + 6.380400000000000e-02 + 1.999800000000000e-02 + 3.487500000000000e-03 +-1.101700000000000e-02 +-4.511000000000000e-02 +-1.059900000000000e-01 +-1.860700000000000e-01 +-2.695800000000000e-01 +-3.396300000000000e-01 +-3.816200000000000e-01 +-3.839000000000000e-01 +-3.394100000000000e-01 +-2.492700000000000e-01 +-1.259100000000000e-01 + 8.324399999999999e-03 + 1.281200000000000e-01 + 2.139200000000000e-01 + 2.568700000000000e-01 + 2.572100000000000e-01 + 2.187200000000000e-01 + 1.448900000000000e-01 + 4.069300000000000e-02 +-8.183600000000001e-02 +-1.998600000000000e-01 +-2.830300000000000e-01 +-3.036500000000000e-01 +-2.484100000000000e-01 +-1.246600000000000e-01 + 4.185300000000000e-02 + 2.157400000000000e-01 + 3.620200000000000e-01 + 4.530900000000000e-01 + 4.719300000000000e-01 + 4.132100000000000e-01 + 2.842600000000000e-01 + 1.056300000000000e-01 +-9.063000000000000e-02 +-2.663000000000000e-01 +-3.855100000000000e-01 +-4.237900000000000e-01 +-3.748800000000000e-01 +-2.529300000000000e-01 +-8.912900000000000e-02 + 7.686300000000000e-02 + 2.089900000000000e-01 + 2.866000000000000e-01 + 3.108700000000000e-01 + 3.020100000000000e-01 + 2.873800000000000e-01 + 2.862700000000000e-01 + 2.998900000000000e-01 + 3.127500000000000e-01 + 3.042500000000000e-01 + 2.625000000000000e-01 + 1.909200000000000e-01 + 1.034400000000000e-01 + 1.293600000000000e-02 +-7.768000000000000e-02 +-1.745800000000000e-01 +-2.835500000000000e-01 +-4.003000000000000e-01 +-5.091800000000000e-01 +-5.921600000000000e-01 +-6.410200000000000e-01 +-6.627700000000000e-01 +-6.733900000000000e-01 +-6.840400000000000e-01 +-6.903200000000000e-01 +-6.730000000000000e-01 +-6.099599999999999e-01 +-4.907700000000000e-01 +-3.235800000000000e-01 +-1.300200000000000e-01 + 6.751300000000000e-02 + 2.564700000000000e-01 + 4.358500000000000e-01 + 6.090800000000000e-01 + 7.747000000000001e-01 + 9.221900000000000e-01 + 1.035800000000000e+00 + 1.102800000000000e+00 + 1.120300000000000e+00 + 1.095600000000000e+00 + 1.040900000000000e+00 + 9.650100000000000e-01 + 8.682100000000000e-01 + 7.419500000000000e-01 + 5.737700000000000e-01 + 3.546900000000000e-01 + 8.552400000000000e-02 +-2.205300000000000e-01 +-5.401000000000000e-01 +-8.454600000000000e-01 +-1.111000000000000e+00 +-1.317400000000000e+00 +-1.451800000000000e+00 +-1.506000000000000e+00 +-1.475500000000000e+00 +-1.360800000000000e+00 +-1.170700000000000e+00 +-9.234300000000000e-01 +-6.431000000000000e-01 +-3.518800000000000e-01 +-6.356700000000000e-02 + 2.164900000000000e-01 + 4.841800000000000e-01 + 7.272200000000000e-01 + 9.218100000000000e-01 + 1.039900000000000e+00 + 1.063700000000000e+00 + 9.976500000000000e-01 + 8.696600000000000e-01 + 7.186800000000000e-01 + 5.774700000000000e-01 + 4.604500000000000e-01 + 3.633100000000000e-01 + 2.720900000000000e-01 + 1.738200000000000e-01 + 6.216000000000000e-02 +-6.280600000000000e-02 +-1.960100000000000e-01 +-3.266800000000000e-01 +-4.369700000000000e-01 +-5.050300000000000e-01 +-5.151800000000000e-01 +-4.702000000000000e-01 +-3.955800000000000e-01 +-3.282300000000000e-01 +-2.938700000000000e-01 +-2.876400000000000e-01 +-2.737000000000000e-01 +-2.076500000000000e-01 +-6.884000000000000e-02 + 1.195800000000000e-01 + 2.979500000000000e-01 + 4.014800000000000e-01 + 3.954100000000000e-01 + 2.912000000000000e-01 + 1.349300000000000e-01 +-2.143900000000000e-02 +-1.444900000000000e-01 +-2.243200000000000e-01 +-2.616300000000000e-01 +-2.523100000000000e-01 +-1.851000000000000e-01 +-5.458800000000000e-02 + 1.227200000000000e-01 + 3.052600000000000e-01 + 4.423300000000000e-01 + 4.995400000000000e-01 + 4.760400000000000e-01 + 4.014900000000000e-01 + 3.154400000000000e-01 + 2.439200000000000e-01 + 1.886200000000000e-01 + 1.333000000000000e-01 + 5.961600000000000e-02 +-4.048200000000000e-02 +-1.627600000000000e-01 +-2.966200000000000e-01 +-4.307900000000000e-01 +-5.534600000000000e-01 +-6.488699999999999e-01 +-6.967300000000000e-01 +-6.785099999999999e-01 +-5.877900000000000e-01 +-4.368200000000000e-01 +-2.537000000000000e-01 +-7.104900000000000e-02 + 8.640700000000000e-02 + 2.077300000000000e-01 + 2.932000000000000e-01 + 3.473200000000000e-01 + 3.734800000000000e-01 + 3.730100000000000e-01 + 3.469000000000000e-01 + 2.969400000000000e-01 + 2.254600000000000e-01 + 1.361700000000000e-01 + 3.796700000000000e-02 +-5.034200000000000e-02 +-1.002500000000000e-01 +-8.319000000000000e-02 + 1.303800000000000e-02 + 1.710500000000000e-01 + 3.448800000000000e-01 + 4.782300000000000e-01 + 5.306500000000000e-01 + 4.956600000000000e-01 + 3.991000000000000e-01 + 2.791000000000000e-01 + 1.619600000000000e-01 + 5.081300000000000e-02 +-6.630400000000000e-02 +-1.966700000000000e-01 +-3.281000000000000e-01 +-4.315900000000000e-01 +-4.802400000000000e-01 +-4.703800000000000e-01 +-4.288000000000000e-01 +-3.991400000000000e-01 +-4.159300000000000e-01 +-4.828000000000000e-01 +-5.691600000000000e-01 +-6.270000000000000e-01 +-6.167400000000000e-01 +-5.261600000000000e-01 +-3.721700000000000e-01 +-1.865000000000000e-01 + 3.810300000000000e-03 + 1.884300000000000e-01 + 3.715600000000000e-01 + 5.585900000000000e-01 + 7.414200000000000e-01 + 8.928199999999999e-01 + 9.744400000000000e-01 + 9.545300000000000e-01 + 8.257200000000000e-01 + 6.125900000000000e-01 + 3.646400000000000e-01 + 1.378500000000000e-01 +-2.579000000000000e-02 +-1.107700000000000e-01 +-1.280200000000000e-01 +-1.045100000000000e-01 +-6.966200000000000e-02 +-4.583000000000000e-02 +-4.540400000000000e-02 +-7.275200000000000e-02 +-1.269800000000000e-01 +-2.032000000000000e-01 +-2.930300000000000e-01 +-3.861200000000000e-01 +-4.733900000000000e-01 +-5.498400000000000e-01 +-6.142700000000000e-01 +-6.654099999999999e-01 +-6.971700000000000e-01 +-6.973200000000001e-01 +-6.516100000000000e-01 +-5.511700000000000e-01 +-3.982100000000000e-01 +-2.060400000000000e-01 + 6.230300000000000e-03 + 2.204100000000000e-01 + 4.227000000000000e-01 + 6.028600000000000e-01 + 7.514700000000000e-01 + 8.587500000000000e-01 + 9.162000000000000e-01 + 9.191600000000000e-01 + 8.675500000000000e-01 + 7.645400000000000e-01 + 6.156000000000000e-01 + 4.302800000000000e-01 + 2.261700000000000e-01 + 3.029700000000000e-02 +-1.262700000000000e-01 +-2.202000000000000e-01 +-2.475700000000000e-01 +-2.267100000000000e-01 +-1.887900000000000e-01 +-1.611100000000000e-01 +-1.542300000000000e-01 +-1.613300000000000e-01 +-1.695500000000000e-01 +-1.740600000000000e-01 +-1.837600000000000e-01 +-2.146500000000000e-01 +-2.765600000000000e-01 +-3.639500000000000e-01 +-4.575600000000000e-01 +-5.350700000000000e-01 +-5.819800000000001e-01 +-5.950800000000001e-01 +-5.779300000000001e-01 +-5.341000000000000e-01 +-4.647900000000000e-01 +-3.717600000000000e-01 +-2.608500000000000e-01 +-1.409100000000000e-01 +-1.801000000000000e-02 + 1.095600000000000e-01 + 2.491600000000000e-01 + 4.045900000000000e-01 + 5.667900000000000e-01 + 7.130300000000001e-01 + 8.174400000000001e-01 + 8.657400000000000e-01 + 8.633500000000000e-01 + 8.298700000000000e-01 + 7.839500000000000e-01 + 7.299800000000000e-01 + 6.567700000000000e-01 + 5.491400000000000e-01 + 4.027800000000000e-01 + 2.310100000000000e-01 + 5.810800000000000e-02 +-9.524100000000001e-02 +-2.235200000000000e-01 +-3.370100000000000e-01 +-4.521600000000000e-01 +-5.795300000000000e-01 +-7.170800000000001e-01 +-8.516600000000000e-01 +-9.652900000000000e-01 +-1.041100000000000e+00 +-1.066500000000000e+00 +-1.034400000000000e+00 +-9.435900000000000e-01 +-7.995500000000000e-01 +-6.124500000000000e-01 +-3.934600000000000e-01 +-1.510600000000000e-01 + 1.088100000000000e-01 + 3.779000000000000e-01 + 6.398200000000001e-01 + 8.693000000000000e-01 + 1.039500000000000e+00 + 1.133900000000000e+00 + 1.154200000000000e+00 + 1.118100000000000e+00 + 1.047800000000000e+00 + 9.572500000000000e-01 + 8.472400000000000e-01 + 7.109900000000000e-01 + 5.442300000000000e-01 + 3.510700000000000e-01 + 1.414300000000000e-01 +-7.654800000000000e-02 +-3.009000000000000e-01 +-5.327800000000000e-01 +-7.686300000000000e-01 +-9.954100000000000e-01 +-1.193900000000000e+00 +-1.347000000000000e+00 +-1.445400000000000e+00 +-1.484600000000000e+00 +-1.455300000000000e+00 +-1.338600000000000e+00 +-1.113100000000000e+00 +-7.717000000000001e-01 +-3.371300000000000e-01 + 1.376100000000000e-01 + 5.872800000000000e-01 + 9.604000000000000e-01 + 1.236300000000000e+00 + 1.422300000000000e+00 + 1.535800000000000e+00 + 1.583800000000000e+00 + 1.558400000000000e+00 + 1.447400000000000e+00 + 1.252100000000000e+00 + 9.968800000000000e-01 + 7.223700000000000e-01 + 4.669300000000000e-01 + 2.497100000000000e-01 + 6.594400000000000e-02 +-1.038100000000000e-01 +-2.779100000000000e-01 +-4.615000000000000e-01 +-6.440200000000000e-01 +-8.054300000000000e-01 +-9.264300000000000e-01 +-9.972800000000001e-01 +-1.022000000000000e+00 +-1.016600000000000e+00 +-1.001100000000000e+00 +-9.890200000000000e-01 +-9.786899999999999e-01 +-9.527500000000000e-01 +-8.880000000000000e-01 +-7.709300000000000e-01 +-6.086600000000000e-01 +-4.266400000000000e-01 +-2.530600000000000e-01 +-1.001300000000000e-01 + 4.401500000000000e-02 + 2.055800000000000e-01 + 4.037600000000000e-01 + 6.328300000000000e-01 + 8.607900000000001e-01 + 1.046000000000000e+00 + 1.159800000000000e+00 + 1.200500000000000e+00 + 1.189200000000000e+00 + 1.154200000000000e+00 + 1.114700000000000e+00 + 1.074500000000000e+00 + 1.025300000000000e+00 + 9.547099999999999e-01 + 8.508200000000000e-01 + 7.040200000000000e-01 + 5.091000000000000e-01 + 2.701100000000000e-01 + 4.708700000000000e-03 +-2.581800000000000e-01 +-4.898700000000000e-01 +-6.763500000000000e-01 +-8.248500000000000e-01 +-9.561300000000000e-01 +-1.087000000000000e+00 +-1.216700000000000e+00 +-1.327800000000000e+00 +-1.401700000000000e+00 +-1.434300000000000e+00 +-1.438300000000000e+00 +-1.427900000000000e+00 +-1.398600000000000e+00 +-1.319600000000000e+00 +-1.149400000000000e+00 +-8.630500000000000e-01 +-4.729200000000000e-01 +-2.566800000000000e-02 + 4.223200000000000e-01 + 8.326300000000000e-01 + 1.195500000000000e+00 + 1.517300000000000e+00 + 1.796700000000000e+00 + 2.011900000000000e+00 + 2.127300000000000e+00 + 2.116100000000000e+00 + 1.977900000000000e+00 + 1.738700000000000e+00 + 1.433200000000000e+00 + 1.085100000000000e+00 + 7.027200000000000e-01 + 2.914200000000000e-01 +-1.289800000000000e-01 +-5.187500000000000e-01 +-8.323000000000000e-01 +-1.042500000000000e+00 +-1.157200000000000e+00 +-1.214100000000000e+00 +-1.257400000000000e+00 +-1.311100000000000e+00 +-1.366600000000000e+00 +-1.391500000000000e+00 +-1.351200000000000e+00 +-1.229500000000000e+00 +-1.034900000000000e+00 +-7.930900000000000e-01 +-5.327100000000000e-01 +-2.748200000000000e-01 +-3.107700000000000e-02 + 1.915000000000000e-01 + 3.852700000000000e-01 + 5.409600000000000e-01 + 6.518200000000000e-01 + 7.195500000000000e-01 + 7.572600000000000e-01 + 7.859600000000000e-01 + 8.249300000000001e-01 + 8.803400000000000e-01 + 9.385599999999999e-01 + 9.694199999999999e-01 + 9.395600000000000e-01 + 8.295700000000000e-01 + 6.451700000000000e-01 + 4.155100000000000e-01 + 1.791200000000000e-01 +-3.350800000000000e-02 +-2.097600000000000e-01 +-3.514100000000000e-01 +-4.623400000000000e-01 +-5.381700000000000e-01 +-5.670700000000000e-01 +-5.414800000000000e-01 +-4.715400000000000e-01 +-3.882600000000000e-01 +-3.319400000000000e-01 +-3.317500000000000e-01 +-3.891000000000000e-01 +-4.754600000000000e-01 +-5.455100000000001e-01 +-5.580000000000001e-01 +-4.929000000000000e-01 +-3.576000000000000e-01 +-1.816200000000000e-01 +-4.293700000000000e-03 + 1.390100000000000e-01 + 2.275400000000000e-01 + 2.599400000000000e-01 + 2.516100000000000e-01 + 2.255300000000000e-01 + 2.005800000000000e-01 + 1.841600000000000e-01 + 1.738300000000000e-01 + 1.668700000000000e-01 + 1.700000000000000e-01 + 1.997700000000000e-01 + 2.709300000000000e-01 + 3.800600000000000e-01 + 4.981500000000000e-01 + 5.809200000000000e-01 + 5.929700000000000e-01 + 5.300800000000000e-01 + 4.228900000000000e-01 + 3.174400000000000e-01 + 2.446200000000000e-01 + 1.992600000000000e-01 + 1.433900000000000e-01 + 3.142800000000000e-02 +-1.595600000000000e-01 +-4.140200000000000e-01 +-6.845800000000000e-01 +-9.142300000000000e-01 +-1.058900000000000e+00 +-1.099200000000000e+00 +-1.038900000000000e+00 +-8.986700000000000e-01 +-7.090300000000000e-01 +-5.050600000000000e-01 +-3.191300000000000e-01 +-1.708500000000000e-01 +-5.876900000000000e-02 + 3.945600000000000e-02 + 1.553200000000000e-01 + 3.119700000000000e-01 + 5.115000000000000e-01 + 7.347800000000000e-01 + 9.522600000000000e-01 + 1.136600000000000e+00 + 1.268300000000000e+00 + 1.332800000000000e+00 + 1.315700000000000e+00 + 1.204300000000000e+00 + 9.954200000000000e-01 + 7.024600000000000e-01 + 3.542000000000000e-01 +-1.697400000000000e-02 +-3.882300000000000e-01 +-7.497300000000000e-01 +-1.094100000000000e+00 +-1.400700000000000e+00 +-1.628200000000000e+00 +-1.726700000000000e+00 +-1.663000000000000e+00 +-1.443000000000000e+00 +-1.114900000000000e+00 +-7.491500000000000e-01 +-4.072400000000000e-01 +-1.181200000000000e-01 + 1.242100000000000e-01 + 3.434300000000000e-01 + 5.575300000000000e-01 + 7.642099999999999e-01 + 9.421700000000000e-01 + 1.064000000000000e+00 + 1.111200000000000e+00 + 1.081700000000000e+00 + 9.896100000000000e-01 + 8.571000000000000e-01 + 7.056300000000000e-01 + 5.486300000000000e-01 + 3.888700000000000e-01 + 2.218200000000000e-01 + 4.419800000000000e-02 +-1.363100000000000e-01 +-2.966400000000000e-01 +-4.046300000000000e-01 +-4.349000000000000e-01 +-3.863300000000000e-01 +-2.891100000000000e-01 +-1.950000000000000e-01 +-1.542300000000000e-01 +-1.922600000000000e-01 +-2.998800000000000e-01 +-4.418500000000000e-01 +-5.770400000000000e-01 +-6.766300000000000e-01 +-7.299300000000000e-01 +-7.376500000000000e-01 +-7.013900000000000e-01 +-6.190099999999999e-01 +-4.890700000000000e-01 +-3.187800000000000e-01 +-1.267900000000000e-01 + 6.357699999999999e-02 + 2.364400000000000e-01 + 3.917000000000000e-01 + 5.423900000000000e-01 + 7.017800000000000e-01 + 8.683600000000000e-01 + 1.019100000000000e+00 + 1.116300000000000e+00 + 1.124700000000000e+00 + 1.029700000000000e+00 + 8.458700000000000e-01 + 6.119200000000000e-01 + 3.743300000000000e-01 + 1.686300000000000e-01 + 7.837900000000000e-03 +-1.167500000000000e-01 +-2.243000000000000e-01 +-3.303200000000000e-01 +-4.385000000000000e-01 +-5.430100000000000e-01 +-6.383900000000000e-01 +-7.285000000000000e-01 +-8.263900000000000e-01 +-9.431400000000000e-01 +-1.072600000000000e+00 +-1.183300000000000e+00 +-1.225200000000000e+00 +-1.151300000000000e+00 +-9.405500000000000e-01 +-6.117600000000000e-01 +-2.172800000000000e-01 + 1.776200000000000e-01 + 5.190200000000000e-01 + 7.791200000000000e-01 + 9.559000000000000e-01 + 1.061500000000000e+00 + 1.108900000000000e+00 + 1.105200000000000e+00 + 1.053400000000000e+00 + 9.586800000000000e-01 + 8.338700000000000e-01 + 6.988700000000000e-01 + 5.752500000000000e-01 + 4.786600000000000e-01 + 4.129000000000000e-01 + 3.678700000000000e-01 + 3.221100000000000e-01 + 2.491700000000000e-01 + 1.262400000000000e-01 +-5.742900000000000e-02 +-2.949500000000000e-01 +-5.613100000000000e-01 +-8.187600000000000e-01 +-1.026600000000000e+00 +-1.152200000000000e+00 +-1.180200000000000e+00 +-1.115200000000000e+00 +-9.797400000000001e-01 +-8.054400000000000e-01 +-6.232700000000000e-01 +-4.556400000000000e-01 +-3.142700000000000e-01 +-2.034400000000000e-01 +-1.250900000000000e-01 +-8.044400000000000e-02 +-6.557700000000000e-02 +-6.395400000000000e-02 +-4.336300000000000e-02 + 3.606500000000000e-02 + 2.032600000000000e-01 + 4.566100000000000e-01 + 7.566300000000000e-01 + 1.038700000000000e+00 + 1.240700000000000e+00 + 1.330000000000000e+00 + 1.313200000000000e+00 + 1.223200000000000e+00 + 1.093200000000000e+00 + 9.365900000000000e-01 + 7.453200000000000e-01 + 5.057800000000000e-01 + 2.184000000000000e-01 +-9.505200000000000e-02 +-4.013600000000000e-01 +-6.740300000000000e-01 +-9.043600000000001e-01 +-1.096800000000000e+00 +-1.252900000000000e+00 +-1.357900000000000e+00 +-1.382100000000000e+00 +-1.296000000000000e+00 +-1.090600000000000e+00 +-7.870500000000000e-01 +-4.311000000000000e-01 +-7.728200000000000e-02 + 2.272800000000000e-01 + 4.514400000000000e-01 + 5.811800000000000e-01 + 6.176400000000000e-01 + 5.757500000000000e-01 + 4.820500000000000e-01 + 3.689400000000000e-01 + 2.649200000000000e-01 + 1.856700000000000e-01 + 1.322900000000000e-01 + 9.837200000000000e-02 + 8.075800000000000e-02 + 8.506000000000000e-02 + 1.213400000000000e-01 + 1.933100000000000e-01 + 2.901400000000000e-01 + 3.878700000000000e-01 + 4.594100000000000e-01 + 4.852500000000000e-01 + 4.572700000000000e-01 + 3.750400000000000e-01 + 2.408700000000000e-01 + 6.066500000000000e-02 +-1.496800000000000e-01 +-3.597700000000000e-01 +-5.303800000000000e-01 +-6.296600000000000e-01 +-6.497100000000000e-01 +-6.104300000000000e-01 +-5.453600000000000e-01 +-4.781900000000000e-01 +-4.070200000000000e-01 +-3.089900000000000e-01 +-1.630300000000000e-01 + 2.543700000000000e-02 + 2.169600000000000e-01 + 3.548900000000000e-01 + 3.965900000000000e-01 + 3.389100000000000e-01 + 2.213000000000000e-01 + 1.048800000000000e-01 + 4.083700000000000e-02 + 4.682900000000000e-02 + 1.035500000000000e-01 + 1.706400000000000e-01 + 2.105700000000000e-01 + 2.068900000000000e-01 + 1.684700000000000e-01 + 1.200100000000000e-01 + 8.544900000000000e-02 + 7.382300000000000e-02 + 7.445800000000000e-02 + 6.384900000000000e-02 + 2.040800000000000e-02 +-6.103700000000000e-02 +-1.635400000000000e-01 +-2.551600000000000e-01 +-3.054800000000000e-01 +-3.019000000000000e-01 +-2.559100000000000e-01 +-1.954900000000000e-01 +-1.486000000000000e-01 +-1.280600000000000e-01 +-1.265300000000000e-01 +-1.232000000000000e-01 +-9.657399999999999e-02 +-3.521500000000000e-02 + 5.813400000000000e-02 + 1.688400000000000e-01 + 2.754700000000000e-01 + 3.551300000000000e-01 + 3.884100000000000e-01 + 3.645800000000000e-01 + 2.857700000000000e-01 + 1.676400000000000e-01 + 3.496200000000000e-02 +-8.624200000000000e-02 +-1.755300000000000e-01 +-2.205700000000000e-01 +-2.159900000000000e-01 +-1.627000000000000e-01 +-7.053700000000000e-02 + 3.804700000000000e-02 + 1.296300000000000e-01 + 1.711000000000000e-01 + 1.468400000000000e-01 + 7.039100000000000e-02 +-2.010100000000000e-02 +-8.301000000000000e-02 +-9.816300000000000e-02 +-7.788299999999999e-02 +-5.531700000000000e-02 +-5.808100000000000e-02 +-8.713799999999999e-02 +-1.174200000000000e-01 +-1.198700000000000e-01 +-8.725200000000000e-02 +-4.261500000000000e-02 +-2.267200000000000e-02 +-4.869900000000000e-02 +-1.078800000000000e-01 +-1.601900000000000e-01 +-1.659700000000000e-01 +-1.131400000000000e-01 +-2.405100000000000e-02 + 6.190900000000000e-02 + 1.150100000000000e-01 + 1.306400000000000e-01 + 1.238600000000000e-01 + 1.108300000000000e-01 + 9.447400000000000e-02 + 6.602300000000000e-02 + 1.889300000000000e-02 +-3.907200000000000e-02 +-8.678600000000000e-02 +-1.036100000000000e-01 +-8.337799999999999e-02 +-3.652700000000000e-02 + 2.101300000000000e-02 + 8.199099999999999e-02 + 1.524300000000000e-01 + 2.427900000000000e-01 + 3.535400000000000e-01 + 4.676800000000000e-01 + 5.563200000000000e-01 + 5.929000000000000e-01 + 5.649500000000000e-01 + 4.760200000000000e-01 + 3.390100000000000e-01 + 1.683800000000000e-01 +-2.253400000000000e-02 +-2.199300000000000e-01 +-4.083300000000000e-01 +-5.732600000000000e-01 +-7.055700000000000e-01 +-8.020200000000000e-01 +-8.603700000000000e-01 +-8.736600000000000e-01 +-8.311300000000000e-01 +-7.280799999999999e-01 +-5.777000000000000e-01 +-4.130800000000000e-01 +-2.737500000000000e-01 +-1.833200000000000e-01 +-1.343600000000000e-01 +-9.288399999999999e-02 +-2.090400000000000e-02 + 9.880000000000000e-02 + 2.537500000000000e-01 + 4.143100000000000e-01 + 5.564300000000000e-01 + 6.759500000000001e-01 + 7.836100000000000e-01 + 8.866800000000000e-01 + 9.746600000000000e-01 + 1.022200000000000e+00 + 1.007400000000000e+00 + 9.294000000000000e-01 + 8.103700000000000e-01 + 6.789900000000000e-01 + 5.495500000000000e-01 + 4.136300000000000e-01 + 2.511000000000000e-01 + 5.031500000000000e-02 +-1.794400000000000e-01 +-4.134400000000000e-01 +-6.289400000000001e-01 +-8.187500000000000e-01 +-9.891100000000000e-01 +-1.144400000000000e+00 +-1.273200000000000e+00 +-1.349100000000000e+00 +-1.346700000000000e+00 +-1.259000000000000e+00 +-1.102300000000000e+00 +-9.047400000000000e-01 +-6.877200000000000e-01 +-4.572800000000000e-01 +-2.111400000000000e-01 + 4.608400000000000e-02 + 2.948000000000000e-01 + 5.083500000000000e-01 + 6.712399999999999e-01 + 7.919500000000000e-01 + 8.979200000000001e-01 + 1.015000000000000e+00 + 1.146000000000000e+00 + 1.265600000000000e+00 + 1.333700000000000e+00 + 1.318900000000000e+00 + 1.212900000000000e+00 + 1.029100000000000e+00 + 7.889100000000000e-01 + 5.086300000000000e-01 + 1.984500000000000e-01 +-1.296000000000000e-01 +-4.532700000000000e-01 +-7.409200000000000e-01 +-9.614700000000000e-01 +-1.096000000000000e+00 +-1.142200000000000e+00 +-1.110800000000000e+00 +-1.017800000000000e+00 +-8.812500000000000e-01 +-7.203500000000000e-01 +-5.552900000000000e-01 +-4.016500000000000e-01 +-2.625400000000000e-01 +-1.264000000000000e-01 + 2.358900000000000e-02 + 1.921100000000000e-01 + 3.589700000000000e-01 + 4.837200000000000e-01 + 5.281600000000000e-01 + 4.829700000000000e-01 + 3.786200000000000e-01 + 2.705400000000000e-01 + 2.072000000000000e-01 + 2.026900000000000e-01 + 2.331100000000000e-01 + 2.580200000000000e-01 + 2.504400000000000e-01 + 2.125300000000000e-01 + 1.669300000000000e-01 + 1.324000000000000e-01 + 1.048300000000000e-01 + 5.898800000000000e-02 +-3.057900000000000e-02 +-1.664800000000000e-01 +-3.211500000000000e-01 +-4.503300000000000e-01 +-5.162200000000000e-01 +-5.033700000000000e-01 +-4.181900000000000e-01 +-2.773100000000000e-01 +-9.761599999999999e-02 + 1.033000000000000e-01 + 2.999000000000000e-01 + 4.561400000000000e-01 + 5.359100000000000e-01 + 5.220300000000000e-01 + 4.297400000000000e-01 + 3.017900000000000e-01 + 1.854900000000000e-01 + 1.060500000000000e-01 + 5.441600000000000e-02 +-2.175700000000000e-03 +-9.497400000000000e-02 +-2.314900000000000e-01 +-3.902300000000000e-01 +-5.330900000000000e-01 +-6.239500000000000e-01 +-6.407300000000000e-01 +-5.764200000000000e-01 +-4.347300000000000e-01 +-2.286500000000000e-01 + 1.621900000000000e-02 + 2.598300000000000e-01 + 4.551300000000000e-01 + 5.655500000000000e-01 + 5.826200000000000e-01 + 5.309300000000000e-01 + 4.547300000000000e-01 + 3.935700000000000e-01 + 3.628200000000000e-01 + 3.510900000000000e-01 + 3.341200000000000e-01 + 2.928600000000000e-01 + 2.221600000000000e-01 + 1.257400000000000e-01 + 5.186200000000000e-03 +-1.449000000000000e-01 +-3.301200000000000e-01 +-5.434400000000000e-01 +-7.584500000000000e-01 +-9.359300000000000e-01 +-1.040300000000000e+00 +-1.054000000000000e+00 +-9.807300000000000e-01 +-8.357900000000000e-01 +-6.348200000000001e-01 +-3.893300000000000e-01 +-1.118000000000000e-01 + 1.774000000000000e-01 + 4.505400000000000e-01 + 6.827800000000001e-01 + 8.644500000000001e-01 + 1.003900000000000e+00 + 1.116700000000000e+00 + 1.207800000000000e+00 + 1.261300000000000e+00 + 1.246400000000000e+00 + 1.136700000000000e+00 + 9.290000000000000e-01 + 6.474000000000000e-01 + 3.300000000000000e-01 + 8.476900000000001e-03 +-3.046900000000000e-01 +-6.123800000000000e-01 +-9.167600000000000e-01 +-1.204000000000000e+00 +-1.440900000000000e+00 +-1.586500000000000e+00 +-1.608800000000000e+00 +-1.497100000000000e+00 +-1.263800000000000e+00 +-9.366900000000000e-01 +-5.498800000000000e-01 +-1.376300000000000e-01 + 2.675900000000000e-01 + 6.356800000000000e-01 + 9.403899999999999e-01 + 1.162100000000000e+00 + 1.290300000000000e+00 + 1.325000000000000e+00 + 1.275700000000000e+00 + 1.159800000000000e+00 + 9.990000000000000e-01 + 8.129000000000000e-01 + 6.135800000000000e-01 + 4.026600000000000e-01 + 1.753400000000000e-01 +-6.946900000000000e-02 +-3.191900000000000e-01 +-5.460500000000000e-01 +-7.178300000000000e-01 +-8.157900000000000e-01 +-8.478800000000000e-01 +-8.467900000000000e-01 +-8.520700000000000e-01 +-8.869000000000000e-01 +-9.443500000000000e-01 +-9.916900000000000e-01 +-9.888600000000000e-01 +-9.085100000000000e-01 +-7.456700000000001e-01 +-5.142200000000000e-01 +-2.365500000000000e-01 + 6.432100000000000e-02 + 3.665900000000000e-01 + 6.484900000000000e-01 + 8.895900000000000e-01 + 1.075600000000000e+00 + 1.202500000000000e+00 + 1.274400000000000e+00 + 1.295900000000000e+00 + 1.264800000000000e+00 + 1.173500000000000e+00 + 1.018100000000000e+00 + 8.089700000000000e-01 + 5.709800000000000e-01 + 3.324700000000000e-01 + 1.096100000000000e-01 +-9.973600000000001e-02 +-3.067400000000000e-01 +-5.132600000000000e-01 +-7.002100000000000e-01 +-8.338000000000000e-01 +-8.868600000000000e-01 +-8.590000000000000e-01 +-7.792100000000000e-01 +-6.879100000000000e-01 +-6.120000000000000e-01 +-5.522300000000000e-01 +-4.921100000000000e-01 +-4.199600000000000e-01 +-3.446100000000000e-01 +-2.909400000000000e-01 +-2.783700000000000e-01 +-3.003200000000000e-01 +-3.223000000000000e-01 +-3.014300000000000e-01 +-2.133200000000000e-01 +-6.619400000000000e-02 + 1.072700000000000e-01 + 2.725700000000000e-01 + 4.126600000000000e-01 + 5.302200000000000e-01 + 6.342400000000000e-01 + 7.239500000000000e-01 + 7.837499999999999e-01 + 7.921500000000000e-01 + 7.361100000000000e-01 + 6.193000000000000e-01 + 4.592800000000000e-01 + 2.782300000000000e-01 + 9.560700000000000e-02 +-7.298800000000000e-02 +-2.133700000000000e-01 +-3.123600000000000e-01 +-3.613300000000000e-01 +-3.604300000000000e-01 +-3.181200000000000e-01 +-2.455800000000000e-01 +-1.507400000000000e-01 +-3.826400000000000e-02 + 8.395000000000000e-02 + 1.977800000000000e-01 + 2.757300000000000e-01 + 2.918700000000000e-01 + 2.364000000000000e-01 + 1.232100000000000e-01 +-1.590500000000000e-02 +-1.466500000000000e-01 +-2.469400000000000e-01 +-3.118900000000000e-01 +-3.484500000000000e-01 +-3.660300000000000e-01 +-3.708500000000000e-01 +-3.656200000000000e-01 +-3.510700000000000e-01 +-3.253300000000000e-01 +-2.819900000000000e-01 +-2.116100000000000e-01 +-1.097100000000000e-01 + 1.319800000000000e-02 + 1.283700000000000e-01 + 1.990600000000000e-01 + 2.003900000000000e-01 + 1.359900000000000e-01 + 3.870600000000000e-02 +-4.635500000000000e-02 +-8.533100000000000e-02 +-6.965800000000000e-02 +-1.256600000000000e-02 + 6.623300000000000e-02 + 1.537400000000000e-01 + 2.448600000000000e-01 + 3.338900000000000e-01 + 4.076000000000000e-01 + 4.489100000000000e-01 + 4.488100000000000e-01 + 4.148900000000000e-01 + 3.665300000000000e-01 + 3.190600000000000e-01 + 2.701800000000000e-01 + 2.021300000000000e-01 + 9.958599999999999e-02 +-3.097100000000000e-02 +-1.580600000000000e-01 +-2.434800000000000e-01 +-2.691600000000000e-01 +-2.514700000000000e-01 +-2.305400000000000e-01 +-2.421100000000000e-01 +-2.930700000000000e-01 +-3.590700000000000e-01 +-4.045100000000000e-01 +-4.079500000000000e-01 +-3.732700000000000e-01 +-3.199500000000000e-01 +-2.640400000000000e-01 +-2.071000000000000e-01 +-1.420300000000000e-01 +-6.758800000000000e-02 + 3.717700000000000e-03 + 5.350900000000000e-02 + 7.427700000000000e-02 + 7.902400000000000e-02 + 9.318300000000000e-02 + 1.340900000000000e-01 + 1.952500000000000e-01 + 2.497700000000000e-01 + 2.713700000000000e-01 + 2.561800000000000e-01 + 2.269400000000000e-01 + 2.152800000000000e-01 + 2.356300000000000e-01 + 2.713200000000000e-01 + 2.838200000000000e-01 + 2.384400000000000e-01 + 1.279800000000000e-01 +-2.114200000000000e-02 +-1.620700000000000e-01 +-2.490300000000000e-01 +-2.540000000000000e-01 +-1.727600000000000e-01 +-2.302500000000000e-02 + 1.602600000000000e-01 + 3.315900000000000e-01 + 4.457300000000000e-01 + 4.726900000000000e-01 + 4.098800000000000e-01 + 2.820000000000000e-01 + 1.252900000000000e-01 +-3.490000000000000e-02 +-1.969500000000000e-01 +-3.751400000000000e-01 +-5.758900000000000e-01 +-7.767300000000000e-01 +-9.267300000000001e-01 +-9.710600000000000e-01 +-8.836400000000000e-01 +-6.842200000000001e-01 +-4.275100000000000e-01 +-1.725600000000000e-01 + 4.500000000000000e-02 + 2.194700000000000e-01 + 3.595400000000000e-01 + 4.671700000000000e-01 + 5.295400000000000e-01 + 5.298500000000000e-01 + 4.661100000000000e-01 + 3.605300000000000e-01 + 2.512500000000000e-01 + 1.729100000000000e-01 + 1.409800000000000e-01 + 1.499600000000000e-01 + 1.832200000000000e-01 + 2.235500000000000e-01 + 2.561700000000000e-01 + 2.658400000000000e-01 + 2.366100000000000e-01 + 1.597700000000000e-01 + 4.561200000000000e-02 +-7.263500000000001e-02 +-1.505500000000000e-01 +-1.557200000000000e-01 +-8.740299999999999e-02 + 2.132100000000000e-02 + 1.212900000000000e-01 + 1.729000000000000e-01 + 1.632700000000000e-01 + 1.059000000000000e-01 + 2.710400000000000e-02 +-4.923600000000000e-02 +-1.094600000000000e-01 +-1.500700000000000e-01 +-1.753100000000000e-01 +-1.963400000000000e-01 +-2.297600000000000e-01 +-2.911300000000000e-01 +-3.834300000000000e-01 +-4.882100000000000e-01 +-5.691300000000000e-01 +-5.900300000000001e-01 +-5.373900000000000e-01 +-4.308300000000000e-01 +-3.123100000000000e-01 +-2.199700000000000e-01 +-1.649300000000000e-01 +-1.277900000000000e-01 +-7.638700000000000e-02 + 9.700900000000000e-03 + 1.269000000000000e-01 + 2.557800000000000e-01 + 3.803700000000000e-01 + 5.007200000000001e-01 + 6.273500000000000e-01 + 7.626800000000000e-01 + 8.863500000000000e-01 + 9.588900000000000e-01 + 9.429400000000000e-01 + 8.268500000000000e-01 + 6.329399999999999e-01 + 4.047400000000000e-01 + 1.831300000000000e-01 +-1.127600000000000e-02 +-1.788800000000000e-01 +-3.282400000000000e-01 +-4.621000000000000e-01 +-5.732600000000000e-01 +-6.508800000000000e-01 +-6.890300000000000e-01 +-6.894400000000001e-01 +-6.570800000000000e-01 +-5.949500000000000e-01 +-5.042200000000000e-01 +-3.897000000000000e-01 +-2.640700000000000e-01 +-1.445000000000000e-01 +-4.225700000000000e-02 + 4.659800000000000e-02 + 1.403200000000000e-01 + 2.585100000000000e-01 + 4.047800000000000e-01 + 5.573500000000000e-01 + 6.746500000000000e-01 + 7.134100000000000e-01 + 6.483500000000000e-01 + 4.826600000000000e-01 + 2.449300000000000e-01 +-2.346100000000000e-02 +-2.825800000000000e-01 +-5.034300000000000e-01 +-6.704500000000000e-01 +-7.787800000000000e-01 +-8.290300000000000e-01 +-8.223700000000000e-01 +-7.580600000000000e-01 +-6.348000000000000e-01 +-4.553500000000000e-01 +-2.316800000000000e-01 + 1.350600000000000e-02 + 2.515600000000000e-01 + 4.568500000000000e-01 + 6.145800000000000e-01 + 7.222100000000000e-01 + 7.840300000000000e-01 + 8.042400000000000e-01 + 7.845900000000000e-01 + 7.288000000000000e-01 + 6.485800000000000e-01 + 5.638200000000000e-01 + 4.938400000000000e-01 + 4.447700000000000e-01 + 4.032400000000000e-01 + 3.429400000000000e-01 + 2.407200000000000e-01 + 9.084500000000000e-02 +-9.285200000000000e-02 +-2.878700000000000e-01 +-4.769400000000000e-01 +-6.529600000000000e-01 +-8.111600000000000e-01 +-9.369900000000000e-01 +-1.002900000000000e+00 +-9.801800000000001e-01 +-8.590900000000000e-01 +-6.605900000000000e-01 +-4.294300000000000e-01 +-2.116600000000000e-01 +-3.281900000000000e-02 + 1.070000000000000e-01 + 2.186200000000000e-01 + 3.031800000000000e-01 + 3.437400000000000e-01 + 3.173000000000000e-01 + 2.175700000000000e-01 + 6.930000000000000e-02 +-7.937400000000000e-02 +-1.821600000000000e-01 +-2.189500000000000e-01 +-2.009000000000000e-01 +-1.535100000000000e-01 +-9.238200000000001e-02 +-1.212600000000000e-02 + 1.025700000000000e-01 + 2.534600000000000e-01 + 4.138000000000000e-01 + 5.368100000000000e-01 + 5.841000000000000e-01 + 5.537800000000000e-01 + 4.866400000000000e-01 + 4.437100000000000e-01 + 4.690700000000000e-01 + 5.619100000000000e-01 + 6.761000000000000e-01 + 7.461900000000000e-01 + 7.226700000000000e-01 + 5.943400000000000e-01 + 3.868100000000000e-01 + 1.419800000000000e-01 +-1.054900000000000e-01 +-3.396700000000000e-01 +-5.584500000000000e-01 +-7.594900000000000e-01 +-9.293400000000001e-01 +-1.044400000000000e+00 +-1.082600000000000e+00 +-1.037700000000000e+00 +-9.262899999999999e-01 +-7.821300000000000e-01 +-6.414700000000000e-01 +-5.273900000000000e-01 +-4.419500000000000e-01 +-3.695100000000000e-01 +-2.881800000000000e-01 +-1.821800000000000e-01 +-4.862700000000000e-02 + 1.031500000000000e-01 + 2.570200000000000e-01 + 3.958600000000000e-01 + 5.052900000000000e-01 + 5.760700000000000e-01 + 6.066700000000000e-01 + 6.060200000000000e-01 + 5.930000000000000e-01 + 5.898700000000000e-01 + 6.104600000000000e-01 + 6.495000000000000e-01 + 6.815000000000000e-01 + 6.725500000000000e-01 + 5.996400000000000e-01 + 4.654400000000000e-01 + 2.981100000000000e-01 + 1.355700000000000e-01 + 4.643800000000000e-03 +-9.070000000000000e-02 +-1.647200000000000e-01 +-2.339800000000000e-01 +-3.034700000000000e-01 +-3.653300000000000e-01 +-4.096700000000000e-01 +-4.364300000000000e-01 +-4.564800000000000e-01 +-4.801100000000000e-01 +-5.032200000000000e-01 +-5.048500000000000e-01 +-4.613900000000000e-01 +-3.679100000000000e-01 +-2.494300000000000e-01 +-1.507200000000000e-01 +-1.093700000000000e-01 +-1.304800000000000e-01 +-1.817900000000000e-01 +-2.134900000000000e-01 +-1.891900000000000e-01 +-1.064200000000000e-01 + 6.695000000000000e-03 + 1.141000000000000e-01 + 1.959500000000000e-01 + 2.568200000000000e-01 + 3.143600000000000e-01 + 3.798600000000000e-01 + 4.472100000000000e-01 + 4.982100000000000e-01 + 5.181900000000000e-01 + 5.076700000000000e-01 + 4.802300000000000e-01 + 4.483800000000000e-01 + 4.098900000000000e-01 + 3.461900000000000e-01 + 2.350800000000000e-01 + 6.825400000000000e-02 +-1.391500000000000e-01 +-3.536400000000000e-01 +-5.389400000000000e-01 +-6.705900000000000e-01 +-7.405800000000000e-01 +-7.510500000000000e-01 +-7.045500000000000e-01 +-5.996600000000000e-01 +-4.355400000000000e-01 +-2.211900000000000e-01 + 1.869800000000000e-02 + 2.471800000000000e-01 + 4.267700000000000e-01 + 5.330400000000000e-01 + 5.620300000000000e-01 + 5.278500000000000e-01 + 4.526300000000000e-01 + 3.552700000000000e-01 + 2.456900000000000e-01 + 1.270700000000000e-01 + 3.265800000000000e-03 +-1.145100000000000e-01 +-2.072700000000000e-01 +-2.551100000000000e-01 +-2.474000000000000e-01 +-1.897000000000000e-01 +-1.023500000000000e-01 +-1.141600000000000e-02 + 6.255400000000000e-02 + 1.110300000000000e-01 + 1.357000000000000e-01 + 1.408800000000000e-01 + 1.267700000000000e-01 + 8.869700000000000e-02 + 2.291000000000000e-02 +-6.624700000000000e-02 +-1.637500000000000e-01 +-2.482300000000000e-01 +-3.002200000000000e-01 +-3.086300000000000e-01 +-2.722200000000000e-01 +-1.970400000000000e-01 +-9.411300000000000e-02 + 2.080100000000000e-02 + 1.269000000000000e-01 + 2.018800000000000e-01 + 2.306000000000000e-01 + 2.145200000000000e-01 + 1.739000000000000e-01 + 1.381900000000000e-01 + 1.281000000000000e-01 + 1.410600000000000e-01 + 1.509500000000000e-01 + 1.242500000000000e-01 + 4.269800000000000e-02 +-8.303400000000000e-02 +-2.182700000000000e-01 +-3.245700000000000e-01 +-3.808900000000000e-01 +-3.913700000000000e-01 +-3.753500000000000e-01 +-3.487800000000000e-01 +-3.112800000000000e-01 +-2.478300000000000e-01 +-1.422400000000000e-01 + 8.955500000000000e-03 + 1.920500000000000e-01 + 3.825200000000000e-01 + 5.551700000000001e-01 + 6.897500000000000e-01 + 7.702100000000000e-01 + 7.825400000000000e-01 + 7.174800000000000e-01 + 5.782800000000000e-01 + 3.867500000000000e-01 + 1.795400000000000e-01 +-6.336600000000000e-03 +-1.503800000000000e-01 +-2.559000000000000e-01 +-3.418600000000000e-01 +-4.249000000000000e-01 +-5.050600000000000e-01 +-5.655200000000000e-01 +-5.856500000000000e-01 +-5.560700000000000e-01 +-4.835200000000000e-01 +-3.829200000000000e-01 +-2.650700000000000e-01 +-1.328000000000000e-01 + 1.023400000000000e-02 + 1.459900000000000e-01 + 2.383300000000000e-01 + 2.473700000000000e-01 + 1.548300000000000e-01 +-1.748100000000000e-02 +-2.120200000000000e-01 +-3.627800000000000e-01 +-4.286300000000000e-01 +-4.102500000000000e-01 +-3.399000000000000e-01 +-2.524600000000000e-01 +-1.597900000000000e-01 +-4.676300000000000e-02 + 1.098700000000000e-01 + 3.157600000000000e-01 + 5.469600000000000e-01 + 7.603900000000000e-01 + 9.175900000000000e-01 + 1.002800000000000e+00 + 1.022400000000000e+00 + 9.884400000000000e-01 + 9.025000000000000e-01 + 7.537700000000001e-01 + 5.340900000000000e-01 + 2.560900000000000e-01 +-4.216200000000000e-02 +-3.121800000000000e-01 +-5.199000000000000e-01 +-6.618700000000000e-01 +-7.607100000000000e-01 +-8.434400000000000e-01 +-9.193500000000000e-01 +-9.739100000000001e-01 +-9.819099999999999e-01 +-9.282100000000000e-01 +-8.192100000000000e-01 +-6.767200000000000e-01 +-5.207800000000000e-01 +-3.567800000000000e-01 +-1.778200000000000e-01 + 1.981800000000000e-02 + 2.220000000000000e-01 + 3.965500000000000e-01 + 5.096100000000000e-01 + 5.472900000000001e-01 + 5.267600000000000e-01 + 4.882200000000000e-01 + 4.735400000000000e-01 + 5.057199999999999e-01 + 5.813300000000000e-01 + 6.776400000000000e-01 + 7.655900000000000e-01 + 8.189200000000000e-01 + 8.159000000000000e-01 + 7.385699999999999e-01 + 5.760900000000000e-01 + 3.330800000000000e-01 + 3.645600000000000e-02 +-2.677800000000000e-01 +-5.297200000000000e-01 +-7.151700000000000e-01 +-8.173899999999999e-01 +-8.536000000000000e-01 +-8.495600000000000e-01 +-8.235800000000000e-01 +-7.806900000000000e-01 +-7.184600000000000e-01 +-6.367400000000000e-01 +-5.418300000000000e-01 +-4.416900000000000e-01 +-3.381500000000000e-01 +-2.248000000000000e-01 +-9.426900000000001e-02 + 5.106600000000000e-02 + 1.950200000000000e-01 + 3.157200000000000e-01 + 4.007900000000000e-01 + 4.574600000000000e-01 + 5.080900000000000e-01 + 5.729600000000000e-01 + 6.528300000000000e-01 + 7.251000000000000e-01 + 7.574100000000000e-01 + 7.293300000000000e-01 + 6.461100000000000e-01 + 5.348700000000000e-01 + 4.266300000000000e-01 + 3.382100000000000e-01 + 2.667800000000000e-01 + 1.989500000000000e-01 + 1.246400000000000e-01 + 4.327900000000000e-02 +-4.201200000000000e-02 +-1.347900000000000e-01 +-2.480400000000000e-01 +-3.935800000000000e-01 +-5.652700000000001e-01 +-7.308400000000000e-01 +-8.427800000000000e-01 +-8.645500000000000e-01 +-7.951300000000000e-01 +-6.738499999999999e-01 +-5.599200000000000e-01 +-4.988800000000000e-01 +-4.977600000000000e-01 +-5.248699999999999e-01 +-5.332700000000000e-01 +-4.908300000000000e-01 +-3.963900000000000e-01 +-2.722200000000000e-01 +-1.407000000000000e-01 +-3.424000000000000e-03 + 1.613300000000000e-01 + 3.808900000000000e-01 + 6.626300000000001e-01 + 9.783700000000000e-01 + 1.269500000000000e+00 + 1.469700000000000e+00 + 1.532500000000000e+00 + 1.447000000000000e+00 + 1.235900000000000e+00 + 9.397100000000000e-01 + 5.984300000000000e-01 + 2.414400000000000e-01 +-1.101200000000000e-01 +-4.339400000000000e-01 +-6.993600000000000e-01 +-8.702800000000001e-01 +-9.185700000000000e-01 +-8.409600000000000e-01 +-6.684700000000000e-01 +-4.606800000000000e-01 +-2.852600000000000e-01 +-1.918900000000000e-01 +-1.937100000000000e-01 +-2.656900000000000e-01 +-3.600900000000000e-01 +-4.297400000000000e-01 +-4.464000000000000e-01 +-4.058700000000000e-01 +-3.204700000000000e-01 +-2.070400000000000e-01 +-7.933400000000000e-02 + 5.156700000000000e-02 + 1.727100000000000e-01 + 2.675200000000000e-01 + 3.206600000000000e-01 + 3.268200000000000e-01 + 2.964600000000000e-01 + 2.529400000000000e-01 + 2.216800000000000e-01 + 2.178000000000000e-01 + 2.396700000000000e-01 + 2.715800000000000e-01 + 2.925900000000000e-01 + 2.854500000000000e-01 + 2.413300000000000e-01 + 1.600000000000000e-01 + 4.846500000000000e-02 +-8.014100000000000e-02 +-2.074100000000000e-01 +-3.123200000000000e-01 +-3.761700000000000e-01 +-3.875900000000000e-01 +-3.448100000000000e-01 +-2.541100000000000e-01 +-1.269600000000000e-01 + 2.089000000000000e-02 + 1.678000000000000e-01 + 2.859900000000000e-01 + 3.473600000000000e-01 + 3.358900000000000e-01 + 2.598700000000000e-01 + 1.538700000000000e-01 + 6.497000000000000e-02 + 2.888800000000000e-02 + 5.012700000000000e-02 + 9.983200000000000e-02 + 1.337200000000000e-01 + 1.185200000000000e-01 + 4.944200000000000e-02 +-5.206600000000000e-02 +-1.561000000000000e-01 +-2.426700000000000e-01 +-3.069100000000000e-01 +-3.498800000000000e-01 +-3.661500000000000e-01 +-3.419400000000000e-01 +-2.671400000000000e-01 +-1.511900000000000e-01 +-2.714100000000000e-02 + 6.294000000000000e-02 + 9.267499999999999e-02 + 6.811300000000001e-02 + 2.319700000000000e-02 +-3.256800000000000e-03 + 7.889999999999999e-03 + 4.778400000000000e-02 + 9.200300000000000e-02 + 1.219000000000000e-01 + 1.370000000000000e-01 + 1.494900000000000e-01 + 1.676200000000000e-01 + 1.840700000000000e-01 + 1.800500000000000e-01 + 1.415900000000000e-01 + 7.322300000000000e-02 +-3.432300000000000e-03 +-6.544800000000001e-02 +-1.049800000000000e-01 +-1.317900000000000e-01 +-1.593600000000000e-01 +-1.867400000000000e-01 +-1.926600000000000e-01 +-1.484600000000000e-01 +-4.088900000000000e-02 + 1.132000000000000e-01 + 2.716700000000000e-01 + 3.879600000000000e-01 + 4.327000000000000e-01 + 4.018800000000000e-01 + 3.097000000000000e-01 + 1.760300000000000e-01 + 2.012600000000000e-02 +-1.369900000000000e-01 +-2.693600000000000e-01 +-3.513100000000000e-01 +-3.711200000000000e-01 +-3.421700000000000e-01 +-2.990300000000000e-01 +-2.768700000000000e-01 +-2.872900000000000e-01 +-3.089800000000000e-01 +-3.020600000000000e-01 +-2.371500000000000e-01 +-1.177400000000000e-01 + 2.043500000000000e-02 + 1.326500000000000e-01 + 1.934100000000000e-01 + 2.095100000000000e-01 + 2.100400000000000e-01 + 2.234500000000000e-01 + 2.594400000000000e-01 + 3.072300000000000e-01 + 3.474500000000000e-01 + 3.651500000000000e-01 + 3.539700000000000e-01 + 3.119500000000000e-01 + 2.374800000000000e-01 + 1.320100000000000e-01 + 7.074400000000000e-03 +-1.135100000000000e-01 +-2.023300000000000e-01 +-2.438500000000000e-01 +-2.444900000000000e-01 +-2.277900000000000e-01 +-2.172000000000000e-01 +-2.198300000000000e-01 +-2.244200000000000e-01 +-2.148000000000000e-01 +-1.865200000000000e-01 +-1.514700000000000e-01 +-1.257600000000000e-01 +-1.117100000000000e-01 +-9.119900000000000e-02 +-3.862100000000000e-02 + 5.555300000000000e-02 + 1.702400000000000e-01 + 2.621900000000000e-01 + 2.931600000000000e-01 + 2.554600000000000e-01 + 1.762000000000000e-01 + 9.662000000000000e-02 + 4.276700000000000e-02 + 1.048800000000000e-02 +-2.440700000000000e-02 +-8.028600000000000e-02 +-1.499700000000000e-01 +-2.032600000000000e-01 +-2.091900000000000e-01 +-1.595300000000000e-01 +-7.478100000000000e-02 + 1.143500000000000e-02 + 7.602200000000001e-02 + 1.193200000000000e-01 + 1.582300000000000e-01 + 2.071800000000000e-01 + 2.633400000000000e-01 + 3.076500000000000e-01 + 3.188100000000000e-01 + 2.872700000000000e-01 + 2.175200000000000e-01 + 1.189800000000000e-01 +-4.395700000000000e-03 +-1.542800000000000e-01 +-3.269500000000000e-01 +-5.006900000000000e-01 +-6.345400000000000e-01 +-6.828900000000000e-01 +-6.182299999999999e-01 +-4.472600000000000e-01 +-2.099800000000000e-01 + 3.758100000000000e-02 + 2.460900000000000e-01 + 3.886700000000000e-01 + 4.632900000000000e-01 + 4.842500000000000e-01 + 4.700600000000000e-01 + 4.340200000000000e-01 + 3.803400000000000e-01 + 3.051300000000000e-01 + 2.012200000000000e-01 + 6.507499999999999e-02 +-9.617299999999999e-02 +-2.613400000000000e-01 +-3.987800000000000e-01 +-4.770300000000000e-01 +-4.780300000000000e-01 +-4.054800000000000e-01 +-2.833400000000000e-01 +-1.449000000000000e-01 +-1.885700000000000e-02 + 7.999800000000000e-02 + 1.516100000000000e-01 + 2.046500000000000e-01 + 2.487300000000000e-01 + 2.892100000000000e-01 + 3.256200000000000e-01 + 3.521600000000000e-01 + 3.589800000000000e-01 + 3.343600000000000e-01 + 2.688800000000000e-01 + 1.608200000000000e-01 + 1.987700000000000e-02 +-1.339500000000000e-01 +-2.770800000000000e-01 +-3.910900000000000e-01 +-4.679100000000000e-01 +-5.082200000000000e-01 +-5.147000000000000e-01 +-4.857400000000000e-01 +-4.150300000000000e-01 +-2.978500000000000e-01 +-1.394500000000000e-01 + 4.092100000000000e-02 + 2.141000000000000e-01 + 3.515000000000000e-01 + 4.360100000000000e-01 + 4.672600000000000e-01 + 4.589000000000000e-01 + 4.297500000000000e-01 + 3.941400000000000e-01 + 3.557300000000000e-01 + 3.072300000000000e-01 + 2.353800000000000e-01 + 1.286400000000000e-01 +-1.560000000000000e-02 +-1.870200000000000e-01 +-3.632900000000000e-01 +-5.155800000000000e-01 +-6.167500000000000e-01 +-6.490200000000000e-01 +-6.083200000000000e-01 +-5.042500000000000e-01 +-3.561900000000000e-01 +-1.875800000000000e-01 +-2.038900000000000e-02 + 1.288100000000000e-01 + 2.505700000000000e-01 + 3.419800000000000e-01 + 4.044100000000000e-01 + 4.407900000000000e-01 + 4.539300000000000e-01 + 4.467400000000000e-01 + 4.235100000000000e-01 + 3.903600000000000e-01 + 3.531600000000000e-01 + 3.136100000000000e-01 + 2.666000000000000e-01 + 2.021500000000000e-01 + 1.122000000000000e-01 +-1.793300000000000e-03 +-1.263500000000000e-01 +-2.417200000000000e-01 +-3.327600000000000e-01 +-3.971400000000000e-01 +-4.440400000000000e-01 +-4.834800000000000e-01 +-5.143300000000000e-01 +-5.210200000000000e-01 +-4.832400000000000e-01 +-3.924500000000000e-01 +-2.630600000000000e-01 +-1.287200000000000e-01 +-2.497200000000000e-02 + 3.028800000000000e-02 + 4.530900000000000e-02 + 4.645500000000000e-02 + 6.020700000000000e-02 + 9.807700000000000e-02 + 1.538900000000000e-01 + 2.127600000000000e-01 + 2.626600000000000e-01 + 2.994400000000000e-01 + 3.232900000000000e-01 + 3.323800000000000e-01 + 3.212100000000000e-01 + 2.856900000000000e-01 + 2.299600000000000e-01 + 1.678100000000000e-01 + 1.164800000000000e-01 + 8.723499999999999e-02 + 8.043400000000001e-02 + 8.838000000000000e-02 + 1.023800000000000e-01 + 1.169500000000000e-01 + 1.275900000000000e-01 + 1.255100000000000e-01 + 9.684200000000000e-02 + 3.007500000000000e-02 +-7.253800000000001e-02 +-1.896300000000000e-01 +-2.882800000000000e-01 +-3.415100000000000e-01 +-3.438900000000000e-01 +-3.135800000000000e-01 +-2.788300000000000e-01 +-2.588300000000000e-01 +-2.531900000000000e-01 +-2.473200000000000e-01 +-2.282100000000000e-01 +-1.970300000000000e-01 +-1.681300000000000e-01 +-1.556000000000000e-01 +-1.592100000000000e-01 +-1.620000000000000e-01 +-1.420200000000000e-01 +-8.868300000000000e-02 +-1.037800000000000e-02 + 7.312299999999999e-02 + 1.471300000000000e-01 + 2.135900000000000e-01 + 2.877100000000000e-01 + 3.814400000000000e-01 + 4.867900000000000e-01 + 5.726300000000000e-01 + 5.990500000000000e-01 + 5.405700000000000e-01 + 4.028000000000000e-01 + 2.216000000000000e-01 + 4.549500000000000e-02 +-8.732200000000000e-02 +-1.638100000000000e-01 +-1.953400000000000e-01 +-2.044100000000000e-01 +-2.083900000000000e-01 +-2.102600000000000e-01 +-2.005000000000000e-01 +-1.671900000000000e-01 +-1.073900000000000e-01 +-3.275100000000000e-02 + 3.372200000000000e-02 + 6.787400000000000e-02 + 5.613000000000000e-02 + 2.319300000000000e-03 +-7.424699999999999e-02 +-1.486800000000000e-01 +-2.030500000000000e-01 +-2.344300000000000e-01 +-2.538700000000000e-01 +-2.766900000000000e-01 +-3.102500000000000e-01 +-3.463200000000000e-01 +-3.628600000000000e-01 +-3.338700000000000e-01 +-2.418400000000000e-01 +-8.642300000000000e-02 + 1.144400000000000e-01 + 3.299300000000000e-01 + 5.251900000000000e-01 + 6.699600000000000e-01 + 7.450800000000000e-01 + 7.458800000000000e-01 + 6.820600000000000e-01 + 5.733700000000000e-01 + 4.419600000000000e-01 + 3.038300000000000e-01 + 1.636200000000000e-01 + 1.579900000000000e-02 +-1.477400000000000e-01 +-3.279300000000000e-01 +-5.126200000000000e-01 +-6.781800000000000e-01 +-7.981600000000000e-01 +-8.538500000000000e-01 +-8.407300000000000e-01 +-7.676100000000000e-01 +-6.498400000000000e-01 +-5.011600000000000e-01 +-3.292100000000000e-01 +-1.365600000000000e-01 + 7.420599999999999e-02 + 2.951000000000000e-01 + 5.104700000000000e-01 + 6.991100000000000e-01 + 8.394800000000000e-01 + 9.155400000000000e-01 + 9.204000000000000e-01 + 8.571299999999999e-01 + 7.366700000000000e-01 + 5.744300000000000e-01 + 3.867400000000000e-01 + 1.881200000000000e-01 +-1.030400000000000e-02 +-2.010300000000000e-01 +-3.788300000000000e-01 +-5.381600000000000e-01 +-6.703100000000000e-01 +-7.621400000000000e-01 +-7.977800000000000e-01 +-7.636900000000000e-01 +-6.546600000000000e-01 +-4.778300000000000e-01 +-2.522500000000000e-01 +-4.482000000000000e-03 + 2.367700000000000e-01 + 4.441500000000000e-01 + 5.926300000000000e-01 + 6.606800000000000e-01 + 6.348400000000000e-01 + 5.171100000000000e-01 + 3.306200000000000e-01 + 1.167000000000000e-01 +-7.892100000000001e-02 +-2.249700000000000e-01 +-3.171100000000000e-01 +-3.746900000000000e-01 +-4.224100000000000e-01 +-4.689700000000000e-01 +-4.984700000000000e-01 +-4.818700000000000e-01 +-4.012100000000000e-01 +-2.686000000000000e-01 +-1.245000000000000e-01 +-1.463000000000000e-02 + 3.879400000000000e-02 + 5.060400000000000e-02 + 6.084600000000000e-02 + 1.060500000000000e-01 + 1.948600000000000e-01 + 3.056100000000000e-01 + 4.065900000000000e-01 + 4.819500000000000e-01 + 5.423600000000000e-01 + 6.118700000000000e-01 + 7.015600000000000e-01 + 7.914600000000001e-01 + 8.359200000000000e-01 + 7.897100000000000e-01 + 6.363200000000000e-01 + 3.985900000000000e-01 + 1.253400000000000e-01 +-1.350600000000000e-01 +-3.552000000000000e-01 +-5.312700000000000e-01 +-6.704599999999999e-01 +-7.764700000000000e-01 +-8.452200000000000e-01 +-8.718700000000000e-01 +-8.601900000000000e-01 +-8.242500000000000e-01 +-7.798800000000000e-01 +-7.333300000000000e-01 +-6.766900000000000e-01 +-5.940299999999999e-01 +-4.730500000000000e-01 +-3.131100000000000e-01 +-1.246800000000000e-01 + 7.725799999999999e-02 + 2.784400000000000e-01 + 4.649300000000000e-01 + 6.193900000000000e-01 + 7.208100000000000e-01 + 7.517200000000001e-01 + 7.097599999999999e-01 + 6.147200000000000e-01 + 5.042200000000000e-01 + 4.185600000000000e-01 + 3.835300000000000e-01 + 4.011700000000000e-01 + 4.528800000000000e-01 + 5.105000000000000e-01 + 5.474800000000000e-01 + 5.442800000000000e-01 + 4.887400000000000e-01 + 3.758000000000000e-01 + 2.094600000000000e-01 + 5.295200000000000e-03 +-2.111100000000000e-01 +-4.117700000000000e-01 +-5.766300000000000e-01 +-6.995400000000001e-01 +-7.851900000000001e-01 +-8.392900000000000e-01 +-8.598800000000000e-01 +-8.370500000000000e-01 +-7.619200000000000e-01 +-6.375300000000000e-01 +-4.828200000000000e-01 +-3.255100000000000e-01 +-1.886600000000000e-01 +-8.022700000000001e-02 + 7.306500000000000e-03 + 8.836300000000000e-02 + 1.740100000000000e-01 + 2.675100000000000e-01 + 3.670600000000000e-01 + 4.703800000000000e-01 + 5.747500000000000e-01 + 6.713500000000000e-01 + 7.397000000000000e-01 + 7.504800000000000e-01 + 6.792300000000000e-01 + 5.242200000000000e-01 + 3.158100000000000e-01 + 1.080000000000000e-01 +-4.588300000000000e-02 +-1.200300000000000e-01 +-1.289000000000000e-01 +-1.173400000000000e-01 +-1.337200000000000e-01 +-2.024400000000000e-01 +-3.123800000000000e-01 +-4.268900000000000e-01 +-5.071000000000000e-01 +-5.326000000000000e-01 +-5.069000000000000e-01 +-4.467800000000000e-01 +-3.658200000000000e-01 +-2.653500000000000e-01 +-1.391600000000000e-01 + 1.286100000000000e-02 + 1.741900000000000e-01 + 3.137600000000000e-01 + 4.005100000000000e-01 + 4.205000000000000e-01 + 3.841800000000000e-01 + 3.186000000000000e-01 + 2.500400000000000e-01 + 1.896800000000000e-01 + 1.322300000000000e-01 + 6.771199999999999e-02 +-3.787200000000000e-03 +-6.640300000000000e-02 +-9.719899999999999e-02 +-8.310700000000000e-02 +-3.324800000000000e-02 + 2.330300000000000e-02 + 5.370100000000000e-02 + 4.056800000000000e-02 +-8.943000000000000e-03 +-7.005599999999999e-02 +-1.176500000000000e-01 +-1.413200000000000e-01 +-1.481900000000000e-01 +-1.530400000000000e-01 +-1.645500000000000e-01 +-1.784900000000000e-01 +-1.819600000000000e-01 +-1.642000000000000e-01 +-1.243000000000000e-01 +-7.005800000000000e-02 +-9.916100000000001e-03 + 5.397800000000000e-02 + 1.247400000000000e-01 + 2.020300000000000e-01 + 2.731500000000000e-01 + 3.128400000000000e-01 + 2.943600000000000e-01 + 2.061100000000000e-01 + 6.278300000000001e-02 +-9.684800000000000e-02 +-2.251100000000000e-01 +-2.852400000000000e-01 +-2.653200000000000e-01 +-1.799800000000000e-01 +-6.119900000000000e-02 + 5.559900000000000e-02 + 1.432700000000000e-01 + 1.887000000000000e-01 + 1.926500000000000e-01 + 1.656100000000000e-01 + 1.220000000000000e-01 + 7.445100000000000e-02 + 3.011000000000000e-02 +-9.497400000000000e-03 +-4.497200000000000e-02 +-7.425400000000000e-02 +-9.046400000000000e-02 +-8.501300000000001e-02 +-5.471100000000000e-02 +-7.732500000000000e-03 + 3.703200000000000e-02 + 5.849900000000000e-02 + 4.496100000000000e-02 + 8.083200000000000e-04 +-5.667500000000000e-02 +-1.083900000000000e-01 +-1.443100000000000e-01 +-1.661700000000000e-01 +-1.804400000000000e-01 +-1.877000000000000e-01 +-1.779800000000000e-01 +-1.364600000000000e-01 +-5.581200000000000e-02 + 5.465200000000000e-02 + 1.707000000000000e-01 + 2.653000000000000e-01 + 3.225800000000000e-01 + 3.438900000000000e-01 + 3.423200000000000e-01 + 3.308800000000000e-01 + 3.136300000000000e-01 + 2.852600000000000e-01 + 2.374600000000000e-01 + 1.650400000000000e-01 + 6.687700000000001e-02 +-5.698300000000000e-02 +-2.063500000000000e-01 +-3.760200000000000e-01 +-5.481900000000000e-01 +-6.903600000000000e-01 +-7.650200000000000e-01 +-7.478399999999999e-01 +-6.427400000000000e-01 +-4.818500000000000e-01 +-3.081000000000000e-01 +-1.515500000000000e-01 +-1.590300000000000e-02 + 1.152200000000000e-01 + 2.573000000000000e-01 + 4.058300000000000e-01 + 5.340700000000000e-01 + 6.095699999999999e-01 + 6.164700000000000e-01 + 5.666600000000001e-01 + 4.916500000000000e-01 + 4.223200000000000e-01 + 3.725300000000000e-01 + 3.380300000000000e-01 + 3.086300000000000e-01 + 2.807500000000000e-01 + 2.584400000000000e-01 + 2.422800000000000e-01 + 2.180300000000000e-01 + 1.580300000000000e-01 + 3.821600000000000e-02 +-1.408800000000000e-01 +-3.460900000000000e-01 +-5.252200000000000e-01 +-6.349399999999999e-01 +-6.640100000000000e-01 +-6.358700000000000e-01 +-5.893200000000000e-01 +-5.513200000000000e-01 +-5.208300000000000e-01 +-4.735700000000000e-01 +-3.824700000000000e-01 +-2.387500000000000e-01 +-6.007300000000000e-02 + 1.172800000000000e-01 + 2.550400000000000e-01 + 3.280100000000000e-01 + 3.309800000000000e-01 + 2.775200000000000e-01 + 1.938900000000000e-01 + 1.110200000000000e-01 + 5.545400000000000e-02 + 4.114500000000000e-02 + 6.498400000000000e-02 + 1.095600000000000e-01 + 1.528800000000000e-01 + 1.797300000000000e-01 + 1.874200000000000e-01 + 1.821800000000000e-01 + 1.699000000000000e-01 + 1.495900000000000e-01 + 1.155700000000000e-01 + 6.653700000000000e-02 + 1.262400000000000e-02 +-2.750900000000000e-02 +-3.925700000000000e-02 +-2.465400000000000e-02 +-3.528500000000000e-03 + 4.100200000000000e-05 +-2.291000000000000e-02 +-5.597400000000000e-02 +-6.548500000000000e-02 +-2.271000000000000e-02 + 7.524300000000000e-02 + 2.008300000000000e-01 + 3.112100000000000e-01 + 3.725800000000000e-01 + 3.772200000000000e-01 + 3.431600000000000e-01 + 2.989900000000000e-01 + 2.657900000000000e-01 + 2.475400000000000e-01 + 2.331400000000000e-01 + 2.047000000000000e-01 + 1.443800000000000e-01 + 3.722100000000000e-02 +-1.275300000000000e-01 +-3.522600000000000e-01 +-6.242200000000000e-01 +-9.111000000000000e-01 +-1.164900000000000e+00 +-1.335300000000000e+00 +-1.386500000000000e+00 +-1.309900000000000e+00 +-1.126500000000000e+00 +-8.782400000000000e-01 +-6.139600000000000e-01 +-3.753200000000000e-01 +-1.859600000000000e-01 +-4.643600000000000e-02 + 6.419100000000000e-02 + 1.792900000000000e-01 + 3.301500000000000e-01 + 5.316200000000000e-01 + 7.753100000000001e-01 + 1.034700000000000e+00 + 1.279100000000000e+00 + 1.487000000000000e+00 + 1.649800000000000e+00 + 1.764400000000000e+00 + 1.820700000000000e+00 + 1.798100000000000e+00 + 1.673200000000000e+00 + 1.436300000000000e+00 + 1.102800000000000e+00 + 7.103800000000000e-01 + 3.023800000000000e-01 +-9.041600000000000e-02 +-4.573100000000000e-01 +-8.000400000000000e-01 +-1.117700000000000e+00 +-1.397400000000000e+00 +-1.618100000000000e+00 +-1.763700000000000e+00 +-1.833700000000000e+00 +-1.843200000000000e+00 +-1.810800000000000e+00 +-1.745300000000000e+00 +-1.641700000000000e+00 +-1.487700000000000e+00 +-1.274900000000000e+00 +-1.005400000000000e+00 +-6.906900000000000e-01 +-3.448300000000000e-01 + 1.844000000000000e-02 + 3.830800000000000e-01 + 7.260200000000000e-01 + 1.017700000000000e+00 + 1.230900000000000e+00 + 1.352200000000000e+00 + 1.388500000000000e+00 + 1.361200000000000e+00 + 1.293500000000000e+00 + 1.199000000000000e+00 + 1.082000000000000e+00 + 9.462000000000000e-01 + 8.044900000000000e-01 + 6.798600000000000e-01 + 5.947900000000000e-01 + 5.573100000000000e-01 + 5.542000000000000e-01 + 5.566200000000000e-01 + 5.337800000000000e-01 + 4.647200000000000e-01 + 3.413100000000000e-01 + 1.637000000000000e-01 +-6.420600000000000e-02 +-3.333700000000000e-01 +-6.234499999999999e-01 +-8.996900000000000e-01 +-1.119600000000000e+00 +-1.248700000000000e+00 +-1.276300000000000e+00 +-1.220800000000000e+00 +-1.119100000000000e+00 +-1.008800000000000e+00 +-9.114600000000000e-01 +-8.281900000000000e-01 +-7.465800000000000e-01 +-6.518000000000000e-01 +-5.341399999999999e-01 +-3.900600000000000e-01 +-2.198100000000000e-01 +-2.638900000000000e-02 + 1.822400000000000e-01 + 3.909100000000000e-01 + 5.786300000000000e-01 + 7.248500000000000e-01 + 8.168900000000000e-01 + 8.537300000000000e-01 + 8.439600000000000e-01 + 8.003900000000000e-01 + 7.358900000000000e-01 + 6.629100000000000e-01 + 5.948500000000000e-01 + 5.450199999999999e-01 + 5.211600000000000e-01 + 5.182200000000000e-01 + 5.154300000000001e-01 + 4.823300000000000e-01 + 3.923200000000000e-01 + 2.367200000000000e-01 + 3.101900000000000e-02 +-1.908500000000000e-01 +-3.907500000000000e-01 +-5.413200000000000e-01 +-6.337300000000000e-01 +-6.758100000000000e-01 +-6.832500000000000e-01 +-6.699500000000000e-01 +-6.423200000000000e-01 +-5.991300000000001e-01 +-5.351800000000000e-01 +-4.462100000000000e-01 +-3.327700000000000e-01 +-2.021300000000000e-01 +-6.774800000000000e-02 + 5.352000000000000e-02 + 1.461300000000000e-01 + 2.009200000000000e-01 + 2.184600000000000e-01 + 2.088700000000000e-01 + 1.875100000000000e-01 + 1.683000000000000e-01 + 1.577200000000000e-01 + 1.525900000000000e-01 + 1.430400000000000e-01 + 1.195400000000000e-01 + 8.030700000000000e-02 + 3.511500000000000e-02 + 2.636500000000000e-03 + 1.935900000000000e-03 + 4.210100000000000e-02 + 1.158000000000000e-01 + 2.010400000000000e-01 + 2.710300000000000e-01 + 3.070400000000000e-01 + 3.067000000000000e-01 + 2.824500000000000e-01 + 2.508300000000000e-01 + 2.195400000000000e-01 + 1.809100000000000e-01 + 1.167900000000000e-01 + 1.203700000000000e-02 +-1.320600000000000e-01 +-2.935700000000000e-01 +-4.378400000000000e-01 +-5.327000000000000e-01 +-5.614500000000000e-01 +-5.264700000000000e-01 +-4.433200000000000e-01 +-3.313300000000000e-01 +-2.079100000000000e-01 +-8.874200000000000e-02 + 9.930300000000000e-03 + 7.293200000000000e-02 + 9.351300000000000e-02 + 8.163300000000000e-02 + 6.487600000000000e-02 + 7.739600000000001e-02 + 1.411500000000000e-01 + 2.508500000000000e-01 + 3.735100000000000e-01 + 4.644000000000000e-01 + 4.902100000000000e-01 + 4.447600000000000e-01 + 3.480200000000000e-01 + 2.308700000000000e-01 + 1.172200000000000e-01 + 1.595300000000000e-02 +-7.426199999999999e-02 +-1.544000000000000e-01 +-2.197300000000000e-01 +-2.645500000000000e-01 +-2.912800000000000e-01 +-3.135600000000000e-01 +-3.471300000000000e-01 +-3.943000000000000e-01 +-4.352700000000000e-01 +-4.364700000000000e-01 +-3.729800000000000e-01 +-2.493300000000000e-01 +-1.016200000000000e-01 + 2.356000000000000e-02 + 1.001100000000000e-01 + 1.409400000000000e-01 + 1.891500000000000e-01 + 2.867200000000000e-01 + 4.418500000000000e-01 + 6.181800000000000e-01 + 7.531700000000000e-01 + 7.927300000000000e-01 + 7.184900000000000e-01 + 5.512899999999999e-01 + 3.324300000000000e-01 + 9.932299999999999e-02 +-1.271800000000000e-01 +-3.387400000000000e-01 +-5.276300000000000e-01 +-6.800900000000000e-01 +-7.806600000000000e-01 +-8.213900000000000e-01 +-8.056500000000000e-01 +-7.421100000000000e-01 +-6.352500000000000e-01 +-4.825500000000000e-01 +-2.826200000000000e-01 +-4.713100000000000e-02 + 1.958400000000000e-01 + 4.126900000000000e-01 + 5.820300000000000e-01 + 7.039100000000000e-01 + 7.909100000000000e-01 + 8.472200000000000e-01 + 8.539400000000000e-01 + 7.763099999999999e-01 + 5.909799999999999e-01 + 3.135300000000000e-01 + 2.926100000000000e-03 +-2.645400000000000e-01 +-4.356800000000000e-01 +-5.067400000000000e-01 +-5.167800000000000e-01 +-5.135000000000000e-01 +-5.178500000000000e-01 +-5.132300000000000e-01 +-4.656700000000000e-01 +-3.567600000000000e-01 +-2.024500000000000e-01 +-4.398300000000000e-02 + 7.971399999999999e-02 + 1.545700000000000e-01 + 1.912600000000000e-01 + 2.053700000000000e-01 + 1.977800000000000e-01 + 1.537800000000000e-01 + 6.237100000000000e-02 +-6.197600000000000e-02 +-1.761000000000000e-01 +-2.294600000000000e-01 +-1.950600000000000e-01 +-8.632500000000000e-02 + 5.356400000000000e-02 + 1.812400000000000e-01 + 2.787000000000000e-01 + 3.556700000000000e-01 + 4.291500000000000e-01 + 4.988200000000000e-01 + 5.397100000000000e-01 + 5.187400000000000e-01 + 4.216400000000000e-01 + 2.683500000000000e-01 + 1.040100000000000e-01 +-2.833000000000000e-02 +-1.131000000000000e-01 +-1.680100000000000e-01 +-2.272200000000000e-01 +-3.153800000000000e-01 +-4.303900000000000e-01 +-5.448400000000000e-01 +-6.219800000000000e-01 +-6.339300000000000e-01 +-5.714200000000000e-01 +-4.431600000000000e-01 +-2.695900000000000e-01 +-7.724700000000000e-02 + 1.047600000000000e-01 + 2.479900000000000e-01 + 3.299600000000000e-01 + 3.405400000000000e-01 + 2.857600000000000e-01 + 1.861700000000000e-01 + 7.032900000000000e-02 +-3.350700000000000e-02 +-1.041600000000000e-01 +-1.315100000000000e-01 +-1.182500000000000e-01 +-7.922899999999999e-02 +-3.739400000000000e-02 +-1.533300000000000e-02 +-2.442300000000000e-02 +-5.690400000000000e-02 +-8.658500000000000e-02 +-7.973300000000000e-02 +-1.146800000000000e-02 + 1.209400000000000e-01 + 2.949200000000000e-01 + 4.705900000000000e-01 + 6.050900000000000e-01 + 6.659700000000000e-01 + 6.391500000000000e-01 + 5.306400000000000e-01 + 3.635300000000000e-01 + 1.718200000000000e-01 +-8.616499999999999e-03 +-1.501200000000000e-01 +-2.410500000000000e-01 +-2.867700000000000e-01 +-3.026800000000000e-01 +-3.030400000000000e-01 +-2.930400000000000e-01 +-2.697300000000000e-01 +-2.303500000000000e-01 +-1.806400000000000e-01 +-1.349900000000000e-01 +-1.072400000000000e-01 +-9.933400000000001e-02 +-9.818399999999999e-02 +-8.555100000000000e-02 +-5.500800000000000e-02 +-2.318700000000000e-02 +-2.503600000000000e-02 +-9.381000000000000e-02 +-2.377400000000000e-01 +-4.284200000000000e-01 +-6.084600000000000e-01 +-7.141200000000000e-01 +-7.002200000000000e-01 +-5.554700000000000e-01 +-3.039200000000000e-01 + 4.309000000000000e-03 + 3.072400000000000e-01 + 5.461800000000000e-01 + 6.803500000000000e-01 + 6.986000000000000e-01 + 6.233200000000000e-01 + 5.019200000000000e-01 + 3.864400000000000e-01 + 3.104300000000000e-01 + 2.761400000000000e-01 + 2.604500000000000e-01 + 2.360800000000000e-01 + 1.935400000000000e-01 + 1.485400000000000e-01 + 1.294900000000000e-01 + 1.546700000000000e-01 + 2.160400000000000e-01 + 2.820200000000000e-01 + 3.171700000000000e-01 + 3.043300000000000e-01 + 2.532000000000000e-01 + 1.897500000000000e-01 + 1.351400000000000e-01 + 8.971500000000000e-02 + 3.341500000000000e-02 +-5.903900000000000e-02 +-1.997200000000000e-01 +-3.787500000000000e-01 +-5.698299999999999e-01 +-7.442100000000000e-01 +-8.822100000000000e-01 +-9.752999999999999e-01 +-1.019500000000000e+00 +-1.007900000000000e+00 +-9.288999999999999e-01 +-7.735800000000000e-01 +-5.455300000000000e-01 +-2.671200000000000e-01 + 2.375900000000000e-02 + 2.856300000000000e-01 + 4.880100000000000e-01 + 6.210599999999999e-01 + 6.949500000000000e-01 + 7.292800000000000e-01 + 7.384700000000000e-01 + 7.217000000000000e-01 + 6.639800000000000e-01 + 5.487000000000000e-01 + 3.746000000000000e-01 + 1.662300000000000e-01 +-3.016700000000000e-02 +-1.648100000000000e-01 +-2.070300000000000e-01 +-1.591800000000000e-01 +-5.345200000000000e-02 + 6.573200000000000e-02 + 1.625500000000000e-01 + 2.211800000000000e-01 + 2.429200000000000e-01 + 2.344500000000000e-01 + 1.981500000000000e-01 + 1.321100000000000e-01 + 3.851900000000000e-02 +-6.838500000000000e-02 +-1.631200000000000e-01 +-2.197800000000000e-01 +-2.255800000000000e-01 +-1.877200000000000e-01 +-1.287200000000000e-01 +-7.423600000000000e-02 +-4.169800000000000e-02 +-3.634400000000000e-02 +-5.462600000000000e-02 +-8.975700000000000e-02 +-1.344600000000000e-01 +-1.805000000000000e-01 +-2.184100000000000e-01 +-2.405000000000000e-01 +-2.456700000000000e-01 +-2.409500000000000e-01 +-2.363400000000000e-01 +-2.349900000000000e-01 +-2.264000000000000e-01 +-1.897900000000000e-01 +-1.075000000000000e-01 + 1.979000000000000e-02 + 1.673600000000000e-01 + 2.957400000000000e-01 + 3.700700000000000e-01 + 3.772600000000000e-01 + 3.301600000000000e-01 + 2.571000000000000e-01 + 1.845900000000000e-01 + 1.248900000000000e-01 + 7.477900000000000e-02 + 2.329500000000000e-02 +-3.888300000000000e-02 +-1.149400000000000e-01 +-2.026500000000000e-01 +-2.964200000000000e-01 +-3.867700000000000e-01 +-4.581200000000000e-01 +-4.888400000000000e-01 +-4.567400000000000e-01 +-3.483800000000000e-01 +-1.665700000000000e-01 + 6.933800000000000e-02 + 3.300000000000000e-01 + 5.844100000000000e-01 + 8.038999999999999e-01 + 9.606600000000000e-01 + 1.025700000000000e+00 + 9.729300000000000e-01 + 7.911600000000000e-01 + 4.976400000000000e-01 + 1.428100000000000e-01 +-2.008400000000000e-01 +-4.630100000000000e-01 +-6.008700000000000e-01 +-6.119100000000000e-01 +-5.280100000000000e-01 +-3.957500000000000e-01 +-2.554400000000000e-01 +-1.304500000000000e-01 +-2.963200000000000e-02 + 4.275400000000000e-02 + 7.960200000000001e-02 + 7.175100000000000e-02 + 1.559600000000000e-02 +-7.955500000000000e-02 +-1.911600000000000e-01 +-2.916400000000000e-01 +-3.603200000000000e-01 +-3.917900000000000e-01 +-3.955600000000000e-01 +-3.878100000000000e-01 +-3.804900000000000e-01 +-3.746200000000000e-01 +-3.609700000000000e-01 +-3.270700000000000e-01 +-2.654200000000000e-01 +-1.779400000000000e-01 +-7.464100000000000e-02 + 3.154600000000000e-02 + 1.298300000000000e-01 + 2.135500000000000e-01 + 2.793500000000000e-01 + 3.261300000000000e-01 + 3.563000000000000e-01 + 3.787900000000000e-01 + 4.103100000000000e-01 + 4.709800000000000e-01 + 5.739300000000001e-01 + 7.141000000000000e-01 + 8.635800000000000e-01 + 9.787800000000000e-01 + 1.017300000000000e+00 + 9.559700000000000e-01 + 7.992500000000000e-01 + 5.743400000000000e-01 + 3.157100000000000e-01 + 4.987600000000000e-02 +-2.108100000000000e-01 +-4.630700000000000e-01 +-7.019700000000000e-01 +-9.133599999999999e-01 +-1.075000000000000e+00 +-1.165100000000000e+00 +-1.173300000000000e+00 +-1.105600000000000e+00 +-9.836400000000000e-01 +-8.376900000000000e-01 +-6.973100000000000e-01 +-5.826300000000000e-01 +-4.977300000000000e-01 +-4.286400000000000e-01 +-3.480700000000000e-01 +-2.275300000000000e-01 +-5.268000000000000e-02 + 1.660000000000000e-01 + 3.946200000000000e-01 + 5.905300000000000e-01 + 7.225600000000000e-01 + 7.847000000000000e-01 + 7.947700000000000e-01 + 7.799000000000000e-01 + 7.594100000000000e-01 + 7.368300000000000e-01 + 7.048700000000000e-01 + 6.566200000000000e-01 + 5.926900000000001e-01 + 5.185800000000000e-01 + 4.369800000000000e-01 + 3.444600000000000e-01 + 2.379800000000000e-01 + 1.261400000000000e-01 + 3.309000000000000e-02 +-1.291200000000000e-02 +-1.633100000000000e-03 + 4.210700000000000e-02 + 6.196700000000000e-02 +-3.901200000000000e-03 +-1.890500000000000e-01 +-4.786300000000000e-01 +-8.154900000000000e-01 +-1.127000000000000e+00 +-1.354100000000000e+00 +-1.464800000000000e+00 +-1.450700000000000e+00 +-1.315600000000000e+00 +-1.071400000000000e+00 +-7.434500000000001e-01 +-3.760800000000000e-01 +-2.549700000000000e-02 + 2.622900000000000e-01 + 4.747400000000000e-01 + 6.383400000000000e-01 + 7.979200000000000e-01 + 9.811200000000000e-01 + 1.172600000000000e+00 + 1.317800000000000e+00 + 1.354700000000000e+00 + 1.252800000000000e+00 + 1.031600000000000e+00 + 7.477100000000000e-01 + 4.613800000000000e-01 + 2.074100000000000e-01 +-1.089900000000000e-02 +-2.050100000000000e-01 +-3.787000000000000e-01 +-5.191200000000000e-01 +-6.068000000000000e-01 +-6.340200000000000e-01 +-6.146500000000000e-01 +-5.771700000000000e-01 +-5.467500000000000e-01 +-5.310700000000000e-01 +-5.199300000000000e-01 +-4.969500000000000e-01 +-4.522200000000000e-01 +-3.857500000000000e-01 +-3.010200000000000e-01 +-1.968100000000000e-01 +-6.623200000000000e-02 + 9.504100000000000e-02 + 2.784700000000000e-01 + 4.592400000000000e-01 + 6.034900000000000e-01 + 6.818100000000000e-01 + 6.804200000000000e-01 + 6.044700000000000e-01 + 4.738200000000000e-01 + 3.160100000000000e-01 + 1.599300000000000e-01 + 3.059300000000000e-02 +-5.626700000000000e-02 +-9.914199999999999e-02 +-1.117900000000000e-01 +-1.171100000000000e-01 +-1.351200000000000e-01 +-1.718500000000000e-01 +-2.165800000000000e-01 +-2.499800000000000e-01 +-2.576300000000000e-01 +-2.393300000000000e-01 +-2.079000000000000e-01 +-1.794900000000000e-01 +-1.634400000000000e-01 +-1.593700000000000e-01 +-1.620400000000000e-01 +-1.681100000000000e-01 +-1.780000000000000e-01 +-1.913000000000000e-01 +-2.013000000000000e-01 +-1.952500000000000e-01 +-1.618600000000000e-01 +-1.005900000000000e-01 +-2.445100000000000e-02 + 4.707900000000000e-02 + 1.002300000000000e-01 + 1.351700000000000e-01 + 1.643300000000000e-01 + 2.026700000000000e-01 + 2.582800000000000e-01 + 3.298100000000000e-01 + 4.109000000000000e-01 + 4.951600000000000e-01 + 5.757900000000000e-01 + 6.404100000000000e-01 + 6.681600000000000e-01 + 6.358600000000000e-01 + 5.324400000000000e-01 + 3.714600000000000e-01 + 1.904800000000000e-01 + 3.369000000000000e-02 +-7.276199999999999e-02 +-1.364100000000000e-01 +-1.934000000000000e-01 +-2.849800000000000e-01 +-4.306600000000000e-01 +-6.150800000000000e-01 +-7.960900000000000e-01 +-9.268200000000000e-01 +-9.764100000000000e-01 +-9.375700000000000e-01 +-8.202800000000000e-01 +-6.408100000000000e-01 +-4.163300000000000e-01 +-1.677200000000000e-01 + 7.555099999999999e-02 + 2.772300000000000e-01 + 4.056000000000000e-01 + 4.480300000000000e-01 + 4.183600000000000e-01 + 3.504700000000000e-01 + 2.812500000000000e-01 + 2.338000000000000e-01 + 2.111500000000000e-01 + 2.033900000000000e-01 + 2.011700000000000e-01 + 2.049800000000000e-01 + 2.233600000000000e-01 + 2.620700000000000e-01 + 3.133200000000000e-01 + 3.536900000000000e-01 + 3.534500000000000e-01 + 2.915000000000000e-01 + 1.667900000000000e-01 +-6.230800000000000e-04 +-1.785000000000000e-01 +-3.350100000000000e-01 +-4.476000000000000e-01 +-5.043700000000000e-01 +-5.002100000000000e-01 +-4.329000000000000e-01 +-3.034200000000000e-01 +-1.203200000000000e-01 + 9.615300000000000e-02 + 3.146000000000000e-01 + 4.995500000000000e-01 + 6.219300000000000e-01 + 6.676500000000000e-01 + 6.398200000000001e-01 + 5.544300000000000e-01 + 4.324600000000000e-01 + 2.931300000000000e-01 + 1.507500000000000e-01 + 1.474600000000000e-02 +-1.093000000000000e-01 +-2.194700000000000e-01 +-3.179600000000000e-01 +-4.105100000000000e-01 +-5.036100000000000e-01 +-6.002500000000000e-01 +-6.963800000000000e-01 +-7.804000000000000e-01 +-8.363300000000000e-01 +-8.489300000000000e-01 +-8.082100000000000e-01 +-7.115600000000000e-01 +-5.634000000000000e-01 +-3.736200000000000e-01 +-1.562000000000000e-01 + 7.168500000000000e-02 + 2.905300000000000e-01 + 4.802800000000000e-01 + 6.235100000000000e-01 + 7.097000000000000e-01 + 7.390000000000000e-01 + 7.237200000000000e-01 + 6.854800000000000e-01 + 6.477000000000001e-01 + 6.255800000000000e-01 + 6.181400000000000e-01 + 6.077700000000000e-01 + 5.692900000000000e-01 + 4.849300000000000e-01 + 3.568800000000000e-01 + 2.086400000000000e-01 + 7.278200000000000e-02 +-2.814900000000000e-02 +-9.494000000000000e-02 +-1.493100000000000e-01 +-2.162700000000000e-01 +-3.030400000000000e-01 +-3.904100000000000e-01 +-4.444700000000000e-01 +-4.422600000000000e-01 +-3.936700000000000e-01 +-3.429100000000000e-01 +-3.457300000000000e-01 +-4.356800000000000e-01 +-6.006100000000000e-01 +-7.847600000000000e-01 +-9.149200000000000e-01 +-9.344300000000000e-01 +-8.248799999999999e-01 +-6.052999999999999e-01 +-3.141600000000000e-01 + 1.099600000000000e-02 + 3.430600000000000e-01 + 6.615300000000000e-01 + 9.432800000000000e-01 + 1.158500000000000e+00 + 1.276300000000000e+00 + 1.276500000000000e+00 + 1.157200000000000e+00 + 9.348300000000000e-01 + 6.362900000000000e-01 + 2.902400000000000e-01 +-7.587400000000000e-02 +-4.331400000000000e-01 +-7.473600000000000e-01 +-9.800000000000000e-01 +-1.096000000000000e+00 +-1.075100000000000e+00 +-9.206299999999999e-01 +-6.602300000000000e-01 +-3.384800000000000e-01 +-4.792300000000000e-03 + 2.977300000000000e-01 + 5.383300000000000e-01 + 6.990100000000000e-01 + 7.717500000000000e-01 + 7.562700000000000e-01 + 6.605799999999999e-01 + 5.035900000000000e-01 + 3.159500000000000e-01 + 1.352000000000000e-01 +-5.429300000000000e-03 +-9.035899999999999e-02 +-1.291100000000000e-01 +-1.516400000000000e-01 +-1.918800000000000e-01 +-2.681000000000000e-01 +-3.720200000000000e-01 +-4.740300000000000e-01 +-5.414700000000000e-01 +-5.575700000000000e-01 +-5.281800000000000e-01 +-4.720500000000000e-01 +-4.030200000000000e-01 +-3.185900000000000e-01 +-2.042900000000000e-01 +-5.070800000000000e-02 + 1.309700000000000e-01 + 3.083600000000000e-01 + 4.445200000000000e-01 + 5.197600000000000e-01 + 5.420000000000000e-01 + 5.370600000000000e-01 + 5.262000000000000e-01 + 5.084000000000000e-01 + 4.618500000000000e-01 + 3.640000000000000e-01 + 2.147200000000000e-01 + 4.404400000000000e-02 +-1.027100000000000e-01 +-1.921100000000000e-01 +-2.226500000000000e-01 +-2.231400000000000e-01 +-2.316500000000000e-01 +-2.707800000000000e-01 +-3.366800000000000e-01 +-4.076100000000000e-01 +-4.624100000000000e-01 +-4.928800000000000e-01 +-5.008500000000000e-01 +-4.845200000000000e-01 +-4.281000000000000e-01 +-3.064000000000000e-01 +-1.032700000000000e-01 + 1.691900000000000e-01 + 4.658700000000000e-01 + 7.241000000000000e-01 + 8.907500000000000e-01 + 9.443300000000000e-01 + 8.989300000000000e-01 + 7.891000000000000e-01 + 6.469900000000000e-01 + 4.865400000000000e-01 + 3.036500000000000e-01 + 8.994000000000001e-02 +-1.508600000000000e-01 +-3.949400000000000e-01 +-6.042900000000000e-01 +-7.425900000000000e-01 +-7.919900000000000e-01 +-7.614800000000000e-01 +-6.823600000000000e-01 +-5.930700000000000e-01 +-5.210100000000000e-01 +-4.703900000000000e-01 +-4.221800000000000e-01 +-3.464500000000000e-01 +-2.207700000000000e-01 +-4.507300000000000e-02 + 1.549700000000000e-01 + 3.380900000000000e-01 + 4.656500000000000e-01 + 5.185100000000000e-01 + 5.037600000000000e-01 + 4.487100000000000e-01 + 3.862700000000000e-01 + 3.397100000000000e-01 + 3.142700000000000e-01 + 2.982800000000000e-01 + 2.718400000000000e-01 + 2.179100000000000e-01 + 1.310600000000000e-01 + 2.085800000000000e-02 +-9.058500000000000e-02 +-1.755700000000000e-01 +-2.099200000000000e-01 +-1.813600000000000e-01 +-9.417900000000000e-02 + 3.126900000000000e-02 + 1.641800000000000e-01 + 2.716800000000000e-01 + 3.270100000000000e-01 + 3.151700000000000e-01 + 2.351800000000000e-01 + 9.959200000000000e-02 +-6.822900000000000e-02 +-2.387500000000000e-01 +-3.827100000000000e-01 +-4.785700000000000e-01 +-5.184400000000000e-01 +-5.099300000000000e-01 +-4.721700000000000e-01 +-4.270600000000000e-01 +-3.894800000000000e-01 +-3.607500000000000e-01 +-3.286000000000000e-01 +-2.736400000000000e-01 +-1.796300000000000e-01 +-4.303900000000000e-02 + 1.226600000000000e-01 + 2.905800000000000e-01 + 4.309500000000000e-01 + 5.242500000000000e-01 + 5.697500000000000e-01 + 5.837599999999999e-01 + 5.868500000000000e-01 + 5.866700000000000e-01 + 5.676700000000000e-01 + 4.966100000000000e-01 + 3.438400000000000e-01 + 1.085900000000000e-01 +-1.686200000000000e-01 +-4.176700000000000e-01 +-5.709700000000000e-01 +-5.983200000000000e-01 +-5.225000000000000e-01 +-4.051200000000000e-01 +-3.105400000000000e-01 +-2.702500000000000e-01 +-2.697900000000000e-01 +-2.645400000000000e-01 +-2.122400000000000e-01 +-9.957900000000000e-02 + 5.325000000000000e-02 + 2.094500000000000e-01 + 3.388300000000000e-01 + 4.299400000000000e-01 + 4.847600000000000e-01 + 5.043200000000000e-01 + 4.798100000000000e-01 + 3.978400000000000e-01 + 2.555400000000000e-01 + 7.214200000000000e-02 +-1.138500000000000e-01 +-2.613800000000000e-01 +-3.461600000000000e-01 +-3.693100000000000e-01 +-3.506100000000000e-01 +-3.129100000000000e-01 +-2.697000000000000e-01 +-2.234000000000000e-01 +-1.722900000000000e-01 +-1.171500000000000e-01 +-6.100200000000000e-02 +-2.630800000000000e-03 + 6.805500000000000e-02 + 1.656700000000000e-01 + 2.962700000000000e-01 + 4.442000000000000e-01 + 5.697800000000000e-01 + 6.222200000000000e-01 + 5.621000000000000e-01 + 3.810200000000000e-01 + 1.074900000000000e-01 +-2.035100000000000e-01 +-4.908900000000000e-01 +-7.070700000000000e-01 +-8.284600000000000e-01 +-8.549900000000000e-01 +-8.022100000000000e-01 +-6.915700000000000e-01 +-5.433400000000000e-01 +-3.732800000000000e-01 +-1.924200000000000e-01 +-8.376400000000001e-03 + 1.732800000000000e-01 + 3.479100000000000e-01 + 5.108300000000000e-01 + 6.561300000000000e-01 + 7.751400000000001e-01 + 8.559400000000000e-01 + 8.853000000000000e-01 + 8.539500000000000e-01 + 7.632300000000000e-01 + 6.285600000000000e-01 + 4.756500000000000e-01 + 3.290000000000000e-01 + 1.986800000000000e-01 + 7.445400000000001e-02 +-6.660600000000000e-02 +-2.415900000000000e-01 +-4.437700000000000e-01 +-6.384300000000001e-01 +-7.777900000000000e-01 +-8.275500000000000e-01 +-7.879200000000000e-01 +-6.949300000000000e-01 +-5.998200000000000e-01 +-5.396000000000000e-01 +-5.175700000000000e-01 +-5.060000000000000e-01 +-4.678600000000000e-01 +-3.824400000000000e-01 +-2.581000000000000e-01 +-1.254400000000000e-01 +-1.736600000000000e-02 + 5.046500000000000e-02 + 8.744100000000000e-02 + 1.219100000000000e-01 + 1.867500000000000e-01 + 3.047000000000000e-01 + 4.787500000000000e-01 + 6.892900000000000e-01 + 8.982300000000000e-01 + 1.059500000000000e+00 + 1.134500000000000e+00 + 1.106800000000000e+00 + 9.889000000000000e-01 + 8.160100000000000e-01 + 6.275400000000000e-01 + 4.475900000000000e-01 + 2.760900000000000e-01 + 9.654100000000000e-02 +-1.054500000000000e-01 +-3.264700000000000e-01 +-5.440199999999999e-01 +-7.300100000000000e-01 +-8.684500000000001e-01 +-9.634500000000000e-01 +-1.031800000000000e+00 +-1.086700000000000e+00 +-1.125100000000000e+00 +-1.128900000000000e+00 +-1.077400000000000e+00 +-9.619200000000000e-01 +-7.900300000000000e-01 +-5.790400000000000e-01 +-3.446100000000000e-01 +-9.425100000000000e-02 + 1.699800000000000e-01 + 4.435800000000000e-01 + 7.137900000000000e-01 + 9.605300000000000e-01 + 1.161800000000000e+00 + 1.298500000000000e+00 + 1.355900000000000e+00 + 1.323100000000000e+00 + 1.194900000000000e+00 + 9.775700000000001e-01 + 6.938299999999999e-01 + 3.814100000000000e-01 + 8.266700000000000e-02 +-1.697100000000000e-01 +-3.619600000000000e-01 +-4.977100000000000e-01 +-5.876000000000000e-01 +-6.387200000000000e-01 +-6.514900000000000e-01 +-6.248200000000000e-01 +-5.632700000000000e-01 +-4.787300000000000e-01 +-3.850100000000000e-01 +-2.904900000000000e-01 +-1.961100000000000e-01 +-1.008900000000000e-01 +-9.664000000000001e-03 + 6.454900000000000e-02 + 1.072500000000000e-01 + 1.132700000000000e-01 + 9.278599999999999e-02 + 6.690200000000000e-02 + 5.546500000000000e-02 + 6.621100000000001e-02 + 9.281300000000001e-02 + 1.219500000000000e-01 + 1.424000000000000e-01 + 1.485500000000000e-01 + 1.369700000000000e-01 + 1.015100000000000e-01 + 3.383100000000000e-02 +-6.951400000000001e-02 +-1.993600000000000e-01 +-3.335700000000000e-01 +-4.463000000000000e-01 +-5.205500000000000e-01 +-5.540800000000000e-01 +-5.533200000000000e-01 +-5.199600000000000e-01 +-4.416700000000000e-01 +-2.958900000000000e-01 +-6.599600000000000e-02 + 2.409800000000000e-01 + 5.876300000000000e-01 + 9.159000000000000e-01 + 1.167600000000000e+00 + 1.303900000000000e+00 + 1.313200000000000e+00 + 1.207500000000000e+00 + 1.011400000000000e+00 + 7.533700000000000e-01 + 4.618800000000000e-01 + 1.650300000000000e-01 +-1.105400000000000e-01 +-3.438400000000000e-01 +-5.250000000000000e-01 +-6.581800000000000e-01 +-7.587500000000000e-01 +-8.451300000000000e-01 +-9.287000000000000e-01 +-1.006400000000000e+00 +-1.060100000000000e+00 +-1.063200000000000e+00 +-9.924700000000000e-01 +-8.402600000000000e-01 +-6.198399999999999e-01 +-3.614900000000000e-01 +-1.004000000000000e-01 + 1.368300000000000e-01 + 3.389700000000000e-01 + 5.065700000000000e-01 + 6.414400000000000e-01 + 7.380400000000000e-01 + 7.839600000000000e-01 + 7.695000000000000e-01 + 6.983700000000000e-01 + 5.902600000000000e-01 + 4.719900000000000e-01 + 3.634500000000000e-01 + 2.688700000000000e-01 + 1.802000000000000e-01 + 8.910600000000000e-02 +-2.566200000000000e-03 +-8.258100000000000e-02 +-1.378300000000000e-01 +-1.645300000000000e-01 +-1.696300000000000e-01 +-1.622700000000000e-01 +-1.439400000000000e-01 +-1.076800000000000e-01 +-4.888500000000000e-02 + 2.132300000000000e-02 + 7.353600000000000e-02 + 7.392200000000000e-02 + 6.253800000000000e-03 +-1.147500000000000e-01 +-2.505800000000000e-01 +-3.626500000000000e-01 +-4.352000000000000e-01 +-4.791500000000000e-01 +-5.137900000000000e-01 +-5.405200000000000e-01 +-5.308100000000000e-01 +-4.400100000000000e-01 +-2.392500000000000e-01 + 5.701800000000000e-02 + 3.883300000000000e-01 + 6.737800000000000e-01 + 8.497300000000000e-01 + 8.963300000000000e-01 + 8.380100000000000e-01 + 7.211800000000000e-01 + 5.860700000000000e-01 + 4.500400000000000e-01 + 3.095100000000000e-01 + 1.541300000000000e-01 +-1.879400000000000e-02 +-1.987800000000000e-01 +-3.662500000000000e-01 +-5.010500000000000e-01 +-5.893500000000000e-01 +-6.262900000000000e-01 +-6.153300000000000e-01 +-5.667200000000000e-01 +-4.957500000000000e-01 +-4.206100000000000e-01 +-3.587300000000000e-01 +-3.220100000000000e-01 +-3.123600000000000e-01 +-3.195600000000000e-01 +-3.231500000000000e-01 +-2.987800000000000e-01 +-2.273300000000000e-01 +-1.032600000000000e-01 + 6.216300000000000e-02 + 2.452800000000000e-01 + 4.204800000000000e-01 + 5.709000000000000e-01 + 6.928000000000000e-01 + 7.908100000000000e-01 + 8.679300000000000e-01 + 9.182900000000001e-01 + 9.290700000000000e-01 + 8.904700000000000e-01 + 8.057600000000000e-01 + 6.924700000000000e-01 + 5.721200000000000e-01 + 4.554400000000000e-01 + 3.340100000000000e-01 + 1.854400000000000e-01 +-1.112900000000000e-02 +-2.595000000000000e-01 +-5.410400000000000e-01 +-8.213700000000000e-01 +-1.063100000000000e+00 +-1.236200000000000e+00 +-1.321700000000000e+00 +-1.312400000000000e+00 +-1.214100000000000e+00 +-1.046900000000000e+00 +-8.442200000000000e-01 +-6.432500000000000e-01 +-4.704600000000000e-01 +-3.310400000000000e-01 +-2.108600000000000e-01 +-9.093300000000000e-02 + 3.624100000000000e-02 + 1.616000000000000e-01 + 2.703000000000000e-01 + 3.591700000000000e-01 + 4.447500000000000e-01 + 5.527700000000000e-01 + 6.955700000000000e-01 + 8.557600000000000e-01 + 9.912700000000000e-01 + 1.060600000000000e+00 + 1.050000000000000e+00 + 9.827800000000000e-01 + 9.012000000000000e-01 + 8.365300000000000e-01 + 7.881000000000000e-01 + 7.272100000000000e-01 + 6.212900000000000e-01 + 4.586400000000000e-01 + 2.551300000000000e-01 + 3.985300000000000e-02 +-1.668900000000000e-01 +-3.645800000000000e-01 +-5.647100000000000e-01 +-7.718900000000000e-01 +-9.701800000000000e-01 +-1.125400000000000e+00 +-1.201600000000000e+00 +-1.180200000000000e+00 +-1.069300000000000e+00 +-9.000899999999999e-01 +-7.150700000000000e-01 +-5.541800000000000e-01 +-4.439200000000000e-01 +-3.901900000000000e-01 +-3.763600000000000e-01 +-3.685500000000000e-01 +-3.291000000000000e-01 +-2.334700000000000e-01 +-8.150800000000000e-02 + 1.046300000000000e-01 + 2.945900000000000e-01 + 4.658300000000000e-01 + 6.094800000000000e-01 + 7.231400000000000e-01 + 7.994000000000000e-01 + 8.233000000000000e-01 + 7.838000000000001e-01 + 6.901800000000000e-01 + 5.770600000000000e-01 + 4.893000000000000e-01 + 4.551300000000000e-01 + 4.679600000000000e-01 + 4.923900000000000e-01 + 4.911800000000000e-01 + 4.520200000000000e-01 + 3.922700000000000e-01 + 3.380400000000000e-01 + 2.956800000000000e-01 + 2.412900000000000e-01 + 1.387700000000000e-01 +-2.760400000000000e-02 +-2.335700000000000e-01 +-4.260800000000000e-01 +-5.576600000000000e-01 +-6.166700000000001e-01 +-6.296100000000000e-01 +-6.347900000000000e-01 +-6.506300000000000e-01 +-6.656400000000000e-01 +-6.574300000000000e-01 +-6.223400000000000e-01 +-5.874600000000000e-01 +-5.915400000000000e-01 +-6.490600000000000e-01 +-7.272900000000000e-01 +-7.576400000000000e-01 +-6.755500000000000e-01 +-4.608100000000000e-01 +-1.499500000000000e-01 + 1.858700000000000e-01 + 4.793000000000000e-01 + 6.941800000000000e-01 + 8.273900000000000e-01 + 8.917100000000000e-01 + 8.984200000000000e-01 + 8.527800000000000e-01 + 7.606900000000000e-01 + 6.349200000000000e-01 + 4.929300000000000e-01 + 3.492100000000000e-01 + 2.117500000000000e-01 + 8.739800000000000e-02 +-9.918500000000000e-03 +-5.921100000000000e-02 +-4.479700000000000e-02 + 2.767800000000000e-02 + 1.265200000000000e-01 + 2.077900000000000e-01 + 2.391400000000000e-01 + 2.155000000000000e-01 + 1.544900000000000e-01 + 7.663100000000000e-02 +-1.153300000000000e-02 +-1.164600000000000e-01 +-2.405600000000000e-01 +-3.667000000000000e-01 +-4.613200000000000e-01 +-4.965900000000000e-01 +-4.733500000000000e-01 +-4.237300000000000e-01 +-3.883700000000000e-01 +-3.853900000000000e-01 +-3.967800000000000e-01 +-3.843700000000000e-01 +-3.229000000000000e-01 +-2.229600000000000e-01 +-1.245100000000000e-01 +-6.573800000000000e-02 +-5.281900000000000e-02 +-5.500600000000000e-02 +-2.870900000000000e-02 + 4.918200000000000e-02 + 1.648700000000000e-01 + 2.792800000000000e-01 + 3.560800000000000e-01 + 3.830300000000000e-01 + 3.720200000000000e-01 + 3.424300000000000e-01 + 3.051000000000000e-01 + 2.601900000000000e-01 + 2.072000000000000e-01 + 1.538500000000000e-01 + 1.130400000000000e-01 + 9.071899999999999e-02 + 7.727900000000000e-02 + 5.294800000000000e-02 + 3.913200000000000e-03 +-6.494500000000000e-02 +-1.328200000000000e-01 +-1.795300000000000e-01 +-2.011800000000000e-01 +-2.105200000000000e-01 +-2.210800000000000e-01 +-2.294400000000000e-01 +-2.124400000000000e-01 +-1.436200000000000e-01 +-1.645500000000000e-02 + 1.448600000000000e-01 + 2.962600000000000e-01 + 3.982400000000000e-01 + 4.353900000000000e-01 + 4.181100000000000e-01 + 3.685500000000000e-01 + 3.047100000000000e-01 + 2.346800000000000e-01 + 1.617400000000000e-01 + 9.035899999999999e-02 + 2.450800000000000e-02 +-4.023600000000000e-02 +-1.206700000000000e-01 +-2.378600000000000e-01 +-4.002900000000000e-01 +-5.911600000000000e-01 +-7.715700000000000e-01 +-8.982599999999999e-01 +-9.429800000000000e-01 +-8.994000000000000e-01 +-7.753800000000000e-01 +-5.812600000000000e-01 +-3.273900000000000e-01 +-3.306200000000000e-02 + 2.645900000000000e-01 + 5.159700000000000e-01 + 6.807000000000000e-01 + 7.508800000000000e-01 + 7.557700000000001e-01 + 7.405000000000000e-01 + 7.327200000000000e-01 + 7.230000000000000e-01 + 6.757000000000000e-01 + 5.625800000000000e-01 + 3.924200000000000e-01 + 2.120600000000000e-01 + 7.663499999999999e-02 + 1.191200000000000e-02 +-1.826200000000000e-03 +-1.212600000000000e-02 +-5.747000000000000e-02 +-1.404000000000000e-01 +-2.307200000000000e-01 +-2.939000000000000e-01 +-3.201800000000000e-01 +-3.307100000000000e-01 +-3.570900000000000e-01 +-4.125600000000000e-01 +-4.786400000000000e-01 +-5.177700000000000e-01 +-5.011200000000000e-01 +-4.295600000000000e-01 +-3.327500000000000e-01 +-2.485600000000000e-01 +-1.990900000000000e-01 +-1.796600000000000e-01 +-1.656800000000000e-01 +-1.295800000000000e-01 +-5.527300000000000e-02 + 5.711000000000000e-02 + 1.953100000000000e-01 + 3.421900000000000e-01 + 4.814200000000000e-01 + 5.998599999999999e-01 + 6.873600000000000e-01 + 7.345500000000000e-01 + 7.302600000000000e-01 + 6.611300000000000e-01 + 5.169600000000000e-01 + 3.015400000000000e-01 + 4.300800000000000e-02 +-2.063800000000000e-01 +-3.868200000000000e-01 +-4.584000000000000e-01 +-4.231600000000000e-01 +-3.255200000000000e-01 +-2.274400000000000e-01 +-1.729400000000000e-01 +-1.654600000000000e-01 +-1.733200000000000e-01 +-1.586300000000000e-01 +-1.075400000000000e-01 +-3.943900000000000e-02 + 1.056200000000000e-02 + 2.092300000000000e-02 + 9.958400000000000e-04 +-1.676400000000000e-02 +-2.700800000000000e-03 + 4.685100000000000e-02 + 1.065200000000000e-01 + 1.397100000000000e-01 + 1.220100000000000e-01 + 5.279100000000000e-02 +-5.107800000000000e-02 +-1.701100000000000e-01 +-2.914400000000000e-01 +-4.056900000000000e-01 +-4.976000000000000e-01 +-5.425600000000000e-01 +-5.155800000000000e-01 +-4.069700000000000e-01 +-2.320900000000000e-01 +-2.601600000000000e-02 + 1.738800000000000e-01 + 3.453100000000000e-01 + 4.863000000000000e-01 + 6.060300000000000e-01 + 7.094200000000001e-01 + 7.871800000000000e-01 + 8.178800000000001e-01 + 7.795400000000000e-01 + 6.627100000000000e-01 + 4.778600000000000e-01 + 2.543500000000000e-01 + 3.247000000000000e-02 +-1.483800000000000e-01 +-2.621600000000000e-01 +-3.051800000000000e-01 +-2.973200000000000e-01 +-2.728000000000000e-01 +-2.632900000000000e-01 +-2.820200000000000e-01 +-3.188500000000000e-01 +-3.502000000000000e-01 +-3.575100000000000e-01 +-3.414400000000000e-01 +-3.213000000000000e-01 +-3.202900000000000e-01 +-3.477300000000000e-01 +-3.916800000000000e-01 +-4.268900000000000e-01 +-4.311200000000000e-01 +-3.967700000000000e-01 +-3.297300000000000e-01 +-2.387600000000000e-01 +-1.264200000000000e-01 + 9.768100000000000e-03 + 1.670300000000000e-01 + 3.284200000000000e-01 + 4.651800000000000e-01 + 5.509800000000000e-01 + 5.780500000000000e-01 + 5.623300000000000e-01 + 5.329000000000000e-01 + 5.128000000000000e-01 + 5.047199999999999e-01 + 4.912500000000000e-01 + 4.483900000000000e-01 + 3.619600000000000e-01 + 2.363800000000000e-01 + 9.171700000000001e-02 +-4.627000000000000e-02 +-1.558900000000000e-01 +-2.246900000000000e-01 +-2.507800000000000e-01 +-2.427700000000000e-01 +-2.186600000000000e-01 +-2.014300000000000e-01 +-2.097800000000000e-01 +-2.472500000000000e-01 +-2.967600000000000e-01 +-3.265400000000000e-01 +-3.065200000000000e-01 +-2.266900000000000e-01 +-1.059000000000000e-01 + 1.481900000000000e-02 + 9.099699999999999e-02 + 9.481900000000000e-02 + 2.592300000000000e-02 +-9.118900000000001e-02 +-2.192600000000000e-01 +-3.222100000000000e-01 +-3.747600000000000e-01 +-3.663700000000000e-01 +-3.009900000000000e-01 +-1.945700000000000e-01 +-7.032900000000000e-02 + 4.834200000000000e-02 + 1.461000000000000e-01 + 2.211600000000000e-01 + 2.841600000000000e-01 + 3.497700000000000e-01 + 4.249900000000000e-01 + 5.013300000000001e-01 + 5.561500000000000e-01 + 5.631500000000000e-01 + 5.060400000000000e-01 + 3.873600000000000e-01 + 2.272700000000000e-01 + 5.354900000000000e-02 +-1.102800000000000e-01 +-2.513400000000000e-01 +-3.649000000000000e-01 +-4.464800000000000e-01 +-4.862100000000000e-01 +-4.711800000000000e-01 +-3.954600000000000e-01 +-2.699700000000000e-01 +-1.233900000000000e-01 + 9.645500000000000e-03 + 1.065900000000000e-01 + 1.690700000000000e-01 + 2.189200000000000e-01 + 2.791700000000000e-01 + 3.528100000000000e-01 + 4.154300000000000e-01 + 4.290000000000000e-01 + 3.685600000000000e-01 + 2.425600000000000e-01 + 9.073600000000000e-02 +-4.081700000000000e-02 +-1.303200000000000e-01 +-1.940400000000000e-01 +-2.716700000000000e-01 +-3.929000000000000e-01 +-5.490600000000000e-01 +-6.912500000000000e-01 +-7.575499999999999e-01 +-7.110900000000000e-01 +-5.628300000000001e-01 +-3.641300000000000e-01 +-1.751100000000000e-01 +-3.103900000000000e-02 + 7.162700000000000e-02 + 1.629900000000000e-01 + 2.725700000000000e-01 + 4.066300000000000e-01 + 5.434300000000000e-01 + 6.462100000000000e-01 + 6.830200000000000e-01 + 6.412400000000000e-01 + 5.308100000000000e-01 + 3.777500000000000e-01 + 2.134700000000000e-01 + 6.494600000000000e-02 +-5.156200000000000e-02 +-1.315200000000000e-01 +-1.777900000000000e-01 +-1.931300000000000e-01 +-1.744900000000000e-01 +-1.143700000000000e-01 +-1.021800000000000e-02 + 1.243900000000000e-01 + 2.566200000000000e-01 + 3.452500000000000e-01 + 3.606100000000000e-01 + 3.002800000000000e-01 + 1.879400000000000e-01 + 5.514000000000000e-02 +-8.056099999999999e-02 +-2.231800000000000e-01 +-3.845900000000000e-01 +-5.603800000000000e-01 +-7.167600000000000e-01 +-8.032300000000000e-01 +-7.851800000000000e-01 +-6.728499999999999e-01 +-5.222900000000000e-01 +-4.035700000000000e-01 +-3.562000000000000e-01 +-3.625200000000000e-01 +-3.583800000000000e-01 +-2.739100000000000e-01 +-7.662099999999999e-02 + 2.109000000000000e-01 + 5.268500000000000e-01 + 8.042500000000000e-01 + 9.984800000000000e-01 + 1.093600000000000e+00 + 1.091500000000000e+00 + 1.000200000000000e+00 + 8.323700000000001e-01 + 6.128600000000000e-01 + 3.822500000000000e-01 + 1.865700000000000e-01 + 5.659500000000000e-02 +-9.084399999999999e-03 +-4.372400000000000e-02 +-9.345199999999999e-02 +-1.918400000000000e-01 +-3.438200000000000e-01 +-5.267300000000000e-01 +-7.038500000000000e-01 +-8.397100000000000e-01 +-9.090800000000000e-01 +-9.001000000000000e-01 +-8.153100000000000e-01 +-6.723800000000000e-01 +-5.012600000000000e-01 +-3.338500000000000e-01 +-1.890900000000000e-01 +-6.301100000000000e-02 + 6.668399999999999e-02 + 2.215000000000000e-01 + 4.009700000000000e-01 + 5.756500000000000e-01 + 7.017500000000000e-01 + 7.481900000000000e-01 + 7.168900000000000e-01 + 6.410500000000000e-01 + 5.629000000000000e-01 + 5.073200000000000e-01 + 4.703900000000000e-01 + 4.288700000000000e-01 + 3.607700000000000e-01 + 2.595900000000000e-01 + 1.331500000000000e-01 +-8.105599999999999e-03 +-1.595000000000000e-01 +-3.186200000000000e-01 +-4.743000000000000e-01 +-6.016400000000000e-01 +-6.718900000000000e-01 +-6.723400000000000e-01 +-6.196700000000001e-01 +-5.528900000000000e-01 +-5.077300000000000e-01 +-4.902500000000000e-01 +-4.708100000000000e-01 +-4.049400000000000e-01 +-2.675000000000000e-01 +-7.507000000000000e-02 + 1.202900000000000e-01 + 2.624100000000000e-01 + 3.256400000000000e-01 + 3.290100000000000e-01 + 3.211900000000000e-01 + 3.477500000000000e-01 + 4.229900000000000e-01 + 5.232000000000000e-01 + 6.028500000000000e-01 + 6.208800000000000e-01 + 5.610200000000000e-01 + 4.367500000000000e-01 + 2.817900000000000e-01 + 1.334400000000000e-01 + 1.673000000000000e-02 +-6.512900000000001e-02 +-1.307900000000000e-01 +-2.103300000000000e-01 +-3.269100000000000e-01 +-4.781000000000000e-01 +-6.280400000000000e-01 +-7.181999999999999e-01 +-6.946400000000000e-01 +-5.378100000000000e-01 +-2.770600000000000e-01 + 2.048700000000000e-02 + 2.809600000000000e-01 + 4.560200000000000e-01 + 5.373800000000000e-01 + 5.468800000000000e-01 + 5.126300000000000e-01 + 4.494800000000000e-01 + 3.569200000000000e-01 + 2.324000000000000e-01 + 8.662100000000000e-02 +-5.329000000000000e-02 +-1.558400000000000e-01 +-2.033000000000000e-01 +-2.023100000000000e-01 +-1.797100000000000e-01 +-1.673800000000000e-01 +-1.867000000000000e-01 +-2.411600000000000e-01 +-3.185400000000000e-01 +-3.977000000000000e-01 +-4.552900000000000e-01 +-4.712900000000000e-01 +-4.351100000000000e-01 +-3.515600000000000e-01 +-2.423000000000000e-01 +-1.377500000000000e-01 +-6.067200000000000e-02 +-1.076400000000000e-02 + 3.732800000000000e-02 + 1.175700000000000e-01 + 2.465200000000000e-01 + 4.061600000000000e-01 + 5.498600000000000e-01 + 6.301700000000000e-01 + 6.295400000000000e-01 + 5.715300000000000e-01 + 5.029200000000000e-01 + 4.590600000000000e-01 + 4.381900000000000e-01 + 4.043500000000000e-01 + 3.172900000000000e-01 + 1.667100000000000e-01 +-1.532000000000000e-02 +-1.737300000000000e-01 +-2.670500000000000e-01 +-2.935500000000000e-01 +-2.876200000000000e-01 +-2.902100000000000e-01 +-3.168600000000000e-01 +-3.483100000000000e-01 +-3.499400000000000e-01 +-3.039400000000000e-01 +-2.279800000000000e-01 +-1.658200000000000e-01 +-1.568400000000000e-01 +-2.079900000000000e-01 +-2.884700000000000e-01 +-3.497500000000000e-01 +-3.547300000000000e-01 +-2.949500000000000e-01 +-1.867100000000000e-01 +-5.378900000000000e-02 + 8.661800000000000e-02 + 2.243400000000000e-01 + 3.467600000000000e-01 + 4.323800000000000e-01 + 4.566800000000000e-01 + 4.072100000000000e-01 + 2.950300000000000e-01 + 1.512200000000000e-01 + 1.003600000000000e-02 +-1.085000000000000e-01 +-2.025900000000000e-01 +-2.767700000000000e-01 +-3.254300000000000e-01 +-3.275300000000000e-01 +-2.588600000000000e-01 +-1.132400000000000e-01 + 8.491899999999999e-02 + 2.881300000000000e-01 + 4.495500000000000e-01 + 5.460300000000000e-01 + 5.838500000000000e-01 + 5.841300000000000e-01 + 5.602600000000000e-01 + 5.051700000000000e-01 + 3.976800000000000e-01 + 2.220700000000000e-01 +-1.491400000000000e-02 +-2.818500000000000e-01 +-5.355799999999999e-01 +-7.383500000000000e-01 +-8.673000000000000e-01 +-9.127400000000000e-01 +-8.714100000000000e-01 +-7.439900000000000e-01 +-5.396500000000000e-01 +-2.824200000000000e-01 +-1.061100000000000e-02 + 2.338500000000000e-01 + 4.206800000000000e-01 + 5.409300000000000e-01 + 6.048600000000000e-01 + 6.303400000000000e-01 + 6.306400000000000e-01 + 6.095600000000000e-01 + 5.645600000000000e-01 + 4.925900000000000e-01 + 3.927300000000000e-01 + 2.649500000000000e-01 + 1.094400000000000e-01 +-6.956400000000000e-02 +-2.571400000000000e-01 +-4.253100000000000e-01 +-5.410100000000000e-01 +-5.826000000000000e-01 +-5.545700000000000e-01 +-4.885500000000000e-01 +-4.272000000000000e-01 +-3.998100000000000e-01 +-4.057600000000000e-01 +-4.169500000000000e-01 +-3.977400000000000e-01 +-3.280900000000000e-01 +-2.143800000000000e-01 +-8.177700000000000e-02 + 4.441700000000000e-02 + 1.535300000000000e-01 + 2.503900000000000e-01 + 3.437700000000000e-01 + 4.334400000000000e-01 + 5.067900000000000e-01 + 5.471600000000000e-01 + 5.462500000000000e-01 + 5.101200000000000e-01 + 4.545000000000000e-01 + 3.942600000000000e-01 + 3.361700000000000e-01 + 2.805300000000000e-01 + 2.286200000000000e-01 + 1.877000000000000e-01 + 1.674900000000000e-01 + 1.703200000000000e-01 + 1.833000000000000e-01 + 1.807800000000000e-01 + 1.370000000000000e-01 + 4.085300000000000e-02 +-9.772800000000000e-02 +-2.540900000000000e-01 +-4.026800000000000e-01 +-5.282300000000000e-01 +-6.272100000000000e-01 +-7.010000000000000e-01 +-7.486400000000000e-01 +-7.660200000000000e-01 +-7.514800000000000e-01 +-7.107400000000000e-01 +-6.543300000000000e-01 +-5.876700000000000e-01 +-5.018700000000000e-01 +-3.750700000000000e-01 +-1.866100000000000e-01 + 6.453600000000000e-02 + 3.506800000000000e-01 + 6.240200000000000e-01 + 8.385800000000000e-01 + 9.707200000000000e-01 + 1.024300000000000e+00 + 1.018200000000000e+00 + 9.662700000000000e-01 + 8.681300000000000e-01 + 7.155400000000000e-01 + 5.102900000000000e-01 + 2.760200000000000e-01 + 5.209000000000000e-02 +-1.281400000000000e-01 +-2.584300000000000e-01 +-3.625500000000000e-01 +-4.742200000000000e-01 +-6.073000000000000e-01 +-7.382500000000000e-01 +-8.154100000000000e-01 +-7.902100000000000e-01 +-6.493100000000001e-01 +-4.251500000000000e-01 +-1.777800000000000e-01 + 3.884200000000000e-02 + 2.026700000000000e-01 + 3.246800000000000e-01 + 4.273600000000000e-01 + 5.187400000000000e-01 + 5.821000000000000e-01 + 5.881400000000000e-01 + 5.188400000000000e-01 + 3.839100000000000e-01 + 2.169200000000000e-01 + 5.464900000000000e-02 +-8.454000000000000e-02 +-2.071700000000000e-01 +-3.321900000000000e-01 +-4.700300000000000e-01 +-6.094400000000000e-01 +-7.213800000000000e-01 +-7.758600000000000e-01 +-7.583800000000001e-01 +-6.742100000000000e-01 +-5.391700000000000e-01 +-3.664700000000000e-01 +-1.613100000000000e-01 + 7.251600000000000e-02 + 3.206600000000000e-01 + 5.527700000000000e-01 + 7.308000000000000e-01 + 8.270100000000000e-01 + 8.393400000000000e-01 + 7.921300000000000e-01 + 7.207800000000000e-01 + 6.500000000000000e-01 + 5.807300000000000e-01 + 4.941000000000000e-01 + 3.691500000000000e-01 + 2.012400000000000e-01 + 8.331399999999999e-03 +-1.782500000000000e-01 +-3.307400000000000e-01 +-4.370100000000000e-01 +-4.999600000000000e-01 +-5.271200000000000e-01 +-5.206200000000000e-01 +-4.763300000000000e-01 +-3.929100000000000e-01 +-2.823800000000000e-01 +-1.722900000000000e-01 +-9.594000000000000e-02 +-7.688200000000001e-02 +-1.183300000000000e-01 +-2.044300000000000e-01 +-3.108000000000000e-01 +-4.151900000000000e-01 +-4.999700000000000e-01 +-5.467700000000000e-01 +-5.315500000000000e-01 +-4.288300000000000e-01 +-2.261000000000000e-01 + 6.083200000000000e-02 + 3.847500000000000e-01 + 6.821000000000000e-01 + 8.994500000000000e-01 + 1.015100000000000e+00 + 1.042100000000000e+00 + 1.010000000000000e+00 + 9.404600000000000e-01 + 8.316200000000000e-01 + 6.639200000000000e-01 + 4.217700000000000e-01 + 1.154100000000000e-01 +-2.130900000000000e-01 +-5.042700000000000e-01 +-7.074100000000000e-01 +-8.018900000000000e-01 +-8.018400000000000e-01 +-7.428500000000000e-01 +-6.607499999999999e-01 +-5.750900000000000e-01 +-4.857400000000000e-01 +-3.817700000000000e-01 +-2.550700000000000e-01 +-1.097900000000000e-01 + 3.727600000000000e-02 + 1.643600000000000e-01 + 2.548700000000000e-01 + 3.037200000000000e-01 + 3.164700000000000e-01 + 3.027800000000000e-01 + 2.695400000000000e-01 + 2.189600000000000e-01 + 1.531700000000000e-01 + 8.112000000000000e-02 + 2.067000000000000e-02 +-8.398400000000000e-03 + 2.322300000000000e-03 + 3.986500000000000e-02 + 7.267200000000000e-02 + 6.760800000000000e-02 + 1.157500000000000e-02 +-7.732300000000000e-02 +-1.583800000000000e-01 +-1.922200000000000e-01 +-1.638000000000000e-01 +-8.816400000000001e-02 + 4.519300000000000e-03 + 9.225500000000000e-02 + 1.736000000000000e-01 + 2.590200000000000e-01 + 3.490100000000000e-01 + 4.189100000000000e-01 + 4.264300000000000e-01 + 3.393600000000000e-01 + 1.631800000000000e-01 +-5.407100000000000e-02 +-2.463400000000000e-01 +-3.672100000000000e-01 +-4.135400000000000e-01 +-4.181100000000000e-01 +-4.179900000000000e-01 +-4.239200000000000e-01 +-4.145700000000000e-01 +-3.589700000000000e-01 +-2.477800000000000e-01 +-1.071200000000000e-01 + 1.644300000000000e-02 + 8.741100000000000e-02 + 1.040500000000000e-01 + 9.452000000000001e-02 + 9.103000000000000e-02 + 1.043900000000000e-01 + 1.198800000000000e-01 + 1.166000000000000e-01 + 9.216100000000001e-02 + 7.012699999999999e-02 + 8.245200000000000e-02 + 1.411900000000000e-01 + 2.237900000000000e-01 + 2.860300000000000e-01 + 2.943600000000000e-01 + 2.528100000000000e-01 + 2.030100000000000e-01 + 1.959700000000000e-01 + 2.555000000000000e-01 + 3.594100000000000e-01 + 4.512100000000000e-01 + 4.729800000000000e-01 + 3.966100000000000e-01 + 2.340900000000000e-01 + 2.389600000000000e-02 +-1.932400000000000e-01 +-3.920300000000000e-01 +-5.646200000000000e-01 +-7.105900000000001e-01 +-8.257400000000000e-01 +-8.979300000000000e-01 +-9.113500000000000e-01 +-8.540600000000000e-01 +-7.239800000000000e-01 +-5.308600000000000e-01 +-2.951500000000000e-01 +-4.486800000000000e-02 + 1.894800000000000e-01 + 3.815500000000000e-01 + 5.156400000000000e-01 + 5.897900000000000e-01 + 6.138100000000000e-01 + 6.036300000000000e-01 + 5.754700000000000e-01 + 5.428500000000001e-01 + 5.155400000000000e-01 + 4.975200000000000e-01 + 4.827900000000000e-01 + 4.523400000000000e-01 + 3.781700000000000e-01 + 2.368700000000000e-01 + 2.739500000000000e-02 +-2.190300000000000e-01 +-4.467200000000000e-01 +-6.000400000000000e-01 +-6.510400000000000e-01 +-6.122800000000000e-01 +-5.257700000000000e-01 +-4.349800000000000e-01 +-3.591500000000000e-01 +-2.872200000000000e-01 +-1.947000000000000e-01 +-6.967000000000000e-02 + 7.188300000000000e-02 + 1.926800000000000e-01 + 2.574100000000000e-01 + 2.551600000000000e-01 + 2.052100000000000e-01 + 1.432800000000000e-01 + 9.970000000000000e-02 + 8.513000000000000e-02 + 9.216900000000000e-02 + 1.081100000000000e-01 + 1.268600000000000e-01 + 1.508700000000000e-01 + 1.839200000000000e-01 + 2.232800000000000e-01 + 2.593700000000000e-01 + 2.829700000000000e-01 + 2.925500000000000e-01 + 2.936900000000000e-01 + 2.895600000000000e-01 + 2.706900000000000e-01 + 2.141100000000000e-01 + 9.590799999999999e-02 +-8.989300000000000e-02 +-3.196100000000000e-01 +-5.453200000000000e-01 +-7.160100000000000e-01 +-8.017400000000000e-01 +-8.056800000000000e-01 +-7.568400000000000e-01 +-6.890800000000000e-01 +-6.209600000000000e-01 +-5.488200000000000e-01 +-4.558800000000000e-01 +-3.287900000000000e-01 +-1.690600000000000e-01 + 7.788800000000000e-03 + 1.828800000000000e-01 + 3.448800000000000e-01 + 4.927000000000000e-01 + 6.289600000000000e-01 + 7.507000000000000e-01 + 8.456500000000000e-01 + 8.974299999999999e-01 + 8.956100000000000e-01 + 8.424100000000000e-01 + 7.511400000000000e-01 + 6.377100000000000e-01 + 5.120300000000000e-01 + 3.757100000000000e-01 + 2.270400000000000e-01 + 6.835800000000000e-02 +-9.021400000000000e-02 +-2.334100000000000e-01 +-3.471600000000000e-01 +-4.236900000000000e-01 +-4.623400000000000e-01 +-4.674200000000000e-01 +-4.463400000000000e-01 +-4.097300000000000e-01 +-3.719900000000000e-01 +-3.490900000000000e-01 +-3.528200000000000e-01 +-3.846900000000000e-01 +-4.345600000000000e-01 +-4.857400000000000e-01 +-5.233700000000000e-01 +-5.395799999999999e-01 +-5.318600000000000e-01 +-4.973200000000000e-01 +-4.299000000000000e-01 +-3.251400000000000e-01 +-1.899600000000000e-01 +-4.797200000000000e-02 + 6.755800000000001e-02 + 1.320600000000000e-01 + 1.477300000000000e-01 + 1.473800000000000e-01 + 1.787800000000000e-01 + 2.782200000000000e-01 + 4.505000000000000e-01 + 6.684300000000000e-01 + 8.907000000000000e-01 + 1.083800000000000e+00 + 1.231500000000000e+00 + 1.327500000000000e+00 + 1.359300000000000e+00 + 1.300500000000000e+00 + 1.120800000000000e+00 + 8.074600000000000e-01 + 3.829500000000000e-01 +-9.573000000000000e-02 +-5.566100000000000e-01 +-9.392500000000000e-01 +-1.211900000000000e+00 +-1.371200000000000e+00 +-1.429000000000000e+00 +-1.398000000000000e+00 +-1.286600000000000e+00 +-1.102600000000000e+00 +-8.610900000000000e-01 +-5.877200000000000e-01 +-3.172100000000000e-01 +-8.683500000000000e-02 + 7.096000000000000e-02 + 1.364500000000000e-01 + 1.104100000000000e-01 + 1.927000000000000e-02 +-8.746000000000000e-02 +-1.510300000000000e-01 +-1.253500000000000e-01 + 3.585500000000000e-03 + 2.124500000000000e-01 + 4.534300000000000e-01 + 6.773500000000000e-01 + 8.524900000000000e-01 + 9.685100000000000e-01 + 1.026800000000000e+00 + 1.029000000000000e+00 + 9.737000000000000e-01 + 8.641900000000000e-01 + 7.154500000000000e-01 + 5.510699999999999e-01 + 3.883800000000000e-01 + 2.237800000000000e-01 + 3.315200000000000e-02 +-2.082300000000000e-01 +-4.982300000000000e-01 +-7.941300000000000e-01 +-1.026100000000000e+00 +-1.132000000000000e+00 +-1.092100000000000e+00 +-9.388400000000000e-01 +-7.384300000000000e-01 +-5.550400000000000e-01 +-4.233100000000000e-01 +-3.433400000000000e-01 +-2.956900000000000e-01 +-2.601300000000000e-01 +-2.239200000000000e-01 +-1.774600000000000e-01 +-1.078800000000000e-01 +-1.070900000000000e-03 + 1.471600000000000e-01 + 3.212500000000000e-01 + 4.889600000000000e-01 + 6.180000000000000e-01 + 6.948700000000000e-01 + 7.303300000000000e-01 + 7.465700000000000e-01 + 7.553200000000000e-01 + 7.448900000000001e-01 + 6.870000000000001e-01 + 5.591200000000000e-01 + 3.651000000000000e-01 + 1.383000000000000e-01 +-7.545700000000000e-02 +-2.423600000000000e-01 +-3.548100000000000e-01 +-4.264500000000000e-01 +-4.737200000000000e-01 +-4.995200000000000e-01 +-4.910600000000000e-01 +-4.324700000000000e-01 +-3.214300000000000e-01 +-1.769100000000000e-01 +-3.300900000000000e-02 + 7.605099999999999e-02 + 1.294900000000000e-01 + 1.245200000000000e-01 + 7.174200000000000e-02 +-1.311000000000000e-02 +-1.152300000000000e-01 +-2.224700000000000e-01 +-3.242800000000000e-01 +-4.102400000000000e-01 +-4.694100000000000e-01 +-4.900800000000000e-01 +-4.600400000000000e-01 +-3.686900000000000e-01 +-2.119500000000000e-01 + 9.049800000000000e-04 + 2.427600000000000e-01 + 4.710000000000000e-01 + 6.383799999999999e-01 + 7.088700000000000e-01 + 6.711400000000000e-01 + 5.428900000000000e-01 + 3.642200000000000e-01 + 1.835700000000000e-01 + 4.300200000000000e-02 +-3.164800000000000e-02 +-3.408900000000000e-02 + 2.413800000000000e-02 + 1.178600000000000e-01 + 2.137700000000000e-01 + 2.775000000000000e-01 + 2.820700000000000e-01 + 2.161600000000000e-01 + 8.840600000000000e-02 +-7.498900000000000e-02 +-2.395000000000000e-01 +-3.746100000000000e-01 +-4.635400000000000e-01 +-5.056500000000000e-01 +-5.112200000000000e-01 +-4.922900000000000e-01 +-4.550200000000000e-01 +-3.978300000000000e-01 +-3.152600000000000e-01 +-2.042900000000000e-01 +-6.884400000000000e-02 + 7.957300000000000e-02 + 2.244200000000000e-01 + 3.473700000000000e-01 + 4.306800000000000e-01 + 4.593600000000000e-01 + 4.247600000000000e-01 + 3.299000000000000e-01 + 1.939300000000000e-01 + 5.107000000000000e-02 +-5.850500000000000e-02 +-1.037500000000000e-01 +-7.659600000000000e-02 + 3.481400000000000e-03 + 9.763700000000000e-02 + 1.649200000000000e-01 + 1.794700000000000e-01 + 1.389000000000000e-01 + 6.089200000000000e-02 +-2.826300000000000e-02 +-1.054500000000000e-01 +-1.572100000000000e-01 +-1.797500000000000e-01 +-1.757000000000000e-01 +-1.511400000000000e-01 +-1.144400000000000e-01 +-7.581100000000000e-02 +-4.609100000000000e-02 +-3.461300000000000e-02 +-4.720700000000000e-02 +-8.536000000000001e-02 +-1.461600000000000e-01 +-2.221200000000000e-01 +-3.007500000000000e-01 +-3.655400000000000e-01 +-3.997300000000000e-01 +-3.921500000000000e-01 +-3.416900000000000e-01 +-2.563100000000000e-01 +-1.463900000000000e-01 +-1.682200000000000e-02 + 1.352300000000000e-01 + 3.138800000000000e-01 + 5.133000000000000e-01 + 7.108500000000000e-01 + 8.716900000000000e-01 + 9.638900000000000e-01 + 9.741800000000000e-01 + 9.128900000000000e-01 + 8.041500000000000e-01 + 6.681500000000000e-01 + 5.088400000000000e-01 + 3.161700000000000e-01 + 8.081099999999999e-02 +-1.902800000000000e-01 +-4.695500000000000e-01 +-7.187700000000000e-01 +-9.055200000000000e-01 +-1.014100000000000e+00 +-1.044600000000000e+00 +-1.004300000000000e+00 +-9.005000000000000e-01 +-7.414900000000000e-01 +-5.427500000000000e-01 +-3.301400000000000e-01 +-1.335300000000000e-01 + 2.625500000000000e-02 + 1.470600000000000e-01 + 2.424100000000000e-01 + 3.265800000000000e-01 + 3.985500000000000e-01 + 4.378700000000000e-01 + 4.170500000000000e-01 + 3.223700000000000e-01 + 1.679000000000000e-01 +-7.979000000000000e-03 +-1.615600000000000e-01 +-2.652100000000000e-01 +-3.166700000000000e-01 +-3.306900000000000e-01 +-3.206400000000000e-01 +-2.836700000000000e-01 +-2.004300000000000e-01 +-4.919600000000000e-02 + 1.752500000000000e-01 + 4.503100000000000e-01 + 7.289600000000001e-01 + 9.560800000000000e-01 + 1.088500000000000e+00 + 1.109400000000000e+00 + 1.029600000000000e+00 + 8.785800000000000e-01 + 6.889000000000000e-01 + 4.837400000000000e-01 + 2.728600000000000e-01 + 5.760400000000000e-02 +-1.597900000000000e-01 +-3.698000000000000e-01 +-5.570200000000000e-01 +-7.080500000000000e-01 +-8.193400000000000e-01 +-8.978500000000000e-01 +-9.531400000000000e-01 +-9.866600000000000e-01 +-9.876200000000001e-01 +-9.404800000000000e-01 +-8.396800000000000e-01 +-6.999800000000000e-01 +-5.525300000000000e-01 +-4.266800000000000e-01 +-3.294200000000000e-01 +-2.378100000000000e-01 +-1.121500000000000e-01 + 7.728400000000001e-02 + 3.271900000000000e-01 + 5.974699999999999e-01 + 8.296100000000000e-01 + 9.752900000000000e-01 + 1.017300000000000e+00 + 9.710900000000000e-01 + 8.699500000000000e-01 + 7.444600000000000e-01 + 6.107500000000000e-01 + 4.712500000000000e-01 + 3.235100000000000e-01 + 1.687100000000000e-01 + 1.458300000000000e-02 +-1.266000000000000e-01 +-2.412300000000000e-01 +-3.167200000000000e-01 +-3.440500000000000e-01 +-3.221000000000000e-01 +-2.625500000000000e-01 +-1.908000000000000e-01 +-1.388200000000000e-01 +-1.308400000000000e-01 +-1.693000000000000e-01 +-2.302300000000000e-01 +-2.730200000000000e-01 +-2.604200000000000e-01 +-1.781700000000000e-01 +-4.341700000000000e-02 + 1.026000000000000e-01 + 2.130000000000000e-01 + 2.548700000000000e-01 + 2.208400000000000e-01 + 1.282500000000000e-01 + 8.485200000000000e-03 +-1.072000000000000e-01 +-1.986000000000000e-01 +-2.600200000000000e-01 +-2.961700000000000e-01 +-3.138000000000000e-01 +-3.144000000000000e-01 +-2.924000000000000e-01 +-2.399000000000000e-01 +-1.549900000000000e-01 +-4.798300000000000e-02 + 5.910600000000000e-02 + 1.404100000000000e-01 + 1.773500000000000e-01 + 1.669500000000000e-01 + 1.230200000000000e-01 + 7.014700000000000e-02 + 3.387600000000000e-02 + 3.153800000000000e-02 + 6.675200000000001e-02 + 1.286900000000000e-01 + 1.961900000000000e-01 + 2.460300000000000e-01 + 2.634000000000000e-01 + 2.502000000000000e-01 + 2.257600000000000e-01 + 2.172200000000000e-01 + 2.428900000000000e-01 + 2.978900000000000e-01 + 3.521100000000000e-01 + 3.639700000000000e-01 + 3.029500000000000e-01 + 1.674800000000000e-01 +-1.323200000000000e-02 +-1.941900000000000e-01 +-3.364700000000000e-01 +-4.222300000000000e-01 +-4.555700000000000e-01 +-4.522400000000000e-01 +-4.282600000000000e-01 +-3.948700000000000e-01 +-3.597800000000000e-01 +-3.284900000000000e-01 +-3.011300000000000e-01 +-2.671200000000000e-01 +-2.052700000000000e-01 +-9.443200000000000e-02 + 6.933900000000000e-02 + 2.611700000000000e-01 + 4.321300000000000e-01 + 5.304700000000000e-01 + 5.269700000000000e-01 + 4.279400000000000e-01 + 2.677700000000000e-01 + 8.729400000000000e-02 +-8.606999999999999e-02 +-2.433100000000000e-01 +-3.831800000000000e-01 +-4.972500000000000e-01 +-5.641200000000000e-01 +-5.578700000000000e-01 +-4.639100000000000e-01 +-2.902100000000000e-01 +-6.605900000000001e-02 + 1.695400000000000e-01 + 3.812300000000000e-01 + 5.447900000000000e-01 + 6.474700000000000e-01 + 6.851500000000000e-01 + 6.605100000000000e-01 + 5.827599999999999e-01 + 4.663100000000000e-01 + 3.271900000000000e-01 + 1.790900000000000e-01 + 3.287500000000000e-02 +-1.000400000000000e-01 +-2.042000000000000e-01 +-2.622800000000000e-01 +-2.640400000000000e-01 +-2.162100000000000e-01 +-1.446300000000000e-01 +-8.399500000000000e-02 +-6.056800000000000e-02 +-7.944400000000000e-02 +-1.255400000000000e-01 +-1.772500000000000e-01 +-2.220300000000000e-01 +-2.617800000000000e-01 +-3.047700000000000e-01 +-3.520300000000000e-01 +-3.905300000000000e-01 +-3.996400000000000e-01 +-3.660100000000000e-01 +-2.946100000000000e-01 +-2.073700000000000e-01 +-1.302000000000000e-01 +-7.849200000000001e-02 +-5.081500000000000e-02 +-3.339700000000000e-02 +-9.423200000000000e-03 + 3.448600000000000e-02 + 1.073300000000000e-01 + 2.148000000000000e-01 + 3.575700000000000e-01 + 5.265000000000000e-01 + 6.995400000000001e-01 + 8.452900000000000e-01 + 9.325900000000000e-01 + 9.400700000000000e-01 + 8.592900000000000e-01 + 6.918000000000000e-01 + 4.462200000000000e-01 + 1.413800000000000e-01 +-1.865900000000000e-01 +-4.830200000000000e-01 +-6.883800000000000e-01 +-7.645999999999999e-01 +-7.184800000000000e-01 +-6.033300000000000e-01 +-4.927400000000000e-01 +-4.400000000000000e-01 +-4.494700000000000e-01 +-4.792900000000000e-01 +-4.734000000000000e-01 +-3.997600000000000e-01 +-2.682600000000000e-01 +-1.181300000000000e-01 + 1.224700000000000e-02 + 1.081600000000000e-01 + 1.779300000000000e-01 + 2.335100000000000e-01 + 2.723100000000000e-01 + 2.774700000000000e-01 + 2.360100000000000e-01 + 1.573700000000000e-01 + 7.417100000000000e-02 + 2.238800000000000e-02 + 1.687200000000000e-02 + 4.282200000000000e-02 + 7.069900000000000e-02 + 8.193400000000001e-02 + 8.342700000000000e-02 + 9.853900000000000e-02 + 1.429400000000000e-01 + 2.072500000000000e-01 + 2.629400000000000e-01 + 2.871300000000000e-01 + 2.845400000000000e-01 + 2.851900000000000e-01 + 3.168300000000000e-01 + 3.734100000000000e-01 + 4.075100000000000e-01 + 3.574100000000000e-01 + 1.921600000000000e-01 +-5.844400000000000e-02 +-3.129600000000000e-01 +-4.829300000000000e-01 +-5.233000000000000e-01 +-4.547600000000000e-01 +-3.445300000000000e-01 +-2.613500000000000e-01 +-2.370600000000000e-01 +-2.588900000000000e-01 +-2.925200000000000e-01 +-3.137900000000000e-01 +-3.241600000000000e-01 +-3.409000000000000e-01 +-3.739300000000000e-01 +-4.106000000000000e-01 +-4.211500000000000e-01 +-3.795600000000000e-01 +-2.821200000000000e-01 +-1.484200000000000e-01 +-4.714300000000000e-03 + 1.362100000000000e-01 + 2.818700000000000e-01 + 4.475200000000000e-01 + 6.341599999999999e-01 + 8.144000000000000e-01 + 9.387300000000000e-01 + 9.595200000000000e-01 + 8.577200000000000e-01 + 6.549500000000000e-01 + 4.038100000000000e-01 + 1.631600000000000e-01 +-2.604500000000000e-02 +-1.511200000000000e-01 +-2.211500000000000e-01 +-2.517500000000000e-01 +-2.529700000000000e-01 +-2.278300000000000e-01 +-1.798100000000000e-01 +-1.210100000000000e-01 +-7.279800000000000e-02 +-5.735600000000000e-02 +-8.553900000000000e-02 +-1.499600000000000e-01 +-2.284100000000000e-01 +-2.957400000000000e-01 +-3.364000000000000e-01 +-3.497200000000000e-01 +-3.454300000000000e-01 +-3.335900000000000e-01 +-3.167900000000000e-01 +-2.900800000000000e-01 +-2.479500000000000e-01 +-1.923500000000000e-01 +-1.348700000000000e-01 +-9.070599999999999e-02 +-6.836200000000001e-02 +-6.227700000000000e-02 +-5.394200000000000e-02 +-2.147400000000000e-02 + 4.791200000000000e-02 + 1.498700000000000e-01 + 2.639100000000000e-01 + 3.625300000000000e-01 + 4.237000000000000e-01 + 4.401200000000000e-01 + 4.213700000000000e-01 + 3.883200000000000e-01 + 3.625600000000000e-01 + 3.555100000000000e-01 + 3.622200000000000e-01 + 3.628300000000000e-01 + 3.320100000000000e-01 + 2.526500000000000e-01 + 1.273200000000000e-01 +-1.904600000000000e-02 +-1.477800000000000e-01 +-2.231700000000000e-01 +-2.290700000000000e-01 +-1.768200000000000e-01 +-1.002200000000000e-01 +-4.062600000000000e-02 +-2.970100000000000e-02 +-7.823500000000000e-02 +-1.746300000000000e-01 +-2.915100000000000e-01 +-3.957500000000000e-01 +-4.578500000000000e-01 +-4.592500000000000e-01 +-3.975100000000000e-01 +-2.888100000000000e-01 +-1.655800000000000e-01 +-6.748899999999999e-02 +-2.685300000000000e-02 +-5.452700000000000e-02 +-1.336400000000000e-01 +-2.258800000000000e-01 +-2.881700000000000e-01 +-2.911100000000000e-01 +-2.297600000000000e-01 +-1.216500000000000e-01 + 5.226100000000000e-03 + 1.266100000000000e-01 + 2.306700000000000e-01 + 3.184300000000000e-01 + 3.982200000000000e-01 + 4.787700000000000e-01 + 5.640700000000000e-01 + 6.503300000000000e-01 + 7.247300000000000e-01 + 7.666900000000000e-01 + 7.533900000000000e-01 + 6.695800000000000e-01 + 5.179900000000000e-01 + 3.231600000000000e-01 + 1.240200000000000e-01 +-4.350500000000000e-02 +-1.641300000000000e-01 +-2.498200000000000e-01 +-3.297400000000000e-01 +-4.290300000000000e-01 +-5.502100000000000e-01 +-6.695300000000000e-01 +-7.510400000000000e-01 +-7.683600000000000e-01 +-7.194700000000001e-01 +-6.249100000000000e-01 +-5.123300000000000e-01 +-3.996800000000000e-01 +-2.892900000000000e-01 +-1.755800000000000e-01 +-5.847100000000000e-02 + 4.948400000000000e-02 + 1.283700000000000e-01 + 1.642900000000000e-01 + 1.601200000000000e-01 + 1.350800000000000e-01 + 1.138300000000000e-01 + 1.134400000000000e-01 + 1.374900000000000e-01 + 1.800900000000000e-01 + 2.345600000000000e-01 + 2.990000000000000e-01 + 3.748900000000000e-01 + 4.614800000000000e-01 + 5.520300000000000e-01 + 6.348800000000000e-01 + 6.974600000000000e-01 + 7.281900000000000e-01 + 7.147400000000000e-01 + 6.418800000000000e-01 + 4.947800000000000e-01 + 2.690400000000000e-01 +-1.839300000000000e-02 +-3.272300000000000e-01 +-6.060600000000000e-01 +-8.135200000000000e-01 +-9.352400000000000e-01 +-9.845400000000000e-01 +-9.859200000000000e-01 +-9.534300000000000e-01 +-8.800800000000000e-01 +-7.468000000000000e-01 +-5.444600000000001e-01 +-2.921400000000000e-01 +-3.718500000000000e-02 + 1.647000000000000e-01 + 2.766700000000000e-01 + 2.978800000000000e-01 + 2.607000000000000e-01 + 2.119500000000000e-01 + 1.910200000000000e-01 + 2.172700000000000e-01 + 2.898800000000000e-01 + 3.950200000000000e-01 + 5.128400000000000e-01 + 6.212800000000001e-01 + 6.991100000000000e-01 + 7.310900000000000e-01 + 7.142100000000000e-01 + 6.597700000000000e-01 + 5.868500000000000e-01 + 5.095499999999999e-01 + 4.265400000000000e-01 + 3.216600000000000e-01 + 1.769400000000000e-01 +-1.063600000000000e-02 +-2.212800000000000e-01 +-4.205800000000000e-01 +-5.788600000000000e-01 +-6.884400000000001e-01 +-7.659899999999999e-01 +-8.381700000000000e-01 +-9.204500000000000e-01 +-1.004100000000000e+00 +-1.059700000000000e+00 +-1.055100000000000e+00 +-9.729800000000000e-01 +-8.192100000000000e-01 +-6.157600000000000e-01 +-3.869500000000000e-01 +-1.492500000000000e-01 + 8.874100000000000e-02 + 3.183100000000000e-01 + 5.233400000000000e-01 + 6.812300000000000e-01 + 7.726000000000000e-01 + 7.933800000000000e-01 + 7.602100000000001e-01 + 7.045400000000001e-01 + 6.585500000000000e-01 + 6.412400000000000e-01 + 6.527700000000000e-01 + 6.794300000000000e-01 + 7.046400000000000e-01 + 7.179300000000000e-01 + 7.161500000000000e-01 + 6.973700000000000e-01 + 6.538100000000000e-01 + 5.708400000000000e-01 + 4.346800000000000e-01 + 2.442900000000000e-01 + 1.844500000000000e-02 +-2.087400000000000e-01 +-4.032500000000000e-01 +-5.484400000000000e-01 +-6.527800000000000e-01 +-7.417400000000000e-01 +-8.382400000000000e-01 +-9.443200000000000e-01 +-1.036700000000000e+00 +-1.080100000000000e+00 +-1.050100000000000e+00 +-9.506300000000000e-01 +-8.145800000000000e-01 +-6.861100000000000e-01 +-5.966200000000000e-01 +-5.484900000000000e-01 +-5.160300000000000e-01 +-4.617700000000000e-01 +-3.573200000000000e-01 +-1.971300000000000e-01 + 9.157300000000000e-04 + 2.056200000000000e-01 + 3.866500000000000e-01 + 5.260400000000000e-01 + 6.235700000000000e-01 + 6.959200000000000e-01 + 7.700000000000000e-01 + 8.719000000000000e-01 + 1.013800000000000e+00 + 1.184100000000000e+00 + 1.346100000000000e+00 + 1.449000000000000e+00 + 1.447600000000000e+00 + 1.321800000000000e+00 + 1.084200000000000e+00 + 7.744900000000000e-01 + 4.399800000000000e-01 + 1.173700000000000e-01 +-1.768200000000000e-01 +-4.423400000000000e-01 +-6.830800000000000e-01 +-8.959300000000000e-01 +-1.067800000000000e+00 +-1.181500000000000e+00 +-1.224900000000000e+00 +-1.197500000000000e+00 +-1.110200000000000e+00 +-9.811400000000000e-01 +-8.293600000000000e-01 +-6.717100000000000e-01 +-5.217200000000000e-01 +-3.891100000000000e-01 +-2.783400000000000e-01 +-1.864200000000000e-01 +-1.023800000000000e-01 +-1.020200000000000e-02 + 1.044700000000000e-01 + 2.467700000000000e-01 + 4.078400000000000e-01 + 5.658800000000000e-01 + 6.930600000000000e-01 + 7.651900000000000e-01 + 7.696700000000000e-01 + 7.080100000000000e-01 + 5.923600000000000e-01 + 4.385600000000000e-01 + 2.604900000000000e-01 + 6.867900000000000e-02 +-1.263600000000000e-01 +-3.095900000000000e-01 +-4.597800000000000e-01 +-5.531700000000001e-01 +-5.708299999999999e-01 +-5.057900000000000e-01 +-3.661000000000000e-01 +-1.728300000000000e-01 + 4.485200000000000e-02 + 2.550300000000000e-01 + 4.275300000000000e-01 + 5.387800000000000e-01 + 5.777099999999999e-01 + 5.508500000000000e-01 + 4.823100000000000e-01 + 4.051700000000000e-01 + 3.462500000000000e-01 + 3.120800000000000e-01 + 2.858400000000000e-01 + 2.391600000000000e-01 + 1.526200000000000e-01 + 3.153700000000000e-02 +-9.491800000000000e-02 +-1.919900000000000e-01 +-2.430700000000000e-01 +-2.618600000000000e-01 +-2.830400000000000e-01 +-3.370800000000000e-01 +-4.266300000000000e-01 +-5.221600000000000e-01 +-5.811500000000001e-01 +-5.781300000000000e-01 +-5.244700000000000e-01 +-4.632300000000000e-01 +-4.415600000000000e-01 +-4.784300000000000e-01 +-5.491500000000000e-01 +-5.964900000000000e-01 +-5.610800000000000e-01 +-4.122300000000000e-01 +-1.617900000000000e-01 + 1.440900000000000e-01 + 4.466800000000000e-01 + 6.957100000000001e-01 + 8.598900000000000e-01 + 9.268200000000000e-01 + 8.990100000000000e-01 + 7.921899999999999e-01 + 6.360300000000000e-01 + 4.721900000000000e-01 + 3.447500000000000e-01 + 2.842200000000000e-01 + 2.929400000000000e-01 + 3.414900000000000e-01 + 3.804800000000000e-01 + 3.629700000000000e-01 + 2.661300000000000e-01 + 1.007400000000000e-01 +-9.569400000000000e-02 +-2.771300000000000e-01 +-4.078700000000000e-01 +-4.727500000000000e-01 +-4.757100000000000e-01 +-4.313400000000000e-01 +-3.569200000000000e-01 +-2.697300000000000e-01 +-1.888500000000000e-01 +-1.362200000000000e-01 +-1.324900000000000e-01 +-1.882000000000000e-01 +-2.957000000000000e-01 +-4.288500000000000e-01 +-5.526300000000000e-01 +-6.379400000000000e-01 +-6.725700000000000e-01 +-6.611900000000001e-01 +-6.148600000000000e-01 +-5.379000000000000e-01 +-4.224800000000000e-01 +-2.552600000000000e-01 +-3.192900000000000e-02 + 2.313800000000000e-01 + 4.988000000000000e-01 + 7.286400000000000e-01 + 8.919400000000000e-01 + 9.841800000000001e-01 + 1.023100000000000e+00 + 1.035100000000000e+00 + 1.039000000000000e+00 + 1.037500000000000e+00 + 1.018500000000000e+00 + 9.635700000000000e-01 + 8.562800000000000e-01 + 6.873500000000000e-01 + 4.564100000000000e-01 + 1.732400000000000e-01 +-1.410100000000000e-01 +-4.553100000000000e-01 +-7.356200000000001e-01 +-9.560900000000000e-01 +-1.108400000000000e+00 +-1.202000000000000e+00 +-1.253700000000000e+00 +-1.272200000000000e+00 +-1.248700000000000e+00 +-1.161600000000000e+00 +-9.930800000000000e-01 +-7.461500000000000e-01 +-4.502200000000000e-01 +-1.501900000000000e-01 + 1.138100000000000e-01 + 3.223100000000000e-01 + 4.779200000000000e-01 + 5.927500000000000e-01 + 6.724400000000000e-01 + 7.089500000000000e-01 + 6.870800000000000e-01 + 5.990500000000000e-01 + 4.559400000000000e-01 + 2.879600000000000e-01 + 1.337300000000000e-01 + 2.605500000000000e-02 +-1.767100000000000e-02 + 2.818300000000000e-03 + 7.434399999999999e-02 + 1.750800000000000e-01 + 2.785500000000000e-01 + 3.582500000000000e-01 + 3.942400000000000e-01 + 3.803400000000000e-01 + 3.272800000000000e-01 + 2.581400000000000e-01 + 1.969700000000000e-01 + 1.572600000000000e-01 + 1.369800000000000e-01 + 1.231600000000000e-01 + 1.017100000000000e-01 + 6.530400000000000e-02 + 1.441100000000000e-02 +-4.723600000000000e-02 +-1.174100000000000e-01 +-1.960400000000000e-01 +-2.822800000000000e-01 +-3.721800000000000e-01 +-4.602100000000000e-01 +-5.430300000000000e-01 +-6.204000000000000e-01 +-6.904400000000001e-01 +-7.422200000000000e-01 +-7.539000000000000e-01 +-7.019000000000000e-01 +-5.778300000000000e-01 +-4.007700000000000e-01 +-2.132000000000000e-01 +-5.916000000000000e-02 + 4.244600000000000e-02 + 1.101200000000000e-01 + 1.868500000000000e-01 + 3.089300000000000e-01 + 4.778300000000000e-01 + 6.555400000000000e-01 + 7.874700000000000e-01 + 8.365800000000000e-01 + 8.044700000000000e-01 + 7.245800000000000e-01 + 6.341400000000000e-01 + 5.469600000000000e-01 + 4.476400000000000e-01 + 3.104600000000000e-01 + 1.268700000000000e-01 +-8.095700000000000e-02 +-2.710800000000000e-01 +-4.083600000000000e-01 +-4.857200000000000e-01 +-5.241600000000000e-01 +-5.525400000000000e-01 +-5.839500000000000e-01 +-6.066800000000000e-01 +-5.952400000000000e-01 +-5.309500000000000e-01 +-4.150400000000000e-01 +-2.652600000000000e-01 +-1.011800000000000e-01 + 6.805200000000000e-02 + 2.431300000000000e-01 + 4.232600000000000e-01 + 5.954500000000000e-01 + 7.347300000000000e-01 + 8.156400000000000e-01 + 8.251300000000000e-01 + 7.663800000000000e-01 + 6.513300000000000e-01 + 4.898800000000000e-01 + 2.863500000000000e-01 + 4.632500000000000e-02 +-2.131100000000000e-01 +-4.609500000000000e-01 +-6.624700000000000e-01 +-7.954200000000000e-01 +-8.594200000000000e-01 +-8.703000000000000e-01 +-8.434300000000000e-01 +-7.795299999999999e-01 +-6.651600000000000e-01 +-4.882000000000000e-01 +-2.560900000000000e-01 +-1.873600000000000e-03 + 2.280300000000000e-01 + 3.959600000000000e-01 + 4.891600000000000e-01 + 5.191500000000000e-01 + 5.064100000000000e-01 + 4.636900000000000e-01 + 3.910700000000000e-01 + 2.853400000000000e-01 + 1.542900000000000e-01 + 2.247200000000000e-02 +-7.771599999999999e-02 +-1.236800000000000e-01 +-1.160000000000000e-01 +-7.756399999999999e-02 +-3.910600000000000e-02 +-2.138300000000000e-02 +-2.549100000000000e-02 +-3.592500000000000e-02 +-3.185300000000000e-02 + 2.187200000000000e-03 + 7.200900000000000e-02 + 1.752500000000000e-01 + 3.038400000000000e-01 + 4.439100000000000e-01 + 5.742900000000000e-01 + 6.675000000000000e-01 + 6.961800000000000e-01 + 6.425600000000000e-01 + 5.055200000000000e-01 + 3.005300000000000e-01 + 5.255900000000000e-02 +-2.128000000000000e-01 +-4.741600000000000e-01 +-7.129300000000000e-01 +-9.089200000000000e-01 +-1.038800000000000e+00 +-1.080500000000000e+00 +-1.022600000000000e+00 +-8.718399999999999e-01 +-6.543000000000000e-01 +-4.083700000000000e-01 +-1.727400000000000e-01 + 2.459700000000000e-02 + 1.717200000000000e-01 + 2.713900000000000e-01 + 3.346600000000000e-01 + 3.731100000000000e-01 + 3.928800000000000e-01 + 3.927600000000000e-01 + 3.670000000000000e-01 + 3.117900000000000e-01 + 2.322100000000000e-01 + 1.454400000000000e-01 + 7.706900000000000e-02 + 5.092500000000000e-02 + 7.721900000000000e-02 + 1.460600000000000e-01 + 2.310200000000000e-01 + 3.016000000000000e-01 + 3.373600000000000e-01 + 3.355400000000000e-01 + 3.078500000000000e-01 + 2.699000000000000e-01 + 2.311500000000000e-01 + 1.922100000000000e-01 + 1.495700000000000e-01 + 1.019000000000000e-01 + 5.111900000000000e-02 +-3.203200000000000e-03 +-7.002100000000000e-02 +-1.655800000000000e-01 +-3.018100000000000e-01 +-4.708900000000000e-01 +-6.382400000000000e-01 +-7.523800000000000e-01 +-7.689900000000000e-01 +-6.749900000000000e-01 +-4.969300000000000e-01 +-2.875700000000000e-01 +-9.886600000000000e-02 + 4.110100000000000e-02 + 1.337600000000000e-01 + 1.973900000000000e-01 + 2.483300000000000e-01 + 2.904600000000000e-01 + 3.189800000000000e-01 + 3.317200000000000e-01 + 3.358500000000000e-01 + 3.432000000000000e-01 + 3.585700000000000e-01 + 3.725500000000000e-01 + 3.666700000000000e-01 + 3.276600000000000e-01 + 2.586500000000000e-01 + 1.769200000000000e-01 + 9.928800000000000e-02 + 2.736900000000000e-02 +-5.393000000000000e-02 +-1.619500000000000e-01 +-2.972500000000000e-01 +-4.363900000000000e-01 +-5.442100000000000e-01 +-5.970400000000000e-01 +-5.984400000000000e-01 +-5.739800000000000e-01 +-5.483000000000000e-01 +-5.223600000000000e-01 +-4.695500000000000e-01 +-3.547100000000000e-01 +-1.621300000000000e-01 + 8.870699999999999e-02 + 3.512400000000000e-01 + 5.767700000000000e-01 + 7.371600000000000e-01 + 8.297400000000000e-01 + 8.643200000000000e-01 + 8.467700000000000e-01 + 7.744799999999999e-01 + 6.467900000000000e-01 + 4.787700000000000e-01 + 3.031500000000000e-01 + 1.557100000000000e-01 + 5.442400000000000e-02 +-1.040900000000000e-02 +-6.622100000000000e-02 +-1.357100000000000e-01 +-2.198900000000000e-01 +-3.001900000000000e-01 +-3.573300000000000e-01 +-3.906200000000000e-01 +-4.207800000000000e-01 +-4.731500000000000e-01 +-5.546000000000000e-01 +-6.432000000000000e-01 +-6.997000000000000e-01 +-6.928600000000000e-01 +-6.195400000000000e-01 +-5.049700000000000e-01 +-3.836400000000000e-01 +-2.757700000000000e-01 +-1.765300000000000e-01 +-6.473300000000000e-02 + 7.688300000000001e-02 + 2.449200000000000e-01 + 4.134300000000000e-01 + 5.468800000000000e-01 + 6.183800000000000e-01 + 6.222299999999999e-01 + 5.748100000000000e-01 + 5.054300000000000e-01 + 4.428900000000000e-01 + 4.037200000000000e-01 + 3.865200000000000e-01 + 3.741900000000000e-01 + 3.435800000000000e-01 + 2.788100000000000e-01 + 1.817500000000000e-01 + 7.300600000000000e-02 +-1.837500000000000e-02 +-7.133700000000000e-02 +-8.523900000000000e-02 +-8.012600000000000e-02 +-8.470900000000001e-02 +-1.203300000000000e-01 +-1.913400000000000e-01 +-2.866600000000000e-01 +-3.882700000000000e-01 +-4.782200000000000e-01 +-5.394600000000001e-01 +-5.533500000000000e-01 +-5.015800000000000e-01 +-3.761200000000000e-01 +-1.916000000000000e-01 + 1.118400000000000e-02 + 1.781600000000000e-01 + 2.667100000000000e-01 + 2.673000000000000e-01 + 2.069600000000000e-01 + 1.316500000000000e-01 + 7.939000000000000e-02 + 6.209400000000000e-02 + 6.696000000000001e-02 + 7.317300000000000e-02 + 6.914700000000000e-02 + 5.735700000000000e-02 + 4.572100000000000e-02 + 3.586400000000000e-02 + 2.008000000000000e-02 +-1.032600000000000e-02 +-5.359500000000000e-02 +-9.441900000000000e-02 +-1.131800000000000e-01 +-1.004000000000000e-01 +-6.427900000000000e-02 +-2.490900000000000e-02 + 2.494200000000000e-04 + 7.737500000000000e-03 + 7.654700000000000e-03 + 1.285100000000000e-02 + 2.762500000000000e-02 + 4.534900000000000e-02 + 5.611300000000000e-02 + 5.682400000000000e-02 + 5.484000000000000e-02 + 6.261300000000000e-02 + 8.882300000000000e-02 + 1.337600000000000e-01 + 1.917000000000000e-01 + 2.559500000000000e-01 + 3.202000000000000e-01 + 3.744800000000000e-01 + 4.012600000000000e-01 + 3.786100000000000e-01 + 2.918300000000000e-01 + 1.461400000000000e-01 +-3.064700000000000e-02 +-2.000600000000000e-01 +-3.332300000000000e-01 +-4.254300000000000e-01 +-4.942500000000000e-01 +-5.623899999999999e-01 +-6.374100000000000e-01 +-7.030600000000000e-01 +-7.278000000000000e-01 +-6.836900000000000e-01 +-5.622000000000000e-01 +-3.772700000000000e-01 +-1.561500000000000e-01 + 7.340600000000000e-02 + 2.904600000000000e-01 + 4.804700000000000e-01 + 6.313200000000000e-01 + 7.318700000000000e-01 + 7.747700000000000e-01 + 7.604500000000000e-01 + 6.979300000000001e-01 + 6.012300000000000e-01 + 4.844500000000000e-01 + 3.591800000000000e-01 + 2.348800000000000e-01 + 1.195400000000000e-01 + 1.752100000000000e-02 +-7.453899999999999e-02 +-1.691400000000000e-01 +-2.823400000000000e-01 +-4.220500000000000e-01 +-5.772600000000000e-01 +-7.166000000000000e-01 +-7.996700000000000e-01 +-7.958100000000000e-01 +-6.993500000000000e-01 +-5.325100000000000e-01 +-3.345500000000000e-01 +-1.445000000000000e-01 + 1.267400000000000e-02 + 1.301300000000000e-01 + 2.142900000000000e-01 + 2.766700000000000e-01 + 3.278200000000000e-01 + 3.753700000000000e-01 + 4.240200000000000e-01 + 4.751900000000000e-01 + 5.253200000000000e-01 + 5.647500000000000e-01 + 5.790300000000000e-01 + 5.533100000000000e-01 + 4.781700000000000e-01 + 3.542100000000000e-01 + 1.934300000000000e-01 + 1.683500000000000e-02 +-1.510800000000000e-01 +-2.891400000000000e-01 +-3.855000000000000e-01 +-4.404100000000000e-01 +-4.644800000000000e-01 +-4.726900000000000e-01 +-4.769700000000000e-01 +-4.809800000000000e-01 +-4.794100000000000e-01 +-4.616500000000000e-01 +-4.167500000000000e-01 +-3.367500000000000e-01 +-2.175800000000000e-01 +-5.929700000000000e-02 + 1.319600000000000e-01 + 3.403900000000000e-01 + 5.381200000000000e-01 + 6.880200000000000e-01 + 7.532200000000000e-01 + 7.100600000000000e-01 + 5.583399999999999e-01 + 3.236100000000000e-01 + 5.017100000000000e-02 +-2.114700000000000e-01 +-4.172000000000000e-01 +-5.380400000000000e-01 +-5.639700000000000e-01 +-5.039200000000000e-01 +-3.825100000000000e-01 +-2.335200000000000e-01 +-9.028100000000000e-02 + 2.443800000000000e-02 + 1.045900000000000e-01 + 1.592700000000000e-01 + 2.037600000000000e-01 + 2.481200000000000e-01 + 2.907800000000000e-01 + 3.207300000000000e-01 + 3.267800000000000e-01 + 3.064900000000000e-01 + 2.684300000000000e-01 + 2.259300000000000e-01 + 1.872400000000000e-01 + 1.495600000000000e-01 + 1.016800000000000e-01 + 3.336200000000000e-02 +-5.511500000000000e-02 +-1.503900000000000e-01 +-2.325000000000000e-01 +-2.862600000000000e-01 +-3.100400000000000e-01 +-3.160400000000000e-01 +-3.219400000000000e-01 +-3.390500000000000e-01 +-3.647200000000000e-01 +-3.837100000000000e-01 +-3.778100000000000e-01 +-3.375400000000000e-01 +-2.684200000000000e-01 +-1.873600000000000e-01 +-1.112300000000000e-01 +-4.484100000000000e-02 + 2.311200000000000e-02 + 1.125200000000000e-01 + 2.364000000000000e-01 + 3.873000000000000e-01 + 5.349699999999999e-01 + 6.383100000000000e-01 + 6.654900000000000e-01 + 6.104200000000000e-01 + 4.957900000000000e-01 + 3.610300000000000e-01 + 2.427200000000000e-01 + 1.592000000000000e-01 + 1.070700000000000e-01 + 6.962300000000000e-02 + 2.966600000000000e-02 +-2.152500000000000e-02 +-8.312300000000000e-02 +-1.494500000000000e-01 +-2.152900000000000e-01 +-2.781100000000000e-01 +-3.371800000000000e-01 +-3.919800000000000e-01 +-4.416600000000000e-01 +-4.850500000000000e-01 +-5.196400000000000e-01 +-5.393800000000000e-01 +-5.333700000000000e-01 +-4.882200000000000e-01 +-3.944800000000000e-01 +-2.540300000000000e-01 +-8.330200000000000e-02 + 9.047400000000000e-02 + 2.387700000000000e-01 + 3.418300000000000e-01 + 3.944700000000000e-01 + 4.055500000000000e-01 + 3.931800000000000e-01 + 3.782200000000000e-01 + 3.781600000000000e-01 + 4.012900000000000e-01 + 4.419900000000000e-01 + 4.797000000000000e-01 + 4.846100000000000e-01 + 4.306300000000000e-01 + 3.102600000000000e-01 + 1.427900000000000e-01 +-3.112800000000000e-02 +-1.672400000000000e-01 +-2.381400000000000e-01 +-2.442600000000000e-01 +-2.089700000000000e-01 +-1.623300000000000e-01 +-1.252300000000000e-01 +-1.044000000000000e-01 +-9.921300000000000e-02 +-1.120000000000000e-01 +-1.510000000000000e-01 +-2.223800000000000e-01 +-3.180100000000000e-01 +-4.107800000000000e-01 +-4.642900000000000e-01 +-4.527000000000000e-01 +-3.774500000000000e-01 +-2.685700000000000e-01 +-1.687000000000000e-01 +-1.096600000000000e-01 +-9.657000000000000e-02 +-1.088400000000000e-01 +-1.155700000000000e-01 +-9.419100000000000e-02 +-4.061700000000000e-02 + 3.333700000000000e-02 + 1.106200000000000e-01 + 1.792900000000000e-01 + 2.367200000000000e-01 + 2.875400000000000e-01 + 3.391400000000000e-01 + 3.979500000000000e-01 + 4.672700000000000e-01 + 5.456800000000001e-01 + 6.258500000000000e-01 + 6.951100000000000e-01 + 7.389900000000000e-01 + 7.463700000000000e-01 + 7.124800000000000e-01 + 6.369000000000000e-01 + 5.175900000000000e-01 + 3.471600000000000e-01 + 1.168800000000000e-01 +-1.713200000000000e-01 +-4.924900000000000e-01 +-7.969200000000000e-01 +-1.024600000000000e+00 +-1.130800000000000e+00 +-1.107700000000000e+00 +-9.885100000000000e-01 +-8.297000000000000e-01 +-6.820500000000000e-01 +-5.672700000000001e-01 +-4.742600000000000e-01 +-3.750800000000000e-01 +-2.485400000000000e-01 +-9.598600000000000e-02 + 5.951500000000000e-02 + 1.874000000000000e-01 + 2.663300000000000e-01 + 2.934700000000000e-01 + 2.830100000000000e-01 + 2.581100000000000e-01 + 2.419600000000000e-01 + 2.513000000000000e-01 + 2.919900000000000e-01 + 3.559900000000000e-01 + 4.214100000000000e-01 + 4.586800000000000e-01 + 4.431100000000000e-01 + 3.687600000000000e-01 + 2.548300000000000e-01 + 1.386700000000000e-01 + 5.786600000000000e-02 + 3.198800000000000e-02 + 5.572000000000000e-02 + 1.072600000000000e-01 + 1.648300000000000e-01 + 2.183600000000000e-01 + 2.680800000000000e-01 + 3.128600000000000e-01 + 3.403200000000000e-01 + 3.294400000000000e-01 + 2.656100000000000e-01 + 1.563100000000000e-01 + 3.281800000000000e-02 +-6.670900000000000e-02 +-1.225800000000000e-01 +-1.486700000000000e-01 +-1.844700000000000e-01 +-2.679300000000000e-01 +-4.074500000000000e-01 +-5.732699999999999e-01 +-7.147800000000000e-01 +-7.915400000000000e-01 +-7.962399999999999e-01 +-7.540100000000000e-01 +-7.003700000000000e-01 +-6.552900000000000e-01 +-6.124700000000000e-01 +-5.496400000000000e-01 +-4.495100000000000e-01 +-3.131500000000000e-01 +-1.556500000000000e-01 + 1.070400000000000e-02 + 1.892900000000000e-01 + 3.948200000000000e-01 + 6.332500000000000e-01 + 8.819100000000000e-01 + 1.088100000000000e+00 + 1.191800000000000e+00 + 1.159700000000000e+00 + 1.008100000000000e+00 + 7.971300000000000e-01 + 5.993000000000001e-01 + 4.606200000000000e-01 + 3.797500000000000e-01 + 3.166700000000000e-01 + 2.234800000000000e-01 + 7.624800000000000e-02 +-1.122900000000000e-01 +-3.046400000000000e-01 +-4.638600000000000e-01 +-5.738300000000000e-01 +-6.416200000000000e-01 +-6.835800000000000e-01 +-7.077400000000000e-01 +-7.064100000000000e-01 +-6.638700000000000e-01 +-5.720300000000000e-01 +-4.416100000000000e-01 +-2.999000000000000e-01 +-1.765200000000000e-01 +-8.685400000000000e-02 +-2.464500000000000e-02 + 3.180400000000000e-02 + 1.039100000000000e-01 + 1.976600000000000e-01 + 2.978700000000000e-01 + 3.745600000000000e-01 + 3.971900000000000e-01 + 3.492300000000000e-01 + 2.363800000000000e-01 + 8.565000000000000e-02 +-6.366700000000000e-02 +-1.733200000000000e-01 +-2.188300000000000e-01 +-1.967900000000000e-01 +-1.236500000000000e-01 +-2.623500000000000e-02 + 7.159600000000001e-02 + 1.587800000000000e-01 + 2.375900000000000e-01 + 3.144600000000000e-01 + 3.877300000000000e-01 + 4.416100000000000e-01 + 4.522100000000000e-01 + 4.025800000000000e-01 + 2.966300000000000e-01 + 1.610900000000000e-01 + 3.294700000000000e-02 +-5.985800000000000e-02 +-1.113300000000000e-01 +-1.352600000000000e-01 +-1.506800000000000e-01 +-1.667400000000000e-01 +-1.792600000000000e-01 +-1.811200000000000e-01 +-1.771800000000000e-01 +-1.899100000000000e-01 +-2.486500000000000e-01 +-3.684700000000000e-01 +-5.337000000000000e-01 +-6.987900000000000e-01 +-8.074600000000000e-01 +-8.182600000000000e-01 +-7.208800000000000e-01 +-5.349699999999999e-01 +-2.952100000000000e-01 +-3.467200000000000e-02 + 2.235400000000000e-01 + 4.645500000000000e-01 + 6.758000000000000e-01 + 8.439800000000000e-01 + 9.568700000000000e-01 + 1.007000000000000e+00 + 9.928600000000000e-01 + 9.179600000000000e-01 + 7.895400000000000e-01 + 6.202200000000000e-01 + 4.301200000000000e-01 + 2.447100000000000e-01 + 8.621800000000000e-02 +-3.727300000000000e-02 +-1.363700000000000e-01 +-2.326600000000000e-01 +-3.421700000000000e-01 +-4.617100000000000e-01 +-5.693100000000000e-01 +-6.395500000000000e-01 +-6.627500000000000e-01 +-6.524200000000000e-01 +-6.345800000000000e-01 +-6.266600000000000e-01 +-6.230900000000000e-01 +-5.993200000000000e-01 +-5.314300000000000e-01 +-4.151000000000000e-01 +-2.684600000000000e-01 +-1.166500000000000e-01 + 2.829200000000000e-02 + 1.742200000000000e-01 + 3.357300000000000e-01 + 5.118800000000000e-01 + 6.744900000000000e-01 + 7.794100000000000e-01 + 7.941700000000000e-01 + 7.213200000000000e-01 + 5.989400000000000e-01 + 4.770500000000000e-01 + 3.870700000000000e-01 + 3.264600000000000e-01 + 2.682800000000000e-01 + 1.858700000000000e-01 + 7.246200000000000e-02 +-5.840700000000000e-02 +-1.884400000000000e-01 +-3.101000000000000e-01 +-4.275000000000000e-01 +-5.426500000000000e-01 +-6.407600000000000e-01 +-6.901000000000000e-01 +-6.596800000000000e-01 +-5.421300000000000e-01 +-3.639200000000000e-01 +-1.738100000000000e-01 +-1.724900000000000e-02 + 8.565100000000000e-02 + 1.441000000000000e-01 + 1.823800000000000e-01 + 2.198200000000000e-01 + 2.594000000000000e-01 + 2.906200000000000e-01 + 3.008300000000000e-01 + 2.845700000000000e-01 + 2.454100000000000e-01 + 1.921400000000000e-01 + 1.352000000000000e-01 + 8.580900000000000e-02 + 5.541900000000000e-02 + 5.146200000000000e-02 + 7.052300000000000e-02 + 9.541200000000000e-02 + 1.024600000000000e-01 + 7.749900000000000e-02 + 2.969100000000000e-02 +-9.802500000000000e-03 +-7.744600000000000e-03 + 4.385400000000000e-02 + 1.129400000000000e-01 + 1.392700000000000e-01 + 6.916700000000001e-02 +-1.076100000000000e-01 +-3.438700000000000e-01 +-5.548999999999999e-01 +-6.615000000000000e-01 +-6.303000000000000e-01 +-4.875500000000000e-01 +-3.000100000000000e-01 +-1.373500000000000e-01 +-3.951100000000000e-02 +-6.617400000000000e-03 +-1.197600000000000e-02 +-2.472100000000000e-02 +-2.562800000000000e-02 +-8.330400000000000e-03 + 2.955700000000000e-02 + 9.427099999999999e-02 + 1.945400000000000e-01 + 3.320000000000000e-01 + 4.918600000000000e-01 + 6.428400000000000e-01 + 7.483600000000000e-01 + 7.829199999999999e-01 + 7.430200000000000e-01 + 6.459300000000000e-01 + 5.173100000000000e-01 + 3.763200000000000e-01 + 2.280700000000000e-01 + 6.792300000000000e-02 +-1.064900000000000e-01 +-2.850200000000000e-01 +-4.452900000000000e-01 +-5.644500000000000e-01 +-6.349700000000000e-01 +-6.728200000000000e-01 +-7.105800000000000e-01 +-7.776999999999999e-01 +-8.790800000000000e-01 +-9.859000000000000e-01 +-1.045600000000000e+00 +-1.006800000000000e+00 +-8.447300000000000e-01 +-5.734500000000000e-01 +-2.379800000000000e-01 + 1.077800000000000e-01 + 4.234000000000000e-01 + 6.921200000000000e-01 + 9.151100000000000e-01 + 1.096700000000000e+00 + 1.232400000000000e+00 + 1.308100000000000e+00 + 1.309600000000000e+00 + 1.233700000000000e+00 + 1.092300000000000e+00 + 9.054100000000000e-01 + 6.892200000000001e-01 + 4.487700000000000e-01 + 1.817900000000000e-01 +-1.088400000000000e-01 +-4.036900000000000e-01 +-6.665000000000000e-01 +-8.575900000000000e-01 +-9.531900000000000e-01 +-9.581900000000000e-01 +-9.032200000000000e-01 +-8.276400000000000e-01 +-7.595499999999999e-01 +-7.053600000000000e-01 +-6.541500000000000e-01 +-5.914199999999999e-01 +-5.107300000000000e-01 +-4.152100000000000e-01 +-3.098100000000000e-01 +-1.933100000000000e-01 +-5.840500000000000e-02 + 9.956000000000000e-02 + 2.729300000000000e-01 + 4.408900000000000e-01 + 5.796800000000000e-01 + 6.764400000000000e-01 + 7.350800000000000e-01 + 7.682300000000000e-01 + 7.814800000000000e-01 + 7.630500000000000e-01 + 6.894100000000000e-01 + 5.444000000000000e-01 + 3.379900000000000e-01 + 1.093100000000000e-01 +-9.021899999999999e-02 +-2.233200000000000e-01 +-2.845700000000000e-01 +-2.977400000000000e-01 +-2.957300000000000e-01 +-2.982700000000000e-01 +-3.025200000000000e-01 +-2.911000000000000e-01 +-2.489200000000000e-01 +-1.754900000000000e-01 +-8.541400000000000e-02 + 3.390300000000000e-04 + 6.355000000000000e-02 + 9.254300000000000e-02 + 8.166100000000000e-02 + 3.135900000000000e-02 +-4.900500000000000e-02 +-1.395000000000000e-01 +-2.147400000000000e-01 +-2.560900000000000e-01 +-2.631600000000000e-01 +-2.541100000000000e-01 +-2.515300000000000e-01 +-2.626600000000000e-01 +-2.696000000000000e-01 +-2.390400000000000e-01 +-1.464000000000000e-01 + 3.301900000000000e-03 + 1.745300000000000e-01 + 3.219000000000000e-01 + 4.173800000000000e-01 + 4.633900000000000e-01 + 4.825600000000000e-01 + 4.932400000000000e-01 + 4.914100000000000e-01 + 4.536700000000000e-01 + 3.583500000000000e-01 + 2.069600000000000e-01 + 2.790600000000000e-02 +-1.402200000000000e-01 +-2.720300000000000e-01 +-3.661900000000000e-01 +-4.358300000000000e-01 +-4.880400000000000e-01 +-5.107400000000000e-01 +-4.790300000000000e-01 +-3.759700000000000e-01 +-2.109900000000000e-01 +-2.061400000000000e-02 + 1.494800000000000e-01 + 2.676400000000000e-01 + 3.280100000000000e-01 + 3.442700000000000e-01 + 3.329800000000000e-01 + 3.007000000000000e-01 + 2.442100000000000e-01 + 1.611700000000000e-01 + 6.060200000000000e-02 +-3.595500000000000e-02 +-1.035700000000000e-01 +-1.261500000000000e-01 +-1.036400000000000e-01 +-5.091800000000000e-02 + 9.194800000000000e-03 + 5.404300000000000e-02 + 6.764900000000000e-02 + 4.493500000000000e-02 +-6.758100000000000e-03 +-7.031500000000000e-02 +-1.264000000000000e-01 +-1.632200000000000e-01 +-1.824700000000000e-01 +-1.963600000000000e-01 +-2.167300000000000e-01 +-2.442500000000000e-01 +-2.665700000000000e-01 +-2.678800000000000e-01 +-2.423200000000000e-01 +-1.995400000000000e-01 +-1.562300000000000e-01 +-1.200300000000000e-01 +-7.952200000000000e-02 +-1.074700000000000e-02 + 1.029800000000000e-01 + 2.533100000000000e-01 + 4.065600000000000e-01 + 5.231800000000000e-01 + 5.831400000000000e-01 + 5.975100000000000e-01 + 5.965700000000000e-01 + 6.032900000000000e-01 + 6.124400000000000e-01 + 5.916400000000001e-01 + 5.036300000000000e-01 + 3.327800000000000e-01 + 9.719999999999999e-02 +-1.607700000000000e-01 +-3.958500000000000e-01 +-5.769100000000000e-01 +-6.905200000000000e-01 +-7.348400000000000e-01 +-7.150100000000000e-01 +-6.462100000000000e-01 +-5.590900000000000e-01 +-4.962000000000000e-01 +-4.939200000000000e-01 +-5.582400000000000e-01 +-6.519400000000000e-01 +-7.064400000000000e-01 +-6.549700000000001e-01 +-4.679200000000000e-01 +-1.683000000000000e-01 + 1.815700000000000e-01 + 5.123799999999999e-01 + 7.776300000000000e-01 + 9.642100000000000e-01 + 1.081900000000000e+00 + 1.143500000000000e+00 + 1.151400000000000e+00 + 1.097200000000000e+00 + 9.709400000000000e-01 + 7.714800000000001e-01 + 5.109200000000000e-01 + 2.134200000000000e-01 +-8.882600000000000e-02 +-3.604200000000000e-01 +-5.690600000000000e-01 +-6.940200000000000e-01 +-7.338600000000000e-01 +-7.079800000000001e-01 +-6.481600000000000e-01 +-5.831600000000000e-01 +-5.253600000000000e-01 +-4.686100000000000e-01 +-3.990500000000000e-01 +-3.110200000000000e-01 +-2.162100000000000e-01 +-1.386900000000000e-01 +-9.903300000000000e-02 +-9.860800000000000e-02 +-1.153400000000000e-01 +-1.139200000000000e-01 +-6.403700000000000e-02 + 4.470300000000000e-02 + 1.989700000000000e-01 + 3.694800000000000e-01 + 5.241200000000000e-01 + 6.391200000000000e-01 + 7.038000000000000e-01 + 7.190299999999999e-01 + 6.921700000000000e-01 + 6.312900000000000e-01 + 5.408100000000000e-01 + 4.197700000000000e-01 + 2.634300000000000e-01 + 6.822300000000001e-02 +-1.617500000000000e-01 +-4.097400000000000e-01 +-6.459200000000000e-01 +-8.329600000000000e-01 +-9.364600000000000e-01 +-9.365300000000000e-01 +-8.362900000000000e-01 +-6.632800000000000e-01 +-4.618600000000000e-01 +-2.779800000000000e-01 +-1.415600000000000e-01 +-5.451800000000000e-02 + 8.023100000000000e-03 + 8.191200000000000e-02 + 1.904300000000000e-01 + 3.266300000000000e-01 + 4.537900000000000e-01 + 5.261300000000000e-01 + 5.186400000000000e-01 + 4.470700000000000e-01 + 3.637800000000000e-01 + 3.298100000000000e-01 + 3.795100000000000e-01 + 4.993000000000000e-01 + 6.336700000000000e-01 + 7.140600000000000e-01 + 6.924600000000000e-01 + 5.604300000000000e-01 + 3.456100000000000e-01 + 9.270000000000000e-02 +-1.565300000000000e-01 +-3.729700000000000e-01 +-5.392600000000000e-01 +-6.456100000000000e-01 +-6.897300000000000e-01 +-6.811300000000000e-01 +-6.434299999999999e-01 +-6.084600000000000e-01 +-6.022100000000000e-01 +-6.303700000000000e-01 +-6.733300000000000e-01 +-6.948700000000000e-01 +-6.603400000000000e-01 +-5.540800000000000e-01 +-3.867900000000000e-01 +-1.898000000000000e-01 +-7.124100000000000e-04 + 1.522000000000000e-01 + 2.597000000000000e-01 + 3.324800000000000e-01 + 3.938300000000000e-01 + 4.677400000000000e-01 + 5.672600000000000e-01 + 6.880200000000000e-01 + 8.098700000000000e-01 + 9.063099999999999e-01 + 9.566700000000000e-01 + 9.545100000000000e-01 + 9.074100000000000e-01 + 8.287300000000000e-01 + 7.271400000000000e-01 + 6.012700000000000e-01 + 4.427100000000000e-01 + 2.451800000000000e-01 + 1.300800000000000e-02 +-2.367700000000000e-01 +-4.795100000000000e-01 +-6.915100000000000e-01 +-8.564400000000000e-01 +-9.668099999999999e-01 +-1.021700000000000e+00 +-1.023800000000000e+00 +-9.782999999999999e-01 +-8.936400000000000e-01 +-7.818200000000000e-01 +-6.574700000000000e-01 +-5.354400000000000e-01 +-4.277800000000000e-01 +-3.410300000000000e-01 +-2.738500000000000e-01 +-2.155600000000000e-01 +-1.470700000000000e-01 +-4.593200000000000e-02 + 1.044800000000000e-01 + 3.049900000000000e-01 + 5.354500000000000e-01 + 7.585600000000000e-01 + 9.323800000000000e-01 + 1.025700000000000e+00 + 1.028500000000000e+00 + 9.528700000000000e-01 + 8.246000000000000e-01 + 6.719600000000000e-01 + 5.168900000000000e-01 + 3.718500000000000e-01 + 2.412300000000000e-01 + 1.240600000000000e-01 + 1.622300000000000e-02 +-8.772400000000000e-02 +-1.922700000000000e-01 +-2.979200000000000e-01 +-3.988600000000000e-01 +-4.828600000000000e-01 +-5.340600000000000e-01 +-5.374900000000000e-01 +-4.840800000000000e-01 +-3.750600000000000e-01 +-2.250900000000000e-01 +-6.253599999999999e-02 + 7.512700000000000e-02 + 1.517600000000000e-01 + 1.462300000000000e-01 + 6.276800000000000e-02 +-6.907300000000000e-02 +-2.068800000000000e-01 +-3.146600000000000e-01 +-3.776900000000000e-01 +-4.039200000000000e-01 +-4.115800000000000e-01 +-4.121800000000000e-01 +-4.015700000000000e-01 +-3.649700000000000e-01 +-2.913500000000000e-01 +-1.851700000000000e-01 +-6.560600000000000e-02 + 4.631000000000000e-02 + 1.425500000000000e-01 + 2.329500000000000e-01 + 3.359500000000000e-01 + 4.621500000000000e-01 + 6.029900000000000e-01 + 7.328000000000000e-01 + 8.222500000000000e-01 + 8.530700000000000e-01 + 8.240400000000000e-01 + 7.459300000000000e-01 + 6.311300000000000e-01 + 4.865600000000000e-01 + 3.141100000000000e-01 + 1.162900000000000e-01 +-9.875600000000000e-02 +-3.164400000000000e-01 +-5.182800000000000e-01 +-6.847800000000001e-01 +-7.970600000000000e-01 +-8.390500000000000e-01 +-8.024000000000000e-01 +-6.930200000000000e-01 +-5.341200000000000e-01 +-3.606900000000000e-01 +-2.058000000000000e-01 +-8.641699999999999e-02 + 1.541500000000000e-03 + 7.432600000000000e-02 + 1.435200000000000e-01 + 2.036000000000000e-01 + 2.338700000000000e-01 + 2.140700000000000e-01 + 1.422900000000000e-01 + 4.141100000000000e-02 +-5.137800000000000e-02 +-1.049200000000000e-01 +-1.097400000000000e-01 +-7.827000000000001e-02 +-3.085100000000000e-02 + 2.096100000000000e-02 + 8.064200000000001e-02 + 1.582800000000000e-01 + 2.549500000000000e-01 + 3.528300000000000e-01 + 4.195700000000000e-01 + 4.245800000000000e-01 + 3.561100000000000e-01 + 2.282100000000000e-01 + 7.381600000000001e-02 +-7.038600000000000e-02 +-1.775400000000000e-01 +-2.362400000000000e-01 +-2.482500000000000e-01 +-2.229300000000000e-01 +-1.730100000000000e-01 +-1.122800000000000e-01 +-5.346500000000000e-02 +-4.823800000000000e-03 + 3.294200000000000e-02 + 6.621299999999999e-02 + 1.031200000000000e-01 + 1.461600000000000e-01 + 1.883800000000000e-01 + 2.167500000000000e-01 + 2.209700000000000e-01 + 2.010000000000000e-01 + 1.667900000000000e-01 + 1.292900000000000e-01 + 8.933000000000001e-02 + 3.349500000000000e-02 +-5.807200000000000e-02 +-1.959300000000000e-01 +-3.684900000000000e-01 +-5.419500000000000e-01 +-6.746799999999999e-01 +-7.374400000000000e-01 +-7.265400000000000e-01 +-6.617100000000000e-01 +-5.707200000000000e-01 +-4.716600000000000e-01 +-3.642600000000000e-01 +-2.344700000000000e-01 +-6.733500000000001e-02 + 1.417500000000000e-01 + 3.837600000000000e-01 + 6.399300000000000e-01 + 8.868100000000000e-01 + 1.097600000000000e+00 + 1.241100000000000e+00 + 1.283700000000000e+00 + 1.199400000000000e+00 + 9.842600000000000e-01 + 6.668900000000000e-01 + 3.044400000000000e-01 +-3.637100000000000e-02 +-3.046000000000000e-01 +-4.821900000000000e-01 +-5.832700000000000e-01 +-6.375800000000000e-01 +-6.701200000000000e-01 +-6.900300000000000e-01 +-6.939500000000000e-01 +-6.778500000000000e-01 +-6.458400000000000e-01 +-6.087200000000000e-01 +-5.737500000000000e-01 +-5.349800000000000e-01 +-4.727000000000000e-01 +-3.638500000000000e-01 +-1.966400000000000e-01 + 1.982900000000000e-02 + 2.565700000000000e-01 + 4.751700000000000e-01 + 6.415400000000000e-01 + 7.365800000000000e-01 + 7.604800000000000e-01 + 7.302400000000000e-01 + 6.715600000000000e-01 + 6.073200000000000e-01 + 5.463200000000000e-01 + 4.775700000000000e-01 + 3.752100000000000e-01 + 2.139500000000000e-01 +-1.185800000000000e-02 +-2.769700000000000e-01 +-5.307400000000000e-01 +-7.179500000000000e-01 +-8.036200000000000e-01 +-7.867499999999999e-01 +-6.951100000000000e-01 +-5.658700000000000e-01 +-4.261100000000000e-01 +-2.857900000000000e-01 +-1.453800000000000e-01 +-9.092400000000000e-03 + 1.084200000000000e-01 + 1.875500000000000e-01 + 2.158900000000000e-01 + 1.966900000000000e-01 + 1.467300000000000e-01 + 8.669600000000000e-02 + 3.282800000000000e-02 +-3.606300000000000e-03 +-1.096200000000000e-02 + 2.555800000000000e-02 + 1.177800000000000e-01 + 2.623100000000000e-01 + 4.326900000000000e-01 + 5.855200000000000e-01 + 6.796300000000000e-01 + 6.962300000000000e-01 + 6.457200000000000e-01 + 5.560600000000000e-01 + 4.519600000000000e-01 + 3.408700000000000e-01 + 2.160900000000000e-01 + 7.280900000000000e-02 +-7.808900000000001e-02 +-2.118700000000000e-01 +-3.072300000000000e-01 +-3.651500000000000e-01 +-4.124300000000000e-01 +-4.849300000000000e-01 +-6.015100000000000e-01 +-7.481600000000000e-01 +-8.847200000000000e-01 +-9.693600000000000e-01 +-9.828400000000000e-01 +-9.349600000000000e-01 +-8.495900000000000e-01 +-7.414600000000000e-01 +-6.032400000000000e-01 +-4.130200000000000e-01 +-1.561000000000000e-01 + 1.559100000000000e-01 + 4.830300000000000e-01 + 7.732700000000000e-01 + 9.857600000000000e-01 + 1.105400000000000e+00 + 1.141000000000000e+00 + 1.112300000000000e+00 + 1.034800000000000e+00 + 9.142100000000000e-01 + 7.503000000000000e-01 + 5.454100000000000e-01 + 3.108500000000000e-01 + 6.814300000000000e-02 +-1.541900000000000e-01 +-3.258300000000000e-01 +-4.208300000000000e-01 +-4.246300000000000e-01 +-3.403700000000000e-01 +-1.913300000000000e-01 +-1.631000000000000e-02 + 1.418500000000000e-01 + 2.494300000000000e-01 + 2.897400000000000e-01 + 2.620200000000000e-01 + 1.739800000000000e-01 + 3.483200000000000e-02 +-1.457500000000000e-01 +-3.529900000000000e-01 +-5.630300000000000e-01 +-7.455300000000000e-01 +-8.733700000000000e-01 +-9.332600000000000e-01 +-9.292100000000000e-01 +-8.760400000000000e-01 +-7.880000000000000e-01 +-6.713800000000000e-01 +-5.265000000000000e-01 +-3.560100000000000e-01 +-1.709800000000000e-01 + 1.227100000000000e-02 + 1.827900000000000e-01 + 3.439100000000000e-01 + 5.109399999999999e-01 + 6.967700000000000e-01 + 8.949900000000000e-01 + 1.074000000000000e+00 + 1.189000000000000e+00 + 1.205000000000000e+00 + 1.116500000000000e+00 + 9.499500000000000e-01 + 7.475500000000000e-01 + 5.444099999999999e-01 + 3.537400000000000e-01 + 1.693800000000000e-01 +-1.899800000000000e-02 +-2.108900000000000e-01 +-3.912600000000000e-01 +-5.395200000000000e-01 +-6.425800000000000e-01 +-7.013400000000000e-01 +-7.264400000000000e-01 +-7.278600000000000e-01 +-7.075900000000001e-01 +-6.608800000000000e-01 +-5.841000000000000e-01 +-4.819100000000000e-01 +-3.676800000000000e-01 +-2.573300000000000e-01 +-1.617600000000000e-01 +-8.382100000000001e-02 +-2.122000000000000e-02 + 2.823300000000000e-02 + 6.383700000000000e-02 + 8.369000000000000e-02 + 8.863200000000000e-02 + 8.461700000000000e-02 + 8.156600000000000e-02 + 8.991800000000000e-02 + 1.175200000000000e-01 + 1.681000000000000e-01 + 2.406100000000000e-01 + 3.281200000000000e-01 + 4.171300000000000e-01 + 4.896700000000000e-01 + 5.296200000000000e-01 + 5.309400000000000e-01 + 5.018899999999999e-01 + 4.605600000000000e-01 + 4.224300000000000e-01 + 3.877100000000000e-01 + 3.378500000000000e-01 + 2.454500000000000e-01 + 9.255300000000000e-02 +-1.143400000000000e-01 +-3.423100000000000e-01 +-5.445300000000000e-01 +-6.792400000000000e-01 +-7.242800000000000e-01 +-6.807100000000000e-01 +-5.672000000000000e-01 +-4.115200000000000e-01 +-2.442700000000000e-01 +-9.464500000000001e-02 + 1.430100000000000e-02 + 7.177200000000000e-02 + 8.314100000000001e-02 + 6.658699999999999e-02 + 4.192600000000000e-02 + 1.818200000000000e-02 +-1.048200000000000e-02 +-5.598300000000000e-02 +-1.205000000000000e-01 +-1.865900000000000e-01 +-2.230800000000000e-01 +-2.047100000000000e-01 +-1.315600000000000e-01 +-3.268100000000000e-02 + 5.047500000000000e-02 + 8.979100000000000e-02 + 8.673900000000000e-02 + 6.742500000000000e-02 + 6.115100000000000e-02 + 7.999000000000001e-02 + 1.154600000000000e-01 + 1.537400000000000e-01 + 1.949700000000000e-01 + 2.582100000000000e-01 + 3.655900000000000e-01 + 5.169800000000000e-01 + 6.763700000000000e-01 + 7.833800000000000e-01 + 7.848500000000000e-01 + 6.655900000000000e-01 + 4.573500000000000e-01 + 2.207400000000000e-01 + 1.335300000000000e-02 +-1.344500000000000e-01 +-2.229700000000000e-01 +-2.694400000000000e-01 +-2.918100000000000e-01 +-3.030000000000000e-01 +-3.158100000000000e-01 +-3.485200000000000e-01 +-4.210200000000000e-01 +-5.418300000000000e-01 +-6.965900000000000e-01 +-8.499700000000000e-01 +-9.622400000000000e-01 +-1.009500000000000e+00 +-9.922200000000000e-01 +-9.260000000000000e-01 +-8.217900000000000e-01 +-6.727700000000000e-01 +-4.591500000000000e-01 +-1.682400000000000e-01 + 1.854400000000000e-01 + 5.562700000000000e-01 + 8.837300000000000e-01 + 1.118500000000000e+00 + 1.241000000000000e+00 + 1.262800000000000e+00 + 1.211800000000000e+00 + 1.116700000000000e+00 + 9.980400000000000e-01 + 8.712200000000000e-01 + 7.507900000000000e-01 + 6.489600000000000e-01 + 5.669100000000000e-01 + 4.872100000000000e-01 + 3.773500000000000e-01 + 2.066700000000000e-01 +-3.224700000000000e-02 +-3.123500000000000e-01 +-5.805700000000000e-01 +-7.825700000000000e-01 +-8.895100000000000e-01 +-9.106600000000000e-01 +-8.853600000000000e-01 +-8.602600000000000e-01 +-8.663300000000000e-01 +-9.077400000000000e-01 +-9.657600000000000e-01 +-1.011300000000000e+00 +-1.017000000000000e+00 +-9.625700000000000e-01 +-8.352700000000000e-01 +-6.298000000000000e-01 +-3.507100000000000e-01 +-1.641100000000000e-02 + 3.401600000000000e-01 + 6.774100000000000e-01 + 9.568300000000000e-01 + 1.155000000000000e+00 + 1.269600000000000e+00 + 1.316300000000000e+00 + 1.318600000000000e+00 + 1.295200000000000e+00 + 1.251900000000000e+00 + 1.179600000000000e+00 + 1.059800000000000e+00 + 8.740400000000000e-01 + 6.137700000000000e-01 + 2.880300000000000e-01 +-7.527600000000000e-02 +-4.347000000000000e-01 +-7.465600000000000e-01 +-9.779099999999999e-01 +-1.115800000000000e+00 +-1.168700000000000e+00 +-1.159300000000000e+00 +-1.113200000000000e+00 +-1.048200000000000e+00 +-9.703900000000000e-01 +-8.756300000000000e-01 +-7.552000000000000e-01 +-6.015600000000000e-01 +-4.125800000000000e-01 +-1.944300000000000e-01 + 3.666300000000000e-02 + 2.552000000000000e-01 + 4.319400000000000e-01 + 5.447600000000000e-01 + 5.907400000000000e-01 + 5.918400000000000e-01 + 5.879100000000000e-01 + 6.175700000000000e-01 + 6.963800000000000e-01 + 8.053600000000000e-01 + 8.980800000000000e-01 + 9.232800000000000e-01 + 8.498800000000000e-01 + 6.794600000000000e-01 + 4.401000000000000e-01 + 1.679900000000000e-01 +-1.088000000000000e-01 +-3.736800000000000e-01 +-6.121100000000000e-01 +-8.006100000000000e-01 +-9.064100000000000e-01 +-9.015100000000000e-01 +-7.822000000000000e-01 +-5.793600000000000e-01 +-3.503300000000000e-01 +-1.555600000000000e-01 +-3.376100000000000e-02 + 9.983300000000001e-03 +-1.483900000000000e-03 +-3.407500000000000e-02 +-5.786700000000000e-02 +-5.338800000000000e-02 +-1.006600000000000e-02 + 7.588300000000001e-02 + 1.988000000000000e-01 + 3.381800000000000e-01 + 4.581500000000000e-01 + 5.176900000000000e-01 + 4.890300000000000e-01 + 3.737900000000000e-01 + 2.054300000000000e-01 + 3.503600000000000e-02 +-9.184199999999999e-02 +-1.536900000000000e-01 +-1.568500000000000e-01 +-1.250000000000000e-01 +-8.353900000000000e-02 +-4.941300000000000e-02 +-3.049600000000000e-02 +-3.051000000000000e-02 +-5.207900000000000e-02 +-9.431500000000000e-02 +-1.482000000000000e-01 +-1.964500000000000e-01 +-2.213100000000000e-01 +-2.162400000000000e-01 +-1.925300000000000e-01 +-1.738400000000000e-01 +-1.803600000000000e-01 +-2.127200000000000e-01 +-2.473100000000000e-01 +-2.478300000000000e-01 +-1.866200000000000e-01 +-6.208000000000000e-02 + 9.902500000000000e-02 + 2.557300000000000e-01 + 3.740400000000000e-01 + 4.415100000000000e-01 + 4.672200000000000e-01 + 4.694200000000000e-01 + 4.609500000000000e-01 + 4.425900000000000e-01 + 4.071700000000000e-01 + 3.490600000000000e-01 + 2.705400000000000e-01 + 1.803700000000000e-01 + 8.725800000000000e-02 +-5.158800000000000e-03 +-9.682200000000001e-02 +-1.849400000000000e-01 +-2.593700000000000e-01 +-3.055000000000000e-01 +-3.140100000000000e-01 +-2.903800000000000e-01 +-2.557600000000000e-01 +-2.365600000000000e-01 +-2.485900000000000e-01 +-2.863000000000000e-01 +-3.248000000000000e-01 +-3.337100000000000e-01 +-2.938200000000000e-01 +-2.064700000000000e-01 +-9.089500000000000e-02 + 2.677900000000000e-02 + 1.247700000000000e-01 + 1.907400000000000e-01 + 2.204700000000000e-01 + 2.141400000000000e-01 + 1.747100000000000e-01 + 1.089900000000000e-01 + 2.860200000000000e-02 +-5.182600000000000e-02 +-1.189500000000000e-01 +-1.645100000000000e-01 +-1.859400000000000e-01 +-1.845000000000000e-01 +-1.636100000000000e-01 +-1.297300000000000e-01 +-9.415000000000000e-02 +-7.149800000000001e-02 +-7.266800000000000e-02 +-9.508500000000000e-02 +-1.177600000000000e-01 +-1.073200000000000e-01 +-3.392800000000000e-02 + 1.118300000000000e-01 + 3.121300000000000e-01 + 5.299600000000000e-01 + 7.263100000000000e-01 + 8.748200000000000e-01 + 9.648700000000000e-01 + 9.937700000000000e-01 + 9.572600000000000e-01 + 8.479300000000000e-01 + 6.632600000000000e-01 + 4.157300000000000e-01 + 1.351700000000000e-01 +-1.405000000000000e-01 +-3.798300000000000e-01 +-5.673000000000000e-01 +-7.016100000000000e-01 +-7.867300000000000e-01 +-8.254200000000000e-01 +-8.217100000000001e-01 +-7.891100000000000e-01 +-7.539100000000000e-01 +-7.457500000000000e-01 +-7.785900000000000e-01 +-8.359400000000000e-01 +-8.740800000000000e-01 +-8.452300000000000e-01 +-7.271200000000000e-01 +-5.386900000000000e-01 +-3.301800000000000e-01 +-1.533600000000000e-01 +-3.181800000000000e-02 + 4.921200000000000e-02 + 1.281400000000000e-01 + 2.395800000000000e-01 + 3.938800000000000e-01 + 5.761900000000000e-01 + 7.620900000000000e-01 + 9.352400000000000e-01 + 1.093000000000000e+00 + 1.237300000000000e+00 + 1.361100000000000e+00 + 1.442700000000000e+00 + 1.454300000000000e+00 + 1.378600000000000e+00 + 1.220400000000000e+00 + 1.003700000000000e+00 + 7.556100000000000e-01 + 4.891500000000000e-01 + 1.979300000000000e-01 +-1.331400000000000e-01 +-5.075499999999999e-01 +-9.021300000000000e-01 +-1.268600000000000e+00 +-1.552900000000000e+00 +-1.721000000000000e+00 +-1.774300000000000e+00 +-1.745200000000000e+00 +-1.673200000000000e+00 +-1.577400000000000e+00 +-1.442800000000000e+00 +-1.230200000000000e+00 +-9.045500000000000e-01 +-4.642000000000000e-01 + 4.770200000000000e-02 + 5.572800000000000e-01 + 9.902800000000000e-01 + 1.300000000000000e+00 + 1.476800000000000e+00 + 1.536800000000000e+00 + 1.501900000000000e+00 + 1.386300000000000e+00 + 1.197900000000000e+00 + 9.493200000000001e-01 + 6.650300000000000e-01 + 3.774300000000000e-01 + 1.143000000000000e-01 +-1.107600000000000e-01 +-2.961700000000000e-01 +-4.408700000000000e-01 +-5.355500000000000e-01 +-5.671800000000000e-01 +-5.351000000000000e-01 +-4.646900000000000e-01 +-4.028100000000000e-01 +-3.929600000000000e-01 +-4.454200000000000e-01 +-5.249900000000000e-01 +-5.686200000000000e-01 +-5.235500000000000e-01 +-3.805800000000000e-01 +-1.796600000000000e-01 + 1.569600000000000e-02 + 1.564000000000000e-01 + 2.322600000000000e-01 + 2.688400000000000e-01 + 3.035000000000000e-01 + 3.609400000000000e-01 + 4.444600000000000e-01 + 5.433700000000000e-01 + 6.439500000000000e-01 + 7.318900000000000e-01 + 7.862000000000000e-01 + 7.759100000000000e-01 + 6.700800000000000e-01 + 4.583900000000000e-01 + 1.671300000000000e-01 +-1.453700000000000e-01 +-4.151600000000000e-01 +-6.046899999999999e-01 +-7.180200000000000e-01 +-7.886300000000001e-01 +-8.493600000000000e-01 +-9.072400000000000e-01 +-9.407100000000000e-01 +-9.188900000000000e-01 +-8.256200000000000e-01 +-6.694400000000000e-01 +-4.741600000000000e-01 +-2.608700000000000e-01 +-3.789200000000000e-02 + 1.937500000000000e-01 + 4.267500000000000e-01 + 6.399000000000000e-01 + 8.045200000000000e-01 + 8.994500000000000e-01 + 9.217400000000000e-01 + 8.839500000000000e-01 + 8.019200000000000e-01 + 6.849200000000000e-01 + 5.373000000000000e-01 + 3.685700000000000e-01 + 2.000100000000000e-01 + 5.786400000000000e-02 +-4.388400000000000e-02 +-1.168100000000000e-01 +-1.935400000000000e-01 +-3.049500000000000e-01 +-4.542700000000000e-01 +-6.078000000000000e-01 +-7.105700000000000e-01 +-7.173300000000000e-01 +-6.175600000000000e-01 +-4.387900000000000e-01 +-2.284200000000000e-01 +-2.953800000000000e-02 + 1.324600000000000e-01 + 2.469500000000000e-01 + 3.073700000000000e-01 + 3.060300000000000e-01 + 2.400700000000000e-01 + 1.224100000000000e-01 +-1.449400000000000e-02 +-1.284800000000000e-01 +-1.857600000000000e-01 +-1.750300000000000e-01 +-1.082800000000000e-01 +-9.964799999999999e-03 + 9.569200000000000e-02 + 1.902400000000000e-01 + 2.586100000000000e-01 + 2.861600000000000e-01 + 2.621900000000000e-01 + 1.892200000000000e-01 + 8.915400000000000e-02 +-2.457600000000000e-03 +-5.407800000000000e-02 +-5.674300000000000e-02 +-2.971900000000000e-02 +-7.661600000000000e-03 +-1.738300000000000e-02 +-6.051000000000000e-02 +-1.143200000000000e-01 +-1.495400000000000e-01 +-1.513800000000000e-01 +-1.282700000000000e-01 +-1.025500000000000e-01 +-9.126800000000000e-02 +-9.243400000000000e-02 +-8.704700000000000e-02 +-5.476300000000000e-02 + 9.191100000000001e-03 + 8.868600000000000e-02 + 1.564500000000000e-01 + 1.910600000000000e-01 + 1.885500000000000e-01 + 1.607800000000000e-01 + 1.234000000000000e-01 + 8.342500000000000e-02 + 3.651900000000000e-02 +-2.453300000000000e-02 +-9.704400000000001e-02 +-1.619500000000000e-01 +-1.896600000000000e-01 +-1.555000000000000e-01 +-5.517100000000000e-02 + 8.938400000000001e-02 + 2.373700000000000e-01 + 3.453500000000000e-01 + 3.830800000000000e-01 + 3.415900000000000e-01 + 2.311100000000000e-01 + 7.319800000000000e-02 +-1.072600000000000e-01 +-2.859800000000000e-01 +-4.398200000000000e-01 +-5.471100000000000e-01 +-5.908200000000000e-01 +-5.641300000000000e-01 +-4.748300000000000e-01 +-3.445500000000000e-01 +-2.016600000000000e-01 +-7.055800000000000e-02 + 3.679500000000000e-02 + 1.227000000000000e-01 + 1.978700000000000e-01 + 2.714400000000000e-01 + 3.426800000000000e-01 + 3.990000000000000e-01 + 4.214500000000000e-01 + 3.949900000000000e-01 + 3.181300000000000e-01 + 2.073600000000000e-01 + 9.352100000000001e-02 + 1.135600000000000e-02 +-1.391100000000000e-02 + 2.294600000000000e-02 + 1.044900000000000e-01 + 1.975700000000000e-01 + 2.672000000000000e-01 + 2.909100000000000e-01 + 2.665800000000000e-01 + 2.099900000000000e-01 + 1.437400000000000e-01 + 8.421200000000000e-02 + 3.407800000000000e-02 +-1.594200000000000e-02 +-7.817000000000000e-02 +-1.585100000000000e-01 +-2.527500000000000e-01 +-3.504300000000000e-01 +-4.424900000000000e-01 +-5.263200000000000e-01 +-6.041400000000000e-01 +-6.760900000000000e-01 +-7.335199999999999e-01 +-7.584800000000000e-01 +-7.305600000000000e-01 +-6.368700000000000e-01 +-4.786100000000000e-01 +-2.699200000000000e-01 +-3.064800000000000e-02 + 2.208800000000000e-01 + 4.696100000000000e-01 + 6.992699999999999e-01 + 8.869600000000000e-01 + 1.003600000000000e+00 + 1.022900000000000e+00 + 9.348500000000000e-01 + 7.540700000000000e-01 + 5.166400000000000e-01 + 2.661100000000000e-01 + 3.746700000000000e-02 +-1.505100000000000e-01 +-2.905800000000000e-01 +-3.757100000000000e-01 +-3.923600000000000e-01 +-3.262100000000000e-01 +-1.775600000000000e-01 + 2.574200000000000e-02 + 2.302300000000000e-01 + 3.763600000000000e-01 + 4.250500000000000e-01 + 3.744200000000000e-01 + 2.557500000000000e-01 + 1.119500000000000e-01 +-2.629700000000000e-02 +-1.510700000000000e-01 +-2.695300000000000e-01 +-3.871500000000000e-01 +-4.967400000000000e-01 +-5.813199999999999e-01 +-6.267700000000000e-01 +-6.313100000000000e-01 +-6.032200000000000e-01 +-5.489000000000001e-01 +-4.638300000000000e-01 +-3.364400000000000e-01 +-1.639100000000000e-01 + 3.354500000000000e-02 + 2.140400000000000e-01 + 3.339300000000000e-01 + 3.733600000000000e-01 + 3.484500000000000e-01 + 2.999400000000000e-01 + 2.657700000000000e-01 + 2.575500000000000e-01 + 2.576800000000000e-01 + 2.380700000000000e-01 + 1.848800000000000e-01 + 1.100000000000000e-01 + 4.178600000000000e-02 + 4.187700000000000e-03 + 1.726700000000000e-03 + 2.120400000000000e-02 + 4.615000000000000e-02 + 6.983300000000001e-02 + 9.555900000000001e-02 + 1.257600000000000e-01 + 1.520800000000000e-01 + 1.576800000000000e-01 + 1.312800000000000e-01 + 8.048000000000000e-02 + 3.109500000000000e-02 + 1.062500000000000e-02 + 2.779400000000000e-02 + 6.475599999999999e-02 + 8.900000000000000e-02 + 7.634000000000001e-02 + 2.745700000000000e-02 +-3.421400000000000e-02 +-8.056400000000000e-02 +-9.808100000000000e-02 +-9.403900000000000e-02 +-8.718400000000000e-02 +-9.304800000000001e-02 +-1.166400000000000e-01 +-1.564600000000000e-01 +-2.122800000000000e-01 +-2.858800000000000e-01 +-3.717400000000000e-01 +-4.466600000000000e-01 +-4.715400000000000e-01 +-4.103200000000000e-01 +-2.560900000000000e-01 +-4.562400000000000e-02 + 1.514500000000000e-01 + 2.654000000000000e-01 + 2.621000000000000e-01 + 1.598600000000000e-01 + 1.754000000000000e-02 +-9.719100000000000e-02 +-1.394400000000000e-01 +-1.012500000000000e-01 +-4.509400000000000e-03 + 1.177400000000000e-01 + 2.376500000000000e-01 + 3.382900000000000e-01 + 4.104800000000000e-01 + 4.479600000000000e-01 + 4.467600000000000e-01 + 4.087700000000000e-01 + 3.446700000000000e-01 + 2.716100000000000e-01 + 2.057100000000000e-01 + 1.535300000000000e-01 + 1.085300000000000e-01 + 5.525200000000000e-02 +-2.072000000000000e-02 +-1.229200000000000e-01 +-2.402500000000000e-01 +-3.518400000000000e-01 +-4.379000000000000e-01 +-4.896500000000000e-01 +-5.115900000000000e-01 +-5.142500000000000e-01 +-5.021300000000000e-01 +-4.660300000000000e-01 +-3.868900000000000e-01 +-2.501800000000000e-01 +-6.120700000000000e-02 + 1.504600000000000e-01 + 3.430100000000000e-01 + 4.838300000000000e-01 + 5.655900000000000e-01 + 6.046500000000000e-01 + 6.220500000000000e-01 + 6.213700000000000e-01 + 5.808800000000000e-01 + 4.679700000000000e-01 + 2.667100000000000e-01 +-1.232700000000000e-03 +-2.785600000000000e-01 +-4.974000000000000e-01 +-6.116700000000000e-01 +-6.163800000000000e-01 +-5.436000000000000e-01 +-4.408000000000000e-01 +-3.473300000000000e-01 +-2.821000000000000e-01 +-2.448700000000000e-01 +-2.238100000000000e-01 +-2.016800000000000e-01 +-1.589000000000000e-01 +-7.802400000000000e-02 + 4.773900000000000e-02 + 2.053400000000000e-01 + 3.605700000000000e-01 + 4.698300000000000e-01 + 5.005600000000000e-01 + 4.479500000000000e-01 + 3.367200000000000e-01 + 2.070000000000000e-01 + 9.451700000000000e-02 + 1.811600000000000e-02 +-1.970000000000000e-02 +-2.443200000000000e-02 +-3.395200000000000e-03 + 3.332200000000000e-02 + 6.908400000000001e-02 + 8.258300000000000e-02 + 5.853000000000000e-02 + 3.395300000000000e-04 +-6.675399999999999e-02 +-1.077700000000000e-01 +-9.850100000000001e-02 +-3.982500000000000e-02 + 4.465200000000000e-02 + 1.249400000000000e-01 + 1.811200000000000e-01 + 2.071400000000000e-01 + 2.012900000000000e-01 + 1.556600000000000e-01 + 5.766000000000000e-02 +-9.483400000000000e-02 +-2.781000000000000e-01 +-4.439500000000000e-01 +-5.425000000000000e-01 +-5.524800000000000e-01 +-4.957800000000000e-01 +-4.226100000000000e-01 +-3.758100000000000e-01 +-3.597800000000000e-01 +-3.378200000000000e-01 +-2.608400000000000e-01 +-1.068300000000000e-01 + 9.809200000000000e-02 + 2.927000000000000e-01 + 4.187000000000000e-01 + 4.569700000000000e-01 + 4.371900000000000e-01 + 4.157700000000000e-01 + 4.380200000000000e-01 + 5.098900000000000e-01 + 5.954600000000000e-01 + 6.392000000000000e-01 + 5.972400000000000e-01 + 4.597300000000000e-01 + 2.540800000000000e-01 + 3.050500000000000e-02 +-1.611100000000000e-01 +-2.914700000000000e-01 +-3.607800000000000e-01 +-3.930100000000000e-01 +-4.189600000000000e-01 +-4.568600000000000e-01 +-5.017700000000000e-01 +-5.304600000000000e-01 +-5.187800000000000e-01 +-4.598300000000000e-01 +-3.695900000000000e-01 +-2.751600000000000e-01 +-1.942400000000000e-01 +-1.221900000000000e-01 +-3.780100000000000e-02 + 7.553100000000000e-02 + 2.099200000000000e-01 + 3.316600000000000e-01 + 4.017700000000000e-01 + 4.044000000000000e-01 + 3.611000000000000e-01 + 3.188200000000000e-01 + 3.187700000000000e-01 + 3.680600000000000e-01 + 4.342700000000000e-01 + 4.663500000000000e-01 + 4.264300000000000e-01 + 3.108600000000000e-01 + 1.479700000000000e-01 +-2.214300000000000e-02 +-1.692100000000000e-01 +-2.813400000000000e-01 +-3.584600000000000e-01 +-4.004200000000000e-01 +-4.013900000000000e-01 +-3.548100000000000e-01 +-2.638200000000000e-01 +-1.475600000000000e-01 +-3.811600000000000e-02 + 3.049800000000000e-02 + 3.524500000000000e-02 +-2.701900000000000e-02 +-1.375500000000000e-01 +-2.610500000000000e-01 +-3.573600000000000e-01 +-3.966900000000000e-01 +-3.727000000000000e-01 +-3.059800000000000e-01 +-2.332900000000000e-01 +-1.859500000000000e-01 +-1.694900000000000e-01 +-1.582100000000000e-01 +-1.102100000000000e-01 + 5.478200000000000e-03 + 1.871200000000000e-01 + 3.985500000000000e-01 + 5.881999999999999e-01 + 7.154800000000000e-01 + 7.667900000000000e-01 + 7.528899999999999e-01 + 6.936000000000000e-01 + 6.039200000000000e-01 + 4.915700000000000e-01 + 3.639300000000000e-01 + 2.342400000000000e-01 + 1.186400000000000e-01 + 2.612700000000000e-02 +-4.848600000000000e-02 +-1.203500000000000e-01 +-2.012400000000000e-01 +-2.886500000000000e-01 +-3.679200000000000e-01 +-4.263900000000000e-01 +-4.670500000000000e-01 +-5.076000000000001e-01 +-5.629500000000000e-01 +-6.244800000000000e-01 +-6.551900000000001e-01 +-6.089300000000000e-01 +-4.630500000000000e-01 +-2.407200000000000e-01 +-4.557900000000000e-03 + 1.769200000000000e-01 + 2.682500000000000e-01 + 2.845100000000000e-01 + 2.755200000000000e-01 + 2.878500000000000e-01 + 3.312200000000000e-01 + 3.721800000000000e-01 + 3.583500000000000e-01 + 2.560700000000000e-01 + 7.620499999999999e-02 +-1.280600000000000e-01 +-2.888000000000000e-01 +-3.581400000000000e-01 +-3.296800000000000e-01 +-2.353400000000000e-01 +-1.224700000000000e-01 +-2.622900000000000e-02 + 4.606600000000000e-02 + 1.107000000000000e-01 + 1.877600000000000e-01 + 2.794500000000000e-01 + 3.613300000000000e-01 + 3.931800000000000e-01 + 3.436900000000000e-01 + 2.136100000000000e-01 + 4.159100000000000e-02 +-1.125200000000000e-01 +-1.977200000000000e-01 +-1.964700000000000e-01 +-1.285800000000000e-01 +-3.271500000000000e-02 + 6.041100000000000e-02 + 1.440900000000000e-01 + 2.302500000000000e-01 + 3.284900000000000e-01 + 4.270900000000000e-01 + 4.918500000000000e-01 + 4.846400000000000e-01 + 3.885500000000000e-01 + 2.214500000000000e-01 + 2.856200000000000e-02 +-1.404200000000000e-01 +-2.541700000000000e-01 +-3.092700000000000e-01 +-3.241600000000000e-01 +-3.255100000000000e-01 +-3.371900000000000e-01 +-3.757500000000000e-01 +-4.492300000000000e-01 +-5.548300000000000e-01 +-6.752899999999999e-01 +-7.794800000000000e-01 +-8.316400000000000e-01 +-8.071500000000000e-01 +-7.052800000000000e-01 +-5.491900000000000e-01 +-3.716300000000000e-01 +-1.956300000000000e-01 +-2.351400000000000e-02 + 1.579700000000000e-01 + 3.606800000000000e-01 + 5.791500000000001e-01 + 7.874700000000000e-01 + 9.504899999999999e-01 + 1.041000000000000e+00 + 1.050700000000000e+00 + 9.892000000000000e-01 + 8.742799999999999e-01 + 7.228800000000000e-01 + 5.485400000000000e-01 + 3.653200000000000e-01 + 1.916900000000000e-01 + 4.888300000000000e-02 +-4.676200000000000e-02 +-9.245399999999999e-02 +-1.022000000000000e-01 +-1.019900000000000e-01 +-1.192300000000000e-01 +-1.719500000000000e-01 +-2.624600000000000e-01 +-3.774400000000000e-01 +-4.932100000000000e-01 +-5.836300000000000e-01 +-6.276900000000000e-01 +-6.147500000000000e-01 +-5.462100000000000e-01 +-4.337900000000000e-01 +-2.959200000000000e-01 +-1.538200000000000e-01 +-2.808200000000000e-02 + 6.489000000000000e-02 + 1.173500000000000e-01 + 1.342800000000000e-01 + 1.336700000000000e-01 + 1.395200000000000e-01 + 1.684700000000000e-01 + 2.165500000000000e-01 + 2.558800000000000e-01 + 2.467200000000000e-01 + 1.605500000000000e-01 + 9.123100000000001e-04 +-1.923200000000000e-01 +-3.600000000000000e-01 +-4.529100000000000e-01 +-4.552300000000000e-01 +-3.881500000000000e-01 +-2.927900000000000e-01 +-2.051200000000000e-01 +-1.397100000000000e-01 +-9.070499999999999e-02 +-4.495800000000000e-02 + 5.261400000000000e-03 + 5.998800000000000e-02 + 1.187900000000000e-01 + 1.881000000000000e-01 + 2.796800000000000e-01 + 3.999900000000000e-01 + 5.391899999999999e-01 + 6.701300000000000e-01 + 7.597900000000000e-01 + 7.860600000000000e-01 + 7.483400000000000e-01 + 6.652400000000001e-01 + 5.624600000000000e-01 + 4.600700000000000e-01 + 3.670200000000000e-01 + 2.836000000000000e-01 + 2.063100000000000e-01 + 1.296800000000000e-01 + 4.484900000000000e-02 +-6.066500000000000e-02 +-1.977300000000000e-01 +-3.665200000000000e-01 +-5.504599999999999e-01 +-7.197600000000000e-01 +-8.447500000000000e-01 +-9.115100000000000e-01 +-9.291800000000000e-01 +-9.239500000000000e-01 +-9.231300000000000e-01 +-9.393300000000000e-01 +-9.640100000000000e-01 +-9.729600000000000e-01 +-9.387400000000000e-01 +-8.422300000000000e-01 +-6.779400000000000e-01 +-4.527900000000000e-01 +-1.816100000000000e-01 + 1.171700000000000e-01 + 4.245000000000000e-01 + 7.225800000000000e-01 + 9.964200000000000e-01 + 1.234700000000000e+00 + 1.429000000000000e+00 + 1.572300000000000e+00 + 1.656600000000000e+00 + 1.672400000000000e+00 + 1.609800000000000e+00 + 1.460900000000000e+00 + 1.223600000000000e+00 + 9.047300000000000e-01 + 5.229200000000001e-01 + 1.095400000000000e-01 +-2.945100000000000e-01 +-6.471800000000000e-01 +-9.172400000000001e-01 +-1.094500000000000e+00 +-1.192400000000000e+00 +-1.240100000000000e+00 +-1.267500000000000e+00 +-1.289500000000000e+00 +-1.299600000000000e+00 +-1.274100000000000e+00 +-1.185000000000000e+00 +-1.013000000000000e+00 +-7.562700000000000e-01 +-4.312300000000000e-01 +-6.784999999999999e-02 + 2.976100000000000e-01 + 6.303400000000000e-01 + 9.037500000000001e-01 + 1.103600000000000e+00 + 1.227400000000000e+00 + 1.278100000000000e+00 + 1.255500000000000e+00 + 1.151200000000000e+00 + 9.534800000000000e-01 + 6.608100000000000e-01 + 2.966200000000000e-01 +-8.660900000000001e-02 +-4.205200000000000e-01 +-6.470000000000000e-01 +-7.429500000000000e-01 +-7.286000000000000e-01 +-6.539900000000000e-01 +-5.717800000000000e-01 +-5.128600000000000e-01 +-4.783700000000000e-01 +-4.497900000000000e-01 +-4.071900000000000e-01 +-3.422400000000000e-01 +-2.590000000000000e-01 +-1.657600000000000e-01 +-6.726400000000000e-02 + 3.598500000000000e-02 + 1.422800000000000e-01 + 2.437900000000000e-01 + 3.280300000000000e-01 + 3.853300000000000e-01 + 4.160500000000000e-01 + 4.311300000000000e-01 + 4.452800000000000e-01 + 4.679900000000000e-01 + 4.991300000000000e-01 + 5.315700000000000e-01 + 5.571100000000000e-01 + 5.696099999999999e-01 + 5.631400000000000e-01 + 5.282900000000000e-01 + 4.527200000000000e-01 + 3.281700000000000e-01 + 1.595700000000000e-01 +-3.215400000000000e-02 +-2.186200000000000e-01 +-3.798600000000000e-01 +-5.168000000000000e-01 +-6.498000000000000e-01 +-8.024200000000000e-01 +-9.800500000000000e-01 +-1.158400000000000e+00 +-1.290500000000000e+00 +-1.328200000000000e+00 +-1.245600000000000e+00 +-1.049300000000000e+00 +-7.707200000000000e-01 +-4.490300000000000e-01 +-1.151900000000000e-01 + 2.122300000000000e-01 + 5.214400000000000e-01 + 7.997600000000000e-01 + 1.031900000000000e+00 + 1.204800000000000e+00 + 1.313700000000000e+00 + 1.361300000000000e+00 + 1.350500000000000e+00 + 1.276500000000000e+00 + 1.126900000000000e+00 + 8.923200000000000e-01 + 5.816700000000000e-01 + 2.294300000000000e-01 +-1.117100000000000e-01 +-3.906500000000000e-01 +-5.783600000000000e-01 +-6.766000000000000e-01 +-7.103200000000000e-01 +-7.105300000000000e-01 +-6.993500000000000e-01 +-6.857500000000000e-01 +-6.711300000000000e-01 +-6.567600000000000e-01 +-6.453900000000000e-01 +-6.360900000000000e-01 +-6.182000000000000e-01 +-5.716599999999999e-01 +-4.750800000000000e-01 +-3.165200000000000e-01 +-9.937300000000000e-02 + 1.596200000000000e-01 + 4.366700000000000e-01 + 7.050800000000000e-01 + 9.345300000000000e-01 + 1.089700000000000e+00 + 1.135200000000000e+00 + 1.049200000000000e+00 + 8.388800000000000e-01 + 5.462200000000000e-01 + 2.350900000000000e-01 +-3.496000000000000e-02 +-2.332900000000000e-01 +-3.651100000000000e-01 +-4.562400000000000e-01 +-5.272300000000000e-01 +-5.760500000000000e-01 +-5.821000000000000e-01 +-5.278300000000000e-01 +-4.201700000000000e-01 +-2.941200000000000e-01 +-1.940700000000000e-01 +-1.461900000000000e-01 +-1.421100000000000e-01 +-1.463000000000000e-01 +-1.218800000000000e-01 +-5.605400000000000e-02 + 3.256600000000000e-02 + 1.090600000000000e-01 + 1.475200000000000e-01 + 1.479900000000000e-01 + 1.340200000000000e-01 + 1.341900000000000e-01 + 1.621200000000000e-01 + 2.085200000000000e-01 + 2.491100000000000e-01 + 2.606500000000000e-01 + 2.339500000000000e-01 + 1.765000000000000e-01 + 1.062700000000000e-01 + 4.270700000000000e-02 + 5.282900000000001e-04 +-1.264600000000000e-02 + 3.401100000000000e-03 + 4.168900000000000e-02 + 8.945900000000000e-02 + 1.322000000000000e-01 + 1.596700000000000e-01 + 1.703900000000000e-01 + 1.710300000000000e-01 + 1.702200000000000e-01 + 1.708500000000000e-01 + 1.664700000000000e-01 + 1.445000000000000e-01 + 9.350400000000000e-02 + 9.173900000000000e-03 +-1.051200000000000e-01 +-2.420400000000000e-01 +-3.936200000000000e-01 +-5.506600000000000e-01 +-6.988200000000000e-01 +-8.163600000000000e-01 +-8.777300000000000e-01 +-8.622900000000000e-01 +-7.626800000000000e-01 +-5.871800000000000e-01 +-3.547500000000000e-01 +-8.762200000000001e-02 + 1.925200000000000e-01 + 4.627000000000000e-01 + 6.954000000000000e-01 + 8.605800000000000e-01 + 9.354100000000000e-01 + 9.163900000000000e-01 + 8.241300000000000e-01 + 6.948100000000000e-01 + 5.618600000000000e-01 + 4.394300000000000e-01 + 3.191300000000000e-01 + 1.824800000000000e-01 + 1.971100000000000e-02 +-1.585900000000000e-01 +-3.251100000000000e-01 +-4.512000000000000e-01 +-5.218000000000000e-01 +-5.393000000000000e-01 +-5.152900000000000e-01 +-4.587400000000000e-01 +-3.712900000000000e-01 +-2.531200000000000e-01 +-1.129600000000000e-01 + 2.820200000000000e-02 + 1.447600000000000e-01 + 2.204700000000000e-01 + 2.574600000000000e-01 + 2.720800000000000e-01 + 2.800800000000000e-01 + 2.821200000000000e-01 + 2.611900000000000e-01 + 1.943200000000000e-01 + 7.032200000000000e-02 +-9.930500000000000e-02 +-2.832300000000000e-01 +-4.436800000000000e-01 +-5.500000000000000e-01 +-5.843900000000000e-01 +-5.395200000000000e-01 +-4.152200000000000e-01 +-2.204500000000000e-01 + 2.049000000000000e-02 + 2.654400000000000e-01 + 4.632900000000000e-01 + 5.733900000000000e-01 + 5.845000000000000e-01 + 5.197300000000000e-01 + 4.217700000000000e-01 + 3.266700000000000e-01 + 2.434300000000000e-01 + 1.533700000000000e-01 + 2.973800000000000e-02 +-1.362100000000000e-01 +-3.215700000000000e-01 +-4.804300000000000e-01 +-5.691200000000000e-01 +-5.709400000000000e-01 +-5.038300000000000e-01 +-4.066100000000000e-01 +-3.138000000000000e-01 +-2.361100000000000e-01 +-1.587400000000000e-01 +-5.701600000000000e-02 + 8.239100000000001e-02 + 2.489100000000000e-01 + 4.118000000000000e-01 + 5.364500000000000e-01 + 6.022200000000000e-01 + 6.105200000000000e-01 + 5.791900000000000e-01 + 5.281000000000000e-01 + 4.660200000000000e-01 + 3.870800000000000e-01 + 2.788800000000000e-01 + 1.361900000000000e-01 +-2.920300000000000e-02 +-1.895800000000000e-01 +-3.135400000000000e-01 +-3.819600000000000e-01 +-3.977600000000000e-01 +-3.828100000000000e-01 +-3.639200000000000e-01 +-3.566300000000000e-01 +-3.574500000000000e-01 +-3.490100000000000e-01 +-3.142200000000000e-01 +-2.493100000000000e-01 +-1.668300000000000e-01 +-8.725900000000000e-02 +-2.594000000000000e-02 + 1.498000000000000e-02 + 4.432500000000000e-02 + 7.193700000000000e-02 + 9.908000000000000e-02 + 1.163400000000000e-01 + 1.100100000000000e-01 + 7.177400000000000e-02 + 5.043800000000000e-03 +-7.527600000000000e-02 +-1.477300000000000e-01 +-1.899700000000000e-01 +-1.831100000000000e-01 +-1.155700000000000e-01 + 1.181500000000000e-02 + 1.809800000000000e-01 + 3.564600000000000e-01 + 4.941800000000000e-01 + 5.577100000000000e-01 + 5.343700000000000e-01 + 4.411700000000000e-01 + 3.157600000000000e-01 + 1.970900000000000e-01 + 1.072900000000000e-01 + 4.532400000000000e-02 +-4.977200000000000e-03 +-5.966700000000000e-02 +-1.227200000000000e-01 +-1.841900000000000e-01 +-2.274500000000000e-01 +-2.392700000000000e-01 +-2.165900000000000e-01 +-1.683800000000000e-01 +-1.140500000000000e-01 +-7.967500000000000e-02 +-9.120100000000000e-02 +-1.638200000000000e-01 +-2.903000000000000e-01 +-4.355800000000000e-01 +-5.447800000000000e-01 +-5.646000000000000e-01 +-4.680300000000000e-01 +-2.677900000000000e-01 +-9.097800000000000e-03 + 2.537700000000000e-01 + 4.815800000000000e-01 + 6.587700000000000e-01 + 7.828100000000000e-01 + 8.455200000000000e-01 + 8.244600000000000e-01 + 6.942199999999999e-01 + 4.507500000000000e-01 + 1.296800000000000e-01 +-1.983300000000000e-01 +-4.563100000000000e-01 +-5.966800000000000e-01 +-6.213400000000000e-01 +-5.730100000000000e-01 +-5.046500000000000e-01 +-4.474400000000000e-01 +-3.976300000000000e-01 +-3.284700000000000e-01 +-2.165900000000000e-01 +-6.415200000000000e-02 + 9.719300000000000e-02 + 2.213800000000000e-01 + 2.716500000000000e-01 + 2.389900000000000e-01 + 1.464100000000000e-01 + 3.838700000000000e-02 +-3.820000000000000e-02 +-5.299100000000000e-02 +-3.116900000000000e-03 + 8.797700000000000e-02 + 1.832100000000000e-01 + 2.501700000000000e-01 + 2.760000000000000e-01 + 2.708100000000000e-01 + 2.579800000000000e-01 + 2.577300000000000e-01 + 2.745300000000000e-01 + 2.964700000000000e-01 + 3.055700000000000e-01 + 2.903400000000000e-01 + 2.507200000000000e-01 + 1.925100000000000e-01 + 1.176800000000000e-01 + 2.054800000000000e-02 +-1.056200000000000e-01 +-2.568800000000000e-01 +-4.126100000000000e-01 +-5.425400000000000e-01 +-6.228800000000000e-01 +-6.494400000000000e-01 +-6.368000000000000e-01 +-6.039900000000000e-01 +-5.579499999999999e-01 +-4.889800000000000e-01 +-3.818800000000000e-01 +-2.337200000000000e-01 +-6.230600000000000e-02 + 1.025900000000000e-01 + 2.390200000000000e-01 + 3.467900000000000e-01 + 4.427900000000000e-01 + 5.399700000000000e-01 + 6.269600000000000e-01 + 6.664800000000000e-01 + 6.169900000000000e-01 + 4.638300000000000e-01 + 2.370600000000000e-01 + 1.931400000000000e-03 +-1.726100000000000e-01 +-2.469600000000000e-01 +-2.244100000000000e-01 +-1.396000000000000e-01 +-3.337700000000000e-02 + 6.660500000000000e-02 + 1.485600000000000e-01 + 2.062500000000000e-01 + 2.293400000000000e-01 + 2.052600000000000e-01 + 1.309600000000000e-01 + 2.313600000000000e-02 +-8.456000000000000e-02 +-1.581000000000000e-01 +-1.825100000000000e-01 +-1.701900000000000e-01 +-1.519700000000000e-01 +-1.572500000000000e-01 +-1.966500000000000e-01 +-2.577100000000000e-01 +-3.141700000000000e-01 +-3.406200000000000e-01 +-3.231400000000000e-01 +-2.620000000000000e-01 +-1.689500000000000e-01 +-6.342600000000000e-02 + 3.093700000000000e-02 + 9.175200000000000e-02 + 1.066200000000000e-01 + 8.176100000000000e-02 + 4.330500000000000e-02 + 2.625800000000000e-02 + 5.472300000000000e-02 + 1.253700000000000e-01 + 2.068600000000000e-01 + 2.583900000000000e-01 + 2.566900000000000e-01 + 2.130100000000000e-01 + 1.666900000000000e-01 + 1.580600000000000e-01 + 1.984900000000000e-01 + 2.588100000000000e-01 + 2.858400000000000e-01 + 2.366900000000000e-01 + 1.082600000000000e-01 +-5.838900000000000e-02 +-2.016900000000000e-01 +-2.755800000000000e-01 +-2.740600000000000e-01 +-2.295100000000000e-01 +-1.881200000000000e-01 +-1.805500000000000e-01 +-2.070300000000000e-01 +-2.440500000000000e-01 +-2.640200000000000e-01 +-2.521700000000000e-01 +-2.099100000000000e-01 +-1.462300000000000e-01 +-6.768299999999999e-02 + 2.336400000000000e-02 + 1.218500000000000e-01 + 2.131100000000000e-01 + 2.751400000000000e-01 + 2.910700000000000e-01 + 2.629900000000000e-01 + 2.148000000000000e-01 + 1.794500000000000e-01 + 1.777400000000000e-01 + 2.036700000000000e-01 + 2.279100000000000e-01 + 2.179800000000000e-01 + 1.617800000000000e-01 + 7.782200000000000e-02 + 4.548800000000000e-03 +-2.453200000000000e-02 +-3.499200000000000e-03 + 4.030400000000000e-02 + 6.100200000000000e-02 + 1.989500000000000e-02 +-9.324700000000000e-02 +-2.547300000000000e-01 +-4.186600000000000e-01 +-5.379600000000000e-01 +-5.835500000000000e-01 +-5.536700000000000e-01 +-4.711300000000000e-01 +-3.718300000000000e-01 +-2.897900000000000e-01 +-2.444400000000000e-01 +-2.344900000000000e-01 +-2.403900000000000e-01 +-2.342600000000000e-01 +-1.927300000000000e-01 +-1.064600000000000e-01 + 1.845400000000000e-02 + 1.673100000000000e-01 + 3.269900000000000e-01 + 4.925000000000000e-01 + 6.656200000000000e-01 + 8.467000000000000e-01 + 1.025600000000000e+00 + 1.178000000000000e+00 + 1.270700000000000e+00 + 1.272100000000000e+00 + 1.162900000000000e+00 + 9.430600000000000e-01 + 6.310600000000000e-01 + 2.588200000000000e-01 +-1.356100000000000e-01 +-5.151600000000000e-01 +-8.492900000000000e-01 +-1.117200000000000e+00 +-1.307900000000000e+00 +-1.417700000000000e+00 +-1.446100000000000e+00 +-1.392100000000000e+00 +-1.255700000000000e+00 +-1.042100000000000e+00 +-7.673700000000000e-01 +-4.618400000000000e-01 +-1.659000000000000e-01 + 7.932599999999999e-02 + 2.439800000000000e-01 + 3.184700000000000e-01 + 3.159100000000000e-01 + 2.670400000000000e-01 + 2.100200000000000e-01 + 1.788500000000000e-01 + 1.945000000000000e-01 + 2.616000000000000e-01 + 3.711600000000000e-01 + 5.075300000000000e-01 + 6.555400000000000e-01 + 8.035300000000000e-01 + 9.408500000000000e-01 + 1.052200000000000e+00 + 1.114200000000000e+00 + 1.099700000000000e+00 + 9.893300000000000e-01 + 7.834100000000001e-01 + 5.077700000000001e-01 + 2.058900000000000e-01 +-7.846599999999999e-02 +-3.189800000000000e-01 +-5.142099999999999e-01 +-6.805600000000001e-01 +-8.361000000000000e-01 +-9.858100000000000e-01 +-1.117300000000000e+00 +-1.208200000000000e+00 +-1.238000000000000e+00 +-1.196900000000000e+00 +-1.086600000000000e+00 +-9.162800000000000e-01 +-6.989600000000000e-01 +-4.520200000000000e-01 +-1.990400000000000e-01 + 3.188100000000000e-02 + 2.164500000000000e-01 + 3.455500000000000e-01 + 4.316000000000000e-01 + 5.034700000000000e-01 + 5.909100000000000e-01 + 7.071900000000000e-01 + 8.409500000000000e-01 + 9.627100000000000e-01 + 1.041800000000000e+00 + 1.062500000000000e+00 + 1.028300000000000e+00 + 9.541900000000000e-01 + 8.510400000000000e-01 + 7.169300000000000e-01 + 5.403600000000000e-01 + 3.139800000000000e-01 + 4.833800000000000e-02 +-2.254700000000000e-01 +-4.678200000000000e-01 +-6.506700000000000e-01 +-7.726700000000000e-01 +-8.587500000000000e-01 +-9.433600000000000e-01 +-1.047300000000000e+00 +-1.162500000000000e+00 +-1.254600000000000e+00 +-1.281200000000000e+00 +-1.214300000000000e+00 +-1.053600000000000e+00 +-8.229000000000000e-01 +-5.546700000000000e-01 +-2.740000000000000e-01 + 7.733200000000000e-03 + 2.874600000000000e-01 + 5.603700000000000e-01 + 8.144900000000000e-01 + 1.034100000000000e+00 + 1.207700000000000e+00 + 1.332800000000000e+00 + 1.411600000000000e+00 + 1.441600000000000e+00 + 1.410500000000000e+00 + 1.300300000000000e+00 + 1.102200000000000e+00 + 8.284700000000000e-01 + 5.148200000000001e-01 + 2.070000000000000e-01 +-5.816000000000000e-02 +-2.657500000000000e-01 +-4.215100000000000e-01 +-5.393100000000000e-01 +-6.282600000000000e-01 +-6.894300000000000e-01 +-7.232400000000000e-01 +-7.394700000000000e-01 +-7.596900000000000e-01 +-8.085900000000000e-01 +-9.000899999999999e-01 +-1.028000000000000e+00 +-1.167700000000000e+00 +-1.285800000000000e+00 +-1.349900000000000e+00 +-1.334100000000000e+00 +-1.218200000000000e+00 +-9.896900000000000e-01 +-6.495200000000000e-01 +-2.201400000000000e-01 + 2.533600000000000e-01 + 7.141700000000000e-01 + 1.113200000000000e+00 + 1.425700000000000e+00 + 1.653000000000000e+00 + 1.809200000000000e+00 + 1.902000000000000e+00 + 1.922500000000000e+00 + 1.852900000000000e+00 + 1.682800000000000e+00 + 1.423600000000000e+00 + 1.106100000000000e+00 + 7.636100000000000e-01 + 4.144900000000000e-01 + 5.713900000000000e-02 +-3.165000000000000e-01 +-6.994400000000000e-01 +-1.056800000000000e+00 +-1.333200000000000e+00 +-1.476900000000000e+00 +-1.467400000000000e+00 +-1.328000000000000e+00 +-1.117500000000000e+00 +-9.058200000000000e-01 +-7.480400000000000e-01 +-6.684600000000001e-01 +-6.592900000000000e-01 +-6.905200000000000e-01 +-7.240500000000000e-01 +-7.262100000000000e-01 +-6.761500000000000e-01 +-5.691800000000000e-01 +-4.146500000000000e-01 +-2.292700000000000e-01 +-2.809600000000000e-02 + 1.821300000000000e-01 + 4.032700000000000e-01 + 6.392300000000000e-01 + 8.864000000000000e-01 + 1.127900000000000e+00 + 1.336200000000000e+00 + 1.482900000000000e+00 + 1.550600000000000e+00 + 1.539600000000000e+00 + 1.464700000000000e+00 + 1.345100000000000e+00 + 1.192300000000000e+00 + 1.004100000000000e+00 + 7.670200000000000e-01 + 4.679900000000000e-01 + 1.069100000000000e-01 +-2.950700000000000e-01 +-6.978200000000000e-01 +-1.054800000000000e+00 +-1.330000000000000e+00 +-1.509600000000000e+00 +-1.602600000000000e+00 +-1.628200000000000e+00 +-1.600100000000000e+00 +-1.516800000000000e+00 +-1.367100000000000e+00 +-1.146100000000000e+00 +-8.704400000000000e-01 +-5.807500000000000e-01 +-3.247500000000000e-01 +-1.323400000000000e-01 + 1.990000000000000e-03 + 1.162500000000000e-01 + 2.581900000000000e-01 + 4.569900000000000e-01 + 7.073300000000000e-01 + 9.749900000000000e-01 + 1.217800000000000e+00 + 1.406400000000000e+00 + 1.530600000000000e+00 + 1.591400000000000e+00 + 1.587000000000000e+00 + 1.507700000000000e+00 + 1.343300000000000e+00 + 1.096500000000000e+00 + 7.891000000000000e-01 + 4.545500000000000e-01 + 1.215400000000000e-01 +-1.991800000000000e-01 +-5.139200000000000e-01 +-8.315399999999999e-01 +-1.146400000000000e+00 +-1.431700000000000e+00 +-1.648700000000000e+00 +-1.765400000000000e+00 +-1.771500000000000e+00 +-1.680300000000000e+00 +-1.517400000000000e+00 +-1.305500000000000e+00 +-1.055500000000000e+00 +-7.673400000000000e-01 +-4.387000000000000e-01 +-7.393900000000000e-02 + 3.123400000000000e-01 + 6.966500000000000e-01 + 1.050400000000000e+00 + 1.343300000000000e+00 + 1.547800000000000e+00 + 1.643700000000000e+00 + 1.625000000000000e+00 + 1.504000000000000e+00 + 1.309500000000000e+00 + 1.077500000000000e+00 + 8.384900000000000e-01 + 6.077700000000000e-01 + 3.845900000000000e-01 + 1.595100000000000e-01 +-7.463800000000000e-02 +-3.150900000000000e-01 +-5.486000000000000e-01 +-7.568300000000000e-01 +-9.234000000000000e-01 +-1.038100000000000e+00 +-1.097400000000000e+00 +-1.101800000000000e+00 +-1.054600000000000e+00 +-9.609500000000000e-01 +-8.284800000000000e-01 +-6.671100000000000e-01 +-4.879500000000000e-01 +-3.016000000000000e-01 +-1.171200000000000e-01 + 5.792800000000000e-02 + 2.168000000000000e-01 + 3.532700000000000e-01 + 4.622900000000000e-01 + 5.412900000000000e-01 + 5.910700000000000e-01 + 6.154900000000000e-01 + 6.198100000000000e-01 + 6.082000000000000e-01 + 5.817900000000000e-01 + 5.382800000000000e-01 + 4.738200000000000e-01 + 3.867500000000000e-01 + 2.815500000000000e-01 + 1.705300000000000e-01 + 7.113100000000000e-02 +-9.165200000000000e-04 +-3.996100000000000e-02 +-5.540700000000000e-02 +-6.963300000000000e-02 +-1.086100000000000e-01 +-1.894500000000000e-01 +-3.113300000000000e-01 +-4.546100000000000e-01 +-5.882400000000000e-01 +-6.812100000000000e-01 +-7.118900000000000e-01 +-6.719600000000000e-01 +-5.653300000000000e-01 +-4.052200000000000e-01 +-2.117100000000000e-01 +-9.617300000000001e-03 + 1.754200000000000e-01 + 3.232800000000000e-01 + 4.256700000000000e-01 + 4.877100000000000e-01 + 5.222100000000000e-01 + 5.391300000000000e-01 + 5.372900000000000e-01 + 5.050400000000000e-01 + 4.307500000000000e-01 + 3.159700000000000e-01 + 1.811300000000000e-01 + 5.782200000000000e-02 +-2.838900000000000e-02 +-7.309200000000000e-02 +-9.476999999999999e-02 +-1.209600000000000e-01 +-1.680800000000000e-01 +-2.292900000000000e-01 +-2.796800000000000e-01 +-2.953800000000000e-01 +-2.730300000000000e-01 +-2.352900000000000e-01 +-2.178500000000000e-01 +-2.466400000000000e-01 +-3.206900000000000e-01 +-4.118400000000000e-01 +-4.806300000000000e-01 +-4.969100000000000e-01 +-4.517000000000000e-01 +-3.545100000000000e-01 +-2.209500000000000e-01 +-6.135600000000000e-02 + 1.214500000000000e-01 + 3.255000000000000e-01 + 5.411400000000000e-01 + 7.481900000000000e-01 + 9.210500000000000e-01 + 1.037600000000000e+00 + 1.085300000000000e+00 + 1.061300000000000e+00 + 9.681400000000000e-01 + 8.100800000000000e-01 + 5.933200000000000e-01 + 3.293300000000000e-01 + 3.765500000000000e-02 +-2.555700000000000e-01 +-5.236900000000000e-01 +-7.472500000000000e-01 +-9.192300000000000e-01 +-1.045100000000000e+00 +-1.137200000000000e+00 +-1.206900000000000e+00 +-1.255700000000000e+00 +-1.271400000000000e+00 +-1.230100000000000e+00 +-1.104600000000000e+00 +-8.772000000000000e-01 +-5.501300000000000e-01 +-1.494400000000000e-01 + 2.815500000000000e-01 + 6.954300000000000e-01 + 1.053700000000000e+00 + 1.332500000000000e+00 + 1.520100000000000e+00 + 1.609400000000000e+00 + 1.593700000000000e+00 + 1.469800000000000e+00 + 1.245500000000000e+00 + 9.454600000000000e-01 + 6.091299999999999e-01 + 2.795300000000000e-01 +-9.796700000000000e-03 +-2.429800000000000e-01 +-4.211800000000000e-01 +-5.554200000000000e-01 +-6.588700000000000e-01 +-7.424400000000000e-01 +-8.136100000000001e-01 +-8.752200000000000e-01 +-9.227900000000000e-01 +-9.423100000000000e-01 +-9.128700000000000e-01 +-8.157300000000000e-01 +-6.463300000000000e-01 +-4.216200000000000e-01 +-1.772900000000000e-01 + 4.466100000000000e-02 + 2.109500000000000e-01 + 3.067900000000000e-01 + 3.364700000000000e-01 + 3.172300000000000e-01 + 2.717600000000000e-01 + 2.228000000000000e-01 + 1.893900000000000e-01 + 1.827700000000000e-01 + 2.021600000000000e-01 + 2.340300000000000e-01 + 2.584200000000000e-01 + 2.613500000000000e-01 + 2.457100000000000e-01 + 2.321300000000000e-01 + 2.464500000000000e-01 + 3.008400000000000e-01 + 3.812200000000000e-01 + 4.508400000000000e-01 + 4.690900000000000e-01 + 4.136800000000000e-01 + 2.918900000000000e-01 + 1.344000000000000e-01 +-2.285100000000000e-02 +-1.559100000000000e-01 +-2.589100000000000e-01 +-3.379600000000000e-01 +-4.002300000000000e-01 +-4.470700000000000e-01 +-4.742800000000000e-01 +-4.761200000000000e-01 +-4.479600000000000e-01 +-3.859400000000000e-01 +-2.870100000000000e-01 +-1.527800000000000e-01 + 3.585400000000000e-03 + 1.537600000000000e-01 + 2.599700000000000e-01 + 2.900000000000000e-01 + 2.333200000000000e-01 + 1.077700000000000e-01 +-4.853400000000000e-02 +-1.950500000000000e-01 +-3.048300000000000e-01 +-3.688500000000000e-01 +-3.879700000000000e-01 +-3.611300000000000e-01 +-2.807600000000000e-01 +-1.395300000000000e-01 + 5.647800000000000e-02 + 2.793500000000000e-01 + 4.834900000000000e-01 + 6.216100000000000e-01 + 6.636800000000000e-01 + 6.078800000000000e-01 + 4.778800000000000e-01 + 3.094500000000000e-01 + 1.348100000000000e-01 +-2.630400000000000e-02 +-1.653000000000000e-01 +-2.763500000000000e-01 +-3.483100000000000e-01 +-3.640600000000000e-01 +-3.091700000000000e-01 +-1.852200000000000e-01 +-1.870500000000000e-02 + 1.426200000000000e-01 + 2.470500000000000e-01 + 2.621200000000000e-01 + 1.904200000000000e-01 + 6.780200000000000e-02 +-5.620200000000000e-02 +-1.439200000000000e-01 +-1.852200000000000e-01 +-1.937400000000000e-01 +-1.879700000000000e-01 +-1.722300000000000e-01 +-1.326400000000000e-01 +-5.140500000000000e-02 + 7.185999999999999e-02 + 2.091900000000000e-01 + 3.138900000000000e-01 + 3.454800000000000e-01 + 2.929700000000000e-01 + 1.803800000000000e-01 + 5.115000000000000e-02 +-5.694300000000000e-02 +-1.293000000000000e-01 +-1.745600000000000e-01 +-2.105200000000000e-01 +-2.484200000000000e-01 +-2.863500000000000e-01 +-3.135700000000000e-01 +-3.189200000000000e-01 +-2.961800000000000e-01 +-2.442800000000000e-01 +-1.663500000000000e-01 +-7.127699999999999e-02 + 2.365500000000000e-02 + 9.460800000000000e-02 + 1.209000000000000e-01 + 9.853400000000000e-02 + 4.732800000000000e-02 + 3.758000000000000e-03 + 1.233300000000000e-03 + 5.006400000000000e-02 + 1.310500000000000e-01 + 2.076500000000000e-01 + 2.485600000000000e-01 + 2.452200000000000e-01 + 2.132500000000000e-01 + 1.790800000000000e-01 + 1.629700000000000e-01 + 1.703700000000000e-01 + 1.948400000000000e-01 + 2.267400000000000e-01 + 2.586500000000000e-01 + 2.843300000000000e-01 + 2.952000000000000e-01 + 2.805400000000000e-01 + 2.334100000000000e-01 + 1.569400000000000e-01 + 6.440200000000000e-02 +-2.894400000000000e-02 +-1.163000000000000e-01 +-2.034400000000000e-01 +-3.024000000000000e-01 +-4.192600000000000e-01 +-5.455100000000001e-01 +-6.593000000000000e-01 +-7.352200000000000e-01 +-7.547600000000000e-01 +-7.107900000000000e-01 +-6.054800000000000e-01 +-4.469800000000000e-01 +-2.494200000000000e-01 +-3.549800000000000e-02 + 1.639300000000000e-01 + 3.176100000000000e-01 + 4.063500000000000e-01 + 4.316300000000000e-01 + 4.131100000000000e-01 + 3.756400000000000e-01 + 3.351900000000000e-01 + 2.940300000000000e-01 + 2.482800000000000e-01 + 2.001100000000000e-01 + 1.631100000000000e-01 + 1.552600000000000e-01 + 1.848700000000000e-01 + 2.415200000000000e-01 + 3.002500000000000e-01 + 3.364400000000000e-01 + 3.395800000000000e-01 + 3.153600000000000e-01 + 2.751200000000000e-01 + 2.225800000000000e-01 + 1.497500000000000e-01 + 4.581500000000000e-02 +-8.844100000000001e-02 +-2.332800000000000e-01 +-3.569800000000000e-01 +-4.330500000000000e-01 +-4.556700000000000e-01 +-4.427300000000000e-01 +-4.247100000000000e-01 +-4.271000000000000e-01 +-4.568400000000000e-01 +-4.990700000000000e-01 +-5.240000000000000e-01 +-4.993000000000000e-01 +-4.035300000000000e-01 +-2.366500000000000e-01 +-2.436600000000000e-02 + 1.876000000000000e-01 + 3.500600000000000e-01 + 4.325400000000000e-01 + 4.394300000000000e-01 + 4.084400000000000e-01 + 3.889500000000000e-01 + 4.112800000000000e-01 + 4.664000000000000e-01 + 5.105499999999999e-01 + 4.933800000000000e-01 + 3.914500000000000e-01 + 2.248000000000000e-01 + 4.538300000000000e-02 +-9.399800000000000e-02 +-1.688400000000000e-01 +-1.912200000000000e-01 +-1.941600000000000e-01 +-2.057300000000000e-01 +-2.319100000000000e-01 +-2.585000000000000e-01 +-2.671100000000000e-01 +-2.511500000000000e-01 +-2.198400000000000e-01 +-1.893100000000000e-01 +-1.694500000000000e-01 +-1.566000000000000e-01 +-1.365100000000000e-01 +-9.388199999999999e-02 +-2.181700000000000e-02 + 7.331799999999999e-02 + 1.724800000000000e-01 + 2.487500000000000e-01 + 2.757100000000000e-01 + 2.383600000000000e-01 + 1.434400000000000e-01 + 2.260700000000000e-02 +-7.686300000000000e-02 +-1.129300000000000e-01 +-7.119800000000000e-02 + 2.508400000000000e-02 + 1.256200000000000e-01 + 1.797400000000000e-01 + 1.632200000000000e-01 + 8.863799999999999e-02 +-6.397600000000000e-03 +-8.396900000000000e-02 +-1.262000000000000e-01 +-1.387600000000000e-01 +-1.383600000000000e-01 +-1.364200000000000e-01 +-1.321200000000000e-01 +-1.185100000000000e-01 +-9.406900000000000e-02 +-6.803900000000000e-02 +-5.410200000000000e-02 +-5.757700000000000e-02 +-6.742600000000000e-02 +-6.069500000000000e-02 +-1.704300000000000e-02 + 6.722499999999999e-02 + 1.758800000000000e-01 + 2.823300000000000e-01 + 3.645400000000000e-01 + 4.144400000000000e-01 + 4.358600000000000e-01 + 4.340100000000000e-01 + 4.056800000000000e-01 + 3.381200000000000e-01 + 2.178500000000000e-01 + 4.323500000000000e-02 +-1.677900000000000e-01 +-3.802400000000000e-01 +-5.537600000000000e-01 +-6.572500000000000e-01 +-6.792300000000000e-01 +-6.293900000000000e-01 +-5.316200000000000e-01 +-4.127500000000000e-01 +-2.925300000000000e-01 +-1.794400000000000e-01 +-7.352200000000000e-02 + 2.608100000000000e-02 + 1.140800000000000e-01 + 1.772600000000000e-01 + 1.998600000000000e-01 + 1.736500000000000e-01 + 1.066100000000000e-01 + 2.470700000000000e-02 +-3.557700000000000e-02 +-4.092000000000000e-02 + 2.552900000000000e-02 + 1.574700000000000e-01 + 3.281400000000000e-01 + 5.002900000000000e-01 + 6.383700000000000e-01 + 7.176399999999999e-01 + 7.276800000000000e-01 + 6.707100000000000e-01 + 5.573700000000000e-01 + 4.027200000000000e-01 + 2.237500000000000e-01 + 3.832500000000000e-02 +-1.357900000000000e-01 +-2.826400000000000e-01 +-3.906300000000000e-01 +-4.548200000000000e-01 +-4.777000000000000e-01 +-4.682200000000000e-01 +-4.395900000000000e-01 +-4.070700000000000e-01 +-3.861400000000000e-01 +-3.901600000000000e-01 +-4.263300000000000e-01 +-4.902200000000000e-01 +-5.619400000000000e-01 +-6.081400000000000e-01 +-5.925400000000000e-01 +-4.920100000000000e-01 +-3.104500000000000e-01 +-8.133400000000000e-02 + 1.447700000000000e-01 + 3.224900000000000e-01 + 4.316700000000000e-01 + 4.834200000000000e-01 + 5.089100000000000e-01 + 5.381300000000000e-01 + 5.818500000000000e-01 + 6.271300000000000e-01 + 6.473300000000000e-01 + 6.187000000000000e-01 + 5.328400000000000e-01 + 3.994200000000000e-01 + 2.403600000000000e-01 + 8.140000000000000e-02 +-5.454000000000000e-02 +-1.517000000000000e-01 +-2.048500000000000e-01 +-2.217200000000000e-01 +-2.213600000000000e-01 +-2.259900000000000e-01 +-2.481400000000000e-01 +-2.808600000000000e-01 +-2.992200000000000e-01 +-2.750400000000000e-01 +-1.965400000000000e-01 +-7.958200000000000e-02 + 3.873000000000000e-02 + 1.209000000000000e-01 + 1.504700000000000e-01 + 1.390000000000000e-01 + 1.141900000000000e-01 + 9.813800000000000e-02 + 9.211700000000000e-02 + 7.833400000000000e-02 + 3.613800000000000e-02 +-4.064300000000000e-02 +-1.382600000000000e-01 +-2.323100000000000e-01 +-3.030500000000000e-01 +-3.445800000000000e-01 +-3.622600000000000e-01 +-3.628900000000000e-01 +-3.474100000000000e-01 +-3.118800000000000e-01 +-2.541300000000000e-01 +-1.784300000000000e-01 +-9.336400000000000e-02 +-5.627000000000000e-03 + 8.294100000000000e-02 + 1.711100000000000e-01 + 2.507500000000000e-01 + 3.051800000000000e-01 + 3.185600000000000e-01 + 2.911500000000000e-01 + 2.474400000000000e-01 + 2.269700000000000e-01 + 2.604800000000000e-01 + 3.468900000000000e-01 + 4.488400000000000e-01 + 5.120200000000000e-01 + 4.965100000000000e-01 + 3.986600000000000e-01 + 2.492300000000000e-01 + 9.092000000000000e-02 +-4.648000000000000e-02 +-1.552600000000000e-01 +-2.393800000000000e-01 +-2.973400000000000e-01 +-3.161700000000000e-01 +-2.834900000000000e-01 +-2.069700000000000e-01 +-1.221600000000000e-01 +-7.731499999999999e-02 +-1.031800000000000e-01 +-1.896400000000000e-01 +-2.886300000000000e-01 +-3.436900000000000e-01 +-3.262500000000000e-01 +-2.527600000000000e-01 +-1.706700000000000e-01 +-1.242100000000000e-01 +-1.251500000000000e-01 +-1.491300000000000e-01 +-1.578100000000000e-01 +-1.279400000000000e-01 +-6.504500000000001e-02 + 6.964400000000000e-03 + 6.909100000000000e-02 + 1.228400000000000e-01 + 1.851900000000000e-01 + 2.678500000000000e-01 + 3.588600000000000e-01 + 4.228100000000000e-01 + 4.205300000000000e-01 + 3.341000000000000e-01 + 1.788900000000000e-01 +-4.818500000000000e-03 +-1.727500000000000e-01 +-2.942000000000000e-01 +-3.555500000000000e-01 +-3.522600000000000e-01 +-2.811500000000000e-01 +-1.422100000000000e-01 + 5.125000000000000e-02 + 2.655900000000000e-01 + 4.531900000000000e-01 + 5.719000000000000e-01 + 6.050000000000000e-01 + 5.669400000000000e-01 + 4.896800000000000e-01 + 3.994900000000000e-01 + 3.013700000000000e-01 + 1.826800000000000e-01 + 3.227700000000000e-02 +-1.409600000000000e-01 +-3.060600000000000e-01 +-4.274100000000000e-01 +-4.891700000000000e-01 +-5.076500000000000e-01 +-5.212100000000000e-01 +-5.636600000000000e-01 +-6.394300000000001e-01 +-7.178200000000000e-01 +-7.504100000000000e-01 +-6.994100000000000e-01 +-5.583800000000000e-01 +-3.527900000000000e-01 +-1.224200000000000e-01 + 1.004200000000000e-01 + 3.022500000000000e-01 + 4.831700000000000e-01 + 6.416200000000000e-01 + 7.618900000000000e-01 + 8.145000000000000e-01 + 7.701000000000000e-01 + 6.184800000000000e-01 + 3.809600000000000e-01 + 1.084900000000000e-01 +-1.341400000000000e-01 +-2.908300000000000e-01 +-3.331700000000000e-01 +-2.681400000000000e-01 +-1.319200000000000e-01 + 2.655800000000000e-02 + 1.647200000000000e-01 + 2.598500000000000e-01 + 3.119100000000000e-01 + 3.358500000000000e-01 + 3.486200000000000e-01 + 3.581900000000000e-01 + 3.598400000000000e-01 + 3.404100000000000e-01 + 2.866300000000000e-01 + 1.923400000000000e-01 + 6.110600000000000e-02 +-9.561699999999999e-02 +-2.622200000000000e-01 +-4.221200000000000e-01 +-5.597299999999999e-01 +-6.622800000000000e-01 +-7.220900000000000e-01 +-7.385300000000000e-01 +-7.177000000000000e-01 +-6.687800000000000e-01 +-5.986600000000000e-01 +-5.081900000000000e-01 +-3.933900000000000e-01 +-2.517600000000000e-01 +-8.986200000000000e-02 + 7.303999999999999e-02 + 2.090100000000000e-01 + 2.924200000000000e-01 + 3.128000000000000e-01 + 2.827900000000000e-01 + 2.362400000000000e-01 + 2.160800000000000e-01 + 2.564700000000000e-01 + 3.668600000000000e-01 + 5.254600000000000e-01 + 6.860100000000000e-01 + 7.956500000000000e-01 + 8.163600000000000e-01 + 7.397300000000000e-01 + 5.877700000000000e-01 + 3.994800000000000e-01 + 2.109100000000000e-01 + 4.022700000000000e-02 +-1.139500000000000e-01 +-2.608400000000000e-01 +-4.013600000000000e-01 +-5.191000000000000e-01 +-5.850300000000000e-01 +-5.733100000000000e-01 +-4.777400000000000e-01 +-3.183100000000000e-01 +-1.341600000000000e-01 + 3.203800000000000e-02 + 1.484100000000000e-01 + 1.999900000000000e-01 + 1.861500000000000e-01 + 1.148100000000000e-01 +-9.001900000000000e-04 +-1.423800000000000e-01 +-2.849900000000000e-01 +-4.016400000000000e-01 +-4.707200000000000e-01 +-4.843200000000000e-01 +-4.508500000000000e-01 +-3.896400000000000e-01 +-3.207000000000000e-01 +-2.558000000000000e-01 +-1.957300000000000e-01 +-1.337500000000000e-01 +-6.114600000000000e-02 + 2.900800000000000e-02 + 1.408800000000000e-01 + 2.753000000000000e-01 + 4.273500000000000e-01 + 5.827599999999999e-01 + 7.171100000000000e-01 + 8.012899999999999e-01 + 8.126100000000001e-01 + 7.460300000000000e-01 + 6.180800000000000e-01 + 4.602100000000000e-01 + 3.044100000000000e-01 + 1.693000000000000e-01 + 5.444100000000000e-02 +-5.468800000000000e-02 +-1.749500000000000e-01 +-3.142200000000000e-01 +-4.662400000000000e-01 +-6.126500000000000e-01 +-7.296800000000000e-01 +-7.954300000000000e-01 +-7.955400000000000e-01 +-7.267700000000000e-01 +-5.985600000000000e-01 +-4.320500000000000e-01 +-2.555400000000000e-01 +-9.652500000000000e-02 + 2.734100000000000e-02 + 1.141200000000000e-01 + 1.769300000000000e-01 + 2.363200000000000e-01 + 3.090900000000000e-01 + 3.990100000000000e-01 + 4.941700000000000e-01 + 5.723400000000000e-01 + 6.115600000000000e-01 + 6.008000000000000e-01 + 5.455000000000000e-01 + 4.652000000000000e-01 + 3.841200000000000e-01 + 3.194800000000000e-01 + 2.732000000000000e-01 + 2.318000000000000e-01 + 1.745400000000000e-01 + 8.564500000000000e-02 +-3.650700000000000e-02 +-1.786000000000000e-01 +-3.201600000000000e-01 +-4.446000000000000e-01 +-5.458800000000000e-01 +-6.265600000000000e-01 +-6.893300000000000e-01 +-7.294300000000000e-01 +-7.347300000000000e-01 +-6.944300000000000e-01 +-6.100200000000000e-01 +-4.992500000000000e-01 +-3.883500000000000e-01 +-2.967000000000000e-01 +-2.246200000000000e-01 +-1.539400000000000e-01 +-6.228700000000000e-02 + 5.832700000000000e-02 + 1.922500000000000e-01 + 3.079800000000000e-01 + 3.789000000000000e-01 + 4.032500000000000e-01 + 4.091500000000000e-01 + 4.400800000000000e-01 + 5.294200000000000e-01 + 6.795099999999999e-01 + 8.580800000000000e-01 + 1.013300000000000e+00 + 1.097600000000000e+00 + 1.086800000000000e+00 + 9.847000000000000e-01 + 8.138900000000000e-01 + 6.015400000000000e-01 + 3.681000000000000e-01 + 1.241700000000000e-01 +-1.259100000000000e-01 +-3.782900000000000e-01 +-6.255700000000000e-01 +-8.557800000000000e-01 +-1.054000000000000e+00 +-1.205100000000000e+00 +-1.297200000000000e+00 +-1.323900000000000e+00 +-1.285400000000000e+00 +-1.186100000000000e+00 +-1.032100000000000e+00 +-8.292600000000000e-01 +-5.847400000000000e-01 +-3.122100000000000e-01 +-3.535300000000000e-02 + 2.145500000000000e-01 + 4.086100000000000e-01 + 5.333500000000000e-01 + 5.985800000000000e-01 + 6.336000000000001e-01 + 6.728400000000000e-01 + 7.386000000000000e-01 + 8.312600000000000e-01 + 9.316900000000000e-01 + 1.012600000000000e+00 + 1.050200000000000e+00 + 1.029300000000000e+00 + 9.414700000000000e-01 + 7.826700000000000e-01 + 5.544300000000000e-01 + 2.691800000000000e-01 +-4.627000000000000e-02 +-3.552000000000000e-01 +-6.228500000000000e-01 +-8.287300000000000e-01 +-9.706200000000000e-01 +-1.057700000000000e+00 +-1.098600000000000e+00 +-1.095000000000000e+00 +-1.044600000000000e+00 +-9.502699999999999e-01 +-8.250800000000000e-01 +-6.861200000000000e-01 +-5.406600000000000e-01 +-3.768500000000000e-01 +-1.692400000000000e-01 + 1.013000000000000e-01 + 4.263200000000000e-01 + 7.637600000000000e-01 + 1.053600000000000e+00 + 1.246600000000000e+00 + 1.327100000000000e+00 + 1.314900000000000e+00 + 1.246900000000000e+00 + 1.151000000000000e+00 + 1.031500000000000e+00 + 8.727500000000000e-01 + 6.566400000000000e-01 + 3.787900000000000e-01 + 5.420100000000000e-02 +-2.888200000000000e-01 +-6.186400000000000e-01 +-9.068600000000000e-01 +-1.130000000000000e+00 +-1.270200000000000e+00 +-1.318900000000000e+00 +-1.281700000000000e+00 +-1.178800000000000e+00 +-1.038100000000000e+00 +-8.839600000000000e-01 +-7.287700000000000e-01 +-5.736700000000000e-01 +-4.169500000000000e-01 +-2.618600000000000e-01 +-1.168400000000000e-01 + 1.217700000000000e-02 + 1.295400000000000e-01 + 2.497000000000000e-01 + 3.876000000000000e-01 + 5.471500000000000e-01 + 7.174700000000001e-01 + 8.798300000000000e-01 + 1.019300000000000e+00 + 1.130300000000000e+00 + 1.212100000000000e+00 + 1.259200000000000e+00 + 1.256600000000000e+00 + 1.188000000000000e+00 + 1.048300000000000e+00 + 8.510900000000000e-01 + 6.211500000000000e-01 + 3.768400000000000e-01 + 1.175800000000000e-01 +-1.714600000000000e-01 +-4.987700000000000e-01 +-8.455900000000000e-01 +-1.163100000000000e+00 +-1.392500000000000e+00 +-1.496000000000000e+00 +-1.475000000000000e+00 +-1.365300000000000e+00 +-1.211500000000000e+00 +-1.042800000000000e+00 +-8.656900000000000e-01 +-6.760000000000000e-01 +-4.749100000000000e-01 +-2.739700000000000e-01 +-8.489200000000000e-02 + 9.389599999999999e-02 + 2.781400000000000e-01 + 4.817400000000000e-01 + 6.963500000000000e-01 + 8.856900000000000e-01 + 1.003000000000000e+00 + 1.020700000000000e+00 + 9.495600000000000e-01 + 8.307600000000001e-01 + 7.069000000000000e-01 + 5.933300000000000e-01 + 4.730700000000000e-01 + 3.188900000000000e-01 + 1.243300000000000e-01 +-8.174500000000000e-02 +-2.493500000000000e-01 +-3.394600000000000e-01 +-3.491000000000000e-01 +-3.106100000000000e-01 +-2.670700000000000e-01 +-2.439900000000000e-01 +-2.381800000000000e-01 +-2.295700000000000e-01 +-2.025700000000000e-01 +-1.581200000000000e-01 +-1.077100000000000e-01 +-5.799700000000000e-02 +-2.622800000000000e-03 + 6.963600000000000e-02 + 1.572300000000000e-01 + 2.359800000000000e-01 + 2.689700000000000e-01 + 2.315100000000000e-01 + 1.326300000000000e-01 + 1.483100000000000e-02 +-7.011500000000000e-02 +-9.350000000000000e-02 +-6.733599999999999e-02 +-3.493800000000000e-02 +-4.143900000000000e-02 +-1.050200000000000e-01 +-2.080500000000000e-01 +-3.121900000000000e-01 +-3.849200000000000e-01 +-4.184300000000000e-01 +-4.294100000000000e-01 +-4.425400000000000e-01 +-4.709900000000000e-01 +-5.071800000000000e-01 +-5.279199999999999e-01 +-5.079800000000000e-01 +-4.318800000000000e-01 +-2.974400000000000e-01 +-1.118100000000000e-01 + 1.140000000000000e-01 + 3.671600000000000e-01 + 6.309100000000000e-01 + 8.826600000000000e-01 + 1.096400000000000e+00 + 1.250100000000000e+00 + 1.334000000000000e+00 + 1.352600000000000e+00 + 1.318300000000000e+00 + 1.238200000000000e+00 + 1.104700000000000e+00 + 8.970200000000000e-01 + 5.945700000000000e-01 + 1.965200000000000e-01 +-2.662500000000000e-01 +-7.356600000000000e-01 +-1.146800000000000e+00 +-1.453100000000000e+00 +-1.640500000000000e+00 +-1.724200000000000e+00 +-1.729300000000000e+00 +-1.671300000000000e+00 +-1.548700000000000e+00 +-1.352400000000000e+00 +-1.082500000000000e+00 +-7.597300000000000e-01 +-4.212400000000000e-01 +-1.041300000000000e-01 + 1.717500000000000e-01 + 4.099100000000000e-01 + 6.288000000000000e-01 + 8.455600000000000e-01 + 1.063100000000000e+00 + 1.267400000000000e+00 + 1.433600000000000e+00 + 1.536200000000000e+00 + 1.556000000000000e+00 + 1.484100000000000e+00 + 1.324300000000000e+00 + 1.093900000000000e+00 + 8.215700000000000e-01 + 5.395900000000000e-01 + 2.724400000000000e-01 + 2.803300000000000e-02 +-2.010000000000000e-01 +-4.250100000000000e-01 +-6.418800000000000e-01 +-8.307099999999999e-01 +-9.614900000000000e-01 +-1.015700000000000e+00 +-1.003000000000000e+00 +-9.608600000000000e-01 +-9.341800000000000e-01 +-9.481800000000000e-01 +-9.926199999999999e-01 +-1.028100000000000e+00 +-1.010100000000000e+00 +-9.145400000000000e-01 +-7.473900000000000e-01 +-5.351399999999999e-01 +-3.040700000000000e-01 +-6.488200000000000e-02 + 1.873600000000000e-01 + 4.599000000000000e-01 + 7.468399999999999e-01 + 1.023100000000000e+00 + 1.251400000000000e+00 + 1.397900000000000e+00 + 1.444700000000000e+00 + 1.395300000000000e+00 + 1.269700000000000e+00 + 1.095400000000000e+00 + 8.984200000000000e-01 + 6.975700000000000e-01 + 5.025100000000000e-01 + 3.142500000000000e-01 + 1.280200000000000e-01 +-6.233400000000000e-02 +-2.593500000000000e-01 +-4.582900000000000e-01 +-6.466000000000000e-01 +-8.072800000000000e-01 +-9.248600000000000e-01 +-9.918900000000000e-01 +-1.012600000000000e+00 +-1.002100000000000e+00 +-9.797300000000000e-01 +-9.590800000000000e-01 +-9.391100000000000e-01 +-9.012800000000000e-01 +-8.165900000000000e-01 +-6.604300000000000e-01 +-4.280000000000000e-01 +-1.405300000000000e-01 + 1.623000000000000e-01 + 4.403300000000000e-01 + 6.700199999999999e-01 + 8.494200000000000e-01 + 9.881100000000000e-01 + 1.089900000000000e+00 + 1.142400000000000e+00 + 1.121800000000000e+00 + 1.011500000000000e+00 + 8.198900000000000e-01 + 5.847400000000000e-01 + 3.582900000000000e-01 + 1.829500000000000e-01 + 7.203200000000000e-02 + 7.358800000000000e-03 +-4.666900000000000e-02 +-1.227100000000000e-01 +-2.357400000000000e-01 +-3.796500000000000e-01 +-5.326300000000000e-01 +-6.654099999999999e-01 +-7.487400000000000e-01 +-7.606300000000000e-01 +-6.943000000000000e-01 +-5.644300000000000e-01 +-4.058900000000000e-01 +-2.611500000000000e-01 +-1.599900000000000e-01 +-1.029800000000000e-01 +-6.051600000000000e-02 + 9.568800000000001e-03 + 1.352100000000000e-01 + 3.108300000000000e-01 + 4.979300000000000e-01 + 6.446700000000000e-01 + 7.113400000000000e-01 + 6.858400000000000e-01 + 5.813900000000000e-01 + 4.218800000000000e-01 + 2.274600000000000e-01 + 1.065200000000000e-02 +-2.171800000000000e-01 +-4.371600000000000e-01 +-6.215500000000000e-01 +-7.422200000000000e-01 +-7.829600000000000e-01 +-7.465300000000000e-01 +-6.511100000000000e-01 +-5.191000000000000e-01 +-3.660100000000000e-01 +-1.967200000000000e-01 +-1.033800000000000e-02 + 1.907700000000000e-01 + 3.946400000000000e-01 + 5.799600000000000e-01 + 7.223500000000000e-01 + 8.027500000000000e-01 + 8.137500000000000e-01 + 7.616900000000000e-01 + 6.649500000000000e-01 + 5.491200000000001e-01 + 4.402700000000000e-01 + 3.569500000000000e-01 + 3.028000000000000e-01 + 2.628100000000000e-01 + 2.066200000000000e-01 + 1.002100000000000e-01 +-7.737700000000000e-02 +-3.195800000000000e-01 +-5.885700000000000e-01 +-8.265100000000000e-01 +-9.784300000000000e-01 +-1.015600000000000e+00 +-9.470300000000000e-01 +-8.116700000000000e-01 +-6.566200000000000e-01 +-5.132200000000000e-01 +-3.860500000000000e-01 +-2.601000000000000e-01 +-1.198700000000000e-01 + 3.379600000000000e-02 + 1.809100000000000e-01 + 2.944400000000000e-01 + 3.576700000000000e-01 + 3.736600000000000e-01 + 3.611200000000000e-01 + 3.411300000000000e-01 + 3.259100000000000e-01 + 3.173900000000000e-01 + 3.140400000000000e-01 + 3.177400000000000e-01 + 3.334900000000000e-01 + 3.626500000000000e-01 + 3.975300000000000e-01 + 4.240100000000000e-01 + 4.314000000000000e-01 + 4.203300000000000e-01 + 4.000500000000000e-01 + 3.754900000000000e-01 + 3.351400000000000e-01 + 2.523200000000000e-01 + 1.030900000000000e-01 +-1.109700000000000e-01 +-3.532200000000000e-01 +-5.658900000000000e-01 +-7.001900000000000e-01 +-7.421300000000000e-01 +-7.154199999999999e-01 +-6.596200000000000e-01 +-6.003600000000000e-01 +-5.342400000000000e-01 +-4.388100000000000e-01 +-2.984100000000000e-01 +-1.242300000000000e-01 + 4.777100000000000e-02 + 1.793300000000000e-01 + 2.545600000000000e-01 + 2.872600000000000e-01 + 3.054600000000000e-01 + 3.259600000000000e-01 + 3.392000000000000e-01 + 3.164900000000000e-01 + 2.342500000000000e-01 + 9.704699999999999e-02 +-5.748700000000000e-02 +-1.757200000000000e-01 +-2.159900000000000e-01 +-1.702900000000000e-01 +-6.753900000000000e-02 + 4.174300000000000e-02 + 1.100600000000000e-01 + 1.143700000000000e-01 + 6.516200000000000e-02 + 1.648300000000000e-04 +-3.404000000000000e-02 +-4.519800000000000e-03 + 9.161100000000000e-02 + 2.253400000000000e-01 + 3.503200000000000e-01 + 4.265000000000000e-01 + 4.392900000000000e-01 + 4.026400000000000e-01 + 3.444800000000000e-01 + 2.853100000000000e-01 + 2.251800000000000e-01 + 1.483400000000000e-01 + 4.064900000000000e-02 +-9.467600000000000e-02 +-2.361600000000000e-01 +-3.587200000000000e-01 +-4.516500000000000e-01 +-5.248000000000000e-01 +-5.973700000000000e-01 +-6.780000000000000e-01 +-7.522799999999999e-01 +-7.879900000000000e-01 +-7.543900000000000e-01 +-6.412800000000000e-01 +-4.645500000000000e-01 +-2.557100000000000e-01 +-4.521400000000000e-02 + 1.483300000000000e-01 + 3.176900000000000e-01 + 4.601700000000000e-01 + 5.730100000000000e-01 + 6.553000000000000e-01 + 7.123900000000000e-01 + 7.554600000000000e-01 + 7.937500000000000e-01 + 8.243800000000000e-01 + 8.289200000000000e-01 + 7.810900000000000e-01 + 6.613700000000000e-01 + 4.689700000000000e-01 + 2.237700000000000e-01 +-4.133900000000000e-02 +-2.911900000000000e-01 +-4.957700000000000e-01 +-6.334900000000000e-01 +-6.937600000000000e-01 +-6.811400000000000e-01 +-6.183600000000000e-01 +-5.420400000000000e-01 +-4.887800000000000e-01 +-4.768400000000000e-01 +-4.949900000000000e-01 +-5.071300000000000e-01 +-4.715600000000000e-01 +-3.636500000000000e-01 +-1.883800000000000e-01 + 2.290800000000000e-02 + 2.272300000000000e-01 + 3.854200000000000e-01 + 4.712800000000000e-01 + 4.740100000000000e-01 + 3.986200000000000e-01 + 2.664400000000000e-01 + 1.132400000000000e-01 +-1.924100000000000e-02 +-9.803199999999999e-02 +-1.121100000000000e-01 +-7.456000000000000e-02 +-1.062400000000000e-02 + 6.031600000000000e-02 + 1.353900000000000e-01 + 2.231000000000000e-01 + 3.268000000000000e-01 + 4.311100000000000e-01 + 5.038600000000000e-01 + 5.137900000000000e-01 + 4.509300000000000e-01 + 3.338800000000000e-01 + 1.981700000000000e-01 + 7.428300000000000e-02 +-2.804100000000000e-02 +-1.187000000000000e-01 +-2.121300000000000e-01 +-3.112200000000000e-01 +-4.024800000000000e-01 +-4.641900000000000e-01 +-4.793200000000000e-01 +-4.430300000000000e-01 +-3.615700000000000e-01 +-2.471400000000000e-01 +-1.157100000000000e-01 + 1.141800000000000e-02 + 1.071400000000000e-01 + 1.452200000000000e-01 + 1.130400000000000e-01 + 2.191500000000000e-02 +-9.445400000000000e-02 +-1.952700000000000e-01 +-2.530400000000000e-01 +-2.657300000000000e-01 +-2.530400000000000e-01 +-2.398700000000000e-01 +-2.388300000000000e-01 +-2.428000000000000e-01 +-2.305100000000000e-01 +-1.797700000000000e-01 +-7.946100000000000e-02 + 6.498200000000000e-02 + 2.330300000000000e-01 + 3.948900000000000e-01 + 5.197600000000000e-01 + 5.851800000000000e-01 + 5.852300000000000e-01 + 5.334700000000000e-01 + 4.572300000000000e-01 + 3.846600000000000e-01 + 3.316600000000000e-01 + 2.970800000000000e-01 + 2.693600000000000e-01 + 2.387800000000000e-01 + 2.051600000000000e-01 + 1.744900000000000e-01 + 1.480900000000000e-01 + 1.148200000000000e-01 + 5.497600000000000e-02 +-4.563400000000000e-02 +-1.827000000000000e-01 +-3.328300000000000e-01 +-4.670500000000000e-01 +-5.677900000000000e-01 +-6.358000000000000e-01 +-6.814100000000000e-01 +-7.082800000000000e-01 +-7.040999999999999e-01 +-6.474800000000001e-01 +-5.259800000000000e-01 +-3.509000000000000e-01 +-1.566500000000000e-01 + 1.533000000000000e-02 + 1.362600000000000e-01 + 2.000200000000000e-01 + 2.192700000000000e-01 + 2.142300000000000e-01 + 2.041100000000000e-01 + 2.048800000000000e-01 + 2.291600000000000e-01 + 2.821500000000000e-01 + 3.545700000000000e-01 + 4.206800000000000e-01 + 4.489700000000000e-01 + 4.227300000000000e-01 + 3.559000000000000e-01 + 2.893800000000000e-01 + 2.653700000000000e-01 + 2.959000000000000e-01 + 3.487700000000000e-01 + 3.638700000000000e-01 + 2.906800000000000e-01 + 1.213000000000000e-01 +-1.038500000000000e-01 +-3.208900000000000e-01 +-4.789800000000000e-01 +-5.627600000000000e-01 +-5.877700000000000e-01 +-5.773600000000000e-01 +-5.419400000000000e-01 +-4.764500000000000e-01 +-3.748600000000000e-01 +-2.460600000000000e-01 +-1.163400000000000e-01 +-1.588200000000000e-02 + 3.948200000000000e-02 + 5.697900000000000e-02 + 6.057200000000000e-02 + 7.583800000000000e-02 + 1.172400000000000e-01 + 1.844000000000000e-01 + 2.657900000000000e-01 + 3.443400000000000e-01 + 4.016900000000000e-01 + 4.225500000000000e-01 + 4.004000000000000e-01 + 3.423100000000000e-01 + 2.670900000000000e-01 + 1.945000000000000e-01 + 1.313500000000000e-01 + 6.597600000000001e-02 +-2.169400000000000e-02 +-1.394400000000000e-01 +-2.676400000000000e-01 +-3.642500000000000e-01 +-3.898300000000000e-01 +-3.358300000000000e-01 +-2.341600000000000e-01 +-1.391900000000000e-01 +-9.383900000000001e-02 +-1.041000000000000e-01 +-1.399700000000000e-01 +-1.602400000000000e-01 +-1.410400000000000e-01 +-8.680200000000000e-02 +-1.864300000000000e-02 + 4.651300000000000e-02 + 1.067200000000000e-01 + 1.678300000000000e-01 + 2.276900000000000e-01 + 2.691200000000000e-01 + 2.698500000000000e-01 + 2.216000000000000e-01 + 1.404200000000000e-01 + 5.773400000000000e-02 +-1.746900000000000e-03 +-3.687200000000000e-02 +-6.753600000000000e-02 +-1.150200000000000e-01 +-1.821800000000000e-01 +-2.500200000000000e-01 +-2.927700000000000e-01 +-2.971400000000000e-01 +-2.687900000000000e-01 +-2.214100000000000e-01 +-1.601900000000000e-01 +-7.690600000000000e-02 + 3.735100000000000e-02 + 1.728600000000000e-01 + 2.947000000000000e-01 + 3.585700000000000e-01 + 3.393600000000000e-01 + 2.505500000000000e-01 + 1.379300000000000e-01 + 5.131900000000000e-02 + 1.522800000000000e-02 + 2.015600000000000e-02 + 3.918000000000000e-02 + 5.444700000000000e-02 + 7.120799999999999e-02 + 1.087200000000000e-01 + 1.771700000000000e-01 + 2.612700000000000e-01 + 3.247600000000000e-01 + 3.326000000000000e-01 + 2.731200000000000e-01 + 1.636100000000000e-01 + 3.669300000000000e-02 +-7.992600000000000e-02 +-1.743000000000000e-01 +-2.457200000000000e-01 +-2.924800000000000e-01 +-3.055400000000000e-01 +-2.750100000000000e-01 +-2.040100000000000e-01 +-1.168700000000000e-01 +-5.272800000000000e-02 +-4.662600000000000e-02 +-1.104200000000000e-01 +-2.256200000000000e-01 +-3.524300000000000e-01 +-4.486400000000000e-01 +-4.872800000000000e-01 +-4.646200000000000e-01 +-3.970300000000000e-01 +-3.106200000000000e-01 +-2.299400000000000e-01 +-1.702000000000000e-01 +-1.348500000000000e-01 +-1.183600000000000e-01 +-1.115100000000000e-01 +-1.058500000000000e-01 +-9.424600000000000e-02 +-6.731100000000000e-02 +-9.668000000000000e-03 + 9.858699999999999e-02 + 2.726000000000000e-01 + 5.096300000000000e-01 + 7.809900000000000e-01 + 1.036900000000000e+00 + 1.224100000000000e+00 + 1.306700000000000e+00 + 1.277900000000000e+00 + 1.155800000000000e+00 + 9.683700000000000e-01 + 7.385500000000000e-01 + 4.804200000000000e-01 + 2.061600000000000e-01 +-6.500100000000000e-02 +-3.057900000000000e-01 +-4.903600000000000e-01 +-6.069700000000000e-01 +-6.633500000000000e-01 +-6.806100000000000e-01 +-6.806800000000000e-01 +-6.776100000000000e-01 +-6.785500000000000e-01 +-6.907200000000000e-01 +-7.252600000000000e-01 +-7.914300000000000e-01 +-8.846100000000000e-01 +-9.786600000000000e-01 +-1.031900000000000e+00 +-1.006100000000000e+00 +-8.866400000000000e-01 +-6.912900000000000e-01 +-4.611000000000000e-01 +-2.397800000000000e-01 +-5.442000000000000e-02 + 9.209600000000000e-02 + 2.156100000000000e-01 + 3.385500000000000e-01 + 4.790600000000000e-01 + 6.450900000000001e-01 + 8.326200000000000e-01 + 1.025900000000000e+00 + 1.199500000000000e+00 + 1.324900000000000e+00 + 1.378700000000000e+00 + 1.352300000000000e+00 + 1.254300000000000e+00 + 1.105400000000000e+00 + 9.275200000000000e-01 + 7.362200000000000e-01 + 5.393000000000000e-01 + 3.410400000000000e-01 + 1.456100000000000e-01 +-4.483600000000000e-02 +-2.352400000000000e-01 +-4.385800000000000e-01 +-6.670800000000000e-01 +-9.168900000000000e-01 +-1.157400000000000e+00 +-1.336800000000000e+00 +-1.404600000000000e+00 +-1.339700000000000e+00 +-1.165000000000000e+00 +-9.381100000000000e-01 +-7.226800000000000e-01 +-5.580500000000000e-01 +-4.459300000000000e-01 +-3.603300000000000e-01 +-2.712900000000000e-01 +-1.645200000000000e-01 +-4.468400000000000e-02 + 7.670100000000001e-02 + 1.961300000000000e-01 + 3.226500000000000e-01 + 4.682500000000000e-01 + 6.321300000000000e-01 + 7.918400000000000e-01 + 9.093200000000000e-01 + 9.490400000000000e-01 + 8.972200000000000e-01 + 7.702300000000000e-01 + 6.076400000000000e-01 + 4.543500000000000e-01 + 3.420200000000000e-01 + 2.788800000000000e-01 + 2.515500000000000e-01 + 2.354400000000000e-01 + 2.069400000000000e-01 + 1.509000000000000e-01 + 6.121500000000000e-02 +-6.321499999999999e-02 +-2.219000000000000e-01 +-4.113900000000000e-01 +-6.191800000000000e-01 +-8.177600000000000e-01 +-9.656100000000000e-01 +-1.018600000000000e+00 +-9.483900000000000e-01 +-7.589200000000000e-01 +-4.893500000000000e-01 +-2.006900000000000e-01 + 4.876100000000000e-02 + 2.257300000000000e-01 + 3.299800000000000e-01 + 3.844300000000000e-01 + 4.151000000000000e-01 + 4.341100000000000e-01 + 4.362200000000000e-01 + 4.091300000000000e-01 + 3.485800000000000e-01 + 2.670000000000000e-01 + 1.896400000000000e-01 + 1.414600000000000e-01 + 1.341000000000000e-01 + 1.610600000000000e-01 + 2.030700000000000e-01 + 2.383400000000000e-01 + 2.505400000000000e-01 + 2.306000000000000e-01 + 1.737300000000000e-01 + 7.667599999999999e-02 +-6.099300000000000e-02 +-2.323600000000000e-01 +-4.196100000000000e-01 +-5.957800000000000e-01 +-7.322900000000000e-01 +-8.083700000000000e-01 +-8.167700000000000e-01 +-7.627100000000000e-01 +-6.575500000000000e-01 +-5.122500000000000e-01 +-3.351500000000000e-01 +-1.345500000000000e-01 + 7.763600000000000e-02 + 2.857800000000000e-01 + 4.755100000000000e-01 + 6.401400000000000e-01 + 7.823400000000000e-01 + 9.075299999999999e-01 + 1.012000000000000e+00 + 1.074600000000000e+00 + 1.059700000000000e+00 + 9.349100000000000e-01 + 6.925400000000000e-01 + 3.637400000000000e-01 + 1.297900000000000e-02 +-2.854500000000000e-01 +-4.774600000000000e-01 +-5.491000000000000e-01 +-5.264600000000000e-01 +-4.573000000000000e-01 +-3.869300000000000e-01 +-3.419700000000000e-01 +-3.286500000000000e-01 +-3.417400000000000e-01 +-3.747500000000000e-01 +-4.235300000000000e-01 +-4.830400000000000e-01 +-5.425900000000000e-01 +-5.855800000000000e-01 +-5.949500000000000e-01 +-5.605300000000000e-01 +-4.827400000000000e-01 +-3.705000000000000e-01 +-2.357500000000000e-01 +-8.913200000000000e-02 + 6.063600000000000e-02 + 2.045700000000000e-01 + 3.318900000000000e-01 + 4.313000000000000e-01 + 4.947600000000000e-01 + 5.210300000000000e-01 + 5.169400000000000e-01 + 4.963500000000000e-01 + 4.778100000000000e-01 + 4.815700000000000e-01 + 5.248600000000000e-01 + 6.149200000000000e-01 + 7.412200000000000e-01 + 8.717100000000000e-01 + 9.581700000000000e-01 + 9.515100000000000e-01 + 8.217000000000000e-01 + 5.724800000000000e-01 + 2.422300000000000e-01 +-1.101900000000000e-01 +-4.275700000000000e-01 +-6.733600000000000e-01 +-8.386900000000000e-01 +-9.365000000000000e-01 +-9.888100000000000e-01 +-1.015500000000000e+00 +-1.029700000000000e+00 +-1.038700000000000e+00 +-1.046200000000000e+00 +-1.051600000000000e+00 +-1.046700000000000e+00 +-1.012800000000000e+00 +-9.246700000000000e-01 +-7.592700000000000e-01 +-5.086000000000001e-01 +-1.872900000000000e-01 + 1.690400000000000e-01 + 5.155000000000000e-01 + 8.136900000000000e-01 + 1.043500000000000e+00 + 1.204600000000000e+00 + 1.307900000000000e+00 + 1.362900000000000e+00 + 1.370400000000000e+00 + 1.323600000000000e+00 + 1.216600000000000e+00 + 1.054100000000000e+00 + 8.523200000000000e-01 + 6.327199999999999e-01 + 4.110300000000000e-01 + 1.912100000000000e-01 +-3.164600000000000e-02 +-2.615200000000000e-01 +-4.922600000000000e-01 +-7.058800000000000e-01 +-8.791900000000000e-01 +-9.936300000000000e-01 +-1.041300000000000e+00 +-1.024300000000000e+00 +-9.502200000000000e-01 +-8.295900000000000e-01 +-6.771200000000001e-01 +-5.138200000000001e-01 +-3.644400000000000e-01 +-2.481600000000000e-01 +-1.677700000000000e-01 +-1.060900000000000e-01 +-3.503900000000000e-02 + 6.643800000000000e-02 + 1.970600000000000e-01 + 3.313200000000000e-01 + 4.329900000000000e-01 + 4.750600000000000e-01 + 4.529200000000000e-01 + 3.830500000000000e-01 + 2.904000000000000e-01 + 1.947900000000000e-01 + 1.057500000000000e-01 + 2.678800000000000e-02 +-3.746500000000000e-02 +-7.851700000000000e-02 +-8.747400000000000e-02 +-6.010000000000000e-02 + 1.915700000000000e-03 + 9.396699999999999e-02 + 2.109300000000000e-01 + 3.442200000000000e-01 + 4.749000000000000e-01 + 5.706200000000000e-01 + 5.937000000000000e-01 + 5.194200000000000e-01 + 3.536200000000000e-01 + 1.360700000000000e-01 +-7.552700000000000e-02 +-2.323400000000000e-01 +-3.152400000000000e-01 +-3.367400000000000e-01 +-3.248700000000000e-01 +-3.023000000000000e-01 +-2.756900000000000e-01 +-2.407200000000000e-01 +-1.951000000000000e-01 +-1.469000000000000e-01 +-1.113900000000000e-01 +-1.009500000000000e-01 +-1.183400000000000e-01 +-1.595900000000000e-01 +-2.226600000000000e-01 +-3.115100000000000e-01 +-4.291900000000000e-01 +-5.642400000000000e-01 +-6.829600000000000e-01 +-7.374000000000001e-01 +-6.870000000000001e-01 +-5.205000000000000e-01 +-2.629200000000000e-01 + 3.697500000000000e-02 + 3.296100000000000e-01 + 5.824200000000000e-01 + 7.827700000000000e-01 + 9.286700000000000e-01 + 1.018400000000000e+00 + 1.047900000000000e+00 + 1.016500000000000e+00 + 9.323300000000000e-01 + 8.104400000000000e-01 + 6.648500000000001e-01 + 5.019500000000000e-01 + 3.225300000000000e-01 + 1.307300000000000e-01 +-5.906400000000000e-02 +-2.258600000000000e-01 +-3.553200000000000e-01 +-4.514200000000000e-01 +-5.345900000000000e-01 +-6.247100000000000e-01 +-7.210100000000000e-01 +-7.960000000000000e-01 +-8.113200000000000e-01 +-7.463200000000000e-01 +-6.183400000000000e-01 +-4.780200000000000e-01 +-3.803100000000000e-01 +-3.505200000000000e-01 +-3.688500000000000e-01 +-3.841700000000000e-01 +-3.470300000000000e-01 +-2.383500000000000e-01 +-7.522100000000000e-02 + 1.074800000000000e-01 + 2.831500000000000e-01 + 4.466400000000000e-01 + 6.058600000000000e-01 + 7.609700000000000e-01 + 8.900000000000000e-01 + 9.546700000000000e-01 + 9.235600000000000e-01 + 7.960800000000000e-01 + 6.085400000000000e-01 + 4.165300000000000e-01 + 2.642800000000000e-01 + 1.614400000000000e-01 + 8.260000000000001e-02 +-1.056100000000000e-02 +-1.397000000000000e-01 +-2.926200000000000e-01 +-4.296300000000000e-01 +-5.085499999999999e-01 +-5.117300000000000e-01 +-4.574400000000000e-01 +-3.889800000000000e-01 +-3.491300000000000e-01 +-3.566000000000000e-01 +-3.984000000000000e-01 +-4.411600000000000e-01 +-4.521200000000000e-01 +-4.157200000000000e-01 +-3.365100000000000e-01 +-2.296600000000000e-01 +-1.085200000000000e-01 + 2.075100000000000e-02 + 1.547500000000000e-01 + 2.841100000000000e-01 + 3.897900000000000e-01 + 4.490700000000000e-01 + 4.481600000000000e-01 + 3.922500000000000e-01 + 3.052500000000000e-01 + 2.186500000000000e-01 + 1.564800000000000e-01 + 1.255000000000000e-01 + 1.159800000000000e-01 + 1.106200000000000e-01 + 9.500800000000000e-02 + 6.334400000000000e-02 + 1.810700000000000e-02 +-3.324600000000000e-02 +-8.079200000000000e-02 +-1.127500000000000e-01 +-1.161900000000000e-01 +-8.026899999999999e-02 +-1.996500000000000e-03 + 1.086900000000000e-01 + 2.283100000000000e-01 + 3.253500000000000e-01 + 3.696700000000000e-01 + 3.417000000000000e-01 + 2.378200000000000e-01 + 7.073500000000001e-02 +-1.337500000000000e-01 +-3.419600000000000e-01 +-5.183700000000000e-01 +-6.321700000000000e-01 +-6.638500000000001e-01 +-6.107500000000000e-01 +-4.893100000000000e-01 +-3.327100000000000e-01 +-1.831600000000000e-01 +-8.010700000000000e-02 +-4.710100000000000e-02 +-8.171500000000000e-02 +-1.533700000000000e-01 +-2.123100000000000e-01 +-2.086900000000000e-01 +-1.146700000000000e-01 + 6.097400000000000e-02 + 2.747800000000000e-01 + 4.678700000000000e-01 + 5.933900000000000e-01 + 6.370500000000000e-01 + 6.191000000000000e-01 + 5.772600000000000e-01 + 5.417999999999999e-01 + 5.186100000000000e-01 + 4.901000000000000e-01 + 4.312100000000000e-01 + 3.284200000000000e-01 + 1.892600000000000e-01 + 3.742800000000000e-02 +-1.006900000000000e-01 +-2.082500000000000e-01 +-2.823200000000000e-01 +-3.306100000000000e-01 +-3.656600000000000e-01 +-4.001900000000000e-01 +-4.437200000000000e-01 +-4.982400000000000e-01 +-5.535300000000000e-01 +-5.864400000000000e-01 +-5.687000000000000e-01 +-4.822800000000000e-01 +-3.336400000000000e-01 +-1.557500000000000e-01 + 6.349100000000000e-03 + 1.193400000000000e-01 + 1.788800000000000e-01 + 2.081900000000000e-01 + 2.384100000000000e-01 + 2.850500000000000e-01 + 3.377500000000000e-01 + 3.704400000000000e-01 + 3.632300000000000e-01 + 3.183500000000000e-01 + 2.574700000000000e-01 + 2.031900000000000e-01 + 1.603200000000000e-01 + 1.129600000000000e-01 + 4.034900000000000e-02 +-6.115200000000000e-02 +-1.682600000000000e-01 +-2.423000000000000e-01 +-2.545600000000000e-01 +-2.067800000000000e-01 +-1.314400000000000e-01 +-7.119800000000000e-02 +-5.230700000000000e-02 +-7.019700000000000e-02 +-9.596800000000000e-02 +-9.731900000000000e-02 +-5.841000000000000e-02 + 1.384500000000000e-02 + 9.828800000000000e-02 + 1.738800000000000e-01 + 2.292500000000000e-01 + 2.630300000000000e-01 + 2.785300000000000e-01 + 2.790300000000000e-01 + 2.666400000000000e-01 + 2.425900000000000e-01 + 2.054300000000000e-01 + 1.474300000000000e-01 + 5.364100000000000e-02 +-9.142300000000000e-02 +-2.902500000000000e-01 +-5.198800000000000e-01 +-7.306200000000000e-01 +-8.605200000000000e-01 +-8.600200000000000e-01 +-7.135800000000000e-01 +-4.464700000000000e-01 +-1.134800000000000e-01 + 2.227500000000000e-01 + 5.113600000000000e-01 + 7.217700000000000e-01 + 8.410100000000000e-01 + 8.663500000000000e-01 + 8.009700000000000e-01 + 6.552300000000000e-01 + 4.501400000000000e-01 + 2.176200000000000e-01 +-5.207800000000000e-03 +-1.854900000000000e-01 +-3.030100000000000e-01 +-3.535400000000000e-01 +-3.469200000000000e-01 +-3.024500000000000e-01 +-2.440700000000000e-01 +-1.961400000000000e-01 +-1.787400000000000e-01 +-2.022000000000000e-01 +-2.627700000000000e-01 +-3.422100000000000e-01 +-4.134400000000000e-01 +-4.502800000000000e-01 +-4.368100000000000e-01 +-3.714300000000000e-01 +-2.641600000000000e-01 +-1.297700000000000e-01 + 1.823600000000000e-02 + 1.692200000000000e-01 + 3.128000000000000e-01 + 4.354900000000000e-01 + 5.206600000000000e-01 + 5.531400000000000e-01 + 5.265000000000000e-01 + 4.486100000000000e-01 + 3.419400000000000e-01 + 2.375700000000000e-01 + 1.649900000000000e-01 + 1.417400000000000e-01 + 1.670700000000000e-01 + 2.225400000000000e-01 + 2.793200000000000e-01 + 3.095700000000000e-01 + 2.964100000000000e-01 + 2.378400000000000e-01 + 1.427300000000000e-01 + 2.209600000000000e-02 +-1.178700000000000e-01 +-2.752800000000000e-01 +-4.444700000000000e-01 +-6.065800000000000e-01 +-7.283300000000000e-01 +-7.732400000000000e-01 +-7.212100000000000e-01 +-5.838600000000000e-01 +-4.042600000000000e-01 +-2.383000000000000e-01 +-1.279000000000000e-01 +-8.235600000000000e-02 +-7.926900000000001e-02 +-8.346000000000001e-02 +-7.027200000000000e-02 +-3.747700000000000e-02 + 6.645200000000000e-04 + 3.034000000000000e-02 + 5.201600000000000e-02 + 8.104699999999999e-02 + 1.362600000000000e-01 + 2.268000000000000e-01 + 3.474200000000000e-01 + 4.836200000000000e-01 + 6.195500000000000e-01 + 7.401900000000000e-01 + 8.268300000000000e-01 + 8.531100000000000e-01 + 7.907000000000000e-01 + 6.249600000000000e-01 + 3.708300000000000e-01 + 7.513300000000001e-02 +-2.002700000000000e-01 +-4.057600000000000e-01 +-5.241200000000000e-01 +-5.703000000000000e-01 +-5.724399999999999e-01 +-5.493300000000000e-01 +-5.014200000000000e-01 +-4.205400000000000e-01 +-3.080100000000000e-01 +-1.845700000000000e-01 +-8.273899999999999e-02 +-2.757600000000000e-02 +-2.184700000000000e-02 +-4.758400000000000e-02 +-8.246900000000000e-02 +-1.170100000000000e-01 +-1.581000000000000e-01 +-2.163400000000000e-01 +-2.881600000000000e-01 +-3.483800000000000e-01 +-3.603700000000000e-01 +-2.968400000000000e-01 +-1.563000000000000e-01 + 3.584600000000000e-02 + 2.405300000000000e-01 + 4.220000000000000e-01 + 5.575500000000000e-01 + 6.373100000000000e-01 + 6.593500000000000e-01 + 6.272500000000000e-01 + 5.511500000000000e-01 + 4.481200000000000e-01 + 3.373700000000000e-01 + 2.316500000000000e-01 + 1.319100000000000e-01 + 3.085400000000000e-02 +-7.622600000000000e-02 +-1.826200000000000e-01 +-2.717600000000000e-01 +-3.292100000000000e-01 +-3.549200000000000e-01 +-3.641500000000000e-01 +-3.741600000000000e-01 +-3.865700000000000e-01 +-3.806500000000000e-01 +-3.256200000000000e-01 +-2.047800000000000e-01 +-3.368500000000000e-02 + 1.423300000000000e-01 + 2.711900000000000e-01 + 3.224100000000000e-01 + 3.013200000000000e-01 + 2.406100000000000e-01 + 1.767100000000000e-01 + 1.282100000000000e-01 + 8.999600000000001e-02 + 4.363100000000000e-02 +-2.634300000000000e-02 +-1.223300000000000e-01 +-2.341300000000000e-01 +-3.454100000000000e-01 +-4.389200000000000e-01 +-4.976400000000000e-01 +-5.048600000000000e-01 +-4.475900000000000e-01 +-3.232500000000000e-01 +-1.447100000000000e-01 + 6.181600000000000e-02 + 2.658700000000000e-01 + 4.429700000000000e-01 + 5.788000000000000e-01 + 6.656600000000000e-01 + 6.964700000000000e-01 + 6.633500000000000e-01 + 5.633600000000000e-01 + 4.063000000000000e-01 + 2.166100000000000e-01 + 2.546700000000000e-02 +-1.423500000000000e-01 +-2.773800000000000e-01 +-3.837500000000000e-01 +-4.688300000000000e-01 +-5.326600000000000e-01 +-5.655500000000000e-01 +-5.546600000000000e-01 +-4.932400000000000e-01 +-3.848200000000000e-01 +-2.399900000000000e-01 +-7.019300000000001e-02 + 1.148900000000000e-01 + 3.043400000000000e-01 + 4.813900000000000e-01 + 6.235500000000000e-01 + 7.096400000000000e-01 + 7.290000000000000e-01 + 6.854900000000000e-01 + 5.926200000000000e-01 + 4.635900000000000e-01 + 3.045800000000000e-01 + 1.166900000000000e-01 +-9.512100000000000e-02 +-3.143900000000000e-01 +-5.140100000000000e-01 +-6.661899999999999e-01 +-7.546900000000000e-01 +-7.809400000000000e-01 +-7.601200000000000e-01 +-7.106200000000000e-01 +-6.440000000000000e-01 +-5.609300000000000e-01 +-4.538900000000000e-01 +-3.136500000000000e-01 +-1.364100000000000e-01 + 6.993400000000000e-02 + 2.820300000000000e-01 + 4.621900000000000e-01 + 5.677200000000000e-01 + 5.679500000000000e-01 + 4.627300000000000e-01 + 2.909600000000000e-01 + 1.206300000000000e-01 + 2.152800000000000e-02 + 3.331900000000000e-02 + 1.469400000000000e-01 + 3.103900000000000e-01 + 4.559000000000000e-01 + 5.328900000000000e-01 + 5.281500000000000e-01 + 4.638800000000000e-01 + 3.778900000000000e-01 + 2.999100000000000e-01 + 2.375000000000000e-01 + 1.774100000000000e-01 + 9.827100000000000e-02 +-1.430800000000000e-02 +-1.582400000000000e-01 +-3.145800000000000e-01 +-4.549700000000000e-01 +-5.528900000000000e-01 +-5.935100000000000e-01 +-5.777400000000000e-01 +-5.185100000000000e-01 +-4.314100000000000e-01 +-3.258000000000000e-01 +-2.030800000000000e-01 +-6.407100000000000e-02 + 7.959400000000000e-02 + 2.002900000000000e-01 + 2.624200000000000e-01 + 2.414100000000000e-01 + 1.414300000000000e-01 +-1.803200000000000e-03 +-1.377600000000000e-01 +-2.279100000000000e-01 +-2.646400000000000e-01 +-2.692200000000000e-01 +-2.703400000000000e-01 +-2.794000000000000e-01 +-2.809400000000000e-01 +-2.454700000000000e-01 +-1.543000000000000e-01 +-1.718800000000000e-02 + 1.312200000000000e-01 + 2.536900000000000e-01 + 3.347400000000000e-01 + 3.886000000000000e-01 + 4.450400000000000e-01 + 5.232700000000000e-01 + 6.133900000000000e-01 + 6.784100000000000e-01 + 6.757000000000000e-01 + 5.831600000000000e-01 + 4.134000000000000e-01 + 2.077800000000000e-01 + 1.581900000000000e-02 +-1.268600000000000e-01 +-2.096900000000000e-01 +-2.436600000000000e-01 +-2.483500000000000e-01 +-2.391200000000000e-01 +-2.220700000000000e-01 +-1.981200000000000e-01 +-1.714200000000000e-01 +-1.548600000000000e-01 +-1.672800000000000e-01 +-2.227000000000000e-01 +-3.180400000000000e-01 +-4.284000000000000e-01 +-5.154000000000000e-01 +-5.461200000000000e-01 +-5.117000000000000e-01 +-4.330100000000000e-01 +-3.474800000000000e-01 +-2.840100000000000e-01 +-2.417500000000000e-01 +-1.880100000000000e-01 +-7.833100000000000e-02 + 1.133500000000000e-01 + 3.739000000000000e-01 + 6.530500000000000e-01 + 8.866000000000001e-01 + 1.025400000000000e+00 + 1.052200000000000e+00 + 9.793100000000000e-01 + 8.320900000000000e-01 + 6.334200000000000e-01 + 3.979500000000000e-01 + 1.366000000000000e-01 +-1.368300000000000e-01 +-4.035700000000000e-01 +-6.428900000000000e-01 +-8.350000000000000e-01 +-9.606000000000000e-01 +-9.995800000000000e-01 +-9.351000000000000e-01 +-7.651000000000000e-01 +-5.145200000000000e-01 +-2.359700000000000e-01 + 7.599600000000000e-03 + 1.715200000000000e-01 + 2.509800000000000e-01 + 2.793200000000000e-01 + 3.018800000000000e-01 + 3.430800000000000e-01 + 3.903300000000000e-01 + 4.069400000000000e-01 + 3.643900000000000e-01 + 2.689200000000000e-01 + 1.615000000000000e-01 + 9.054000000000000e-02 + 7.789300000000000e-02 + 1.041600000000000e-01 + 1.247100000000000e-01 + 1.043000000000000e-01 + 4.413400000000000e-02 +-1.847800000000000e-02 +-3.712600000000000e-02 + 1.047300000000000e-02 + 1.066300000000000e-01 + 2.048600000000000e-01 + 2.580400000000000e-01 + 2.429600000000000e-01 + 1.666500000000000e-01 + 5.439600000000000e-02 +-6.793700000000000e-02 +-1.845600000000000e-01 +-2.893000000000000e-01 +-3.797000000000000e-01 +-4.534000000000000e-01 +-5.091000000000000e-01 +-5.485500000000000e-01 +-5.745400000000001e-01 +-5.855399999999999e-01 +-5.722400000000000e-01 +-5.210500000000000e-01 +-4.232200000000000e-01 +-2.822900000000000e-01 +-1.128100000000000e-01 + 6.942000000000000e-02 + 2.570400000000000e-01 + 4.513600000000000e-01 + 6.513200000000000e-01 + 8.400000000000000e-01 + 9.817100000000000e-01 + 1.035600000000000e+00 + 9.787100000000000e-01 + 8.217100000000001e-01 + 6.055100000000000e-01 + 3.787400000000000e-01 + 1.718100000000000e-01 +-1.440700000000000e-02 +-1.979300000000000e-01 +-3.917800000000000e-01 +-5.851200000000000e-01 +-7.434800000000000e-01 +-8.270200000000000e-01 +-8.130100000000000e-01 +-7.063800000000000e-01 +-5.329500000000000e-01 +-3.233000000000000e-01 +-1.014000000000000e-01 + 1.142500000000000e-01 + 3.013100000000000e-01 + 4.286900000000000e-01 + 4.649500000000000e-01 + 3.968300000000000e-01 + 2.441800000000000e-01 + 5.751900000000000e-02 +-1.038800000000000e-01 +-2.008300000000000e-01 +-2.313200000000000e-01 +-2.246900000000000e-01 +-2.171600000000000e-01 +-2.260300000000000e-01 +-2.400400000000000e-01 +-2.312900000000000e-01 +-1.785500000000000e-01 +-8.454000000000000e-02 + 2.485700000000000e-02 + 1.178300000000000e-01 + 1.767800000000000e-01 + 2.070400000000000e-01 + 2.290000000000000e-01 + 2.609800000000000e-01 + 3.058100000000000e-01 + 3.501600000000000e-01 + 3.751400000000000e-01 + 3.688300000000000e-01 + 3.315600000000000e-01 + 2.715900000000000e-01 + 1.971800000000000e-01 + 1.127500000000000e-01 + 2.237700000000000e-02 +-6.383600000000000e-02 +-1.281600000000000e-01 +-1.525100000000000e-01 +-1.308100000000000e-01 +-7.748800000000000e-02 +-2.422800000000000e-02 +-5.219700000000000e-03 +-3.934400000000000e-02 +-1.204100000000000e-01 +-2.215400000000000e-01 +-3.106400000000000e-01 +-3.668400000000000e-01 +-3.882000000000000e-01 +-3.868900000000000e-01 +-3.767200000000000e-01 +-3.621400000000000e-01 +-3.356500000000000e-01 +-2.847000000000000e-01 +-2.027500000000000e-01 +-9.684300000000000e-02 + 1.319300000000000e-02 + 1.037000000000000e-01 + 1.590600000000000e-01 + 1.796800000000000e-01 + 1.815500000000000e-01 + 1.871900000000000e-01 + 2.126900000000000e-01 + 2.578100000000000e-01 + 3.050500000000000e-01 + 3.287800000000000e-01 + 3.102400000000000e-01 + 2.504000000000000e-01 + 1.732500000000000e-01 + 1.170200000000000e-01 + 1.170200000000000e-01 + 1.884700000000000e-01 + 3.175400000000000e-01 + 4.645600000000000e-01 + 5.774600000000000e-01 + 6.092400000000000e-01 + 5.328600000000000e-01 + 3.486900000000000e-01 + 8.328600000000000e-02 +-2.190400000000000e-01 +-5.089900000000001e-01 +-7.451200000000000e-01 +-9.027100000000000e-01 +-9.757000000000000e-01 +-9.716300000000000e-01 +-9.031500000000000e-01 +-7.814400000000000e-01 +-6.155100000000000e-01 +-4.164900000000000e-01 +-2.019600000000000e-01 + 5.382600000000000e-03 + 1.859500000000000e-01 + 3.332300000000000e-01 + 4.572700000000000e-01 + 5.767900000000000e-01 + 7.029900000000000e-01 + 8.256800000000000e-01 + 9.119699999999999e-01 + 9.205000000000000e-01 + 8.234300000000000e-01 + 6.226699999999999e-01 + 3.503800000000000e-01 + 5.413200000000000e-02 +-2.231800000000000e-01 +-4.561900000000000e-01 +-6.369300000000000e-01 +-7.653000000000000e-01 +-8.399799999999999e-01 +-8.567100000000000e-01 +-8.138100000000000e-01 +-7.183400000000000e-01 +-5.860400000000000e-01 +-4.342300000000000e-01 +-2.731500000000000e-01 +-1.027400000000000e-01 + 8.211499999999999e-02 + 2.818500000000000e-01 + 4.850900000000000e-01 + 6.693400000000000e-01 + 8.089200000000000e-01 + 8.847400000000000e-01 + 8.903900000000000e-01 + 8.321200000000000e-01 + 7.245500000000000e-01 + 5.854000000000000e-01 + 4.312400000000000e-01 + 2.745500000000000e-01 + 1.217200000000000e-01 +-2.739300000000000e-02 +-1.767700000000000e-01 +-3.287400000000000e-01 +-4.781900000000000e-01 +-6.108800000000000e-01 +-7.081200000000000e-01 +-7.559700000000000e-01 +-7.528899999999999e-01 +-7.103400000000000e-01 +-6.451500000000000e-01 +-5.686300000000000e-01 +-4.798800000000000e-01 +-3.680500000000000e-01 +-2.220600000000000e-01 +-4.109000000000000e-02 + 1.611700000000000e-01 + 3.607300000000000e-01 + 5.325700000000000e-01 + 6.587900000000000e-01 + 7.312100000000000e-01 + 7.488200000000000e-01 + 7.136400000000001e-01 + 6.287600000000000e-01 + 4.994600000000000e-01 + 3.354600000000000e-01 + 1.517400000000000e-01 +-3.326800000000000e-02 +-2.009900000000000e-01 +-3.359600000000000e-01 +-4.280000000000000e-01 +-4.736800000000000e-01 +-4.771800000000000e-01 +-4.497900000000000e-01 +-4.068900000000000e-01 +-3.620900000000000e-01 +-3.209400000000000e-01 +-2.781100000000000e-01 +-2.208800000000000e-01 +-1.381800000000000e-01 +-2.997100000000000e-02 + 8.906100000000000e-02 + 1.949300000000000e-01 + 2.662300000000000e-01 + 2.955000000000000e-01 + 2.928300000000000e-01 + 2.794600000000000e-01 + 2.751500000000000e-01 + 2.873900000000000e-01 + 3.087800000000000e-01 + 3.236000000000000e-01 + 3.186100000000000e-01 + 2.906200000000000e-01 + 2.465300000000000e-01 + 1.967500000000000e-01 + 1.474800000000000e-01 + 9.764299999999999e-02 + 4.207700000000000e-02 +-2.212700000000000e-02 +-9.162600000000000e-02 +-1.583600000000000e-01 +-2.152300000000000e-01 +-2.610300000000000e-01 +-3.003100000000000e-01 +-3.381800000000000e-01 +-3.742600000000000e-01 +-4.011400000000000e-01 +-4.088800000000000e-01 +-3.920300000000000e-01 +-3.531500000000000e-01 +-2.997000000000000e-01 +-2.367700000000000e-01 +-1.624700000000000e-01 +-7.121600000000000e-02 + 3.675500000000000e-02 + 1.471900000000000e-01 + 2.333600000000000e-01 + 2.686900000000000e-01 + 2.428700000000000e-01 + 1.695200000000000e-01 + 7.894000000000000e-02 + 1.853000000000000e-04 +-5.456500000000000e-02 +-9.161800000000000e-02 +-1.223700000000000e-01 +-1.460200000000000e-01 +-1.431400000000000e-01 +-8.676200000000001e-02 + 3.654900000000000e-02 + 2.118200000000000e-01 + 3.993200000000000e-01 + 5.549800000000000e-01 + 6.528800000000000e-01 + 6.934600000000000e-01 + 6.925500000000000e-01 + 6.615200000000000e-01 + 5.955300000000000e-01 + 4.799700000000000e-01 + 3.092300000000000e-01 + 1.016100000000000e-01 +-1.035400000000000e-01 +-2.658600000000000e-01 +-3.668600000000000e-01 +-4.183900000000000e-01 +-4.509900000000000e-01 +-4.913400000000000e-01 +-5.460000000000000e-01 +-6.019500000000000e-01 +-6.404100000000000e-01 +-6.506600000000000e-01 +-6.325800000000000e-01 +-5.883699999999999e-01 +-5.142200000000000e-01 +-4.024700000000000e-01 +-2.540200000000000e-01 +-8.970300000000000e-02 + 5.214700000000000e-02 + 1.342100000000000e-01 + 1.432100000000000e-01 + 1.004200000000000e-01 + 5.079400000000000e-02 + 3.741100000000000e-02 + 7.855300000000000e-02 + 1.621200000000000e-01 + 2.586600000000000e-01 + 3.413400000000000e-01 + 3.982400000000000e-01 + 4.312400000000000e-01 + 4.470500000000000e-01 + 4.505700000000000e-01 + 4.455700000000000e-01 + 4.384100000000000e-01 + 4.373300000000000e-01 + 4.449700000000000e-01 + 4.505700000000000e-01 + 4.315200000000000e-01 + 3.669600000000000e-01 + 2.550600000000000e-01 + 1.197400000000000e-01 +-7.518400000000000e-04 +-7.719400000000000e-02 +-1.080000000000000e-01 +-1.190200000000000e-01 +-1.444900000000000e-01 +-2.039200000000000e-01 +-2.920300000000000e-01 +-3.883000000000000e-01 +-4.763300000000000e-01 +-5.558200000000000e-01 +-6.372800000000000e-01 +-7.249100000000001e-01 +-8.035600000000001e-01 +-8.425400000000000e-01 +-8.141800000000000e-01 +-7.124800000000000e-01 +-5.565400000000000e-01 +-3.762000000000000e-01 +-1.921400000000000e-01 +-6.839900000000000e-03 + 1.868200000000000e-01 + 3.879800000000000e-01 + 5.778200000000000e-01 + 7.269500000000000e-01 + 8.146500000000000e-01 + 8.435000000000000e-01 + 8.361499999999999e-01 + 8.158000000000000e-01 + 7.858700000000000e-01 + 7.258400000000000e-01 + 6.074400000000000e-01 + 4.190500000000000e-01 + 1.792500000000000e-01 +-7.068400000000000e-02 +-2.892000000000000e-01 +-4.543400000000000e-01 +-5.667300000000000e-01 +-6.356300000000000e-01 +-6.617300000000000e-01 +-6.321600000000001e-01 +-5.320500000000000e-01 +-3.626500000000000e-01 +-1.501800000000000e-01 + 6.317500000000000e-02 + 2.402000000000000e-01 + 3.661000000000000e-01 + 4.497000000000000e-01 + 5.081200000000000e-01 + 5.476000000000000e-01 + 5.552900000000000e-01 + 5.084400000000000e-01 + 3.936200000000000e-01 + 2.211900000000000e-01 + 2.379700000000000e-02 +-1.608500000000000e-01 +-3.111800000000000e-01 +-4.324500000000000e-01 +-5.492600000000000e-01 +-6.844900000000000e-01 +-8.378100000000001e-01 +-9.777000000000000e-01 +-1.052700000000000e+00 +-1.016300000000000e+00 +-8.524500000000000e-01 +-5.861900000000000e-01 +-2.750100000000000e-01 + 1.634900000000000e-02 + 2.431700000000000e-01 + 3.959700000000000e-01 + 4.961400000000000e-01 + 5.760300000000000e-01 + 6.562900000000000e-01 + 7.341000000000000e-01 + 7.884500000000000e-01 + 7.973500000000000e-01 + 7.546100000000000e-01 + 6.751100000000000e-01 + 5.859500000000000e-01 + 5.105499999999999e-01 + 4.567800000000000e-01 + 4.161200000000000e-01 + 3.727300000000000e-01 + 3.145300000000000e-01 + 2.388900000000000e-01 + 1.503400000000000e-01 + 5.434900000000000e-02 +-4.706100000000000e-02 +-1.548200000000000e-01 +-2.691100000000000e-01 +-3.866000000000000e-01 +-5.010700000000000e-01 +-6.064100000000000e-01 +-6.987800000000000e-01 +-7.757600000000000e-01 +-8.335700000000000e-01 +-8.652900000000000e-01 +-8.621600000000000e-01 +-8.174300000000000e-01 +-7.298500000000000e-01 +-6.045500000000000e-01 +-4.514300000000000e-01 +-2.827000000000000e-01 +-1.115400000000000e-01 + 4.877700000000000e-02 + 1.867100000000000e-01 + 2.959300000000000e-01 + 3.785800000000000e-01 + 4.450000000000000e-01 + 5.082600000000000e-01 + 5.758900000000000e-01 + 6.441300000000000e-01 + 6.994700000000000e-01 + 7.271300000000001e-01 + 7.212400000000000e-01 + 6.894200000000000e-01 + 6.482900000000000e-01 + 6.126100000000000e-01 + 5.851600000000000e-01 + 5.539600000000000e-01 + 4.980800000000000e-01 + 3.983300000000000e-01 + 2.464900000000000e-01 + 4.926200000000000e-02 +-1.735100000000000e-01 +-3.939100000000000e-01 +-5.824200000000000e-01 +-7.148800000000000e-01 +-7.794900000000000e-01 +-7.815299999999999e-01 +-7.426100000000000e-01 +-6.922900000000000e-01 +-6.544800000000000e-01 +-6.354400000000000e-01 +-6.210700000000000e-01 +-5.862600000000000e-01 +-5.115100000000000e-01 +-3.965300000000000e-01 +-2.617800000000000e-01 +-1.365400000000000e-01 +-4.095500000000000e-02 + 2.636200000000000e-02 + 8.712499999999999e-02 + 1.693800000000000e-01 + 2.895100000000000e-01 + 4.410900000000000e-01 + 5.967300000000000e-01 + 7.211100000000000e-01 + 7.871400000000000e-01 + 7.871000000000000e-01 + 7.339500000000000e-01 + 6.539500000000000e-01 + 5.750000000000000e-01 + 5.158700000000001e-01 + 4.799900000000000e-01 + 4.554200000000000e-01 + 4.207400000000000e-01 + 3.546400000000000e-01 + 2.457100000000000e-01 + 9.769899999999999e-02 +-7.253900000000001e-02 +-2.438000000000000e-01 +-4.010900000000000e-01 +-5.415100000000000e-01 +-6.713400000000000e-01 +-7.962399999999999e-01 +-9.113599999999999e-01 +-9.989400000000001e-01 +-1.036300000000000e+00 +-1.009100000000000e+00 +-9.214700000000000e-01 +-7.940300000000000e-01 +-6.518000000000000e-01 +-5.086900000000000e-01 +-3.601600000000000e-01 +-1.896400000000000e-01 + 1.508000000000000e-02 + 2.468400000000000e-01 + 4.762300000000000e-01 + 6.642400000000001e-01 + 7.828400000000000e-01 + 8.307900000000000e-01 + 8.344300000000000e-01 + 8.330200000000000e-01 + 8.574100000000000e-01 + 9.143600000000000e-01 + 9.845900000000000e-01 + 1.033700000000000e+00 + 1.028600000000000e+00 + 9.494800000000000e-01 + 7.944700000000000e-01 + 5.755400000000001e-01 + 3.122600000000000e-01 + 2.675300000000000e-02 +-2.587200000000000e-01 +-5.227000000000001e-01 +-7.459700000000000e-01 +-9.142900000000000e-01 +-1.021400000000000e+00 +-1.070900000000000e+00 +-1.075600000000000e+00 +-1.054100000000000e+00 +-1.024600000000000e+00 +-9.980400000000000e-01 +-9.726300000000000e-01 +-9.327900000000000e-01 +-8.544900000000000e-01 +-7.159300000000000e-01 +-5.092700000000000e-01 +-2.472900000000000e-01 + 3.917200000000000e-02 + 3.122700000000000e-01 + 5.412700000000000e-01 + 7.123400000000000e-01 + 8.292300000000000e-01 + 9.057300000000000e-01 + 9.551500000000001e-01 + 9.828400000000000e-01 + 9.852000000000000e-01 + 9.540600000000000e-01 + 8.826900000000000e-01 + 7.699700000000000e-01 + 6.214600000000000e-01 + 4.479600000000000e-01 + 2.633700000000000e-01 + 8.275100000000001e-02 +-7.888500000000000e-02 +-2.074000000000000e-01 +-2.903900000000000e-01 +-3.189400000000000e-01 +-2.907400000000000e-01 +-2.141200000000000e-01 +-1.107500000000000e-01 +-1.349000000000000e-02 + 4.222300000000000e-02 + 3.127900000000000e-02 +-5.038900000000000e-02 +-1.843200000000000e-01 +-3.395400000000000e-01 +-4.885600000000000e-01 +-6.192299999999999e-01 +-7.339599999999999e-01 +-8.373000000000000e-01 +-9.215500000000000e-01 +-9.625000000000000e-01 +-9.303000000000000e-01 +-8.086800000000000e-01 +-6.085800000000000e-01 +-3.655700000000000e-01 +-1.222000000000000e-01 + 9.282000000000000e-02 + 2.744000000000000e-01 + 4.345900000000000e-01 + 5.868200000000000e-01 + 7.335900000000000e-01 + 8.659600000000000e-01 + 9.721300000000000e-01 + 1.045300000000000e+00 + 1.083100000000000e+00 + 1.080400000000000e+00 + 1.023900000000000e+00 + 8.971900000000000e-01 + 6.941800000000000e-01 + 4.295800000000000e-01 + 1.374300000000000e-01 +-1.439300000000000e-01 +-3.889500000000000e-01 +-5.909400000000000e-01 +-7.524800000000000e-01 +-8.692299999999999e-01 +-9.224700000000000e-01 +-8.885400000000000e-01 +-7.588400000000000e-01 +-5.536200000000000e-01 +-3.167500000000000e-01 +-9.365500000000000e-02 + 9.147200000000000e-02 + 2.414900000000000e-01 + 3.711800000000000e-01 + 4.839400000000000e-01 + 5.599200000000000e-01 + 5.657400000000000e-01 + 4.785600000000000e-01 + 3.053400000000000e-01 + 8.220100000000000e-02 +-1.451600000000000e-01 +-3.446700000000000e-01 +-5.074700000000000e-01 +-6.390500000000000e-01 +-7.419900000000000e-01 +-8.060000000000000e-01 +-8.129500000000000e-01 +-7.512200000000000e-01 +-6.260000000000000e-01 +-4.569500000000000e-01 +-2.665000000000000e-01 +-6.973100000000000e-02 + 1.259400000000000e-01 + 3.132300000000000e-01 + 4.794100000000000e-01 + 6.100100000000001e-01 + 6.993500000000000e-01 + 7.571900000000000e-01 + 8.027300000000001e-01 + 8.485900000000000e-01 + 8.875900000000000e-01 + 8.949700000000000e-01 + 8.465700000000000e-01 + 7.392900000000000e-01 + 5.966200000000000e-01 + 4.529500000000000e-01 + 3.277100000000000e-01 + 2.097700000000000e-01 + 6.587899999999999e-02 +-1.317400000000000e-01 +-3.787300000000000e-01 +-6.334300000000000e-01 +-8.379100000000000e-01 +-9.506400000000000e-01 +-9.682700000000000e-01 +-9.224800000000000e-01 +-8.564600000000000e-01 +-7.989700000000000e-01 +-7.529900000000000e-01 +-7.034300000000000e-01 +-6.336900000000000e-01 +-5.372900000000000e-01 +-4.174400000000000e-01 +-2.789600000000000e-01 +-1.224000000000000e-01 + 5.343800000000000e-02 + 2.434300000000000e-01 + 4.307100000000000e-01 + 5.900100000000000e-01 + 6.983600000000000e-01 + 7.457700000000000e-01 + 7.388700000000000e-01 + 6.959700000000000e-01 + 6.383200000000000e-01 + 5.832300000000000e-01 + 5.415700000000000e-01 + 5.175600000000000e-01 + 5.079100000000000e-01 + 4.997200000000000e-01 + 4.704200000000000e-01 + 3.929600000000000e-01 + 2.464500000000000e-01 + 2.759500000000000e-02 +-2.434600000000000e-01 +-5.266700000000000e-01 +-7.738600000000000e-01 +-9.432700000000001e-01 +-1.010800000000000e+00 +-9.742600000000000e-01 +-8.501600000000000e-01 +-6.657999999999999e-01 +-4.497900000000000e-01 +-2.246600000000000e-01 +-4.087200000000000e-03 + 2.045000000000000e-01 + 3.937700000000000e-01 + 5.510300000000000e-01 + 6.577400000000000e-01 + 6.955100000000000e-01 + 6.554000000000000e-01 + 5.443800000000000e-01 + 3.842500000000000e-01 + 2.031300000000000e-01 + 2.513600000000000e-02 +-1.352100000000000e-01 +-2.706200000000000e-01 +-3.742600000000000e-01 +-4.353400000000000e-01 +-4.417900000000000e-01 +-3.889100000000000e-01 +-2.871400000000000e-01 +-1.623100000000000e-01 +-4.668300000000000e-02 + 3.410700000000000e-02 + 7.037200000000000e-02 + 6.898200000000000e-02 + 4.648200000000000e-02 + 2.039900000000000e-02 + 4.052800000000000e-03 + 6.056900000000000e-03 + 3.156300000000000e-02 + 8.184800000000000e-02 + 1.518400000000000e-01 + 2.285300000000000e-01 + 2.935200000000000e-01 + 3.297200000000000e-01 + 3.282600000000000e-01 + 2.907000000000000e-01 + 2.249900000000000e-01 + 1.385000000000000e-01 + 3.404600000000000e-02 +-8.760700000000000e-02 +-2.204500000000000e-01 +-3.475900000000000e-01 +-4.429400000000000e-01 +-4.809100000000000e-01 +-4.485500000000000e-01 +-3.524100000000000e-01 +-2.154400000000000e-01 +-6.606099999999999e-02 + 7.344100000000001e-02 + 1.922300000000000e-01 + 2.877200000000000e-01 + 3.578700000000000e-01 + 3.954900000000000e-01 + 3.889900000000000e-01 + 3.287900000000000e-01 + 2.144000000000000e-01 + 5.751000000000000e-02 +-1.205600000000000e-01 +-2.941300000000000e-01 +-4.376800000000000e-01 +-5.278900000000000e-01 +-5.453400000000000e-01 +-4.783600000000000e-01 +-3.295100000000000e-01 +-1.207900000000000e-01 + 1.081000000000000e-01 + 3.109300000000000e-01 + 4.516800000000000e-01 + 5.178500000000000e-01 + 5.217400000000000e-01 + 4.885500000000000e-01 + 4.385800000000000e-01 + 3.758200000000000e-01 + 2.908600000000000e-01 + 1.758600000000000e-01 + 3.998700000000000e-02 +-8.751200000000001e-02 +-1.711600000000000e-01 +-1.919600000000000e-01 +-1.631200000000000e-01 +-1.264000000000000e-01 +-1.289700000000000e-01 +-1.948000000000000e-01 +-3.086800000000000e-01 +-4.241500000000000e-01 +-4.906100000000000e-01 +-4.831100000000000e-01 +-4.160600000000000e-01 +-3.332000000000000e-01 +-2.806600000000000e-01 +-2.801300000000000e-01 +-3.177500000000000e-01 +-3.533100000000000e-01 +-3.423200000000000e-01 +-2.571400000000000e-01 +-9.653700000000000e-02 + 1.180800000000000e-01 + 3.541900000000000e-01 + 5.792700000000000e-01 + 7.671300000000000e-01 + 8.997500000000000e-01 + 9.676399999999999e-01 + 9.702800000000000e-01 + 9.155600000000000e-01 + 8.164000000000000e-01 + 6.846300000000000e-01 + 5.257300000000000e-01 + 3.388500000000000e-01 + 1.237400000000000e-01 +-1.094300000000000e-01 +-3.345600000000000e-01 +-5.144700000000000e-01 +-6.156600000000000e-01 +-6.253100000000000e-01 +-5.603500000000000e-01 +-4.620800000000000e-01 +-3.788700000000000e-01 +-3.460400000000000e-01 +-3.737300000000000e-01 +-4.475100000000000e-01 +-5.387700000000000e-01 +-6.168300000000000e-01 +-6.564800000000000e-01 +-6.399700000000000e-01 +-5.578600000000000e-01 +-4.124800000000000e-01 +-2.230600000000000e-01 +-2.678600000000000e-02 + 1.298800000000000e-01 + 2.091200000000000e-01 + 2.005900000000000e-01 + 1.297500000000000e-01 + 4.901800000000000e-02 + 1.546200000000000e-02 + 6.673400000000000e-02 + 2.079100000000000e-01 + 4.143700000000000e-01 + 6.459500000000000e-01 + 8.622500000000000e-01 + 1.031300000000000e+00 + 1.130600000000000e+00 + 1.146000000000000e+00 + 1.072700000000000e+00 + 9.186700000000000e-01 + 7.061200000000000e-01 + 4.668600000000000e-01 + 2.314800000000000e-01 + 1.879400000000000e-02 +-1.678600000000000e-01 +-3.352900000000000e-01 +-4.901400000000000e-01 +-6.310100000000000e-01 +-7.479300000000000e-01 +-8.284700000000000e-01 +-8.654400000000000e-01 +-8.611500000000000e-01 +-8.265600000000000e-01 +-7.773900000000000e-01 +-7.295900000000000e-01 +-6.953600000000000e-01 +-6.792400000000000e-01 +-6.747800000000000e-01 +-6.641100000000000e-01 +-6.229100000000000e-01 +-5.303000000000000e-01 +-3.789200000000000e-01 +-1.787000000000000e-01 + 4.866000000000000e-02 + 2.810700000000000e-01 + 5.052500000000000e-01 + 7.173100000000000e-01 + 9.152300000000000e-01 + 1.090000000000000e+00 + 1.223500000000000e+00 + 1.295000000000000e+00 + 1.290700000000000e+00 + 1.208900000000000e+00 + 1.056500000000000e+00 + 8.421100000000000e-01 + 5.730800000000000e-01 + 2.609600000000000e-01 +-6.917400000000000e-02 +-3.756700000000000e-01 +-6.100600000000000e-01 +-7.367200000000000e-01 +-7.505400000000000e-01 +-6.801199999999999e-01 +-5.735800000000000e-01 +-4.752900000000000e-01 +-4.078000000000000e-01 +-3.683500000000000e-01 +-3.391900000000000e-01 +-3.026700000000000e-01 +-2.516900000000000e-01 +-1.919800000000000e-01 +-1.385700000000000e-01 +-1.103400000000000e-01 +-1.239200000000000e-01 +-1.862200000000000e-01 +-2.865700000000000e-01 +-3.937100000000000e-01 +-4.633400000000000e-01 +-4.563700000000000e-01 +-3.591800000000000e-01 +-1.923000000000000e-01 + 4.792400000000000e-04 + 1.772100000000000e-01 + 3.207100000000000e-01 + 4.429100000000000e-01 + 5.674800000000000e-01 + 7.036100000000000e-01 + 8.311800000000000e-01 + 9.091900000000001e-01 + 9.019900000000000e-01 + 8.040100000000000e-01 + 6.452700000000000e-01 + 4.737400000000000e-01 + 3.279400000000000e-01 + 2.184300000000000e-01 + 1.292400000000000e-01 + 3.461700000000000e-02 +-8.308900000000000e-02 +-2.266000000000000e-01 +-3.889700000000000e-01 +-5.622900000000000e-01 +-7.403300000000000e-01 +-9.132100000000000e-01 +-1.060800000000000e+00 +-1.153500000000000e+00 +-1.162000000000000e+00 +-1.071700000000000e+00 +-8.904700000000000e-01 +-6.466100000000000e-01 +-3.774700000000000e-01 +-1.169900000000000e-01 + 1.125200000000000e-01 + 3.026800000000000e-01 + 4.576800000000000e-01 + 5.911800000000000e-01 + 7.213700000000000e-01 + 8.632400000000000e-01 + 1.019400000000000e+00 + 1.174000000000000e+00 + 1.294600000000000e+00 + 1.342800000000000e+00 + 1.289500000000000e+00 + 1.125900000000000e+00 + 8.655500000000000e-01 + 5.375900000000000e-01 + 1.770700000000000e-01 +-1.828000000000000e-01 +-5.135700000000000e-01 +-7.920199999999999e-01 +-1.001000000000000e+00 +-1.131400000000000e+00 +-1.184000000000000e+00 +-1.168300000000000e+00 +-1.098700000000000e+00 +-9.905800000000000e-01 +-8.576900000000000e-01 +-7.117599999999999e-01 +-5.623200000000000e-01 +-4.156300000000000e-01 +-2.734500000000000e-01 +-1.336800000000000e-01 + 6.220600000000000e-03 + 1.454100000000000e-01 + 2.787600000000000e-01 + 4.004100000000000e-01 + 5.088200000000001e-01 + 6.079000000000000e-01 + 7.015300000000000e-01 + 7.847700000000000e-01 + 8.395800000000000e-01 + 8.409500000000000e-01 + 7.717100000000000e-01 + 6.362300000000000e-01 + 4.625600000000000e-01 + 2.897500000000000e-01 + 1.476700000000000e-01 + 4.259900000000000e-02 +-4.222900000000000e-02 +-1.323200000000000e-01 +-2.440400000000000e-01 +-3.745100000000000e-01 +-5.036600000000000e-01 +-6.044500000000000e-01 +-6.535200000000000e-01 +-6.373700000000000e-01 +-5.543300000000000e-01 +-4.150800000000000e-01 +-2.422300000000000e-01 +-6.667500000000000e-02 + 8.118800000000000e-02 + 1.830200000000000e-01 + 2.400400000000000e-01 + 2.706200000000000e-01 + 2.981700000000000e-01 + 3.370300000000000e-01 + 3.854200000000000e-01 + 4.289800000000000e-01 + 4.503200000000000e-01 + 4.360500000000000e-01 + 3.772000000000000e-01 + 2.662000000000000e-01 + 9.785700000000000e-02 +-1.229000000000000e-01 +-3.717100000000000e-01 +-6.042400000000000e-01 +-7.696800000000000e-01 +-8.326500000000000e-01 +-7.897999999999999e-01 +-6.697000000000000e-01 +-5.162800000000000e-01 +-3.676900000000000e-01 +-2.441800000000000e-01 +-1.497200000000000e-01 +-8.020200000000000e-02 +-2.784600000000000e-02 + 2.189600000000000e-02 + 9.341200000000000e-02 + 2.138100000000000e-01 + 3.943000000000000e-01 + 6.123600000000000e-01 + 8.119300000000000e-01 + 9.283600000000000e-01 + 9.251600000000000e-01 + 8.172700000000001e-01 + 6.620200000000001e-01 + 5.216800000000000e-01 + 4.231300000000000e-01 + 3.437900000000000e-01 + 2.339100000000000e-01 + 5.892200000000000e-02 +-1.697900000000000e-01 +-3.973800000000000e-01 +-5.584700000000000e-01 +-6.156700000000001e-01 +-5.772000000000000e-01 +-4.847400000000000e-01 +-3.852000000000000e-01 +-3.085600000000000e-01 +-2.648400000000000e-01 +-2.550900000000000e-01 +-2.809200000000000e-01 +-3.421600000000000e-01 +-4.262900000000000e-01 +-5.033900000000000e-01 +-5.359900000000000e-01 +-4.993800000000000e-01 +-3.969800000000000e-01 +-2.574800000000000e-01 +-1.144700000000000e-01 + 1.618300000000000e-02 + 1.437600000000000e-01 + 2.894200000000000e-01 + 4.626600000000000e-01 + 6.460300000000000e-01 + 7.998900000000000e-01 + 8.835400000000000e-01 + 8.774500000000000e-01 + 7.919400000000000e-01 + 6.581300000000000e-01 + 5.097100000000000e-01 + 3.684000000000000e-01 + 2.406000000000000e-01 + 1.236200000000000e-01 + 1.397500000000000e-02 +-8.867800000000001e-02 +-1.829400000000000e-01 +-2.689000000000000e-01 +-3.494400000000000e-01 +-4.285700000000000e-01 +-5.084000000000000e-01 +-5.871800000000000e-01 +-6.590400000000000e-01 +-7.151900000000000e-01 +-7.456600000000000e-01 +-7.412500000000000e-01 +-6.951600000000000e-01 +-6.039600000000001e-01 +-4.673900000000000e-01 +-2.880600000000000e-01 +-7.240300000000000e-02 + 1.664300000000000e-01 + 4.059500000000000e-01 + 6.159800000000000e-01 + 7.668900000000000e-01 + 8.419400000000000e-01 + 8.460299999999999e-01 + 8.032600000000000e-01 + 7.426800000000000e-01 + 6.803800000000000e-01 + 6.106900000000000e-01 + 5.135800000000000e-01 + 3.738300000000000e-01 + 1.977900000000000e-01 + 1.430700000000000e-02 +-1.419500000000000e-01 +-2.526900000000000e-01 +-3.267700000000000e-01 +-3.906900000000000e-01 +-4.656300000000000e-01 +-5.486400000000000e-01 +-6.126800000000000e-01 +-6.259500000000000e-01 +-5.760900000000000e-01 +-4.809300000000000e-01 +-3.777800000000000e-01 +-2.992200000000000e-01 +-2.532400000000000e-01 +-2.215800000000000e-01 +-1.762500000000000e-01 +-1.014400000000000e-01 +-4.996900000000000e-03 + 8.761200000000000e-02 + 1.510500000000000e-01 + 1.764500000000000e-01 + 1.756200000000000e-01 + 1.718500000000000e-01 + 1.847700000000000e-01 + 2.196500000000000e-01 + 2.667900000000000e-01 + 3.098900000000000e-01 + 3.367400000000000e-01 + 3.454800000000000e-01 + 3.432200000000000e-01 + 3.387200000000000e-01 + 3.345900000000000e-01 + 3.243800000000000e-01 + 2.969600000000000e-01 + 2.455200000000000e-01 + 1.747100000000000e-01 + 9.993700000000000e-02 + 3.790500000000000e-02 +-5.779200000000000e-03 +-4.257900000000000e-02 +-9.453499999999999e-02 +-1.782200000000000e-01 +-2.901200000000000e-01 +-4.049600000000000e-01 +-4.896300000000000e-01 +-5.236900000000000e-01 +-5.110400000000000e-01 +-4.736200000000000e-01 +-4.315800000000000e-01 +-3.854300000000000e-01 +-3.154500000000000e-01 +-1.997600000000000e-01 +-3.780700000000000e-02 + 1.397900000000000e-01 + 2.841700000000000e-01 + 3.556400000000000e-01 + 3.458500000000000e-01 + 2.789600000000000e-01 + 1.923800000000000e-01 + 1.129900000000000e-01 + 4.724200000000000e-02 +-8.998700000000000e-03 +-5.230600000000000e-02 +-6.337100000000000e-02 +-1.816800000000000e-02 + 8.913000000000000e-02 + 2.306900000000000e-01 + 3.520800000000000e-01 + 3.999600000000000e-01 + 3.524000000000000e-01 + 2.307600000000000e-01 + 8.534200000000000e-02 +-3.480500000000000e-02 +-1.068200000000000e-01 +-1.382900000000000e-01 +-1.510600000000000e-01 +-1.592500000000000e-01 +-1.583600000000000e-01 +-1.322900000000000e-01 +-7.146500000000000e-02 + 1.257000000000000e-02 + 8.700400000000000e-02 + 1.127600000000000e-01 + 6.535400000000000e-02 +-5.058200000000000e-02 +-2.011100000000000e-01 +-3.368300000000000e-01 +-4.136600000000000e-01 +-4.108400000000000e-01 +-3.377100000000000e-01 +-2.266000000000000e-01 +-1.152100000000000e-01 +-2.750300000000000e-02 + 3.658800000000000e-02 + 9.709400000000000e-02 + 1.778900000000000e-01 + 2.886700000000000e-01 + 4.165000000000000e-01 + 5.322100000000000e-01 + 6.068600000000000e-01 + 6.264600000000000e-01 + 5.948600000000001e-01 + 5.236400000000000e-01 + 4.179400000000000e-01 + 2.702000000000000e-01 + 6.787200000000000e-02 +-1.899500000000000e-01 +-4.790700000000000e-01 +-7.506600000000000e-01 +-9.472200000000000e-01 +-1.025300000000000e+00 +-9.722400000000000e-01 +-8.092400000000000e-01 +-5.803100000000000e-01 +-3.351900000000000e-01 +-1.144000000000000e-01 + 5.844900000000000e-02 + 1.772000000000000e-01 + 2.489700000000000e-01 + 2.880500000000000e-01 + 3.094700000000000e-01 + 3.235700000000000e-01 + 3.331800000000000e-01 + 3.347900000000000e-01 + 3.232800000000000e-01 + 2.978200000000000e-01 + 2.653900000000000e-01 + 2.396600000000000e-01 + 2.358000000000000e-01 + 2.639600000000000e-01 + 3.248100000000000e-01 + 4.087800000000000e-01 + 4.988700000000000e-01 + 5.752100000000000e-01 + 6.193800000000000e-01 + 6.173100000000000e-01 + 5.600500000000000e-01 + 4.430800000000000e-01 + 2.655500000000000e-01 + 3.110500000000000e-02 +-2.491300000000000e-01 +-5.529500000000001e-01 +-8.466500000000000e-01 +-1.090800000000000e+00 +-1.251800000000000e+00 +-1.314400000000000e+00 +-1.286900000000000e+00 +-1.196100000000000e+00 +-1.072700000000000e+00 +-9.363400000000000e-01 +-7.895400000000000e-01 +-6.230000000000000e-01 +-4.273100000000000e-01 +-2.020600000000000e-01 + 4.430200000000000e-02 + 3.017400000000000e-01 + 5.654300000000000e-01 + 8.347100000000000e-01 + 1.104200000000000e+00 + 1.354200000000000e+00 + 1.550000000000000e+00 + 1.652800000000000e+00 + 1.635800000000000e+00 + 1.496400000000000e+00 + 1.256500000000000e+00 + 9.526600000000000e-01 + 6.224100000000000e-01 + 2.962700000000000e-01 +-4.036600000000000e-03 +-2.638000000000000e-01 +-4.748400000000000e-01 +-6.370900000000000e-01 +-7.587699999999999e-01 +-8.520600000000000e-01 +-9.249400000000000e-01 +-9.749800000000000e-01 +-9.903800000000000e-01 +-9.584500000000000e-01 +-8.755800000000000e-01 +-7.509800000000000e-01 +-6.017400000000001e-01 +-4.439100000000000e-01 +-2.873100000000000e-01 +-1.384600000000000e-01 +-7.872700000000000e-03 + 8.648699999999999e-02 + 1.251200000000000e-01 + 9.966500000000000e-02 + 2.288700000000000e-02 +-7.260900000000001e-02 +-1.475000000000000e-01 +-1.722400000000000e-01 +-1.359400000000000e-01 +-4.315900000000000e-02 + 9.655400000000000e-02 + 2.758700000000000e-01 + 4.871100000000000e-01 + 7.127500000000000e-01 + 9.190199999999999e-01 + 1.061700000000000e+00 + 1.103600000000000e+00 + 1.033500000000000e+00 + 8.738400000000000e-01 + 6.700800000000000e-01 + 4.677200000000000e-01 + 2.910500000000000e-01 + 1.362300000000000e-01 +-1.734700000000000e-02 +-1.859200000000000e-01 +-3.646200000000000e-01 +-5.262700000000000e-01 +-6.368200000000001e-01 +-6.776900000000000e-01 +-6.606100000000000e-01 +-6.244600000000000e-01 +-6.142200000000000e-01 +-6.535700000000000e-01 +-7.273500000000001e-01 +-7.858600000000000e-01 +-7.703900000000000e-01 +-6.463600000000000e-01 +-4.247400000000000e-01 +-1.583800000000000e-01 + 8.506500000000000e-02 + 2.574300000000000e-01 + 3.508300000000000e-01 + 3.931600000000000e-01 + 4.233100000000000e-01 + 4.638800000000000e-01 + 5.096200000000000e-01 + 5.374100000000001e-01 + 5.278400000000000e-01 + 4.810000000000000e-01 + 4.153100000000000e-01 + 3.520600000000000e-01 + 2.995000000000000e-01 + 2.496900000000000e-01 + 1.898700000000000e-01 + 1.178600000000000e-01 + 4.764500000000000e-02 + 5.259700000000000e-05 +-1.417900000000000e-02 +-4.720600000000000e-03 + 3.346600000000000e-03 +-1.397900000000000e-02 +-6.487600000000000e-02 +-1.403100000000000e-01 +-2.262100000000000e-01 +-3.180000000000000e-01 +-4.240600000000000e-01 +-5.544000000000000e-01 +-7.034300000000000e-01 +-8.419400000000000e-01 +-9.266000000000000e-01 +-9.218800000000000e-01 +-8.189800000000000e-01 +-6.381400000000000e-01 +-4.131700000000000e-01 +-1.701700000000000e-01 + 8.378500000000000e-02 + 3.546100000000000e-01 + 6.441200000000000e-01 + 9.366100000000001e-01 + 1.200000000000000e+00 + 1.400400000000000e+00 + 1.519200000000000e+00 + 1.558100000000000e+00 + 1.530300000000000e+00 + 1.445000000000000e+00 + 1.297900000000000e+00 + 1.075700000000000e+00 + 7.699600000000000e-01 + 3.898600000000000e-01 +-3.733900000000000e-02 +-4.764900000000000e-01 +-8.972800000000000e-01 +-1.279100000000000e+00 +-1.605400000000000e+00 +-1.855400000000000e+00 +-2.002900000000000e+00 +-2.027500000000000e+00 +-1.930200000000000e+00 +-1.740800000000000e+00 +-1.507500000000000e+00 +-1.272500000000000e+00 +-1.049800000000000e+00 +-8.202400000000000e-01 +-5.487100000000000e-01 +-2.131900000000000e-01 + 1.753400000000000e-01 + 5.750999999999999e-01 + 9.361500000000000e-01 + 1.227300000000000e+00 + 1.448500000000000e+00 + 1.621300000000000e+00 + 1.766200000000000e+00 + 1.884400000000000e+00 + 1.956200000000000e+00 + 1.955600000000000e+00 + 1.868100000000000e+00 + 1.698800000000000e+00 + 1.465300000000000e+00 + 1.184600000000000e+00 + 8.644300000000000e-01 + 5.064800000000000e-01 + 1.162100000000000e-01 +-2.897900000000000e-01 +-6.859200000000000e-01 +-1.046800000000000e+00 +-1.355400000000000e+00 +-1.603000000000000e+00 +-1.783000000000000e+00 +-1.885900000000000e+00 +-1.901100000000000e+00 +-1.826300000000000e+00 +-1.674900000000000e+00 +-1.473000000000000e+00 +-1.246800000000000e+00 +-1.009700000000000e+00 +-7.584400000000000e-01 +-4.849700000000000e-01 +-1.922500000000000e-01 + 9.681800000000000e-02 + 3.473000000000000e-01 + 5.319800000000000e-01 + 6.489400000000000e-01 + 7.236399999999999e-01 + 7.932900000000001e-01 + 8.840200000000000e-01 + 9.960900000000000e-01 + 1.105600000000000e+00 + 1.179900000000000e+00 + 1.194400000000000e+00 + 1.142800000000000e+00 + 1.034900000000000e+00 + 8.903100000000000e-01 + 7.310300000000000e-01 + 5.768900000000000e-01 + 4.416200000000000e-01 + 3.284400000000000e-01 + 2.274900000000000e-01 + 1.195100000000000e-01 +-1.294200000000000e-02 +-1.721000000000000e-01 +-3.390500000000000e-01 +-4.816000000000000e-01 +-5.729800000000000e-01 +-6.095800000000000e-01 +-6.151500000000000e-01 +-6.276400000000000e-01 +-6.767900000000000e-01 +-7.671200000000000e-01 +-8.766300000000000e-01 +-9.705700000000000e-01 +-1.019500000000000e+00 +-1.010100000000000e+00 +-9.432400000000000e-01 +-8.250100000000000e-01 +-6.590600000000000e-01 +-4.463900000000000e-01 +-1.913100000000000e-01 + 9.275899999999999e-02 + 3.829000000000000e-01 + 6.522000000000000e-01 + 8.769400000000001e-01 + 1.040900000000000e+00 + 1.135100000000000e+00 + 1.155800000000000e+00 + 1.102800000000000e+00 + 9.807300000000000e-01 + 8.012700000000000e-01 + 5.837000000000000e-01 + 3.530800000000000e-01 + 1.357000000000000e-01 +-4.603500000000000e-02 +-1.777700000000000e-01 +-2.550800000000000e-01 +-2.827500000000000e-01 +-2.720400000000000e-01 +-2.371900000000000e-01 +-1.929200000000000e-01 +-1.537000000000000e-01 +-1.336200000000000e-01 +-1.442900000000000e-01 +-1.893100000000000e-01 +-2.574000000000000e-01 +-3.202600000000000e-01 +-3.405500000000000e-01 +-2.899500000000000e-01 +-1.683400000000000e-01 +-1.120500000000000e-02 + 1.228700000000000e-01 + 1.803300000000000e-01 + 1.404800000000000e-01 + 2.532800000000000e-02 +-1.151400000000000e-01 +-2.324900000000000e-01 +-3.042000000000000e-01 +-3.373600000000000e-01 +-3.516800000000000e-01 +-3.574100000000000e-01 +-3.460100000000000e-01 +-3.003500000000000e-01 +-2.145100000000000e-01 +-1.051200000000000e-01 +-3.473000000000000e-03 + 6.625700000000000e-02 + 1.053100000000000e-01 + 1.396100000000000e-01 + 1.995300000000000e-01 + 2.951100000000000e-01 + 4.057200000000000e-01 + 4.923400000000000e-01 + 5.234000000000000e-01 + 4.955300000000000e-01 + 4.348200000000000e-01 + 3.787400000000000e-01 + 3.526100000000000e-01 + 3.564200000000000e-01 + 3.689400000000000e-01 + 3.634500000000000e-01 + 3.231100000000000e-01 + 2.467800000000000e-01 + 1.449400000000000e-01 + 3.181100000000000e-02 +-8.014600000000000e-02 +-1.813000000000000e-01 +-2.640400000000000e-01 +-3.232000000000000e-01 +-3.582700000000000e-01 +-3.754200000000000e-01 +-3.867500000000000e-01 +-4.063600000000000e-01 +-4.445800000000000e-01 +-5.026700000000000e-01 +-5.699500000000000e-01 +-6.249600000000000e-01 +-6.415800000000000e-01 +-5.992400000000000e-01 +-4.936400000000000e-01 +-3.419500000000000e-01 +-1.776600000000000e-01 +-3.576600000000000e-02 + 6.404000000000000e-02 + 1.255300000000000e-01 + 1.695800000000000e-01 + 2.172800000000000e-01 + 2.746200000000000e-01 + 3.302200000000000e-01 + 3.674600000000000e-01 + 3.813300000000000e-01 + 3.857300000000000e-01 + 4.044900000000000e-01 + 4.527000000000000e-01 + 5.229200000000001e-01 + 5.877800000000000e-01 + 6.173500000000000e-01 + 5.982400000000000e-01 + 5.399200000000000e-01 + 4.641900000000000e-01 + 3.869600000000000e-01 + 3.068600000000000e-01 + 2.090300000000000e-01 + 7.978000000000000e-02 +-7.992900000000000e-02 +-2.519900000000000e-01 +-4.098400000000000e-01 +-5.303700000000000e-01 +-6.008900000000000e-01 +-6.195200000000000e-01 +-5.932300000000000e-01 +-5.371500000000000e-01 +-4.736900000000000e-01 +-4.262400000000000e-01 +-4.064600000000000e-01 +-4.022800000000000e-01 +-3.786000000000000e-01 +-2.964300000000000e-01 +-1.419400000000000e-01 + 5.466800000000000e-02 + 2.275100000000000e-01 + 3.100700000000000e-01 + 2.758000000000000e-01 + 1.563400000000000e-01 + 2.289700000000000e-02 +-5.820200000000000e-02 +-6.578000000000001e-02 +-3.258500000000000e-02 +-1.721700000000000e-02 +-5.970400000000000e-02 +-1.517700000000000e-01 +-2.410400000000000e-01 +-2.641500000000000e-01 +-1.847000000000000e-01 +-1.170800000000000e-02 + 2.099200000000000e-01 + 4.260000000000000e-01 + 5.973500000000000e-01 + 7.085900000000001e-01 + 7.618100000000000e-01 + 7.651600000000000e-01 + 7.260900000000000e-01 + 6.514700000000000e-01 + 5.503700000000000e-01 + 4.343000000000000e-01 + 3.139600000000000e-01 + 1.958000000000000e-01 + 8.147900000000000e-02 +-2.977100000000000e-02 +-1.388200000000000e-01 +-2.465300000000000e-01 +-3.551200000000000e-01 +-4.682800000000000e-01 +-5.882200000000000e-01 +-7.115000000000000e-01 +-8.273200000000001e-01 +-9.203800000000000e-01 +-9.768000000000000e-01 +-9.888500000000000e-01 +-9.551900000000000e-01 +-8.771099999999999e-01 +-7.546400000000000e-01 +-5.860100000000000e-01 +-3.710800000000000e-01 +-1.161000000000000e-01 + 1.638100000000000e-01 + 4.457700000000000e-01 + 7.031500000000001e-01 + 9.106500000000000e-01 + 1.049400000000000e+00 + 1.111700000000000e+00 + 1.103400000000000e+00 + 1.042600000000000e+00 + 9.528300000000000e-01 + 8.529300000000000e-01 + 7.495800000000000e-01 + 6.372600000000000e-01 + 5.066400000000000e-01 + 3.549500000000000e-01 + 1.902500000000000e-01 + 2.543600000000000e-02 +-1.331600000000000e-01 +-2.922700000000000e-01 +-4.657500000000000e-01 +-6.590300000000000e-01 +-8.555000000000000e-01 +-1.017600000000000e+00 +-1.104400000000000e+00 +-1.095500000000000e+00 +-1.004100000000000e+00 +-8.698600000000000e-01 +-7.358600000000000e-01 +-6.255500000000001e-01 +-5.344200000000000e-01 +-4.398300000000000e-01 +-3.190800000000000e-01 +-1.620500000000000e-01 + 2.885600000000000e-02 + 2.467100000000000e-01 + 4.856700000000000e-01 + 7.379400000000000e-01 + 9.854000000000001e-01 + 1.196000000000000e+00 + 1.331200000000000e+00 + 1.362700000000000e+00 + 1.285300000000000e+00 + 1.119200000000000e+00 + 8.978300000000000e-01 + 6.512500000000000e-01 + 3.963200000000000e-01 + 1.382000000000000e-01 +-1.206600000000000e-01 +-3.729300000000000e-01 +-6.056600000000000e-01 +-8.052400000000000e-01 +-9.617599999999999e-01 +-1.068400000000000e+00 +-1.117700000000000e+00 +-1.098900000000000e+00 +-1.002700000000000e+00 +-8.293600000000000e-01 +-5.963400000000000e-01 +-3.373600000000000e-01 +-9.342600000000000e-02 + 1.006400000000000e-01 + 2.268800000000000e-01 + 2.875500000000000e-01 + 3.006800000000000e-01 + 2.908900000000000e-01 + 2.796200000000000e-01 + 2.783500000000000e-01 + 2.872600000000000e-01 + 2.997800000000000e-01 + 3.107800000000000e-01 + 3.230100000000000e-01 + 3.464500000000000e-01 + 3.891500000000000e-01 + 4.449800000000000e-01 + 4.884400000000000e-01 + 4.836800000000000e-01 + 4.051100000000000e-01 + 2.567800000000000e-01 + 7.535100000000000e-02 +-8.835500000000000e-02 +-1.990100000000000e-01 +-2.572600000000000e-01 +-2.957900000000000e-01 +-3.524500000000000e-01 +-4.394200000000000e-01 +-5.307800000000000e-01 +-5.780100000000000e-01 +-5.425600000000000e-01 +-4.221500000000000e-01 +-2.528900000000000e-01 +-8.716200000000000e-02 + 3.557500000000000e-02 + 1.049200000000000e-01 + 1.344400000000000e-01 + 1.437500000000000e-01 + 1.437000000000000e-01 + 1.350400000000000e-01 + 1.174100000000000e-01 + 9.776100000000000e-02 + 8.945500000000001e-02 + 1.035500000000000e-01 + 1.410700000000000e-01 + 1.931700000000000e-01 + 2.480200000000000e-01 + 2.963500000000000e-01 + 3.302200000000000e-01 + 3.375300000000000e-01 + 3.010200000000000e-01 + 2.075400000000000e-01 + 6.307200000000000e-02 +-9.957299999999999e-02 +-2.305900000000000e-01 +-2.882300000000000e-01 +-2.634400000000000e-01 +-1.863800000000000e-01 +-1.088100000000000e-01 +-7.359300000000001e-02 +-9.156599999999999e-02 +-1.402000000000000e-01 +-1.824200000000000e-01 +-1.904500000000000e-01 +-1.585000000000000e-01 +-9.903500000000000e-02 +-3.009800000000000e-02 + 3.437000000000000e-02 + 8.556800000000001e-02 + 1.158700000000000e-01 + 1.175900000000000e-01 + 8.748700000000000e-02 + 3.240000000000000e-02 +-3.120500000000000e-02 +-8.590200000000001e-02 +-1.239500000000000e-01 +-1.508000000000000e-01 +-1.778700000000000e-01 +-2.103600000000000e-01 +-2.407600000000000e-01 +-2.537300000000000e-01 +-2.381900000000000e-01 +-1.958700000000000e-01 +-1.386000000000000e-01 +-7.691099999999999e-02 +-1.041500000000000e-02 + 7.080900000000000e-02 + 1.743900000000000e-01 + 2.938000000000000e-01 + 4.074000000000000e-01 + 4.905700000000000e-01 + 5.315400000000000e-01 + 5.381200000000000e-01 + 5.297400000000000e-01 + 5.210399999999999e-01 + 5.100200000000000e-01 + 4.795500000000000e-01 + 4.103800000000000e-01 + 2.951800000000000e-01 + 1.436900000000000e-01 +-2.254300000000000e-02 +-1.798200000000000e-01 +-3.087800000000000e-01 +-3.958300000000000e-01 +-4.330500000000000e-01 +-4.206800000000000e-01 +-3.709600000000000e-01 +-3.078900000000000e-01 +-2.591600000000000e-01 +-2.433700000000000e-01 +-2.616900000000000e-01 +-3.007000000000000e-01 +-3.449100000000000e-01 +-3.882500000000000e-01 +-4.341700000000000e-01 +-4.838000000000000e-01 +-5.228500000000000e-01 +-5.208700000000001e-01 +-4.473100000000000e-01 +-2.943800000000000e-01 +-8.912299999999999e-02 + 1.162000000000000e-01 + 2.706600000000000e-01 + 3.504800000000000e-01 + 3.669900000000000e-01 + 3.530400000000000e-01 + 3.395300000000000e-01 + 3.387200000000000e-01 + 3.439200000000000e-01 + 3.410100000000000e-01 + 3.204500000000000e-01 + 2.812500000000000e-01 + 2.279700000000000e-01 + 1.678200000000000e-01 + 1.119200000000000e-01 + 7.765100000000000e-02 + 8.510100000000000e-02 + 1.455200000000000e-01 + 2.491600000000000e-01 + 3.638900000000000e-01 + 4.495700000000000e-01 + 4.801500000000000e-01 + 4.575300000000000e-01 + 4.056900000000000e-01 + 3.492400000000000e-01 + 2.932300000000000e-01 + 2.208500000000000e-01 + 1.110800000000000e-01 +-3.842400000000000e-02 +-2.028300000000000e-01 +-3.443300000000000e-01 +-4.383100000000000e-01 +-4.908200000000000e-01 +-5.331399999999999e-01 +-5.978400000000000e-01 +-6.948400000000000e-01 +-8.052200000000000e-01 +-8.951500000000000e-01 +-9.362400000000000e-01 +-9.159700000000000e-01 +-8.326400000000000e-01 +-6.849600000000000e-01 +-4.705900000000000e-01 +-1.981800000000000e-01 + 9.821100000000001e-02 + 3.594900000000000e-01 + 5.241700000000000e-01 + 5.616300000000000e-01 + 4.929100000000000e-01 + 3.819900000000000e-01 + 3.010400000000000e-01 + 2.921400000000000e-01 + 3.503700000000000e-01 + 4.373900000000000e-01 + 5.128100000000000e-01 + 5.594400000000000e-01 + 5.860100000000000e-01 + 6.093100000000000e-01 + 6.327000000000000e-01 + 6.384100000000000e-01 + 5.982300000000000e-01 + 4.932700000000000e-01 + 3.276600000000000e-01 + 1.279300000000000e-01 +-6.951000000000000e-02 +-2.333700000000000e-01 +-3.471300000000000e-01 +-4.109700000000000e-01 +-4.381300000000000e-01 +-4.482200000000000e-01 +-4.587200000000000e-01 +-4.760800000000000e-01 +-4.905200000000000e-01 +-4.791000000000000e-01 +-4.185400000000000e-01 +-3.016100000000000e-01 +-1.468300000000000e-01 + 6.397700000000000e-03 + 1.157600000000000e-01 + 1.561600000000000e-01 + 1.296300000000000e-01 + 6.013800000000000e-02 +-2.130300000000000e-02 +-9.013400000000001e-02 +-1.333300000000000e-01 +-1.472900000000000e-01 +-1.348800000000000e-01 +-1.058100000000000e-01 +-7.718999999999999e-02 +-6.868900000000000e-02 +-9.058500000000000e-02 +-1.322600000000000e-01 +-1.622800000000000e-01 +-1.447100000000000e-01 +-6.327199999999999e-02 + 6.393500000000001e-02 + 1.919500000000000e-01 + 2.755000000000000e-01 + 2.964500000000000e-01 + 2.722300000000000e-01 + 2.395200000000000e-01 + 2.264100000000000e-01 + 2.350600000000000e-01 + 2.476900000000000e-01 + 2.491200000000000e-01 + 2.455400000000000e-01 + 2.622300000000000e-01 + 3.211600000000000e-01 + 4.164100000000000e-01 + 5.080600000000000e-01 + 5.409600000000000e-01 + 4.753500000000000e-01 + 3.079500000000000e-01 + 7.024300000000000e-02 +-1.914200000000000e-01 +-4.372700000000000e-01 +-6.432400000000000e-01 +-7.966700000000000e-01 +-8.889400000000000e-01 +-9.150800000000000e-01 +-8.800100000000000e-01 +-8.019700000000000e-01 +-7.049000000000000e-01 +-6.025800000000000e-01 +-4.876300000000000e-01 +-3.373200000000000e-01 +-1.348900000000000e-01 + 1.090300000000000e-01 + 3.531500000000000e-01 + 5.457800000000000e-01 + 6.554300000000000e-01 + 6.895000000000000e-01 + 6.867300000000000e-01 + 6.887600000000000e-01 + 7.113900000000000e-01 + 7.358800000000000e-01 + 7.249600000000000e-01 + 6.503000000000000e-01 + 5.115800000000000e-01 + 3.356400000000000e-01 + 1.597300000000000e-01 + 1.240600000000000e-02 +-9.602900000000000e-02 +-1.717400000000000e-01 +-2.301400000000000e-01 +-2.893700000000000e-01 +-3.656300000000000e-01 +-4.676400000000000e-01 +-5.899300000000000e-01 +-7.096400000000000e-01 +-7.927900000000000e-01 +-8.098300000000000e-01 +-7.516400000000000e-01 +-6.338700000000000e-01 +-4.851000000000000e-01 +-3.267600000000000e-01 +-1.607000000000000e-01 + 2.513900000000000e-02 + 2.369100000000000e-01 + 4.575400000000000e-01 + 6.477500000000000e-01 + 7.667500000000000e-01 + 7.973900000000000e-01 + 7.560900000000000e-01 + 6.788700000000000e-01 + 5.940600000000000e-01 + 5.029900000000000e-01 + 3.835600000000000e-01 + 2.133400000000000e-01 +-6.363200000000000e-03 +-2.446200000000000e-01 +-4.569000000000000e-01 +-6.095800000000000e-01 +-6.936700000000000e-01 +-7.188200000000000e-01 +-6.955300000000000e-01 +-6.224900000000000e-01 +-4.906700000000000e-01 +-3.003000000000000e-01 +-7.501500000000000e-02 + 1.403900000000000e-01 + 2.996000000000000e-01 + 3.784700000000000e-01 + 3.867400000000000e-01 + 3.603000000000000e-01 + 3.404500000000000e-01 + 3.535400000000000e-01 + 4.018700000000000e-01 + 4.669600000000000e-01 + 5.198000000000000e-01 + 5.316900000000000e-01 + 4.831100000000000e-01 + 3.707900000000000e-01 + 2.115300000000000e-01 + 3.919000000000000e-02 +-1.078100000000000e-01 +-2.044500000000000e-01 +-2.524000000000000e-01 +-2.782100000000000e-01 +-3.154000000000000e-01 +-3.811700000000000e-01 +-4.641100000000000e-01 +-5.324500000000000e-01 +-5.575599999999999e-01 +-5.355400000000000e-01 +-4.906000000000000e-01 +-4.573800000000000e-01 +-4.551300000000000e-01 +-4.725600000000000e-01 +-4.740600000000000e-01 +-4.220900000000000e-01 +-2.995900000000000e-01 +-1.178600000000000e-01 + 9.216500000000000e-02 + 2.957500000000000e-01 + 4.650400000000000e-01 + 5.800200000000000e-01 + 6.254300000000000e-01 + 5.923700000000000e-01 + 4.870300000000000e-01 + 3.394400000000000e-01 + 2.010000000000000e-01 + 1.264300000000000e-01 + 1.479200000000000e-01 + 2.573400000000000e-01 + 4.093000000000000e-01 + 5.447100000000000e-01 + 6.209000000000000e-01 + 6.297400000000000e-01 + 5.933400000000000e-01 + 5.417000000000000e-01 + 4.880000000000000e-01 + 4.181700000000000e-01 + 3.010200000000000e-01 + 1.118500000000000e-01 +-1.460300000000000e-01 +-4.358100000000000e-01 +-7.014899999999999e-01 +-8.936500000000001e-01 +-9.917300000000000e-01 +-1.010000000000000e+00 +-9.843300000000000e-01 +-9.482100000000000e-01 +-9.126500000000000e-01 +-8.619100000000000e-01 +-7.670200000000000e-01 +-6.077200000000000e-01 +-3.885600000000000e-01 +-1.392500000000000e-01 + 9.984500000000000e-02 + 2.965700000000000e-01 + 4.377900000000000e-01 + 5.270400000000000e-01 + 5.740000000000000e-01 + 5.859400000000000e-01 + 5.677600000000000e-01 + 5.283099999999999e-01 + 4.841300000000000e-01 + 4.538800000000000e-01 + 4.459500000000000e-01 + 4.491900000000000e-01 + 4.366200000000000e-01 + 3.818000000000000e-01 + 2.771000000000000e-01 + 1.399600000000000e-01 + 1.959900000000000e-03 +-1.106600000000000e-01 +-1.899900000000000e-01 +-2.428000000000000e-01 +-2.748700000000000e-01 +-2.782400000000000e-01 +-2.342800000000000e-01 +-1.316900000000000e-01 + 1.573800000000000e-02 + 1.681600000000000e-01 + 2.795300000000000e-01 + 3.243900000000000e-01 + 3.108100000000000e-01 + 2.687800000000000e-01 + 2.228500000000000e-01 + 1.717300000000000e-01 + 9.220600000000000e-02 +-3.472200000000000e-02 +-1.970600000000000e-01 +-3.480100000000000e-01 +-4.317200000000000e-01 +-4.211800000000000e-01 +-3.401600000000000e-01 +-2.516100000000000e-01 +-2.196100000000000e-01 +-2.714800000000000e-01 +-3.855400000000000e-01 +-5.107000000000000e-01 +-6.006000000000000e-01 +-6.369899999999999e-01 +-6.281300000000000e-01 +-5.887500000000000e-01 +-5.213500000000000e-01 +-4.142000000000000e-01 +-2.555900000000000e-01 +-4.998800000000000e-02 + 1.783800000000000e-01 + 3.970700000000000e-01 + 5.814900000000000e-01 + 7.224800000000000e-01 + 8.215600000000000e-01 + 8.812300000000000e-01 + 9.011800000000000e-01 + 8.836300000000000e-01 + 8.404300000000000e-01 + 7.915500000000000e-01 + 7.526700000000000e-01 + 7.209500000000000e-01 + 6.726200000000000e-01 + 5.773800000000000e-01 + 4.202400000000000e-01 + 2.136900000000000e-01 +-1.044400000000000e-02 +-2.233800000000000e-01 +-4.178600000000000e-01 +-6.065000000000000e-01 +-8.006700000000000e-01 +-9.872700000000000e-01 +-1.124100000000000e+00 +-1.160400000000000e+00 +-1.069300000000000e+00 +-8.676400000000000e-01 +-6.090600000000000e-01 +-3.546000000000000e-01 +-1.429900000000000e-01 + 1.948200000000000e-02 + 1.453900000000000e-01 + 2.436500000000000e-01 + 3.075300000000000e-01 + 3.217100000000000e-01 + 2.794900000000000e-01 + 1.928800000000000e-01 + 8.592300000000000e-02 +-2.255200000000000e-02 +-1.301100000000000e-01 +-2.443000000000000e-01 +-3.628500000000000e-01 +-4.582100000000000e-01 +-4.824400000000000e-01 +-3.929400000000000e-01 +-1.817700000000000e-01 + 1.133700000000000e-01 + 4.260500000000000e-01 + 6.949200000000000e-01 + 8.913600000000000e-01 + 1.022700000000000e+00 + 1.111200000000000e+00 + 1.166300000000000e+00 + 1.171200000000000e+00 + 1.093300000000000e+00 + 9.081500000000000e-01 + 6.207700000000000e-01 + 2.677300000000000e-01 +-9.861499999999999e-02 +-4.320200000000000e-01 +-7.060500000000000e-01 +-9.132500000000000e-01 +-1.054400000000000e+00 +-1.128200000000000e+00 +-1.128700000000000e+00 +-1.050000000000000e+00 +-8.943900000000000e-01 +-6.767400000000000e-01 +-4.236500000000000e-01 +-1.690100000000000e-01 + 5.198000000000000e-02 + 2.092400000000000e-01 + 2.843000000000000e-01 + 2.761100000000000e-01 + 2.036900000000000e-01 + 1.024100000000000e-01 + 1.354100000000000e-02 +-2.988300000000000e-02 +-1.465300000000000e-02 + 4.914100000000000e-02 + 1.347000000000000e-01 + 2.118500000000000e-01 + 2.604800000000000e-01 + 2.774800000000000e-01 + 2.741900000000000e-01 + 2.665300000000000e-01 + 2.641300000000000e-01 + 2.650500000000000e-01 + 2.591400000000000e-01 + 2.376900000000000e-01 + 2.017900000000000e-01 + 1.626700000000000e-01 + 1.325400000000000e-01 + 1.118500000000000e-01 + 8.337200000000000e-02 + 1.989400000000000e-02 +-9.697400000000000e-02 +-2.587400000000000e-01 +-4.262400000000000e-01 +-5.454500000000000e-01 +-5.747200000000000e-01 +-5.066300000000000e-01 +-3.703300000000000e-01 +-2.132600000000000e-01 +-7.506699999999999e-02 + 2.863100000000000e-02 + 1.034700000000000e-01 + 1.599800000000000e-01 + 1.987300000000000e-01 + 2.096800000000000e-01 + 1.855000000000000e-01 + 1.366300000000000e-01 + 9.404899999999999e-02 + 9.506199999999999e-02 + 1.613700000000000e-01 + 2.845700000000000e-01 + 4.288900000000000e-01 + 5.483800000000000e-01 + 6.064100000000000e-01 + 5.857900000000000e-01 + 4.869700000000000e-01 + 3.207800000000000e-01 + 1.037000000000000e-01 +-1.414400000000000e-01 +-3.841600000000000e-01 +-5.899400000000000e-01 +-7.298600000000000e-01 +-7.902000000000000e-01 +-7.751400000000001e-01 +-7.007400000000000e-01 +-5.857300000000000e-01 +-4.465300000000000e-01 +-2.991000000000000e-01 +-1.628300000000000e-01 +-5.923900000000000e-02 +-3.162100000000000e-03 + 7.412800000000000e-03 +-6.704500000000000e-03 +-1.629400000000000e-02 +-3.003400000000000e-04 + 4.366600000000000e-02 + 1.030300000000000e-01 + 1.646300000000000e-01 + 2.269600000000000e-01 + 2.990400000000000e-01 + 3.862200000000000e-01 + 4.757500000000000e-01 + 5.363900000000000e-01 + 5.357300000000000e-01 + 4.635500000000000e-01 + 3.430500000000000e-01 + 2.200400000000000e-01 + 1.367000000000000e-01 + 1.086300000000000e-01 + 1.209400000000000e-01 + 1.440700000000000e-01 + 1.553800000000000e-01 + 1.493100000000000e-01 + 1.306500000000000e-01 + 1.001300000000000e-01 + 4.788500000000000e-02 +-3.809000000000000e-02 +-1.558000000000000e-01 +-2.811600000000000e-01 +-3.776600000000000e-01 +-4.186200000000000e-01 +-4.051100000000000e-01 +-3.650400000000000e-01 +-3.332300000000000e-01 +-3.274100000000000e-01 +-3.377700000000000e-01 +-3.371700000000000e-01 +-3.027400000000000e-01 +-2.319800000000000e-01 +-1.423000000000000e-01 +-5.720600000000000e-02 + 7.989300000000000e-03 + 4.965700000000000e-02 + 6.869900000000000e-02 + 6.248500000000000e-02 + 2.566000000000000e-02 +-3.998200000000000e-02 +-1.162200000000000e-01 +-1.704200000000000e-01 +-1.705500000000000e-01 +-1.033500000000000e-01 + 1.759200000000000e-02 + 1.598200000000000e-01 + 2.899500000000000e-01 + 3.884200000000000e-01 + 4.518900000000000e-01 + 4.852300000000000e-01 + 4.928400000000000e-01 + 4.774400000000000e-01 + 4.455400000000000e-01 + 4.106600000000000e-01 + 3.868900000000000e-01 + 3.752400000000000e-01 + 3.542700000000000e-01 + 2.867400000000000e-01 + 1.424600000000000e-01 +-7.649700000000000e-02 +-3.268000000000000e-01 +-5.405300000000000e-01 +-6.591700000000000e-01 +-6.637500000000000e-01 +-5.817099999999999e-01 +-4.668100000000000e-01 +-3.663800000000000e-01 +-2.977300000000000e-01 +-2.475600000000000e-01 +-1.912900000000000e-01 +-1.163100000000000e-01 +-3.245300000000000e-02 + 3.577000000000000e-02 + 6.722400000000001e-02 + 5.864900000000000e-02 + 2.653900000000000e-02 +-2.502000000000000e-03 +-4.662800000000000e-03 + 3.282800000000000e-02 + 1.100300000000000e-01 + 2.158700000000000e-01 + 3.293100000000000e-01 + 4.207300000000000e-01 + 4.570300000000000e-01 + 4.128100000000000e-01 + 2.841400000000000e-01 + 9.655300000000000e-02 +-1.000900000000000e-01 +-2.497600000000000e-01 +-3.129300000000000e-01 +-2.815600000000000e-01 +-1.789500000000000e-01 +-4.610200000000000e-02 + 7.593200000000000e-02 + 1.583100000000000e-01 + 1.874500000000000e-01 + 1.623200000000000e-01 + 9.181200000000000e-02 +-5.515400000000000e-03 +-1.023600000000000e-01 +-1.688300000000000e-01 +-1.843400000000000e-01 +-1.493000000000000e-01 +-8.770100000000000e-02 +-3.632200000000000e-02 +-2.528000000000000e-02 +-6.140500000000000e-02 +-1.250100000000000e-01 +-1.818300000000000e-01 +-2.018200000000000e-01 +-1.728300000000000e-01 +-1.019400000000000e-01 +-6.850700000000000e-03 + 9.394800000000000e-02 + 1.851500000000000e-01 + 2.528500000000000e-01 + 2.833300000000000e-01 + 2.677000000000000e-01 + 2.110100000000000e-01 + 1.371800000000000e-01 + 8.210700000000000e-02 + 7.510000000000000e-02 + 1.194000000000000e-01 + 1.855700000000000e-01 + 2.245000000000000e-01 + 1.935000000000000e-01 + 7.984200000000000e-02 +-9.252600000000000e-02 +-2.763000000000000e-01 +-4.244100000000000e-01 +-5.092000000000000e-01 +-5.275500000000000e-01 +-4.927400000000000e-01 +-4.217400000000000e-01 +-3.266800000000000e-01 +-2.136300000000000e-01 +-8.606500000000000e-02 + 5.115200000000000e-02 + 1.894800000000000e-01 + 3.156600000000000e-01 + 4.119300000000000e-01 + 4.589700000000000e-01 + 4.431300000000000e-01 + 3.659500000000000e-01 + 2.499600000000000e-01 + 1.344300000000000e-01 + 6.035000000000000e-02 + 5.208600000000000e-02 + 1.066800000000000e-01 + 1.976200000000000e-01 + 2.898200000000000e-01 + 3.549900000000000e-01 + 3.778000000000000e-01 + 3.516100000000000e-01 + 2.719100000000000e-01 + 1.359700000000000e-01 +-4.983900000000000e-02 +-2.634300000000000e-01 +-4.704700000000000e-01 +-6.391300000000000e-01 +-7.560600000000000e-01 +-8.300200000000000e-01 +-8.784999999999999e-01 +-9.073500000000000e-01 +-9.007800000000000e-01 +-8.318400000000000e-01 +-6.862500000000000e-01 +-4.796100000000000e-01 +-2.517600000000000e-01 +-4.023900000000000e-02 + 1.464200000000000e-01 + 3.329800000000000e-01 + 5.532400000000000e-01 + 8.151300000000000e-01 + 1.082900000000000e+00 + 1.292300000000000e+00 + 1.388700000000000e+00 + 1.360100000000000e+00 + 1.239200000000000e+00 + 1.075500000000000e+00 + 8.990500000000000e-01 + 7.054400000000000e-01 + 4.708800000000000e-01 + 1.831500000000000e-01 +-1.391100000000000e-01 +-4.541300000000000e-01 +-7.235200000000001e-01 +-9.333800000000000e-01 +-1.092100000000000e+00 +-1.209000000000000e+00 +-1.274700000000000e+00 +-1.264500000000000e+00 +-1.161900000000000e+00 +-9.825199999999999e-01 +-7.732000000000000e-01 +-5.842700000000000e-01 +-4.347900000000000e-01 +-3.009100000000000e-01 +-1.388500000000000e-01 + 7.412000000000001e-02 + 3.138700000000000e-01 + 5.213100000000001e-01 + 6.444100000000000e-01 + 6.776100000000000e-01 + 6.668100000000000e-01 + 6.747300000000001e-01 + 7.326100000000000e-01 + 8.153700000000000e-01 + 8.591000000000000e-01 + 8.070100000000000e-01 + 6.494500000000000e-01 + 4.292900000000000e-01 + 2.117800000000000e-01 + 4.394400000000000e-02 +-6.672200000000000e-02 +-1.425800000000000e-01 +-2.084700000000000e-01 +-2.709800000000000e-01 +-3.191600000000000e-01 +-3.412300000000000e-01 +-3.390400000000000e-01 +-3.267300000000000e-01 +-3.160100000000000e-01 +-3.030900000000000e-01 +-2.706200000000000e-01 +-2.039100000000000e-01 +-1.076200000000000e-01 +-8.084900000000001e-03 + 6.128600000000000e-02 + 8.041500000000000e-02 + 5.293500000000000e-02 +-3.785900000000000e-04 +-5.840100000000000e-02 +-1.126200000000000e-01 +-1.668700000000000e-01 +-2.260700000000000e-01 +-2.849300000000000e-01 +-3.264900000000000e-01 +-3.313200000000000e-01 +-2.899300000000000e-01 +-2.092200000000000e-01 +-1.094900000000000e-01 +-1.556100000000000e-02 + 5.201800000000000e-02 + 8.198999999999999e-02 + 7.427800000000000e-02 + 4.032400000000000e-02 + 1.646300000000000e-03 +-1.536500000000000e-02 + 1.113800000000000e-02 + 8.857200000000000e-02 + 2.058500000000000e-01 + 3.389100000000000e-01 + 4.632000000000000e-01 + 5.647600000000000e-01 + 6.425900000000000e-01 + 7.010800000000000e-01 + 7.393999999999999e-01 + 7.466900000000000e-01 + 7.070800000000000e-01 + 6.106800000000000e-01 + 4.619000000000000e-01 + 2.788900000000000e-01 + 8.492800000000000e-02 +-1.018600000000000e-01 +-2.737900000000000e-01 +-4.319400000000000e-01 +-5.803700000000001e-01 +-7.205400000000000e-01 +-8.479600000000000e-01 +-9.505500000000000e-01 +-1.008700000000000e+00 +-9.984900000000000e-01 +-9.009700000000000e-01 +-7.150200000000000e-01 +-4.677600000000000e-01 +-2.129700000000000e-01 +-1.347300000000000e-02 + 8.602600000000001e-02 + 8.085400000000000e-02 + 9.089900000000000e-03 +-6.796700000000000e-02 +-9.650499999999999e-02 +-5.387800000000000e-02 + 4.781500000000000e-02 + 1.775200000000000e-01 + 3.072400000000000e-01 + 4.248800000000000e-01 + 5.313300000000000e-01 + 6.275700000000000e-01 + 7.045000000000000e-01 + 7.441800000000000e-01 + 7.314300000000000e-01 + 6.661400000000000e-01 + 5.663100000000000e-01 + 4.591900000000000e-01 + 3.663700000000000e-01 + 2.925400000000000e-01 + 2.246400000000000e-01 + 1.408200000000000e-01 + 2.353000000000000e-02 +-1.302200000000000e-01 +-3.054000000000000e-01 +-4.727800000000000e-01 +-5.980000000000000e-01 +-6.529199999999999e-01 +-6.258700000000000e-01 +-5.271900000000000e-01 +-3.870000000000000e-01 +-2.451100000000000e-01 +-1.368100000000000e-01 +-8.085199999999999e-02 +-7.525999999999999e-02 +-1.023200000000000e-01 +-1.389400000000000e-01 +-1.662900000000000e-01 +-1.741800000000000e-01 +-1.599900000000000e-01 +-1.250400000000000e-01 +-7.194299999999999e-02 +-3.980300000000000e-03 + 7.450000000000000e-02 + 1.579800000000000e-01 + 2.401100000000000e-01 + 3.136600000000000e-01 + 3.698800000000000e-01 + 3.987100000000000e-01 + 3.917500000000000e-01 + 3.475400000000000e-01 + 2.756900000000000e-01 + 1.951500000000000e-01 + 1.251800000000000e-01 + 7.321200000000000e-02 + 2.797600000000000e-02 +-3.569200000000000e-02 +-1.412200000000000e-01 +-2.927600000000000e-01 +-4.670800000000000e-01 +-6.207900000000000e-01 +-7.088400000000000e-01 +-7.033600000000000e-01 +-6.023700000000000e-01 +-4.259300000000000e-01 +-2.051700000000000e-01 + 2.731600000000000e-02 + 2.417200000000000e-01 + 4.123900000000000e-01 + 5.213100000000001e-01 + 5.648900000000000e-01 + 5.588300000000000e-01 + 5.337000000000000e-01 + 5.194500000000000e-01 + 5.263300000000000e-01 + 5.357300000000000e-01 + 5.098700000000000e-01 + 4.166200000000000e-01 + 2.539600000000000e-01 + 5.695400000000000e-02 +-1.192100000000000e-01 +-2.297800000000000e-01 +-2.647800000000000e-01 +-2.513500000000000e-01 +-2.331900000000000e-01 +-2.421100000000000e-01 +-2.805800000000000e-01 +-3.256900000000000e-01 +-3.490800000000000e-01 +-3.374600000000000e-01 +-2.998200000000000e-01 +-2.588800000000000e-01 +-2.351400000000000e-01 +-2.358700000000000e-01 +-2.549200000000000e-01 +-2.804200000000000e-01 +-3.022000000000000e-01 +-3.135100000000000e-01 +-3.078400000000000e-01 +-2.762700000000000e-01 +-2.092700000000000e-01 +-1.022300000000000e-01 + 4.001000000000000e-02 + 2.034600000000000e-01 + 3.696800000000000e-01 + 5.209600000000000e-01 + 6.426100000000000e-01 + 7.222200000000000e-01 + 7.492300000000000e-01 + 7.170900000000000e-01 + 6.273300000000001e-01 + 4.915000000000000e-01 + 3.281500000000000e-01 + 1.562000000000000e-01 +-1.046600000000000e-02 +-1.632800000000000e-01 +-2.947300000000000e-01 +-3.948600000000000e-01 +-4.535900000000000e-01 +-4.684000000000000e-01 +-4.510200000000000e-01 +-4.256100000000000e-01 +-4.167100000000000e-01 +-4.335600000000000e-01 +-4.616900000000000e-01 +-4.684100000000000e-01 +-4.196600000000000e-01 +-2.977500000000000e-01 +-1.095300000000000e-01 + 1.180000000000000e-01 + 3.494400000000000e-01 + 5.515700000000000e-01 + 6.982500000000000e-01 + 7.715900000000000e-01 + 7.638400000000000e-01 + 6.813000000000000e-01 + 5.461600000000000e-01 + 3.909200000000000e-01 + 2.453000000000000e-01 + 1.228100000000000e-01 + 1.705100000000000e-02 +-8.831300000000000e-02 +-2.023900000000000e-01 +-3.159800000000000e-01 +-4.060500000000000e-01 +-4.532000000000000e-01 +-4.586400000000000e-01 +-4.462400000000000e-01 +-4.465100000000000e-01 +-4.734000000000000e-01 +-5.115100000000000e-01 +-5.241600000000000e-01 +-4.774400000000000e-01 +-3.635300000000000e-01 +-2.072800000000000e-01 +-5.238200000000000e-02 + 6.235400000000000e-02 + 1.206400000000000e-01 + 1.308400000000000e-01 + 1.155500000000000e-01 + 9.929800000000000e-02 + 1.027200000000000e-01 + 1.431400000000000e-01 + 2.343400000000000e-01 + 3.799900000000000e-01 + 5.632900000000000e-01 + 7.423900000000000e-01 + 8.600500000000000e-01 + 8.667300000000000e-01 + 7.451700000000000e-01 + 5.216300000000000e-01 + 2.555500000000000e-01 + 1.291700000000000e-02 +-1.616600000000000e-01 +-2.590100000000000e-01 +-2.995900000000000e-01 +-3.139500000000000e-01 +-3.226600000000000e-01 +-3.275100000000000e-01 +-3.172200000000000e-01 +-2.820300000000000e-01 +-2.266600000000000e-01 +-1.725200000000000e-01 +-1.474500000000000e-01 +-1.685200000000000e-01 +-2.286200000000000e-01 +-2.961000000000000e-01 +-3.299100000000000e-01 +-3.028900000000000e-01 +-2.197500000000000e-01 +-1.175300000000000e-01 +-4.607400000000000e-02 +-3.870900000000000e-02 +-9.105800000000000e-02 +-1.620300000000000e-01 +-1.976900000000000e-01 +-1.637200000000000e-01 +-6.575200000000000e-02 + 5.527600000000000e-02 + 1.494000000000000e-01 + 1.878300000000000e-01 + 1.773600000000000e-01 + 1.507000000000000e-01 + 1.412600000000000e-01 + 1.609000000000000e-01 + 1.955600000000000e-01 + 2.202500000000000e-01 + 2.207200000000000e-01 + 2.057200000000000e-01 + 2.012400000000000e-01 + 2.317900000000000e-01 + 3.023500000000000e-01 + 3.933700000000000e-01 + 4.711800000000000e-01 + 5.060700000000000e-01 + 4.859900000000000e-01 + 4.183600000000000e-01 + 3.211800000000000e-01 + 2.108100000000000e-01 + 9.463000000000001e-02 +-2.827300000000000e-02 +-1.609600000000000e-01 +-3.025200000000000e-01 +-4.461700000000000e-01 +-5.816900000000000e-01 +-6.994899999999999e-01 +-7.923900000000000e-01 +-8.542000000000000e-01 +-8.764900000000000e-01 +-8.472100000000000e-01 +-7.535800000000000e-01 +-5.891100000000000e-01 +-3.611100000000000e-01 +-9.421800000000000e-02 + 1.733000000000000e-01 + 3.997400000000000e-01 + 5.526000000000000e-01 + 6.182400000000000e-01 + 6.046600000000000e-01 + 5.369800000000000e-01 + 4.481300000000000e-01 + 3.682700000000000e-01 + 3.159800000000000e-01 + 2.932400000000000e-01 + 2.853200000000000e-01 + 2.666600000000000e-01 + 2.120500000000000e-01 + 1.099500000000000e-01 +-2.827600000000000e-02 +-1.690500000000000e-01 +-2.692500000000000e-01 +-2.956700000000000e-01 +-2.413200000000000e-01 +-1.289400000000000e-01 + 6.696600000000000e-04 + 1.087100000000000e-01 + 1.749100000000000e-01 + 2.009300000000000e-01 + 2.004200000000000e-01 + 1.838800000000000e-01 + 1.499800000000000e-01 + 8.916900000000000e-02 +-3.568200000000000e-03 +-1.170900000000000e-01 +-2.231900000000000e-01 +-2.885400000000000e-01 +-2.926300000000000e-01 +-2.401700000000000e-01 +-1.596700000000000e-01 +-8.844900000000000e-02 +-5.251000000000000e-02 +-5.357400000000000e-02 +-7.094499999999999e-02 +-7.718899999999999e-02 +-5.783200000000000e-02 +-2.230000000000000e-02 + 1.691600000000000e-03 +-1.228700000000000e-02 +-6.812699999999999e-02 +-1.389900000000000e-01 +-1.795100000000000e-01 +-1.524800000000000e-01 +-5.344000000000000e-02 + 8.370100000000000e-02 + 2.049800000000000e-01 + 2.677100000000000e-01 + 2.642900000000000e-01 + 2.225400000000000e-01 + 1.827500000000000e-01 + 1.680700000000000e-01 + 1.693100000000000e-01 + 1.544200000000000e-01 + 9.467600000000000e-02 +-1.208900000000000e-02 +-1.378900000000000e-01 +-2.417600000000000e-01 +-2.935000000000000e-01 +-2.866700000000000e-01 +-2.335500000000000e-01 +-1.502300000000000e-01 +-4.618400000000000e-02 + 7.298800000000000e-02 + 1.948600000000000e-01 + 2.942700000000000e-01 + 3.410400000000000e-01 + 3.170400000000000e-01 + 2.288700000000000e-01 + 1.048100000000000e-01 +-2.263200000000000e-02 +-1.345200000000000e-01 +-2.293300000000000e-01 +-3.101500000000000e-01 +-3.673900000000000e-01 +-3.736100000000000e-01 +-2.973600000000000e-01 +-1.268500000000000e-01 + 1.149100000000000e-01 + 3.755800000000000e-01 + 5.962400000000000e-01 + 7.350100000000001e-01 + 7.759100000000000e-01 + 7.205700000000000e-01 + 5.741900000000000e-01 + 3.403000000000000e-01 + 2.916200000000000e-02 +-3.291500000000000e-01 +-6.813200000000000e-01 +-9.641000000000000e-01 +-1.127700000000000e+00 +-1.154100000000000e+00 +-1.059000000000000e+00 +-8.781500000000000e-01 +-6.495200000000000e-01 +-4.020500000000000e-01 +-1.557700000000000e-01 + 7.303800000000001e-02 + 2.690800000000000e-01 + 4.201900000000000e-01 + 5.211100000000000e-01 + 5.740900000000000e-01 + 5.862500000000000e-01 + 5.675000000000000e-01 + 5.321300000000000e-01 + 5.015800000000000e-01 + 5.016600000000000e-01 + 5.505800000000000e-01 + 6.432300000000000e-01 + 7.437900000000000e-01 + 7.963500000000000e-01 + 7.509900000000000e-01 + 5.899799999999999e-01 + 3.368400000000000e-01 + 4.213600000000000e-02 +-2.436600000000000e-01 +-4.909000000000000e-01 +-6.921300000000000e-01 +-8.471000000000000e-01 +-9.472500000000000e-01 +-9.746700000000000e-01 +-9.168700000000000e-01 +-7.844100000000001e-01 +-6.151100000000000e-01 +-4.589800000000000e-01 +-3.534400000000000e-01 +-3.055300000000000e-01 +-2.923300000000000e-01 +-2.769600000000000e-01 +-2.278800000000000e-01 +-1.300100000000000e-01 + 1.465900000000000e-02 + 1.912200000000000e-01 + 3.750100000000000e-01 + 5.339800000000000e-01 + 6.350900000000000e-01 + 6.571300000000000e-01 + 6.039400000000000e-01 + 5.072000000000000e-01 + 4.123400000000000e-01 + 3.535600000000000e-01 + 3.337700000000000e-01 + 3.243600000000000e-01 + 2.863000000000000e-01 + 1.985300000000000e-01 + 7.417799999999999e-02 +-4.631500000000000e-02 +-1.194400000000000e-01 +-1.228800000000000e-01 +-6.424199999999999e-02 + 2.854900000000000e-02 + 1.252300000000000e-01 + 2.058400000000000e-01 + 2.614800000000000e-01 + 2.872100000000000e-01 + 2.761000000000000e-01 + 2.201800000000000e-01 + 1.163400000000000e-01 +-2.916200000000000e-02 +-2.017700000000000e-01 +-3.842100000000000e-01 +-5.615400000000000e-01 +-7.222200000000000e-01 +-8.560400000000000e-01 +-9.524000000000000e-01 +-1.001200000000000e+00 +-9.951700000000000e-01 +-9.306400000000000e-01 +-8.064000000000000e-01 +-6.226300000000000e-01 +-3.833200000000000e-01 +-1.018400000000000e-01 + 1.950100000000000e-01 + 4.700600000000000e-01 + 6.871699999999999e-01 + 8.252300000000000e-01 + 8.861400000000000e-01 + 8.911900000000000e-01 + 8.680700000000000e-01 + 8.367300000000000e-01 + 8.021400000000000e-01 + 7.563400000000000e-01 + 6.863100000000000e-01 + 5.820000000000000e-01 + 4.415600000000000e-01 + 2.738700000000000e-01 + 9.884900000000001e-02 +-5.587200000000000e-02 +-1.639600000000000e-01 +-2.136400000000000e-01 +-2.180500000000000e-01 +-2.133400000000000e-01 +-2.409900000000000e-01 +-3.221300000000000e-01 +-4.400300000000000e-01 +-5.449200000000000e-01 +-5.812400000000000e-01 +-5.218600000000000e-01 +-3.870400000000000e-01 +-2.348800000000000e-01 +-1.290800000000000e-01 +-1.042700000000000e-01 +-1.506600000000000e-01 +-2.254600000000000e-01 +-2.808000000000000e-01 +-2.887000000000000e-01 +-2.485900000000000e-01 +-1.772300000000000e-01 +-9.244200000000000e-02 +-3.805200000000000e-03 + 8.518000000000001e-02 + 1.689100000000000e-01 + 2.351000000000000e-01 + 2.689700000000000e-01 + 2.632100000000000e-01 + 2.255000000000000e-01 + 1.773400000000000e-01 + 1.438000000000000e-01 + 1.402200000000000e-01 + 1.636700000000000e-01 + 1.939900000000000e-01 + 2.040900000000000e-01 + 1.743100000000000e-01 + 1.037500000000000e-01 + 1.285000000000000e-02 +-6.490200000000000e-02 +-9.848000000000000e-02 +-7.453400000000000e-02 +-4.074400000000000e-03 + 8.322499999999999e-02 + 1.538300000000000e-01 + 1.854100000000000e-01 + 1.735900000000000e-01 + 1.278000000000000e-01 + 6.145500000000000e-02 +-1.496400000000000e-02 +-9.311400000000000e-02 +-1.609900000000000e-01 +-1.999500000000000e-01 +-1.903200000000000e-01 +-1.234900000000000e-01 +-1.175300000000000e-02 + 1.129900000000000e-01 + 2.125100000000000e-01 + 2.595900000000000e-01 + 2.480900000000000e-01 + 1.901500000000000e-01 + 1.044200000000000e-01 + 5.226400000000000e-03 +-9.963300000000000e-02 +-2.031400000000000e-01 +-2.929100000000000e-01 +-3.518500000000000e-01 +-3.664400000000000e-01 +-3.359300000000000e-01 +-2.747900000000000e-01 +-2.059100000000000e-01 +-1.492900000000000e-01 +-1.143300000000000e-01 +-1.000500000000000e-01 +-1.010500000000000e-01 +-1.132200000000000e-01 +-1.345900000000000e-01 +-1.616700000000000e-01 +-1.856600000000000e-01 +-1.925600000000000e-01 +-1.676200000000000e-01 +-1.015100000000000e-01 + 5.243200000000000e-03 + 1.409500000000000e-01 + 2.846800000000000e-01 + 4.111200000000000e-01 + 4.983000000000000e-01 + 5.365300000000000e-01 + 5.343500000000000e-01 + 5.160800000000000e-01 + 5.091100000000000e-01 + 5.263300000000000e-01 + 5.543600000000000e-01 + 5.574600000000000e-01 + 4.968900000000000e-01 + 3.546900000000000e-01 + 1.463000000000000e-01 +-8.685600000000000e-02 +-2.996400000000000e-01 +-4.647300000000000e-01 +-5.792000000000000e-01 +-6.535100000000000e-01 +-6.940600000000000e-01 +-6.941600000000000e-01 +-6.405000000000000e-01 +-5.289700000000001e-01 +-3.757300000000000e-01 +-2.141600000000000e-01 +-7.960100000000001e-02 + 6.446900000000000e-03 + 4.179200000000000e-02 + 3.715300000000000e-02 + 5.790000000000000e-03 +-4.132300000000000e-02 +-9.238600000000000e-02 +-1.300000000000000e-01 +-1.330000000000000e-01 +-8.689900000000000e-02 + 4.480600000000000e-03 + 1.163100000000000e-01 + 2.136700000000000e-01 + 2.699800000000000e-01 + 2.808200000000000e-01 + 2.639200000000000e-01 + 2.462800000000000e-01 + 2.476600000000000e-01 + 2.714800000000000e-01 + 3.070200000000000e-01 + 3.392300000000000e-01 + 3.580400000000000e-01 + 3.620600000000000e-01 + 3.563300000000000e-01 + 3.474700000000000e-01 + 3.391100000000000e-01 + 3.288400000000000e-01 + 3.068600000000000e-01 + 2.573000000000000e-01 + 1.631900000000000e-01 + 1.446400000000000e-02 +-1.849400000000000e-01 +-4.156500000000000e-01 +-6.488300000000000e-01 +-8.557600000000000e-01 +-1.014600000000000e+00 +-1.110000000000000e+00 +-1.128900000000000e+00 +-1.058000000000000e+00 +-8.891200000000000e-01 +-6.302300000000000e-01 +-3.117400000000000e-01 + 1.882600000000000e-02 + 3.139000000000000e-01 + 5.445000000000000e-01 + 7.077599999999999e-01 + 8.183100000000000e-01 + 8.905700000000000e-01 + 9.255000000000000e-01 + 9.113800000000000e-01 + 8.365200000000000e-01 + 7.025000000000000e-01 + 5.270600000000000e-01 + 3.350800000000000e-01 + 1.461100000000000e-01 +-3.091200000000000e-02 +-1.925400000000000e-01 +-3.317100000000000e-01 +-4.342000000000000e-01 +-4.847000000000000e-01 +-4.770700000000000e-01 +-4.191300000000000e-01 +-3.275700000000000e-01 +-2.174000000000000e-01 +-9.611800000000000e-02 + 3.168600000000000e-02 + 1.533100000000000e-01 + 2.418900000000000e-01 + 2.638500000000000e-01 + 1.978600000000000e-01 + 5.280900000000000e-02 +-1.288400000000000e-01 +-2.868800000000000e-01 +-3.703500000000000e-01 +-3.606100000000000e-01 +-2.783000000000000e-01 +-1.720800000000000e-01 +-9.612300000000000e-02 +-8.746300000000000e-02 +-1.518000000000000e-01 +-2.618100000000000e-01 +-3.676800000000000e-01 +-4.161900000000000e-01 +-3.715700000000000e-01 +-2.293800000000000e-01 +-1.655400000000000e-02 + 2.229600000000000e-01 + 4.483800000000000e-01 + 6.356600000000000e-01 + 7.764700000000000e-01 + 8.657000000000000e-01 + 8.903200000000000e-01 + 8.316300000000000e-01 + 6.814100000000000e-01 + 4.589400000000000e-01 + 2.125000000000000e-01 +-8.651600000000000e-04 +-1.452900000000000e-01 +-2.245100000000000e-01 +-2.737700000000000e-01 +-3.301100000000000e-01 +-4.030000000000000e-01 +-4.677900000000000e-01 +-4.871300000000000e-01 +-4.436100000000000e-01 +-3.579100000000000e-01 +-2.777800000000000e-01 +-2.457600000000000e-01 +-2.700000000000000e-01 +-3.195400000000000e-01 +-3.466600000000000e-01 +-3.191500000000000e-01 +-2.393600000000000e-01 +-1.389700000000000e-01 +-5.655200000000000e-02 +-1.522500000000000e-02 +-1.411600000000000e-02 +-3.409100000000000e-02 +-4.887600000000000e-02 +-3.315100000000000e-02 + 3.317300000000000e-02 + 1.598800000000000e-01 + 3.385100000000000e-01 + 5.368900000000000e-01 + 7.050000000000000e-01 + 7.945800000000000e-01 + 7.833599999999999e-01 + 6.875599999999999e-01 + 5.518000000000000e-01 + 4.212200000000000e-01 + 3.143400000000000e-01 + 2.155800000000000e-01 + 9.236000000000000e-02 +-7.611900000000001e-02 +-2.796100000000000e-01 +-4.802900000000000e-01 +-6.348200000000001e-01 +-7.180900000000000e-01 +-7.319800000000000e-01 +-6.960400000000000e-01 +-6.301000000000000e-01 +-5.433600000000000e-01 +-4.364700000000000e-01 +-3.112800000000000e-01 +-1.775100000000000e-01 +-4.959500000000000e-02 + 6.287500000000000e-02 + 1.618000000000000e-01 + 2.574900000000000e-01 + 3.575600000000000e-01 + 4.568200000000000e-01 + 5.362600000000000e-01 + 5.725000000000000e-01 + 5.511400000000000e-01 + 4.747700000000000e-01 + 3.614300000000000e-01 + 2.355400000000000e-01 + 1.178200000000000e-01 + 1.963300000000000e-02 +-5.711200000000000e-02 +-1.167500000000000e-01 +-1.661700000000000e-01 +-2.118100000000000e-01 +-2.572900000000000e-01 +-3.015500000000000e-01 +-3.388900000000000e-01 +-3.615400000000000e-01 +-3.643100000000000e-01 +-3.486400000000000e-01 +-3.228500000000000e-01 +-2.980500000000000e-01 +-2.815200000000000e-01 +-2.718400000000000e-01 +-2.585200000000000e-01 +-2.265100000000000e-01 +-1.630300000000000e-01 +-6.331199999999999e-02 + 6.688200000000000e-02 + 2.127200000000000e-01 + 3.545900000000000e-01 + 4.737600000000000e-01 + 5.575800000000000e-01 + 6.025700000000001e-01 + 6.140400000000000e-01 + 6.024700000000000e-01 + 5.782300000000000e-01 + 5.474400000000000e-01 + 5.110500000000000e-01 + 4.671200000000000e-01 + 4.138400000000000e-01 + 3.508500000000000e-01 + 2.775200000000000e-01 + 1.899800000000000e-01 + 8.002700000000000e-02 +-6.174800000000000e-02 +-2.391500000000000e-01 +-4.434800000000000e-01 +-6.510000000000000e-01 +-8.275600000000000e-01 +-9.394400000000001e-01 +-9.661600000000000e-01 +-9.096200000000000e-01 +-7.948300000000000e-01 +-6.614900000000000e-01 +-5.495300000000000e-01 +-4.846200000000000e-01 +-4.697700000000000e-01 +-4.861500000000000e-01 +-5.016400000000000e-01 +-4.824800000000000e-01 +-4.026400000000000e-01 +-2.487200000000000e-01 +-2.104300000000000e-02 + 2.663400000000000e-01 + 5.858800000000000e-01 + 8.987400000000000e-01 + 1.161600000000000e+00 + 1.338100000000000e+00 + 1.410600000000000e+00 + 1.385200000000000e+00 + 1.286400000000000e+00 + 1.143300000000000e+00 + 9.758900000000000e-01 + 7.904500000000000e-01 + 5.852600000000000e-01 + 3.614800000000000e-01 + 1.295300000000000e-01 +-9.428700000000000e-02 +-2.978700000000000e-01 +-4.809600000000000e-01 +-6.531700000000000e-01 +-8.230000000000000e-01 +-9.863600000000000e-01 +-1.123900000000000e+00 +-1.209600000000000e+00 +-1.224400000000000e+00 +-1.164300000000000e+00 +-1.038700000000000e+00 +-8.623200000000000e-01 +-6.478200000000000e-01 +-4.075300000000000e-01 +-1.595400000000000e-01 + 6.913200000000000e-02 + 2.492100000000000e-01 + 3.633700000000000e-01 + 4.179400000000000e-01 + 4.418200000000000e-01 + 4.707700000000000e-01 + 5.265200000000000e-01 + 6.045100000000000e-01 + 6.784600000000000e-01 + 7.182100000000000e-01 + 7.083000000000000e-01 + 6.549199999999999e-01 + 5.775900000000000e-01 + 4.928100000000000e-01 + 4.015000000000000e-01 + 2.889700000000000e-01 + 1.369900000000000e-01 +-5.983000000000000e-02 +-2.834500000000000e-01 +-4.940400000000000e-01 +-6.435999999999999e-01 +-6.956700000000000e-01 +-6.416600000000000e-01 +-5.059399999999999e-01 +-3.362300000000000e-01 +-1.829600000000000e-01 +-7.781900000000000e-02 +-2.289500000000000e-02 + 3.429700000000000e-03 + 2.773600000000000e-02 + 6.248500000000000e-02 + 9.951900000000000e-02 + 1.202000000000000e-01 + 1.138500000000000e-01 + 8.948399999999999e-02 + 7.070500000000000e-02 + 7.678500000000001e-02 + 1.048100000000000e-01 + 1.280800000000000e-01 + 1.142300000000000e-01 + 5.091600000000000e-02 +-3.991000000000000e-02 +-1.112100000000000e-01 +-1.187300000000000e-01 +-4.940100000000000e-02 + 6.849500000000000e-02 + 1.797600000000000e-01 + 2.316200000000000e-01 + 1.998700000000000e-01 + 9.810700000000000e-02 +-3.218600000000000e-02 +-1.418700000000000e-01 +-1.935300000000000e-01 +-1.728400000000000e-01 +-9.070700000000000e-02 + 2.183200000000000e-02 + 1.240600000000000e-01 + 1.794700000000000e-01 + 1.693700000000000e-01 + 1.004300000000000e-01 + 1.340100000000000e-03 +-9.091800000000000e-02 +-1.483000000000000e-01 +-1.629300000000000e-01 +-1.468000000000000e-01 +-1.220000000000000e-01 +-1.087800000000000e-01 +-1.181400000000000e-01 +-1.503200000000000e-01 +-1.963200000000000e-01 +-2.394400000000000e-01 +-2.579000000000000e-01 +-2.316000000000000e-01 +-1.530500000000000e-01 +-3.654400000000000e-02 + 8.311200000000001e-02 + 1.659400000000000e-01 + 1.892900000000000e-01 + 1.628900000000000e-01 + 1.245000000000000e-01 + 1.171200000000000e-01 + 1.623000000000000e-01 + 2.474100000000000e-01 + 3.353400000000000e-01 + 3.885500000000000e-01 + 3.900700000000000e-01 + 3.478600000000000e-01 + 2.827900000000000e-01 + 2.124800000000000e-01 + 1.441600000000000e-01 + 7.960299999999999e-02 + 2.379800000000000e-02 +-1.318900000000000e-02 +-2.404400000000000e-02 +-1.408100000000000e-02 +-2.678000000000000e-03 +-1.313500000000000e-02 +-5.862600000000000e-02 +-1.358700000000000e-01 +-2.313400000000000e-01 +-3.334100000000000e-01 +-4.382100000000000e-01 +-5.433600000000000e-01 +-6.356700000000000e-01 +-6.867200000000000e-01 +-6.642900000000000e-01 +-5.539700000000000e-01 +-3.744000000000000e-01 +-1.723100000000000e-01 + 1.128500000000000e-03 + 1.163600000000000e-01 + 1.754800000000000e-01 + 2.004900000000000e-01 + 2.114600000000000e-01 + 2.136900000000000e-01 + 2.036900000000000e-01 + 1.866100000000000e-01 + 1.868300000000000e-01 + 2.385600000000000e-01 + 3.610100000000000e-01 + 5.367100000000000e-01 + 7.116400000000001e-01 + 8.197900000000000e-01 + 8.166700000000000e-01 + 6.998700000000000e-01 + 5.049400000000001e-01 + 2.826100000000000e-01 + 7.490200000000000e-02 +-9.544200000000000e-02 +-2.208900000000000e-01 +-3.002500000000000e-01 +-3.355400000000000e-01 +-3.360200000000000e-01 +-3.220100000000000e-01 +-3.205300000000000e-01 +-3.527700000000000e-01 +-4.221500000000000e-01 +-5.124900000000000e-01 +-5.979200000000000e-01 +-6.566600000000000e-01 +-6.780800000000000e-01 +-6.590700000000000e-01 +-5.956000000000000e-01 +-4.793800000000000e-01 +-3.045900000000000e-01 +-7.913300000000000e-02 + 1.699100000000000e-01 + 4.036700000000000e-01 + 5.879700000000000e-01 + 7.073300000000000e-01 + 7.668500000000000e-01 + 7.811300000000000e-01 + 7.599000000000000e-01 + 7.013300000000000e-01 + 5.971800000000000e-01 + 4.442500000000000e-01 + 2.519500000000000e-01 + 4.058900000000000e-02 +-1.671300000000000e-01 +-3.533500000000000e-01 +-5.053900000000000e-01 +-6.108600000000000e-01 +-6.545900000000000e-01 +-6.228100000000000e-01 +-5.131800000000000e-01 +-3.429200000000000e-01 +-1.472100000000000e-01 + 3.307200000000000e-02 + 1.675100000000000e-01 + 2.460000000000000e-01 + 2.771300000000000e-01 + 2.775700000000000e-01 + 2.610600000000000e-01 + 2.343000000000000e-01 + 2.008800000000000e-01 + 1.678800000000000e-01 + 1.481400000000000e-01 + 1.549300000000000e-01 + 1.924500000000000e-01 + 2.488000000000000e-01 + 2.973000000000000e-01 + 3.065000000000000e-01 + 2.539900000000000e-01 + 1.368100000000000e-01 +-2.665100000000000e-02 +-2.040700000000000e-01 +-3.618600000000000e-01 +-4.771800000000000e-01 +-5.437500000000000e-01 +-5.697600000000000e-01 +-5.694399999999999e-01 +-5.534100000000000e-01 +-5.229100000000000e-01 +-4.710600000000000e-01 +-3.901100000000000e-01 +-2.799800000000000e-01 +-1.523200000000000e-01 +-2.673900000000000e-02 + 7.938600000000000e-02 + 1.613100000000000e-01 + 2.305100000000000e-01 + 3.076800000000000e-01 + 4.081200000000000e-01 + 5.277500000000001e-01 + 6.392099999999999e-01 + 7.019100000000000e-01 + 6.820700000000000e-01 + 5.715800000000000e-01 + 3.947500000000000e-01 + 1.985800000000000e-01 + 3.197800000000000e-02 +-7.410799999999999e-02 +-1.146500000000000e-01 +-1.040000000000000e-01 +-6.152300000000000e-02 +-4.217000000000000e-04 + 7.311500000000000e-02 + 1.520200000000000e-01 + 2.203200000000000e-01 + 2.533600000000000e-01 + 2.275100000000000e-01 + 1.327500000000000e-01 +-2.134300000000000e-02 +-2.103500000000000e-01 +-4.067100000000000e-01 +-5.893000000000000e-01 +-7.448600000000000e-01 +-8.626800000000000e-01 +-9.300000000000000e-01 +-9.343600000000000e-01 +-8.720100000000000e-01 +-7.544700000000000e-01 +-6.053300000000000e-01 +-4.470600000000000e-01 +-2.868000000000000e-01 +-1.126000000000000e-01 + 9.523400000000000e-02 + 3.448500000000000e-01 + 6.194100000000000e-01 + 8.800600000000000e-01 + 1.083800000000000e+00 + 1.203900000000000e+00 + 1.239000000000000e+00 + 1.206100000000000e+00 + 1.124000000000000e+00 + 1.000400000000000e+00 + 8.314500000000000e-01 + 6.114500000000000e-01 + 3.430900000000000e-01 + 4.070200000000000e-02 +-2.744900000000000e-01 +-5.805600000000000e-01 +-8.559600000000001e-01 +-1.075600000000000e+00 +-1.208800000000000e+00 +-1.225900000000000e+00 +-1.113600000000000e+00 +-8.893500000000000e-01 +-6.041600000000000e-01 +-3.269200000000000e-01 +-1.177900000000000e-01 +-3.945500000000000e-03 + 2.898800000000000e-02 + 2.595600000000000e-02 + 3.889900000000000e-02 + 1.033500000000000e-01 + 2.257800000000000e-01 + 3.851900000000000e-01 + 5.450000000000000e-01 + 6.682300000000000e-01 + 7.292100000000000e-01 + 7.185800000000000e-01 + 6.416300000000000e-01 + 5.127800000000000e-01 + 3.496400000000000e-01 + 1.698300000000000e-01 +-9.218400000000000e-03 +-1.697900000000000e-01 +-2.958400000000000e-01 +-3.782800000000000e-01 +-4.205700000000000e-01 +-4.388700000000000e-01 +-4.541000000000000e-01 +-4.787600000000000e-01 +-5.071900000000000e-01 +-5.171300000000000e-01 +-4.829600000000000e-01 +-3.918700000000000e-01 +-2.514400000000000e-01 +-8.304499999999999e-02 + 9.287300000000000e-02 + 2.667700000000000e-01 + 4.360400000000000e-01 + 5.907100000000000e-01 + 7.029500000000000e-01 + 7.339300000000000e-01 + 6.577200000000000e-01 + 4.861800000000000e-01 + 2.738700000000000e-01 + 9.407400000000000e-02 +-1.671500000000000e-03 +-1.407200000000000e-02 + 5.318700000000000e-03 +-1.207100000000000e-02 +-1.074700000000000e-01 +-2.689300000000000e-01 +-4.395200000000000e-01 +-5.516500000000000e-01 +-5.630400000000000e-01 +-4.725900000000000e-01 +-3.112000000000000e-01 +-1.203800000000000e-01 + 6.377900000000000e-02 + 2.133100000000000e-01 + 3.038700000000000e-01 + 3.146700000000000e-01 + 2.380800000000000e-01 + 9.175200000000000e-02 +-7.954899999999999e-02 +-2.189500000000000e-01 +-2.828500000000000e-01 +-2.609200000000000e-01 +-1.777300000000000e-01 +-7.563000000000000e-02 + 9.259000000000000e-03 + 6.296200000000000e-02 + 9.394700000000000e-02 + 1.215600000000000e-01 + 1.624100000000000e-01 + 2.222900000000000e-01 + 2.946100000000000e-01 + 3.622000000000000e-01 + 4.002600000000000e-01 + 3.816700000000000e-01 + 2.868500000000000e-01 + 1.158200000000000e-01 +-1.044900000000000e-01 +-3.252100000000000e-01 +-4.934900000000000e-01 +-5.748500000000000e-01 +-5.666200000000000e-01 +-4.941900000000000e-01 +-3.931200000000000e-01 +-2.894100000000000e-01 +-1.908900000000000e-01 +-9.339300000000000e-02 + 5.693400000000000e-03 + 9.889600000000000e-02 + 1.722300000000000e-01 + 2.175800000000000e-01 + 2.429000000000000e-01 + 2.706700000000000e-01 + 3.239800000000000e-01 + 4.094700000000000e-01 + 5.093100000000000e-01 + 5.884700000000000e-01 + 6.133400000000000e-01 + 5.700300000000000e-01 + 4.710700000000000e-01 + 3.465100000000000e-01 + 2.254400000000000e-01 + 1.195200000000000e-01 + 1.851500000000000e-02 +-9.958300000000000e-02 +-2.503800000000000e-01 +-4.281800000000000e-01 +-6.039200000000000e-01 +-7.377600000000000e-01 +-7.991200000000001e-01 +-7.823200000000000e-01 +-7.081000000000000e-01 +-6.101700000000000e-01 +-5.151500000000000e-01 +-4.285900000000000e-01 +-3.356400000000000e-01 +-2.155900000000000e-01 +-6.033300000000000e-02 + 1.154300000000000e-01 + 2.784600000000000e-01 + 3.928200000000000e-01 + 4.372000000000000e-01 + 4.140000000000000e-01 + 3.465700000000000e-01 + 2.679500000000000e-01 + 2.083100000000000e-01 + 1.862000000000000e-01 + 2.054300000000000e-01 + 2.560000000000000e-01 + 3.178500000000000e-01 + 3.667300000000000e-01 + 3.817500000000000e-01 + 3.522200000000000e-01 + 2.806100000000000e-01 + 1.796700000000000e-01 + 6.538600000000000e-02 +-4.919700000000000e-02 +-1.550700000000000e-01 +-2.433200000000000e-01 +-3.009500000000000e-01 +-3.120700000000000e-01 +-2.655300000000000e-01 +-1.640400000000000e-01 +-2.718800000000000e-02 + 1.152900000000000e-01 + 2.360500000000000e-01 + 3.197100000000000e-01 + 3.629300000000000e-01 + 3.662800000000000e-01 + 3.263800000000000e-01 + 2.365300000000000e-01 + 9.640899999999999e-02 +-7.760300000000001e-02 +-2.525200000000000e-01 +-3.929100000000000e-01 +-4.812700000000000e-01 +-5.296999999999999e-01 +-5.725000000000000e-01 +-6.422400000000000e-01 +-7.444100000000000e-01 +-8.479200000000000e-01 +-8.988100000000000e-01 +-8.490300000000000e-01 +-6.825400000000000e-01 +-4.232000000000000e-01 +-1.212200000000000e-01 + 1.717800000000000e-01 + 4.237000000000000e-01 + 6.283900000000000e-01 + 7.973100000000000e-01 + 9.443100000000000e-01 + 1.073100000000000e+00 + 1.172600000000000e+00 + 1.220500000000000e+00 + 1.190900000000000e+00 + 1.064200000000000e+00 + 8.363200000000000e-01 + 5.247200000000000e-01 + 1.687300000000000e-01 +-1.780200000000000e-01 +-4.621600000000000e-01 +-6.471700000000000e-01 +-7.246300000000000e-01 +-7.147500000000000e-01 +-6.559500000000000e-01 +-5.885899999999999e-01 +-5.401100000000000e-01 +-5.175100000000000e-01 +-5.090100000000000e-01 +-4.929700000000000e-01 +-4.496600000000000e-01 +-3.714800000000000e-01 +-2.673200000000000e-01 +-1.588500000000000e-01 +-6.956400000000000e-02 +-1.143800000000000e-02 + 2.336000000000000e-02 + 5.936700000000000e-02 + 1.231400000000000e-01 + 2.246100000000000e-01 + 3.463500000000000e-01 + 4.494400000000000e-01 + 4.944500000000000e-01 + 4.655600000000000e-01 + 3.823600000000000e-01 + 2.907000000000000e-01 + 2.372400000000000e-01 + 2.432400000000000e-01 + 2.934700000000000e-01 + 3.463400000000000e-01 + 3.576000000000000e-01 + 3.022300000000000e-01 + 1.825200000000000e-01 + 2.081300000000000e-02 +-1.543700000000000e-01 +-3.183600000000000e-01 +-4.521300000000000e-01 +-5.400300000000000e-01 +-5.703000000000000e-01 +-5.411100000000000e-01 +-4.670500000000000e-01 +-3.780300000000000e-01 +-3.072800000000000e-01 +-2.741100000000000e-01 +-2.732200000000000e-01 +-2.786800000000000e-01 +-2.609300000000000e-01 +-2.048000000000000e-01 +-1.160800000000000e-01 +-1.253100000000000e-02 + 9.256000000000000e-02 + 2.005300000000000e-01 + 3.227100000000000e-01 + 4.648700000000000e-01 + 6.136600000000000e-01 + 7.373100000000000e-01 + 8.015200000000000e-01 + 7.895000000000000e-01 + 7.111800000000000e-01 + 5.944700000000001e-01 + 4.650100000000000e-01 + 3.295000000000000e-01 + 1.750800000000000e-01 +-1.487600000000000e-02 +-2.403900000000000e-01 +-4.752100000000000e-01 +-6.754100000000000e-01 +-8.008700000000000e-01 +-8.356700000000000e-01 +-7.948900000000000e-01 +-7.141200000000000e-01 +-6.292000000000000e-01 +-5.579300000000000e-01 +-4.932600000000000e-01 +-4.099100000000000e-01 +-2.798100000000000e-01 +-8.859800000000000e-02 + 1.538400000000000e-01 + 4.131900000000000e-01 + 6.410700000000000e-01 + 7.923700000000000e-01 + 8.424300000000000e-01 + 7.959100000000000e-01 + 6.825000000000000e-01 + 5.413300000000000e-01 + 4.026200000000000e-01 + 2.771100000000000e-01 + 1.589400000000000e-01 + 3.843700000000000e-02 +-8.532200000000000e-02 +-2.016000000000000e-01 +-2.963500000000000e-01 +-3.642800000000000e-01 +-4.137600000000000e-01 +-4.595500000000000e-01 +-5.079600000000000e-01 +-5.459400000000000e-01 +-5.434900000000000e-01 +-4.694600000000000e-01 +-3.111900000000000e-01 +-8.574500000000000e-02 + 1.637500000000000e-01 + 3.837100000000000e-01 + 5.283500000000000e-01 + 5.718400000000000e-01 + 5.117200000000000e-01 + 3.660100000000000e-01 + 1.676300000000000e-01 +-4.229400000000000e-02 +-2.230500000000000e-01 +-3.447700000000000e-01 +-3.971700000000000e-01 +-3.912200000000000e-01 +-3.512400000000000e-01 +-3.004900000000000e-01 +-2.485100000000000e-01 +-1.880900000000000e-01 +-1.034900000000000e-01 + 1.553600000000000e-02 + 1.635300000000000e-01 + 3.190500000000000e-01 + 4.540800000000000e-01 + 5.465900000000000e-01 + 5.887800000000000e-01 + 5.871300000000000e-01 + 5.559100000000000e-01 + 5.087900000000000e-01 + 4.533300000000000e-01 + 3.898800000000000e-01 + 3.142200000000000e-01 + 2.215200000000000e-01 + 1.091100000000000e-01 +-2.287400000000000e-02 +-1.727800000000000e-01 +-3.386700000000000e-01 +-5.171200000000000e-01 +-6.986300000000000e-01 +-8.620400000000000e-01 +-9.731100000000000e-01 +-9.924600000000000e-01 +-8.926100000000000e-01 +-6.769300000000000e-01 +-3.884800000000000e-01 +-1.001200000000000e-01 + 1.128300000000000e-01 + 2.045400000000000e-01 + 1.780500000000000e-01 + 8.156200000000000e-02 +-1.581000000000000e-02 +-5.432200000000000e-02 +-4.113100000000000e-03 + 1.315800000000000e-01 + 3.261600000000000e-01 + 5.418500000000001e-01 + 7.371000000000000e-01 + 8.701000000000000e-01 + 9.044600000000000e-01 + 8.205500000000000e-01 + 6.279000000000000e-01 + 3.688200000000000e-01 + 1.061500000000000e-01 +-1.014200000000000e-01 +-2.236100000000000e-01 +-2.683200000000000e-01 +-2.715700000000000e-01 +-2.747500000000000e-01 +-3.031500000000000e-01 +-3.568000000000000e-01 +-4.153800000000000e-01 +-4.502700000000000e-01 +-4.356300000000000e-01 +-3.549200000000000e-01 +-2.046300000000000e-01 + 2.394900000000000e-03 + 2.350700000000000e-01 + 4.477600000000000e-01 + 5.924100000000000e-01 + 6.355900000000000e-01 + 5.716900000000000e-01 + 4.238600000000000e-01 + 2.315700000000000e-01 + 3.204500000000000e-02 +-1.529800000000000e-01 +-3.183600000000000e-01 +-4.660900000000000e-01 +-5.939000000000000e-01 +-6.903200000000000e-01 +-7.389900000000000e-01 +-7.281700000000000e-01 +-6.584100000000001e-01 +-5.440300000000000e-01 +-4.081100000000000e-01 +-2.743400000000000e-01 +-1.594200000000000e-01 +-6.833599999999999e-02 + 6.204900000000000e-03 + 7.979500000000000e-02 + 1.685200000000000e-01 + 2.802700000000000e-01 + 4.096600000000000e-01 + 5.402600000000000e-01 + 6.533800000000000e-01 + 7.380500000000000e-01 + 7.950300000000000e-01 + 8.316000000000000e-01 + 8.507500000000000e-01 + 8.430800000000001e-01 + 7.884700000000000e-01 + 6.670800000000000e-01 + 4.726600000000000e-01 + 2.193600000000000e-01 +-6.181500000000000e-02 +-3.332000000000000e-01 +-5.602600000000000e-01 +-7.165899999999999e-01 +-7.855100000000000e-01 +-7.624100000000000e-01 +-6.595000000000000e-01 +-5.087300000000000e-01 +-3.562900000000000e-01 +-2.468300000000000e-01 +-2.040200000000000e-01 +-2.196000000000000e-01 +-2.596000000000000e-01 +-2.852500000000000e-01 +-2.755500000000000e-01 +-2.366700000000000e-01 +-1.927400000000000e-01 +-1.655500000000000e-01 +-1.581600000000000e-01 +-1.536900000000000e-01 +-1.285400000000000e-01 +-6.925400000000000e-02 + 1.925000000000000e-02 + 1.183100000000000e-01 + 2.074600000000000e-01 + 2.739100000000000e-01 + 3.138700000000000e-01 + 3.277500000000000e-01 + 3.159800000000000e-01 + 2.797500000000000e-01 + 2.256100000000000e-01 + 1.682500000000000e-01 + 1.275500000000000e-01 + 1.210600000000000e-01 + 1.566500000000000e-01 + 2.301500000000000e-01 + 3.276300000000000e-01 + 4.293700000000000e-01 + 5.121200000000000e-01 + 5.506100000000000e-01 + 5.215400000000000e-01 + 4.119100000000000e-01 + 2.286500000000000e-01 + 2.472500000000000e-03 +-2.196900000000000e-01 +-3.923100000000000e-01 +-4.903000000000000e-01 +-5.185400000000000e-01 +-5.058300000000000e-01 +-4.867600000000000e-01 +-4.819400000000000e-01 +-4.876700000000000e-01 +-4.798700000000000e-01 +-4.290500000000000e-01 +-3.175800000000000e-01 +-1.506900000000000e-01 + 4.346100000000000e-02 + 2.237900000000000e-01 + 3.514900000000000e-01 + 4.039500000000000e-01 + 3.818300000000000e-01 + 3.063500000000000e-01 + 2.084000000000000e-01 + 1.144000000000000e-01 + 3.612900000000000e-02 +-3.097200000000000e-02 +-1.007800000000000e-01 +-1.855000000000000e-01 +-2.869900000000000e-01 +-3.943100000000000e-01 +-4.870900000000000e-01 +-5.415800000000000e-01 +-5.366300000000001e-01 +-4.588900000000000e-01 +-3.080900000000000e-01 +-1.012400000000000e-01 + 1.274100000000000e-01 + 3.342000000000000e-01 + 4.810300000000000e-01 + 5.507900000000000e-01 + 5.539100000000000e-01 + 5.205300000000000e-01 + 4.820800000000000e-01 + 4.536600000000000e-01 + 4.288400000000000e-01 + 3.900000000000000e-01 + 3.261000000000000e-01 + 2.444400000000000e-01 + 1.675600000000000e-01 + 1.180200000000000e-01 + 1.026700000000000e-01 + 1.085200000000000e-01 + 1.128200000000000e-01 + 9.921000000000001e-02 + 6.755100000000000e-02 + 3.054600000000000e-02 + 6.290400000000000e-04 +-2.218800000000000e-02 +-5.234400000000000e-02 +-1.096800000000000e-01 +-2.064600000000000e-01 +-3.392900000000000e-01 +-4.901700000000000e-01 +-6.338100000000000e-01 +-7.454000000000000e-01 +-8.052300000000000e-01 +-8.007900000000000e-01 +-7.288600000000000e-01 +-5.982000000000000e-01 +-4.301500000000000e-01 +-2.537700000000000e-01 +-9.583899999999999e-02 + 2.930200000000000e-02 + 1.235800000000000e-01 + 1.998500000000000e-01 + 2.709900000000000e-01 + 3.408100000000000e-01 + 4.025400000000000e-01 + 4.445900000000000e-01 + 4.582400000000000e-01 + 4.417000000000000e-01 + 3.990600000000000e-01 + 3.373900000000000e-01 + 2.659600000000000e-01 + 1.975900000000000e-01 + 1.487200000000000e-01 + 1.340800000000000e-01 + 1.573400000000000e-01 + 2.040300000000000e-01 + 2.442400000000000e-01 + 2.464700000000000e-01 + 1.955900000000000e-01 + 1.030500000000000e-01 + 1.803900000000000e-03 +-7.181300000000000e-02 +-9.768900000000000e-02 +-8.069600000000000e-02 +-4.394000000000000e-02 +-1.267700000000000e-02 +-6.260400000000000e-04 +-6.964300000000000e-03 +-2.318200000000000e-02 +-4.173000000000000e-02 +-5.875900000000000e-02 +-7.021500000000000e-02 +-6.771000000000001e-02 +-4.130100000000000e-02 + 1.027800000000000e-02 + 6.974300000000000e-02 + 1.020300000000000e-01 + 6.953800000000000e-02 +-4.561400000000000e-02 +-2.267700000000000e-01 +-4.269700000000000e-01 +-5.914800000000000e-01 +-6.854900000000000e-01 +-7.092600000000000e-01 +-6.915100000000000e-01 +-6.657400000000000e-01 +-6.455900000000000e-01 +-6.153700000000000e-01 +-5.410600000000000e-01 +-3.937500000000000e-01 +-1.698400000000000e-01 + 1.042100000000000e-01 + 3.840600000000000e-01 + 6.277600000000000e-01 + 8.114700000000000e-01 + 9.329400000000000e-01 + 1.003300000000000e+00 + 1.034700000000000e+00 + 1.030800000000000e+00 + 9.860200000000000e-01 + 8.914800000000001e-01 + 7.435800000000000e-01 + 5.512700000000000e-01 + 3.377100000000000e-01 + 1.350300000000000e-01 +-2.649800000000000e-02 +-1.310900000000000e-01 +-1.857700000000000e-01 +-2.189900000000000e-01 +-2.682500000000000e-01 +-3.616500000000000e-01 +-5.027500000000000e-01 +-6.676700000000000e-01 +-8.164700000000000e-01 +-9.125400000000000e-01 +-9.388400000000000e-01 +-9.018100000000000e-01 +-8.219300000000000e-01 +-7.183400000000000e-01 +-5.978000000000000e-01 +-4.544900000000000e-01 +-2.792900000000000e-01 +-7.117400000000000e-02 + 1.567400000000000e-01 + 3.796900000000000e-01 + 5.696700000000000e-01 + 7.047700000000000e-01 + 7.751400000000001e-01 + 7.842800000000000e-01 + 7.461600000000000e-01 + 6.795500000000000e-01 + 6.008900000000000e-01 + 5.179800000000000e-01 + 4.277700000000000e-01 + 3.206400000000000e-01 + 1.900200000000000e-01 + 4.203500000000000e-02 +-1.017800000000000e-01 +-2.122200000000000e-01 +-2.671900000000000e-01 +-2.645900000000000e-01 +-2.248200000000000e-01 +-1.808600000000000e-01 +-1.622400000000000e-01 +-1.824900000000000e-01 +-2.364600000000000e-01 +-3.064900000000000e-01 +-3.710200000000000e-01 +-4.101300000000000e-01 +-4.077500000000000e-01 +-3.542700000000000e-01 +-2.520400000000000e-01 +-1.208000000000000e-01 + 3.963700000000000e-03 + 8.382500000000000e-02 + 9.687999999999999e-02 + 5.181700000000000e-02 +-1.470700000000000e-02 +-5.824100000000000e-02 +-5.227100000000000e-02 +-2.284600000000000e-03 + 6.164000000000000e-02 + 1.083000000000000e-01 + 1.278300000000000e-01 + 1.371500000000000e-01 + 1.652900000000000e-01 + 2.304700000000000e-01 + 3.260300000000000e-01 + 4.246100000000000e-01 + 4.953300000000000e-01 + 5.199200000000000e-01 + 4.964900000000000e-01 + 4.311800000000000e-01 + 3.281900000000000e-01 + 1.885300000000000e-01 + 1.838300000000000e-02 +-1.622500000000000e-01 +-3.212000000000000e-01 +-4.283000000000000e-01 +-4.723600000000000e-01 +-4.674400000000000e-01 +-4.419700000000000e-01 +-4.177800000000000e-01 +-3.945600000000000e-01 +-3.515700000000000e-01 +-2.656600000000000e-01 +-1.323600000000000e-01 + 2.549400000000000e-02 + 1.676100000000000e-01 + 2.571800000000000e-01 + 2.786000000000000e-01 + 2.411500000000000e-01 + 1.690100000000000e-01 + 8.651600000000000e-02 + 8.910899999999999e-03 +-5.784200000000000e-02 +-1.120300000000000e-01 +-1.522400000000000e-01 +-1.773600000000000e-01 +-1.885100000000000e-01 +-1.889600000000000e-01 +-1.812300000000000e-01 +-1.643300000000000e-01 +-1.347400000000000e-01 +-9.148500000000000e-02 +-4.038900000000000e-02 + 7.636900000000000e-03 + 4.518200000000000e-02 + 7.789000000000000e-02 + 1.262500000000000e-01 + 2.150900000000000e-01 + 3.552300000000000e-01 + 5.289000000000000e-01 + 6.899100000000000e-01 + 7.810700000000000e-01 + 7.600100000000000e-01 + 6.188600000000000e-01 + 3.866400000000000e-01 + 1.137900000000000e-01 +-1.510200000000000e-01 +-3.780700000000000e-01 +-5.592400000000000e-01 +-6.975300000000000e-01 +-7.931900000000000e-01 +-8.367100000000000e-01 +-8.130900000000000e-01 +-7.133800000000000e-01 +-5.445400000000000e-01 +-3.303200000000000e-01 +-1.025600000000000e-01 + 1.113500000000000e-01 + 2.969500000000000e-01 + 4.526100000000000e-01 + 5.821000000000000e-01 + 6.859300000000000e-01 + 7.570900000000000e-01 + 7.831000000000000e-01 + 7.522300000000000e-01 + 6.592100000000000e-01 + 5.078600000000000e-01 + 3.105800000000000e-01 + 8.629400000000000e-02 +-1.418000000000000e-01 +-3.494000000000000e-01 +-5.157500000000000e-01 +-6.292700000000000e-01 +-6.910500000000001e-01 +-7.131999999999999e-01 +-7.118200000000000e-01 +-6.981700000000000e-01 +-6.739000000000001e-01 +-6.331900000000000e-01 +-5.699400000000000e-01 +-4.840500000000000e-01 +-3.816300000000000e-01 +-2.691300000000000e-01 +-1.468700000000000e-01 +-8.169600000000001e-03 + 1.542000000000000e-01 + 3.387200000000000e-01 + 5.306000000000000e-01 + 7.057800000000000e-01 + 8.410700000000000e-01 + 9.229600000000000e-01 + 9.495600000000000e-01 + 9.262500000000000e-01 + 8.604800000000000e-01 + 7.608300000000000e-01 + 6.397400000000000e-01 + 5.141700000000000e-01 + 3.995000000000000e-01 + 2.987800000000000e-01 + 1.963700000000000e-01 + 6.453600000000000e-02 +-1.174400000000000e-01 +-3.432600000000000e-01 +-5.742200000000000e-01 +-7.554200000000000e-01 +-8.451500000000000e-01 +-8.383300000000000e-01 +-7.674100000000000e-01 +-6.799100000000000e-01 +-6.081200000000000e-01 +-5.519800000000000e-01 +-4.861200000000000e-01 +-3.842800000000000e-01 +-2.423900000000000e-01 +-8.429100000000000e-02 + 5.194400000000000e-02 + 1.351900000000000e-01 + 1.547400000000000e-01 + 1.195900000000000e-01 + 4.885400000000000e-02 +-3.616800000000000e-02 +-1.130600000000000e-01 +-1.566900000000000e-01 +-1.430600000000000e-01 +-6.113200000000000e-02 + 7.468700000000000e-02 + 2.237200000000000e-01 + 3.355300000000000e-01 + 3.765000000000000e-01 + 3.496200000000000e-01 + 2.933000000000000e-01 + 2.588200000000000e-01 + 2.808700000000000e-01 + 3.598000000000000e-01 + 4.654600000000000e-01 + 5.574100000000000e-01 + 6.062400000000000e-01 + 6.030400000000000e-01 + 5.546300000000000e-01 + 4.728300000000000e-01 + 3.674300000000000e-01 + 2.463500000000000e-01 + 1.183100000000000e-01 +-8.249899999999999e-03 +-1.312900000000000e-01 +-2.601500000000000e-01 +-4.120400000000000e-01 +-5.988700000000000e-01 +-8.120300000000000e-01 +-1.016900000000000e+00 +-1.163600000000000e+00 +-1.209400000000000e+00 +-1.139000000000000e+00 +-9.700400000000000e-01 +-7.398400000000001e-01 +-4.830000000000000e-01 +-2.143600000000000e-01 + 7.098500000000001e-02 + 3.811200000000000e-01 + 7.058300000000000e-01 + 1.005900000000000e+00 + 1.222100000000000e+00 + 1.301000000000000e+00 + 1.223200000000000e+00 + 1.016400000000000e+00 + 7.452299999999999e-01 + 4.813800000000000e-01 + 2.705900000000000e-01 + 1.152500000000000e-01 +-1.743500000000000e-02 +-1.671600000000000e-01 +-3.500300000000000e-01 +-5.449100000000000e-01 +-7.049400000000000e-01 +-7.862000000000000e-01 +-7.743800000000000e-01 +-6.927400000000000e-01 +-5.871300000000000e-01 +-4.994600000000000e-01 +-4.468400000000000e-01 +-4.181800000000000e-01 +-3.867500000000000e-01 +-3.272800000000000e-01 +-2.260400000000000e-01 +-8.060000000000000e-02 + 1.053200000000000e-01 + 3.240000000000000e-01 + 5.607200000000000e-01 + 7.904400000000000e-01 + 9.802700000000000e-01 + 1.099000000000000e+00 + 1.127400000000000e+00 + 1.062200000000000e+00 + 9.111700000000000e-01 + 6.847900000000000e-01 + 3.948400000000000e-01 + 6.079900000000000e-02 +-2.817500000000000e-01 +-5.819200000000000e-01 +-7.887100000000000e-01 +-8.732600000000000e-01 +-8.428700000000000e-01 +-7.352900000000000e-01 +-5.959600000000000e-01 +-4.539000000000000e-01 +-3.135300000000000e-01 +-1.670400000000000e-01 +-1.575900000000000e-02 + 1.185200000000000e-01 + 2.025600000000000e-01 + 2.143700000000000e-01 + 1.609700000000000e-01 + 7.587700000000000e-02 +-2.932900000000000e-03 +-5.778200000000000e-02 +-9.976699999999999e-02 +-1.546400000000000e-01 +-2.376300000000000e-01 +-3.371600000000000e-01 +-4.196900000000000e-01 +-4.513100000000000e-01 +-4.185000000000000e-01 +-3.328000000000000e-01 +-2.174300000000000e-01 +-8.838000000000000e-02 + 5.406000000000000e-02 + 2.173600000000000e-01 + 4.000500000000000e-01 + 5.812700000000000e-01 + 7.260200000000000e-01 + 8.032400000000000e-01 + 8.037600000000000e-01 + 7.458000000000000e-01 + 6.645700000000000e-01 + 5.933200000000000e-01 + 5.472200000000000e-01 + 5.184700000000000e-01 + 4.831900000000000e-01 + 4.150600000000000e-01 + 2.987100000000000e-01 + 1.375500000000000e-01 +-4.688700000000000e-02 +-2.240000000000000e-01 +-3.683800000000000e-01 +-4.728700000000000e-01 +-5.526900000000000e-01 +-6.367200000000000e-01 +-7.493500000000000e-01 +-8.934299999999999e-01 +-1.045500000000000e+00 +-1.167100000000000e+00 +-1.224100000000000e+00 +-1.201800000000000e+00 +-1.104500000000000e+00 +-9.417300000000000e-01 +-7.154900000000000e-01 +-4.187600000000000e-01 +-4.992000000000000e-02 + 3.686100000000000e-01 + 7.835200000000000e-01 + 1.124100000000000e+00 + 1.330000000000000e+00 + 1.376500000000000e+00 + 1.281500000000000e+00 + 1.091600000000000e+00 + 8.594500000000000e-01 + 6.251200000000000e-01 + 4.130900000000000e-01 + 2.388500000000000e-01 + 1.158700000000000e-01 + 5.474600000000000e-02 + 5.620800000000000e-02 + 1.055800000000000e-01 + 1.753800000000000e-01 + 2.351600000000000e-01 + 2.615400000000000e-01 + 2.417200000000000e-01 + 1.704100000000000e-01 + 4.584100000000000e-02 +-1.292800000000000e-01 +-3.420600000000000e-01 +-5.653300000000000e-01 +-7.621200000000000e-01 +-8.985900000000000e-01 +-9.582500000000000e-01 +-9.471400000000000e-01 +-8.862600000000000e-01 +-7.964800000000000e-01 +-6.869300000000000e-01 +-5.546400000000000e-01 +-3.944300000000000e-01 +-2.102700000000000e-01 +-1.864800000000000e-02 + 1.585300000000000e-01 + 3.059600000000000e-01 + 4.226500000000000e-01 + 5.198800000000000e-01 + 6.108800000000000e-01 + 6.992800000000000e-01 + 7.734300000000000e-01 + 8.095500000000000e-01 + 7.818600000000000e-01 + 6.750300000000000e-01 + 4.938100000000000e-01 + 2.657700000000000e-01 + 3.516200000000000e-02 +-1.514500000000000e-01 +-2.627600000000000e-01 +-2.952000000000000e-01 +-2.729700000000000e-01 +-2.337300000000000e-01 +-2.073400000000000e-01 +-2.002000000000000e-01 +-1.955600000000000e-01 +-1.697600000000000e-01 +-1.133900000000000e-01 +-4.238100000000000e-02 + 9.295400000000001e-03 + 1.052100000000000e-02 +-4.687400000000000e-02 +-1.424400000000000e-01 +-2.389700000000000e-01 +-3.026700000000000e-01 +-3.179300000000000e-01 +-2.882600000000000e-01 +-2.265000000000000e-01 +-1.441000000000000e-01 +-4.810300000000000e-02 + 5.432400000000000e-02 + 1.506000000000000e-01 + 2.241200000000000e-01 + 2.627100000000000e-01 + 2.674500000000000e-01 + 2.540200000000000e-01 + 2.440800000000000e-01 + 2.524700000000000e-01 + 2.787700000000000e-01 + 3.083700000000000e-01 + 3.208100000000000e-01 + 2.989600000000000e-01 + 2.337800000000000e-01 + 1.249300000000000e-01 +-1.918300000000000e-02 +-1.796800000000000e-01 +-3.265400000000000e-01 +-4.239400000000000e-01 +-4.432400000000000e-01 +-3.782900000000000e-01 +-2.525700000000000e-01 +-1.108900000000000e-01 + 1.881200000000000e-03 + 6.276200000000000e-02 + 7.910800000000000e-02 + 7.797500000000000e-02 + 8.379900000000000e-02 + 1.000400000000000e-01 + 1.074900000000000e-01 + 7.982800000000000e-02 + 5.008400000000000e-03 +-1.029700000000000e-01 +-2.098200000000000e-01 +-2.798100000000000e-01 +-2.949600000000000e-01 +-2.623100000000000e-01 +-2.065200000000000e-01 +-1.542900000000000e-01 +-1.214200000000000e-01 +-1.093100000000000e-01 +-1.101300000000000e-01 +-1.146100000000000e-01 +-1.161600000000000e-01 +-1.096400000000000e-01 +-8.779800000000000e-02 +-3.987400000000000e-02 + 4.516300000000000e-02 + 1.722300000000000e-01 + 3.345700000000000e-01 + 5.126600000000000e-01 + 6.789400000000000e-01 + 8.063200000000000e-01 + 8.765900000000000e-01 + 8.845600000000000e-01 + 8.359200000000000e-01 + 7.401400000000000e-01 + 6.028800000000000e-01 + 4.233800000000000e-01 + 1.996400000000000e-01 +-6.106800000000000e-02 +-3.336600000000000e-01 +-5.765900000000000e-01 +-7.458900000000001e-01 +-8.158900000000000e-01 +-7.946400000000000e-01 +-7.228200000000000e-01 +-6.546600000000000e-01 +-6.304999999999999e-01 +-6.572200000000000e-01 +-7.083100000000000e-01 +-7.429800000000000e-01 +-7.313900000000000e-01 +-6.693400000000000e-01 +-5.738900000000000e-01 +-4.648600000000000e-01 +-3.470400000000000e-01 +-2.067400000000000e-01 +-2.482400000000000e-02 + 2.038100000000000e-01 + 4.595200000000000e-01 + 7.041900000000000e-01 + 9.004600000000000e-01 + 1.029900000000000e+00 + 1.097600000000000e+00 + 1.121000000000000e+00 + 1.111700000000000e+00 + 1.064300000000000e+00 + 9.610600000000000e-01 + 7.879600000000000e-01 + 5.511000000000000e-01 + 2.810700000000000e-01 + 2.203400000000000e-02 +-1.879100000000000e-01 +-3.328700000000000e-01 +-4.228700000000000e-01 +-4.840800000000000e-01 +-5.424400000000000e-01 +-6.098800000000000e-01 +-6.797700000000000e-01 +-7.321299999999999e-01 +-7.446700000000001e-01 +-7.038300000000000e-01 +-6.111700000000000e-01 +-4.827600000000000e-01 +-3.422700000000000e-01 +-2.108400000000000e-01 +-9.848500000000000e-02 +-1.760200000000000e-03 + 9.055900000000000e-02 + 1.861600000000000e-01 + 2.787700000000000e-01 + 3.458000000000000e-01 + 3.573600000000000e-01 + 2.934100000000000e-01 + 1.600400000000000e-01 +-4.942900000000000e-03 +-1.423000000000000e-01 +-1.943100000000000e-01 +-1.303000000000000e-01 + 3.766500000000000e-02 + 2.569100000000000e-01 + 4.541800000000000e-01 + 5.648000000000000e-01 + 5.580500000000000e-01 + 4.472100000000000e-01 + 2.798800000000000e-01 + 1.139300000000000e-01 +-8.694300000000000e-03 +-7.717100000000000e-02 +-1.090400000000000e-01 +-1.329800000000000e-01 +-1.685300000000000e-01 +-2.155100000000000e-01 +-2.583600000000000e-01 +-2.806100000000000e-01 +-2.779000000000000e-01 +-2.599800000000000e-01 +-2.408300000000000e-01 +-2.257700000000000e-01 +-2.063000000000000e-01 +-1.671400000000000e-01 +-9.999100000000000e-02 +-1.253200000000000e-02 + 7.494199999999999e-02 + 1.429500000000000e-01 + 1.854900000000000e-01 + 2.114700000000000e-01 + 2.334600000000000e-01 + 2.531000000000000e-01 + 2.554800000000000e-01 + 2.183600000000000e-01 + 1.299300000000000e-01 + 1.655400000000000e-03 +-1.336700000000000e-01 +-2.378400000000000e-01 +-2.856900000000000e-01 +-2.740300000000000e-01 +-2.168100000000000e-01 +-1.329900000000000e-01 +-3.753000000000000e-02 + 5.902600000000000e-02 + 1.459200000000000e-01 + 2.103600000000000e-01 + 2.428300000000000e-01 + 2.454700000000000e-01 + 2.347400000000000e-01 + 2.333000000000000e-01 + 2.550000000000000e-01 + 2.941000000000000e-01 + 3.270800000000000e-01 + 3.262900000000000e-01 + 2.751900000000000e-01 + 1.743600000000000e-01 + 3.556100000000000e-02 +-1.285600000000000e-01 +-3.085900000000000e-01 +-4.926000000000000e-01 +-6.574400000000000e-01 +-7.682500000000000e-01 +-7.914000000000000e-01 +-7.140400000000000e-01 +-5.557299999999999e-01 +-3.617400000000000e-01 +-1.811500000000000e-01 +-4.403900000000000e-02 + 4.688300000000000e-02 + 1.065400000000000e-01 + 1.495100000000000e-01 + 1.791300000000000e-01 + 1.912000000000000e-01 + 1.868100000000000e-01 + 1.805200000000000e-01 + 1.949000000000000e-01 + 2.446800000000000e-01 + 3.235800000000000e-01 + 4.053700000000000e-01 + 4.592700000000000e-01 + 4.680000000000000e-01 + 4.351700000000000e-01 + 3.776600000000000e-01 + 3.112400000000000e-01 + 2.421300000000000e-01 + 1.709100000000000e-01 + 1.030300000000000e-01 + 5.403000000000000e-02 + 4.188100000000000e-02 + 7.130400000000001e-02 + 1.231100000000000e-01 + 1.592800000000000e-01 + 1.424100000000000e-01 + 5.636700000000000e-02 +-8.650099999999999e-02 +-2.560000000000000e-01 +-4.236100000000000e-01 +-5.756300000000000e-01 +-7.107599999999999e-01 +-8.261300000000000e-01 +-9.051399999999999e-01 +-9.186100000000000e-01 +-8.398700000000000e-01 +-6.627500000000000e-01 +-4.091700000000000e-01 +-1.206900000000000e-01 + 1.598500000000000e-01 + 4.040400000000000e-01 + 6.013400000000000e-01 + 7.504999999999999e-01 + 8.475900000000000e-01 + 8.804700000000000e-01 + 8.336500000000000e-01 + 6.994400000000000e-01 + 4.872200000000000e-01 + 2.247000000000000e-01 +-4.909800000000000e-02 +-2.947400000000000e-01 +-4.812300000000000e-01 +-5.897700000000000e-01 +-6.128500000000000e-01 +-5.517100000000000e-01 +-4.150200000000000e-01 +-2.195300000000000e-01 + 8.566600000000001e-03 + 2.344300000000000e-01 + 4.194600000000000e-01 + 5.302400000000000e-01 + 5.484100000000000e-01 + 4.767900000000000e-01 + 3.380800000000000e-01 + 1.660900000000000e-01 +-6.389700000000000e-03 +-1.568600000000000e-01 +-2.752800000000000e-01 +-3.594800000000000e-01 +-4.085600000000000e-01 +-4.193700000000000e-01 +-3.884400000000000e-01 +-3.166300000000000e-01 +-2.121900000000000e-01 +-8.918500000000000e-02 + 3.752700000000000e-02 + 1.569100000000000e-01 + 2.630000000000000e-01 + 3.528600000000000e-01 + 4.240200000000000e-01 + 4.738400000000000e-01 + 5.004200000000000e-01 + 5.029200000000000e-01 + 4.796200000000000e-01 + 4.254300000000000e-01 + 3.323600000000000e-01 + 1.950400000000000e-01 + 1.869500000000000e-02 +-1.764700000000000e-01 +-3.594200000000000e-01 +-5.001700000000000e-01 +-5.822500000000000e-01 +-6.077800000000000e-01 +-5.919100000000000e-01 +-5.517100000000000e-01 +-4.980900000000000e-01 +-4.364900000000000e-01 +-3.740400000000000e-01 +-3.248500000000000e-01 +-3.064600000000000e-01 +-3.279100000000000e-01 +-3.782000000000000e-01 +-4.251100000000000e-01 +-4.278500000000000e-01 +-3.571500000000000e-01 +-2.105700000000000e-01 +-1.384600000000000e-02 + 1.921000000000000e-01 + 3.703300000000000e-01 + 5.023200000000000e-01 + 5.915000000000000e-01 + 6.563000000000000e-01 + 7.182800000000000e-01 + 7.913600000000000e-01 + 8.757200000000001e-01 + 9.574100000000000e-01 + 1.013600000000000e+00 + 1.021400000000000e+00 + 9.680900000000000e-01 + 8.565400000000000e-01 + 7.035400000000001e-01 + 5.306400000000000e-01 + 3.530900000000000e-01 + 1.741900000000000e-01 +-1.123500000000000e-02 +-2.070300000000000e-01 +-4.078700000000000e-01 +-5.998400000000000e-01 +-7.687900000000000e-01 +-9.092400000000000e-01 +-1.025400000000000e+00 +-1.122700000000000e+00 +-1.198000000000000e+00 +-1.236500000000000e+00 +-1.222100000000000e+00 +-1.151700000000000e+00 +-1.043700000000000e+00 +-9.299900000000000e-01 +-8.355600000000000e-01 +-7.604600000000000e-01 +-6.772100000000000e-01 +-5.472200000000000e-01 +-3.452400000000000e-01 +-7.512700000000000e-02 + 2.330700000000000e-01 + 5.409800000000000e-01 + 8.205800000000000e-01 + 1.060900000000000e+00 + 1.261000000000000e+00 + 1.418500000000000e+00 + 1.525700000000000e+00 + 1.575600000000000e+00 + 1.571900000000000e+00 + 1.530400000000000e+00 + 1.467500000000000e+00 + 1.383100000000000e+00 + 1.251900000000000e+00 + 1.033700000000000e+00 + 6.985000000000000e-01 + 2.517300000000000e-01 +-2.573400000000000e-01 +-7.505200000000000e-01 +-1.150700000000000e+00 +-1.409900000000000e+00 +-1.520800000000000e+00 +-1.508900000000000e+00 +-1.413400000000000e+00 +-1.270300000000000e+00 +-1.104800000000000e+00 +-9.329499999999999e-01 +-7.667500000000000e-01 +-6.151600000000000e-01 +-4.820000000000000e-01 +-3.637400000000000e-01 +-2.513100000000000e-01 +-1.365500000000000e-01 +-1.905100000000000e-02 + 9.201500000000000e-02 + 1.831200000000000e-01 + 2.457800000000000e-01 + 2.836600000000000e-01 + 3.121000000000000e-01 + 3.497700000000000e-01 + 4.074900000000000e-01 + 4.817600000000000e-01 + 5.572300000000000e-01 + 6.167100000000000e-01 + 6.517600000000000e-01 + 6.667800000000000e-01 + 6.735300000000000e-01 + 6.803000000000000e-01 + 6.833700000000000e-01 + 6.669800000000000e-01 + 6.117400000000000e-01 + 5.055400000000000e-01 + 3.493900000000000e-01 + 1.551200000000000e-01 +-6.155800000000000e-02 +-2.859700000000000e-01 +-5.032700000000000e-01 +-6.932800000000000e-01 +-8.285100000000000e-01 +-8.808600000000000e-01 +-8.354500000000000e-01 +-7.029900000000000e-01 +-5.210000000000000e-01 +-3.405300000000000e-01 +-2.051400000000000e-01 +-1.338100000000000e-01 +-1.175800000000000e-01 +-1.298300000000000e-01 +-1.425500000000000e-01 +-1.383100000000000e-01 +-1.130400000000000e-01 +-7.201700000000000e-02 +-2.453700000000000e-02 + 1.910800000000000e-02 + 4.941000000000000e-02 + 6.100800000000000e-02 + 5.771900000000000e-02 + 5.504500000000000e-02 + 7.537300000000000e-02 + 1.358800000000000e-01 + 2.360600000000000e-01 + 3.542900000000000e-01 + 4.576500000000000e-01 + 5.195800000000000e-01 + 5.333500000000000e-01 + 5.118000000000000e-01 + 4.738100000000000e-01 + 4.284400000000000e-01 + 3.693100000000000e-01 + 2.836600000000000e-01 + 1.687300000000000e-01 + 4.144500000000000e-02 +-6.713200000000000e-02 +-1.298200000000000e-01 +-1.407900000000000e-01 +-1.198500000000000e-01 +-1.005300000000000e-01 +-1.107500000000000e-01 +-1.591600000000000e-01 +-2.350000000000000e-01 +-3.189200000000000e-01 +-3.947800000000000e-01 +-4.540700000000000e-01 +-4.918000000000000e-01 +-5.001500000000000e-01 +-4.671900000000000e-01 +-3.831900000000000e-01 +-2.501100000000000e-01 +-8.749200000000000e-02 + 6.995400000000000e-02 + 1.825400000000000e-01 + 2.192800000000000e-01 + 1.697000000000000e-01 + 4.968400000000000e-02 +-1.014000000000000e-01 +-2.329500000000000e-01 +-3.022700000000000e-01 +-2.934700000000000e-01 +-2.259400000000000e-01 +-1.448400000000000e-01 +-9.523300000000000e-02 +-9.297200000000000e-02 +-1.105800000000000e-01 +-8.984700000000000e-02 + 2.357300000000000e-02 + 2.438900000000000e-01 + 5.306900000000000e-01 + 8.068100000000000e-01 + 9.981000000000000e-01 + 1.069700000000000e+00 + 1.036600000000000e+00 + 9.429700000000000e-01 + 8.282700000000000e-01 + 7.035400000000001e-01 + 5.535500000000000e-01 + 3.598100000000000e-01 + 1.244700000000000e-01 +-1.236200000000000e-01 +-3.443300000000000e-01 +-5.098400000000000e-01 +-6.179900000000000e-01 +-6.860000000000001e-01 +-7.319400000000000e-01 +-7.599600000000000e-01 +-7.613799999999999e-01 +-7.294500000000000e-01 +-6.739700000000000e-01 +-6.222100000000000e-01 +-6.038700000000000e-01 +-6.310600000000000e-01 +-6.882600000000000e-01 +-7.394200000000000e-01 +-7.463200000000000e-01 +-6.849000000000000e-01 +-5.497800000000000e-01 +-3.478600000000000e-01 +-9.047100000000000e-02 + 2.075400000000000e-01 + 5.221700000000000e-01 + 8.165100000000000e-01 + 1.047500000000000e+00 + 1.182500000000000e+00 + 1.215400000000000e+00 + 1.169200000000000e+00 + 1.082000000000000e+00 + 9.839100000000000e-01 + 8.825600000000000e-01 + 7.660200000000000e-01 + 6.213500000000000e-01 + 4.530400000000000e-01 + 2.864900000000000e-01 + 1.528100000000000e-01 + 6.573700000000000e-02 + 8.292900000000001e-03 +-6.037600000000000e-02 +-1.815700000000000e-01 +-3.725200000000000e-01 +-6.164900000000000e-01 +-8.725500000000000e-01 +-1.096800000000000e+00 +-1.260600000000000e+00 +-1.355000000000000e+00 +-1.382500000000000e+00 +-1.344100000000000e+00 +-1.232200000000000e+00 +-1.035300000000000e+00 +-7.492100000000000e-01 +-3.875000000000000e-01 + 1.482400000000000e-02 + 4.082300000000000e-01 + 7.427300000000000e-01 + 9.835100000000000e-01 + 1.121500000000000e+00 + 1.173600000000000e+00 + 1.172000000000000e+00 + 1.145800000000000e+00 + 1.105100000000000e+00 + 1.036600000000000e+00 + 9.147100000000000e-01 + 7.237400000000000e-01 + 4.760100000000000e-01 + 2.139200000000000e-01 +-8.462900000000001e-03 +-1.539300000000000e-01 +-2.228400000000000e-01 +-2.519200000000000e-01 +-2.913300000000000e-01 +-3.748400000000000e-01 +-5.019700000000000e-01 +-6.427000000000000e-01 +-7.591500000000000e-01 +-8.280500000000000e-01 +-8.491800000000000e-01 +-8.366600000000000e-01 +-8.028900000000000e-01 +-7.483500000000000e-01 +-6.640000000000000e-01 +-5.418800000000000e-01 +-3.838200000000000e-01 +-2.013600000000000e-01 +-8.757500000000000e-03 + 1.830200000000000e-01 + 3.657000000000000e-01 + 5.280100000000000e-01 + 6.524900000000000e-01 + 7.207800000000000e-01 + 7.255000000000000e-01 + 6.798100000000000e-01 + 6.154500000000001e-01 + 5.678200000000000e-01 + 5.567500000000000e-01 + 5.750999999999999e-01 + 5.927300000000000e-01 + 5.731200000000000e-01 + 4.925400000000000e-01 + 3.509600000000000e-01 + 1.704700000000000e-01 +-1.584600000000000e-02 +-1.777700000000000e-01 +-2.985500000000000e-01 +-3.791000000000000e-01 +-4.351900000000000e-01 +-4.883700000000000e-01 +-5.532600000000000e-01 +-6.266400000000000e-01 +-6.852400000000000e-01 +-6.960000000000000e-01 +-6.352700000000000e-01 +-5.056800000000000e-01 +-3.387100000000000e-01 +-1.789100000000000e-01 +-5.884500000000000e-02 + 1.831400000000000e-02 + 7.546100000000000e-02 + 1.393000000000000e-01 + 2.153800000000000e-01 + 2.799100000000000e-01 + 2.959200000000000e-01 + 2.425400000000000e-01 + 1.353200000000000e-01 + 2.103300000000000e-02 +-5.070600000000000e-02 +-5.861000000000000e-02 +-2.070000000000000e-02 + 2.321900000000000e-02 + 4.415800000000000e-02 + 4.657400000000000e-02 + 6.342700000000000e-02 + 1.272800000000000e-01 + 2.398100000000000e-01 + 3.639100000000000e-01 + 4.458400000000000e-01 + 4.520500000000000e-01 + 3.936200000000000e-01 + 3.197900000000000e-01 + 2.840600000000000e-01 + 3.066000000000000e-01 + 3.589100000000000e-01 + 3.813400000000000e-01 + 3.205100000000000e-01 + 1.611400000000000e-01 +-6.829700000000000e-02 +-3.170100000000000e-01 +-5.426600000000000e-01 +-7.289700000000000e-01 +-8.797800000000000e-01 +-9.975300000000000e-01 +-1.066200000000000e+00 +-1.053800000000000e+00 +-9.340900000000000e-01 +-7.102600000000000e-01 +-4.225500000000000e-01 +-1.310900000000000e-01 + 1.148100000000000e-01 + 3.002300000000000e-01 + 4.448200000000000e-01 + 5.803000000000000e-01 + 7.218100000000000e-01 + 8.538700000000000e-01 + 9.403000000000000e-01 + 9.500400000000000e-01 + 8.796300000000000e-01 + 7.563500000000000e-01 + 6.205200000000000e-01 + 5.004100000000000e-01 + 3.972000000000000e-01 + 2.890900000000000e-01 + 1.496000000000000e-01 +-3.386500000000000e-02 +-2.524500000000000e-01 +-4.811200000000000e-01 +-6.896500000000000e-01 +-8.512000000000000e-01 +-9.457400000000000e-01 +-9.617100000000000e-01 +-8.995000000000000e-01 +-7.753200000000000e-01 +-6.194800000000000e-01 +-4.650900000000000e-01 +-3.312800000000000e-01 +-2.120500000000000e-01 +-8.086800000000000e-02 + 8.904600000000000e-02 + 3.014600000000000e-01 + 5.275000000000000e-01 + 7.177400000000000e-01 + 8.286500000000000e-01 + 8.453000000000001e-01 + 7.850600000000000e-01 + 6.811700000000001e-01 + 5.597000000000000e-01 + 4.271000000000000e-01 + 2.759200000000000e-01 + 1.011800000000000e-01 +-8.744600000000000e-02 +-2.677900000000000e-01 +-4.184400000000000e-01 +-5.306500000000000e-01 +-6.080600000000000e-01 +-6.551300000000000e-01 +-6.655200000000000e-01 +-6.222200000000000e-01 +-5.111100000000000e-01 +-3.372000000000000e-01 +-1.294900000000000e-01 + 7.127100000000000e-02 + 2.342700000000000e-01 + 3.538800000000000e-01 + 4.475000000000000e-01 + 5.379600000000000e-01 + 6.336900000000000e-01 + 7.208000000000000e-01 + 7.715000000000000e-01 + 7.610800000000000e-01 + 6.805400000000000e-01 + 5.369200000000000e-01 + 3.438700000000000e-01 + 1.118700000000000e-01 +-1.534000000000000e-01 +-4.439700000000000e-01 +-7.405200000000000e-01 +-1.009500000000000e+00 +-1.210000000000000e+00 +-1.306700000000000e+00 +-1.281800000000000e+00 +-1.139100000000000e+00 +-9.010200000000000e-01 +-5.989900000000000e-01 +-2.651800000000000e-01 + 7.307800000000000e-02 + 3.939500000000000e-01 + 6.785900000000000e-01 + 9.081900000000001e-01 + 1.063400000000000e+00 + 1.127600000000000e+00 + 1.092500000000000e+00 + 9.638900000000000e-01 + 7.624200000000000e-01 + 5.191700000000000e-01 + 2.670500000000000e-01 + 3.303000000000000e-02 +-1.651100000000000e-01 +-3.171400000000000e-01 +-4.171100000000000e-01 +-4.624400000000000e-01 +-4.561600000000000e-01 +-4.094400000000000e-01 +-3.402100000000000e-01 +-2.665700000000000e-01 +-1.985200000000000e-01 +-1.338400000000000e-01 +-6.164800000000000e-02 + 2.822900000000000e-02 + 1.363100000000000e-01 + 2.505700000000000e-01 + 3.507300000000000e-01 + 4.162100000000000e-01 + 4.325800000000000e-01 + 3.941900000000000e-01 + 3.038600000000000e-01 + 1.718200000000000e-01 + 1.420600000000000e-02 +-1.501500000000000e-01 +-3.051400000000000e-01 +-4.423300000000000e-01 +-5.611200000000000e-01 +-6.622200000000000e-01 +-7.386000000000000e-01 +-7.720500000000000e-01 +-7.408300000000000e-01 +-6.354100000000000e-01 +-4.708300000000000e-01 +-2.843600000000000e-01 +-1.168100000000000e-01 + 1.088800000000000e-02 + 1.087600000000000e-01 + 2.073300000000000e-01 + 3.320100000000000e-01 + 4.812200000000000e-01 + 6.250900000000000e-01 + 7.262800000000000e-01 + 7.672500000000000e-01 + 7.630600000000000e-01 + 7.492600000000000e-01 + 7.538200000000000e-01 + 7.741500000000000e-01 + 7.764300000000000e-01 + 7.175400000000000e-01 + 5.736700000000000e-01 + 3.553600000000000e-01 + 1.003700000000000e-01 +-1.483400000000000e-01 +-3.627400000000000e-01 +-5.354600000000000e-01 +-6.711600000000000e-01 +-7.738300000000000e-01 +-8.406600000000000e-01 +-8.654200000000000e-01 +-8.458700000000000e-01 +-7.876600000000000e-01 +-7.020900000000000e-01 +-6.010300000000000e-01 +-4.940300000000000e-01 +-3.892900000000000e-01 +-2.953300000000000e-01 +-2.197400000000000e-01 +-1.645900000000000e-01 +-1.225000000000000e-01 +-7.752500000000000e-02 +-1.155900000000000e-02 + 8.778600000000000e-02 + 2.226700000000000e-01 + 3.855700000000000e-01 + 5.625100000000000e-01 + 7.353499999999999e-01 + 8.826500000000000e-01 + 9.814900000000000e-01 + 1.012900000000000e+00 + 9.693100000000000e-01 + 8.593800000000000e-01 + 7.041700000000000e-01 + 5.265400000000000e-01 + 3.399800000000000e-01 + 1.455400000000000e-01 +-6.055300000000000e-02 +-2.745200000000000e-01 +-4.778800000000000e-01 +-6.419899999999999e-01 +-7.417300000000000e-01 +-7.685999999999999e-01 +-7.341299999999999e-01 +-6.620700000000000e-01 +-5.757500000000000e-01 +-4.896900000000000e-01 +-4.098900000000000e-01 +-3.396300000000000e-01 +-2.841800000000000e-01 +-2.499000000000000e-01 +-2.388500000000000e-01 +-2.437700000000000e-01 +-2.476100000000000e-01 +-2.282000000000000e-01 +-1.654900000000000e-01 +-4.866600000000000e-02 + 1.186400000000000e-01 + 3.162200000000000e-01 + 5.103000000000000e-01 + 6.633800000000000e-01 + 7.493600000000000e-01 + 7.667400000000000e-01 + 7.405900000000000e-01 + 7.084900000000000e-01 + 6.964200000000000e-01 + 6.995000000000000e-01 + 6.821800000000000e-01 + 6.002800000000000e-01 + 4.317300000000000e-01 + 1.951500000000000e-01 +-5.730600000000000e-02 +-2.687000000000000e-01 +-4.080600000000000e-01 +-4.827800000000000e-01 +-5.261100000000000e-01 +-5.712500000000000e-01 +-6.320800000000000e-01 +-7.028300000000000e-01 +-7.724299999999999e-01 +-8.380000000000000e-01 +-9.038200000000000e-01 +-9.668400000000000e-01 +-1.002600000000000e+00 +-9.673800000000000e-01 +-8.191700000000000e-01 +-5.459400000000000e-01 +-1.809100000000000e-01 + 2.063900000000000e-01 + 5.393600000000000e-01 + 7.666900000000000e-01 + 8.800900000000000e-01 + 9.098100000000000e-01 + 9.037800000000000e-01 + 9.031700000000000e-01 + 9.262000000000000e-01 + 9.648400000000000e-01 + 9.926900000000000e-01 + 9.792700000000000e-01 + 9.046700000000000e-01 + 7.691000000000000e-01 + 5.927000000000000e-01 + 4.046700000000000e-01 + 2.265800000000000e-01 + 5.978700000000000e-02 +-1.139700000000000e-01 +-3.171200000000000e-01 +-5.552400000000000e-01 +-8.051199999999999e-01 +-1.021700000000000e+00 +-1.160600000000000e+00 +-1.202100000000000e+00 +-1.158700000000000e+00 +-1.062800000000000e+00 +-9.423600000000000e-01 +-8.029900000000000e-01 +-6.301500000000000e-01 +-4.080000000000000e-01 +-1.409300000000000e-01 + 1.391700000000000e-01 + 3.854400000000000e-01 + 5.593500000000000e-01 + 6.481100000000000e-01 + 6.650199999999999e-01 + 6.342000000000000e-01 + 5.727400000000000e-01 + 4.836000000000000e-01 + 3.633100000000000e-01 + 2.168800000000000e-01 + 6.672100000000000e-02 +-5.276400000000000e-02 +-1.122300000000000e-01 +-1.045800000000000e-01 +-5.010000000000000e-02 + 1.453100000000000e-02 + 5.699200000000000e-02 + 6.696000000000001e-02 + 5.995900000000000e-02 + 6.547000000000000e-02 + 1.070100000000000e-01 + 1.863900000000000e-01 + 2.812300000000000e-01 + 3.562800000000000e-01 + 3.811200000000000e-01 + 3.434000000000000e-01 + 2.512300000000000e-01 + 1.252800000000000e-01 +-1.228000000000000e-02 +-1.444500000000000e-01 +-2.588900000000000e-01 +-3.435300000000000e-01 +-3.845900000000000e-01 +-3.707300000000000e-01 +-3.012500000000000e-01 +-1.919600000000000e-01 +-7.318900000000000e-02 + 2.070200000000000e-02 + 6.486000000000000e-02 + 5.317600000000000e-02 +-1.414100000000000e-03 +-7.473200000000001e-02 +-1.423300000000000e-01 +-1.882900000000000e-01 +-2.088800000000000e-01 +-2.112400000000000e-01 +-2.084500000000000e-01 +-2.128400000000000e-01 +-2.295600000000000e-01 +-2.526800000000000e-01 +-2.665100000000000e-01 +-2.521800000000000e-01 +-1.968000000000000e-01 +-9.969500000000001e-02 + 2.818200000000000e-02 + 1.707400000000000e-01 + 3.138200000000000e-01 + 4.469000000000000e-01 + 5.585500000000000e-01 + 6.309700000000000e-01 + 6.410700000000000e-01 + 5.711000000000001e-01 + 4.229300000000000e-01 + 2.251600000000000e-01 + 2.544800000000000e-02 +-1.295300000000000e-01 +-2.146800000000000e-01 +-2.346700000000000e-01 +-2.152000000000000e-01 +-1.846800000000000e-01 +-1.595100000000000e-01 +-1.417300000000000e-01 +-1.275100000000000e-01 +-1.165800000000000e-01 +-1.136800000000000e-01 +-1.213900000000000e-01 +-1.320500000000000e-01 +-1.276400000000000e-01 +-8.974699999999999e-02 +-1.299200000000000e-02 + 8.823599999999999e-02 + 1.848700000000000e-01 + 2.469100000000000e-01 + 2.569600000000000e-01 + 2.160300000000000e-01 + 1.401200000000000e-01 + 5.146700000000000e-02 +-3.011300000000000e-02 +-9.271600000000001e-02 +-1.340800000000000e-01 +-1.596900000000000e-01 +-1.774200000000000e-01 +-1.903300000000000e-01 +-1.917400000000000e-01 +-1.676800000000000e-01 +-1.077800000000000e-01 +-1.855800000000000e-02 + 7.180599999999999e-02 + 1.245000000000000e-01 + 1.129900000000000e-01 + 4.293300000000000e-02 +-4.687500000000000e-02 +-1.061800000000000e-01 +-1.044200000000000e-01 +-4.943200000000000e-02 + 2.020500000000000e-02 + 6.356000000000001e-02 + 6.511400000000001e-02 + 4.110300000000000e-02 + 2.097400000000000e-02 + 2.054300000000000e-02 + 2.957400000000000e-02 + 2.368800000000000e-02 +-1.064400000000000e-02 +-6.063400000000000e-02 +-9.555600000000000e-02 +-9.232000000000000e-02 +-5.597100000000000e-02 +-1.652100000000000e-02 +-3.678400000000000e-03 +-2.058700000000000e-02 +-3.944000000000000e-02 +-2.372000000000000e-02 + 4.099500000000000e-02 + 1.336300000000000e-01 + 2.133200000000000e-01 + 2.512300000000000e-01 + 2.515800000000000e-01 + 2.435400000000000e-01 + 2.507700000000000e-01 + 2.646100000000000e-01 + 2.451700000000000e-01 + 1.516000000000000e-01 +-2.151700000000000e-02 +-2.307900000000000e-01 +-4.050800000000000e-01 +-4.858800000000000e-01 +-4.575700000000000e-01 +-3.473500000000000e-01 +-1.991800000000000e-01 +-4.458900000000000e-02 + 1.071300000000000e-01 + 2.558800000000000e-01 + 3.908300000000000e-01 + 4.837500000000000e-01 + 5.027100000000000e-01 + 4.343800000000000e-01 + 2.959400000000000e-01 + 1.266200000000000e-01 +-3.451600000000000e-02 +-1.672200000000000e-01 +-2.727500000000000e-01 +-3.618200000000000e-01 +-4.403300000000000e-01 +-5.041099999999999e-01 +-5.444000000000000e-01 +-5.558000000000000e-01 +-5.384200000000000e-01 +-4.938200000000000e-01 +-4.210700000000000e-01 +-3.193000000000000e-01 +-1.947800000000000e-01 +-6.452700000000000e-02 + 5.026400000000000e-02 + 1.379800000000000e-01 + 2.063400000000000e-01 + 2.779500000000000e-01 + 3.726300000000000e-01 + 4.891300000000000e-01 + 6.011400000000000e-01 + 6.719500000000000e-01 + 6.773000000000000e-01 + 6.193900000000000e-01 + 5.219800000000000e-01 + 4.116500000000000e-01 + 3.012400000000000e-01 + 1.885800000000000e-01 + 6.992200000000000e-02 +-4.540800000000000e-02 +-1.338300000000000e-01 +-1.728400000000000e-01 +-1.610600000000000e-01 +-1.261200000000000e-01 +-1.118700000000000e-01 +-1.524600000000000e-01 +-2.508200000000000e-01 +-3.759700000000000e-01 +-4.802200000000000e-01 +-5.235500000000000e-01 +-4.899300000000000e-01 +-3.877100000000000e-01 +-2.389700000000000e-01 +-6.809999999999999e-02 + 1.027000000000000e-01 + 2.520800000000000e-01 + 3.585500000000000e-01 + 4.046300000000000e-01 + 3.842000000000000e-01 + 3.063100000000000e-01 + 1.905700000000000e-01 + 5.588000000000000e-02 +-8.933800000000000e-02 +-2.476300000000000e-01 +-4.223600000000000e-01 +-6.040900000000000e-01 +-7.639899999999999e-01 +-8.605000000000000e-01 +-8.565199999999999e-01 +-7.371400000000000e-01 +-5.171700000000000e-01 +-2.344800000000000e-01 + 6.637400000000000e-02 + 3.500200000000000e-01 + 5.972300000000000e-01 + 8.009100000000000e-01 + 9.565300000000000e-01 + 1.055300000000000e+00 + 1.084900000000000e+00 + 1.037800000000000e+00 + 9.188200000000000e-01 + 7.476500000000000e-01 + 5.520400000000000e-01 + 3.572200000000000e-01 + 1.779100000000000e-01 + 1.799100000000000e-02 +-1.229100000000000e-01 +-2.421300000000000e-01 +-3.321600000000000e-01 +-3.859300000000000e-01 +-4.050000000000000e-01 +-4.033800000000000e-01 +-4.028400000000000e-01 +-4.220600000000000e-01 +-4.665800000000000e-01 +-5.265600000000000e-01 +-5.835900000000001e-01 +-6.214700000000000e-01 +-6.335200000000000e-01 +-6.220100000000000e-01 +-5.915300000000000e-01 +-5.424300000000000e-01 +-4.697400000000000e-01 +-3.681500000000000e-01 +-2.389400000000000e-01 +-9.308300000000000e-02 + 5.208600000000000e-02 + 1.806400000000000e-01 + 2.854300000000000e-01 + 3.706500000000000e-01 + 4.483800000000000e-01 + 5.312000000000000e-01 + 6.246800000000000e-01 + 7.229900000000000e-01 + 8.095000000000000e-01 + 8.622100000000000e-01 + 8.618000000000000e-01 + 7.990900000000000e-01 + 6.783800000000000e-01 + 5.150100000000000e-01 + 3.287300000000000e-01 + 1.372100000000000e-01 +-4.638700000000000e-02 +-2.108400000000000e-01 +-3.430700000000000e-01 +-4.281700000000000e-01 +-4.557700000000000e-01 +-4.291300000000000e-01 +-3.698000000000000e-01 +-3.118600000000000e-01 +-2.870000000000000e-01 +-3.089000000000000e-01 +-3.669300000000000e-01 +-4.338400000000000e-01 +-4.825400000000000e-01 +-5.008200000000000e-01 +-4.945100000000000e-01 +-4.780100000000000e-01 +-4.599300000000000e-01 +-4.345200000000000e-01 +-3.847300000000000e-01 +-2.940200000000000e-01 +-1.584700000000000e-01 + 8.947800000000001e-03 + 1.836200000000000e-01 + 3.399700000000000e-01 + 4.606500000000000e-01 + 5.401600000000000e-01 + 5.827900000000000e-01 + 5.979500000000000e-01 + 5.957900000000000e-01 + 5.844100000000000e-01 + 5.687800000000000e-01 + 5.507300000000001e-01 + 5.296500000000000e-01 + 5.033400000000000e-01 + 4.680800000000000e-01 + 4.175600000000000e-01 + 3.420000000000000e-01 + 2.294600000000000e-01 + 7.100700000000000e-02 +-1.316800000000000e-01 +-3.608600000000000e-01 +-5.840900000000000e-01 +-7.635300000000000e-01 +-8.693300000000000e-01 +-8.899899999999999e-01 +-8.344300000000000e-01 +-7.257700000000000e-01 +-5.915100000000000e-01 +-4.557200000000000e-01 +-3.353100000000000e-01 +-2.388200000000000e-01 +-1.652500000000000e-01 +-1.034500000000000e-01 +-3.481400000000000e-02 + 5.817800000000000e-02 + 1.805600000000000e-01 + 3.178700000000000e-01 + 4.406300000000000e-01 + 5.201400000000000e-01 + 5.468900000000000e-01 + 5.387100000000000e-01 + 5.316800000000000e-01 + 5.581300000000000e-01 + 6.253800000000000e-01 + 7.090100000000000e-01 + 7.647400000000000e-01 + 7.509700000000000e-01 + 6.477300000000000e-01 + 4.615600000000000e-01 + 2.164900000000000e-01 +-6.030200000000000e-02 +-3.476500000000000e-01 +-6.300900000000000e-01 +-8.911900000000000e-01 +-1.107800000000000e+00 +-1.251000000000000e+00 +-1.293600000000000e+00 +-1.221400000000000e+00 +-1.041900000000000e+00 +-7.867499999999999e-01 +-5.044300000000000e-01 +-2.459700000000000e-01 +-4.673200000000000e-02 + 8.715800000000000e-02 + 1.798200000000000e-01 + 2.711900000000000e-01 + 3.931300000000000e-01 + 5.494000000000000e-01 + 7.123300000000000e-01 + 8.393699999999999e-01 + 8.993600000000000e-01 + 8.909300000000000e-01 + 8.406000000000000e-01 + 7.822900000000000e-01 + 7.337000000000000e-01 + 6.868800000000000e-01 + 6.190600000000001e-01 + 5.139800000000000e-01 + 3.761100000000000e-01 + 2.264500000000000e-01 + 8.432300000000000e-02 +-4.894100000000000e-02 +-1.900500000000000e-01 +-3.569700000000000e-01 +-5.491100000000000e-01 +-7.409700000000000e-01 +-8.952100000000000e-01 +-9.849599999999999e-01 +-1.008100000000000e+00 +-9.833600000000000e-01 +-9.321300000000000e-01 +-8.630300000000000e-01 +-7.705200000000000e-01 +-6.478800000000000e-01 +-5.012000000000000e-01 +-3.506000000000000e-01 +-2.165500000000000e-01 +-1.025900000000000e-01 + 9.985300000000001e-03 + 1.494200000000000e-01 + 3.315600000000000e-01 + 5.454300000000000e-01 + 7.573400000000000e-01 + 9.299400000000000e-01 + 1.041200000000000e+00 + 1.089500000000000e+00 + 1.083900000000000e+00 + 1.029200000000000e+00 + 9.219500000000000e-01 + 7.583400000000000e-01 + 5.482300000000000e-01 + 3.195300000000000e-01 + 1.074000000000000e-01 +-6.474600000000000e-02 +-1.976100000000000e-01 +-3.110200000000000e-01 +-4.248600000000000e-01 +-5.404099999999999e-01 +-6.368200000000001e-01 +-6.853800000000000e-01 +-6.707200000000000e-01 +-6.023700000000000e-01 +-5.085900000000000e-01 +-4.176100000000000e-01 +-3.413000000000000e-01 +-2.730300000000000e-01 +-1.998300000000000e-01 +-1.175100000000000e-01 +-3.603800000000000e-02 + 2.874800000000000e-02 + 6.931100000000000e-02 + 9.384600000000000e-02 + 1.200500000000000e-01 + 1.597900000000000e-01 + 2.071900000000000e-01 + 2.400000000000000e-01 + 2.343600000000000e-01 + 1.820300000000000e-01 + 9.750700000000000e-02 + 9.948600000000000e-03 +-5.395800000000000e-02 +-8.358100000000000e-02 +-8.530799999999999e-02 +-7.188000000000000e-02 +-4.988400000000000e-02 +-1.589400000000000e-02 + 3.591500000000000e-02 + 1.016100000000000e-01 + 1.618500000000000e-01 + 1.889700000000000e-01 + 1.630100000000000e-01 + 8.543800000000000e-02 +-1.968200000000000e-02 +-1.185900000000000e-01 +-1.862000000000000e-01 +-2.174900000000000e-01 +-2.244500000000000e-01 +-2.215600000000000e-01 +-2.110000000000000e-01 +-1.784100000000000e-01 +-1.024600000000000e-01 + 2.841500000000000e-02 + 2.038100000000000e-01 + 3.919200000000000e-01 + 5.525500000000000e-01 + 6.543200000000000e-01 + 6.857100000000000e-01 + 6.545400000000000e-01 + 5.782100000000000e-01 + 4.720500000000000e-01 + 3.431900000000000e-01 + 1.923600000000000e-01 + 2.085100000000000e-02 +-1.633500000000000e-01 +-3.443400000000000e-01 +-5.026800000000000e-01 +-6.219700000000000e-01 +-6.933200000000000e-01 +-7.154100000000000e-01 +-6.906800000000000e-01 +-6.216100000000000e-01 +-5.106500000000000e-01 +-3.647000000000000e-01 +-2.011700000000000e-01 +-4.978900000000000e-02 + 5.420600000000000e-02 + 8.468600000000000e-02 + 3.975500000000000e-02 +-5.261600000000000e-02 +-1.447300000000000e-01 +-1.919800000000000e-01 +-1.762300000000000e-01 +-1.150500000000000e-01 +-4.993700000000000e-02 +-1.940500000000000e-02 +-3.361700000000000e-02 +-6.690300000000000e-02 +-7.324799999999999e-02 +-1.461700000000000e-02 + 1.165200000000000e-01 + 2.947100000000000e-01 + 4.790600000000000e-01 + 6.373100000000000e-01 + 7.592900000000000e-01 + 8.522200000000000e-01 + 9.240600000000000e-01 + 9.699000000000000e-01 + 9.721900000000000e-01 + 9.136900000000000e-01 + 7.911500000000000e-01 + 6.175300000000000e-01 + 4.106800000000000e-01 + 1.786800000000000e-01 +-8.427300000000000e-02 +-3.855300000000000e-01 +-7.133900000000000e-01 +-1.024900000000000e+00 +-1.254900000000000e+00 +-1.344100000000000e+00 +-1.270400000000000e+00 +-1.063200000000000e+00 +-7.921600000000000e-01 +-5.358600000000000e-01 +-3.504200000000000e-01 +-2.535300000000000e-01 +-2.292400000000000e-01 +-2.452200000000000e-01 +-2.688500000000000e-01 +-2.740900000000000e-01 +-2.409000000000000e-01 +-1.546000000000000e-01 +-1.053600000000000e-02 + 1.784800000000000e-01 + 3.801900000000000e-01 + 5.522600000000000e-01 + 6.607000000000000e-01 + 6.963900000000000e-01 + 6.783600000000000e-01 + 6.404100000000000e-01 + 6.093200000000000e-01 + 5.892300000000000e-01 + 5.627700000000000e-01 + 5.076700000000000e-01 + 4.166100000000000e-01 + 3.055500000000000e-01 + 2.040300000000000e-01 + 1.341300000000000e-01 + 9.322800000000001e-02 + 5.316300000000000e-02 +-2.248100000000000e-02 +-1.540200000000000e-01 +-3.299000000000000e-01 +-5.092600000000000e-01 +-6.408100000000000e-01 +-6.860100000000000e-01 +-6.336300000000000e-01 +-4.997700000000000e-01 +-3.171200000000000e-01 +-1.220900000000000e-01 + 5.339400000000000e-02 + 1.848000000000000e-01 + 2.561600000000000e-01 + 2.626600000000000e-01 + 2.135700000000000e-01 + 1.312300000000000e-01 + 4.331100000000000e-02 +-2.922200000000000e-02 +-8.134900000000000e-02 +-1.239400000000000e-01 +-1.735600000000000e-01 +-2.384800000000000e-01 +-3.100000000000000e-01 +-3.647000000000000e-01 +-3.758800000000000e-01 +-3.265100000000000e-01 +-2.162100000000000e-01 +-5.948700000000000e-02 + 1.214400000000000e-01 + 3.037900000000000e-01 + 4.676600000000000e-01 + 5.964699999999999e-01 + 6.768500000000000e-01 + 6.999100000000000e-01 + 6.628700000000000e-01 + 5.692700000000001e-01 + 4.270700000000000e-01 + 2.466900000000000e-01 + 4.099400000000000e-02 +-1.723400000000000e-01 +-3.693600000000000e-01 +-5.227400000000000e-01 +-6.099300000000000e-01 +-6.224900000000000e-01 +-5.703600000000000e-01 +-4.774700000000000e-01 +-3.706500000000000e-01 +-2.691000000000000e-01 +-1.807700000000000e-01 +-1.070800000000000e-01 +-5.058100000000000e-02 +-1.842000000000000e-02 +-1.789200000000000e-02 +-4.761500000000000e-02 +-9.189000000000000e-02 +-1.242500000000000e-01 +-1.194400000000000e-01 +-6.666300000000000e-02 + 2.475500000000000e-02 + 1.310900000000000e-01 + 2.279000000000000e-01 + 3.030800000000000e-01 + 3.615400000000000e-01 + 4.193900000000000e-01 + 4.918100000000000e-01 + 5.821000000000000e-01 + 6.779300000000000e-01 + 7.560600000000000e-01 + 7.923600000000000e-01 + 7.716100000000000e-01 + 6.924600000000000e-01 + 5.658200000000000e-01 + 4.084200000000000e-01 + 2.350500000000000e-01 + 5.344600000000000e-02 +-1.358600000000000e-01 +-3.352300000000000e-01 +-5.438100000000000e-01 +-7.532200000000000e-01 +-9.473000000000000e-01 +-1.106400000000000e+00 +-1.213700000000000e+00 +-1.261400000000000e+00 +-1.253300000000000e+00 +-1.202800000000000e+00 +-1.126700000000000e+00 +-1.036300000000000e+00 +-9.297000000000000e-01 +-7.891100000000000e-01 +-5.876000000000000e-01 +-3.030300000000000e-01 + 6.554800000000000e-02 + 4.883000000000000e-01 + 9.090100000000000e-01 + 1.263200000000000e+00 + 1.501500000000000e+00 + 1.605600000000000e+00 + 1.588300000000000e+00 + 1.478800000000000e+00 + 1.305000000000000e+00 + 1.084200000000000e+00 + 8.287900000000000e-01 + 5.582100000000000e-01 + 3.060200000000000e-01 + 1.122200000000000e-01 + 4.217600000000000e-03 +-2.071200000000000e-02 + 2.468500000000000e-03 + 2.311000000000000e-02 + 2.567800000000000e-04 +-7.945300000000000e-02 +-2.020100000000000e-01 +-3.418000000000000e-01 +-4.797600000000000e-01 +-6.105600000000000e-01 +-7.355200000000000e-01 +-8.497100000000000e-01 +-9.358500000000000e-01 +-9.711700000000000e-01 +-9.422900000000000e-01 +-8.559700000000000e-01 +-7.365400000000000e-01 +-6.111600000000000e-01 +-4.932500000000000e-01 +-3.760100000000000e-01 +-2.404800000000000e-01 +-7.221900000000001e-02 + 1.248600000000000e-01 + 3.262900000000000e-01 + 4.973300000000000e-01 + 6.087800000000000e-01 + 6.491900000000000e-01 + 6.274800000000000e-01 + 5.660400000000000e-01 + 4.890000000000000e-01 + 4.118900000000000e-01 + 3.374000000000000e-01 + 2.589000000000000e-01 + 1.694900000000000e-01 + 7.145700000000001e-02 +-1.989200000000000e-02 +-8.151600000000001e-02 +-9.489000000000000e-02 +-5.784700000000000e-02 + 1.243600000000000e-02 + 8.860300000000000e-02 + 1.490200000000000e-01 + 1.891700000000000e-01 + 2.195600000000000e-01 + 2.509400000000000e-01 + 2.782300000000000e-01 + 2.773300000000000e-01 + 2.202100000000000e-01 + 9.954700000000000e-02 +-5.558900000000000e-02 +-1.873700000000000e-01 +-2.390900000000000e-01 +-1.894700000000000e-01 +-6.866300000000000e-02 + 5.593500000000000e-02 + 1.159000000000000e-01 + 7.712500000000000e-02 +-4.725400000000000e-02 +-2.122500000000000e-01 +-3.712100000000000e-01 +-4.990900000000000e-01 +-5.946600000000000e-01 +-6.643100000000000e-01 +-7.037500000000000e-01 +-6.934800000000000e-01 +-6.115500000000000e-01 +-4.527600000000000e-01 +-2.382800000000000e-01 +-7.507300000000000e-03 + 2.022300000000000e-01 + 3.729200000000000e-01 + 5.079399999999999e-01 + 6.183500000000000e-01 + 7.051600000000000e-01 + 7.517200000000001e-01 + 7.325700000000001e-01 + 6.324100000000000e-01 + 4.612600000000000e-01 + 2.545900000000000e-01 + 5.787700000000000e-02 +-9.446700000000000e-02 +-1.927400000000000e-01 +-2.504600000000000e-01 +-2.902000000000000e-01 +-3.264200000000000e-01 +-3.557000000000000e-01 +-3.590900000000000e-01 +-3.142800000000000e-01 +-2.102700000000000e-01 +-5.715500000000000e-02 + 1.136700000000000e-01 + 2.590800000000000e-01 + 3.398700000000000e-01 + 3.361400000000000e-01 + 2.555200000000000e-01 + 1.296500000000000e-01 +-4.938400000000000e-05 +-1.009100000000000e-01 +-1.616800000000000e-01 +-1.925400000000000e-01 +-2.128400000000000e-01 +-2.352600000000000e-01 +-2.573900000000000e-01 +-2.660400000000000e-01 +-2.499900000000000e-01 +-2.100200000000000e-01 +-1.573800000000000e-01 +-1.016100000000000e-01 +-3.856600000000000e-02 + 4.917700000000000e-02 + 1.769300000000000e-01 + 3.380800000000000e-01 + 4.965300000000000e-01 + 6.010100000000000e-01 + 6.141500000000000e-01 + 5.364900000000000e-01 + 4.069600000000000e-01 + 2.776900000000000e-01 + 1.800300000000000e-01 + 1.065000000000000e-01 + 2.195800000000000e-02 +-1.042800000000000e-01 +-2.697800000000000e-01 +-4.354200000000000e-01 +-5.496600000000000e-01 +-5.821400000000000e-01 +-5.416000000000000e-01 +-4.658200000000000e-01 +-3.930900000000000e-01 +-3.379800000000000e-01 +-2.889500000000000e-01 +-2.269400000000000e-01 +-1.472300000000000e-01 +-6.629100000000000e-02 +-9.154499999999999e-03 + 1.025600000000000e-02 +-1.580900000000000e-03 +-2.562500000000000e-02 +-4.623000000000000e-02 +-5.926200000000000e-02 +-6.480400000000000e-02 +-5.269300000000000e-02 + 2.225700000000000e-03 + 1.256500000000000e-01 + 3.185200000000000e-01 + 5.418500000000001e-01 + 7.283400000000000e-01 + 8.173500000000000e-01 + 7.906600000000000e-01 + 6.830700000000000e-01 + 5.593300000000000e-01 + 4.729500000000000e-01 + 4.353300000000000e-01 + 4.152500000000000e-01 + 3.660200000000000e-01 + 2.584300000000000e-01 + 9.629799999999999e-02 +-9.278699999999999e-02 +-2.796300000000000e-01 +-4.495500000000000e-01 +-6.018600000000000e-01 +-7.377600000000000e-01 +-8.502000000000000e-01 +-9.248499999999999e-01 +-9.496700000000000e-01 +-9.227000000000000e-01 +-8.510100000000000e-01 +-7.433600000000000e-01 +-6.054700000000000e-01 +-4.434500000000000e-01 +-2.710600000000000e-01 +-1.106700000000000e-01 + 1.772800000000000e-02 + 1.127800000000000e-01 + 1.986600000000000e-01 + 3.123000000000000e-01 + 4.760000000000000e-01 + 6.744800000000000e-01 + 8.552800000000000e-01 + 9.559400000000000e-01 + 9.412800000000000e-01 + 8.253500000000000e-01 + 6.628200000000000e-01 + 5.159400000000000e-01 + 4.198400000000000e-01 + 3.686400000000000e-01 + 3.286300000000000e-01 + 2.655500000000000e-01 + 1.658400000000000e-01 + 3.944500000000000e-02 +-9.252100000000001e-02 +-2.121500000000000e-01 +-3.102800000000000e-01 +-3.830600000000000e-01 +-4.276400000000000e-01 +-4.441400000000000e-01 +-4.426600000000000e-01 +-4.468500000000000e-01 +-4.866700000000000e-01 +-5.817300000000000e-01 +-7.256600000000000e-01 +-8.826500000000000e-01 +-9.997600000000000e-01 +-1.027900000000000e+00 +-9.389400000000000e-01 +-7.318100000000000e-01 +-4.267500000000000e-01 +-5.637300000000000e-02 + 3.408400000000000e-01 + 7.232100000000000e-01 + 1.048800000000000e+00 + 1.282200000000000e+00 + 1.403700000000000e+00 + 1.415400000000000e+00 + 1.338800000000000e+00 + 1.203500000000000e+00 + 1.033500000000000e+00 + 8.405600000000000e-01 + 6.254200000000000e-01 + 3.879600000000000e-01 + 1.359500000000000e-01 +-1.130900000000000e-01 +-3.387900000000000e-01 +-5.286500000000000e-01 +-6.848600000000000e-01 +-8.216700000000000e-01 +-9.538000000000000e-01 +-1.082400000000000e+00 +-1.187200000000000e+00 +-1.232000000000000e+00 +-1.181300000000000e+00 +-1.021800000000000e+00 +-7.743600000000000e-01 +-4.898300000000000e-01 +-2.278500000000000e-01 +-3.006500000000000e-02 + 9.732800000000000e-02 + 1.812800000000000e-01 + 2.613200000000000e-01 + 3.636300000000000e-01 + 4.858400000000000e-01 + 6.013500000000001e-01 + 6.787300000000001e-01 + 7.025200000000000e-01 + 6.817700000000000e-01 + 6.424800000000001e-01 + 6.108200000000000e-01 + 5.995600000000000e-01 + 6.051900000000000e-01 + 6.149000000000000e-01 + 6.153300000000000e-01 + 5.964100000000000e-01 + 5.492200000000000e-01 + 4.628700000000000e-01 + 3.257300000000000e-01 + 1.316700000000000e-01 +-1.130200000000000e-01 +-3.876000000000000e-01 +-6.615900000000000e-01 +-9.029900000000000e-01 +-1.085300000000000e+00 +-1.190900000000000e+00 +-1.211000000000000e+00 +-1.146600000000000e+00 +-1.008100000000000e+00 +-8.145500000000000e-01 +-5.884300000000000e-01 +-3.477600000000000e-01 +-1.011300000000000e-01 + 1.503800000000000e-01 + 4.040100000000000e-01 + 6.452100000000000e-01 + 8.449700000000000e-01 + 9.681700000000000e-01 + 9.890200000000000e-01 + 9.038600000000000e-01 + 7.332800000000000e-01 + 5.129600000000000e-01 + 2.798300000000000e-01 + 6.225600000000000e-02 +-1.217700000000000e-01 +-2.609100000000000e-01 +-3.471900000000000e-01 +-3.766600000000000e-01 +-3.525300000000000e-01 +-2.865900000000000e-01 +-1.961100000000000e-01 +-9.801200000000000e-02 +-4.671800000000000e-03 + 7.598500000000000e-02 + 1.375600000000000e-01 + 1.735600000000000e-01 + 1.796500000000000e-01 + 1.581100000000000e-01 + 1.197900000000000e-01 + 8.034700000000000e-02 + 5.256200000000000e-02 + 3.994900000000000e-02 + 3.639600000000000e-02 + 3.140800000000000e-02 + 1.612200000000000e-02 +-1.479700000000000e-02 +-6.564700000000000e-02 +-1.419900000000000e-01 +-2.479700000000000e-01 +-3.788800000000000e-01 +-5.151400000000000e-01 +-6.249500000000000e-01 +-6.767200000000000e-01 +-6.544300000000000e-01 +-5.649200000000000e-01 +-4.312300000000000e-01 +-2.763000000000000e-01 +-1.088300000000000e-01 + 7.817600000000000e-02 + 2.954100000000000e-01 + 5.412200000000000e-01 + 7.938800000000000e-01 + 1.017500000000000e+00 + 1.176700000000000e+00 + 1.247600000000000e+00 + 1.220700000000000e+00 + 1.094000000000000e+00 + 8.692400000000000e-01 + 5.555099999999999e-01 + 1.790800000000000e-01 +-2.112400000000000e-01 +-5.529900000000000e-01 +-7.920700000000001e-01 +-9.058700000000000e-01 +-9.116900000000000e-01 +-8.537700000000000e-01 +-7.769100000000000e-01 +-7.042800000000000e-01 +-6.335000000000000e-01 +-5.513200000000000e-01 +-4.534800000000000e-01 +-3.531200000000000e-01 +-2.712000000000000e-01 +-2.171300000000000e-01 +-1.764200000000000e-01 +-1.166800000000000e-01 +-9.359800000000000e-03 + 1.484000000000000e-01 + 3.277700000000000e-01 + 4.829900000000000e-01 + 5.766800000000000e-01 + 5.981600000000000e-01 + 5.631100000000000e-01 + 4.969300000000000e-01 + 4.156600000000000e-01 + 3.187300000000000e-01 + 1.977400000000000e-01 + 5.275600000000000e-02 +-9.755999999999999e-02 +-2.204700000000000e-01 +-2.850600000000000e-01 +-2.780800000000000e-01 +-2.091400000000000e-01 +-1.031700000000000e-01 + 1.281600000000000e-02 + 1.189800000000000e-01 + 2.037000000000000e-01 + 2.595100000000000e-01 + 2.809400000000000e-01 + 2.676300000000000e-01 + 2.295800000000000e-01 + 1.874000000000000e-01 + 1.638500000000000e-01 + 1.703000000000000e-01 + 1.975300000000000e-01 + 2.185400000000000e-01 + 2.028600000000000e-01 + 1.334200000000000e-01 + 1.486200000000000e-02 +-1.316000000000000e-01 +-2.818000000000000e-01 +-4.203900000000000e-01 +-5.427999999999999e-01 +-6.481800000000000e-01 +-7.310700000000000e-01 +-7.797900000000000e-01 +-7.829600000000000e-01 +-7.378200000000000e-01 +-6.525200000000000e-01 +-5.395500000000000e-01 +-4.058700000000000e-01 +-2.486300000000000e-01 +-6.107900000000000e-02 + 1.550800000000000e-01 + 3.811200000000000e-01 + 5.842100000000000e-01 + 7.311600000000000e-01 + 8.038600000000000e-01 + 8.059300000000000e-01 + 7.564200000000000e-01 + 6.765700000000000e-01 + 5.796100000000000e-01 + 4.704700000000000e-01 + 3.535100000000000e-01 + 2.399500000000000e-01 + 1.474200000000000e-01 + 9.133400000000000e-02 + 7.485899999999999e-02 + 8.583700000000000e-02 + 1.033800000000000e-01 + 1.094100000000000e-01 + 9.687300000000000e-02 + 6.948200000000000e-02 + 3.463600000000000e-02 +-3.967500000000000e-03 +-4.863500000000000e-02 +-1.045800000000000e-01 +-1.756200000000000e-01 +-2.629500000000000e-01 +-3.669400000000000e-01 +-4.883700000000000e-01 +-6.254300000000000e-01 +-7.674600000000000e-01 +-8.909100000000000e-01 +-9.632500000000001e-01 +-9.550600000000000e-01 +-8.542100000000000e-01 +-6.731500000000000e-01 +-4.443400000000000e-01 +-2.068300000000000e-01 + 7.762900000000000e-03 + 1.820400000000000e-01 + 3.110500000000000e-01 + 3.970500000000000e-01 + 4.468700000000000e-01 + 4.736600000000000e-01 + 4.984400000000000e-01 + 5.455000000000000e-01 + 6.304800000000000e-01 + 7.476800000000000e-01 + 8.667500000000000e-01 + 9.446000000000000e-01 + 9.477300000000000e-01 + 8.717500000000000e-01 + 7.449100000000000e-01 + 6.118100000000000e-01 + 5.069800000000000e-01 + 4.348100000000000e-01 + 3.686700000000000e-01 + 2.689900000000000e-01 + 1.080500000000000e-01 +-1.145400000000000e-01 +-3.740200000000000e-01 +-6.363900000000000e-01 +-8.751000000000000e-01 +-1.077300000000000e+00 +-1.237900000000000e+00 +-1.348600000000000e+00 +-1.394400000000000e+00 +-1.360000000000000e+00 +-1.242300000000000e+00 +-1.058300000000000e+00 +-8.399200000000000e-01 +-6.184400000000000e-01 +-4.093700000000000e-01 +-2.076200000000000e-01 + 3.183100000000000e-03 + 2.342400000000000e-01 + 4.797200000000000e-01 + 7.175200000000000e-01 + 9.210000000000000e-01 + 1.072700000000000e+00 + 1.170000000000000e+00 + 1.220700000000000e+00 + 1.232900000000000e+00 + 1.208300000000000e+00 + 1.143900000000000e+00 + 1.038900000000000e+00 + 8.994200000000000e-01 + 7.366300000000000e-01 + 5.590800000000000e-01 + 3.664200000000000e-01 + 1.510500000000000e-01 +-9.189500000000000e-02 +-3.535000000000000e-01 +-6.076900000000000e-01 +-8.198400000000000e-01 +-9.626100000000000e-01 +-1.028800000000000e+00 +-1.032900000000000e+00 +-9.999300000000000e-01 +-9.502400000000000e-01 +-8.890800000000000e-01 +-8.081800000000000e-01 +-6.964500000000000e-01 +-5.517900000000000e-01 +-3.859800000000000e-01 +-2.199700000000000e-01 +-7.355700000000000e-02 + 4.355300000000000e-02 + 1.340300000000000e-01 + 2.082400000000000e-01 + 2.763200000000000e-01 + 3.418600000000000e-01 + 4.000400000000000e-01 + 4.404500000000000e-01 + 4.525500000000000e-01 + 4.317900000000000e-01 + 3.841700000000000e-01 + 3.278600000000000e-01 + 2.902500000000000e-01 + 2.998000000000000e-01 + 3.744900000000000e-01 + 5.109100000000000e-01 + 6.795900000000000e-01 + 8.307099999999999e-01 + 9.094700000000000e-01 + 8.757100000000000e-01 + 7.190100000000000e-01 + 4.622200000000000e-01 + 1.516700000000000e-01 +-1.608200000000000e-01 +-4.353400000000000e-01 +-6.526800000000000e-01 +-8.121500000000000e-01 +-9.218100000000000e-01 +-9.887200000000000e-01 +-1.014600000000000e+00 +-9.983800000000000e-01 +-9.408900000000000e-01 +-8.482700000000000e-01 +-7.300300000000000e-01 +-5.945700000000000e-01 +-4.462000000000000e-01 +-2.865400000000000e-01 +-1.191900000000000e-01 + 4.639200000000000e-02 + 1.959500000000000e-01 + 3.163600000000000e-01 + 4.025100000000000e-01 + 4.601300000000000e-01 + 5.019800000000000e-01 + 5.400900000000000e-01 + 5.790400000000000e-01 + 6.144900000000000e-01 + 6.369300000000000e-01 + 6.373700000000000e-01 + 6.110400000000000e-01 + 5.582500000000000e-01 + 4.837600000000000e-01 + 3.969400000000000e-01 + 3.120100000000000e-01 + 2.462300000000000e-01 + 2.138300000000000e-01 + 2.178100000000000e-01 + 2.443800000000000e-01 + 2.654400000000000e-01 + 2.491600000000000e-01 + 1.733600000000000e-01 + 3.377500000000000e-02 +-1.571300000000000e-01 +-3.785700000000000e-01 +-6.098900000000000e-01 +-8.332200000000000e-01 +-1.030400000000000e+00 +-1.179600000000000e+00 +-1.257800000000000e+00 +-1.249500000000000e+00 +-1.155600000000000e+00 +-9.954100000000000e-01 +-7.979000000000001e-01 +-5.881600000000000e-01 +-3.775800000000000e-01 +-1.641900000000000e-01 + 5.825100000000000e-02 + 2.902000000000000e-01 + 5.227300000000000e-01 + 7.418000000000000e-01 + 9.350800000000000e-01 + 1.094900000000000e+00 + 1.215400000000000e+00 + 1.287300000000000e+00 + 1.297600000000000e+00 + 1.235100000000000e+00 + 1.098300000000000e+00 + 8.993900000000000e-01 + 6.599400000000000e-01 + 4.025400000000000e-01 + 1.448800000000000e-01 +-9.952400000000000e-02 +-3.163300000000000e-01 +-4.879000000000000e-01 +-5.984000000000000e-01 +-6.438900000000000e-01 +-6.392900000000000e-01 +-6.145500000000000e-01 +-6.004699999999999e-01 +-6.125900000000000e-01 +-6.439900000000000e-01 +-6.713200000000000e-01 +-6.687600000000000e-01 +-6.201300000000000e-01 +-5.219600000000000e-01 +-3.791200000000000e-01 +-2.002100000000000e-01 + 1.662900000000000e-03 + 2.042600000000000e-01 + 3.749000000000000e-01 + 4.782000000000000e-01 + 4.908800000000000e-01 + 4.138400000000000e-01 + 2.722400000000000e-01 + 1.023900000000000e-01 +-6.573800000000000e-02 +-2.180500000000000e-01 +-3.519000000000000e-01 +-4.630200000000000e-01 +-5.356900000000000e-01 +-5.452399999999999e-01 +-4.714200000000000e-01 +-3.122800000000000e-01 +-8.753900000000001e-02 + 1.710400000000000e-01 + 4.350000000000000e-01 + 6.887600000000000e-01 + 9.276100000000000e-01 + 1.147000000000000e+00 + 1.332700000000000e+00 + 1.459400000000000e+00 + 1.497600000000000e+00 + 1.424500000000000e+00 + 1.231900000000000e+00 + 9.280000000000000e-01 + 5.365900000000000e-01 + 9.359300000000000e-02 +-3.574000000000000e-01 +-7.728900000000000e-01 +-1.119900000000000e+00 +-1.384400000000000e+00 +-1.572600000000000e+00 +-1.700700000000000e+00 +-1.780200000000000e+00 +-1.807400000000000e+00 +-1.764400000000000e+00 +-1.632000000000000e+00 +-1.404500000000000e+00 +-1.096800000000000e+00 +-7.386000000000000e-01 +-3.614200000000000e-01 + 1.212200000000000e-02 + 3.694800000000000e-01 + 7.022600000000000e-01 + 1.000400000000000e+00 + 1.253000000000000e+00 + 1.453800000000000e+00 + 1.605500000000000e+00 + 1.715400000000000e+00 + 1.784600000000000e+00 + 1.799000000000000e+00 + 1.731800000000000e+00 + 1.558300000000000e+00 + 1.274300000000000e+00 + 9.046100000000000e-01 + 4.958500000000000e-01 + 9.591100000000000e-02 +-2.650700000000000e-01 +-5.811400000000000e-01 +-8.613800000000000e-01 +-1.113200000000000e+00 +-1.330000000000000e+00 +-1.491000000000000e+00 +-1.570700000000000e+00 +-1.552000000000000e+00 +-1.433600000000000e+00 +-1.230800000000000e+00 +-9.709400000000000e-01 +-6.882700000000000e-01 +-4.176700000000000e-01 +-1.885800000000000e-01 +-1.828700000000000e-02 + 9.261700000000000e-02 + 1.593400000000000e-01 + 2.056700000000000e-01 + 2.538200000000000e-01 + 3.169000000000000e-01 + 3.978200000000000e-01 + 4.934400000000000e-01 + 5.988800000000000e-01 + 7.081300000000000e-01 + 8.110300000000000e-01 + 8.914200000000000e-01 + 9.307500000000000e-01 + 9.166400000000000e-01 + 8.503700000000000e-01 + 7.468200000000000e-01 + 6.251000000000000e-01 + 4.960800000000000e-01 + 3.557800000000000e-01 + 1.907000000000000e-01 +-8.247900000000001e-03 +-2.328800000000000e-01 +-4.558700000000000e-01 +-6.421600000000000e-01 +-7.664000000000000e-01 +-8.249900000000000e-01 +-8.348300000000000e-01 +-8.200499999999999e-01 +-7.959800000000000e-01 +-7.611100000000000e-01 +-7.016400000000000e-01 +-6.051900000000000e-01 +-4.737300000000000e-01 +-3.271300000000000e-01 +-1.945600000000000e-01 +-9.879200000000000e-02 +-4.285600000000000e-02 +-7.233300000000000e-03 + 4.011200000000000e-02 + 1.260600000000000e-01 + 2.568900000000000e-01 + 4.140000000000000e-01 + 5.636900000000000e-01 + 6.751400000000000e-01 + 7.358600000000000e-01 + 7.546900000000000e-01 + 7.505900000000000e-01 + 7.349800000000000e-01 + 7.002400000000000e-01 + 6.235400000000000e-01 + 4.841100000000000e-01 + 2.826400000000000e-01 + 4.860400000000000e-02 +-1.705600000000000e-01 +-3.319600000000000e-01 +-4.167600000000000e-01 +-4.340500000000000e-01 +-4.079700000000000e-01 +-3.589900000000000e-01 +-2.937500000000000e-01 +-2.103400000000000e-01 +-1.131000000000000e-01 +-2.298000000000000e-02 + 2.704700000000000e-02 + 9.938900000000001e-03 +-7.707100000000000e-02 +-2.081100000000000e-01 +-3.427100000000000e-01 +-4.488000000000000e-01 +-5.180200000000000e-01 +-5.624100000000000e-01 +-5.955500000000000e-01 +-6.130400000000000e-01 +-5.883800000000000e-01 +-4.889300000000000e-01 +-3.014700000000000e-01 +-4.941200000000000e-02 + 2.115300000000000e-01 + 4.178000000000000e-01 + 5.281000000000000e-01 + 5.410800000000000e-01 + 4.913200000000000e-01 + 4.279900000000000e-01 + 3.903800000000000e-01 + 3.941700000000000e-01 + 4.332600000000000e-01 + 4.916500000000000e-01 + 5.546100000000000e-01 + 6.119100000000000e-01 + 6.534400000000000e-01 + 6.640400000000000e-01 + 6.243800000000000e-01 + 5.194000000000000e-01 + 3.491600000000000e-01 + 1.339100000000000e-01 +-9.147700000000000e-02 +-2.915600000000000e-01 +-4.450300000000000e-01 +-5.511800000000000e-01 +-6.247300000000000e-01 +-6.826800000000000e-01 +-7.319400000000000e-01 +-7.652900000000000e-01 +-7.674500000000000e-01 +-7.262000000000000e-01 +-6.408300000000000e-01 +-5.224500000000000e-01 +-3.872700000000000e-01 +-2.483000000000000e-01 +-1.115600000000000e-01 + 2.125300000000000e-02 + 1.470600000000000e-01 + 2.577800000000000e-01 + 3.419100000000000e-01 + 3.899100000000000e-01 + 3.987900000000000e-01 + 3.726700000000000e-01 + 3.195900000000000e-01 + 2.481200000000000e-01 + 1.671200000000000e-01 + 8.815600000000000e-02 + 2.707600000000000e-02 + 8.456200000000001e-04 + 1.980800000000000e-02 + 8.011900000000000e-02 + 1.625000000000000e-01 + 2.398200000000000e-01 + 2.898500000000000e-01 + 3.051600000000000e-01 + 2.939400000000000e-01 + 2.712600000000000e-01 + 2.471500000000000e-01 + 2.196200000000000e-01 + 1.771900000000000e-01 + 1.084600000000000e-01 + 1.167200000000000e-02 +-1.021000000000000e-01 +-2.138300000000000e-01 +-3.053800000000000e-01 +-3.661600000000000e-01 +-3.940300000000000e-01 +-3.911400000000000e-01 +-3.592000000000000e-01 +-2.982200000000000e-01 +-2.097200000000000e-01 +-1.018000000000000e-01 + 8.371999999999999e-03 + 9.751000000000000e-02 + 1.443500000000000e-01 + 1.391300000000000e-01 + 8.932900000000001e-02 + 1.799400000000000e-02 +-4.532200000000000e-02 +-7.693400000000000e-02 +-6.857099999999999e-02 +-2.931400000000000e-02 + 2.068500000000000e-02 + 6.056700000000000e-02 + 7.709000000000001e-02 + 6.681300000000000e-02 + 3.279800000000000e-02 +-1.968800000000000e-02 +-8.416400000000000e-02 +-1.503300000000000e-01 +-2.020500000000000e-01 +-2.206800000000000e-01 +-1.944600000000000e-01 +-1.280500000000000e-01 +-4.451700000000000e-02 + 2.451900000000000e-02 + 5.580800000000000e-02 + 4.779500000000000e-02 + 2.089400000000000e-02 + 4.112100000000000e-03 + 1.728700000000000e-02 + 6.135200000000000e-02 + 1.228000000000000e-01 + 1.875500000000000e-01 + 2.523000000000000e-01 + 3.242700000000000e-01 + 4.098800000000000e-01 + 5.025500000000001e-01 + 5.802700000000000e-01 + 6.155800000000000e-01 + 5.901900000000000e-01 + 5.029400000000001e-01 + 3.655200000000000e-01 + 1.911200000000000e-01 +-1.312700000000000e-02 +-2.428900000000000e-01 +-4.856300000000000e-01 +-7.127000000000000e-01 +-8.839800000000000e-01 +-9.642200000000000e-01 +-9.403800000000000e-01 +-8.274700000000000e-01 +-6.589400000000000e-01 +-4.689000000000000e-01 +-2.792400000000000e-01 +-9.917800000000000e-02 + 6.548500000000000e-02 + 2.041500000000000e-01 + 3.026600000000000e-01 + 3.532100000000000e-01 + 3.636600000000000e-01 + 3.566800000000000e-01 + 3.573400000000000e-01 + 3.771200000000000e-01 + 4.059300000000000e-01 + 4.175300000000000e-01 + 3.846700000000000e-01 + 2.935800000000000e-01 + 1.498800000000000e-01 +-2.536700000000000e-02 +-2.042600000000000e-01 +-3.591800000000000e-01 +-4.664900000000000e-01 +-5.085700000000000e-01 +-4.766500000000000e-01 +-3.741800000000000e-01 +-2.176700000000000e-01 +-3.295100000000000e-02 + 1.517800000000000e-01 + 3.123400000000000e-01 + 4.311100000000000e-01 + 4.964000000000000e-01 + 5.018300000000000e-01 + 4.482400000000000e-01 + 3.467400000000000e-01 + 2.189900000000000e-01 + 9.190600000000000e-02 +-1.118500000000000e-02 +-7.738600000000000e-02 +-1.047100000000000e-01 +-9.706800000000000e-02 +-5.930000000000000e-02 + 2.642800000000000e-03 + 7.696300000000000e-02 + 1.428300000000000e-01 + 1.748800000000000e-01 + 1.550300000000000e-01 + 8.369900000000000e-02 +-1.903500000000000e-02 +-1.250200000000000e-01 +-2.148800000000000e-01 +-2.879000000000000e-01 +-3.576800000000000e-01 +-4.374600000000000e-01 +-5.272500000000000e-01 +-6.125100000000000e-01 +-6.744599999999999e-01 +-7.016200000000000e-01 +-6.921800000000000e-01 +-6.459500000000000e-01 +-5.551600000000000e-01 +-4.057800000000000e-01 +-1.913900000000000e-01 + 7.089100000000000e-02 + 3.378600000000000e-01 + 5.577000000000000e-01 + 6.978600000000000e-01 + 7.634200000000000e-01 + 7.909600000000000e-01 + 8.205900000000000e-01 + 8.658400000000001e-01 + 9.033400000000000e-01 + 8.901500000000000e-01 + 7.961100000000000e-01 + 6.276300000000000e-01 + 4.262000000000000e-01 + 2.435000000000000e-01 + 1.116700000000000e-01 + 2.876800000000000e-02 +-3.300000000000000e-02 +-1.054700000000000e-01 +-2.059100000000000e-01 +-3.326200000000000e-01 +-4.732500000000000e-01 +-6.150099999999999e-01 +-7.477700000000000e-01 +-8.596800000000000e-01 +-9.327100000000000e-01 +-9.454200000000000e-01 +-8.829700000000000e-01 +-7.471100000000001e-01 +-5.577200000000000e-01 +-3.438700000000000e-01 +-1.305400000000000e-01 + 6.951200000000000e-02 + 2.533400000000000e-01 + 4.176700000000000e-01 + 5.498300000000000e-01 + 6.275700000000000e-01 + 6.293200000000000e-01 + 5.486500000000000e-01 + 4.033100000000000e-01 + 2.321600000000000e-01 + 8.028200000000001e-02 +-2.035000000000000e-02 +-6.390700000000001e-02 +-7.004100000000001e-02 +-6.936600000000000e-02 +-8.320500000000000e-02 +-1.097400000000000e-01 +-1.254200000000000e-01 +-1.014000000000000e-01 +-2.460800000000000e-02 + 9.052200000000001e-02 + 2.082300000000000e-01 + 2.919300000000000e-01 + 3.253100000000000e-01 + 3.192500000000000e-01 + 3.001100000000000e-01 + 2.880500000000000e-01 + 2.817900000000000e-01 + 2.611700000000000e-01 + 2.050000000000000e-01 + 1.103000000000000e-01 +-2.265200000000000e-03 +-1.009700000000000e-01 +-1.638900000000000e-01 +-1.922800000000000e-01 +-2.066500000000000e-01 +-2.293800000000000e-01 +-2.674300000000000e-01 +-3.076700000000000e-01 +-3.272400000000000e-01 +-3.100900000000000e-01 +-2.580600000000000e-01 +-1.901500000000000e-01 +-1.330000000000000e-01 +-1.098000000000000e-01 +-1.329900000000000e-01 +-2.013100000000000e-01 +-2.990700000000000e-01 +-3.977900000000000e-01 +-4.623900000000000e-01 +-4.631800000000000e-01 +-3.892700000000000e-01 +-2.547500000000000e-01 +-9.142000000000000e-02 + 6.934800000000001e-02 + 2.134100000000000e-01 + 3.467800000000000e-01 + 4.818100000000000e-01 + 6.171800000000000e-01 + 7.284100000000000e-01 + 7.782300000000000e-01 + 7.405100000000000e-01 + 6.200599999999999e-01 + 4.527800000000000e-01 + 2.857200000000000e-01 + 1.517300000000000e-01 + 5.713000000000000e-02 +-1.034300000000000e-02 +-6.242900000000000e-02 +-9.727500000000000e-02 +-1.029900000000000e-01 +-7.316200000000000e-02 +-1.906100000000000e-02 + 3.354400000000000e-02 + 6.127600000000000e-02 + 5.943000000000000e-02 + 4.324000000000000e-02 + 3.208200000000000e-02 + 2.917800000000000e-02 + 1.371600000000000e-02 +-4.716100000000000e-02 +-1.745900000000000e-01 +-3.596300000000000e-01 +-5.633400000000000e-01 +-7.346300000000000e-01 +-8.335399999999999e-01 +-8.456200000000000e-01 +-7.816100000000000e-01 +-6.665000000000000e-01 +-5.271500000000000e-01 +-3.843200000000000e-01 +-2.498700000000000e-01 +-1.266300000000000e-01 +-1.019800000000000e-02 + 1.065800000000000e-01 + 2.265600000000000e-01 + 3.423400000000000e-01 + 4.370200000000000e-01 + 4.933800000000000e-01 + 5.065900000000000e-01 + 4.906000000000000e-01 + 4.719200000000000e-01 + 4.738600000000000e-01 + 5.024400000000000e-01 + 5.449300000000000e-01 + 5.822100000000000e-01 + 6.047000000000000e-01 + 6.186500000000000e-01 + 6.370200000000000e-01 + 6.624100000000001e-01 + 6.765700000000000e-01 + 6.460800000000000e-01 + 5.411200000000000e-01 + 3.535400000000000e-01 + 1.012500000000000e-01 +-1.832300000000000e-01 +-4.698300000000000e-01 +-7.405000000000000e-01 +-9.856300000000000e-01 +-1.193300000000000e+00 +-1.342500000000000e+00 +-1.408600000000000e+00 +-1.374700000000000e+00 +-1.242900000000000e+00 +-1.033300000000000e+00 +-7.751700000000000e-01 +-4.952000000000000e-01 +-2.129500000000000e-01 + 5.717100000000000e-02 + 3.016100000000000e-01 + 5.069700000000000e-01 + 6.635500000000000e-01 + 7.686500000000001e-01 + 8.253100000000000e-01 + 8.369900000000000e-01 + 8.039400000000000e-01 + 7.259100000000001e-01 + 6.099400000000000e-01 + 4.762700000000000e-01 + 3.547800000000000e-01 + 2.721300000000000e-01 + 2.371700000000000e-01 + 2.355100000000000e-01 + 2.376600000000000e-01 + 2.157800000000000e-01 + 1.579300000000000e-01 + 7.118099999999999e-02 +-2.690800000000000e-02 +-1.208500000000000e-01 +-2.052300000000000e-01 +-2.841000000000000e-01 +-3.644100000000000e-01 +-4.488800000000000e-01 +-5.323400000000000e-01 +-6.021500000000000e-01 +-6.413900000000000e-01 +-6.336900000000000e-01 +-5.692700000000001e-01 +-4.501500000000000e-01 +-2.917300000000000e-01 +-1.178900000000000e-01 + 4.882000000000000e-02 + 1.961500000000000e-01 + 3.237300000000000e-01 + 4.355000000000000e-01 + 5.289900000000000e-01 + 5.907000000000000e-01 + 6.027500000000000e-01 + 5.566800000000000e-01 + 4.633200000000000e-01 + 3.496800000000000e-01 + 2.438700000000000e-01 + 1.586600000000000e-01 + 8.629000000000001e-02 + 7.783200000000000e-03 +-9.083300000000000e-02 +-2.082100000000000e-01 +-3.300100000000000e-01 +-4.394400000000000e-01 +-5.254700000000000e-01 +-5.817900000000000e-01 +-6.002000000000000e-01 +-5.683700000000000e-01 +-4.777600000000000e-01 +-3.366200000000000e-01 +-1.748800000000000e-01 +-3.237700000000000e-02 + 6.419000000000000e-02 + 1.185900000000000e-01 + 1.611000000000000e-01 + 2.239100000000000e-01 + 3.137300000000000e-01 + 4.038500000000000e-01 + 4.534900000000000e-01 + 4.403600000000000e-01 + 3.808600000000000e-01 + 3.208300000000000e-01 + 3.029100000000000e-01 + 3.353700000000000e-01 + 3.863800000000000e-01 + 4.077300000000000e-01 + 3.687600000000000e-01 + 2.742000000000000e-01 + 1.533900000000000e-01 + 3.201700000000000e-02 +-8.891100000000000e-02 +-2.290800000000000e-01 +-4.038600000000000e-01 +-5.997700000000000e-01 +-7.718100000000000e-01 +-8.659400000000000e-01 +-8.503700000000000e-01 +-7.327000000000000e-01 +-5.519400000000000e-01 +-3.537500000000000e-01 +-1.682400000000000e-01 +-4.669900000000000e-03 + 1.378400000000000e-01 + 2.567400000000000e-01 + 3.422100000000000e-01 + 3.848500000000000e-01 + 3.859500000000000e-01 + 3.600300000000000e-01 + 3.269900000000000e-01 + 3.010400000000000e-01 + 2.855300000000000e-01 + 2.766500000000000e-01 + 2.711700000000000e-01 + 2.698900000000000e-01 + 2.739500000000000e-01 + 2.779900000000000e-01 + 2.674100000000000e-01 + 2.234600000000000e-01 + 1.332500000000000e-01 +-1.806400000000000e-03 +-1.635500000000000e-01 +-3.208600000000000e-01 +-4.368300000000000e-01 +-4.779300000000000e-01 +-4.247300000000000e-01 +-2.830200000000000e-01 +-8.956900000000000e-02 + 9.466600000000000e-02 + 2.066300000000000e-01 + 2.103100000000000e-01 + 1.164300000000000e-01 +-2.205300000000000e-02 +-1.390100000000000e-01 +-1.925300000000000e-01 +-1.865200000000000e-01 +-1.623800000000000e-01 +-1.666400000000000e-01 +-2.173800000000000e-01 +-2.924700000000000e-01 +-3.465300000000000e-01 +-3.427900000000000e-01 +-2.766400000000000e-01 +-1.754500000000000e-01 +-7.757900000000000e-02 +-7.633300000000000e-03 + 3.515200000000000e-02 + 7.054600000000000e-02 + 1.217400000000000e-01 + 2.033300000000000e-01 + 3.187800000000000e-01 + 4.636800000000000e-01 + 6.271099999999999e-01 + 7.885200000000000e-01 + 9.152300000000000e-01 + 9.676800000000000e-01 + 9.139400000000000e-01 + 7.455400000000000e-01 + 4.839000000000000e-01 + 1.718500000000000e-01 +-1.442000000000000e-01 +-4.296900000000000e-01 +-6.658600000000000e-01 +-8.432600000000000e-01 +-9.535800000000000e-01 +-9.883700000000000e-01 +-9.454900000000001e-01 +-8.358100000000001e-01 +-6.820800000000000e-01 +-5.089800000000000e-01 +-3.318500000000000e-01 +-1.538100000000000e-01 + 2.579700000000000e-02 + 1.985500000000000e-01 + 3.414500000000000e-01 + 4.251800000000000e-01 + 4.317300000000000e-01 + 3.685300000000000e-01 + 2.679600000000000e-01 + 1.711000000000000e-01 + 1.062700000000000e-01 + 7.639700000000001e-02 + 6.319500000000000e-02 + 4.428400000000000e-02 + 1.090900000000000e-02 +-2.566700000000000e-02 +-4.261400000000000e-02 +-2.224100000000000e-02 + 3.467700000000000e-02 + 1.076700000000000e-01 + 1.679600000000000e-01 + 1.950200000000000e-01 + 1.878500000000000e-01 + 1.642400000000000e-01 + 1.486500000000000e-01 + 1.563000000000000e-01 + 1.835400000000000e-01 + 2.105200000000000e-01 + 2.146900000000000e-01 + 1.861900000000000e-01 + 1.350300000000000e-01 + 8.454200000000001e-02 + 5.526100000000000e-02 + 5.012800000000000e-02 + 5.149700000000000e-02 + 3.247500000000000e-02 +-2.517200000000000e-02 +-1.192600000000000e-01 +-2.298200000000000e-01 +-3.338100000000000e-01 +-4.201400000000000e-01 +-4.934000000000000e-01 +-5.633500000000000e-01 +-6.288400000000000e-01 +-6.699900000000000e-01 +-6.563400000000000e-01 +-5.667300000000000e-01 +-4.068700000000000e-01 +-2.113600000000000e-01 +-2.788100000000000e-02 + 1.068500000000000e-01 + 1.838100000000000e-01 + 2.214900000000000e-01 + 2.508500000000000e-01 + 2.965600000000000e-01 + 3.662000000000000e-01 + 4.516900000000000e-01 + 5.383300000000000e-01 + 6.131500000000000e-01 + 6.672200000000000e-01 + 6.930500000000001e-01 + 6.819300000000000e-01 + 6.254100000000000e-01 + 5.203300000000000e-01 + 3.737100000000000e-01 + 2.033700000000000e-01 + 3.313300000000000e-02 +-1.147900000000000e-01 +-2.265900000000000e-01 +-2.999700000000000e-01 +-3.425000000000000e-01 +-3.665900000000000e-01 +-3.830800000000000e-01 +-3.962500000000000e-01 +-4.029300000000000e-01 +-3.965800000000000e-01 +-3.743900000000000e-01 +-3.428500000000000e-01 +-3.169800000000000e-01 +-3.123900000000000e-01 +-3.341800000000000e-01 +-3.708200000000000e-01 +-3.981300000000000e-01 +-3.923200000000000e-01 +-3.436800000000000e-01 +-2.612600000000000e-01 +-1.648500000000000e-01 +-6.979700000000000e-02 + 2.405500000000000e-02 + 1.307500000000000e-01 + 2.645000000000000e-01 + 4.238100000000000e-01 + 5.853100000000000e-01 + 7.125000000000000e-01 + 7.738500000000000e-01 + 7.586800000000000e-01 + 6.806700000000000e-01 + 5.680600000000000e-01 + 4.480600000000000e-01 + 3.354700000000000e-01 + 2.314200000000000e-01 + 1.302600000000000e-01 + 2.829700000000000e-02 +-7.155100000000000e-02 +-1.611200000000000e-01 +-2.319400000000000e-01 +-2.802500000000000e-01 +-3.095800000000000e-01 +-3.299700000000000e-01 +-3.541200000000000e-01 +-3.910500000000000e-01 +-4.396000000000000e-01 +-4.852900000000000e-01 +-5.042300000000000e-01 +-4.744800000000000e-01 +-3.896900000000000e-01 +-2.667200000000000e-01 +-1.405900000000000e-01 +-4.748200000000000e-02 +-5.207900000000000e-03 +-3.318200000000000e-03 +-9.906000000000000e-03 + 8.672200000000000e-03 + 6.755400000000000e-02 + 1.553700000000000e-01 + 2.428700000000000e-01 + 3.015200000000000e-01 + 3.194400000000000e-01 + 3.051100000000000e-01 + 2.785200000000000e-01 + 2.575400000000000e-01 + 2.493300000000000e-01 + 2.508800000000000e-01 + 2.559900000000000e-01 + 2.617200000000000e-01 + 2.694500000000000e-01 + 2.805700000000000e-01 + 2.910600000000000e-01 + 2.893300000000000e-01 + 2.589600000000000e-01 + 1.849000000000000e-01 + 6.018800000000000e-02 +-1.093000000000000e-01 +-3.036500000000000e-01 +-4.921500000000000e-01 +-6.411200000000000e-01 +-7.241300000000001e-01 +-7.308000000000000e-01 +-6.692000000000000e-01 +-5.601200000000000e-01 +-4.260000000000000e-01 +-2.816900000000000e-01 +-1.329600000000000e-01 + 1.691500000000000e-02 + 1.586100000000000e-01 + 2.746300000000000e-01 + 3.470300000000000e-01 + 3.699800000000000e-01 + 3.570600000000000e-01 + 3.357400000000000e-01 + 3.308600000000000e-01 + 3.480700000000000e-01 + 3.691900000000000e-01 + 3.637000000000000e-01 + 3.089600000000000e-01 + 2.053000000000000e-01 + 7.587500000000000e-02 +-4.779400000000000e-02 +-1.437400000000000e-01 +-2.086100000000000e-01 +-2.528600000000000e-01 +-2.874600000000000e-01 +-3.125700000000000e-01 +-3.156400000000000e-01 +-2.787400000000000e-01 +-1.888100000000000e-01 +-4.487100000000000e-02 + 1.397800000000000e-01 + 3.384300000000000e-01 + 5.134400000000000e-01 + 6.214499999999999e-01 + 6.238500000000000e-01 + 5.010100000000000e-01 + 2.639600000000000e-01 +-4.529100000000000e-02 +-3.678700000000000e-01 +-6.501000000000000e-01 +-8.602500000000000e-01 +-9.896500000000000e-01 +-1.039300000000000e+00 +-1.004700000000000e+00 +-8.725400000000000e-01 +-6.347699999999999e-01 +-3.078900000000000e-01 + 5.914000000000000e-02 + 3.993600000000000e-01 + 6.580700000000000e-01 + 8.190200000000000e-01 + 9.074700000000000e-01 + 9.673000000000000e-01 + 1.027800000000000e+00 + 1.083600000000000e+00 + 1.101100000000000e+00 + 1.044300000000000e+00 + 9.002599999999999e-01 + 6.846000000000000e-01 + 4.261400000000000e-01 + 1.446700000000000e-01 +-1.581700000000000e-01 +-4.874600000000000e-01 +-8.333000000000000e-01 +-1.158000000000000e+00 +-1.404900000000000e+00 +-1.524000000000000e+00 +-1.497200000000000e+00 +-1.344900000000000e+00 +-1.111000000000000e+00 +-8.389600000000000e-01 +-5.547400000000000e-01 +-2.681800000000000e-01 + 1.456300000000000e-02 + 2.798900000000000e-01 + 5.072600000000000e-01 + 6.796500000000000e-01 + 7.935100000000000e-01 + 8.588100000000000e-01 + 8.890700000000000e-01 + 8.904600000000000e-01 + 8.592900000000000e-01 + 7.897300000000000e-01 + 6.839200000000000e-01 + 5.546500000000000e-01 + 4.177000000000000e-01 + 2.804500000000000e-01 + 1.374200000000000e-01 +-2.211000000000000e-02 +-1.998500000000000e-01 +-3.790900000000000e-01 +-5.285600000000000e-01 +-6.176300000000000e-01 +-6.318200000000000e-01 +-5.777400000000000e-01 +-4.750600000000000e-01 +-3.431300000000000e-01 +-1.931300000000000e-01 +-3.105900000000000e-02 + 1.331300000000000e-01 + 2.798900000000000e-01 + 3.841700000000000e-01 + 4.268700000000000e-01 + 4.044700000000000e-01 + 3.291300000000000e-01 + 2.191900000000000e-01 + 8.803100000000000e-02 +-6.012500000000000e-02 +-2.243900000000000e-01 +-3.971900000000000e-01 +-5.587800000000001e-01 +-6.816400000000000e-01 +-7.416800000000000e-01 +-7.284100000000000e-01 +-6.474500000000000e-01 +-5.147900000000000e-01 +-3.485300000000000e-01 +-1.640400000000000e-01 + 2.519100000000000e-02 + 2.047400000000000e-01 + 3.590900000000000e-01 + 4.761700000000000e-01 + 5.531800000000000e-01 + 5.987100000000000e-01 + 6.280600000000000e-01 + 6.540899999999999e-01 + 6.792200000000000e-01 + 6.938000000000000e-01 + 6.813600000000000e-01 + 6.272200000000000e-01 + 5.253800000000000e-01 + 3.805000000000000e-01 + 2.056800000000000e-01 + 1.866900000000000e-02 +-1.612900000000000e-01 +-3.155700000000000e-01 +-4.284800000000000e-01 +-4.907700000000000e-01 +-5.035500000000001e-01 +-4.803400000000000e-01 +-4.450300000000000e-01 +-4.250000000000000e-01 +-4.411200000000000e-01 +-4.981500000000000e-01 +-5.799299999999999e-01 +-6.524500000000000e-01 +-6.748400000000000e-01 +-6.151700000000000e-01 +-4.645000000000000e-01 +-2.424500000000000e-01 + 9.431800000000001e-03 + 2.444900000000000e-01 + 4.299000000000000e-01 + 5.580900000000000e-01 + 6.442000000000000e-01 + 7.109799999999999e-01 + 7.698400000000000e-01 + 8.096800000000000e-01 + 8.005000000000000e-01 + 7.103300000000000e-01 + 5.260500000000000e-01 + 2.660500000000000e-01 +-2.252100000000000e-02 +-2.807800000000000e-01 +-4.604000000000000e-01 +-5.402000000000000e-01 +-5.297100000000000e-01 +-4.598300000000000e-01 +-3.669800000000000e-01 +-2.792400000000000e-01 +-2.103100000000000e-01 +-1.619100000000000e-01 +-1.305600000000000e-01 +-1.134400000000000e-01 +-1.096700000000000e-01 +-1.173600000000000e-01 +-1.299300000000000e-01 +-1.351500000000000e-01 +-1.187700000000000e-01 +-7.059500000000000e-02 + 1.067000000000000e-02 + 1.169400000000000e-01 + 2.347600000000000e-01 + 3.507000000000000e-01 + 4.542400000000000e-01 + 5.364600000000000e-01 + 5.868800000000000e-01 + 5.924800000000000e-01 + 5.420500000000000e-01 + 4.342900000000000e-01 + 2.837800000000000e-01 + 1.189600000000000e-01 +-2.932300000000000e-02 +-1.430900000000000e-01 +-2.266600000000000e-01 +-3.028200000000000e-01 +-3.968800000000000e-01 +-5.179300000000000e-01 +-6.497500000000000e-01 +-7.580900000000000e-01 +-8.099400000000000e-01 +-7.921100000000000e-01 +-7.165300000000000e-01 +-6.089000000000000e-01 +-4.894300000000000e-01 +-3.601500000000000e-01 +-2.083100000000000e-01 +-2.322100000000000e-02 + 1.871500000000000e-01 + 3.936900000000000e-01 + 5.614700000000000e-01 + 6.722300000000000e-01 + 7.367300000000000e-01 + 7.860700000000000e-01 + 8.464800000000000e-01 + 9.153700000000000e-01 + 9.570900000000000e-01 + 9.231800000000000e-01 + 7.845299999999999e-01 + 5.531900000000000e-01 + 2.787200000000000e-01 + 2.149600000000000e-02 +-1.783000000000000e-01 +-3.153600000000000e-01 +-4.095500000000000e-01 +-4.821500000000000e-01 +-5.372800000000000e-01 +-5.623000000000000e-01 +-5.447600000000000e-01 +-4.902300000000000e-01 +-4.253800000000000e-01 +-3.833100000000000e-01 +-3.823900000000000e-01 +-4.153100000000000e-01 +-4.559700000000000e-01 +-4.781900000000000e-01 +-4.709900000000000e-01 +-4.397700000000000e-01 +-3.948500000000000e-01 +-3.391400000000000e-01 +-2.662700000000000e-01 +-1.700400000000000e-01 +-5.561500000000000e-02 + 5.898300000000000e-02 + 1.537900000000000e-01 + 2.217500000000000e-01 + 2.750000000000000e-01 + 3.369900000000000e-01 + 4.264300000000000e-01 + 5.457300000000000e-01 + 6.818900000000000e-01 + 8.167900000000000e-01 + 9.362300000000000e-01 + 1.029400000000000e+00 + 1.080600000000000e+00 + 1.065100000000000e+00 + 9.561400000000000e-01 + 7.431200000000000e-01 + 4.463600000000000e-01 + 1.147000000000000e-01 +-1.957900000000000e-01 +-4.487900000000000e-01 +-6.412700000000000e-01 +-7.938100000000000e-01 +-9.254100000000000e-01 +-1.033000000000000e+00 +-1.091700000000000e+00 +-1.075800000000000e+00 +-9.829300000000000e-01 +-8.427000000000000e-01 +-7.008200000000000e-01 +-5.916000000000000e-01 +-5.184900000000000e-01 +-4.565200000000000e-01 +-3.734300000000000e-01 +-2.526600000000000e-01 +-1.015100000000000e-01 + 5.879200000000000e-02 + 2.104600000000000e-01 + 3.490400000000000e-01 + 4.790600000000000e-01 + 6.017600000000000e-01 + 7.074300000000000e-01 + 7.798500000000000e-01 + 8.089300000000000e-01 + 8.000000000000000e-01 + 7.709500000000000e-01 + 7.389800000000000e-01 + 7.072900000000000e-01 + 6.627900000000000e-01 + 5.866900000000000e-01 + 4.700400000000000e-01 + 3.223000000000000e-01 + 1.671500000000000e-01 + 2.882400000000000e-02 +-8.083799999999999e-02 +-1.665500000000000e-01 +-2.434900000000000e-01 +-3.265500000000000e-01 +-4.220100000000000e-01 +-5.253700000000000e-01 +-6.243300000000001e-01 +-7.035700000000000e-01 +-7.492100000000000e-01 +-7.522600000000000e-01 +-7.116000000000000e-01 +-6.354600000000000e-01 +-5.398300000000000e-01 +-4.433200000000000e-01 +-3.600700000000000e-01 +-2.945700000000000e-01 +-2.411700000000000e-01 +-1.881600000000000e-01 +-1.234000000000000e-01 +-3.811400000000000e-02 + 7.253600000000000e-02 + 2.103500000000000e-01 + 3.735900000000000e-01 + 5.538700000000000e-01 + 7.321200000000000e-01 + 8.775400000000000e-01 + 9.527400000000000e-01 + 9.253800000000000e-01 + 7.825000000000000e-01 + 5.412300000000000e-01 + 2.495600000000000e-01 +-2.595600000000000e-02 +-2.224300000000000e-01 +-3.044700000000000e-01 +-2.780100000000000e-01 +-1.858500000000000e-01 +-8.552400000000000e-02 +-1.992400000000000e-02 + 2.904300000000000e-03 + 8.789099999999999e-03 + 3.524700000000000e-02 + 1.016100000000000e-01 + 1.905900000000000e-01 + 2.537000000000000e-01 + 2.378900000000000e-01 + 1.168100000000000e-01 +-9.235300000000000e-02 +-3.363500000000000e-01 +-5.517600000000000e-01 +-6.929400000000000e-01 +-7.466100000000000e-01 +-7.277900000000000e-01 +-6.637999999999999e-01 +-5.778400000000000e-01 +-4.809200000000000e-01 +-3.730200000000000e-01 +-2.493800000000000e-01 +-1.070900000000000e-01 + 5.030600000000000e-02 + 2.106100000000000e-01 + 3.540000000000000e-01 + 4.583300000000000e-01 + 5.084300000000000e-01 + 5.049300000000000e-01 + 4.662900000000000e-01 + 4.201800000000000e-01 + 3.880400000000000e-01 + 3.725900000000000e-01 + 3.579800000000000e-01 + 3.237100000000000e-01 + 2.627900000000000e-01 + 1.901300000000000e-01 + 1.338000000000000e-01 + 1.145500000000000e-01 + 1.285700000000000e-01 + 1.472600000000000e-01 + 1.349100000000000e-01 + 7.234800000000000e-02 +-3.071100000000000e-02 +-1.428300000000000e-01 +-2.317500000000000e-01 +-2.833900000000000e-01 +-3.058600000000000e-01 +-3.175800000000000e-01 +-3.305000000000000e-01 +-3.418200000000000e-01 +-3.393700000000000e-01 +-3.144700000000000e-01 +-2.704800000000000e-01 +-2.201600000000000e-01 +-1.749600000000000e-01 +-1.364500000000000e-01 +-9.778900000000000e-02 +-5.442900000000000e-02 +-1.433500000000000e-02 + 2.130100000000000e-03 +-2.505900000000000e-02 +-9.837799999999999e-02 +-1.938200000000000e-01 +-2.682800000000000e-01 +-2.803100000000000e-01 +-2.120900000000000e-01 +-7.872500000000000e-02 + 8.091200000000000e-02 + 2.264800000000000e-01 + 3.378700000000000e-01 + 4.233000000000000e-01 + 5.089800000000000e-01 + 6.170200000000000e-01 + 7.453800000000000e-01 + 8.625000000000000e-01 + 9.205400000000000e-01 + 8.799700000000000e-01 + 7.314300000000000e-01 + 5.022100000000000e-01 + 2.440000000000000e-01 + 8.993200000000000e-03 +-1.718800000000000e-01 +-2.976900000000000e-01 +-3.904100000000000e-01 +-4.782700000000000e-01 +-5.799600000000000e-01 +-6.969900000000000e-01 +-8.152700000000001e-01 +-9.122400000000001e-01 +-9.647200000000000e-01 +-9.553199999999999e-01 +-8.770900000000000e-01 +-7.363700000000000e-01 +-5.520900000000000e-01 +-3.503400000000000e-01 +-1.554900000000000e-01 + 1.758600000000000e-02 + 1.649000000000000e-01 + 2.875000000000000e-01 + 3.832700000000000e-01 + 4.439000000000000e-01 + 4.609700000000000e-01 + 4.370900000000000e-01 + 3.924500000000000e-01 + 3.595300000000000e-01 + 3.670100000000000e-01 + 4.234600000000000e-01 + 5.123900000000000e-01 + 6.024900000000000e-01 + 6.654300000000000e-01 + 6.880800000000000e-01 + 6.711900000000000e-01 + 6.179900000000000e-01 + 5.246100000000000e-01 + 3.825900000000000e-01 + 1.925100000000000e-01 +-2.315400000000000e-02 +-2.210100000000000e-01 +-3.549000000000000e-01 +-4.008800000000000e-01 +-3.722400000000000e-01 +-3.137100000000000e-01 +-2.780500000000000e-01 +-2.998000000000000e-01 +-3.815700000000000e-01 +-4.987600000000000e-01 +-6.163400000000000e-01 +-7.059500000000000e-01 +-7.540600000000000e-01 +-7.606600000000000e-01 +-7.329900000000000e-01 +-6.793700000000000e-01 +-6.051500000000000e-01 +-5.102100000000001e-01 +-3.882000000000000e-01 +-2.293700000000000e-01 +-2.778600000000000e-02 + 2.096800000000000e-01 + 4.587100000000000e-01 + 6.822700000000000e-01 + 8.440200000000000e-01 + 9.228400000000000e-01 + 9.194800000000000e-01 + 8.515700000000000e-01 + 7.415300000000000e-01 + 6.064000000000001e-01 + 4.562800000000000e-01 + 3.001300000000000e-01 + 1.518800000000000e-01 + 3.000300000000000e-02 +-4.972500000000000e-02 +-8.261100000000000e-02 +-7.771100000000000e-02 +-5.275200000000000e-02 +-2.534200000000000e-02 +-6.570300000000000e-03 + 2.699000000000000e-05 +-4.105500000000000e-03 +-1.500900000000000e-02 +-2.706900000000000e-02 +-3.401000000000000e-02 +-3.219300000000000e-02 +-2.525500000000000e-02 +-2.588900000000000e-02 +-5.123100000000000e-02 +-1.132500000000000e-01 +-2.105300000000000e-01 +-3.277300000000000e-01 +-4.435400000000000e-01 +-5.408200000000000e-01 +-6.112300000000001e-01 +-6.517900000000000e-01 +-6.583500000000000e-01 +-6.237500000000000e-01 +-5.436100000000000e-01 +-4.244300000000000e-01 +-2.849400000000000e-01 +-1.471400000000000e-01 +-2.294800000000000e-02 + 9.176800000000000e-02 + 2.095300000000000e-01 + 3.351600000000000e-01 + 4.552400000000000e-01 + 5.436200000000000e-01 + 5.799800000000001e-01 + 5.663800000000000e-01 + 5.269800000000000e-01 + 4.896900000000000e-01 + 4.646500000000000e-01 + 4.381900000000000e-01 + 3.885500000000000e-01 + 3.105400000000000e-01 + 2.272100000000000e-01 + 1.763500000000000e-01 + 1.809400000000000e-01 + 2.277100000000000e-01 + 2.730000000000000e-01 + 2.730800000000000e-01 + 2.152700000000000e-01 + 1.243700000000000e-01 + 3.858800000000000e-02 +-2.496300000000000e-02 +-8.579100000000001e-02 +-1.820500000000000e-01 +-3.329100000000000e-01 +-5.126900000000000e-01 +-6.604200000000000e-01 +-7.199100000000000e-01 +-6.801000000000000e-01 +-5.836000000000000e-01 +-4.955000000000000e-01 +-4.557900000000000e-01 +-4.517300000000000e-01 +-4.313800000000000e-01 +-3.475200000000000e-01 +-1.981200000000000e-01 +-3.266500000000000e-02 + 8.024500000000000e-02 + 9.980700000000001e-02 + 4.082000000000000e-02 +-3.576400000000000e-02 +-6.073100000000000e-02 + 3.939600000000000e-03 + 1.483400000000000e-01 + 3.264700000000000e-01 + 4.838500000000000e-01 + 5.818800000000000e-01 + 6.075800000000000e-01 + 5.698000000000000e-01 + 4.897900000000000e-01 + 3.926800000000000e-01 + 3.012200000000000e-01 + 2.304200000000000e-01 + 1.836300000000000e-01 + 1.528500000000000e-01 + 1.250800000000000e-01 + 9.183500000000000e-02 + 5.540800000000000e-02 + 2.695300000000000e-02 + 1.751500000000000e-02 + 2.900400000000000e-02 + 5.203300000000000e-02 + 7.182800000000000e-02 + 7.677800000000000e-02 + 6.256900000000000e-02 + 2.947200000000000e-02 +-2.316300000000000e-02 +-9.881900000000000e-02 +-1.995900000000000e-01 +-3.196400000000000e-01 +-4.430500000000000e-01 +-5.492800000000000e-01 +-6.228800000000000e-01 +-6.600800000000000e-01 +-6.672200000000000e-01 +-6.527700000000000e-01 +-6.196800000000000e-01 +-5.639999999999999e-01 +-4.802400000000000e-01 +-3.680500000000000e-01 +-2.347200000000000e-01 +-9.169300000000000e-02 + 5.128700000000000e-02 + 1.894200000000000e-01 + 3.217700000000000e-01 + 4.479400000000000e-01 + 5.661600000000000e-01 + 6.737500000000000e-01 + 7.680000000000000e-01 + 8.451000000000000e-01 + 8.974500000000000e-01 + 9.127700000000000e-01 + 8.780800000000000e-01 + 7.874700000000000e-01 + 6.483300000000000e-01 + 4.805000000000000e-01 + 3.077100000000000e-01 + 1.466100000000000e-01 + 9.659100000000001e-04 +-1.354000000000000e-01 +-2.699800000000000e-01 +-4.044200000000000e-01 +-5.338900000000000e-01 +-6.519600000000000e-01 +-7.551700000000000e-01 +-8.423800000000000e-01 +-9.094000000000000e-01 +-9.441900000000000e-01 +-9.283800000000000e-01 +-8.454199999999999e-01 +-6.906200000000000e-01 +-4.764400000000000e-01 +-2.303400000000000e-01 + 1.267500000000000e-02 + 2.184000000000000e-01 + 3.600000000000000e-01 + 4.233700000000000e-01 + 4.122100000000000e-01 + 3.508800000000000e-01 + 2.804700000000000e-01 + 2.452500000000000e-01 + 2.733000000000000e-01 + 3.614800000000000e-01 + 4.753500000000000e-01 + 5.660600000000000e-01 + 5.953700000000000e-01 + 5.534500000000000e-01 + 4.588500000000000e-01 + 3.423600000000000e-01 + 2.273700000000000e-01 + 1.207300000000000e-01 + 1.881100000000000e-02 +-7.866700000000000e-02 +-1.600700000000000e-01 +-2.062400000000000e-01 +-2.041800000000000e-01 +-1.586100000000000e-01 +-9.182600000000000e-02 +-3.187800000000000e-02 + 1.349400000000000e-03 + 1.745400000000000e-03 +-2.864300000000000e-02 +-8.956200000000000e-02 +-1.864700000000000e-01 +-3.236800000000000e-01 +-4.919700000000000e-01 +-6.617200000000000e-01 +-7.893600000000000e-01 +-8.349800000000001e-01 +-7.801300000000000e-01 +-6.342400000000000e-01 +-4.260900000000000e-01 +-1.872000000000000e-01 + 6.101500000000000e-02 + 3.083200000000000e-01 + 5.464900000000000e-01 + 7.590600000000000e-01 + 9.192900000000001e-01 + 9.989600000000000e-01 + 9.819800000000000e-01 + 8.734700000000000e-01 + 6.980700000000000e-01 + 4.894100000000000e-01 + 2.778900000000000e-01 + 8.437100000000000e-02 +-7.857699999999999e-02 +-2.020300000000000e-01 +-2.790000000000000e-01 +-3.082700000000000e-01 +-3.002400000000000e-01 +-2.779900000000000e-01 +-2.694100000000000e-01 +-2.930200000000000e-01 +-3.463700000000000e-01 +-4.055300000000000e-01 +-4.378700000000000e-01 +-4.206900000000000e-01 +-3.540300000000000e-01 +-2.593400000000000e-01 +-1.653200000000000e-01 +-9.114200000000000e-02 +-3.864900000000000e-02 + 1.865700000000000e-03 + 3.823400000000000e-02 + 6.690500000000001e-02 + 7.559700000000000e-02 + 5.635600000000000e-02 + 1.839200000000000e-02 +-1.064400000000000e-02 + 1.881300000000000e-03 + 7.330800000000000e-02 + 1.921900000000000e-01 + 3.211400000000000e-01 + 4.148600000000000e-01 + 4.424500000000000e-01 + 4.011300000000000e-01 + 3.146500000000000e-01 + 2.192200000000000e-01 + 1.462700000000000e-01 + 1.106500000000000e-01 + 1.083000000000000e-01 + 1.214800000000000e-01 + 1.276600000000000e-01 + 1.084300000000000e-01 + 5.619200000000000e-02 +-2.305800000000000e-02 +-1.120600000000000e-01 +-1.897300000000000e-01 +-2.408500000000000e-01 +-2.629500000000000e-01 +-2.663200000000000e-01 +-2.668000000000000e-01 +-2.758500000000000e-01 +-2.943700000000000e-01 +-3.137900000000000e-01 +-3.229200000000000e-01 +-3.152400000000000e-01 +-2.917700000000000e-01 +-2.586500000000000e-01 +-2.223800000000000e-01 +-1.863200000000000e-01 +-1.498700000000000e-01 +-1.090800000000000e-01 +-5.716300000000000e-02 + 1.463400000000000e-02 + 1.139300000000000e-01 + 2.414700000000000e-01 + 3.857800000000000e-01 + 5.232000000000000e-01 + 6.262000000000000e-01 + 6.763800000000000e-01 + 6.738800000000000e-01 + 6.356200000000000e-01 + 5.821800000000000e-01 + 5.217400000000000e-01 + 4.428600000000000e-01 + 3.221500000000000e-01 + 1.422200000000000e-01 +-9.220299999999999e-02 +-3.515600000000000e-01 +-5.938200000000000e-01 +-7.835500000000000e-01 +-9.050400000000000e-01 +-9.620000000000000e-01 +-9.662100000000000e-01 +-9.247500000000000e-01 +-8.349400000000000e-01 +-6.896000000000000e-01 +-4.873500000000000e-01 +-2.402900000000000e-01 + 2.630600000000000e-02 + 2.816800000000000e-01 + 4.999500000000000e-01 + 6.677100000000000e-01 + 7.854600000000000e-01 + 8.628500000000000e-01 + 9.102000000000000e-01 + 9.304800000000000e-01 + 9.163200000000000e-01 + 8.543900000000000e-01 + 7.357000000000000e-01 + 5.657700000000000e-01 + 3.673700000000000e-01 + 1.721900000000000e-01 + 5.265500000000000e-03 +-1.279000000000000e-01 +-2.422600000000000e-01 +-3.605700000000000e-01 +-4.955500000000000e-01 +-6.394600000000000e-01 +-7.683500000000000e-01 +-8.572800000000000e-01 +-8.945900000000000e-01 +-8.845499999999999e-01 +-8.381100000000000e-01 +-7.611200000000000e-01 +-6.515200000000000e-01 +-5.081800000000000e-01 +-3.427800000000000e-01 +-1.819400000000000e-01 +-5.457900000000000e-02 + 2.754100000000000e-02 + 8.031600000000000e-02 + 1.385500000000000e-01 + 2.323100000000000e-01 + 3.651700000000000e-01 + 5.108500000000000e-01 + 6.310600000000000e-01 + 7.013600000000000e-01 + 7.258700000000000e-01 + 7.305900000000000e-01 + 7.416400000000000e-01 + 7.653799999999999e-01 + 7.847400000000000e-01 + 7.722800000000000e-01 + 7.083199999999999e-01 + 5.904300000000000e-01 + 4.298200000000000e-01 + 2.415000000000000e-01 + 3.838000000000000e-02 +-1.668400000000000e-01 +-3.572500000000000e-01 +-5.130700000000000e-01 +-6.206400000000000e-01 +-6.817500000000000e-01 +-7.131999999999999e-01 +-7.337100000000000e-01 +-7.471100000000001e-01 +-7.364000000000001e-01 +-6.757500000000000e-01 +-5.535200000000000e-01 +-3.884300000000000e-01 +-2.246000000000000e-01 +-1.066600000000000e-01 +-5.215000000000000e-02 +-4.176200000000000e-02 +-3.536500000000000e-02 +-2.604100000000000e-03 + 5.430600000000000e-02 + 1.022300000000000e-01 + 1.017300000000000e-01 + 3.635300000000000e-02 +-7.425600000000000e-02 +-1.857000000000000e-01 +-2.547700000000000e-01 +-2.604200000000000e-01 +-2.059900000000000e-01 +-1.040300000000000e-01 + 4.150800000000000e-02 + 2.400400000000000e-01 + 5.014000000000000e-01 + 8.149700000000000e-01 + 1.137100000000000e+00 + 1.398200000000000e+00 + 1.527000000000000e+00 + 1.478800000000000e+00 + 1.253600000000000e+00 + 8.942000000000000e-01 + 4.686600000000000e-01 + 4.702300000000000e-02 +-3.174200000000000e-01 +-5.966700000000000e-01 +-7.869900000000000e-01 +-9.017700000000000e-01 +-9.620200000000000e-01 +-9.868900000000000e-01 +-9.865300000000000e-01 +-9.596600000000000e-01 +-8.977200000000000e-01 +-7.946800000000001e-01 +-6.572100000000000e-01 +-5.086000000000001e-01 +-3.817100000000000e-01 +-3.030800000000000e-01 +-2.769600000000000e-01 +-2.795400000000000e-01 +-2.686300000000000e-01 +-2.043500000000000e-01 +-6.902000000000000e-02 + 1.253800000000000e-01 + 3.459400000000000e-01 + 5.567400000000000e-01 + 7.337700000000000e-01 + 8.678300000000000e-01 + 9.563800000000000e-01 + 9.933900000000000e-01 + 9.672800000000000e-01 + 8.690099999999999e-01 + 7.038500000000000e-01 + 4.959500000000000e-01 + 2.808200000000000e-01 + 9.020400000000001e-02 +-6.022200000000000e-02 +-1.721200000000000e-01 +-2.557100000000000e-01 +-3.196100000000000e-01 +-3.674700000000000e-01 +-4.024700000000000e-01 +-4.321500000000000e-01 +-4.659100000000000e-01 +-5.045400000000000e-01 +-5.310400000000000e-01 +-5.135800000000000e-01 +-4.235300000000000e-01 +-2.579300000000000e-01 +-4.999300000000000e-02 + 1.429100000000000e-01 + 2.681400000000000e-01 + 3.051300000000000e-01 + 2.729400000000000e-01 + 2.135100000000000e-01 + 1.633500000000000e-01 + 1.335900000000000e-01 + 1.105400000000000e-01 + 7.277599999999999e-02 + 9.334200000000001e-03 +-7.472100000000000e-02 +-1.666800000000000e-01 +-2.578600000000000e-01 +-3.467000000000000e-01 +-4.307700000000000e-01 +-4.967500000000000e-01 +-5.203200000000000e-01 +-4.788000000000000e-01 +-3.678100000000000e-01 +-2.075100000000000e-01 +-3.175700000000000e-02 + 1.329100000000000e-01 + 2.825100000000000e-01 + 4.331100000000000e-01 + 6.017800000000000e-01 + 7.856100000000000e-01 + 9.543500000000000e-01 + 1.062400000000000e+00 + 1.071700000000000e+00 + 9.697500000000000e-01 + 7.731200000000000e-01 + 5.160900000000000e-01 + 2.353000000000000e-01 +-4.036700000000000e-02 +-2.915100000000000e-01 +-5.058300000000000e-01 +-6.769500000000001e-01 +-8.055300000000000e-01 +-8.990899999999999e-01 +-9.671100000000000e-01 +-1.012100000000000e+00 +-1.023000000000000e+00 +-9.763600000000000e-01 +-8.472600000000000e-01 +-6.242500000000000e-01 +-3.202100000000000e-01 + 2.661400000000000e-02 + 3.616200000000000e-01 + 6.290500000000000e-01 + 7.877999999999999e-01 + 8.232100000000000e-01 + 7.514999999999999e-01 + 6.145600000000000e-01 + 4.652300000000000e-01 + 3.471600000000000e-01 + 2.779000000000000e-01 + 2.439900000000000e-01 + 2.119900000000000e-01 + 1.494900000000000e-01 + 4.407500000000000e-02 +-9.111400000000000e-02 +-2.275000000000000e-01 +-3.383500000000000e-01 +-4.106100000000000e-01 +-4.441500000000000e-01 +-4.417400000000000e-01 +-4.006200000000000e-01 +-3.141400000000000e-01 +-1.826400000000000e-01 +-2.368100000000000e-02 + 1.289300000000000e-01 + 2.392400000000000e-01 + 2.877200000000000e-01 + 2.815300000000000e-01 + 2.489200000000000e-01 + 2.219000000000000e-01 + 2.185900000000000e-01 + 2.362000000000000e-01 + 2.567900000000000e-01 + 2.595800000000000e-01 + 2.308100000000000e-01 + 1.667900000000000e-01 + 7.179500000000000e-02 +-4.438500000000000e-02 +-1.668700000000000e-01 +-2.759700000000000e-01 +-3.504400000000000e-01 +-3.743300000000000e-01 +-3.435700000000000e-01 +-2.676100000000000e-01 +-1.644800000000000e-01 +-5.283800000000000e-02 + 5.309200000000000e-02 + 1.427200000000000e-01 + 2.047000000000000e-01 + 2.247500000000000e-01 + 1.895900000000000e-01 + 9.558600000000000e-02 +-4.399800000000000e-02 +-1.991300000000000e-01 +-3.315600000000000e-01 +-4.074800000000000e-01 +-4.076700000000000e-01 +-3.310000000000000e-01 +-1.918600000000000e-01 +-1.500600000000000e-02 + 1.692000000000000e-01 + 3.284900000000000e-01 + 4.328500000000000e-01 + 4.601400000000000e-01 + 4.020800000000000e-01 + 2.681600000000000e-01 + 8.509000000000000e-02 +-1.087500000000000e-01 +-2.725700000000000e-01 +-3.737000000000000e-01 +-3.965700000000000e-01 +-3.472600000000000e-01 +-2.510500000000000e-01 +-1.426500000000000e-01 +-5.189100000000000e-02 + 8.459700000000001e-03 + 4.635000000000000e-02 + 8.278099999999999e-02 + 1.371500000000000e-01 + 2.146500000000000e-01 + 3.037000000000000e-01 + 3.846800000000000e-01 + 4.429700000000000e-01 + 4.766500000000000e-01 + 4.935000000000000e-01 + 5.005100000000000e-01 + 4.951600000000000e-01 + 4.660000000000000e-01 + 4.022500000000000e-01 + 3.044200000000000e-01 + 1.866100000000000e-01 + 6.793100000000001e-02 +-4.077300000000000e-02 +-1.443500000000000e-01 +-2.586400000000000e-01 +-3.967600000000000e-01 +-5.564300000000000e-01 +-7.177500000000000e-01 +-8.529099999999999e-01 +-9.407700000000000e-01 +-9.758599999999999e-01 +-9.664500000000000e-01 +-9.244500000000000e-01 +-8.554500000000000e-01 +-7.560500000000000e-01 +-6.195600000000000e-01 +-4.447300000000000e-01 +-2.406400000000000e-01 +-2.432500000000000e-02 + 1.869200000000000e-01 + 3.830700000000000e-01 + 5.641200000000000e-01 + 7.367100000000000e-01 + 9.069500000000000e-01 + 1.073600000000000e+00 + 1.225000000000000e+00 + 1.340600000000000e+00 + 1.397600000000000e+00 + 1.377700000000000e+00 + 1.273100000000000e+00 + 1.087800000000000e+00 + 8.349200000000000e-01 + 5.322400000000000e-01 + 1.987500000000000e-01 +-1.456000000000000e-01 +-4.787700000000000e-01 +-7.768800000000000e-01 +-1.018000000000000e+00 +-1.188300000000000e+00 +-1.285400000000000e+00 +-1.316400000000000e+00 +-1.289900000000000e+00 +-1.208100000000000e+00 +-1.066300000000000e+00 +-8.602800000000000e-01 +-5.984900000000000e-01 +-3.082000000000000e-01 +-2.998900000000000e-02 + 1.977100000000000e-01 + 3.547700000000000e-01 + 4.458400000000000e-01 + 4.935000000000000e-01 + 5.235000000000000e-01 + 5.519800000000000e-01 + 5.815100000000000e-01 + 6.052400000000000e-01 + 6.130900000000000e-01 + 5.951300000000000e-01 + 5.421899999999999e-01 + 4.480900000000000e-01 + 3.154700000000000e-01 + 1.616000000000000e-01 + 1.669800000000000e-02 +-8.901800000000000e-02 +-1.435500000000000e-01 +-1.635200000000000e-01 +-1.860200000000000e-01 +-2.437100000000000e-01 +-3.386600000000000e-01 +-4.343900000000000e-01 +-4.743400000000000e-01 +-4.165600000000000e-01 +-2.620700000000000e-01 +-5.741700000000000e-02 + 1.298700000000000e-01 + 2.461600000000000e-01 + 2.738100000000000e-01 + 2.284200000000000e-01 + 1.382200000000000e-01 + 2.409500000000000e-02 +-1.045500000000000e-01 +-2.383400000000000e-01 +-3.549400000000000e-01 +-4.194900000000000e-01 +-4.013500000000000e-01 +-2.951300000000000e-01 +-1.290400000000000e-01 + 4.750800000000000e-02 + 1.896300000000000e-01 + 2.785800000000000e-01 + 3.254400000000000e-01 + 3.566600000000000e-01 + 3.934200000000000e-01 + 4.392900000000000e-01 + 4.822200000000000e-01 + 5.053100000000000e-01 + 4.961900000000000e-01 + 4.489000000000000e-01 + 3.604100000000000e-01 + 2.288500000000000e-01 + 5.719200000000000e-02 +-1.405000000000000e-01 +-3.372300000000000e-01 +-4.998800000000000e-01 +-6.019500000000000e-01 +-6.338700000000000e-01 +-6.044600000000000e-01 +-5.331600000000000e-01 +-4.394800000000000e-01 +-3.364800000000000e-01 +-2.308800000000000e-01 +-1.269600000000000e-01 +-2.944300000000000e-02 + 5.611400000000000e-02 + 1.238100000000000e-01 + 1.664600000000000e-01 + 1.741900000000000e-01 + 1.363700000000000e-01 + 4.935000000000000e-02 +-7.351400000000000e-02 +-1.976100000000000e-01 +-2.758600000000000e-01 +-2.691200000000000e-01 +-1.672300000000000e-01 + 3.474300000000000e-03 + 1.926600000000000e-01 + 3.517800000000000e-01 + 4.568200000000000e-01 + 5.133600000000000e-01 + 5.421800000000000e-01 + 5.573500000000000e-01 + 5.537200000000000e-01 + 5.132600000000000e-01 + 4.243100000000000e-01 + 2.983100000000000e-01 + 1.694600000000000e-01 + 7.623099999999999e-02 + 3.671500000000000e-02 + 3.519000000000000e-02 + 2.970400000000000e-02 +-2.374600000000000e-02 +-1.457300000000000e-01 +-3.221600000000000e-01 +-5.132000000000000e-01 +-6.751100000000000e-01 +-7.809300000000000e-01 +-8.279300000000001e-01 +-8.293600000000000e-01 +-7.980000000000000e-01 +-7.333900000000000e-01 +-6.212500000000000e-01 +-4.453000000000000e-01 +-2.040200000000000e-01 + 7.872000000000000e-02 + 3.562600000000000e-01 + 5.748300000000000e-01 + 6.945700000000000e-01 + 7.051200000000000e-01 + 6.281400000000000e-01 + 5.061400000000000e-01 + 3.843700000000000e-01 + 2.951500000000000e-01 + 2.511400000000000e-01 + 2.482700000000000e-01 + 2.734500000000000e-01 + 3.116000000000000e-01 + 3.489900000000000e-01 + 3.739200000000000e-01 + 3.772200000000000e-01 + 3.537800000000000e-01 + 3.037300000000000e-01 + 2.310900000000000e-01 + 1.400800000000000e-01 + 3.137600000000000e-02 +-9.787400000000000e-02 +-2.496300000000000e-01 +-4.188700000000000e-01 +-5.906900000000000e-01 +-7.433999999999999e-01 +-8.559400000000000e-01 +-9.149200000000000e-01 +-9.168300000000000e-01 +-8.651200000000000e-01 +-7.655900000000000e-01 +-6.239600000000000e-01 +-4.468400000000000e-01 +-2.439900000000000e-01 +-2.868100000000000e-02 + 1.842400000000000e-01 + 3.805800000000000e-01 + 5.469400000000000e-01 + 6.692100000000000e-01 + 7.327500000000000e-01 + 7.271900000000000e-01 + 6.545100000000000e-01 + 5.344700000000000e-01 + 4.011500000000000e-01 + 2.900000000000000e-01 + 2.221900000000000e-01 + 1.965200000000000e-01 + 1.946600000000000e-01 + 1.960000000000000e-01 + 1.916400000000000e-01 + 1.872800000000000e-01 + 1.939900000000000e-01 + 2.147500000000000e-01 + 2.377200000000000e-01 + 2.416100000000000e-01 + 2.083400000000000e-01 + 1.334500000000000e-01 + 2.668400000000000e-02 +-9.592100000000001e-02 +-2.212300000000000e-01 +-3.423100000000000e-01 +-4.552900000000000e-01 +-5.548900000000000e-01 +-6.342500000000000e-01 +-6.892700000000000e-01 +-7.221200000000000e-01 +-7.389700000000000e-01 +-7.422500000000000e-01 +-7.242800000000000e-01 +-6.692300000000000e-01 +-5.639500000000000e-01 +-4.100300000000000e-01 +-2.271300000000000e-01 +-4.350500000000000e-02 + 1.197900000000000e-01 + 2.595800000000000e-01 + 3.876900000000000e-01 + 5.170000000000000e-01 + 6.475300000000000e-01 + 7.632700000000000e-01 + 8.422200000000000e-01 + 8.715800000000000e-01 + 8.563700000000000e-01 + 8.153800000000000e-01 + 7.681300000000000e-01 + 7.225700000000000e-01 + 6.716400000000000e-01 + 5.994100000000000e-01 + 4.910800000000000e-01 + 3.400500000000000e-01 + 1.493600000000000e-01 +-7.061600000000000e-02 +-3.050300000000000e-01 +-5.367100000000000e-01 +-7.484600000000000e-01 +-9.262400000000000e-01 +-1.061500000000000e+00 +-1.150400000000000e+00 +-1.189900000000000e+00 +-1.173400000000000e+00 +-1.091400000000000e+00 +-9.384700000000000e-01 +-7.216300000000000e-01 +-4.636600000000000e-01 +-1.965100000000000e-01 + 5.183100000000000e-02 + 2.683800000000000e-01 + 4.562400000000000e-01 + 6.256400000000000e-01 + 7.820600000000000e-01 + 9.208499999999999e-01 + 1.031200000000000e+00 + 1.104700000000000e+00 + 1.140300000000000e+00 + 1.140900000000000e+00 + 1.106200000000000e+00 + 1.028900000000000e+00 + 8.983800000000000e-01 + 7.095700000000000e-01 + 4.676000000000000e-01 + 1.847600000000000e-01 +-1.278300000000000e-01 +-4.645500000000000e-01 +-8.196900000000000e-01 +-1.175000000000000e+00 +-1.491600000000000e+00 +-1.717400000000000e+00 +-1.806800000000000e+00 +-1.743700000000000e+00 +-1.548600000000000e+00 +-1.267300000000000e+00 +-9.458000000000000e-01 +-6.114000000000001e-01 +-2.704700000000000e-01 + 7.692499999999999e-02 + 4.195200000000000e-01 + 7.290900000000000e-01 + 9.711000000000000e-01 + 1.123600000000000e+00 + 1.189800000000000e+00 + 1.195500000000000e+00 + 1.173500000000000e+00 + 1.145800000000000e+00 + 1.114700000000000e+00 + 1.066800000000000e+00 + 9.846300000000000e-01 + 8.585300000000000e-01 + 6.928500000000000e-01 + 5.044300000000000e-01 + 3.156100000000000e-01 + 1.449300000000000e-01 +-9.500400000000000e-04 +-1.301700000000000e-01 +-2.609100000000000e-01 +-4.097000000000000e-01 +-5.789800000000001e-01 +-7.520200000000000e-01 +-9.005000000000000e-01 +-1.001200000000000e+00 +-1.051000000000000e+00 +-1.068300000000000e+00 +-1.079200000000000e+00 +-1.096400000000000e+00 +-1.107500000000000e+00 +-1.080600000000000e+00 +-9.854100000000000e-01 +-8.140400000000000e-01 +-5.877800000000000e-01 +-3.453100000000000e-01 +-1.216100000000000e-01 + 6.786000000000000e-02 + 2.288400000000000e-01 + 3.780100000000000e-01 + 5.303099999999999e-01 + 6.922000000000000e-01 + 8.616800000000000e-01 + 1.030400000000000e+00 + 1.184300000000000e+00 + 1.303400000000000e+00 + 1.366200000000000e+00 + 1.358900000000000e+00 + 1.285300000000000e+00 + 1.167200000000000e+00 + 1.033100000000000e+00 + 9.012400000000000e-01 + 7.696100000000000e-01 + 6.208800000000000e-01 + 4.393900000000000e-01 + 2.256800000000000e-01 +-3.805100000000000e-03 +-2.321000000000000e-01 +-4.586300000000000e-01 +-7.016200000000000e-01 +-9.812700000000000e-01 +-1.295500000000000e+00 +-1.608400000000000e+00 +-1.861600000000000e+00 +-2.004100000000000e+00 +-2.016600000000000e+00 +-1.915000000000000e+00 +-1.731300000000000e+00 +-1.487600000000000e+00 +-1.184700000000000e+00 +-8.126000000000000e-01 +-3.729300000000000e-01 + 1.067000000000000e-01 + 5.788800000000000e-01 + 9.976800000000000e-01 + 1.337900000000000e+00 + 1.597100000000000e+00 + 1.780800000000000e+00 + 1.885300000000000e+00 + 1.894100000000000e+00 + 1.792400000000000e+00 + 1.587100000000000e+00 + 1.314800000000000e+00 + 1.029400000000000e+00 + 7.756200000000000e-01 + 5.665100000000000e-01 + 3.812900000000000e-01 + 1.835800000000000e-01 +-5.241000000000000e-02 +-3.249200000000000e-01 +-6.060200000000000e-01 +-8.576500000000000e-01 +-1.050000000000000e+00 +-1.171200000000000e+00 +-1.225000000000000e+00 +-1.221700000000000e+00 +-1.170500000000000e+00 +-1.077800000000000e+00 +-9.504700000000000e-01 +-8.006799999999999e-01 +-6.460200000000000e-01 +-5.044800000000000e-01 +-3.860100000000000e-01 +-2.858700000000000e-01 +-1.846500000000000e-01 +-5.683800000000000e-02 + 1.149200000000000e-01 + 3.274100000000000e-01 + 5.538600000000000e-01 + 7.535900000000000e-01 + 8.898600000000000e-01 + 9.456300000000000e-01 + 9.278800000000000e-01 + 8.584900000000000e-01 + 7.587400000000000e-01 + 6.390200000000000e-01 + 5.007000000000000e-01 + 3.474200000000000e-01 + 1.953000000000000e-01 + 7.196600000000000e-02 + 3.056500000000000e-03 +-5.114400000000000e-03 + 2.592400000000000e-02 + 5.423000000000000e-02 + 3.732800000000000e-02 +-4.698100000000000e-02 +-1.903800000000000e-01 +-3.587200000000000e-01 +-5.074900000000000e-01 +-5.992800000000000e-01 +-6.160300000000000e-01 +-5.626700000000000e-01 +-4.627900000000000e-01 +-3.487900000000000e-01 +-2.498300000000000e-01 +-1.820000000000000e-01 +-1.452500000000000e-01 +-1.288600000000000e-01 +-1.222200000000000e-01 +-1.232500000000000e-01 +-1.374300000000000e-01 +-1.673100000000000e-01 +-2.008800000000000e-01 +-2.098800000000000e-01 +-1.631200000000000e-01 +-4.760300000000000e-02 + 1.178400000000000e-01 + 2.886100000000000e-01 + 4.189500000000000e-01 + 4.893700000000000e-01 + 5.178500000000000e-01 + 5.459700000000000e-01 + 6.086800000000000e-01 + 7.081900000000000e-01 + 8.090900000000000e-01 + 8.569800000000000e-01 + 8.074900000000000e-01 + 6.473200000000000e-01 + 3.971200000000000e-01 + 9.894100000000000e-02 +-2.006700000000000e-01 +-4.625500000000000e-01 +-6.601000000000000e-01 +-7.815100000000000e-01 +-8.318700000000000e-01 +-8.331400000000000e-01 +-8.175100000000000e-01 +-8.137700000000000e-01 +-8.326600000000000e-01 +-8.607600000000000e-01 +-8.676600000000000e-01 +-8.220400000000000e-01 +-7.059400000000000e-01 +-5.187800000000000e-01 +-2.713100000000000e-01 + 2.257800000000000e-02 + 3.480800000000000e-01 + 6.852000000000000e-01 + 1.004700000000000e+00 + 1.271600000000000e+00 + 1.456600000000000e+00 + 1.546700000000000e+00 + 1.545500000000000e+00 + 1.462600000000000e+00 + 1.299400000000000e+00 + 1.045700000000000e+00 + 6.922800000000000e-01 + 2.515200000000000e-01 +-2.305700000000000e-01 +-6.827100000000000e-01 +-1.035200000000000e+00 +-1.249500000000000e+00 +-1.331200000000000e+00 +-1.320000000000000e+00 +-1.262500000000000e+00 +-1.186900000000000e+00 +-1.094000000000000e+00 +-9.665400000000000e-01 +-7.878300000000000e-01 +-5.571700000000001e-01 +-2.929700000000000e-01 +-2.507400000000000e-02 + 2.172700000000000e-01 + 4.150900000000000e-01 + 5.632200000000001e-01 + 6.678400000000000e-01 + 7.395900000000000e-01 + 7.852200000000000e-01 + 8.016300000000000e-01 + 7.763600000000001e-01 + 6.961900000000000e-01 + 5.605400000000000e-01 + 3.912200000000000e-01 + 2.302800000000000e-01 + 1.238100000000000e-01 + 9.950199999999999e-02 + 1.510000000000000e-01 + 2.396000000000000e-01 + 3.129600000000000e-01 + 3.295400000000000e-01 + 2.744400000000000e-01 + 1.586000000000000e-01 + 5.233700000000000e-03 +-1.650300000000000e-01 +-3.401500000000000e-01 +-5.121900000000000e-01 +-6.696100000000000e-01 +-7.951100000000000e-01 +-8.721700000000000e-01 +-8.949600000000000e-01 +-8.727300000000000e-01 +-8.237100000000001e-01 +-7.616800000000000e-01 +-6.846700000000000e-01 +-5.744600000000000e-01 +-4.082600000000000e-01 +-1.761000000000000e-01 + 1.070900000000000e-01 + 4.022600000000000e-01 + 6.601700000000000e-01 + 8.411000000000000e-01 + 9.301000000000000e-01 + 9.401700000000000e-01 + 9.023500000000000e-01 + 8.489700000000000e-01 + 7.992400000000000e-01 + 7.547500000000000e-01 + 7.058900000000000e-01 + 6.436800000000000e-01 + 5.679300000000000e-01 + 4.856600000000000e-01 + 4.008000000000000e-01 + 3.034900000000000e-01 + 1.685100000000000e-01 +-3.280500000000000e-02 +-3.127800000000000e-01 +-6.516600000000000e-01 +-9.973100000000000e-01 +-1.282300000000000e+00 +-1.450300000000000e+00 +-1.476800000000000e+00 +-1.374500000000000e+00 +-1.181300000000000e+00 +-9.408100000000000e-01 +-6.857700000000000e-01 +-4.335300000000000e-01 +-1.913200000000000e-01 + 3.470800000000000e-02 + 2.343000000000000e-01 + 3.946600000000000e-01 + 5.067400000000000e-01 + 5.712900000000000e-01 + 6.009400000000000e-01 + 6.169800000000000e-01 + 6.426100000000000e-01 + 6.949100000000000e-01 + 7.783800000000000e-01 + 8.818300000000000e-01 + 9.798900000000000e-01 + 1.039300000000000e+00 + 1.028700000000000e+00 + 9.284600000000000e-01 + 7.377700000000000e-01 + 4.763600000000000e-01 + 1.795500000000000e-01 +-1.111900000000000e-01 +-3.594100000000000e-01 +-5.424900000000000e-01 +-6.551600000000000e-01 +-7.065700000000000e-01 +-7.130600000000000e-01 +-6.908700000000000e-01 +-6.531800000000000e-01 +-6.125699999999999e-01 +-5.853000000000000e-01 +-5.913800000000000e-01 +-6.464800000000001e-01 +-7.485000000000001e-01 +-8.680200000000000e-01 +-9.524100000000000e-01 +-9.455500000000000e-01 +-8.144900000000000e-01 +-5.670300000000000e-01 +-2.484400000000000e-01 + 8.177600000000000e-02 + 3.786600000000000e-01 + 6.279500000000000e-01 + 8.403700000000000e-01 + 1.030500000000000e+00 + 1.197000000000000e+00 + 1.319200000000000e+00 + 1.370400000000000e+00 + 1.336700000000000e+00 + 1.225900000000000e+00 + 1.059000000000000e+00 + 8.535800000000000e-01 + 6.121200000000000e-01 + 3.265600000000000e-01 +-5.447700000000000e-03 +-3.647700000000000e-01 +-7.085300000000000e-01 +-9.836500000000000e-01 +-1.147300000000000e+00 +-1.181800000000000e+00 +-1.096800000000000e+00 +-9.211300000000000e-01 +-6.926200000000000e-01 +-4.502100000000000e-01 +-2.295700000000000e-01 +-5.843700000000000e-02 + 4.901100000000000e-02 + 9.556300000000000e-02 + 9.786499999999999e-02 + 7.657400000000000e-02 + 4.561500000000000e-02 + 8.223800000000000e-03 +-3.737100000000000e-02 +-8.761099999999999e-02 +-1.277500000000000e-01 +-1.360300000000000e-01 +-9.515899999999999e-02 +-2.147900000000000e-03 + 1.306200000000000e-01 + 2.826700000000000e-01 + 4.338600000000000e-01 + 5.668900000000000e-01 + 6.638800000000000e-01 + 7.039400000000000e-01 + 6.683300000000000e-01 + 5.524400000000000e-01 + 3.751300000000000e-01 + 1.752500000000000e-01 +-5.971800000000000e-03 +-1.461000000000000e-01 +-2.507300000000000e-01 +-3.426600000000000e-01 +-4.380700000000000e-01 +-5.271800000000000e-01 +-5.752500000000000e-01 +-5.446700000000000e-01 +-4.237700000000000e-01 +-2.416800000000000e-01 +-5.812700000000000e-02 + 6.627400000000000e-02 + 1.008200000000000e-01 + 5.812700000000000e-02 +-1.653000000000000e-02 +-7.166300000000000e-02 +-7.563599999999999e-02 +-2.851700000000000e-02 + 4.413500000000000e-02 + 1.093000000000000e-01 + 1.452000000000000e-01 + 1.511400000000000e-01 + 1.447600000000000e-01 + 1.492600000000000e-01 + 1.780700000000000e-01 + 2.252000000000000e-01 + 2.668900000000000e-01 + 2.742500000000000e-01 + 2.300300000000000e-01 + 1.397300000000000e-01 + 2.996700000000000e-02 +-6.534900000000000e-02 +-1.230100000000000e-01 +-1.416400000000000e-01 +-1.397500000000000e-01 +-1.427900000000000e-01 +-1.679500000000000e-01 +-2.155800000000000e-01 +-2.706100000000000e-01 +-3.109100000000000e-01 +-3.166300000000000e-01 +-2.763000000000000e-01 +-1.892900000000000e-01 +-6.614900000000000e-02 + 7.277500000000001e-02 + 2.011100000000000e-01 + 2.932900000000000e-01 + 3.322500000000000e-01 + 3.142000000000000e-01 + 2.478400000000000e-01 + 1.494600000000000e-01 + 3.811700000000000e-02 +-6.592800000000000e-02 +-1.409600000000000e-01 +-1.665400000000000e-01 +-1.317600000000000e-01 +-4.536800000000000e-02 + 6.150100000000000e-02 + 1.462900000000000e-01 + 1.765900000000000e-01 + 1.489400000000000e-01 + 9.064600000000000e-02 + 4.133500000000000e-02 + 2.599200000000000e-02 + 3.915900000000000e-02 + 5.229700000000000e-02 + 3.880200000000000e-02 +-3.025500000000000e-03 +-4.768200000000000e-02 +-6.317700000000000e-02 +-3.843300000000000e-02 + 4.904100000000000e-03 + 2.654500000000000e-02 +-2.764200000000000e-03 +-7.874200000000001e-02 +-1.654900000000000e-01 +-2.199300000000000e-01 +-2.197300000000000e-01 +-1.742500000000000e-01 +-1.123300000000000e-01 +-5.921200000000000e-02 +-2.173800000000000e-02 + 8.160900000000000e-03 + 3.775000000000000e-02 + 6.141600000000000e-02 + 6.319300000000000e-02 + 3.093300000000000e-02 +-3.127100000000000e-02 +-1.038300000000000e-01 +-1.649300000000000e-01 +-2.046100000000000e-01 +-2.275300000000000e-01 +-2.426800000000000e-01 +-2.495600000000000e-01 +-2.334100000000000e-01 +-1.738700000000000e-01 +-5.992800000000000e-02 + 1.006200000000000e-01 + 2.839200000000000e-01 + 4.615300000000000e-01 + 6.112100000000000e-01 + 7.201500000000000e-01 + 7.817400000000000e-01 + 7.918500000000001e-01 + 7.491700000000000e-01 + 6.577800000000000e-01 + 5.274600000000000e-01 + 3.693900000000000e-01 + 1.911400000000000e-01 +-2.983400000000000e-03 +-2.050000000000000e-01 +-3.959300000000000e-01 +-5.474300000000000e-01 +-6.352000000000000e-01 +-6.561399999999999e-01 +-6.352200000000000e-01 +-6.136800000000000e-01 +-6.244300000000000e-01 +-6.715700000000000e-01 +-7.291900000000000e-01 +-7.605100000000000e-01 +-7.425500000000000e-01 +-6.777700000000000e-01 +-5.849500000000000e-01 +-4.789700000000000e-01 +-3.573700000000000e-01 +-2.053700000000000e-01 +-1.420500000000000e-02 + 2.040600000000000e-01 + 4.189500000000000e-01 + 6.001800000000000e-01 + 7.369900000000000e-01 + 8.420400000000000e-01 + 9.366200000000000e-01 + 1.029800000000000e+00 + 1.109100000000000e+00 + 1.149100000000000e+00 + 1.131500000000000e+00 + 1.056900000000000e+00 + 9.406200000000000e-01 + 7.966800000000001e-01 + 6.246800000000000e-01 + 4.126800000000000e-01 + 1.531900000000000e-01 +-1.418200000000000e-01 +-4.405900000000000e-01 +-7.069700000000000e-01 +-9.189900000000000e-01 +-1.075600000000000e+00 +-1.186900000000000e+00 +-1.258000000000000e+00 +-1.281500000000000e+00 +-1.245200000000000e+00 +-1.148900000000000e+00 +-1.012000000000000e+00 +-8.655800000000000e-01 +-7.317800000000000e-01 +-6.071700000000000e-01 +-4.646700000000000e-01 +-2.729200000000000e-01 +-1.946500000000000e-02 + 2.792100000000000e-01 + 5.865700000000000e-01 + 8.653999999999999e-01 + 1.092500000000000e+00 + 1.259200000000000e+00 + 1.361700000000000e+00 + 1.391700000000000e+00 + 1.337600000000000e+00 + 1.193800000000000e+00 + 9.702499999999999e-01 + 6.931600000000000e-01 + 3.961700000000000e-01 + 1.097500000000000e-01 +-1.445400000000000e-01 +-3.533600000000000e-01 +-5.091900000000000e-01 +-6.111200000000000e-01 +-6.677100000000000e-01 +-6.959200000000000e-01 +-7.121600000000000e-01 +-7.195600000000000e-01 +-7.019400000000000e-01 +-6.330800000000000e-01 +-4.980100000000000e-01 +-3.118900000000000e-01 +-1.204500000000000e-01 + 2.203900000000000e-02 + 8.396000000000001e-02 + 7.509200000000001e-02 + 3.895500000000000e-02 + 2.367300000000000e-02 + 5.213500000000000e-02 + 1.124300000000000e-01 + 1.737700000000000e-01 + 2.137300000000000e-01 + 2.348800000000000e-01 + 2.584500000000000e-01 + 3.014300000000000e-01 + 3.566100000000000e-01 + 3.919900000000000e-01 + 3.700800000000000e-01 + 2.721900000000000e-01 + 1.099700000000000e-01 +-8.250200000000001e-02 +-2.673000000000000e-01 +-4.168700000000000e-01 +-5.152700000000000e-01 +-5.508500000000000e-01 +-5.122300000000000e-01 +-3.947300000000000e-01 +-2.125900000000000e-01 +-3.984300000000000e-03 + 1.803100000000000e-01 + 3.006400000000000e-01 + 3.491100000000000e-01 + 3.515900000000000e-01 + 3.484800000000000e-01 + 3.669300000000000e-01 + 4.033200000000000e-01 + 4.271000000000000e-01 + 4.013300000000000e-01 + 3.046300000000000e-01 + 1.408100000000000e-01 +-6.660199999999999e-02 +-2.862800000000000e-01 +-4.873500000000000e-01 +-6.407100000000000e-01 +-7.190100000000000e-01 +-7.022699999999999e-01 +-5.891000000000000e-01 +-4.050200000000000e-01 +-1.978100000000000e-01 +-1.852500000000000e-02 + 1.019300000000000e-01 + 1.654400000000000e-01 + 2.000400000000000e-01 + 2.391100000000000e-01 + 3.011900000000000e-01 + 3.836100000000000e-01 + 4.714200000000000e-01 + 5.514900000000000e-01 + 6.188900000000001e-01 + 6.713200000000000e-01 + 6.985700000000000e-01 + 6.788700000000000e-01 + 5.876900000000000e-01 + 4.134200000000000e-01 + 1.677600000000000e-01 +-1.174400000000000e-01 +-4.044700000000000e-01 +-6.641300000000000e-01 +-8.803000000000000e-01 +-1.044000000000000e+00 +-1.145600000000000e+00 +-1.173300000000000e+00 +-1.121900000000000e+00 +-1.000400000000000e+00 +-8.318400000000000e-01 +-6.410700000000000e-01 +-4.396300000000000e-01 +-2.201500000000000e-01 + 3.362100000000000e-02 + 3.275900000000000e-01 + 6.434800000000001e-01 + 9.415500000000000e-01 + 1.178800000000000e+00 + 1.329400000000000e+00 + 1.393200000000000e+00 + 1.386600000000000e+00 + 1.323700000000000e+00 + 1.203200000000000e+00 + 1.009500000000000e+00 + 7.282300000000000e-01 + 3.620300000000000e-01 +-6.191600000000000e-02 +-4.984000000000000e-01 +-8.984000000000000e-01 +-1.221900000000000e+00 +-1.443800000000000e+00 +-1.552300000000000e+00 +-1.545900000000000e+00 +-1.431100000000000e+00 +-1.222400000000000e+00 +-9.414700000000000e-01 +-6.159500000000000e-01 +-2.756300000000000e-01 + 5.138700000000000e-02 + 3.424100000000000e-01 + 5.835000000000000e-01 + 7.713300000000000e-01 + 9.119000000000000e-01 + 1.014600000000000e+00 + 1.083600000000000e+00 + 1.112000000000000e+00 + 1.084400000000000e+00 + 9.880300000000000e-01 + 8.270800000000000e-01 + 6.280900000000000e-01 + 4.312500000000000e-01 + 2.702800000000000e-01 + 1.535800000000000e-01 + 5.950500000000000e-02 +-5.019500000000000e-02 +-2.071700000000000e-01 +-4.182500000000000e-01 +-6.626800000000000e-01 +-9.041500000000000e-01 +-1.107300000000000e+00 +-1.248400000000000e+00 +-1.315600000000000e+00 +-1.305000000000000e+00 +-1.217900000000000e+00 +-1.061700000000000e+00 +-8.517200000000000e-01 +-6.082100000000000e-01 +-3.489600000000000e-01 +-8.373500000000000e-02 + 1.841000000000000e-01 + 4.490100000000000e-01 + 6.956500000000000e-01 + 9.002200000000000e-01 + 1.041900000000000e+00 + 1.115600000000000e+00 + 1.134100000000000e+00 + 1.117000000000000e+00 + 1.073600000000000e+00 + 9.952000000000000e-01 + 8.641400000000000e-01 + 6.739400000000000e-01 + 4.440100000000000e-01 + 2.155200000000000e-01 + 2.970100000000000e-02 +-9.536300000000000e-02 +-1.717200000000000e-01 +-2.269900000000000e-01 +-2.805300000000000e-01 +-3.298000000000000e-01 +-3.578500000000000e-01 +-3.548500000000000e-01 +-3.345300000000000e-01 +-3.304800000000000e-01 +-3.738600000000000e-01 +-4.695600000000000e-01 +-5.897700000000000e-01 +-6.900600000000000e-01 +-7.357200000000000e-01 +-7.189300000000000e-01 +-6.555600000000000e-01 +-5.668500000000000e-01 +-4.620500000000000e-01 +-3.352700000000000e-01 +-1.770200000000000e-01 + 1.103100000000000e-02 + 2.103800000000000e-01 + 3.928100000000000e-01 + 5.331399999999999e-01 + 6.177800000000000e-01 + 6.444600000000000e-01 + 6.169000000000000e-01 + 5.412100000000000e-01 + 4.267600000000000e-01 + 2.884700000000000e-01 + 1.455700000000000e-01 + 1.596700000000000e-02 +-8.923300000000001e-02 +-1.657400000000000e-01 +-2.104000000000000e-01 +-2.157400000000000e-01 +-1.714700000000000e-01 +-7.383300000000000e-02 + 6.434800000000000e-02 + 2.122500000000000e-01 + 3.318400000000000e-01 + 3.947300000000000e-01 + 3.941000000000000e-01 + 3.439100000000000e-01 + 2.675600000000000e-01 + 1.847800000000000e-01 + 1.053800000000000e-01 + 3.102500000000000e-02 +-3.964300000000000e-02 +-1.083400000000000e-01 +-1.772800000000000e-01 +-2.483100000000000e-01 +-3.184900000000000e-01 +-3.750300000000000e-01 +-3.963900000000000e-01 +-3.631800000000000e-01 +-2.737300000000000e-01 +-1.525700000000000e-01 +-4.300700000000000e-02 + 1.406300000000000e-02 + 1.681800000000000e-03 +-6.591200000000000e-02 +-1.547500000000000e-01 +-2.319800000000000e-01 +-2.805500000000000e-01 +-2.989700000000000e-01 +-2.903800000000000e-01 +-2.534000000000000e-01 +-1.838500000000000e-01 +-8.429399999999999e-02 + 2.978200000000000e-02 + 1.357600000000000e-01 + 2.184400000000000e-01 + 2.803200000000000e-01 + 3.370400000000000e-01 + 3.999600000000000e-01 + 4.608000000000000e-01 + 4.930000000000000e-01 + 4.712500000000000e-01 + 3.943100000000000e-01 + 2.916400000000000e-01 + 2.064700000000000e-01 + 1.668100000000000e-01 + 1.666200000000000e-01 + 1.717100000000000e-01 + 1.455500000000000e-01 + 7.473700000000000e-02 +-2.465200000000000e-02 +-1.227100000000000e-01 +-1.982800000000000e-01 +-2.498600000000000e-01 +-2.879700000000000e-01 +-3.189700000000000e-01 +-3.367800000000000e-01 +-3.302400000000000e-01 +-2.981000000000000e-01 +-2.561100000000000e-01 +-2.274400000000000e-01 +-2.237200000000000e-01 +-2.335700000000000e-01 +-2.301200000000000e-01 +-1.927300000000000e-01 +-1.250300000000000e-01 +-5.364600000000000e-02 +-7.425100000000000e-03 + 6.259500000000000e-03 + 8.837100000000001e-03 + 3.486600000000000e-02 + 1.050100000000000e-01 + 2.079000000000000e-01 + 3.039400000000000e-01 + 3.473400000000000e-01 + 3.108600000000000e-01 + 1.981100000000000e-01 + 3.954500000000000e-02 +-1.209700000000000e-01 +-2.397200000000000e-01 +-2.827600000000000e-01 +-2.331100000000000e-01 +-9.684200000000000e-02 + 9.547600000000001e-02 + 2.971400000000000e-01 + 4.636500000000000e-01 + 5.716599999999999e-01 + 6.252900000000000e-01 + 6.434500000000000e-01 + 6.366400000000000e-01 + 5.914300000000000e-01 + 4.769200000000000e-01 + 2.704100000000000e-01 +-1.628500000000000e-02 +-3.313500000000000e-01 +-6.044500000000000e-01 +-7.813000000000000e-01 +-8.472800000000000e-01 +-8.248000000000000e-01 +-7.495300000000000e-01 +-6.453700000000000e-01 +-5.170000000000000e-01 +-3.623600000000000e-01 +-1.910100000000000e-01 +-3.054300000000000e-02 + 8.502200000000000e-02 + 1.352800000000000e-01 + 1.255800000000000e-01 + 8.243700000000000e-02 + 3.744500000000000e-02 + 1.278000000000000e-02 + 1.747300000000000e-02 + 5.243500000000000e-02 + 1.149400000000000e-01 + 1.964100000000000e-01 + 2.769500000000000e-01 + 3.262800000000000e-01 + 3.163700000000000e-01 + 2.400100000000000e-01 + 1.213000000000000e-01 + 7.778300000000000e-03 +-5.325300000000000e-02 +-3.934500000000000e-02 + 3.741800000000000e-02 + 1.407700000000000e-01 + 2.318500000000000e-01 + 2.870700000000000e-01 + 3.030400000000000e-01 + 2.901600000000000e-01 + 2.634300000000000e-01 + 2.369300000000000e-01 + 2.215400000000000e-01 + 2.216500000000000e-01 + 2.299000000000000e-01 + 2.251100000000000e-01 + 1.797700000000000e-01 + 7.652000000000000e-02 +-7.635800000000000e-02 +-2.435000000000000e-01 +-3.797000000000000e-01 +-4.560200000000000e-01 +-4.765900000000000e-01 +-4.734000000000000e-01 +-4.825500000000000e-01 +-5.195600000000000e-01 +-5.716900000000000e-01 +-6.114600000000000e-01 +-6.187400000000000e-01 +-5.926900000000001e-01 +-5.447500000000000e-01 +-4.804800000000000e-01 +-3.879000000000000e-01 +-2.441700000000000e-01 +-3.645800000000000e-02 + 2.199300000000000e-01 + 4.817100000000000e-01 + 6.974200000000000e-01 + 8.329800000000001e-01 + 8.850800000000000e-01 + 8.745500000000000e-01 + 8.272600000000000e-01 + 7.577900000000000e-01 + 6.665900000000000e-01 + 5.491600000000000e-01 + 4.067500000000000e-01 + 2.492400000000000e-01 + 8.969100000000001e-02 +-6.237100000000000e-02 +-2.021300000000000e-01 +-3.249500000000000e-01 +-4.225300000000000e-01 +-4.854200000000000e-01 +-5.108200000000001e-01 +-5.082600000000000e-01 +-4.957400000000000e-01 +-4.869400000000000e-01 +-4.782600000000000e-01 +-4.463700000000000e-01 +-3.599900000000000e-01 +-1.995000000000000e-01 + 2.794900000000000e-02 + 2.872900000000000e-01 + 5.283900000000000e-01 + 7.049700000000000e-01 + 7.891700000000000e-01 + 7.760700000000000e-01 + 6.789500000000001e-01 + 5.200800000000000e-01 + 3.222400000000000e-01 + 1.037000000000000e-01 +-1.226000000000000e-01 +-3.464700000000000e-01 +-5.562000000000000e-01 +-7.356000000000000e-01 +-8.648300000000000e-01 +-9.262000000000000e-01 +-9.117900000000000e-01 +-8.279600000000000e-01 +-6.929400000000000e-01 +-5.287200000000000e-01 +-3.527800000000000e-01 +-1.755400000000000e-01 +-4.400600000000000e-03 + 1.507800000000000e-01 + 2.775100000000000e-01 + 3.676300000000000e-01 + 4.258900000000000e-01 + 4.715100000000000e-01 + 5.285600000000000e-01 + 6.104600000000000e-01 + 7.097800000000000e-01 + 8.014900000000000e-01 + 8.576500000000000e-01 + 8.623000000000000e-01 + 8.153300000000000e-01 + 7.237500000000000e-01 + 5.897200000000000e-01 + 4.078100000000000e-01 + 1.754200000000000e-01 +-9.221400000000000e-02 +-3.570100000000000e-01 +-5.705000000000000e-01 +-6.970499999999999e-01 +-7.312000000000000e-01 +-6.956200000000000e-01 +-6.216699999999999e-01 +-5.278200000000000e-01 +-4.134200000000000e-01 +-2.720100000000000e-01 +-1.118000000000000e-01 + 3.543900000000000e-02 + 1.268000000000000e-01 + 1.337900000000000e-01 + 6.113400000000000e-02 +-5.620200000000000e-02 +-1.758900000000000e-01 +-2.732700000000000e-01 +-3.493500000000000e-01 +-4.167000000000000e-01 +-4.767400000000000e-01 +-5.087800000000000e-01 +-4.819600000000000e-01 +-3.815100000000000e-01 +-2.282900000000000e-01 +-7.389900000000001e-02 + 2.817700000000000e-02 + 5.666600000000000e-02 + 3.803300000000000e-02 + 3.211000000000000e-02 + 9.679699999999999e-02 + 2.545000000000000e-01 + 4.807400000000000e-01 + 7.198500000000000e-01 + 9.151899999999999e-01 + 1.034100000000000e+00 + 1.074100000000000e+00 + 1.050500000000000e+00 + 9.781000000000000e-01 + 8.604500000000000e-01 + 6.927100000000000e-01 + 4.742700000000000e-01 + 2.201500000000000e-01 +-3.801500000000000e-02 +-2.627000000000000e-01 +-4.265900000000000e-01 +-5.243200000000000e-01 +-5.728799999999999e-01 +-6.009500000000000e-01 +-6.336500000000000e-01 +-6.811300000000000e-01 +-7.364300000000000e-01 +-7.820200000000000e-01 +-7.996200000000000e-01 +-7.776900000000000e-01 +-7.140200000000000e-01 +-6.146600000000000e-01 +-4.919600000000000e-01 +-3.628700000000000e-01 +-2.458500000000000e-01 +-1.547600000000000e-01 +-9.130400000000000e-02 +-4.095600000000000e-02 + 2.221800000000000e-02 + 1.216700000000000e-01 + 2.625500000000000e-01 + 4.245700000000000e-01 + 5.701100000000000e-01 + 6.638200000000000e-01 + 6.915500000000000e-01 + 6.658900000000000e-01 + 6.149600000000000e-01 + 5.630800000000000e-01 + 5.174500000000000e-01 + 4.698100000000000e-01 + 4.096200000000000e-01 + 3.363300000000000e-01 + 2.600800000000000e-01 + 1.906500000000000e-01 + 1.258400000000000e-01 + 5.117800000000000e-02 +-4.634700000000000e-02 +-1.615200000000000e-01 +-2.663500000000000e-01 +-3.247700000000000e-01 +-3.179400000000000e-01 +-2.614300000000000e-01 +-1.998300000000000e-01 +-1.805200000000000e-01 +-2.242400000000000e-01 +-3.130400000000000e-01 +-4.037100000000000e-01 +-4.563400000000000e-01 +-4.573600000000000e-01 +-4.217600000000000e-01 +-3.755100000000000e-01 +-3.337200000000000e-01 +-2.914200000000000e-01 +-2.322800000000000e-01 +-1.458700000000000e-01 +-3.819100000000000e-02 + 7.284499999999999e-02 + 1.723700000000000e-01 + 2.604000000000000e-01 + 3.501400000000000e-01 + 4.538300000000000e-01 + 5.674500000000000e-01 + 6.666600000000000e-01 + 7.175300000000000e-01 + 6.946500000000000e-01 + 5.937600000000000e-01 + 4.313000000000000e-01 + 2.331000000000000e-01 + 2.161100000000000e-02 +-1.890100000000000e-01 +-3.883100000000000e-01 +-5.614500000000000e-01 +-6.859400000000000e-01 +-7.374500000000000e-01 +-7.014100000000000e-01 +-5.826300000000000e-01 +-4.061700000000000e-01 +-2.084200000000000e-01 +-2.336000000000000e-02 + 1.280200000000000e-01 + 2.401400000000000e-01 + 3.168200000000000e-01 + 3.620800000000000e-01 + 3.741300000000000e-01 + 3.467000000000000e-01 + 2.762300000000000e-01 + 1.699300000000000e-01 + 4.818900000000000e-02 +-6.108500000000000e-02 +-1.335400000000000e-01 +-1.582500000000000e-01 +-1.403700000000000e-01 +-9.513199999999999e-02 +-3.796100000000000e-02 + 2.260900000000000e-02 + 8.461299999999999e-02 + 1.464200000000000e-01 + 2.004600000000000e-01 + 2.326200000000000e-01 + 2.282300000000000e-01 + 1.803300000000000e-01 + 9.422899999999999e-02 +-1.447900000000000e-02 +-1.260500000000000e-01 +-2.221900000000000e-01 +-2.881600000000000e-01 +-3.128100000000000e-01 +-2.902400000000000e-01 +-2.240200000000000e-01 +-1.308400000000000e-01 +-3.771700000000000e-02 + 2.924500000000000e-02 + 5.930100000000000e-02 + 6.465600000000001e-02 + 7.374500000000000e-02 + 1.123700000000000e-01 + 1.845200000000000e-01 + 2.665700000000000e-01 + 3.197800000000000e-01 + 3.135500000000000e-01 + 2.432600000000000e-01 + 1.310100000000000e-01 + 9.329499999999999e-03 +-9.942300000000000e-02 +-1.933600000000000e-01 +-2.848000000000000e-01 +-3.839100000000000e-01 +-4.856700000000000e-01 +-5.692700000000001e-01 +-6.091100000000000e-01 +-5.875800000000000e-01 +-5.009400000000001e-01 +-3.562700000000000e-01 +-1.658500000000000e-01 + 5.464100000000000e-02 + 2.831500000000000e-01 + 4.895900000000000e-01 + 6.415500000000000e-01 + 7.171600000000000e-01 + 7.166100000000000e-01 + 6.624500000000000e-01 + 5.863800000000000e-01 + 5.104400000000000e-01 + 4.361200000000000e-01 + 3.488900000000000e-01 + 2.343600000000000e-01 + 9.296300000000000e-02 +-5.786700000000000e-02 +-1.947000000000000e-01 +-3.018000000000000e-01 +-3.755900000000000e-01 +-4.168000000000000e-01 +-4.192200000000000e-01 +-3.680000000000000e-01 +-2.525300000000000e-01 +-8.510900000000000e-02 + 9.103200000000000e-02 + 2.152400000000000e-01 + 2.391300000000000e-01 + 1.533900000000000e-01 +-7.352200000000000e-03 +-1.860900000000000e-01 +-3.366700000000000e-01 +-4.459200000000000e-01 +-5.299800000000000e-01 +-6.100100000000001e-01 +-6.869200000000000e-01 +-7.348900000000000e-01 +-7.175600000000000e-01 +-6.133999999999999e-01 +-4.303500000000000e-01 +-1.993400000000000e-01 + 4.647500000000000e-02 + 2.889400000000000e-01 + 5.252900000000000e-01 + 7.531900000000000e-01 + 9.552000000000000e-01 + 1.098200000000000e+00 + 1.150100000000000e+00 + 1.101600000000000e+00 + 9.750700000000000e-01 + 8.123899999999999e-01 + 6.499200000000001e-01 + 4.990000000000000e-01 + 3.458400000000000e-01 + 1.698000000000000e-01 +-3.510600000000000e-02 +-2.520000000000000e-01 +-4.516400000000000e-01 +-6.116400000000000e-01 +-7.281900000000000e-01 +-8.113700000000000e-01 +-8.691000000000000e-01 +-8.946600000000000e-01 +-8.694100000000000e-01 +-7.795400000000000e-01 +-6.334800000000000e-01 +-4.652100000000000e-01 +-3.193500000000000e-01 +-2.275200000000000e-01 +-1.920400000000000e-01 +-1.869600000000000e-01 +-1.741000000000000e-01 +-1.218700000000000e-01 +-1.544000000000000e-02 + 1.442400000000000e-01 + 3.462800000000000e-01 + 5.728200000000000e-01 + 7.972500000000000e-01 + 9.834500000000000e-01 + 1.092400000000000e+00 + 1.096700000000000e+00 + 9.943000000000000e-01 + 8.117300000000000e-01 + 5.923100000000000e-01 + 3.762300000000000e-01 + 1.851800000000000e-01 + 2.047200000000000e-02 +-1.264800000000000e-01 +-2.612900000000000e-01 +-3.814900000000000e-01 +-4.813600000000000e-01 +-5.598300000000000e-01 +-6.226400000000000e-01 +-6.759400000000000e-01 +-7.176000000000000e-01 +-7.353100000000000e-01 +-7.152300000000000e-01 +-6.549000000000000e-01 +-5.691000000000001e-01 +-4.820500000000000e-01 +-4.104700000000000e-01 +-3.503900000000000e-01 +-2.790700000000000e-01 +-1.720000000000000e-01 +-2.280800000000000e-02 + 1.489000000000000e-01 + 3.079800000000000e-01 + 4.249500000000000e-01 + 4.923100000000000e-01 + 5.249700000000000e-01 + 5.460500000000000e-01 + 5.703700000000000e-01 + 5.983300000000000e-01 + 6.228800000000000e-01 + 6.406200000000000e-01 + 6.553400000000000e-01 + 6.698200000000000e-01 + 6.736900000000000e-01 + 6.407500000000000e-01 + 5.422200000000000e-01 + 3.691400000000000e-01 + 1.470200000000000e-01 +-7.062700000000000e-02 +-2.292100000000000e-01 +-3.038500000000000e-01 +-3.135300000000000e-01 +-3.083800000000000e-01 +-3.385100000000000e-01 +-4.250300000000000e-01 +-5.520000000000000e-01 +-6.828300000000000e-01 +-7.875500000000000e-01 +-8.610000000000000e-01 +-9.193500000000000e-01 +-9.790500000000000e-01 +-1.034400000000000e+00 +-1.051000000000000e+00 +-9.801700000000000e-01 +-7.857900000000000e-01 +-4.669400000000000e-01 +-6.229500000000000e-02 + 3.648000000000000e-01 + 7.508700000000000e-01 + 1.052300000000000e+00 + 1.251000000000000e+00 + 1.347200000000000e+00 + 1.345800000000000e+00 + 1.248900000000000e+00 + 1.058600000000000e+00 + 7.875600000000000e-01 + 4.692700000000000e-01 + 1.572400000000000e-01 +-8.850000000000000e-02 +-2.235900000000000e-01 +-2.385000000000000e-01 +-1.638100000000000e-01 +-5.748100000000000e-02 + 1.990900000000000e-02 + 2.955400000000000e-02 +-3.380000000000000e-02 +-1.469800000000000e-01 +-2.750300000000000e-01 +-3.881000000000000e-01 +-4.696500000000000e-01 +-5.140800000000000e-01 +-5.197400000000000e-01 +-4.851800000000000e-01 +-4.117700000000000e-01 +-3.093800000000000e-01 +-1.983900000000000e-01 +-1.037700000000000e-01 +-4.389100000000000e-02 +-2.107400000000000e-02 +-2.058800000000000e-02 +-1.881100000000000e-02 + 4.665200000000000e-03 + 5.822600000000000e-02 + 1.366900000000000e-01 + 2.257000000000000e-01 + 3.076000000000000e-01 + 3.655000000000000e-01 + 3.853700000000000e-01 + 3.579700000000000e-01 + 2.816000000000000e-01 + 1.642800000000000e-01 + 2.287900000000000e-02 +-1.212600000000000e-01 +-2.474900000000000e-01 +-3.388800000000000e-01 +-3.820900000000000e-01 +-3.673600000000000e-01 +-2.917700000000000e-01 +-1.658600000000000e-01 +-1.780000000000000e-02 + 1.117000000000000e-01 + 1.854600000000000e-01 + 1.892600000000000e-01 + 1.418300000000000e-01 + 8.637000000000000e-02 + 6.671199999999999e-02 + 1.024100000000000e-01 + 1.790000000000000e-01 + 2.594200000000000e-01 + 3.076700000000000e-01 + 3.078900000000000e-01 + 2.663600000000000e-01 + 1.985200000000000e-01 + 1.141800000000000e-01 + 1.435800000000000e-02 +-9.875000000000000e-02 +-2.095700000000000e-01 +-2.888400000000000e-01 +-3.089300000000000e-01 +-2.643800000000000e-01 +-1.805100000000000e-01 +-1.011200000000000e-01 +-6.248100000000000e-02 +-7.209800000000000e-02 +-1.077000000000000e-01 +-1.361800000000000e-01 +-1.373000000000000e-01 +-1.139600000000000e-01 +-8.311700000000000e-02 +-5.710700000000000e-02 +-3.254800000000000e-02 + 4.112300000000000e-03 + 6.032000000000000e-02 + 1.259200000000000e-01 + 1.774100000000000e-01 + 1.947500000000000e-01 + 1.760500000000000e-01 + 1.371300000000000e-01 + 9.621800000000000e-02 + 5.730200000000000e-02 + 7.334300000000000e-03 +-6.930000000000000e-02 +-1.707600000000000e-01 +-2.693800000000000e-01 +-3.233000000000000e-01 +-3.002700000000000e-01 +-1.965500000000000e-01 +-3.788100000000000e-02 + 1.359500000000000e-01 + 2.897700000000000e-01 + 4.019700000000000e-01 + 4.616700000000000e-01 + 4.625900000000000e-01 + 4.034000000000000e-01 + 2.949800000000000e-01 + 1.650000000000000e-01 + 5.032800000000000e-02 +-2.213400000000000e-02 +-5.297300000000000e-02 +-7.089900000000000e-02 +-1.128000000000000e-01 +-1.959800000000000e-01 +-3.032000000000000e-01 +-3.923600000000000e-01 +-4.245900000000000e-01 +-3.900700000000000e-01 +-3.130700000000000e-01 +-2.337300000000000e-01 +-1.811000000000000e-01 +-1.574400000000000e-01 +-1.427500000000000e-01 +-1.128800000000000e-01 +-5.570000000000000e-02 + 2.558900000000000e-02 + 1.198900000000000e-01 + 2.164300000000000e-01 + 3.058400000000000e-01 + 3.758600000000000e-01 + 4.101100000000000e-01 + 3.952100000000000e-01 + 3.320900000000000e-01 + 2.407700000000000e-01 + 1.515900000000000e-01 + 8.745900000000000e-02 + 5.064700000000000e-02 + 2.490100000000000e-02 +-8.535100000000000e-03 +-5.454900000000000e-02 +-1.014400000000000e-01 +-1.338900000000000e-01 +-1.495200000000000e-01 +-1.629600000000000e-01 +-1.923600000000000e-01 +-2.390900000000000e-01 +-2.793200000000000e-01 +-2.772000000000000e-01 +-2.113700000000000e-01 +-9.417499999999999e-02 + 3.278800000000000e-02 + 1.247700000000000e-01 + 1.620400000000000e-01 + 1.587400000000000e-01 + 1.462200000000000e-01 + 1.451800000000000e-01 + 1.491200000000000e-01 + 1.320500000000000e-01 + 7.313799999999999e-02 +-2.254900000000000e-02 +-1.240800000000000e-01 +-1.951000000000000e-01 +-2.178900000000000e-01 +-2.020200000000000e-01 +-1.721600000000000e-01 +-1.463900000000000e-01 +-1.228000000000000e-01 +-8.431200000000000e-02 +-1.555100000000000e-02 + 8.302700000000000e-02 + 1.949700000000000e-01 + 2.996700000000000e-01 + 3.842700000000000e-01 + 4.449300000000000e-01 + 4.774100000000000e-01 + 4.676500000000000e-01 + 3.935100000000000e-01 + 2.393300000000000e-01 + 1.356800000000000e-02 +-2.447600000000000e-01 +-4.773400000000000e-01 +-6.300500000000000e-01 +-6.747800000000000e-01 +-6.173800000000000e-01 +-4.893500000000000e-01 +-3.303200000000000e-01 +-1.720200000000000e-01 +-3.078500000000000e-02 + 9.109700000000000e-02 + 1.987300000000000e-01 + 2.970400000000000e-01 + 3.847300000000000e-01 + 4.514600000000000e-01 + 4.793800000000000e-01 + 4.499700000000000e-01 + 3.540200000000000e-01 + 2.001600000000000e-01 + 1.597500000000000e-02 +-1.601900000000000e-01 +-2.936100000000000e-01 +-3.659300000000000e-01 +-3.794300000000000e-01 +-3.514700000000000e-01 +-3.032700000000000e-01 +-2.502200000000000e-01 +-1.979000000000000e-01 +-1.438900000000000e-01 +-8.206900000000000e-02 +-6.491100000000000e-03 + 8.584000000000000e-02 + 1.925600000000000e-01 + 3.039000000000000e-01 + 4.028000000000000e-01 + 4.688900000000000e-01 + 4.858100000000000e-01 + 4.481400000000000e-01 + 3.633300000000000e-01 + 2.469600000000000e-01 + 1.145000000000000e-01 +-2.471000000000000e-02 +-1.669000000000000e-01 +-3.076500000000000e-01 +-4.353500000000000e-01 +-5.303800000000000e-01 +-5.716000000000000e-01 +-5.468000000000000e-01 +-4.600900000000000e-01 +-3.315500000000000e-01 +-1.890200000000000e-01 +-5.679400000000000e-02 + 5.285200000000000e-02 + 1.415100000000000e-01 + 2.197700000000000e-01 + 2.989100000000000e-01 + 3.831100000000000e-01 + 4.654000000000000e-01 + 5.287600000000000e-01 + 5.516400000000000e-01 + 5.159899999999999e-01 + 4.145600000000000e-01 + 2.547200000000000e-01 + 5.739200000000000e-02 +-1.484800000000000e-01 +-3.335400000000000e-01 +-4.748300000000000e-01 +-5.598100000000000e-01 +-5.869500000000000e-01 +-5.636200000000000e-01 +-5.023100000000000e-01 +-4.166000000000000e-01 +-3.179800000000000e-01 +-2.145700000000000e-01 +-1.118200000000000e-01 +-1.411100000000000e-02 + 7.440500000000000e-02 + 1.509200000000000e-01 + 2.161600000000000e-01 + 2.752300000000000e-01 + 3.348300000000000e-01 + 3.975300000000000e-01 + 4.570300000000000e-01 + 4.987900000000000e-01 + 5.072600000000000e-01 + 4.755700000000000e-01 + 4.104900000000000e-01 + 3.281600000000000e-01 + 2.428900000000000e-01 + 1.572400000000000e-01 + 6.199100000000000e-02 +-5.307800000000000e-02 +-1.852100000000000e-01 +-3.129300000000000e-01 +-4.047100000000000e-01 +-4.373300000000000e-01 +-4.112300000000000e-01 +-3.516100000000000e-01 +-2.938100000000000e-01 +-2.630800000000000e-01 +-2.622900000000000e-01 +-2.749300000000000e-01 +-2.792800000000000e-01 +-2.623100000000000e-01 +-2.240300000000000e-01 +-1.716600000000000e-01 +-1.111600000000000e-01 +-4.417500000000000e-02 + 2.784300000000000e-02 + 9.801700000000001e-02 + 1.536700000000000e-01 + 1.829400000000000e-01 + 1.830200000000000e-01 + 1.628800000000000e-01 + 1.379800000000000e-01 + 1.214100000000000e-01 + 1.188600000000000e-01 + 1.306500000000000e-01 + 1.571600000000000e-01 + 2.005800000000000e-01 + 2.600000000000000e-01 + 3.241200000000000e-01 + 3.701600000000000e-01 + 3.733000000000000e-01 + 3.221100000000000e-01 + 2.283400000000000e-01 + 1.224400000000000e-01 + 3.623000000000000e-02 +-1.533700000000000e-02 +-4.023100000000000e-02 +-5.917900000000000e-02 +-8.781300000000000e-02 +-1.253500000000000e-01 +-1.583000000000000e-01 +-1.750400000000000e-01 +-1.784300000000000e-01 +-1.852600000000000e-01 +-2.129300000000000e-01 +-2.643800000000000e-01 +-3.241600000000000e-01 +-3.690700000000000e-01 +-3.848800000000000e-01 +-3.752400000000000e-01 +-3.553500000000000e-01 +-3.354500000000000e-01 +-3.078200000000000e-01 +-2.489100000000000e-01 +-1.363300000000000e-01 + 3.095000000000000e-02 + 2.242800000000000e-01 + 3.956600000000000e-01 + 5.008100000000000e-01 + 5.204600000000000e-01 + 4.673100000000000e-01 + 3.755200000000000e-01 + 2.808800000000000e-01 + 2.040000000000000e-01 + 1.454700000000000e-01 + 9.351200000000000e-02 + 3.746400000000000e-02 +-2.198300000000000e-02 +-7.139900000000000e-02 +-9.216000000000001e-02 +-7.192500000000000e-02 +-1.338100000000000e-02 + 6.474900000000000e-02 + 1.352200000000000e-01 + 1.744900000000000e-01 + 1.732300000000000e-01 + 1.391600000000000e-01 + 9.069500000000000e-02 + 4.481900000000000e-02 + 6.471400000000000e-03 +-3.420900000000000e-02 +-9.508300000000000e-02 +-1.897200000000000e-01 +-3.168000000000000e-01 +-4.571500000000000e-01 +-5.794400000000000e-01 +-6.511800000000000e-01 +-6.493700000000000e-01 +-5.669000000000000e-01 +-4.134000000000000e-01 +-2.119000000000000e-01 + 7.367000000000000e-03 + 2.144100000000000e-01 + 3.868700000000000e-01 + 5.151000000000000e-01 + 6.025500000000000e-01 + 6.603100000000000e-01 + 6.981100000000000e-01 + 7.164000000000000e-01 + 7.044100000000000e-01 + 6.457800000000000e-01 + 5.286999999999999e-01 + 3.546100000000000e-01 + 1.402400000000000e-01 +-8.815900000000000e-02 +-3.046100000000000e-01 +-4.915900000000000e-01 +-6.423600000000000e-01 +-7.570300000000000e-01 +-8.360800000000000e-01 +-8.754200000000000e-01 +-8.663200000000000e-01 +-7.994599999999999e-01 +-6.708400000000000e-01 +-4.858500000000000e-01 +-2.598700000000000e-01 +-1.517500000000000e-02 + 2.241100000000000e-01 + 4.368000000000000e-01 + 6.077800000000000e-01 + 7.290300000000000e-01 + 7.987900000000000e-01 + 8.196300000000000e-01 + 7.960000000000000e-01 + 7.317500000000000e-01 + 6.286000000000000e-01 + 4.864700000000000e-01 + 3.061500000000000e-01 + 9.352199999999999e-02 +-1.370000000000000e-01 +-3.622200000000000e-01 +-5.541900000000000e-01 +-6.870300000000000e-01 +-7.430600000000001e-01 +-7.154000000000000e-01 +-6.071400000000000e-01 +-4.294200000000000e-01 +-2.013600000000000e-01 + 4.837100000000000e-02 + 2.820500000000000e-01 + 4.596800000000000e-01 + 5.518999999999999e-01 + 5.528700000000000e-01 + 4.837800000000000e-01 + 3.820600000000000e-01 + 2.807300000000000e-01 + 1.908500000000000e-01 + 9.955500000000000e-02 +-1.402500000000000e-02 +-1.558600000000000e-01 +-3.045900000000000e-01 +-4.204200000000000e-01 +-4.703200000000000e-01 +-4.517700000000000e-01 +-3.967400000000000e-01 +-3.517300000000000e-01 +-3.474600000000000e-01 +-3.799900000000000e-01 +-4.167300000000000e-01 +-4.221100000000000e-01 +-3.828700000000000e-01 +-3.137000000000000e-01 +-2.398700000000000e-01 +-1.716000000000000e-01 +-9.163900000000000e-02 + 3.317600000000000e-02 + 2.243700000000000e-01 + 4.693500000000000e-01 + 7.211900000000000e-01 + 9.213600000000000e-01 + 1.029200000000000e+00 + 1.038400000000000e+00 + 9.714000000000000e-01 + 8.589400000000000e-01 + 7.221100000000000e-01 + 5.680300000000000e-01 + 3.986100000000000e-01 + 2.211400000000000e-01 + 5.007000000000000e-02 +-1.011600000000000e-01 +-2.299800000000000e-01 +-3.464400000000000e-01 +-4.647700000000000e-01 +-5.912400000000000e-01 +-7.180200000000000e-01 +-8.271800000000000e-01 +-9.004700000000000e-01 +-9.265700000000000e-01 +-9.014799999999999e-01 +-8.244100000000000e-01 +-6.959700000000000e-01 +-5.222000000000000e-01 +-3.211000000000000e-01 +-1.240100000000000e-01 + 3.298300000000000e-02 + 1.244800000000000e-01 + 1.485400000000000e-01 + 1.281300000000000e-01 + 1.000400000000000e-01 + 9.839199999999999e-02 + 1.425500000000000e-01 + 2.345800000000000e-01 + 3.640900000000000e-01 + 5.141000000000000e-01 + 6.640100000000000e-01 + 7.904400000000000e-01 + 8.700500000000000e-01 + 8.859600000000000e-01 + 8.347500000000000e-01 + 7.280200000000000e-01 + 5.860400000000000e-01 + 4.267400000000000e-01 + 2.581600000000000e-01 + 7.991200000000000e-02 +-1.075200000000000e-01 +-2.937100000000000e-01 +-4.575400000000000e-01 +-5.764000000000000e-01 +-6.389600000000000e-01 +-6.518900000000000e-01 +-6.354400000000000e-01 +-6.112200000000000e-01 +-5.910600000000000e-01 +-5.741000000000001e-01 +-5.522100000000000e-01 +-5.174500000000000e-01 +-4.646100000000000e-01 +-3.882200000000000e-01 +-2.792100000000000e-01 +-1.280200000000000e-01 + 6.506400000000000e-02 + 2.794900000000000e-01 + 4.741100000000000e-01 + 6.018600000000000e-01 + 6.331700000000000e-01 + 5.741700000000000e-01 + 4.664300000000000e-01 + 3.664200000000000e-01 + 3.156600000000000e-01 + 3.196100000000000e-01 + 3.478400000000000e-01 + 3.546300000000000e-01 + 3.064700000000000e-01 + 1.991900000000000e-01 + 5.562400000000000e-02 +-9.203699999999999e-02 +-2.213400000000000e-01 +-3.271600000000000e-01 +-4.143700000000000e-01 +-4.837000000000000e-01 +-5.232800000000000e-01 +-5.134700000000000e-01 +-4.416100000000000e-01 +-3.152100000000000e-01 +-1.629000000000000e-01 +-2.132000000000000e-02 + 8.338100000000000e-02 + 1.466600000000000e-01 + 1.818600000000000e-01 + 2.053200000000000e-01 + 2.219200000000000e-01 + 2.222500000000000e-01 + 1.932900000000000e-01 + 1.338900000000000e-01 + 6.229100000000000e-02 + 8.779300000000000e-03 +-2.275700000000000e-03 + 3.171000000000000e-02 + 8.925000000000000e-02 + 1.379800000000000e-01 + 1.541700000000000e-01 + 1.350700000000000e-01 + 9.649400000000000e-02 + 5.860500000000000e-02 + 3.130700000000000e-02 + 9.600200000000000e-03 +-1.904000000000000e-02 +-6.242100000000000e-02 +-1.166200000000000e-01 +-1.690600000000000e-01 +-2.079700000000000e-01 +-2.294900000000000e-01 +-2.364000000000000e-01 +-2.301900000000000e-01 +-2.043400000000000e-01 +-1.462200000000000e-01 +-4.790700000000000e-02 + 8.153400000000000e-02 + 2.123100000000000e-01 + 3.034100000000000e-01 + 3.210600000000000e-01 + 2.555200000000000e-01 + 1.266100000000000e-01 +-2.497400000000000e-02 +-1.547500000000000e-01 +-2.309000000000000e-01 +-2.427300000000000e-01 +-1.994600000000000e-01 +-1.225900000000000e-01 +-3.656000000000000e-02 + 3.875500000000000e-02 + 9.218200000000000e-02 + 1.217900000000000e-01 + 1.321200000000000e-01 + 1.293200000000000e-01 + 1.167000000000000e-01 + 9.350200000000000e-02 + 5.825300000000000e-02 + 1.425700000000000e-02 +-2.723100000000000e-02 +-5.008700000000000e-02 +-4.203300000000000e-02 +-3.478000000000000e-03 + 5.028300000000000e-02 + 9.622100000000000e-02 + 1.159500000000000e-01 + 1.049000000000000e-01 + 7.190100000000001e-02 + 2.984500000000000e-02 +-1.492600000000000e-02 +-6.587400000000000e-02 +-1.295300000000000e-01 +-2.044400000000000e-01 +-2.753800000000000e-01 +-3.185900000000000e-01 +-3.151100000000000e-01 +-2.624700000000000e-01 +-1.761200000000000e-01 +-7.952700000000000e-02 + 9.514000000000000e-03 + 8.669000000000000e-02 + 1.585000000000000e-01 + 2.329600000000000e-01 + 3.118700000000000e-01 + 3.898900000000000e-01 + 4.587600000000000e-01 + 5.107600000000000e-01 + 5.372300000000000e-01 + 5.247500000000000e-01 + 4.557200000000000e-01 + 3.171800000000000e-01 + 1.140000000000000e-01 +-1.243200000000000e-01 +-3.512900000000000e-01 +-5.238800000000000e-01 +-6.230900000000000e-01 +-6.601300000000000e-01 +-6.633100000000000e-01 +-6.547100000000000e-01 +-6.341599999999999e-01 +-5.822600000000000e-01 +-4.798100000000000e-01 +-3.282100000000000e-01 +-1.546300000000000e-01 + 2.139700000000000e-03 + 1.141400000000000e-01 + 1.782200000000000e-01 + 2.120100000000000e-01 + 2.372800000000000e-01 + 2.652300000000000e-01 + 2.951500000000000e-01 + 3.250300000000000e-01 + 3.618100000000000e-01 + 4.194800000000000e-01 + 5.045400000000000e-01 + 6.013300000000000e-01 + 6.716800000000001e-01 + 6.732900000000001e-01 + 5.856700000000000e-01 + 4.249900000000000e-01 + 2.362100000000000e-01 + 6.705100000000000e-02 +-5.848600000000000e-02 +-1.491400000000000e-01 +-2.330500000000000e-01 +-3.328600000000000e-01 +-4.470900000000000e-01 +-5.494700000000000e-01 +-6.046800000000000e-01 +-5.887100000000000e-01 +-5.011300000000000e-01 +-3.643100000000000e-01 +-2.131700000000000e-01 +-8.262700000000001e-02 + 2.154100000000000e-03 + 3.129500000000000e-02 + 1.176200000000000e-02 +-3.542200000000000e-02 +-8.290699999999999e-02 +-1.079500000000000e-01 +-1.015000000000000e-01 +-6.988600000000000e-02 +-2.772700000000000e-02 + 1.286100000000000e-02 + 4.863900000000000e-02 + 8.255899999999999e-02 + 1.151800000000000e-01 + 1.388500000000000e-01 + 1.411600000000000e-01 + 1.158500000000000e-01 + 7.170899999999999e-02 + 3.002200000000000e-02 + 1.039200000000000e-02 + 1.497000000000000e-02 + 2.432300000000000e-02 + 1.019400000000000e-02 +-4.276100000000000e-02 +-1.221300000000000e-01 +-1.916200000000000e-01 +-2.119300000000000e-01 +-1.646100000000000e-01 +-6.245200000000000e-02 + 5.974000000000000e-02 + 1.666300000000000e-01 + 2.410600000000000e-01 + 2.889400000000000e-01 + 3.301300000000000e-01 + 3.843800000000000e-01 + 4.618500000000000e-01 + 5.614600000000000e-01 + 6.734800000000000e-01 + 7.809800000000000e-01 + 8.592300000000000e-01 + 8.768899999999999e-01 + 8.031500000000000e-01 + 6.202000000000000e-01 + 3.346800000000000e-01 +-1.918400000000000e-02 +-3.881200000000000e-01 +-7.162200000000000e-01 +-9.616000000000000e-01 +-1.106900000000000e+00 +-1.160600000000000e+00 +-1.151800000000000e+00 +-1.118700000000000e+00 +-1.096100000000000e+00 +-1.102600000000000e+00 +-1.133800000000000e+00 +-1.164100000000000e+00 +-1.158400000000000e+00 +-1.088700000000000e+00 +-9.449100000000000e-01 +-7.352000000000000e-01 +-4.749800000000000e-01 +-1.747400000000000e-01 + 1.634400000000000e-01 + 5.376200000000000e-01 + 9.328800000000000e-01 + 1.315300000000000e+00 + 1.640200000000000e+00 + 1.870200000000000e+00 + 1.991400000000000e+00 + 2.014200000000000e+00 + 1.961500000000000e+00 + 1.850400000000000e+00 + 1.684500000000000e+00 + 1.459300000000000e+00 + 1.176100000000000e+00 + 8.505600000000000e-01 + 5.097300000000000e-01 + 1.785700000000000e-01 +-1.319800000000000e-01 +-4.262200000000000e-01 +-7.137500000000000e-01 +-9.968300000000000e-01 +-1.264900000000000e+00 +-1.498900000000000e+00 +-1.680800000000000e+00 +-1.798400000000000e+00 +-1.844400000000000e+00 +-1.812000000000000e+00 +-1.695000000000000e+00 +-1.493800000000000e+00 +-1.223400000000000e+00 +-9.141700000000000e-01 +-6.029600000000001e-01 +-3.190200000000000e-01 +-7.501900000000000e-02 + 1.305300000000000e-01 + 3.022800000000000e-01 + 4.382700000000000e-01 + 5.301100000000000e-01 + 5.729100000000000e-01 + 5.762800000000000e-01 + 5.662700000000001e-01 + 5.752400000000000e-01 + 6.264200000000000e-01 + 7.238500000000000e-01 + 8.536700000000000e-01 + 9.936000000000000e-01 + 1.121800000000000e+00 + 1.219200000000000e+00 + 1.266000000000000e+00 + 1.240300000000000e+00 + 1.124700000000000e+00 + 9.176500000000000e-01 + 6.416100000000000e-01 + 3.398500000000000e-01 + 6.033400000000000e-02 +-1.638700000000000e-01 +-3.259400000000000e-01 +-4.422900000000000e-01 +-5.384500000000000e-01 +-6.340900000000000e-01 +-7.356100000000000e-01 +-8.382500000000001e-01 +-9.324100000000000e-01 +-1.008100000000000e+00 +-1.055200000000000e+00 +-1.062600000000000e+00 +-1.019600000000000e+00 +-9.212300000000000e-01 +-7.731700000000000e-01 +-5.920000000000000e-01 +-4.000300000000000e-01 +-2.177000000000000e-01 +-5.859900000000000e-02 + 7.064700000000000e-02 + 1.677000000000000e-01 + 2.333300000000000e-01 + 2.735100000000000e-01 + 3.024300000000000e-01 + 3.413100000000000e-01 + 4.105900000000000e-01 + 5.183500000000000e-01 + 6.522000000000000e-01 + 7.809300000000000e-01 + 8.666300000000000e-01 + 8.811099999999999e-01 + 8.175700000000000e-01 + 6.915300000000000e-01 + 5.316000000000000e-01 + 3.661000000000000e-01 + 2.129600000000000e-01 + 7.707100000000000e-02 +-4.556800000000000e-02 +-1.609000000000000e-01 +-2.710200000000000e-01 +-3.718500000000000e-01 +-4.541500000000000e-01 +-5.067000000000000e-01 +-5.204500000000000e-01 +-4.924600000000000e-01 +-4.282100000000000e-01 +-3.413500000000000e-01 +-2.501400000000000e-01 +-1.715600000000000e-01 +-1.154600000000000e-01 +-8.154900000000000e-02 +-6.094700000000000e-02 +-4.192700000000000e-02 +-1.708200000000000e-02 + 1.176000000000000e-02 + 3.376700000000000e-02 + 3.492900000000000e-02 + 6.862000000000000e-03 +-4.606700000000000e-02 +-1.057300000000000e-01 +-1.468900000000000e-01 +-1.487500000000000e-01 +-1.052800000000000e-01 +-2.811900000000000e-02 + 6.024700000000000e-02 + 1.392700000000000e-01 + 2.013800000000000e-01 + 2.540000000000000e-01 + 3.109500000000000e-01 + 3.787600000000000e-01 + 4.472300000000000e-01 + 4.911700000000000e-01 + 4.828300000000000e-01 + 4.073700000000000e-01 + 2.717400000000000e-01 + 1.016700000000000e-01 +-7.014700000000000e-02 +-2.168600000000000e-01 +-3.234900000000000e-01 +-3.851300000000000e-01 +-4.020700000000000e-01 +-3.779900000000000e-01 +-3.229400000000000e-01 +-2.566200000000000e-01 +-2.055300000000000e-01 +-1.916100000000000e-01 +-2.182200000000000e-01 +-2.635300000000000e-01 +-2.885400000000000e-01 +-2.571800000000000e-01 +-1.567600000000000e-01 +-5.772600000000000e-03 + 1.562800000000000e-01 + 2.900700000000000e-01 + 3.746500000000000e-01 + 4.116800000000000e-01 + 4.155000000000000e-01 + 3.989500000000000e-01 + 3.663800000000000e-01 + 3.177500000000000e-01 + 2.572800000000000e-01 + 1.962000000000000e-01 + 1.453000000000000e-01 + 1.032500000000000e-01 + 5.268000000000000e-02 +-2.919500000000000e-02 +-1.509700000000000e-01 +-2.937100000000000e-01 +-4.166500000000000e-01 +-4.812200000000000e-01 +-4.772000000000000e-01 +-4.311600000000000e-01 +-3.887500000000000e-01 +-3.817000000000000e-01 +-4.028300000000000e-01 +-4.075900000000000e-01 +-3.421400000000000e-01 +-1.789100000000000e-01 + 6.444100000000000e-02 + 3.344100000000000e-01 + 5.707200000000000e-01 + 7.341700000000000e-01 + 8.160300000000000e-01 + 8.273700000000000e-01 + 7.814100000000000e-01 + 6.840100000000000e-01 + 5.373000000000000e-01 + 3.491200000000000e-01 + 1.367900000000000e-01 +-7.891100000000000e-02 +-2.832400000000000e-01 +-4.704100000000000e-01 +-6.365600000000000e-01 +-7.699700000000000e-01 +-8.495200000000001e-01 +-8.553500000000001e-01 +-7.836000000000000e-01 +-6.515800000000000e-01 +-4.866600000000000e-01 +-3.068600000000000e-01 +-1.100600000000000e-01 + 1.165300000000000e-01 + 3.723100000000000e-01 + 6.246600000000000e-01 + 8.143500000000000e-01 + 8.856700000000000e-01 + 8.215200000000000e-01 + 6.568300000000000e-01 + 4.588000000000000e-01 + 2.867200000000000e-01 + 1.601000000000000e-01 + 5.755300000000000e-02 +-5.504500000000000e-02 +-1.902500000000000e-01 +-3.255500000000000e-01 +-4.194800000000000e-01 +-4.426200000000000e-01 +-3.977100000000000e-01 +-3.139900000000000e-01 +-2.230600000000000e-01 +-1.381000000000000e-01 +-5.406600000000000e-02 + 3.343200000000000e-02 + 1.095800000000000e-01 + 1.412100000000000e-01 + 9.900200000000001e-02 +-1.652400000000000e-02 +-1.674700000000000e-01 +-2.976500000000000e-01 +-3.649600000000000e-01 +-3.628900000000000e-01 +-3.155700000000000e-01 +-2.521400000000000e-01 +-1.821200000000000e-01 +-9.171500000000000e-02 + 3.718300000000000e-02 + 2.021600000000000e-01 + 3.713600000000000e-01 + 4.989200000000000e-01 + 5.534500000000000e-01 + 5.378800000000000e-01 + 4.858100000000000e-01 + 4.374500000000000e-01 + 4.128300000000000e-01 + 4.008100000000000e-01 + 3.695800000000000e-01 + 2.892200000000000e-01 + 1.504100000000000e-01 +-3.118600000000000e-02 +-2.238600000000000e-01 +-3.933700000000000e-01 +-5.124900000000000e-01 +-5.645000000000000e-01 +-5.433900000000000e-01 +-4.544500000000000e-01 +-3.151600000000000e-01 +-1.536200000000000e-01 +-2.713100000000000e-03 + 1.087700000000000e-01 + 1.638900000000000e-01 + 1.608400000000000e-01 + 1.114400000000000e-01 + 3.656100000000000e-02 +-3.951800000000000e-02 +-9.523700000000000e-02 +-1.184100000000000e-01 +-1.116800000000000e-01 +-9.320500000000000e-02 +-8.988599999999999e-02 +-1.241900000000000e-01 +-2.007800000000000e-01 +-3.006600000000000e-01 +-3.870000000000000e-01 +-4.201100000000000e-01 +-3.737200000000000e-01 +-2.447400000000000e-01 +-5.331800000000000e-02 + 1.648600000000000e-01 + 3.692100000000000e-01 + 5.241500000000000e-01 + 6.069600000000001e-01 + 6.126000000000000e-01 + 5.543000000000000e-01 + 4.580700000000000e-01 + 3.522400000000000e-01 + 2.563800000000000e-01 + 1.761600000000000e-01 + 1.071200000000000e-01 + 4.441500000000000e-02 +-9.350600000000001e-03 +-4.486800000000000e-02 +-5.484200000000000e-02 +-4.299700000000000e-02 +-2.445100000000000e-02 +-1.529600000000000e-02 +-1.873200000000000e-02 +-1.951900000000000e-02 + 6.617700000000000e-03 + 7.323100000000000e-02 + 1.665200000000000e-01 + 2.445200000000000e-01 + 2.545800000000000e-01 + 1.595800000000000e-01 +-4.227100000000000e-02 +-3.143400000000000e-01 +-5.949200000000000e-01 +-8.183800000000000e-01 +-9.343700000000000e-01 +-9.195600000000000e-01 +-7.817700000000000e-01 +-5.575300000000000e-01 +-3.030200000000000e-01 +-7.776500000000000e-02 + 7.518700000000000e-02 + 1.446300000000000e-01 + 1.525700000000000e-01 + 1.387500000000000e-01 + 1.363600000000000e-01 + 1.536500000000000e-01 + 1.737600000000000e-01 + 1.723400000000000e-01 + 1.402400000000000e-01 + 9.424700000000000e-02 + 6.783800000000000e-02 + 8.873100000000000e-02 + 1.598200000000000e-01 + 2.574800000000000e-01 + 3.481600000000000e-01 + 4.107600000000000e-01 + 4.484700000000000e-01 + 4.822800000000000e-01 + 5.318600000000000e-01 + 5.983500000000000e-01 + 6.610400000000000e-01 + 6.889000000000000e-01 + 6.578600000000000e-01 + 5.615500000000000e-01 + 4.097500000000000e-01 + 2.184100000000000e-01 + 2.208000000000000e-04 +-2.369600000000000e-01 +-4.839100000000000e-01 +-7.223900000000000e-01 +-9.234700000000000e-01 +-1.054700000000000e+00 +-1.092800000000000e+00 +-1.034700000000000e+00 +-8.994700000000000e-01 +-7.206500000000000e-01 +-5.317100000000000e-01 +-3.527600000000000e-01 +-1.857800000000000e-01 +-2.110500000000000e-02 + 1.483300000000000e-01 + 3.138300000000000e-01 + 4.478200000000000e-01 + 5.144700000000000e-01 + 4.892200000000000e-01 + 3.756600000000000e-01 + 2.089600000000000e-01 + 4.236100000000000e-02 +-7.588700000000000e-02 +-1.219100000000000e-01 +-1.010100000000000e-01 +-3.706100000000000e-02 + 4.460100000000000e-02 + 1.285900000000000e-01 + 2.089700000000000e-01 + 2.805200000000000e-01 + 3.314600000000000e-01 + 3.453700000000000e-01 + 3.114300000000000e-01 + 2.348100000000000e-01 + 1.380700000000000e-01 + 5.164200000000000e-02 +-6.944200000000000e-04 +-1.166000000000000e-02 + 9.780799999999999e-03 + 4.668800000000000e-02 + 8.333200000000000e-02 + 1.094600000000000e-01 + 1.193400000000000e-01 + 1.097200000000000e-01 + 8.017299999999999e-02 + 3.535400000000000e-02 +-1.506400000000000e-02 +-6.126600000000000e-02 +-1.006000000000000e-01 +-1.409000000000000e-01 +-1.949800000000000e-01 +-2.684600000000000e-01 +-3.495300000000000e-01 +-4.097100000000000e-01 +-4.173400000000000e-01 +-3.562300000000000e-01 +-2.368300000000000e-01 +-9.214500000000000e-02 + 3.926000000000000e-02 + 1.320000000000000e-01 + 1.828300000000000e-01 + 2.058000000000000e-01 + 2.190400000000000e-01 + 2.331300000000000e-01 + 2.474800000000000e-01 + 2.543100000000000e-01 + 2.442000000000000e-01 + 2.087300000000000e-01 + 1.401600000000000e-01 + 3.189200000000000e-02 +-1.174500000000000e-01 +-2.981200000000000e-01 +-4.865400000000000e-01 +-6.496900000000000e-01 +-7.549900000000000e-01 +-7.799400000000000e-01 +-7.156900000000000e-01 +-5.640900000000000e-01 +-3.335200000000000e-01 +-3.913300000000000e-02 + 2.916400000000000e-01 + 6.141900000000000e-01 + 8.707400000000000e-01 + 1.006300000000000e+00 + 9.907600000000000e-01 + 8.339100000000000e-01 + 5.844900000000000e-01 + 3.111100000000000e-01 + 7.574100000000000e-02 +-8.612100000000000e-02 +-1.694700000000000e-01 +-1.890200000000000e-01 +-1.634600000000000e-01 +-1.056200000000000e-01 +-2.311500000000000e-02 + 7.439700000000000e-02 + 1.695000000000000e-01 + 2.390500000000000e-01 + 2.632800000000000e-01 + 2.357700000000000e-01 + 1.670700000000000e-01 + 7.915600000000000e-02 +-6.007000000000000e-03 +-7.686999999999999e-02 +-1.356700000000000e-01 +-1.934500000000000e-01 +-2.606100000000000e-01 +-3.390500000000000e-01 +-4.203800000000000e-01 +-4.904700000000000e-01 +-5.367100000000000e-01 +-5.533000000000000e-01 +-5.418600000000000e-01 +-5.086500000000000e-01 +-4.612700000000000e-01 +-4.077000000000000e-01 +-3.570900000000000e-01 +-3.195100000000000e-01 +-3.020000000000000e-01 +-3.016900000000000e-01 +-3.007600000000000e-01 +-2.686900000000000e-01 +-1.737900000000000e-01 + 8.491900000000000e-04 + 2.457300000000000e-01 + 5.255800000000000e-01 + 7.928500000000001e-01 + 1.006600000000000e+00 + 1.146300000000000e+00 + 1.212300000000000e+00 + 1.216500000000000e+00 + 1.168400000000000e+00 + 1.068700000000000e+00 + 9.127500000000000e-01 + 6.999700000000000e-01 + 4.424900000000000e-01 + 1.661100000000000e-01 +-9.642500000000000e-02 +-3.158600000000000e-01 +-4.753100000000000e-01 +-5.745100000000000e-01 +-6.289400000000001e-01 +-6.643400000000000e-01 +-7.074800000000000e-01 +-7.748500000000000e-01 +-8.633600000000000e-01 +-9.485800000000000e-01 +-9.939500000000000e-01 +-9.682700000000000e-01 +-8.625000000000000e-01 +-6.955500000000000e-01 +-5.046100000000000e-01 +-3.258600000000000e-01 +-1.778000000000000e-01 +-5.755900000000000e-02 + 4.922200000000000e-02 + 1.538800000000000e-01 + 2.569500000000000e-01 + 3.515900000000000e-01 + 4.323900000000000e-01 + 5.001000000000000e-01 + 5.571300000000000e-01 + 5.992200000000000e-01 + 6.136500000000000e-01 + 5.893100000000000e-01 + 5.328100000000000e-01 + 4.761400000000000e-01 + 4.653600000000000e-01 + 5.335299999999999e-01 + 6.748700000000000e-01 + 8.389000000000000e-01 + 9.508200000000000e-01 + 9.461100000000000e-01 + 7.979800000000000e-01 + 5.224000000000000e-01 + 1.623300000000000e-01 +-2.336900000000000e-01 +-6.231500000000000e-01 +-9.683400000000000e-01 +-1.232100000000000e+00 +-1.382500000000000e+00 +-1.407600000000000e+00 +-1.328200000000000e+00 +-1.192400000000000e+00 +-1.051400000000000e+00 +-9.278300000000000e-01 +-8.021200000000001e-01 +-6.274400000000000e-01 +-3.664400000000000e-01 +-2.377200000000000e-02 + 3.484600000000000e-01 + 6.765600000000001e-01 + 9.039700000000001e-01 + 1.016300000000000e+00 + 1.037500000000000e+00 + 1.004100000000000e+00 + 9.391100000000000e-01 + 8.440200000000000e-01 + 7.119799999999999e-01 + 5.467500000000000e-01 + 3.703000000000000e-01 + 2.127400000000000e-01 + 9.368700000000001e-02 + 1.083000000000000e-02 +-5.551900000000000e-02 +-1.266700000000000e-01 +-2.116600000000000e-01 +-3.051600000000000e-01 +-3.962300000000000e-01 +-4.782300000000000e-01 +-5.505000000000000e-01 +-6.113700000000000e-01 +-6.501300000000000e-01 +-6.467800000000000e-01 +-5.814600000000000e-01 +-4.473300000000000e-01 +-2.575300000000000e-01 +-4.192800000000000e-02 + 1.635500000000000e-01 + 3.281200000000000e-01 + 4.327400000000000e-01 + 4.718600000000000e-01 + 4.528800000000000e-01 + 3.943800000000000e-01 + 3.221200000000000e-01 + 2.610300000000000e-01 + 2.253300000000000e-01 + 2.122600000000000e-01 + 2.048000000000000e-01 + 1.831200000000000e-01 + 1.377200000000000e-01 + 7.542800000000000e-02 + 1.411500000000000e-02 +-2.964600000000000e-02 +-5.058200000000000e-02 +-5.558800000000000e-02 +-5.627100000000000e-02 +-6.046000000000000e-02 +-6.971600000000000e-02 +-8.360700000000000e-02 +-1.050400000000000e-01 +-1.402400000000000e-01 +-1.924800000000000e-01 +-2.553200000000000e-01 +-3.126300000000000e-01 +-3.470100000000000e-01 +-3.510200000000000e-01 +-3.321600000000000e-01 +-3.075400000000000e-01 +-2.920800000000000e-01 +-2.892200000000000e-01 +-2.906300000000000e-01 +-2.833900000000000e-01 +-2.575600000000000e-01 +-2.078600000000000e-01 +-1.299800000000000e-01 +-1.807600000000000e-02 + 1.310300000000000e-01 + 3.084800000000000e-01 + 4.876500000000000e-01 + 6.304500000000000e-01 + 7.055100000000000e-01 + 7.072200000000000e-01 + 6.615000000000000e-01 + 6.117100000000000e-01 + 5.921000000000000e-01 + 6.059500000000000e-01 + 6.228600000000000e-01 + 5.969800000000000e-01 + 4.937700000000000e-01 + 3.082500000000000e-01 + 6.478500000000000e-02 +-1.978700000000000e-01 +-4.437100000000000e-01 +-6.476800000000000e-01 +-7.931600000000000e-01 +-8.663700000000000e-01 +-8.563000000000000e-01 +-7.623400000000000e-01 +-6.026899999999999e-01 +-4.145900000000000e-01 +-2.423600000000000e-01 +-1.193400000000000e-01 +-5.487400000000000e-02 +-3.485300000000000e-02 +-3.474400000000000e-02 +-3.567100000000000e-02 +-3.256800000000000e-02 +-3.000200000000000e-02 +-3.055800000000000e-02 +-2.593100000000000e-02 + 1.734500000000000e-03 + 6.866700000000001e-02 + 1.763100000000000e-01 + 3.055700000000000e-01 + 4.226500000000000e-01 + 4.930700000000000e-01 + 4.952500000000000e-01 + 4.265500000000000e-01 + 2.997400000000000e-01 + 1.345600000000000e-01 +-4.922800000000000e-02 +-2.335000000000000e-01 +-3.991400000000000e-01 +-5.239200000000001e-01 +-5.848700000000000e-01 +-5.654500000000000e-01 +-4.634100000000000e-01 +-2.941900000000000e-01 +-8.712200000000000e-02 + 1.240100000000000e-01 + 3.109300000000000e-01 + 4.568700000000000e-01 + 5.567500000000000e-01 + 6.134500000000001e-01 + 6.335700000000000e-01 + 6.249800000000000e-01 + 5.960000000000000e-01 + 5.545400000000000e-01 + 5.060300000000000e-01 + 4.509200000000000e-01 + 3.836000000000000e-01 + 2.944400000000000e-01 + 1.744900000000000e-01 + 2.058600000000000e-02 +-1.618700000000000e-01 +-3.596200000000000e-01 +-5.548100000000000e-01 +-7.289800000000000e-01 +-8.658300000000000e-01 +-9.525600000000000e-01 +-9.805500000000000e-01 +-9.462600000000000e-01 +-8.526400000000000e-01 +-7.104400000000000e-01 +-5.380400000000000e-01 +-3.590100000000000e-01 +-1.967200000000000e-01 +-6.736200000000001e-02 + 2.617700000000000e-02 + 9.597600000000001e-02 + 1.638400000000000e-01 + 2.499700000000000e-01 + 3.606000000000000e-01 + 4.820200000000000e-01 + 5.859900000000000e-01 + 6.450600000000000e-01 + 6.491200000000000e-01 + 6.120900000000000e-01 + 5.631400000000000e-01 + 5.271800000000000e-01 + 5.077600000000000e-01 + 4.852400000000000e-01 + 4.329200000000000e-01 + 3.407000000000000e-01 + 2.286700000000000e-01 + 1.391200000000000e-01 + 1.097700000000000e-01 + 1.453900000000000e-01 + 2.075300000000000e-01 + 2.307900000000000e-01 + 1.568600000000000e-01 +-3.449100000000000e-02 +-3.155200000000000e-01 +-6.259900000000000e-01 +-9.019700000000000e-01 +-1.099500000000000e+00 +-1.201400000000000e+00 +-1.207400000000000e+00 +-1.121200000000000e+00 +-9.443100000000000e-01 +-6.803700000000000e-01 +-3.448900000000000e-01 + 3.053500000000000e-02 + 4.034400000000000e-01 + 7.318900000000000e-01 + 9.843800000000000e-01 + 1.142400000000000e+00 + 1.196500000000000e+00 + 1.141100000000000e+00 + 9.748500000000000e-01 + 7.058000000000000e-01 + 3.581800000000000e-01 +-2.592400000000000e-02 +-3.929700000000000e-01 +-6.906600000000001e-01 +-8.809600000000000e-01 +-9.478400000000000e-01 +-8.971200000000000e-01 +-7.501600000000000e-01 +-5.356900000000000e-01 +-2.838700000000000e-01 +-2.423800000000000e-02 + 2.140500000000000e-01 + 4.030600000000000e-01 + 5.207300000000000e-01 + 5.585000000000000e-01 + 5.276200000000000e-01 + 4.581600000000000e-01 + 3.882000000000000e-01 + 3.465000000000000e-01 + 3.381800000000000e-01 + 3.425100000000000e-01 + 3.257200000000000e-01 + 2.617700000000000e-01 + 1.478900000000000e-01 + 4.943800000000000e-03 +-1.374700000000000e-01 +-2.598300000000000e-01 +-3.615700000000000e-01 +-4.536800000000000e-01 +-5.415700000000000e-01 +-6.128200000000000e-01 +-6.408600000000000e-01 +-6.028600000000000e-01 +-4.982100000000000e-01 +-3.524800000000000e-01 +-2.024500000000000e-01 +-7.316400000000001e-02 + 3.561000000000000e-02 + 1.426900000000000e-01 + 2.636800000000000e-01 + 3.913800000000000e-01 + 4.947400000000000e-01 + 5.381300000000000e-01 + 5.071000000000000e-01 + 4.209500000000000e-01 + 3.222200000000000e-01 + 2.504900000000000e-01 + 2.192700000000000e-01 + 2.116800000000000e-01 + 1.963600000000000e-01 + 1.498100000000000e-01 + 6.848300000000000e-02 +-3.654600000000000e-02 +-1.547000000000000e-01 +-2.858800000000000e-01 +-4.357000000000000e-01 +-5.998000000000000e-01 +-7.513300000000001e-01 +-8.442200000000000e-01 +-8.334900000000000e-01 +-7.000400000000000e-01 +-4.635300000000000e-01 +-1.743300000000000e-01 + 1.103900000000000e-01 + 3.513500000000000e-01 + 5.379400000000000e-01 + 6.805300000000000e-01 + 7.919700000000000e-01 + 8.716300000000000e-01 + 9.024400000000000e-01 + 8.617400000000000e-01 + 7.381300000000000e-01 + 5.433000000000000e-01 + 3.117100000000000e-01 + 8.787200000000001e-02 +-9.182300000000000e-02 +-2.135800000000000e-01 +-2.895900000000000e-01 +-3.487500000000000e-01 +-4.192300000000000e-01 +-5.118400000000000e-01 +-6.125699999999999e-01 +-6.887500000000000e-01 +-7.054500000000000e-01 +-6.439600000000000e-01 +-5.122400000000000e-01 +-3.421300000000000e-01 +-1.751000000000000e-01 +-4.421600000000000e-02 + 3.811200000000000e-02 + 8.151300000000000e-02 + 1.086900000000000e-01 + 1.419400000000000e-01 + 1.920100000000000e-01 + 2.537900000000000e-01 + 3.094200000000000e-01 + 3.364500000000000e-01 + 3.173500000000000e-01 + 2.471400000000000e-01 + 1.366200000000000e-01 + 1.045000000000000e-02 +-9.961100000000001e-02 +-1.639400000000000e-01 +-1.637100000000000e-01 +-9.592800000000000e-02 + 2.639200000000000e-02 + 1.782700000000000e-01 + 3.289800000000000e-01 + 4.485400000000000e-01 + 5.134100000000000e-01 + 5.111700000000000e-01 + 4.433400000000000e-01 + 3.255100000000000e-01 + 1.832200000000000e-01 + 4.416800000000000e-02 +-7.097299999999999e-02 +-1.552500000000000e-01 +-2.163900000000000e-01 +-2.712500000000000e-01 +-3.361400000000000e-01 +-4.173200000000000e-01 +-5.061700000000000e-01 +-5.812400000000000e-01 +-6.168100000000000e-01 +-5.944700000000001e-01 +-5.122900000000000e-01 +-3.867600000000000e-01 +-2.451200000000000e-01 +-1.111500000000000e-01 + 7.898799999999999e-03 + 1.243800000000000e-01 + 2.593800000000000e-01 + 4.224900000000000e-01 + 5.950700000000000e-01 + 7.298900000000000e-01 + 7.714600000000000e-01 + 6.874000000000000e-01 + 4.917900000000000e-01 + 2.441100000000000e-01 + 2.152500000000000e-02 +-1.201800000000000e-01 +-1.733100000000000e-01 +-1.763200000000000e-01 +-1.850100000000000e-01 +-2.361800000000000e-01 +-3.270400000000000e-01 +-4.215600000000000e-01 +-4.765400000000000e-01 +-4.676700000000000e-01 +-3.984500000000000e-01 +-2.894000000000000e-01 +-1.596900000000000e-01 +-1.705600000000000e-02 + 1.370300000000000e-01 + 2.939000000000000e-01 + 4.296300000000000e-01 + 5.115400000000000e-01 + 5.156300000000000e-01 + 4.420200000000000e-01 + 3.165500000000000e-01 + 1.770500000000000e-01 + 5.430900000000000e-02 +-3.943800000000000e-02 +-1.084100000000000e-01 +-1.622000000000000e-01 +-2.061200000000000e-01 +-2.401200000000000e-01 +-2.643000000000000e-01 +-2.832800000000000e-01 +-3.027500000000000e-01 +-3.199900000000000e-01 +-3.167500000000000e-01 +-2.630900000000000e-01 +-1.331400000000000e-01 + 7.596899999999999e-02 + 3.341300000000000e-01 + 5.847200000000000e-01 + 7.650200000000000e-01 + 8.296600000000000e-01 + 7.655100000000000e-01 + 5.920100000000000e-01 + 3.493700000000000e-01 + 8.255100000000000e-02 +-1.715700000000000e-01 +-3.897600000000000e-01 +-5.616300000000000e-01 +-6.854700000000000e-01 +-7.637500000000000e-01 +-8.000200000000000e-01 +-7.974700000000000e-01 +-7.583800000000001e-01 +-6.840700000000000e-01 +-5.748600000000000e-01 +-4.308100000000000e-01 +-2.537600000000000e-01 +-5.072900000000000e-02 + 1.631600000000000e-01 + 3.653400000000000e-01 + 5.318800000000000e-01 + 6.474700000000000e-01 + 7.135100000000000e-01 + 7.476900000000000e-01 + 7.727700000000000e-01 + 7.998400000000000e-01 + 8.172199999999999e-01 + 7.943000000000000e-01 + 7.004899999999999e-01 + 5.283000000000000e-01 + 3.046500000000000e-01 + 8.120500000000000e-02 +-9.205000000000001e-02 +-1.935300000000000e-01 +-2.397500000000000e-01 +-2.717200000000000e-01 +-3.272100000000000e-01 +-4.173900000000000e-01 +-5.222500000000000e-01 +-6.063700000000000e-01 +-6.429800000000000e-01 +-6.303800000000001e-01 +-5.916100000000000e-01 +-5.597900000000000e-01 +-5.594100000000000e-01 +-5.941300000000000e-01 +-6.450399999999999e-01 +-6.781199999999999e-01 +-6.561100000000000e-01 +-5.514600000000000e-01 +-3.571500000000000e-01 +-9.215300000000000e-02 + 2.024500000000000e-01 + 4.774400000000000e-01 + 6.947000000000000e-01 + 8.417600000000000e-01 + 9.324100000000000e-01 + 9.924100000000000e-01 + 1.039300000000000e+00 + 1.070100000000000e+00 + 1.065100000000000e+00 + 1.004400000000000e+00 + 8.846900000000000e-01 + 7.231100000000000e-01 + 5.456000000000000e-01 + 3.696700000000000e-01 + 1.945900000000000e-01 + 6.509400000000000e-03 +-2.062900000000000e-01 +-4.402900000000000e-01 +-6.755600000000000e-01 +-8.862100000000001e-01 +-1.053600000000000e+00 +-1.171800000000000e+00 +-1.243300000000000e+00 +-1.269300000000000e+00 +-1.244000000000000e+00 +-1.157900000000000e+00 +-1.003700000000000e+00 +-7.832400000000000e-01 +-5.067500000000000e-01 +-1.906600000000000e-01 + 1.444400000000000e-01 + 4.728000000000000e-01 + 7.626800000000000e-01 + 9.806200000000000e-01 + 1.101400000000000e+00 + 1.118400000000000e+00 + 1.047000000000000e+00 + 9.169100000000000e-01 + 7.583900000000000e-01 + 5.909100000000000e-01 + 4.218800000000000e-01 + 2.537800000000000e-01 + 9.251900000000000e-02 +-5.068900000000000e-02 +-1.647900000000000e-01 +-2.457600000000000e-01 +-2.979100000000000e-01 +-3.280700000000000e-01 +-3.383200000000000e-01 +-3.244000000000000e-01 +-2.821000000000000e-01 +-2.161500000000000e-01 +-1.431400000000000e-01 +-8.459400000000000e-02 +-5.462500000000000e-02 +-5.157500000000000e-02 +-6.000700000000000e-02 +-6.123000000000000e-02 +-4.395600000000000e-02 +-7.517500000000000e-03 + 4.291600000000000e-02 + 1.027900000000000e-01 + 1.693700000000000e-01 + 2.369300000000000e-01 + 2.916200000000000e-01 + 3.132100000000000e-01 + 2.844600000000000e-01 + 2.015400000000000e-01 + 7.652800000000000e-02 +-7.098100000000000e-02 +-2.269600000000000e-01 +-3.898500000000000e-01 +-5.646700000000000e-01 +-7.482100000000000e-01 +-9.168600000000000e-01 +-1.028000000000000e+00 +-1.035800000000000e+00 +-9.132000000000000e-01 +-6.649600000000000e-01 +-3.266400000000000e-01 + 5.002700000000000e-02 + 4.146200000000000e-01 + 7.293200000000000e-01 + 9.710299999999999e-01 + 1.128000000000000e+00 + 1.197000000000000e+00 + 1.183000000000000e+00 + 1.100500000000000e+00 + 9.725800000000000e-01 + 8.249000000000000e-01 + 6.773800000000000e-01 + 5.370800000000000e-01 + 3.965200000000000e-01 + 2.389000000000000e-01 + 4.826400000000000e-02 +-1.796500000000000e-01 +-4.310400000000000e-01 +-6.757500000000000e-01 +-8.772600000000000e-01 +-1.006500000000000e+00 +-1.052600000000000e+00 +-1.024300000000000e+00 +-9.415400000000000e-01 +-8.227700000000000e-01 +-6.769500000000001e-01 +-5.053900000000000e-01 +-3.113600000000000e-01 +-1.087600000000000e-01 + 7.828499999999999e-02 + 2.257300000000000e-01 + 3.223800000000000e-01 + 3.749500000000000e-01 + 4.010300000000000e-01 + 4.154000000000000e-01 + 4.204300000000000e-01 + 4.079300000000000e-01 + 3.700500000000000e-01 + 3.092000000000000e-01 + 2.383300000000000e-01 + 1.717400000000000e-01 + 1.153300000000000e-01 + 6.599700000000000e-02 + 2.114100000000000e-02 +-1.098400000000000e-02 +-1.143000000000000e-02 + 3.583300000000000e-02 + 1.265800000000000e-01 + 2.303700000000000e-01 + 3.036800000000000e-01 + 3.144500000000000e-01 + 2.602800000000000e-01 + 1.656400000000000e-01 + 5.994300000000000e-02 +-4.654500000000000e-02 +-1.689800000000000e-01 +-3.301800000000000e-01 +-5.317000000000000e-01 +-7.365100000000000e-01 +-8.789000000000000e-01 +-8.970700000000000e-01 +-7.678000000000000e-01 +-5.201800000000000e-01 +-2.202000000000000e-01 + 6.270800000000000e-02 + 2.857100000000000e-01 + 4.424000000000000e-01 + 5.508500000000000e-01 + 6.319300000000000e-01 + 6.932000000000000e-01 + 7.267900000000000e-01 + 7.184100000000000e-01 + 6.589200000000000e-01 + 5.506600000000000e-01 + 4.067200000000000e-01 + 2.460200000000000e-01 + 8.818800000000000e-02 +-4.976900000000000e-02 +-1.556800000000000e-01 +-2.241200000000000e-01 +-2.581700000000000e-01 +-2.698500000000000e-01 +-2.777900000000000e-01 +-3.021100000000000e-01 +-3.573700000000000e-01 +-4.461000000000000e-01 +-5.559200000000000e-01 +-6.623500000000000e-01 +-7.374700000000000e-01 +-7.607600000000000e-01 +-7.269300000000000e-01 +-6.457000000000001e-01 +-5.336600000000000e-01 +-4.033800000000000e-01 +-2.576400000000000e-01 +-9.275300000000000e-02 + 9.160200000000000e-02 + 2.846400000000000e-01 + 4.660200000000000e-01 + 6.167400000000000e-01 + 7.314700000000000e-01 + 8.220000000000000e-01 + 9.080600000000000e-01 + 1.001100000000000e+00 + 1.092400000000000e+00 + 1.154500000000000e+00 + 1.154200000000000e+00 + 1.068300000000000e+00 + 8.925900000000000e-01 + 6.412800000000000e-01 + 3.402500000000000e-01 + 2.109200000000000e-02 +-2.822500000000000e-01 +-5.373000000000000e-01 +-7.203500000000000e-01 +-8.254899999999999e-01 +-8.681000000000000e-01 +-8.773000000000000e-01 +-8.796500000000000e-01 +-8.848800000000000e-01 +-8.844900000000000e-01 +-8.646000000000000e-01 +-8.223200000000001e-01 +-7.712100000000000e-01 +-7.297200000000000e-01 +-7.016100000000000e-01 +-6.658500000000001e-01 +-5.869100000000000e-01 +-4.401800000000000e-01 +-2.332200000000000e-01 +-5.396200000000000e-03 + 1.959400000000000e-01 + 3.454400000000000e-01 + 4.537600000000000e-01 + 5.552000000000000e-01 + 6.791600000000000e-01 + 8.272600000000000e-01 + 9.729600000000000e-01 + 1.081800000000000e+00 + 1.134700000000000e+00 + 1.136800000000000e+00 + 1.105400000000000e+00 + 1.050200000000000e+00 + 9.624600000000000e-01 + 8.213700000000000e-01 + 6.130900000000000e-01 + 3.465100000000000e-01 + 5.528700000000000e-02 +-2.146800000000000e-01 +-4.231800000000000e-01 +-5.492200000000000e-01 +-5.955900000000000e-01 +-5.857500000000000e-01 +-5.558600000000000e-01 +-5.435700000000000e-01 +-5.749500000000000e-01 +-6.536900000000000e-01 +-7.586400000000000e-01 +-8.534600000000000e-01 +-9.044400000000000e-01 +-8.956200000000000e-01 +-8.314500000000000e-01 +-7.263900000000000e-01 +-5.915000000000000e-01 +-4.303900000000000e-01 +-2.478800000000000e-01 +-6.203500000000000e-02 + 9.490000000000000e-02 + 1.919700000000000e-01 + 2.214700000000000e-01 + 2.087400000000000e-01 + 1.988800000000000e-01 + 2.278100000000000e-01 + 2.996500000000000e-01 + 3.884600000000000e-01 + 4.630500000000000e-01 + 5.141600000000000e-01 + 5.605700000000000e-01 + 6.284600000000000e-01 + 7.216000000000000e-01 + 8.088700000000000e-01 + 8.417700000000000e-01 + 7.893200000000000e-01 + 6.620700000000000e-01 + 5.053200000000000e-01 + 3.668800000000000e-01 + 2.656700000000000e-01 + 1.862900000000000e-01 + 1.020600000000000e-01 + 4.644400000000000e-03 +-8.689600000000000e-02 +-1.463100000000000e-01 +-1.717000000000000e-01 +-1.993300000000000e-01 +-2.842100000000000e-01 +-4.598900000000000e-01 +-7.078000000000000e-01 +-9.603699999999999e-01 +-1.136500000000000e+00 +-1.184000000000000e+00 +-1.100900000000000e+00 +-9.244000000000000e-01 +-7.025100000000000e-01 +-4.698600000000000e-01 +-2.431200000000000e-01 +-3.099700000000000e-02 + 1.556200000000000e-01 + 3.035300000000000e-01 + 4.043700000000000e-01 + 4.587800000000000e-01 + 4.723100000000000e-01 + 4.478100000000000e-01 + 3.843300000000000e-01 + 2.860300000000000e-01 + 1.728000000000000e-01 + 7.997899999999999e-02 + 4.278900000000000e-02 + 7.538400000000001e-02 + 1.614300000000000e-01 + 2.649900000000000e-01 + 3.537400000000000e-01 + 4.157700000000000e-01 + 4.569200000000000e-01 + 4.831300000000000e-01 + 4.857700000000000e-01 + 4.452800000000000e-01 + 3.509400000000000e-01 + 2.183700000000000e-01 + 8.642300000000000e-02 +-7.351700000000000e-03 +-5.370400000000000e-02 +-7.792800000000000e-02 +-1.184300000000000e-01 +-1.941600000000000e-01 +-2.877100000000000e-01 +-3.586800000000000e-01 +-3.767400000000000e-01 +-3.472300000000000e-01 +-3.079700000000000e-01 +-2.998500000000000e-01 +-3.348400000000000e-01 +-3.870000000000000e-01 +-4.124200000000000e-01 +-3.810300000000000e-01 +-2.954000000000000e-01 +-1.841000000000000e-01 +-7.860300000000001e-02 + 5.640600000000000e-03 + 7.055200000000000e-02 + 1.227600000000000e-01 + 1.621400000000000e-01 + 1.828300000000000e-01 + 1.837500000000000e-01 + 1.758100000000000e-01 + 1.762200000000000e-01 + 1.938500000000000e-01 + 2.194900000000000e-01 + 2.313600000000000e-01 + 2.122100000000000e-01 + 1.631900000000000e-01 + 1.017500000000000e-01 + 4.502500000000000e-02 +-5.956400000000000e-03 +-6.643100000000000e-02 +-1.508700000000000e-01 +-2.532700000000000e-01 +-3.426400000000000e-01 +-3.790900000000000e-01 +-3.390800000000000e-01 +-2.303300000000000e-01 +-8.585500000000000e-02 + 5.684100000000000e-02 + 1.746900000000000e-01 + 2.635000000000000e-01 + 3.290800000000000e-01 + 3.766600000000000e-01 + 4.086900000000000e-01 + 4.300500000000000e-01 + 4.512200000000000e-01 + 4.818700000000000e-01 + 5.184500000000000e-01 + 5.376600000000000e-01 + 5.046500000000000e-01 + 3.926000000000000e-01 + 1.995200000000000e-01 +-5.022800000000000e-02 +-3.197700000000000e-01 +-5.763300000000000e-01 +-7.973100000000000e-01 +-9.640200000000000e-01 +-1.054100000000000e+00 +-1.045200000000000e+00 +-9.312900000000000e-01 +-7.364300000000000e-01 +-5.111700000000000e-01 +-3.077400000000000e-01 +-1.505800000000000e-01 +-2.536700000000000e-02 + 1.029000000000000e-01 + 2.555700000000000e-01 + 4.169900000000000e-01 + 5.419300000000000e-01 + 5.890200000000000e-01 + 5.540200000000000e-01 + 4.759400000000000e-01 + 4.105900000000000e-01 + 3.920600000000000e-01 + 4.118800000000000e-01 + 4.311800000000000e-01 + 4.143500000000000e-01 + 3.565800000000000e-01 + 2.840600000000000e-01 + 2.286100000000000e-01 + 1.994200000000000e-01 + 1.750700000000000e-01 + 1.218000000000000e-01 + 2.217600000000000e-02 +-1.090400000000000e-01 +-2.337700000000000e-01 +-3.163600000000000e-01 +-3.464600000000000e-01 +-3.430500000000000e-01 +-3.392900000000000e-01 +-3.608000000000000e-01 +-4.122800000000000e-01 +-4.786000000000000e-01 +-5.357100000000000e-01 +-5.624200000000000e-01 +-5.464900000000000e-01 +-4.849100000000000e-01 +-3.808600000000000e-01 +-2.403300000000000e-01 +-6.984700000000001e-02 + 1.234900000000000e-01 + 3.286800000000000e-01 + 5.253500000000000e-01 + 6.809500000000001e-01 + 7.567700000000001e-01 + 7.242600000000000e-01 + 5.845000000000000e-01 + 3.768500000000000e-01 + 1.667600000000000e-01 + 1.559700000000000e-02 +-5.024500000000000e-02 +-5.022400000000000e-02 +-3.221100000000000e-02 +-3.818600000000000e-02 +-7.711200000000000e-02 +-1.238600000000000e-01 +-1.434600000000000e-01 +-1.208500000000000e-01 +-7.294399999999999e-02 +-3.446900000000000e-02 +-2.975000000000000e-02 +-5.332700000000000e-02 +-7.412400000000000e-02 +-5.886500000000000e-02 + 4.064200000000000e-03 + 9.783300000000000e-02 + 1.900800000000000e-01 + 2.528700000000000e-01 + 2.737200000000000e-01 + 2.518700000000000e-01 + 1.875300000000000e-01 + 7.701600000000000e-02 +-8.067500000000000e-02 +-2.722300000000000e-01 +-4.657800000000000e-01 +-6.207700000000000e-01 +-7.063400000000000e-01 +-7.153400000000000e-01 +-6.635300000000000e-01 +-5.751700000000000e-01 +-4.661500000000000e-01 +-3.366000000000000e-01 +-1.770900000000000e-01 + 1.743200000000000e-02 + 2.366100000000000e-01 + 4.531600000000000e-01 + 6.311400000000000e-01 + 7.385400000000000e-01 + 7.585700000000000e-01 + 6.958900000000000e-01 + 5.761600000000000e-01 + 4.383500000000000e-01 + 3.211600000000000e-01 + 2.479000000000000e-01 + 2.174700000000000e-01 + 2.075400000000000e-01 + 1.896300000000000e-01 + 1.474700000000000e-01 + 8.660100000000000e-02 + 2.824500000000000e-02 +-8.086100000000001e-03 +-2.053200000000000e-02 +-2.739800000000000e-02 +-5.459800000000000e-02 +-1.179100000000000e-01 +-2.134800000000000e-01 +-3.227200000000000e-01 +-4.261200000000000e-01 +-5.135999999999999e-01 +-5.836000000000000e-01 +-6.334500000000000e-01 +-6.519300000000000e-01 +-6.225000000000001e-01 +-5.362200000000000e-01 +-4.033200000000000e-01 +-2.526500000000000e-01 +-1.172500000000000e-01 +-1.569800000000000e-02 + 5.719300000000000e-02 + 1.236900000000000e-01 + 2.055000000000000e-01 + 3.078400000000000e-01 + 4.156400000000000e-01 + 5.027400000000000e-01 + 5.463500000000000e-01 + 5.371600000000000e-01 + 4.810100000000000e-01 + 3.942500000000000e-01 + 2.978700000000000e-01 + 2.126700000000000e-01 + 1.546100000000000e-01 + 1.292600000000000e-01 + 1.272600000000000e-01 + 1.257000000000000e-01 + 9.800399999999999e-02 + 2.930500000000000e-02 +-7.172500000000000e-02 +-1.732500000000000e-01 +-2.346100000000000e-01 +-2.272800000000000e-01 +-1.502900000000000e-01 +-3.150200000000000e-02 + 8.513300000000000e-02 + 1.583700000000000e-01 + 1.643500000000000e-01 + 1.015500000000000e-01 +-1.309700000000000e-02 +-1.523700000000000e-01 +-2.868000000000000e-01 +-3.912700000000000e-01 +-4.503100000000000e-01 +-4.616800000000000e-01 +-4.361900000000000e-01 +-3.921500000000000e-01 +-3.456800000000000e-01 +-3.014600000000000e-01 +-2.499000000000000e-01 +-1.733100000000000e-01 +-5.814400000000000e-02 + 9.373600000000000e-02 + 2.620100000000000e-01 + 4.151700000000000e-01 + 5.238600000000000e-01 + 5.723900000000000e-01 + 5.617700000000000e-01 + 5.035500000000001e-01 + 4.099400000000000e-01 + 2.878200000000000e-01 + 1.410100000000000e-01 +-2.166100000000000e-02 +-1.801500000000000e-01 +-3.060100000000000e-01 +-3.746800000000000e-01 +-3.797300000000000e-01 +-3.380100000000000e-01 +-2.799500000000000e-01 +-2.296600000000000e-01 +-1.884900000000000e-01 +-1.348300000000000e-01 +-4.204100000000000e-02 + 9.725600000000000e-02 + 2.587600000000000e-01 + 3.969200000000000e-01 + 4.725100000000000e-01 + 4.781600000000000e-01 + 4.422800000000000e-01 + 4.070500000000000e-01 + 3.954600000000000e-01 + 3.916300000000000e-01 + 3.500100000000000e-01 + 2.282000000000000e-01 + 2.056300000000000e-02 +-2.314600000000000e-01 +-4.600300000000000e-01 +-6.086200000000000e-01 +-6.612400000000000e-01 +-6.447400000000000e-01 +-6.049900000000000e-01 +-5.749600000000000e-01 +-5.560900000000000e-01 +-5.228500000000000e-01 +-4.440300000000000e-01 +-3.049900000000000e-01 +-1.174000000000000e-01 + 8.632500000000000e-02 + 2.677300000000000e-01 + 3.966000000000000e-01 + 4.590300000000000e-01 + 4.580100000000000e-01 + 4.085700000000000e-01 + 3.298400000000000e-01 + 2.374100000000000e-01 + 1.393900000000000e-01 + 3.895700000000000e-02 +-5.775500000000000e-02 +-1.345100000000000e-01 +-1.659900000000000e-01 +-1.295800000000000e-01 +-2.134800000000000e-02 + 1.357300000000000e-01 + 2.999600000000000e-01 + 4.320100000000000e-01 + 5.144000000000000e-01 + 5.544500000000000e-01 + 5.680300000000000e-01 + 5.574700000000000e-01 + 5.031900000000000e-01 + 3.786700000000000e-01 + 1.787100000000000e-01 +-6.242900000000000e-02 +-2.811300000000000e-01 +-4.201600000000000e-01 +-4.659500000000000e-01 +-4.596700000000000e-01 +-4.716000000000000e-01 +-5.548300000000000e-01 +-7.096900000000000e-01 +-8.822200000000000e-01 +-9.960200000000000e-01 +-9.941100000000000e-01 +-8.636200000000001e-01 +-6.316800000000000e-01 +-3.427400000000000e-01 +-3.751300000000000e-02 + 2.529900000000000e-01 + 5.017200000000001e-01 + 6.813500000000000e-01 + 7.711500000000000e-01 + 7.711800000000000e-01 + 7.100300000000000e-01 + 6.357699999999999e-01 + 5.925800000000000e-01 + 5.978000000000000e-01 + 6.343700000000000e-01 + 6.627200000000000e-01 + 6.427100000000000e-01 + 5.515300000000000e-01 + 3.892200000000000e-01 + 1.738700000000000e-01 +-6.622699999999999e-02 +-2.987700000000000e-01 +-4.930400000000000e-01 +-6.276900000000000e-01 +-6.992400000000000e-01 +-7.243800000000000e-01 +-7.304800000000000e-01 +-7.370200000000000e-01 +-7.401900000000000e-01 +-7.134300000000000e-01 +-6.262400000000000e-01 +-4.690400000000000e-01 +-2.655800000000000e-01 +-6.243600000000000e-02 + 9.783000000000000e-02 + 2.007000000000000e-01 + 2.638700000000000e-01 + 3.200000000000000e-01 + 3.921900000000000e-01 + 4.807100000000000e-01 + 5.683000000000000e-01 + 6.361900000000000e-01 + 6.754000000000000e-01 + 6.848200000000000e-01 + 6.613000000000000e-01 + 5.946900000000001e-01 + 4.756900000000000e-01 + 3.106400000000000e-01 + 1.283300000000000e-01 +-3.125000000000000e-02 +-1.411500000000000e-01 +-2.065100000000000e-01 +-2.615700000000000e-01 +-3.439800000000000e-01 +-4.641100000000000e-01 +-5.925700000000000e-01 +-6.768700000000000e-01 +-6.762800000000000e-01 +-5.903500000000000e-01 +-4.606300000000000e-01 +-3.445700000000000e-01 +-2.798100000000000e-01 +-2.629600000000000e-01 +-2.554600000000000e-01 +-2.103900000000000e-01 +-1.015200000000000e-01 + 6.279500000000000e-02 + 2.461700000000000e-01 + 4.040500000000000e-01 + 5.041800000000000e-01 + 5.382300000000000e-01 + 5.217100000000000e-01 + 4.840800000000000e-01 + 4.535400000000000e-01 + 4.416600000000000e-01 + 4.344200000000000e-01 + 3.959800000000000e-01 + 2.865300000000000e-01 + 8.764700000000000e-02 +-1.791100000000000e-01 +-4.533200000000000e-01 +-6.594700000000000e-01 +-7.413500000000000e-01 +-6.873300000000000e-01 +-5.313600000000001e-01 +-3.303300000000000e-01 +-1.335700000000000e-01 + 3.579600000000000e-02 + 1.781000000000000e-01 + 2.993600000000000e-01 + 3.951100000000000e-01 + 4.488400000000000e-01 + 4.452000000000000e-01 + 3.859500000000000e-01 + 2.949800000000000e-01 + 2.079200000000000e-01 + 1.537500000000000e-01 + 1.408600000000000e-01 + 1.557400000000000e-01 + 1.727100000000000e-01 + 1.667000000000000e-01 + 1.219200000000000e-01 + 3.489300000000000e-02 +-8.551000000000000e-02 +-2.193800000000000e-01 +-3.398400000000000e-01 +-4.221600000000000e-01 +-4.560500000000000e-01 +-4.533300000000000e-01 +-4.427800000000000e-01 +-4.517400000000000e-01 +-4.850100000000000e-01 +-5.168800000000000e-01 +-5.049800000000000e-01 +-4.190200000000000e-01 +-2.644700000000000e-01 +-8.298700000000001e-02 + 7.300800000000000e-02 + 1.741700000000000e-01 + 2.317600000000000e-01 + 2.851500000000000e-01 + 3.681700000000000e-01 + 4.795800000000000e-01 + 5.805900000000001e-01 + 6.217700000000000e-01 + 5.793000000000000e-01 + 4.729900000000000e-01 + 3.524800000000000e-01 + 2.625500000000000e-01 + 2.140500000000000e-01 + 1.822900000000000e-01 + 1.328300000000000e-01 + 5.316000000000000e-02 +-3.485800000000000e-02 +-9.154700000000000e-02 +-9.146600000000001e-02 +-4.571500000000000e-02 + 2.639800000000000e-03 + 6.214300000000000e-03 +-5.685800000000000e-02 +-1.718700000000000e-01 +-3.006200000000000e-01 +-4.057300000000000e-01 +-4.674000000000000e-01 +-4.828000000000000e-01 +-4.541300000000000e-01 +-3.798400000000000e-01 +-2.580500000000000e-01 +-9.800300000000001e-02 + 7.319100000000001e-02 + 2.178000000000000e-01 + 3.052700000000000e-01 + 3.270400000000000e-01 + 2.962800000000000e-01 + 2.330600000000000e-01 + 1.476400000000000e-01 + 3.658200000000000e-02 +-1.048800000000000e-01 +-2.652400000000000e-01 +-4.102200000000000e-01 +-4.955400000000000e-01 +-4.910700000000000e-01 +-3.985100000000000e-01 +-2.490300000000000e-01 +-8.241100000000000e-02 + 7.655400000000000e-02 + 2.270800000000000e-01 + 3.813600000000000e-01 + 5.435300000000000e-01 + 6.959600000000000e-01 + 8.031100000000000e-01 + 8.295500000000000e-01 + 7.581100000000000e-01 + 5.960600000000000e-01 + 3.676200000000000e-01 + 1.015900000000000e-01 +-1.756500000000000e-01 +-4.387000000000000e-01 +-6.591800000000000e-01 +-8.072800000000000e-01 +-8.613100000000000e-01 +-8.187100000000000e-01 +-6.994899999999999e-01 +-5.377500000000000e-01 +-3.662400000000000e-01 +-2.041500000000000e-01 +-5.515200000000000e-02 + 8.530300000000000e-02 + 2.207500000000000e-01 + 3.495400000000000e-01 + 4.664400000000000e-01 + 5.653899999999999e-01 + 6.390700000000000e-01 + 6.760000000000000e-01 + 6.607200000000000e-01 + 5.812500000000000e-01 + 4.407500000000000e-01 + 2.645400000000000e-01 + 9.374700000000000e-02 +-3.359900000000000e-02 +-1.031400000000000e-01 +-1.321200000000000e-01 +-1.578400000000000e-01 +-2.135000000000000e-01 +-3.073500000000000e-01 +-4.191300000000000e-01 +-5.149800000000000e-01 +-5.693500000000000e-01 +-5.780900000000000e-01 +-5.549400000000000e-01 +-5.163300000000000e-01 +-4.678400000000000e-01 +-4.025900000000000e-01 +-3.113900000000000e-01 +-1.949400000000000e-01 +-6.764000000000001e-02 + 4.984800000000000e-02 + 1.425300000000000e-01 + 2.077500000000000e-01 + 2.519300000000000e-01 + 2.818600000000000e-01 + 2.989100000000000e-01 + 3.017100000000000e-01 + 2.941300000000000e-01 + 2.901600000000000e-01 + 3.092600000000000e-01 + 3.640000000000000e-01 + 4.490300000000000e-01 + 5.404099999999999e-01 + 6.068800000000000e-01 + 6.255200000000000e-01 + 5.911500000000000e-01 + 5.139000000000000e-01 + 4.087200000000000e-01 + 2.858300000000000e-01 + 1.492700000000000e-01 + 2.252000000000000e-03 +-1.476300000000000e-01 +-2.900100000000000e-01 +-4.193100000000000e-01 +-5.405300000000000e-01 +-6.657400000000000e-01 +-8.011100000000000e-01 +-9.338600000000000e-01 +-1.030600000000000e+00 +-1.051200000000000e+00 +-9.711300000000000e-01 +-7.959800000000000e-01 +-5.588200000000000e-01 +-3.012400000000000e-01 +-5.228400000000000e-02 + 1.795500000000000e-01 + 3.967600000000000e-01 + 5.953600000000000e-01 + 7.556300000000000e-01 + 8.502100000000000e-01 + 8.640300000000000e-01 + 8.092800000000000e-01 + 7.212700000000000e-01 + 6.355600000000000e-01 + 5.624000000000000e-01 + 4.785900000000000e-01 + 3.448400000000000e-01 + 1.379700000000000e-01 +-1.249800000000000e-01 +-3.888500000000000e-01 +-5.883200000000000e-01 +-6.829300000000000e-01 +-6.754599999999999e-01 +-6.022200000000000e-01 +-5.041000000000000e-01 +-4.002200000000000e-01 +-2.825500000000000e-01 +-1.331700000000000e-01 + 5.133300000000000e-02 + 2.480400000000000e-01 + 4.174900000000000e-01 + 5.271000000000000e-01 + 5.699300000000000e-01 + 5.648700000000000e-01 + 5.388900000000000e-01 + 5.054700000000000e-01 + 4.554800000000000e-01 + 3.664400000000000e-01 + 2.221400000000000e-01 + 2.731000000000000e-02 +-1.929600000000000e-01 +-4.070100000000000e-01 +-5.918600000000001e-01 +-7.383600000000000e-01 +-8.439100000000000e-01 +-9.012200000000000e-01 +-8.946600000000000e-01 +-8.089100000000000e-01 +-6.439500000000000e-01 +-4.238000000000000e-01 +-1.902000000000000e-01 + 1.640200000000000e-02 + 1.763300000000000e-01 + 2.971600000000000e-01 + 4.026000000000000e-01 + 5.117800000000000e-01 + 6.232500000000000e-01 + 7.147400000000000e-01 + 7.577400000000000e-01 + 7.359200000000000e-01 + 6.542900000000000e-01 + 5.339500000000000e-01 + 3.980000000000000e-01 + 2.603300000000000e-01 + 1.252600000000000e-01 +-3.463000000000000e-03 +-1.137800000000000e-01 +-1.855400000000000e-01 +-2.011700000000000e-01 +-1.589400000000000e-01 +-7.839000000000000e-02 + 6.903800000000000e-03 + 6.405200000000000e-02 + 7.285600000000000e-02 + 2.763100000000000e-02 +-6.954299999999999e-02 +-2.154400000000000e-01 +-4.042700000000000e-01 +-6.187600000000000e-01 +-8.226599999999999e-01 +-9.651800000000000e-01 +-9.993500000000000e-01 +-9.047100000000000e-01 +-6.991100000000000e-01 +-4.302400000000000e-01 +-1.508600000000000e-01 + 1.061600000000000e-01 + 3.369900000000000e-01 + 5.546800000000000e-01 + 7.655600000000000e-01 + 9.520500000000000e-01 + 1.074700000000000e+00 + 1.092400000000000e+00 + 9.881200000000000e-01 + 7.811399999999999e-01 + 5.205500000000000e-01 + 2.625200000000000e-01 + 4.670200000000000e-02 +-1.154400000000000e-01 +-2.357600000000000e-01 +-3.336300000000000e-01 +-4.201800000000000e-01 +-4.915100000000000e-01 +-5.330700000000000e-01 +-5.306700000000000e-01 +-4.804800000000000e-01 +-3.922400000000000e-01 +-2.846000000000000e-01 +-1.761900000000000e-01 +-7.860000000000000e-02 + 4.539600000000000e-03 + 7.250400000000000e-02 + 1.213600000000000e-01 + 1.428200000000000e-01 + 1.304600000000000e-01 + 8.911700000000000e-02 + 3.919900000000000e-02 + 9.524800000000000e-03 + 2.066300000000000e-02 + 6.930200000000000e-02 + 1.259500000000000e-01 + 1.503200000000000e-01 + 1.159700000000000e-01 + 2.748500000000000e-02 +-8.212999999999999e-02 +-1.725700000000000e-01 +-2.202700000000000e-01 +-2.275100000000000e-01 +-2.105700000000000e-01 +-1.780100000000000e-01 +-1.186600000000000e-01 +-1.139000000000000e-02 + 1.500700000000000e-01 + 3.379700000000000e-01 + 4.957400000000000e-01 + 5.674800000000000e-01 + 5.317600000000000e-01 + 4.146100000000000e-01 + 2.709000000000000e-01 + 1.477600000000000e-01 + 5.706400000000000e-02 +-2.279900000000000e-02 +-1.193000000000000e-01 +-2.355600000000000e-01 +-3.425000000000000e-01 +-3.994000000000000e-01 +-3.856000000000000e-01 +-3.174400000000000e-01 +-2.367300000000000e-01 +-1.807800000000000e-01 +-1.584000000000000e-01 +-1.506600000000000e-01 +-1.338000000000000e-01 +-1.034800000000000e-01 +-7.903100000000000e-02 +-8.411800000000000e-02 +-1.212400000000000e-01 +-1.630900000000000e-01 +-1.702300000000000e-01 +-1.219800000000000e-01 +-3.549700000000000e-02 + 4.371800000000000e-02 + 7.438200000000000e-02 + 5.119100000000000e-02 + 1.188500000000000e-02 + 1.400200000000000e-02 + 9.771900000000000e-02 + 2.604000000000000e-01 + 4.587300000000000e-01 + 6.342300000000000e-01 + 7.431500000000000e-01 + 7.717600000000000e-01 + 7.311800000000001e-01 + 6.404600000000000e-01 + 5.121700000000000e-01 + 3.491700000000000e-01 + 1.513700000000000e-01 +-7.540800000000000e-02 +-3.151400000000000e-01 +-5.436400000000000e-01 +-7.341100000000000e-01 +-8.630600000000000e-01 +-9.152400000000001e-01 +-8.873000000000000e-01 +-7.893300000000000e-01 +-6.429800000000000e-01 +-4.753400000000000e-01 +-3.111500000000000e-01 +-1.667500000000000e-01 +-4.865200000000000e-02 + 4.446000000000000e-02 + 1.194300000000000e-01 + 1.878900000000000e-01 + 2.652100000000000e-01 + 3.655000000000000e-01 + 4.916300000000000e-01 + 6.257900000000000e-01 + 7.292600000000000e-01 + 7.567199999999999e-01 + 6.799200000000000e-01 + 5.066400000000000e-01 + 2.811100000000000e-01 + 6.294500000000000e-02 +-1.032000000000000e-01 +-2.077500000000000e-01 +-2.729200000000000e-01 +-3.291400000000000e-01 +-3.888900000000000e-01 +-4.368300000000000e-01 +-4.428700000000000e-01 +-3.874200000000000e-01 +-2.796000000000000e-01 +-1.550000000000000e-01 +-5.529800000000000e-02 +-4.957800000000000e-03 +-1.075300000000000e-03 +-2.156900000000000e-02 +-4.310500000000000e-02 +-5.457100000000000e-02 +-5.762200000000000e-02 +-5.721600000000000e-02 +-5.247600000000000e-02 +-3.604600000000000e-02 +-1.255900000000000e-03 + 5.091900000000000e-02 + 1.126300000000000e-01 + 1.774100000000000e-01 + 2.480500000000000e-01 + 3.351700000000000e-01 + 4.454700000000000e-01 + 5.678100000000000e-01 + 6.692700000000000e-01 + 7.071499999999999e-01 + 6.511800000000000e-01 + 5.018899999999999e-01 + 2.924200000000000e-01 + 7.179600000000000e-02 +-1.198200000000000e-01 +-2.683300000000000e-01 +-3.853500000000000e-01 +-4.924300000000000e-01 +-6.021200000000000e-01 +-7.087000000000000e-01 +-7.934200000000000e-01 +-8.383000000000000e-01 +-8.373000000000000e-01 +-7.970100000000000e-01 +-7.280799999999999e-01 +-6.355000000000000e-01 +-5.160000000000000e-01 +-3.643100000000000e-01 +-1.825400000000000e-01 + 1.530100000000000e-02 + 2.077800000000000e-01 + 3.759700000000000e-01 + 5.113500000000000e-01 + 6.159400000000000e-01 + 6.954600000000000e-01 + 7.513700000000000e-01 + 7.782800000000000e-01 + 7.681300000000000e-01 + 7.172500000000001e-01 + 6.306200000000000e-01 + 5.206300000000000e-01 + 4.022800000000000e-01 + 2.890900000000000e-01 + 1.918500000000000e-01 + 1.190800000000000e-01 + 7.598100000000001e-02 + 6.138700000000000e-02 + 6.503800000000000e-02 + 6.923500000000000e-02 + 5.561300000000000e-02 + 1.323900000000000e-02 +-5.771400000000000e-02 +-1.493100000000000e-01 +-2.528500000000000e-01 +-3.628900000000000e-01 +-4.744600000000000e-01 +-5.766200000000000e-01 +-6.502900000000000e-01 +-6.759500000000001e-01 +-6.481200000000000e-01 +-5.856000000000000e-01 +-5.269500000000000e-01 +-5.106000000000001e-01 +-5.510699999999999e-01 +-6.276700000000000e-01 +-6.942199999999999e-01 +-7.035800000000000e-01 +-6.303400000000000e-01 +-4.766900000000000e-01 +-2.602200000000000e-01 + 4.143300000000000e-03 + 3.117700000000000e-01 + 6.592200000000000e-01 + 1.026800000000000e+00 + 1.369100000000000e+00 + 1.623900000000000e+00 + 1.736800000000000e+00 + 1.684800000000000e+00 + 1.484500000000000e+00 + 1.181000000000000e+00 + 8.256000000000000e-01 + 4.580400000000000e-01 + 1.024500000000000e-01 +-2.257400000000000e-01 +-5.104400000000000e-01 +-7.316100000000000e-01 +-8.694800000000000e-01 +-9.122400000000001e-01 +-8.620600000000000e-01 +-7.374500000000000e-01 +-5.724000000000000e-01 +-4.121500000000000e-01 +-3.041900000000000e-01 +-2.839200000000000e-01 +-3.594500000000000e-01 +-5.039800000000000e-01 +-6.632500000000000e-01 +-7.768500000000000e-01 +-8.029600000000000e-01 +-7.320900000000000e-01 +-5.828800000000000e-01 +-3.850300000000000e-01 +-1.630200000000000e-01 + 6.857400000000000e-02 + 2.983500000000000e-01 + 5.104400000000000e-01 + 6.861500000000000e-01 + 8.149000000000000e-01 + 9.037700000000000e-01 + 9.733100000000000e-01 + 1.038900000000000e+00 + 1.090500000000000e+00 + 1.089400000000000e+00 + 9.882200000000000e-01 + 7.645100000000000e-01 + 4.436500000000000e-01 + 9.396699999999999e-02 +-2.048800000000000e-01 +-4.000100000000000e-01 +-4.858200000000000e-01 +-4.962000000000000e-01 +-4.778000000000000e-01 +-4.647900000000000e-01 +-4.704300000000000e-01 +-4.947000000000000e-01 +-5.354400000000000e-01 +-5.907900000000000e-01 +-6.523600000000001e-01 +-6.994500000000000e-01 +-7.041400000000000e-01 +-6.468300000000000e-01 +-5.303400000000000e-01 +-3.796500000000000e-01 +-2.255600000000000e-01 +-8.396700000000000e-02 + 5.250600000000000e-02 + 2.033400000000000e-01 + 3.777100000000000e-01 + 5.587500000000000e-01 + 7.077000000000000e-01 + 7.855200000000000e-01 + 7.762100000000000e-01 + 6.949200000000000e-01 + 5.755400000000001e-01 + 4.483800000000000e-01 + 3.246600000000000e-01 + 1.982600000000000e-01 + 6.121600000000000e-02 +-8.051000000000000e-02 +-2.035600000000000e-01 +-2.781300000000000e-01 +-2.848400000000000e-01 +-2.254700000000000e-01 +-1.215300000000000e-01 +-3.307000000000000e-03 + 1.023400000000000e-01 + 1.784600000000000e-01 + 2.176700000000000e-01 + 2.181100000000000e-01 + 1.801700000000000e-01 + 1.052700000000000e-01 +-3.720400000000000e-03 +-1.416500000000000e-01 +-2.997600000000000e-01 +-4.634700000000000e-01 +-6.103900000000000e-01 +-7.111700000000000e-01 +-7.357399999999999e-01 +-6.643700000000000e-01 +-4.987600000000000e-01 +-2.666000000000000e-01 +-1.571200000000000e-02 + 2.007400000000000e-01 + 3.413400000000000e-01 + 3.883300000000000e-01 + 3.500000000000000e-01 + 2.544900000000000e-01 + 1.394700000000000e-01 + 4.215200000000000e-02 +-8.127499999999999e-03 + 4.930000000000000e-03 + 8.127900000000000e-02 + 2.036500000000000e-01 + 3.408100000000000e-01 + 4.558600000000000e-01 + 5.175600000000000e-01 + 5.105499999999999e-01 + 4.393500000000000e-01 + 3.241500000000000e-01 + 1.906700000000000e-01 + 5.928700000000000e-02 +-6.081400000000000e-02 +-1.702600000000000e-01 +-2.728500000000000e-01 +-3.684000000000000e-01 +-4.496600000000000e-01 +-5.042100000000000e-01 +-5.195500000000000e-01 +-4.877300000000000e-01 +-4.075800000000000e-01 +-2.850100000000000e-01 +-1.330800000000000e-01 + 2.762200000000000e-02 + 1.697900000000000e-01 + 2.643000000000000e-01 + 2.896000000000000e-01 + 2.423800000000000e-01 + 1.430900000000000e-01 + 3.118900000000000e-02 +-4.969200000000000e-02 +-6.984899999999999e-02 +-2.557800000000000e-02 + 6.126700000000000e-02 + 1.553600000000000e-01 + 2.243200000000000e-01 + 2.506900000000000e-01 + 2.344200000000000e-01 + 1.874800000000000e-01 + 1.258300000000000e-01 + 6.375100000000000e-02 + 1.204800000000000e-02 +-2.170000000000000e-02 +-3.312600000000000e-02 +-2.193600000000000e-02 + 7.427600000000000e-03 + 4.641900000000000e-02 + 8.413000000000000e-02 + 1.090200000000000e-01 + 1.101000000000000e-01 + 7.835499999999999e-02 + 9.411200000000000e-03 +-9.329800000000001e-02 +-2.173700000000000e-01 +-3.447600000000000e-01 +-4.588300000000000e-01 +-5.508000000000000e-01 +-6.202000000000000e-01 +-6.682600000000000e-01 +-6.889100000000000e-01 +-6.656200000000000e-01 +-5.783700000000001e-01 +-4.177100000000000e-01 +-1.955000000000000e-01 + 5.646500000000000e-02 + 3.007500000000000e-01 + 5.120200000000000e-01 + 6.857200000000000e-01 + 8.314400000000000e-01 + 9.564600000000000e-01 + 1.052400000000000e+00 + 1.095400000000000e+00 + 1.059900000000000e+00 + 9.353399999999999e-01 + 7.335800000000000e-01 + 4.827300000000000e-01 + 2.137500000000000e-01 +-4.946600000000000e-02 +-2.904400000000000e-01 +-4.940800000000000e-01 +-6.433100000000000e-01 +-7.237100000000000e-01 +-7.331200000000000e-01 +-6.866200000000000e-01 +-6.100300000000000e-01 +-5.248200000000000e-01 +-4.354000000000000e-01 +-3.297600000000000e-01 +-1.941800000000000e-01 +-3.159100000000000e-02 + 1.309000000000000e-01 + 2.521900000000000e-01 + 2.988700000000000e-01 + 2.634200000000000e-01 + 1.662500000000000e-01 + 4.085100000000000e-02 +-8.705900000000000e-02 +-2.113800000000000e-01 +-3.410400000000000e-01 +-4.833000000000000e-01 +-6.275800000000000e-01 +-7.415200000000000e-01 +-7.823300000000000e-01 +-7.166600000000000e-01 +-5.374800000000000e-01 +-2.689800000000000e-01 + 4.251400000000000e-02 + 3.461000000000000e-01 + 6.034200000000000e-01 + 7.975100000000001e-01 + 9.306300000000000e-01 + 1.013900000000000e+00 + 1.055900000000000e+00 + 1.057200000000000e+00 + 1.012800000000000e+00 + 9.211200000000000e-01 + 7.895300000000000e-01 + 6.338100000000000e-01 + 4.695500000000000e-01 + 3.032300000000000e-01 + 1.304900000000000e-01 +-5.551400000000000e-02 +-2.518200000000000e-01 +-4.397300000000000e-01 +-5.921999999999999e-01 +-6.911300000000000e-01 +-7.419700000000000e-01 +-7.732599999999999e-01 +-8.185900000000000e-01 +-8.918199999999999e-01 +-9.728800000000000e-01 +-1.015200000000000e+00 +-9.715000000000000e-01 +-8.210800000000000e-01 +-5.824500000000000e-01 +-3.030900000000000e-01 +-3.527200000000000e-02 + 1.864700000000000e-01 + 3.533500000000000e-01 + 4.746600000000000e-01 + 5.632100000000000e-01 + 6.247200000000001e-01 + 6.564200000000000e-01 + 6.522000000000000e-01 + 6.084400000000000e-01 + 5.269100000000000e-01 + 4.152100000000000e-01 + 2.870200000000000e-01 + 1.621600000000000e-01 + 6.384600000000000e-02 + 1.117800000000000e-02 + 8.773500000000000e-03 + 4.026400000000000e-02 + 7.208600000000000e-02 + 6.838500000000000e-02 + 1.006200000000000e-02 +-9.302800000000000e-02 +-2.046000000000000e-01 +-2.785400000000000e-01 +-2.806900000000000e-01 +-2.043700000000000e-01 +-7.230399999999999e-02 + 7.475100000000000e-02 + 1.955300000000000e-01 + 2.633500000000000e-01 + 2.724500000000000e-01 + 2.346800000000000e-01 + 1.696700000000000e-01 + 9.425500000000001e-02 + 1.639100000000000e-02 +-6.405800000000000e-02 +-1.489100000000000e-01 +-2.341900000000000e-01 +-3.069400000000000e-01 +-3.489700000000000e-01 +-3.459700000000000e-01 +-2.965600000000000e-01 +-2.155100000000000e-01 +-1.290100000000000e-01 +-6.418600000000001e-02 +-3.847800000000000e-02 +-5.369700000000000e-02 +-9.657100000000000e-02 +-1.445400000000000e-01 +-1.741700000000000e-01 +-1.696800000000000e-01 +-1.292000000000000e-01 +-6.629200000000000e-02 +-4.518800000000000e-03 + 3.437200000000000e-02 + 4.372400000000000e-02 + 3.871800000000000e-02 + 5.045200000000000e-02 + 1.084700000000000e-01 + 2.211300000000000e-01 + 3.664300000000000e-01 + 5.001700000000000e-01 + 5.774899999999999e-01 + 5.746400000000000e-01 + 4.979600000000000e-01 + 3.760400000000000e-01 + 2.423200000000000e-01 + 1.203400000000000e-01 + 1.938800000000000e-02 +-6.071700000000000e-02 +-1.237000000000000e-01 +-1.753600000000000e-01 +-2.252500000000000e-01 +-2.854200000000000e-01 +-3.621800000000000e-01 +-4.453400000000000e-01 +-5.047300000000000e-01 +-5.011200000000000e-01 +-4.078300000000000e-01 +-2.297000000000000e-01 +-5.581900000000000e-03 + 2.088100000000000e-01 + 3.669100000000000e-01 + 4.492600000000000e-01 + 4.626800000000000e-01 + 4.242500000000000e-01 + 3.442600000000000e-01 + 2.212600000000000e-01 + 5.174900000000000e-02 +-1.552300000000000e-01 +-3.713700000000000e-01 +-5.562100000000000e-01 +-6.728900000000000e-01 +-7.018300000000000e-01 +-6.444299999999999e-01 +-5.173600000000000e-01 +-3.436900000000000e-01 +-1.470700000000000e-01 + 5.027700000000000e-02 + 2.283800000000000e-01 + 3.717600000000000e-01 + 4.717700000000000e-01 + 5.264600000000000e-01 + 5.370900000000000e-01 + 5.047199999999999e-01 + 4.311400000000000e-01 + 3.246300000000000e-01 + 2.051600000000000e-01 + 1.021600000000000e-01 + 4.296500000000000e-02 + 3.831500000000000e-02 + 7.555000000000001e-02 + 1.257600000000000e-01 + 1.608100000000000e-01 + 1.682100000000000e-01 + 1.534400000000000e-01 + 1.289200000000000e-01 + 9.982700000000000e-02 + 5.874100000000000e-02 +-6.471700000000000e-03 +-9.866999999999999e-02 +-2.036800000000000e-01 +-2.958900000000000e-01 +-3.533500000000000e-01 +-3.709300000000000e-01 +-3.620700000000000e-01 +-3.491000000000000e-01 +-3.502100000000000e-01 +-3.721700000000000e-01 +-4.113900000000000e-01 +-4.586500000000000e-01 +-5.017100000000000e-01 +-5.244300000000000e-01 +-5.066200000000000e-01 +-4.286600000000000e-01 +-2.802400000000000e-01 +-6.718200000000001e-02 + 1.891100000000000e-01 + 4.589500000000000e-01 + 7.119200000000000e-01 + 9.189900000000000e-01 + 1.050400000000000e+00 + 1.076900000000000e+00 + 9.802999999999999e-01 + 7.704900000000000e-01 + 4.943400000000000e-01 + 2.246600000000000e-01 + 2.901500000000000e-02 +-6.449600000000000e-02 +-8.130800000000001e-02 +-8.239100000000001e-02 +-1.245200000000000e-01 +-2.251800000000000e-01 +-3.555300000000000e-01 +-4.644500000000000e-01 +-5.141200000000000e-01 +-5.008000000000000e-01 +-4.481400000000000e-01 +-3.824700000000000e-01 +-3.129600000000000e-01 +-2.325200000000000e-01 +-1.359400000000000e-01 +-3.633800000000000e-02 + 3.694400000000000e-02 + 5.853900000000000e-02 + 2.804000000000000e-02 +-2.729600000000000e-02 +-7.172700000000000e-02 +-8.665800000000000e-02 +-8.136200000000000e-02 +-8.003300000000001e-02 +-9.684800000000000e-02 +-1.212200000000000e-01 +-1.265000000000000e-01 +-9.456800000000000e-02 +-3.393100000000000e-02 + 2.629700000000000e-02 + 6.320000000000001e-02 + 8.490499999999999e-02 + 1.298600000000000e-01 + 2.368400000000000e-01 + 4.070300000000000e-01 + 5.888900000000000e-01 + 7.015300000000000e-01 + 6.834100000000000e-01 + 5.329700000000001e-01 + 3.122500000000000e-01 + 1.104300000000000e-01 +-7.387300000000000e-03 +-3.185000000000000e-02 +-2.774400000000000e-03 + 2.629600000000000e-02 + 2.419200000000000e-02 +-5.986900000000000e-03 +-4.296000000000000e-02 +-7.376700000000000e-02 +-1.076600000000000e-01 +-1.673200000000000e-01 +-2.667800000000000e-01 +-3.958100000000000e-01 +-5.238400000000000e-01 +-6.197300000000000e-01 +-6.709900000000000e-01 +-6.868400000000000e-01 +-6.830500000000000e-01 +-6.616400000000000e-01 +-6.025100000000000e-01 +-4.752200000000000e-01 +-2.633700000000000e-01 + 1.578700000000000e-02 + 3.111000000000000e-01 + 5.579900000000000e-01 + 7.072200000000000e-01 + 7.446100000000000e-01 + 6.912400000000000e-01 + 5.866300000000000e-01 + 4.673200000000000e-01 + 3.541800000000000e-01 + 2.535200000000000e-01 + 1.672800000000000e-01 + 1.019400000000000e-01 + 6.869900000000000e-02 + 7.525200000000000e-02 + 1.164200000000000e-01 + 1.718800000000000e-01 + 2.139400000000000e-01 + 2.209100000000000e-01 + 1.873100000000000e-01 + 1.245100000000000e-01 + 5.175400000000000e-02 +-1.577600000000000e-02 +-7.385300000000000e-02 +-1.270500000000000e-01 +-1.804300000000000e-01 +-2.321100000000000e-01 +-2.728400000000000e-01 +-2.929000000000000e-01 +-2.910800000000000e-01 +-2.784400000000000e-01 +-2.734500000000000e-01 +-2.909300000000000e-01 +-3.319400000000000e-01 +-3.810400000000000e-01 +-4.131100000000000e-01 +-4.057100000000000e-01 +-3.502400000000000e-01 +-2.560600000000000e-01 +-1.459300000000000e-01 +-4.545000000000000e-02 + 2.824900000000000e-02 + 7.353500000000000e-02 + 1.040100000000000e-01 + 1.410400000000000e-01 + 2.020200000000000e-01 + 2.896000000000000e-01 + 3.873200000000000e-01 + 4.647300000000000e-01 + 4.909700000000000e-01 + 4.504900000000000e-01 + 3.529000000000000e-01 + 2.311200000000000e-01 + 1.278500000000000e-01 + 7.707500000000000e-02 + 8.988699999999999e-02 + 1.511700000000000e-01 + 2.277300000000000e-01 + 2.825600000000000e-01 + 2.879700000000000e-01 + 2.331500000000000e-01 + 1.253600000000000e-01 +-1.310100000000000e-02 +-1.504200000000000e-01 +-2.530100000000000e-01 +-2.954700000000000e-01 +-2.707100000000000e-01 +-1.954400000000000e-01 +-1.065400000000000e-01 +-4.747300000000000e-02 +-5.002300000000000e-02 +-1.205300000000000e-01 +-2.380700000000000e-01 +-3.655400000000000e-01 +-4.671300000000000e-01 +-5.225300000000000e-01 +-5.311900000000001e-01 +-5.063700000000000e-01 +-4.645100000000000e-01 +-4.164400000000000e-01 +-3.638500000000000e-01 +-3.004700000000000e-01 +-2.154400000000000e-01 +-9.784500000000000e-02 + 5.787300000000000e-02 + 2.459000000000000e-01 + 4.453900000000000e-01 + 6.234000000000000e-01 + 7.459900000000000e-01 + 7.936900000000000e-01 + 7.721800000000000e-01 + 7.101200000000000e-01 + 6.432300000000000e-01 + 5.932900000000000e-01 + 5.556000000000000e-01 + 5.036000000000000e-01 + 4.081300000000000e-01 + 2.586000000000000e-01 + 7.176000000000000e-02 +-1.174600000000000e-01 +-2.758800000000000e-01 +-3.884700000000000e-01 +-4.605900000000000e-01 +-5.062300000000000e-01 +-5.332300000000000e-01 +-5.373000000000000e-01 +-5.088500000000000e-01 +-4.461300000000000e-01 +-3.629900000000000e-01 +-2.845300000000000e-01 +-2.337900000000000e-01 +-2.193800000000000e-01 +-2.330100000000000e-01 +-2.574800000000000e-01 +-2.780200000000000e-01 +-2.882200000000000e-01 +-2.877000000000000e-01 +-2.754000000000000e-01 +-2.454700000000000e-01 +-1.891100000000000e-01 +-9.963700000000000e-02 + 2.434800000000000e-02 + 1.799400000000000e-01 + 3.622900000000000e-01 + 5.636100000000001e-01 + 7.678199999999999e-01 + 9.459800000000000e-01 + 1.059800000000000e+00 + 1.075600000000000e+00 + 9.811000000000000e-01 + 7.946900000000000e-01 + 5.572700000000000e-01 + 3.114300000000000e-01 + 8.104400000000000e-02 +-1.341200000000000e-01 +-3.452300000000000e-01 +-5.528400000000000e-01 +-7.341299999999999e-01 +-8.498700000000000e-01 +-8.673600000000000e-01 +-7.835299999999999e-01 +-6.318500000000000e-01 +-4.680700000000000e-01 +-3.440300000000000e-01 +-2.860200000000000e-01 +-2.888700000000000e-01 +-3.257400000000000e-01 +-3.640100000000000e-01 +-3.770800000000000e-01 +-3.485800000000000e-01 +-2.720500000000000e-01 +-1.507700000000000e-01 + 1.625300000000000e-03 + 1.633300000000000e-01 + 3.119800000000000e-01 + 4.351000000000000e-01 + 5.360400000000000e-01 + 6.292700000000000e-01 + 7.266300000000000e-01 + 8.238799999999999e-01 + 8.984500000000000e-01 + 9.216500000000000e-01 + 8.775400000000000e-01 + 7.748600000000000e-01 + 6.425300000000000e-01 + 5.112100000000001e-01 + 3.936100000000000e-01 + 2.774900000000000e-01 + 1.363900000000000e-01 +-4.993700000000000e-02 +-2.794100000000000e-01 +-5.264100000000000e-01 +-7.549800000000000e-01 +-9.360700000000000e-01 +-1.057200000000000e+00 +-1.119800000000000e+00 +-1.128700000000000e+00 +-1.084400000000000e+00 +-9.839400000000000e-01 +-8.297400000000000e-01 +-6.377200000000000e-01 +-4.377800000000000e-01 +-2.636600000000000e-01 +-1.384600000000000e-01 +-6.452300000000000e-02 +-2.433300000000000e-02 + 8.692200000000001e-03 + 5.642900000000000e-02 + 1.278200000000000e-01 + 2.201600000000000e-01 + 3.271000000000000e-01 + 4.461200000000000e-01 + 5.790700000000000e-01 + 7.254100000000000e-01 + 8.737100000000000e-01 + 9.994499999999999e-01 + 1.073300000000000e+00 + 1.075700000000000e+00 + 1.009600000000000e+00 + 8.997000000000001e-01 + 7.793000000000000e-01 + 6.704400000000000e-01 + 5.710700000000000e-01 + 4.582900000000000e-01 + 3.063900000000000e-01 + 1.081100000000000e-01 +-1.154400000000000e-01 +-3.233300000000000e-01 +-4.771400000000000e-01 +-5.627900000000000e-01 +-5.980900000000000e-01 +-6.216000000000000e-01 +-6.700800000000000e-01 +-7.585100000000000e-01 +-8.736400000000000e-01 +-9.829400000000000e-01 +-1.052000000000000e+00 +-1.060400000000000e+00 +-1.008300000000000e+00 +-9.140100000000000e-01 +-8.050600000000000e-01 +-7.068000000000000e-01 +-6.323900000000000e-01 +-5.762100000000000e-01 +-5.133200000000000e-01 +-4.072800000000000e-01 +-2.253100000000000e-01 + 4.475000000000000e-02 + 3.840900000000000e-01 + 7.461000000000000e-01 + 1.072900000000000e+00 + 1.317000000000000e+00 + 1.457500000000000e+00 + 1.501100000000000e+00 + 1.470600000000000e+00 + 1.388500000000000e+00 + 1.265700000000000e+00 + 1.101800000000000e+00 + 8.938600000000000e-01 + 6.462500000000000e-01 + 3.750300000000000e-01 + 1.042100000000000e-01 +-1.421000000000000e-01 +-3.466800000000000e-01 +-5.016200000000000e-01 +-6.069700000000000e-01 +-6.681800000000000e-01 +-6.944900000000001e-01 +-6.984300000000000e-01 +-6.943300000000000e-01 +-6.947100000000000e-01 +-7.050300000000000e-01 +-7.197500000000000e-01 +-7.225200000000001e-01 +-6.917000000000000e-01 +-6.093800000000000e-01 +-4.696200000000000e-01 +-2.821800000000000e-01 +-6.959100000000000e-02 + 1.406200000000000e-01 + 3.246800000000000e-01 + 4.676600000000000e-01 + 5.631500000000000e-01 + 6.086500000000000e-01 + 6.009900000000000e-01 + 5.355000000000000e-01 + 4.099300000000000e-01 + 2.304700000000000e-01 + 1.546600000000000e-02 +-2.061700000000000e-01 +-4.014600000000000e-01 +-5.413100000000000e-01 +-6.064700000000000e-01 +-5.900900000000000e-01 +-4.980300000000000e-01 +-3.484500000000000e-01 +-1.701400000000000e-01 + 2.641200000000000e-03 + 1.398400000000000e-01 + 2.271600000000000e-01 + 2.725700000000000e-01 + 3.017600000000000e-01 + 3.425300000000000e-01 + 4.065100000000000e-01 + 4.802700000000000e-01 + 5.332800000000000e-01 + 5.387300000000000e-01 + 4.933200000000000e-01 + 4.215300000000000e-01 + 3.599100000000000e-01 + 3.316000000000000e-01 + 3.291600000000000e-01 + 3.189900000000000e-01 + 2.654300000000000e-01 + 1.578600000000000e-01 + 2.118700000000000e-02 +-9.895400000000000e-02 +-1.669200000000000e-01 +-1.829600000000000e-01 +-1.860200000000000e-01 +-2.310500000000000e-01 +-3.549100000000000e-01 +-5.525200000000000e-01 +-7.770100000000000e-01 +-9.621700000000000e-01 +-1.052200000000000e+00 +-1.021900000000000e+00 +-8.795500000000001e-01 +-6.559199999999999e-01 +-3.905800000000000e-01 +-1.230700000000000e-01 + 1.102200000000000e-01 + 2.785900000000000e-01 + 3.635100000000000e-01 + 3.674200000000000e-01 + 3.181800000000000e-01 + 2.624100000000000e-01 + 2.476000000000000e-01 + 3.007500000000000e-01 + 4.151900000000000e-01 + 5.533000000000000e-01 + 6.641800000000000e-01 + 7.066600000000000e-01 + 6.656600000000000e-01 + 5.544700000000000e-01 + 4.043400000000000e-01 + 2.493000000000000e-01 + 1.151900000000000e-01 + 1.713200000000000e-02 +-3.717800000000000e-02 +-4.420500000000000e-02 +-5.779100000000000e-03 + 6.630500000000000e-02 + 1.476400000000000e-01 + 2.055800000000000e-01 + 2.107600000000000e-01 + 1.496400000000000e-01 + 3.009100000000000e-02 +-1.244100000000000e-01 +-2.885600000000000e-01 +-4.477800000000000e-01 +-6.008800000000000e-01 +-7.513100000000000e-01 +-8.939700000000000e-01 +-1.008000000000000e+00 +-1.062800000000000e+00 +-1.033200000000000e+00 +-9.153500000000000e-01 +-7.310400000000000e-01 +-5.175700000000000e-01 +-3.097500000000000e-01 +-1.247700000000000e-01 + 4.125500000000000e-02 + 2.050100000000000e-01 + 3.827100000000000e-01 + 5.802400000000000e-01 + 7.906400000000000e-01 + 9.971700000000000e-01 + 1.177600000000000e+00 + 1.307800000000000e+00 + 1.365200000000000e+00 + 1.334700000000000e+00 + 1.215600000000000e+00 + 1.024500000000000e+00 + 7.905000000000000e-01 + 5.425900000000000e-01 + 2.966000000000000e-01 + 5.085700000000000e-02 +-2.052300000000000e-01 +-4.746400000000000e-01 +-7.402700000000000e-01 +-9.662900000000000e-01 +-1.113900000000000e+00 +-1.161500000000000e+00 +-1.115000000000000e+00 +-1.002200000000000e+00 +-8.553500000000001e-01 +-6.943200000000000e-01 +-5.223700000000000e-01 +-3.357100000000000e-01 +-1.383600000000000e-01 + 4.977000000000000e-02 + 1.977200000000000e-01 + 2.776700000000000e-01 + 2.787500000000000e-01 + 2.118500000000000e-01 + 1.042700000000000e-01 +-1.081700000000000e-02 +-1.036700000000000e-01 +-1.529500000000000e-01 +-1.478700000000000e-01 +-8.981599999999999e-02 + 6.683000000000000e-03 + 1.165600000000000e-01 + 2.120700000000000e-01 + 2.738600000000000e-01 + 2.989800000000000e-01 + 3.005100000000000e-01 + 2.986000000000000e-01 + 3.085900000000000e-01 + 3.340200000000000e-01 + 3.682200000000000e-01 + 4.014300000000000e-01 + 4.272900000000000e-01 + 4.438800000000000e-01 + 4.502800000000000e-01 + 4.435600000000000e-01 + 4.193700000000000e-01 + 3.752600000000000e-01 + 3.121100000000000e-01 + 2.311000000000000e-01 + 1.289500000000000e-01 +-2.275700000000000e-03 +-1.673600000000000e-01 +-3.564100000000000e-01 +-5.398600000000000e-01 +-6.779200000000000e-01 +-7.418100000000000e-01 +-7.330500000000000e-01 +-6.853200000000000e-01 +-6.441000000000000e-01 +-6.361700000000000e-01 +-6.499700000000000e-01 +-6.422000000000000e-01 +-5.672800000000000e-01 +-4.095600000000000e-01 +-1.951200000000000e-01 + 2.503700000000000e-02 + 2.076800000000000e-01 + 3.416300000000000e-01 + 4.463500000000000e-01 + 5.477700000000000e-01 + 6.513800000000000e-01 + 7.340300000000000e-01 + 7.605100000000000e-01 + 7.109700000000000e-01 + 5.973000000000001e-01 + 4.558400000000000e-01 + 3.226500000000000e-01 + 2.108000000000000e-01 + 1.068400000000000e-01 +-1.267700000000000e-02 +-1.587600000000000e-01 +-3.194200000000000e-01 +-4.676500000000000e-01 +-5.795000000000000e-01 +-6.465300000000000e-01 +-6.737700000000000e-01 +-6.670199999999999e-01 +-6.224100000000000e-01 +-5.279600000000000e-01 +-3.754600000000000e-01 +-1.719200000000000e-01 + 5.978400000000000e-02 + 2.912500000000000e-01 + 5.009700000000000e-01 + 6.783300000000000e-01 + 8.170100000000000e-01 + 9.058000000000000e-01 + 9.271800000000000e-01 + 8.668900000000000e-01 + 7.268700000000000e-01 + 5.298100000000000e-01 + 3.094400000000000e-01 + 9.307200000000000e-02 +-1.101400000000000e-01 +-3.054700000000000e-01 +-4.965100000000000e-01 +-6.699500000000000e-01 +-7.948400000000000e-01 +-8.383400000000000e-01 +-7.866600000000000e-01 +-6.554500000000000e-01 +-4.817500000000000e-01 +-3.037500000000000e-01 +-1.435000000000000e-01 +-4.380900000000000e-03 + 1.170100000000000e-01 + 2.164200000000000e-01 + 2.779400000000000e-01 + 2.841400000000000e-01 + 2.318200000000000e-01 + 1.400600000000000e-01 + 4.311600000000000e-02 +-2.742800000000000e-02 +-5.911300000000000e-02 +-6.259900000000000e-02 +-6.179100000000000e-02 +-7.802000000000001e-02 +-1.188600000000000e-01 +-1.769800000000000e-01 +-2.364200000000000e-01 +-2.796600000000000e-01 +-2.909000000000000e-01 +-2.562100000000000e-01 +-1.646600000000000e-01 +-1.267000000000000e-02 + 1.903000000000000e-01 + 4.198800000000000e-01 + 6.418100000000000e-01 + 8.222699999999999e-01 + 9.373400000000000e-01 + 9.764000000000000e-01 + 9.386300000000000e-01 + 8.270000000000000e-01 + 6.454800000000001e-01 + 4.020700000000000e-01 + 1.146300000000000e-01 +-1.861900000000000e-01 +-4.611500000000000e-01 +-6.729200000000000e-01 +-7.977700000000000e-01 +-8.322300000000000e-01 +-7.917999999999999e-01 +-7.028200000000000e-01 +-5.921400000000000e-01 +-4.789700000000000e-01 +-3.717600000000000e-01 +-2.702400000000000e-01 +-1.709900000000000e-01 +-7.397800000000000e-02 + 1.324300000000000e-02 + 7.614000000000000e-02 + 9.936800000000000e-02 + 7.606599999999999e-02 + 1.514100000000000e-02 +-5.869200000000000e-02 +-1.137900000000000e-01 +-1.254900000000000e-01 +-8.727000000000000e-02 +-1.245700000000000e-02 + 7.468900000000001e-02 + 1.525600000000000e-01 + 2.118200000000000e-01 + 2.556000000000000e-01 + 2.919500000000000e-01 + 3.257200000000000e-01 + 3.564400000000000e-01 + 3.827400000000000e-01 + 4.074600000000000e-01 + 4.364300000000000e-01 + 4.697800000000000e-01 + 4.924900000000000e-01 + 4.742300000000000e-01 + 3.829900000000000e-01 + 2.062900000000000e-01 +-3.407800000000000e-02 +-2.856800000000000e-01 +-4.878400000000000e-01 +-5.999400000000000e-01 +-6.181600000000000e-01 +-5.708100000000000e-01 +-4.969800000000000e-01 +-4.241500000000000e-01 +-3.591200000000000e-01 +-2.954900000000000e-01 +-2.279400000000000e-01 +-1.602400000000000e-01 +-1.008500000000000e-01 +-5.218700000000000e-02 +-4.995800000000000e-03 + 5.549400000000000e-02 + 1.363500000000000e-01 + 2.285400000000000e-01 + 3.117300000000000e-01 + 3.693000000000000e-01 + 4.007900000000000e-01 + 4.205100000000000e-01 + 4.424200000000000e-01 + 4.639200000000000e-01 + 4.631500000000000e-01 + 4.138000000000000e-01 + 3.065200000000000e-01 + 1.590500000000000e-01 + 5.784800000000000e-03 +-1.262700000000000e-01 +-2.360000000000000e-01 +-3.458400000000000e-01 +-4.793500000000000e-01 +-6.360700000000000e-01 +-7.835000000000000e-01 +-8.732500000000000e-01 +-8.693400000000000e-01 +-7.679500000000000e-01 +-5.952300000000000e-01 +-3.875100000000000e-01 +-1.711300000000000e-01 + 4.284400000000000e-02 + 2.481400000000000e-01 + 4.301600000000000e-01 + 5.648200000000000e-01 + 6.322500000000000e-01 + 6.334500000000000e-01 + 5.941200000000000e-01 + 5.501800000000000e-01 + 5.249000000000000e-01 + 5.158000000000000e-01 + 5.015600000000000e-01 + 4.632400000000000e-01 + 4.017000000000000e-01 + 3.367700000000000e-01 + 2.887900000000000e-01 + 2.581900000000000e-01 + 2.209000000000000e-01 + 1.445100000000000e-01 + 1.318800000000000e-02 +-1.580200000000000e-01 +-3.308100000000000e-01 +-4.674700000000000e-01 +-5.531199999999999e-01 +-6.005300000000000e-01 +-6.350800000000000e-01 +-6.724300000000000e-01 +-7.053500000000000e-01 +-7.085100000000000e-01 +-6.563200000000000e-01 +-5.410100000000000e-01 +-3.792200000000000e-01 +-2.045400000000000e-01 +-5.201800000000000e-02 + 5.637800000000000e-02 + 1.187400000000000e-01 + 1.510100000000000e-01 + 1.777800000000000e-01 + 2.199200000000000e-01 + 2.840400000000000e-01 + 3.585800000000000e-01 + 4.193900000000000e-01 + 4.430900000000000e-01 + 4.214800000000000e-01 + 3.678200000000000e-01 + 3.103400000000000e-01 + 2.764000000000000e-01 + 2.771300000000000e-01 + 3.024500000000000e-01 + 3.285700000000000e-01 + 3.314600000000000e-01 + 2.964400000000000e-01 + 2.192000000000000e-01 + 1.016400000000000e-01 +-5.000200000000000e-02 +-2.211000000000000e-01 +-3.834900000000000e-01 +-4.980600000000000e-01 +-5.293200000000000e-01 +-4.653700000000000e-01 +-3.293300000000000e-01 +-1.717200000000000e-01 +-4.582100000000000e-02 + 1.867500000000000e-02 + 2.692900000000000e-02 + 8.510000000000000e-03 +-5.648000000000000e-03 +-1.783600000000000e-03 + 1.452600000000000e-02 + 3.061400000000000e-02 + 4.061800000000000e-02 + 4.893300000000000e-02 + 6.187900000000000e-02 + 7.709400000000000e-02 + 8.182700000000000e-02 + 6.262500000000000e-02 + 1.808000000000000e-02 +-3.698400000000000e-02 +-8.036000000000000e-02 +-9.758300000000000e-02 +-9.114400000000000e-02 +-7.662300000000000e-02 +-6.951700000000000e-02 +-7.393900000000000e-02 +-8.203600000000000e-02 +-8.340500000000001e-02 +-7.548600000000000e-02 +-6.590600000000001e-02 +-6.544999999999999e-02 +-7.848400000000000e-02 +-9.913000000000000e-02 +-1.155000000000000e-01 +-1.169400000000000e-01 +-9.742000000000001e-02 +-5.309500000000000e-02 + 2.097100000000000e-02 + 1.288500000000000e-01 + 2.658800000000000e-01 + 4.117800000000000e-01 + 5.331900000000001e-01 + 5.978400000000000e-01 + 5.918200000000000e-01 + 5.275700000000000e-01 + 4.352100000000000e-01 + 3.423100000000000e-01 + 2.561800000000000e-01 + 1.614100000000000e-01 + 3.407800000000000e-02 +-1.378100000000000e-01 +-3.422600000000000e-01 +-5.470699999999999e-01 +-7.153700000000000e-01 +-8.211900000000000e-01 +-8.556700000000000e-01 +-8.229300000000001e-01 +-7.321000000000000e-01 +-5.928800000000000e-01 +-4.164800000000000e-01 +-2.183900000000000e-01 +-1.811800000000000e-02 + 1.652500000000000e-01 + 3.182300000000000e-01 + 4.350000000000000e-01 + 5.155200000000000e-01 + 5.626600000000000e-01 + 5.815000000000000e-01 + 5.805300000000000e-01 + 5.712800000000000e-01 + 5.632800000000000e-01 + 5.560600000000000e-01 + 5.342500000000000e-01 + 4.719500000000000e-01 + 3.464500000000000e-01 + 1.539900000000000e-01 +-8.259900000000001e-02 +-3.202800000000000e-01 +-5.133200000000000e-01 +-6.318000000000000e-01 +-6.709800000000000e-01 +-6.477800000000000e-01 +-5.886300000000000e-01 +-5.170200000000000e-01 +-4.469800000000000e-01 +-3.832200000000000e-01 +-3.246200000000000e-01 +-2.669300000000000e-01 +-2.036700000000000e-01 +-1.267400000000000e-01 +-2.848500000000000e-02 + 9.427500000000000e-02 + 2.365800000000000e-01 + 3.842400000000000e-01 + 5.165400000000000e-01 + 6.118700000000000e-01 + 6.541700000000000e-01 + 6.378700000000000e-01 + 5.697400000000000e-01 + 4.667000000000000e-01 + 3.501800000000000e-01 + 2.387200000000000e-01 + 1.418800000000000e-01 + 5.828200000000000e-02 +-2.121600000000000e-02 +-1.071700000000000e-01 +-2.055000000000000e-01 +-3.147700000000000e-01 +-4.271900000000000e-01 +-5.309700000000001e-01 +-6.117300000000000e-01 +-6.524300000000000e-01 +-6.342600000000000e-01 +-5.411200000000000e-01 +-3.675800000000000e-01 +-1.267800000000000e-01 + 1.473500000000000e-01 + 4.064600000000000e-01 + 6.011400000000000e-01 + 6.953800000000000e-01 + 6.760100000000000e-01 + 5.541500000000000e-01 + 3.599000000000000e-01 + 1.336900000000000e-01 +-8.270100000000000e-02 +-2.544400000000000e-01 +-3.606300000000000e-01 +-3.985500000000000e-01 +-3.827300000000000e-01 +-3.376400000000000e-01 +-2.863300000000000e-01 +-2.404300000000000e-01 +-1.974500000000000e-01 +-1.468300000000000e-01 +-8.054500000000001e-02 +-8.449900000000000e-04 + 8.016200000000000e-02 + 1.485900000000000e-01 + 1.982100000000000e-01 + 2.339600000000000e-01 + 2.669700000000000e-01 + 3.045600000000000e-01 + 3.429100000000000e-01 + 3.679300000000000e-01 + 3.640800000000000e-01 + 3.251100000000000e-01 + 2.592600000000000e-01 + 1.852100000000000e-01 + 1.212000000000000e-01 + 7.438100000000000e-02 + 3.726600000000000e-02 +-6.493400000000000e-03 +-7.062800000000000e-02 +-1.563900000000000e-01 +-2.506700000000000e-01 +-3.334600000000000e-01 +-3.900400000000000e-01 +-4.198600000000000e-01 +-4.359600000000000e-01 +-4.544300000000000e-01 +-4.804100000000000e-01 +-5.002300000000000e-01 +-4.858700000000000e-01 +-4.106600000000000e-01 +-2.670500000000000e-01 +-7.531200000000000e-02 + 1.229800000000000e-01 + 2.836600000000000e-01 + 3.798800000000000e-01 + 4.120500000000000e-01 + 4.028400000000000e-01 + 3.819000000000000e-01 + 3.702500000000000e-01 + 3.731400000000000e-01 + 3.832500000000000e-01 + 3.894800000000000e-01 + 3.843000000000000e-01 + 3.658600000000000e-01 + 3.355900000000000e-01 + 2.950700000000000e-01 + 2.447100000000000e-01 + 1.840800000000000e-01 + 1.122500000000000e-01 + 2.725900000000000e-02 +-7.396999999999999e-02 +-1.932400000000000e-01 +-3.265900000000000e-01 +-4.605400000000000e-01 +-5.730900000000000e-01 +-6.405900000000000e-01 +-6.475100000000000e-01 +-5.937100000000000e-01 +-4.948200000000000e-01 +-3.760100000000000e-01 +-2.627300000000000e-01 +-1.729100000000000e-01 +-1.130000000000000e-01 +-7.734500000000000e-02 +-5.001900000000000e-02 +-9.352200000000000e-03 + 6.410800000000000e-02 + 1.774000000000000e-01 + 3.173600000000000e-01 + 4.513900000000000e-01 + 5.394700000000000e-01 + 5.528999999999999e-01 + 4.895800000000000e-01 + 3.758200000000000e-01 + 2.530800000000000e-01 + 1.573900000000000e-01 + 1.046000000000000e-01 + 8.961600000000000e-02 + 9.775000000000000e-02 + 1.177100000000000e-01 + 1.456800000000000e-01 + 1.787400000000000e-01 + 2.052500000000000e-01 + 2.033400000000000e-01 + 1.515600000000000e-01 + 4.527700000000000e-02 +-9.410700000000000e-02 +-2.260500000000000e-01 +-3.113900000000000e-01 +-3.337000000000000e-01 +-3.074600000000000e-01 +-2.678400000000000e-01 +-2.494200000000000e-01 +-2.676600000000000e-01 +-3.141400000000000e-01 +-3.660300000000000e-01 +-4.016100000000000e-01 +-4.111800000000000e-01 +-3.982500000000000e-01 +-3.732200000000000e-01 +-3.456100000000000e-01 +-3.196600000000000e-01 +-2.938000000000000e-01 +-2.620100000000000e-01 +-2.154400000000000e-01 +-1.445400000000000e-01 +-4.244100000000000e-02 + 9.138700000000000e-02 + 2.499100000000000e-01 + 4.214500000000000e-01 + 5.952100000000000e-01 + 7.643500000000000e-01 + 9.228900000000000e-01 + 1.057500000000000e+00 + 1.141900000000000e+00 + 1.140400000000000e+00 + 1.024700000000000e+00 + 7.927700000000000e-01 + 4.797400000000000e-01 + 1.484700000000000e-01 +-1.357900000000000e-01 +-3.337700000000000e-01 +-4.462900000000000e-01 +-5.060000000000000e-01 +-5.526000000000000e-01 +-6.079300000000000e-01 +-6.657800000000000e-01 +-7.009300000000001e-01 +-6.890900000000000e-01 +-6.237000000000000e-01 +-5.199600000000000e-01 +-4.061900000000000e-01 +-3.100400000000000e-01 +-2.481100000000000e-01 +-2.224000000000000e-01 +-2.221200000000000e-01 +-2.276700000000000e-01 +-2.158900000000000e-01 +-1.675200000000000e-01 +-7.636600000000000e-02 + 4.416300000000000e-02 + 1.628200000000000e-01 + 2.429600000000000e-01 + 2.605700000000000e-01 + 2.171200000000000e-01 + 1.386200000000000e-01 + 6.078500000000000e-02 + 1.026400000000000e-02 +-5.479600000000000e-03 + 6.359200000000000e-03 + 3.746400000000000e-02 + 8.842300000000000e-02 + 1.661700000000000e-01 + 2.711100000000000e-01 + 3.861600000000000e-01 + 4.796700000000000e-01 + 5.231800000000000e-01 + 5.118100000000000e-01 + 4.707800000000000e-01 + 4.402200000000000e-01 + 4.472500000000000e-01 + 4.849000000000000e-01 + 5.139400000000000e-01 + 4.876600000000000e-01 + 3.827900000000000e-01 + 2.146700000000000e-01 + 2.648000000000000e-02 +-1.390200000000000e-01 +-2.646400000000000e-01 +-3.633700000000000e-01 +-4.614600000000000e-01 +-5.747000000000000e-01 +-6.965800000000000e-01 +-8.059200000000000e-01 +-8.853300000000000e-01 +-9.333200000000000e-01 +-9.592300000000000e-01 +-9.655000000000000e-01 +-9.336600000000000e-01 +-8.290500000000000e-01 +-6.245200000000000e-01 +-3.271800000000000e-01 + 1.257000000000000e-02 + 3.197300000000000e-01 + 5.316000000000000e-01 + 6.298000000000000e-01 + 6.466400000000000e-01 + 6.417800000000000e-01 + 6.646000000000000e-01 + 7.265300000000000e-01 + 7.995100000000001e-01 + 8.388700000000000e-01 + 8.132900000000000e-01 + 7.217400000000000e-01 + 5.885500000000000e-01 + 4.433600000000000e-01 + 3.021800000000000e-01 + 1.627400000000000e-01 + 1.531500000000000e-02 +-1.411500000000000e-01 +-2.910900000000000e-01 +-4.086300000000000e-01 +-4.734200000000000e-01 +-4.841700000000000e-01 +-4.600900000000000e-01 +-4.289700000000000e-01 +-4.100300000000000e-01 +-4.025800000000000e-01 +-3.873400000000000e-01 +-3.391200000000000e-01 +-2.428600000000000e-01 +-1.042800000000000e-01 + 5.007000000000000e-02 + 1.823600000000000e-01 + 2.576700000000000e-01 + 2.568600000000000e-01 + 1.832100000000000e-01 + 6.101700000000000e-02 +-7.364700000000000e-02 +-1.863000000000000e-01 +-2.561100000000000e-01 +-2.809300000000000e-01 +-2.724800000000000e-01 +-2.446700000000000e-01 +-2.023400000000000e-01 +-1.385200000000000e-01 +-4.255500000000000e-02 + 8.628900000000000e-02 + 2.300200000000000e-01 + 3.559200000000000e-01 + 4.322100000000000e-01 + 4.455100000000000e-01 + 4.078800000000000e-01 + 3.481200000000000e-01 + 2.937000000000000e-01 + 2.561700000000000e-01 + 2.303800000000000e-01 + 2.066400000000000e-01 + 1.847600000000000e-01 + 1.771900000000000e-01 + 1.974500000000000e-01 + 2.426400000000000e-01 + 2.845400000000000e-01 + 2.786700000000000e-01 + 1.872000000000000e-01 + 1.319600000000000e-03 +-2.518000000000000e-01 +-5.212700000000000e-01 +-7.552400000000000e-01 +-9.197000000000000e-01 +-1.003600000000000e+00 +-1.011200000000000e+00 +-9.516100000000000e-01 +-8.324200000000000e-01 +-6.611000000000000e-01 +-4.487600000000000e-01 +-2.113000000000000e-01 + 3.289600000000000e-02 + 2.660700000000000e-01 + 4.718300000000000e-01 + 6.345600000000000e-01 + 7.411200000000000e-01 + 7.863100000000000e-01 + 7.787300000000000e-01 + 7.402600000000000e-01 + 6.961200000000000e-01 + 6.601500000000000e-01 + 6.261900000000000e-01 + 5.734300000000000e-01 + 4.833400000000000e-01 + 3.561000000000000e-01 + 2.129800000000000e-01 + 8.213300000000000e-02 +-2.185500000000000e-02 +-1.080300000000000e-01 +-2.003200000000000e-01 +-3.164700000000000e-01 +-4.517400000000000e-01 +-5.806400000000000e-01 +-6.752899999999999e-01 +-7.248200000000000e-01 +-7.393600000000000e-01 +-7.353200000000000e-01 +-7.150600000000000e-01 +-6.596600000000000e-01 +-5.430100000000000e-01 +-3.571000000000000e-01 +-1.276800000000000e-01 + 9.414500000000001e-02 + 2.601500000000000e-01 + 3.527400000000000e-01 + 3.918700000000000e-01 + 4.166800000000000e-01 + 4.565000000000000e-01 + 5.131300000000000e-01 + 5.656000000000000e-01 + 5.905000000000000e-01 + 5.792000000000000e-01 + 5.384300000000000e-01 + 4.762600000000000e-01 + 3.887400000000000e-01 + 2.612300000000000e-01 + 8.491400000000000e-02 +-1.256000000000000e-01 +-3.299100000000000e-01 +-4.794500000000000e-01 +-5.436500000000000e-01 +-5.259800000000000e-01 +-4.587400000000000e-01 +-3.812500000000000e-01 +-3.176100000000000e-01 +-2.685200000000000e-01 +-2.199700000000000e-01 +-1.590900000000000e-01 +-8.459100000000000e-02 +-6.247300000000000e-03 + 6.269000000000000e-02 + 1.122600000000000e-01 + 1.376400000000000e-01 + 1.381200000000000e-01 + 1.176400000000000e-01 + 8.699200000000000e-02 + 6.351700000000000e-02 + 6.389900000000000e-02 + 9.247500000000000e-02 + 1.341900000000000e-01 + 1.610600000000000e-01 + 1.516700000000000e-01 + 1.110600000000000e-01 + 7.468700000000000e-02 + 8.903800000000001e-02 + 1.786100000000000e-01 + 3.213200000000000e-01 + 4.515000000000000e-01 + 4.923100000000000e-01 + 3.992400000000000e-01 + 1.873600000000000e-01 +-7.467100000000000e-02 +-3.003800000000000e-01 +-4.284400000000000e-01 +-4.479300000000000e-01 +-3.935900000000000e-01 +-3.187000000000000e-01 +-2.653400000000000e-01 +-2.493300000000000e-01 +-2.646700000000000e-01 +-2.982200000000000e-01 +-3.410600000000000e-01 +-3.886700000000000e-01 +-4.330400000000000e-01 +-4.562400000000000e-01 +-4.333600000000000e-01 +-3.445800000000000e-01 +-1.883200000000000e-01 + 1.427200000000000e-02 + 2.274500000000000e-01 + 4.169700000000000e-01 + 5.641300000000000e-01 + 6.691400000000000e-01 + 7.425700000000000e-01 + 7.919300000000000e-01 + 8.131900000000000e-01 + 7.937600000000000e-01 + 7.245100000000000e-01 + 6.119100000000000e-01 + 4.800800000000000e-01 + 3.594000000000000e-01 + 2.676400000000000e-01 + 1.958200000000000e-01 + 1.095900000000000e-01 +-3.273000000000000e-02 +-2.547300000000000e-01 +-5.440900000000000e-01 +-8.534600000000000e-01 +-1.119800000000000e+00 +-1.291600000000000e+00 +-1.347600000000000e+00 +-1.298900000000000e+00 +-1.174200000000000e+00 +-1.000300000000000e+00 +-7.903700000000000e-01 +-5.456299999999999e-01 +-2.672400000000000e-01 + 3.311400000000000e-02 + 3.318900000000000e-01 + 6.025900000000000e-01 + 8.275700000000000e-01 + 1.003200000000000e+00 + 1.134000000000000e+00 + 1.221000000000000e+00 + 1.253100000000000e+00 + 1.211000000000000e+00 + 1.080900000000000e+00 + 8.696400000000000e-01 + 6.097600000000000e-01 + 3.484300000000000e-01 + 1.270400000000000e-01 +-3.642900000000000e-02 +-1.510600000000000e-01 +-2.413400000000000e-01 +-3.291500000000000e-01 +-4.219500000000000e-01 +-5.136100000000000e-01 +-5.947100000000000e-01 +-6.617000000000000e-01 +-7.173400000000000e-01 +-7.627800000000000e-01 +-7.898500000000001e-01 +-7.820800000000000e-01 +-7.250600000000000e-01 +-6.181200000000000e-01 +-4.767300000000000e-01 +-3.225200000000000e-01 +-1.684200000000000e-01 +-1.146400000000000e-02 + 1.593900000000000e-01 + 3.457600000000000e-01 + 5.269200000000001e-01 + 6.636100000000000e-01 + 7.184400000000000e-01 + 6.792700000000000e-01 + 5.685100000000000e-01 + 4.310000000000000e-01 + 3.087400000000000e-01 + 2.197700000000000e-01 + 1.549800000000000e-01 + 9.285800000000000e-02 + 1.957300000000000e-02 +-6.023400000000000e-02 +-1.276900000000000e-01 +-1.630100000000000e-01 +-1.567100000000000e-01 +-1.121400000000000e-01 +-4.102900000000000e-02 + 4.137900000000000e-02 + 1.178900000000000e-01 + 1.699700000000000e-01 + 1.819300000000000e-01 + 1.490500000000000e-01 + 8.327600000000000e-02 + 9.088199999999999e-03 +-5.112000000000000e-02 +-9.275799999999999e-02 +-1.327900000000000e-01 +-1.961100000000000e-01 +-2.929400000000000e-01 +-4.046900000000000e-01 +-4.906100000000000e-01 +-5.122600000000000e-01 +-4.580400000000000e-01 +-3.492700000000000e-01 +-2.232700000000000e-01 +-1.067800000000000e-01 +-8.023100000000000e-04 + 1.119300000000000e-01 + 2.440100000000000e-01 + 3.846800000000000e-01 + 5.012799999999999e-01 + 5.597000000000000e-01 + 5.468499999999999e-01 + 4.772400000000000e-01 + 3.787500000000000e-01 + 2.707100000000000e-01 + 1.526600000000000e-01 + 1.309400000000000e-02 +-1.501600000000000e-01 +-3.159400000000000e-01 +-4.450100000000000e-01 +-5.014200000000000e-01 +-4.738300000000000e-01 +-3.809500000000000e-01 +-2.580300000000000e-01 +-1.358300000000000e-01 +-2.770000000000000e-02 + 6.756200000000000e-02 + 1.526600000000000e-01 + 2.211800000000000e-01 + 2.582700000000000e-01 + 2.511000000000000e-01 + 2.000400000000000e-01 + 1.217500000000000e-01 + 4.257000000000000e-02 +-1.259300000000000e-02 +-2.917400000000000e-02 +-6.289800000000000e-03 + 4.475300000000000e-02 + 1.047400000000000e-01 + 1.526600000000000e-01 + 1.729700000000000e-01 + 1.619700000000000e-01 + 1.291300000000000e-01 + 9.087199999999999e-02 + 5.955400000000000e-02 + 3.496600000000000e-02 + 5.439100000000000e-03 +-4.149000000000000e-02 +-1.071100000000000e-01 +-1.786200000000000e-01 +-2.387600000000000e-01 +-2.803500000000000e-01 +-3.129400000000000e-01 +-3.540900000000000e-01 +-4.112300000000000e-01 +-4.691200000000000e-01 +-4.950400000000000e-01 +-4.600500000000000e-01 +-3.604900000000000e-01 +-2.223500000000000e-01 +-8.373899999999999e-02 + 3.189800000000000e-02 + 1.310700000000000e-01 + 2.419600000000000e-01 + 3.886500000000000e-01 + 5.675400000000000e-01 + 7.435700000000000e-01 + 8.683300000000000e-01 + 9.060300000000000e-01 + 8.491200000000000e-01 + 7.156200000000000e-01 + 5.350000000000000e-01 + 3.362100000000000e-01 + 1.451200000000000e-01 +-1.281200000000000e-02 +-1.150200000000000e-01 +-1.537000000000000e-01 +-1.491400000000000e-01 +-1.501600000000000e-01 +-2.142200000000000e-01 +-3.752600000000000e-01 +-6.193100000000000e-01 +-8.856400000000000e-01 +-1.094500000000000e+00 +-1.184900000000000e+00 +-1.139500000000000e+00 +-9.831500000000000e-01 +-7.605499999999999e-01 +-5.098600000000000e-01 +-2.494600000000000e-01 + 1.778800000000000e-02 + 2.906700000000000e-01 + 5.584200000000000e-01 + 7.989800000000000e-01 + 9.852800000000000e-01 + 1.093400000000000e+00 + 1.108800000000000e+00 + 1.029500000000000e+00 + 8.684300000000000e-01 + 6.538500000000000e-01 + 4.241400000000000e-01 + 2.168600000000000e-01 + 5.537100000000000e-02 +-5.887700000000000e-02 +-1.422600000000000e-01 +-2.146800000000000e-01 +-2.843600000000000e-01 +-3.426300000000000e-01 +-3.725900000000000e-01 +-3.652300000000000e-01 +-3.310600000000000e-01 +-2.979400000000000e-01 +-2.961000000000000e-01 +-3.401000000000000e-01 +-4.193900000000000e-01 +-5.028899999999999e-01 +-5.539700000000000e-01 +-5.463100000000000e-01 +-4.726400000000000e-01 +-3.435500000000000e-01 +-1.797400000000000e-01 +-2.824600000000000e-03 + 1.709900000000000e-01 + 3.331500000000000e-01 + 4.813000000000000e-01 + 6.153200000000000e-01 + 7.324100000000000e-01 + 8.230400000000000e-01 + 8.701600000000000e-01 + 8.530500000000000e-01 + 7.551099999999999e-01 + 5.728000000000000e-01 + 3.215900000000000e-01 + 3.583300000000000e-02 +-2.385600000000000e-01 +-4.569900000000000e-01 +-5.905700000000000e-01 +-6.364400000000000e-01 +-6.187000000000000e-01 +-5.774600000000000e-01 +-5.493100000000000e-01 +-5.481200000000001e-01 +-5.575400000000000e-01 +-5.413700000000000e-01 +-4.678900000000000e-01 +-3.341500000000000e-01 +-1.739300000000000e-01 +-4.200700000000000e-02 + 1.768000000000000e-02 + 4.651900000000000e-04 +-5.250300000000000e-02 +-7.503500000000000e-02 +-1.185100000000000e-02 + 1.519200000000000e-01 + 3.845000000000000e-01 + 6.258100000000000e-01 + 8.168600000000000e-01 + 9.220100000000000e-01 + 9.343100000000000e-01 + 8.666300000000000e-01 + 7.395699999999999e-01 + 5.753800000000000e-01 + 3.981500000000000e-01 + 2.341100000000000e-01 + 1.062300000000000e-01 + 2.398900000000000e-02 +-2.419200000000000e-02 +-6.805100000000000e-02 +-1.412900000000000e-01 +-2.632500000000000e-01 +-4.273500000000000e-01 +-6.030200000000000e-01 +-7.498899999999999e-01 +-8.360100000000000e-01 +-8.506400000000000e-01 +-8.064400000000000e-01 +-7.314400000000000e-01 +-6.556700000000000e-01 +-5.985500000000000e-01 +-5.617000000000000e-01 +-5.296000000000000e-01 +-4.778000000000000e-01 +-3.850500000000000e-01 +-2.438400000000000e-01 +-6.389900000000000e-02 + 1.332200000000000e-01 + 3.253400000000000e-01 + 4.996500000000000e-01 + 6.554000000000000e-01 + 7.979500000000000e-01 + 9.288600000000000e-01 + 1.039400000000000e+00 + 1.111600000000000e+00 + 1.126800000000000e+00 + 1.074400000000000e+00 + 9.567300000000000e-01 + 7.870300000000000e-01 + 5.834800000000000e-01 + 3.639100000000000e-01 + 1.436000000000000e-01 +-6.427900000000000e-02 +-2.479400000000000e-01 +-3.977300000000000e-01 +-5.081100000000000e-01 +-5.794300000000000e-01 +-6.184400000000000e-01 +-6.372600000000000e-01 +-6.513600000000001e-01 +-6.760800000000000e-01 +-7.215500000000000e-01 +-7.867400000000000e-01 +-8.556800000000000e-01 +-8.992800000000000e-01 +-8.845499999999999e-01 +-7.881500000000000e-01 +-6.077900000000001e-01 +-3.651600000000000e-01 +-9.826900000000000e-02 + 1.525800000000000e-01 + 3.580100000000000e-01 + 5.057000000000000e-01 + 5.984600000000000e-01 + 6.475800000000000e-01 + 6.661300000000000e-01 + 6.651400000000000e-01 + 6.521700000000000e-01 + 6.306800000000000e-01 + 5.994500000000000e-01 + 5.528100000000000e-01 + 4.827500000000000e-01 + 3.829500000000000e-01 + 2.530100000000000e-01 + 1.011900000000000e-01 +-5.530200000000000e-02 +-1.925300000000000e-01 +-2.842800000000000e-01 +-3.087100000000000e-01 +-2.567400000000000e-01 +-1.390000000000000e-01 + 1.287200000000000e-02 + 1.544200000000000e-01 + 2.444200000000000e-01 + 2.615800000000000e-01 + 2.122200000000000e-01 + 1.235200000000000e-01 + 2.610600000000000e-02 +-6.291800000000000e-02 +-1.454000000000000e-01 +-2.332200000000000e-01 +-3.327200000000000e-01 +-4.350300000000000e-01 +-5.198600000000000e-01 +-5.695600000000000e-01 +-5.819600000000000e-01 +-5.712699999999999e-01 +-5.560400000000000e-01 +-5.432600000000000e-01 +-5.211900000000000e-01 +-4.663500000000000e-01 +-3.595900000000000e-01 +-1.994300000000000e-01 +-3.548800000000000e-03 + 2.012800000000000e-01 + 3.924500000000000e-01 + 5.585200000000000e-01 + 6.967900000000000e-01 + 8.056700000000000e-01 + 8.791800000000000e-01 + 9.072100000000000e-01 + 8.801800000000000e-01 + 7.933600000000000e-01 + 6.486300000000000e-01 + 4.544900000000000e-01 + 2.268100000000000e-01 +-1.002300000000000e-02 +-2.247600000000000e-01 +-3.867700000000000e-01 +-4.775800000000000e-01 +-4.995400000000000e-01 +-4.741600000000000e-01 +-4.292900000000000e-01 +-3.825600000000000e-01 +-3.329200000000000e-01 +-2.667200000000000e-01 +-1.744300000000000e-01 +-6.511400000000001e-02 + 3.297600000000000e-02 + 8.717500000000000e-02 + 8.041000000000000e-02 + 2.183900000000000e-02 +-5.951400000000000e-02 +-1.331400000000000e-01 +-1.837300000000000e-01 +-2.143600000000000e-01 +-2.352200000000000e-01 +-2.481200000000000e-01 +-2.397200000000000e-01 +-1.894100000000000e-01 +-8.591400000000000e-02 + 5.979000000000000e-02 + 2.149800000000000e-01 + 3.390100000000000e-01 + 4.014500000000000e-01 + 3.934200000000000e-01 + 3.271500000000000e-01 + 2.265900000000000e-01 + 1.166600000000000e-01 + 1.669800000000000e-02 +-6.101700000000000e-02 +-1.106500000000000e-01 +-1.326500000000000e-01 +-1.336400000000000e-01 +-1.240100000000000e-01 +-1.127000000000000e-01 +-1.016000000000000e-01 +-8.430799999999999e-02 +-5.101700000000000e-02 + 3.081300000000000e-03 + 7.244500000000000e-02 + 1.436500000000000e-01 + 2.046200000000000e-01 + 2.535400000000000e-01 + 2.997800000000000e-01 + 3.545700000000000e-01 + 4.176300000000000e-01 + 4.699900000000000e-01 + 4.799900000000000e-01 + 4.202300000000000e-01 + 2.847900000000000e-01 + 9.493600000000001e-02 +-1.109200000000000e-01 +-2.968600000000000e-01 +-4.458900000000000e-01 +-5.631600000000000e-01 +-6.651800000000000e-01 +-7.638400000000000e-01 +-8.559500000000000e-01 +-9.241300000000000e-01 +-9.456900000000000e-01 +-9.018800000000000e-01 +-7.816400000000000e-01 +-5.808600000000000e-01 +-3.024900000000000e-01 + 3.893400000000000e-02 + 4.108400000000000e-01 + 7.619400000000000e-01 + 1.033300000000000e+00 + 1.178800000000000e+00 + 1.184600000000000e+00 + 1.075000000000000e+00 + 8.998600000000000e-01 + 7.108200000000000e-01 + 5.399700000000000e-01 + 3.935600000000000e-01 + 2.615800000000000e-01 + 1.337300000000000e-01 + 9.449100000000000e-03 +-1.043000000000000e-01 +-2.031900000000000e-01 +-2.934300000000000e-01 +-3.896000000000000e-01 +-5.033900000000000e-01 +-6.314600000000000e-01 +-7.516900000000000e-01 +-8.309200000000000e-01 +-8.396200000000000e-01 +-7.649300000000000e-01 +-6.158100000000000e-01 +-4.189600000000000e-01 +-2.088900000000000e-01 +-1.632100000000000e-02 + 1.412700000000000e-01 + 2.643100000000000e-01 + 3.687900000000000e-01 + 4.760800000000000e-01 + 5.979900000000000e-01 + 7.243400000000000e-01 + 8.216300000000000e-01 + 8.464200000000000e-01 + 7.679100000000000e-01 + 5.867800000000000e-01 + 3.382400000000000e-01 + 7.645399999999999e-02 +-1.501100000000000e-01 +-3.170600000000000e-01 +-4.256900000000000e-01 +-4.896400000000000e-01 +-5.186500000000001e-01 +-5.118800000000000e-01 +-4.643100000000000e-01 +-3.788400000000000e-01 +-2.724200000000000e-01 +-1.710400000000000e-01 +-9.761700000000000e-02 +-6.307100000000000e-02 +-6.659100000000000e-02 +-1.025800000000000e-01 +-1.656900000000000e-01 +-2.482600000000000e-01 +-3.329100000000000e-01 +-3.898600000000000e-01 +-3.858400000000000e-01 +-3.014700000000000e-01 +-1.450200000000000e-01 + 4.903500000000000e-02 + 2.376900000000000e-01 + 3.915000000000000e-01 + 5.054400000000000e-01 + 5.914600000000000e-01 + 6.602400000000000e-01 + 7.080800000000000e-01 + 7.201000000000000e-01 + 6.868000000000000e-01 + 6.187300000000000e-01 + 5.450500000000000e-01 + 4.946800000000000e-01 + 4.737700000000000e-01 + 4.577400000000000e-01 + 4.054900000000000e-01 + 2.864500000000000e-01 + 1.008500000000000e-01 +-1.215700000000000e-01 +-3.424200000000000e-01 +-5.388500000000001e-01 +-7.125899999999999e-01 +-8.780300000000000e-01 +-1.039900000000000e+00 +-1.178700000000000e+00 +-1.255700000000000e+00 +-1.234400000000000e+00 +-1.101900000000000e+00 +-8.773800000000000e-01 +-6.010100000000000e-01 +-3.144100000000000e-01 +-4.472100000000000e-02 + 1.983600000000000e-01 + 4.142400000000000e-01 + 6.003700000000000e-01 + 7.464700000000000e-01 + 8.366200000000000e-01 + 8.558000000000000e-01 + 7.965900000000000e-01 + 6.634200000000000e-01 + 4.742800000000000e-01 + 2.600500000000000e-01 + 6.022800000000000e-02 +-8.567500000000000e-02 +-1.495300000000000e-01 +-1.236600000000000e-01 +-2.233700000000000e-02 + 1.256200000000000e-01 + 2.887700000000000e-01 + 4.420400000000000e-01 + 5.681500000000000e-01 + 6.530800000000000e-01 + 6.821100000000000e-01 + 6.418600000000000e-01 + 5.278500000000000e-01 + 3.510200000000000e-01 + 1.367500000000000e-01 +-8.499700000000000e-02 +-2.917400000000000e-01 +-4.744800000000000e-01 +-6.336400000000000e-01 +-7.695200000000000e-01 +-8.760599999999999e-01 +-9.436500000000000e-01 +-9.681200000000000e-01 +-9.570300000000000e-01 +-9.255300000000000e-01 +-8.833400000000000e-01 +-8.228200000000000e-01 +-7.193800000000000e-01 +-5.467700000000000e-01 +-2.980100000000000e-01 + 2.815300000000000e-03 + 3.076900000000000e-01 + 5.668400000000000e-01 + 7.516600000000000e-01 + 8.635400000000000e-01 + 9.239000000000001e-01 + 9.543000000000000e-01 + 9.613699999999999e-01 + 9.363000000000000e-01 + 8.670000000000000e-01 + 7.517900000000000e-01 + 6.038200000000000e-01 + 4.438400000000000e-01 + 2.882200000000000e-01 + 1.422200000000000e-01 + 2.966700000000000e-03 +-1.315300000000000e-01 +-2.556500000000000e-01 +-3.572400000000000e-01 +-4.250200000000000e-01 +-4.559000000000000e-01 +-4.564200000000000e-01 +-4.377400000000000e-01 +-4.091100000000000e-01 +-3.748100000000000e-01 +-3.362800000000000e-01 +-2.963500000000000e-01 +-2.612400000000000e-01 +-2.386100000000000e-01 +-2.334900000000000e-01 +-2.454600000000000e-01 +-2.685800000000000e-01 +-2.932200000000000e-01 +-3.078100000000000e-01 +-3.002800000000000e-01 +-2.605200000000000e-01 +-1.846900000000000e-01 +-7.933800000000001e-02 + 3.863900000000000e-02 + 1.488500000000000e-01 + 2.384900000000000e-01 + 3.104400000000000e-01 + 3.813200000000000e-01 + 4.688200000000000e-01 + 5.757200000000000e-01 + 6.815300000000000e-01 + 7.487600000000000e-01 + 7.408000000000000e-01 + 6.407000000000000e-01 + 4.597900000000000e-01 + 2.323000000000000e-01 + 1.149700000000000e-03 +-1.960000000000000e-01 +-3.340600000000000e-01 +-4.017300000000000e-01 +-4.005000000000000e-01 +-3.440500000000000e-01 +-2.564100000000000e-01 +-1.656600000000000e-01 +-9.358000000000000e-02 +-4.686900000000000e-02 +-1.732100000000000e-02 + 7.561600000000000e-03 + 3.050900000000000e-02 + 3.852200000000000e-02 + 1.148300000000000e-02 +-5.977400000000000e-02 +-1.600200000000000e-01 +-2.530800000000000e-01 +-3.021800000000000e-01 +-2.932500000000000e-01 +-2.439900000000000e-01 +-1.913500000000000e-01 +-1.665400000000000e-01 +-1.762600000000000e-01 +-2.038200000000000e-01 +-2.276200000000000e-01 +-2.401800000000000e-01 +-2.513100000000000e-01 +-2.722700000000000e-01 +-2.949900000000000e-01 +-2.859400000000000e-01 +-2.030700000000000e-01 +-2.589400000000000e-02 + 2.234500000000000e-01 + 4.847800000000000e-01 + 6.887100000000000e-01 + 7.909000000000000e-01 + 7.896800000000000e-01 + 7.181800000000000e-01 + 6.200100000000000e-01 + 5.273400000000000e-01 + 4.544000000000000e-01 + 4.048700000000000e-01 + 3.808900000000000e-01 + 3.833400000000000e-01 + 4.035400000000000e-01 + 4.171600000000000e-01 + 3.900200000000000e-01 + 2.950300000000000e-01 + 1.285000000000000e-01 +-8.738000000000000e-02 +-3.190000000000000e-01 +-5.417900000000000e-01 +-7.508600000000000e-01 +-9.532000000000000e-01 +-1.148200000000000e+00 +-1.312700000000000e+00 +-1.404500000000000e+00 +-1.382900000000000e+00 +-1.233200000000000e+00 +-9.770200000000000e-01 +-6.632200000000000e-01 +-3.448800000000000e-01 +-5.961500000000000e-02 + 1.767000000000000e-01 + 3.630700000000000e-01 + 5.035400000000000e-01 + 6.037800000000000e-01 + 6.749700000000000e-01 + 7.372000000000000e-01 + 8.140900000000000e-01 + 9.184099999999999e-01 + 1.038200000000000e+00 + 1.135800000000000e+00 + 1.163700000000000e+00 + 1.090800000000000e+00 + 9.214200000000000e-01 + 6.956900000000000e-01 + 4.701700000000000e-01 + 2.900300000000000e-01 + 1.695300000000000e-01 + 9.050800000000001e-02 + 1.702700000000000e-02 +-8.480400000000000e-02 +-2.332100000000000e-01 +-4.281400000000000e-01 +-6.564300000000000e-01 +-8.978200000000000e-01 +-1.127700000000000e+00 +-1.317300000000000e+00 +-1.436300000000000e+00 +-1.459400000000000e+00 +-1.375600000000000e+00 +-1.194100000000000e+00 +-9.435500000000000e-01 +-6.615500000000000e-01 +-3.817500000000000e-01 +-1.230100000000000e-01 + 1.136000000000000e-01 + 3.395900000000000e-01 + 5.687800000000000e-01 + 8.069900000000000e-01 + 1.045500000000000e+00 + 1.260600000000000e+00 + 1.419200000000000e+00 + 1.489200000000000e+00 + 1.450600000000000e+00 + 1.304100000000000e+00 + 1.072200000000000e+00 + 7.924800000000000e-01 + 5.054500000000000e-01 + 2.414500000000000e-01 + 1.382900000000000e-02 +-1.800900000000000e-01 +-3.515300000000000e-01 +-5.112400000000000e-01 +-6.632400000000001e-01 +-8.029800000000000e-01 +-9.187900000000000e-01 +-9.948700000000000e-01 +-1.015300000000000e+00 +-9.696800000000000e-01 +-8.601799999999999e-01 +-7.060500000000000e-01 +-5.413900000000000e-01 +-4.032800000000000e-01 +-3.141500000000000e-01 +-2.680500000000000e-01 +-2.304700000000000e-01 +-1.547900000000000e-01 +-7.464700000000000e-03 + 2.125500000000000e-01 + 4.717900000000000e-01 + 7.187500000000000e-01 + 9.078000000000001e-01 + 1.015400000000000e+00 + 1.039900000000000e+00 + 9.887100000000000e-01 + 8.659100000000000e-01 + 6.712200000000000e-01 + 4.114400000000000e-01 + 1.137000000000000e-01 +-1.726800000000000e-01 +-3.912500000000000e-01 +-5.026700000000000e-01 +-5.031400000000000e-01 +-4.249600000000000e-01 +-3.193300000000000e-01 +-2.327000000000000e-01 +-1.905200000000000e-01 +-1.952900000000000e-01 +-2.348500000000000e-01 +-2.914300000000000e-01 +-3.449300000000000e-01 +-3.721100000000000e-01 +-3.483900000000000e-01 +-2.567000000000000e-01 +-9.999400000000000e-02 + 9.220200000000001e-02 + 2.708900000000000e-01 + 3.875300000000000e-01 + 4.159900000000000e-01 + 3.635200000000000e-01 + 2.642300000000000e-01 + 1.601800000000000e-01 + 8.220200000000000e-02 + 4.133400000000000e-02 + 3.284200000000000e-02 + 4.611200000000000e-02 + 7.153600000000000e-02 + 1.006000000000000e-01 + 1.227000000000000e-01 + 1.251400000000000e-01 + 9.918200000000001e-02 + 4.781300000000000e-02 +-1.232800000000000e-02 +-5.929600000000000e-02 +-8.049300000000000e-02 +-8.341600000000000e-02 +-9.343100000000000e-02 +-1.381100000000000e-01 +-2.276000000000000e-01 +-3.443200000000000e-01 +-4.495700000000000e-01 +-5.035800000000000e-01 +-4.862500000000000e-01 +-4.057300000000000e-01 +-2.904000000000000e-01 +-1.709200000000000e-01 +-6.464600000000000e-02 + 2.808800000000000e-02 + 1.158900000000000e-01 + 2.044100000000000e-01 + 2.899900000000000e-01 + 3.625100000000000e-01 + 4.132700000000000e-01 + 4.403400000000000e-01 + 4.470600000000000e-01 + 4.359100000000000e-01 + 4.045000000000000e-01 + 3.482300000000000e-01 + 2.682400000000000e-01 + 1.773100000000000e-01 + 9.719400000000000e-02 + 4.716500000000000e-02 + 3.112900000000000e-02 + 3.289900000000000e-02 + 2.431400000000000e-02 +-1.821800000000000e-02 +-9.927900000000001e-02 +-2.012700000000000e-01 +-2.939900000000000e-01 +-3.500100000000000e-01 +-3.561700000000000e-01 +-3.155000000000000e-01 +-2.412100000000000e-01 +-1.488500000000000e-01 +-5.226100000000000e-02 + 3.642900000000000e-02 + 1.056900000000000e-01 + 1.457200000000000e-01 + 1.516400000000000e-01 + 1.258000000000000e-01 + 7.669700000000000e-02 + 1.529100000000000e-02 +-4.843700000000000e-02 +-1.062100000000000e-01 +-1.505500000000000e-01 +-1.755800000000000e-01 +-1.811500000000000e-01 +-1.776500000000000e-01 +-1.857900000000000e-01 +-2.279200000000000e-01 +-3.138300000000000e-01 +-4.301500000000000e-01 +-5.417700000000000e-01 +-6.063400000000000e-01 +-5.934000000000000e-01 +-4.962400000000000e-01 +-3.296300000000000e-01 +-1.170200000000000e-01 + 1.218400000000000e-01 + 3.738300000000000e-01 + 6.256000000000000e-01 + 8.555600000000000e-01 + 1.034100000000000e+00 + 1.134100000000000e+00 + 1.143700000000000e+00 + 1.072100000000000e+00 + 9.431100000000000e-01 + 7.823099999999999e-01 + 6.081299999999999e-01 + 4.327400000000000e-01 + 2.689100000000000e-01 + 1.330000000000000e-01 + 3.785300000000000e-02 +-2.019900000000000e-02 +-6.785200000000000e-02 +-1.451100000000000e-01 +-2.816800000000000e-01 +-4.746700000000000e-01 +-6.846000000000000e-01 +-8.552900000000000e-01 +-9.461200000000000e-01 +-9.551400000000000e-01 +-9.177200000000000e-01 +-8.819500000000000e-01 +-8.783200000000000e-01 +-9.039500000000000e-01 +-9.300000000000000e-01 +-9.240300000000000e-01 +-8.695100000000000e-01 +-7.694000000000000e-01 +-6.344000000000000e-01 +-4.682500000000000e-01 +-2.634300000000000e-01 +-1.065400000000000e-02 + 2.863600000000000e-01 + 6.039200000000000e-01 + 9.059800000000000e-01 + 1.161600000000000e+00 + 1.359400000000000e+00 + 1.507500000000000e+00 + 1.619700000000000e+00 + 1.696800000000000e+00 + 1.717600000000000e+00 + 1.647800000000000e+00 + 1.461100000000000e+00 + 1.160300000000000e+00 + 7.817000000000000e-01 + 3.812000000000000e-01 + 6.678700000000000e-03 +-3.240500000000000e-01 +-6.263500000000000e-01 +-9.298400000000000e-01 +-1.248900000000000e+00 +-1.561700000000000e+00 +-1.812300000000000e+00 +-1.935400000000000e+00 +-1.889100000000000e+00 +-1.675500000000000e+00 +-1.337700000000000e+00 +-9.366800000000000e-01 +-5.250600000000000e-01 +-1.338200000000000e-01 + 2.232000000000000e-01 + 5.353400000000000e-01 + 7.861800000000000e-01 + 9.570200000000000e-01 + 1.038400000000000e+00 + 1.037500000000000e+00 + 9.743000000000001e-01 + 8.684600000000000e-01 + 7.306700000000000e-01 + 5.656700000000000e-01 + 3.848800000000000e-01 + 2.150400000000000e-01 + 9.097100000000000e-02 + 3.375200000000000e-02 + 3.034500000000000e-02 + 3.339800000000000e-02 +-1.343700000000000e-02 +-1.392500000000000e-01 +-3.239000000000000e-01 +-5.072600000000000e-01 +-6.245800000000000e-01 +-6.442800000000000e-01 +-5.827500000000000e-01 +-4.882300000000000e-01 +-4.077900000000000e-01 +-3.614000000000000e-01 +-3.385500000000000e-01 +-3.138400000000000e-01 +-2.651800000000000e-01 +-1.806500000000000e-01 +-5.381200000000000e-02 + 1.209400000000000e-01 + 3.432300000000000e-01 + 5.942300000000000e-01 + 8.302400000000000e-01 + 9.942800000000001e-01 + 1.042900000000000e+00 + 9.707600000000000e-01 + 8.141699999999999e-01 + 6.286700000000000e-01 + 4.558700000000000e-01 + 3.026800000000000e-01 + 1.469100000000000e-01 +-3.715600000000000e-02 +-2.539800000000000e-01 +-4.810500000000000e-01 +-6.839400000000000e-01 +-8.376600000000000e-01 +-9.364600000000000e-01 +-9.866300000000000e-01 +-9.913800000000000e-01 +-9.434200000000000e-01 +-8.316700000000000e-01 +-6.555600000000000e-01 +-4.329300000000000e-01 +-1.941000000000000e-01 + 3.290200000000000e-02 + 2.329400000000000e-01 + 4.021100000000000e-01 + 5.373000000000000e-01 + 6.292900000000000e-01 + 6.676000000000000e-01 + 6.535300000000001e-01 + 6.079100000000000e-01 + 5.627600000000000e-01 + 5.398500000000001e-01 + 5.319100000000000e-01 + 5.029300000000000e-01 + 4.105600000000000e-01 + 2.361500000000000e-01 + 1.416000000000000e-03 +-2.401400000000000e-01 +-4.305800000000000e-01 +-5.344000000000000e-01 +-5.480800000000000e-01 +-4.900900000000000e-01 +-3.836100000000000e-01 +-2.466700000000000e-01 +-9.534100000000000e-02 + 4.802300000000000e-02 + 1.532300000000000e-01 + 1.925500000000000e-01 + 1.561700000000000e-01 + 6.013600000000000e-02 +-5.998600000000000e-02 +-1.658800000000000e-01 +-2.316700000000000e-01 +-2.485200000000000e-01 +-2.190200000000000e-01 +-1.499800000000000e-01 +-5.112400000000000e-02 + 6.059300000000000e-02 + 1.590000000000000e-01 + 2.159600000000000e-01 + 2.161600000000000e-01 + 1.689100000000000e-01 + 1.059000000000000e-01 + 6.353900000000000e-02 + 6.075800000000000e-02 + 8.787399999999999e-02 + 1.148500000000000e-01 + 1.131700000000000e-01 + 7.531800000000000e-02 + 1.812800000000000e-02 +-3.173300000000000e-02 +-5.814300000000000e-02 +-6.618599999999999e-02 +-7.554900000000001e-02 +-1.026300000000000e-01 +-1.456700000000000e-01 +-1.843300000000000e-01 +-1.935300000000000e-01 +-1.609400000000000e-01 +-9.498300000000000e-02 +-1.839300000000000e-02 + 4.701400000000000e-02 + 9.238800000000000e-02 + 1.223000000000000e-01 + 1.445200000000000e-01 + 1.582200000000000e-01 + 1.506700000000000e-01 + 1.057400000000000e-01 + 1.840500000000000e-02 +-9.520600000000000e-02 +-1.999100000000000e-01 +-2.554900000000000e-01 +-2.347100000000000e-01 +-1.352600000000000e-01 + 2.026700000000000e-02 + 1.948200000000000e-01 + 3.508600000000000e-01 + 4.604200000000000e-01 + 5.081400000000000e-01 + 4.889400000000000e-01 + 4.051000000000000e-01 + 2.657200000000000e-01 + 8.817700000000001e-02 +-1.017300000000000e-01 +-2.740200000000000e-01 +-4.028200000000000e-01 +-4.749700000000000e-01 +-4.937900000000000e-01 +-4.754500000000000e-01 +-4.394300000000000e-01 +-3.982800000000000e-01 +-3.524100000000000e-01 +-2.925500000000000e-01 +-2.082900000000000e-01 +-9.784500000000000e-02 + 2.645000000000000e-02 + 1.400000000000000e-01 + 2.147300000000000e-01 + 2.309300000000000e-01 + 1.869600000000000e-01 + 1.020800000000000e-01 + 1.064600000000000e-02 +-5.062200000000000e-02 +-5.701800000000000e-02 +-5.357500000000000e-03 + 8.605200000000000e-02 + 1.871400000000000e-01 + 2.705700000000000e-01 + 3.234300000000000e-01 + 3.500500000000000e-01 + 3.650900000000000e-01 + 3.819500000000000e-01 + 4.038200000000000e-01 + 4.226800000000000e-01 + 4.258500000000000e-01 + 4.046600000000000e-01 + 3.587100000000000e-01 + 2.931400000000000e-01 + 2.115300000000000e-01 + 1.108300000000000e-01 +-1.730400000000000e-02 +-1.788300000000000e-01 +-3.690000000000000e-01 +-5.695100000000000e-01 +-7.535100000000000e-01 +-8.954600000000000e-01 +-9.787900000000000e-01 +-9.970200000000000e-01 +-9.487200000000000e-01 +-8.322200000000000e-01 +-6.458600000000000e-01 +-3.950300000000000e-01 +-1.005500000000000e-01 + 1.995400000000000e-01 + 4.588900000000000e-01 + 6.388200000000001e-01 + 7.219700000000000e-01 + 7.147600000000000e-01 + 6.376800000000000e-01 + 5.112800000000000e-01 + 3.487300000000000e-01 + 1.604700000000000e-01 +-3.416300000000000e-02 +-1.999700000000000e-01 +-2.930900000000000e-01 +-2.809700000000000e-01 +-1.624800000000000e-01 + 2.650900000000000e-02 + 2.281400000000000e-01 + 3.896800000000000e-01 + 4.856800000000000e-01 + 5.216700000000000e-01 + 5.191700000000000e-01 + 4.949800000000000e-01 + 4.502900000000000e-01 + 3.758300000000000e-01 + 2.660200000000000e-01 + 1.284600000000000e-01 +-1.941000000000000e-02 +-1.623900000000000e-01 +-2.962100000000000e-01 +-4.237900000000000e-01 +-5.419700000000000e-01 +-6.316900000000000e-01 +-6.631000000000000e-01 +-6.148600000000000e-01 +-4.936000000000000e-01 +-3.369400000000000e-01 +-1.949400000000000e-01 +-1.017700000000000e-01 +-5.782300000000000e-02 +-3.526400000000000e-02 +-2.476300000000000e-03 + 5.144100000000000e-02 + 1.101900000000000e-01 + 1.452600000000000e-01 + 1.390900000000000e-01 + 9.786599999999999e-02 + 4.525200000000000e-02 + 4.218400000000000e-03 +-1.696200000000000e-02 +-2.395300000000000e-02 +-2.410900000000000e-02 +-1.596600000000000e-02 + 8.986700000000000e-03 + 5.410900000000000e-02 + 1.074800000000000e-01 + 1.453200000000000e-01 + 1.484900000000000e-01 + 1.188900000000000e-01 + 8.124600000000000e-02 + 6.702200000000000e-02 + 9.187800000000000e-02 + 1.442300000000000e-01 + 1.938000000000000e-01 + 2.133900000000000e-01 + 1.970000000000000e-01 + 1.612600000000000e-01 + 1.308400000000000e-01 + 1.209600000000000e-01 + 1.303400000000000e-01 + 1.476600000000000e-01 + 1.623900000000000e-01 + 1.688300000000000e-01 + 1.605500000000000e-01 + 1.235300000000000e-01 + 3.917800000000000e-02 +-1.003200000000000e-01 +-2.750800000000000e-01 +-4.350200000000000e-01 +-5.193000000000000e-01 +-4.891400000000000e-01 +-3.531400000000000e-01 +-1.674200000000000e-01 +-8.764100000000000e-03 + 6.319800000000000e-02 + 3.242900000000000e-02 +-7.245300000000000e-02 +-1.993500000000000e-01 +-3.002800000000000e-01 +-3.490100000000000e-01 +-3.422100000000000e-01 +-2.896300000000000e-01 +-2.037400000000000e-01 +-9.591200000000000e-02 + 2.170500000000000e-02 + 1.341300000000000e-01 + 2.259800000000000e-01 + 2.877300000000000e-01 + 3.210900000000000e-01 + 3.385700000000000e-01 + 3.562200000000000e-01 + 3.836000000000000e-01 + 4.170900000000000e-01 + 4.408600000000000e-01 + 4.353700000000000e-01 + 3.884800000000000e-01 + 3.024000000000000e-01 + 1.919000000000000e-01 + 7.469600000000000e-02 +-3.959800000000000e-02 +-1.538900000000000e-01 +-2.773100000000000e-01 +-4.119500000000000e-01 +-5.422900000000000e-01 +-6.369700000000000e-01 +-6.638500000000001e-01 +-6.091600000000000e-01 +-4.870400000000000e-01 +-3.311700000000000e-01 +-1.733100000000000e-01 +-2.424700000000000e-02 + 1.281300000000000e-01 + 3.010100000000000e-01 + 4.921500000000000e-01 + 6.677300000000000e-01 + 7.739900000000000e-01 + 7.664400000000000e-01 + 6.374100000000000e-01 + 4.233000000000000e-01 + 1.869300000000000e-01 +-1.276500000000000e-02 +-1.446400000000000e-01 +-2.106300000000000e-01 +-2.341200000000000e-01 +-2.431600000000000e-01 +-2.593000000000000e-01 +-2.943500000000000e-01 +-3.503000000000000e-01 +-4.178300000000000e-01 +-4.747800000000000e-01 +-4.905000000000000e-01 +-4.387800000000000e-01 +-3.140000000000000e-01 +-1.393000000000000e-01 + 4.082500000000000e-02 + 1.807200000000000e-01 + 2.539200000000000e-01 + 2.611000000000000e-01 + 2.226200000000000e-01 + 1.635800000000000e-01 + 1.033000000000000e-01 + 5.442100000000000e-02 + 2.709300000000000e-02 + 2.963800000000000e-02 + 6.243400000000000e-02 + 1.110200000000000e-01 + 1.479100000000000e-01 + 1.463300000000000e-01 + 9.774900000000000e-02 + 1.982800000000000e-02 +-5.259700000000000e-02 +-8.772700000000000e-02 +-7.321600000000000e-02 +-1.726800000000000e-02 + 6.392900000000000e-02 + 1.593000000000000e-01 + 2.639400000000000e-01 + 3.680500000000000e-01 + 4.466500000000000e-01 + 4.642300000000000e-01 + 3.956400000000000e-01 + 2.482400000000000e-01 + 6.553200000000001e-02 +-9.524800000000000e-02 +-1.980100000000000e-01 +-2.498900000000000e-01 +-2.926900000000000e-01 +-3.683900000000000e-01 +-4.838300000000000e-01 +-6.011000000000000e-01 +-6.614800000000000e-01 +-6.259700000000000e-01 +-5.033600000000000e-01 +-3.457100000000000e-01 +-2.152000000000000e-01 +-1.454000000000000e-01 +-1.228400000000000e-01 +-9.921000000000001e-02 +-2.407400000000000e-02 + 1.235600000000000e-01 + 3.229800000000000e-01 + 5.230600000000000e-01 + 6.679700000000000e-01 + 7.224500000000000e-01 + 6.847900000000000e-01 + 5.835100000000000e-01 + 4.611100000000000e-01 + 3.531400000000000e-01 + 2.726900000000000e-01 + 2.079500000000000e-01 + 1.340600000000000e-01 + 3.260200000000000e-02 +-9.389599999999999e-02 +-2.222900000000000e-01 +-3.243400000000000e-01 +-3.862800000000000e-01 +-4.173200000000000e-01 +-4.398100000000000e-01 +-4.682200000000000e-01 +-4.938300000000000e-01 +-4.888000000000000e-01 +-4.284000000000000e-01 +-3.144500000000000e-01 +-1.808900000000000e-01 +-7.460100000000000e-02 +-2.430600000000000e-02 +-1.998700000000000e-02 +-1.874200000000000e-02 + 2.649900000000000e-02 + 1.354900000000000e-01 + 2.879700000000000e-01 + 4.370100000000000e-01 + 5.370700000000000e-01 + 5.665500000000000e-01 + 5.316800000000000e-01 + 4.533600000000000e-01 + 3.505300000000000e-01 + 2.329200000000000e-01 + 1.061700000000000e-01 +-1.857300000000000e-02 +-1.207100000000000e-01 +-1.761800000000000e-01 +-1.694400000000000e-01 +-1.032200000000000e-01 +-2.950400000000000e-04 + 1.032000000000000e-01 + 1.696000000000000e-01 + 1.723800000000000e-01 + 1.060400000000000e-01 +-1.072600000000000e-02 +-1.412900000000000e-01 +-2.469700000000000e-01 +-3.061600000000000e-01 +-3.262000000000000e-01 +-3.387500000000000e-01 +-3.790300000000000e-01 +-4.607600000000000e-01 +-5.632100000000000e-01 +-6.401800000000000e-01 +-6.457000000000001e-01 +-5.597700000000000e-01 +-3.972900000000000e-01 +-1.962400000000000e-01 + 4.625200000000000e-03 + 1.819700000000000e-01 + 3.289800000000000e-01 + 4.453300000000000e-01 + 5.281700000000000e-01 + 5.727500000000000e-01 + 5.802500000000000e-01 + 5.628600000000000e-01 + 5.387600000000000e-01 + 5.197000000000001e-01 + 5.024999999999999e-01 + 4.730200000000000e-01 + 4.201900000000000e-01 + 3.476000000000000e-01 + 2.709800000000000e-01 + 2.022600000000000e-01 + 1.339400000000000e-01 + 3.969200000000000e-02 +-1.052800000000000e-01 +-2.978700000000000e-01 +-4.963200000000000e-01 +-6.371800000000000e-01 +-6.714500000000000e-01 +-5.955200000000000e-01 +-4.544100000000000e-01 +-3.136300000000000e-01 +-2.185000000000000e-01 +-1.687200000000000e-01 +-1.251000000000000e-01 +-4.291600000000000e-02 + 9.176100000000000e-02 + 2.475300000000000e-01 + 3.639100000000000e-01 + 3.868400000000000e-01 + 3.003000000000000e-01 + 1.350400000000000e-01 +-4.919600000000000e-02 +-1.953400000000000e-01 +-2.753000000000000e-01 +-2.966500000000000e-01 +-2.883300000000000e-01 +-2.761700000000000e-01 +-2.642300000000000e-01 +-2.335000000000000e-01 +-1.584700000000000e-01 +-3.065900000000000e-02 + 1.267700000000000e-01 + 2.643500000000000e-01 + 3.302300000000000e-01 + 2.985100000000000e-01 + 1.843900000000000e-01 + 3.560800000000000e-02 +-9.429000000000000e-02 +-1.734500000000000e-01 +-2.021100000000000e-01 +-2.005200000000000e-01 +-1.850900000000000e-01 +-1.518400000000000e-01 +-7.984800000000000e-02 + 4.822700000000000e-02 + 2.248700000000000e-01 + 4.126800000000000e-01 + 5.603500000000000e-01 + 6.290100000000000e-01 + 6.112700000000000e-01 + 5.316000000000000e-01 + 4.301000000000000e-01 + 3.422100000000000e-01 + 2.864200000000000e-01 + 2.635600000000000e-01 + 2.624400000000000e-01 + 2.647900000000000e-01 + 2.477500000000000e-01 + 1.872900000000000e-01 + 6.647900000000000e-02 +-1.141300000000000e-01 +-3.313800000000000e-01 +-5.465400000000000e-01 +-7.225300000000000e-01 +-8.411900000000000e-01 +-9.085000000000000e-01 +-9.438600000000000e-01 +-9.613400000000000e-01 +-9.565300000000000e-01 +-9.086600000000000e-01 +-7.959000000000001e-01 +-6.123700000000000e-01 +-3.747800000000000e-01 +-1.153100000000000e-01 + 1.329700000000000e-01 + 3.472700000000000e-01 + 5.167900000000000e-01 + 6.371100000000000e-01 + 7.045400000000001e-01 + 7.164100000000000e-01 + 6.765600000000001e-01 + 6.003100000000000e-01 + 5.133000000000000e-01 + 4.431400000000000e-01 + 4.082700000000000e-01 + 4.103500000000000e-01 + 4.341200000000000e-01 + 4.540500000000000e-01 + 4.443900000000000e-01 + 3.879800000000000e-01 + 2.813600000000000e-01 + 1.349800000000000e-01 +-3.050100000000000e-02 +-1.903300000000000e-01 +-3.218300000000000e-01 +-4.088900000000000e-01 +-4.440000000000000e-01 +-4.287700000000000e-01 +-3.736200000000000e-01 +-2.967500000000000e-01 +-2.204400000000000e-01 +-1.636700000000000e-01 +-1.326200000000000e-01 +-1.149800000000000e-01 +-8.402900000000001e-02 +-1.373500000000000e-02 + 1.020400000000000e-01 + 2.386300000000000e-01 + 3.474400000000000e-01 + 3.794100000000000e-01 + 3.120100000000000e-01 + 1.628900000000000e-01 +-1.901600000000000e-02 +-1.795100000000000e-01 +-2.856100000000000e-01 +-3.363700000000000e-01 +-3.537200000000000e-01 +-3.626400000000000e-01 +-3.759900000000000e-01 +-3.930100000000000e-01 +-4.085100000000000e-01 +-4.217800000000000e-01 +-4.362800000000000e-01 +-4.510900000000000e-01 +-4.532700000000000e-01 +-4.201900000000000e-01 +-3.322300000000000e-01 +-1.870400000000000e-01 +-4.449500000000000e-03 + 1.822100000000000e-01 + 3.422300000000000e-01 + 4.603400000000000e-01 + 5.386800000000000e-01 + 5.895100000000000e-01 + 6.258300000000000e-01 + 6.568900000000000e-01 + 6.887900000000000e-01 + 7.258300000000000e-01 + 7.681400000000000e-01 + 8.069900000000000e-01 + 8.232200000000000e-01 + 7.937800000000000e-01 + 7.042200000000000e-01 + 5.595400000000000e-01 + 3.846500000000000e-01 + 2.125400000000000e-01 + 6.697599999999999e-02 +-4.960000000000000e-02 +-1.554200000000000e-01 +-2.771400000000000e-01 +-4.342100000000000e-01 +-6.288000000000000e-01 +-8.457000000000000e-01 +-1.059600000000000e+00 +-1.244400000000000e+00 +-1.379200000000000e+00 +-1.450400000000000e+00 +-1.451700000000000e+00 +-1.382800000000000e+00 +-1.248400000000000e+00 +-1.056100000000000e+00 +-8.147700000000000e-01 +-5.322900000000000e-01 +-2.158900000000000e-01 + 1.262900000000000e-01 + 4.827600000000000e-01 + 8.367500000000000e-01 + 1.165900000000000e+00 + 1.443300000000000e+00 + 1.640800000000000e+00 + 1.734200000000000e+00 + 1.710400000000000e+00 + 1.574100000000000e+00 + 1.350400000000000e+00 + 1.079000000000000e+00 + 8.018500000000000e-01 + 5.479600000000000e-01 + 3.237400000000000e-01 + 1.144600000000000e-01 +-1.039800000000000e-01 +-3.491900000000000e-01 +-6.208100000000000e-01 +-8.985000000000000e-01 +-1.148800000000000e+00 +-1.336000000000000e+00 +-1.432400000000000e+00 +-1.424000000000000e+00 +-1.312500000000000e+00 +-1.113800000000000e+00 +-8.521600000000000e-01 +-5.529700000000000e-01 +-2.354100000000000e-01 + 8.967899999999999e-02 + 4.142600000000000e-01 + 7.225100000000000e-01 + 9.829300000000000e-01 + 1.151800000000000e+00 + 1.189500000000000e+00 + 1.082900000000000e+00 + 8.584600000000000e-01 + 5.764200000000000e-01 + 3.070700000000000e-01 + 1.011000000000000e-01 +-2.839600000000000e-02 +-1.027000000000000e-01 +-1.573600000000000e-01 +-2.191300000000000e-01 +-2.942300000000000e-01 +-3.723000000000000e-01 +-4.392100000000000e-01 +-4.873800000000000e-01 +-5.168300000000000e-01 +-5.290400000000000e-01 +-5.215700000000000e-01 +-4.891900000000000e-01 +-4.303100000000000e-01 +-3.523600000000000e-01 +-2.702200000000000e-01 +-1.981400000000000e-01 +-1.413500000000000e-01 +-9.381700000000000e-02 +-4.348100000000000e-02 + 1.981400000000000e-02 + 1.000800000000000e-01 + 1.968800000000000e-01 + 3.093300000000000e-01 + 4.368400000000000e-01 + 5.747700000000000e-01 + 7.090700000000000e-01 + 8.169200000000000e-01 + 8.760599999999999e-01 + 8.776500000000000e-01 + 8.328900000000000e-01 + 7.662200000000000e-01 + 6.978600000000000e-01 + 6.270400000000000e-01 + 5.286999999999999e-01 + 3.676500000000000e-01 + 1.220200000000000e-01 +-1.990500000000000e-01 +-5.550600000000000e-01 +-8.910400000000001e-01 +-1.160300000000000e+00 +-1.338900000000000e+00 +-1.425600000000000e+00 +-1.429900000000000e+00 +-1.361300000000000e+00 +-1.225100000000000e+00 +-1.027400000000000e+00 +-7.801800000000000e-01 +-5.012100000000000e-01 +-2.073400000000000e-01 + 9.173000000000001e-02 + 3.924100000000000e-01 + 6.879300000000000e-01 + 9.580500000000000e-01 + 1.167700000000000e+00 + 1.279000000000000e+00 + 1.269900000000000e+00 + 1.148800000000000e+00 + 9.529700000000000e-01 + 7.324700000000000e-01 + 5.288100000000000e-01 + 3.614900000000000e-01 + 2.287700000000000e-01 + 1.189600000000000e-01 + 2.180200000000000e-02 +-6.794200000000000e-02 +-1.546300000000000e-01 +-2.468200000000000e-01 +-3.562600000000000e-01 +-4.902600000000000e-01 +-6.432200000000000e-01 +-7.947200000000000e-01 +-9.160100000000000e-01 +-9.800800000000000e-01 +-9.683000000000000e-01 +-8.708500000000000e-01 +-6.846100000000001e-01 +-4.146100000000000e-01 +-8.078700000000000e-02 + 2.759900000000000e-01 + 5.977000000000000e-01 + 8.264800000000000e-01 + 9.282600000000000e-01 + 9.079700000000001e-01 + 8.047299999999999e-01 + 6.684800000000000e-01 + 5.328100000000000e-01 + 4.024500000000000e-01 + 2.631300000000000e-01 + 1.051500000000000e-01 +-5.843500000000000e-02 +-1.940600000000000e-01 +-2.690900000000000e-01 +-2.762300000000000e-01 +-2.415200000000000e-01 +-2.088500000000000e-01 +-2.114700000000000e-01 +-2.511600000000000e-01 +-2.995800000000000e-01 +-3.204100000000000e-01 +-2.954100000000000e-01 +-2.360500000000000e-01 +-1.734700000000000e-01 +-1.355700000000000e-01 +-1.284700000000000e-01 +-1.345800000000000e-01 +-1.268600000000000e-01 +-8.770900000000000e-02 +-1.948700000000000e-02 + 5.858100000000000e-02 + 1.224600000000000e-01 + 1.552000000000000e-01 + 1.522500000000000e-01 + 1.199300000000000e-01 + 7.097700000000000e-02 + 2.056300000000000e-02 +-1.685100000000000e-02 +-3.083000000000000e-02 +-1.843700000000000e-02 + 1.444400000000000e-02 + 5.623600000000000e-02 + 9.652900000000000e-02 + 1.324600000000000e-01 + 1.698500000000000e-01 + 2.179200000000000e-01 + 2.813600000000000e-01 + 3.554100000000000e-01 + 4.274900000000000e-01 + 4.830000000000000e-01 + 5.104500000000000e-01 + 5.019800000000000e-01 + 4.506000000000000e-01 + 3.485900000000000e-01 + 1.905800000000000e-01 +-1.973500000000000e-02 +-2.649200000000000e-01 +-5.157600000000000e-01 +-7.396800000000000e-01 +-9.101200000000000e-01 +-1.010900000000000e+00 +-1.034000000000000e+00 +-9.752800000000000e-01 +-8.346400000000000e-01 +-6.212800000000001e-01 +-3.599100000000000e-01 +-8.947600000000000e-02 + 1.487200000000000e-01 + 3.279000000000000e-01 + 4.465300000000000e-01 + 5.243200000000000e-01 + 5.853800000000000e-01 + 6.397600000000000e-01 + 6.764300000000000e-01 + 6.722100000000000e-01 + 6.097399999999999e-01 + 4.907600000000000e-01 + 3.357200000000000e-01 + 1.713000000000000e-01 + 1.667300000000000e-02 +-1.210600000000000e-01 +-2.403000000000000e-01 +-3.350400000000000e-01 +-3.919000000000000e-01 +-3.977000000000000e-01 +-3.511100000000000e-01 +-2.677900000000000e-01 +-1.729300000000000e-01 +-8.601300000000001e-02 +-9.398000000000000e-03 + 6.979700000000000e-02 + 1.654000000000000e-01 + 2.760500000000000e-01 + 3.795800000000000e-01 + 4.420600000000000e-01 + 4.350600000000000e-01 + 3.490600000000000e-01 + 1.953400000000000e-01 +-1.979900000000000e-03 +-2.151400000000000e-01 +-4.161800000000000e-01 +-5.752699999999999e-01 +-6.610100000000000e-01 +-6.485100000000000e-01 +-5.331000000000000e-01 +-3.396500000000000e-01 +-1.173600000000000e-01 + 8.076600000000000e-02 + 2.225900000000000e-01 + 3.095100000000000e-01 + 3.679900000000000e-01 + 4.251600000000000e-01 + 4.853700000000000e-01 + 5.243300000000000e-01 + 5.051700000000000e-01 + 4.052000000000000e-01 + 2.346700000000000e-01 + 3.439700000000000e-02 +-1.461300000000000e-01 +-2.751400000000000e-01 +-3.522800000000000e-01 +-4.015400000000000e-01 +-4.496700000000000e-01 +-5.053800000000001e-01 +-5.527800000000000e-01 +-5.622700000000000e-01 +-5.104000000000000e-01 +-3.953200000000000e-01 +-2.382400000000000e-01 +-7.139200000000000e-02 + 7.910200000000001e-02 + 2.042100000000000e-01 + 3.107000000000000e-01 + 4.095900000000000e-01 + 5.027500000000000e-01 + 5.770800000000000e-01 + 6.103100000000000e-01 + 5.848800000000000e-01 + 5.009500000000000e-01 + 3.796400000000000e-01 + 2.536800000000000e-01 + 1.508600000000000e-01 + 8.049400000000000e-02 + 3.147700000000000e-02 +-1.709600000000000e-02 +-7.995800000000000e-02 +-1.551400000000000e-01 +-2.256200000000000e-01 +-2.713100000000000e-01 +-2.824500000000000e-01 +-2.648800000000000e-01 +-2.342600000000000e-01 +-2.042200000000000e-01 +-1.776900000000000e-01 +-1.474200000000000e-01 +-1.046100000000000e-01 +-4.853800000000000e-02 + 9.696200000000000e-03 + 5.146700000000000e-02 + 5.905600000000000e-02 + 2.274500000000000e-02 +-5.633700000000000e-02 +-1.665400000000000e-01 +-2.868400000000000e-01 +-3.885300000000000e-01 +-4.398600000000000e-01 +-4.155900000000000e-01 +-3.089000000000000e-01 +-1.388500000000000e-01 + 5.343000000000000e-02 + 2.205700000000000e-01 + 3.291700000000000e-01 + 3.728600000000000e-01 + 3.703400000000000e-01 + 3.503700000000000e-01 + 3.337800000000000e-01 + 3.237200000000000e-01 + 3.089100000000000e-01 + 2.753000000000000e-01 + 2.175100000000000e-01 + 1.431000000000000e-01 + 6.928900000000000e-02 + 1.596200000000000e-02 +-1.193600000000000e-03 + 2.372500000000000e-02 + 8.204599999999999e-02 + 1.480000000000000e-01 + 1.824400000000000e-01 + 1.457800000000000e-01 + 1.712100000000000e-02 +-1.903800000000000e-01 +-4.290300000000000e-01 +-6.345900000000000e-01 +-7.537700000000001e-01 +-7.651200000000000e-01 +-6.802200000000000e-01 +-5.265700000000000e-01 +-3.262100000000000e-01 +-8.740700000000000e-02 + 1.848000000000000e-01 + 4.691100000000000e-01 + 7.182500000000001e-01 + 8.713900000000000e-01 + 8.838000000000000e-01 + 7.542200000000000e-01 + 5.300000000000000e-01 + 2.844300000000000e-01 + 7.991900000000000e-02 +-5.971900000000000e-02 +-1.512300000000000e-01 +-2.293100000000000e-01 +-3.164300000000000e-01 +-4.053600000000000e-01 +-4.645000000000000e-01 +-4.600900000000000e-01 +-3.799300000000000e-01 +-2.439300000000000e-01 +-9.667900000000000e-02 + 1.247100000000000e-02 + 5.068100000000000e-02 + 1.441900000000000e-02 +-7.085500000000000e-02 +-1.629500000000000e-01 +-2.214900000000000e-01 +-2.247400000000000e-01 +-1.771600000000000e-01 +-1.039300000000000e-01 +-3.537400000000000e-02 + 1.016200000000000e-02 + 3.473900000000000e-02 + 5.596800000000000e-02 + 9.289400000000000e-02 + 1.530000000000000e-01 + 2.292600000000000e-01 + 3.080300000000000e-01 + 3.798800000000000e-01 + 4.436300000000000e-01 + 5.003900000000000e-01 + 5.437400000000000e-01 + 5.564700000000000e-01 + 5.188100000000000e-01 + 4.228000000000000e-01 + 2.810400000000000e-01 + 1.213300000000000e-01 +-2.974000000000000e-02 +-1.617700000000000e-01 +-2.819200000000000e-01 +-4.016400000000000e-01 +-5.200700000000000e-01 +-6.186600000000000e-01 +-6.723100000000000e-01 +-6.681400000000000e-01 +-6.157899999999999e-01 +-5.393200000000000e-01 +-4.566400000000000e-01 +-3.636000000000000e-01 +-2.376700000000000e-01 +-6.068200000000000e-02 + 1.562700000000000e-01 + 3.661700000000000e-01 + 5.056700000000000e-01 + 5.294600000000000e-01 + 4.363500000000000e-01 + 2.697200000000000e-01 + 9.309000000000001e-02 +-4.169700000000000e-02 +-1.129800000000000e-01 +-1.260300000000000e-01 +-9.613500000000000e-02 +-3.440900000000000e-02 + 5.306300000000000e-02 + 1.558100000000000e-01 + 2.516900000000000e-01 + 3.117400000000000e-01 + 3.158800000000000e-01 + 2.672700000000000e-01 + 1.931500000000000e-01 + 1.296900000000000e-01 + 1.007400000000000e-01 + 1.047500000000000e-01 + 1.180600000000000e-01 + 1.110600000000000e-01 + 6.544200000000000e-02 +-1.759100000000000e-02 +-1.207100000000000e-01 +-2.199800000000000e-01 +-2.934600000000000e-01 +-3.261100000000000e-01 +-3.124400000000000e-01 +-2.592600000000000e-01 +-1.869300000000000e-01 +-1.249200000000000e-01 +-9.952100000000000e-02 +-1.187500000000000e-01 +-1.644600000000000e-01 +-2.000000000000000e-01 +-1.916300000000000e-01 +-1.309900000000000e-01 +-4.241300000000000e-02 + 3.188500000000000e-02 + 6.058800000000000e-02 + 4.638500000000000e-02 + 2.626100000000000e-02 + 4.698600000000000e-02 + 1.315900000000000e-01 + 2.599600000000000e-01 + 3.777200000000000e-01 + 4.284300000000000e-01 + 3.878200000000000e-01 + 2.776400000000000e-01 + 1.506100000000000e-01 + 5.772300000000000e-02 + 1.984100000000000e-02 + 2.121200000000000e-02 + 2.611600000000000e-02 + 4.547100000000000e-03 +-5.113700000000000e-02 +-1.275100000000000e-01 +-2.040900000000000e-01 +-2.668500000000000e-01 +-3.111500000000000e-01 +-3.351100000000000e-01 +-3.326300000000000e-01 +-2.948300000000000e-01 +-2.198600000000000e-01 +-1.218100000000000e-01 +-2.888600000000000e-02 + 3.126700000000000e-02 + 4.943000000000000e-02 + 4.236400000000000e-02 + 4.261600000000000e-02 + 7.627299999999999e-02 + 1.439200000000000e-01 + 2.187900000000000e-01 + 2.642900000000000e-01 + 2.592800000000000e-01 + 2.139700000000000e-01 + 1.652600000000000e-01 + 1.544900000000000e-01 + 2.017200000000000e-01 + 2.924900000000000e-01 + 3.844200000000000e-01 + 4.287300000000000e-01 + 3.938800000000000e-01 + 2.790800000000000e-01 + 1.125700000000000e-01 +-6.225800000000000e-02 +-2.048900000000000e-01 +-2.922300000000000e-01 +-3.247300000000000e-01 +-3.232800000000000e-01 +-3.186900000000000e-01 +-3.382300000000000e-01 +-3.943000000000000e-01 +-4.803600000000000e-01 +-5.757000000000000e-01 +-6.562800000000000e-01 +-7.055800000000000e-01 +-7.190100000000000e-01 +-6.998900000000000e-01 +-6.504400000000000e-01 +-5.646099999999999e-01 +-4.282300000000000e-01 +-2.268200000000000e-01 + 4.353600000000000e-02 + 3.688400000000000e-01 + 7.174800000000000e-01 + 1.047600000000000e+00 + 1.317300000000000e+00 + 1.494300000000000e+00 + 1.560500000000000e+00 + 1.513600000000000e+00 + 1.364700000000000e+00 + 1.134100000000000e+00 + 8.457500000000000e-01 + 5.225200000000000e-01 + 1.835900000000000e-01 +-1.544600000000000e-01 +-4.739200000000000e-01 +-7.526100000000000e-01 +-9.645700000000000e-01 +-1.085900000000000e+00 +-1.103900000000000e+00 +-1.024500000000000e+00 +-8.741700000000000e-01 +-6.938600000000000e-01 +-5.275700000000000e-01 +-4.099800000000000e-01 +-3.575600000000000e-01 +-3.660100000000000e-01 +-4.143700000000000e-01 +-4.737900000000000e-01 +-5.172900000000000e-01 +-5.265400000000000e-01 +-4.932000000000000e-01 +-4.149400000000000e-01 +-2.898800000000000e-01 +-1.142700000000000e-01 + 1.135400000000000e-01 + 3.847800000000000e-01 + 6.738100000000000e-01 + 9.401100000000000e-01 + 1.140600000000000e+00 + 1.246500000000000e+00 + 1.255500000000000e+00 + 1.190400000000000e+00 + 1.085000000000000e+00 + 9.654199999999999e-01 + 8.383300000000000e-01 + 6.925100000000000e-01 + 5.114100000000000e-01 + 2.873600000000000e-01 + 2.833800000000000e-02 +-2.452000000000000e-01 +-5.089399999999999e-01 +-7.415800000000000e-01 +-9.265099999999999e-01 +-1.050300000000000e+00 +-1.103200000000000e+00 +-1.084000000000000e+00 +-1.006100000000000e+00 +-8.969800000000000e-01 +-7.895000000000000e-01 +-7.064200000000000e-01 +-6.481900000000000e-01 +-5.927500000000000e-01 +-5.085499999999999e-01 +-3.733300000000000e-01 +-1.868600000000000e-01 + 3.044700000000000e-02 + 2.509400000000000e-01 + 4.555800000000000e-01 + 6.408900000000000e-01 + 8.127200000000000e-01 + 9.723400000000000e-01 + 1.106200000000000e+00 + 1.188100000000000e+00 + 1.193200000000000e+00 + 1.115700000000000e+00 + 9.758400000000000e-01 + 8.117200000000000e-01 + 6.585000000000000e-01 + 5.286000000000000e-01 + 4.051800000000000e-01 + 2.538700000000000e-01 + 4.559900000000000e-02 +-2.235100000000000e-01 +-5.273500000000000e-01 +-8.222000000000000e-01 +-1.067500000000000e+00 +-1.241900000000000e+00 +-1.345100000000000e+00 +-1.387400000000000e+00 +-1.377500000000000e+00 +-1.315700000000000e+00 +-1.198300000000000e+00 +-1.026600000000000e+00 +-8.100800000000000e-01 +-5.632900000000000e-01 +-2.967900000000000e-01 +-1.322200000000000e-02 + 2.874600000000000e-01 + 5.966000000000000e-01 + 8.890900000000000e-01 + 1.127400000000000e+00 + 1.277100000000000e+00 + 1.324200000000000e+00 + 1.281600000000000e+00 + 1.180800000000000e+00 + 1.054900000000000e+00 + 9.241900000000000e-01 + 7.946200000000000e-01 + 6.668600000000000e-01 + 5.465800000000000e-01 + 4.461700000000000e-01 + 3.759500000000000e-01 + 3.326100000000000e-01 + 2.948200000000000e-01 + 2.303400000000000e-01 + 1.099300000000000e-01 +-8.132300000000001e-02 +-3.412700000000000e-01 +-6.548000000000000e-01 +-9.984800000000000e-01 +-1.341100000000000e+00 +-1.642500000000000e+00 +-1.857400000000000e+00 +-1.946600000000000e+00 +-1.893000000000000e+00 +-1.709100000000000e+00 +-1.431600000000000e+00 +-1.102200000000000e+00 +-7.482500000000000e-01 +-3.772500000000000e-01 + 1.345500000000000e-02 + 4.185800000000000e-01 + 8.144400000000001e-01 + 1.164900000000000e+00 + 1.439000000000000e+00 + 1.626600000000000e+00 + 1.738500000000000e+00 + 1.790700000000000e+00 + 1.785100000000000e+00 + 1.703000000000000e+00 + 1.517800000000000e+00 + 1.218900000000000e+00 + 8.312000000000000e-01 + 4.145800000000000e-01 + 4.318100000000000e-02 +-2.241800000000000e-01 +-3.658800000000000e-01 +-4.013800000000000e-01 +-3.779200000000000e-01 +-3.493200000000000e-01 +-3.574300000000000e-01 +-4.223700000000000e-01 +-5.417600000000000e-01 +-6.962900000000000e-01 +-8.584700000000000e-01 +-1.002300000000000e+00 +-1.110800000000000e+00 +-1.179400000000000e+00 +-1.212400000000000e+00 +-1.214800000000000e+00 +-1.184500000000000e+00 +-1.109600000000000e+00 +-9.742200000000000e-01 +-7.689800000000000e-01 +-4.998500000000000e-01 +-1.892000000000000e-01 + 1.321200000000000e-01 + 4.371800000000000e-01 + 7.125600000000000e-01 + 9.598000000000000e-01 + 1.187700000000000e+00 + 1.400400000000000e+00 + 1.587500000000000e+00 + 1.722800000000000e+00 + 1.773200000000000e+00 + 1.713000000000000e+00 + 1.537500000000000e+00 + 1.267100000000000e+00 + 9.399200000000000e-01 + 5.953600000000000e-01 + 2.587500000000000e-01 +-6.345000000000001e-02 +-3.749800000000000e-01 +-6.738200000000000e-01 +-9.411700000000000e-01 +-1.145100000000000e+00 +-1.258100000000000e+00 +-1.277900000000000e+00 +-1.234300000000000e+00 +-1.177100000000000e+00 +-1.148600000000000e+00 +-1.160100000000000e+00 +-1.185700000000000e+00 +-1.179100000000000e+00 +-1.100400000000000e+00 +-9.353000000000000e-01 +-6.970499999999999e-01 +-4.111800000000000e-01 +-9.865599999999999e-02 + 2.302100000000000e-01 + 5.684500000000000e-01 + 9.005400000000000e-01 + 1.198600000000000e+00 + 1.431500000000000e+00 + 1.580300000000000e+00 + 1.647000000000000e+00 + 1.649700000000000e+00 + 1.605400000000000e+00 + 1.515800000000000e+00 + 1.365500000000000e+00 + 1.135100000000000e+00 + 8.193700000000000e-01 + 4.380500000000000e-01 + 3.010700000000000e-02 +-3.625900000000000e-01 +-7.116300000000000e-01 +-1.007900000000000e+00 +-1.255500000000000e+00 +-1.458900000000000e+00 +-1.614600000000000e+00 +-1.709500000000000e+00 +-1.726900000000000e+00 +-1.653000000000000e+00 +-1.482200000000000e+00 +-1.218800000000000e+00 +-8.780400000000000e-01 +-4.870000000000000e-01 +-8.245000000000000e-02 + 2.951600000000000e-01 + 6.118700000000000e-01 + 8.500300000000000e-01 + 1.012000000000000e+00 + 1.115000000000000e+00 + 1.179400000000000e+00 + 1.217000000000000e+00 + 1.226800000000000e+00 + 1.198000000000000e+00 + 1.119400000000000e+00 + 9.865699999999999e-01 + 8.052900000000000e-01 + 5.885700000000000e-01 + 3.520400000000000e-01 + 1.103800000000000e-01 +-1.237500000000000e-01 +-3.391500000000000e-01 +-5.258100000000000e-01 +-6.756600000000000e-01 +-7.837700000000000e-01 +-8.487900000000000e-01 +-8.722299999999999e-01 +-8.571299999999999e-01 +-8.072700000000000e-01 +-7.273400000000000e-01 +-6.236300000000000e-01 +-5.041400000000000e-01 +-3.776600000000000e-01 +-2.519100000000000e-01 +-1.317500000000000e-01 +-1.843900000000000e-02 + 8.931600000000001e-02 + 1.928800000000000e-01 + 2.907200000000000e-01 + 3.765800000000000e-01 + 4.403400000000000e-01 + 4.720400000000000e-01 + 4.678600000000000e-01 + 4.347600000000000e-01 + 3.904800000000000e-01 + 3.573900000000000e-01 + 3.520500000000000e-01 + 3.758900000000000e-01 + 4.123300000000000e-01 + 4.326600000000000e-01 + 4.081100000000000e-01 + 3.218500000000000e-01 + 1.751300000000000e-01 +-1.450700000000000e-02 +-2.203200000000000e-01 +-4.141400000000000e-01 +-5.714100000000000e-01 +-6.736600000000000e-01 +-7.103400000000000e-01 +-6.812300000000000e-01 +-5.978900000000000e-01 +-4.810400000000000e-01 +-3.529900000000000e-01 +-2.283300000000000e-01 +-1.089600000000000e-01 + 1.209500000000000e-02 + 1.398300000000000e-01 + 2.669700000000000e-01 + 3.727900000000000e-01 + 4.335000000000000e-01 + 4.380100000000000e-01 + 3.975300000000000e-01 + 3.409000000000000e-01 + 2.974600000000000e-01 + 2.789000000000000e-01 + 2.730700000000000e-01 + 2.547700000000000e-01 + 2.062300000000000e-01 + 1.323500000000000e-01 + 5.938000000000000e-02 + 1.721300000000000e-02 + 1.765600000000000e-02 + 4.400600000000000e-02 + 5.934300000000000e-02 + 2.788300000000000e-02 +-6.497600000000001e-02 +-2.065300000000000e-01 +-3.667900000000000e-01 +-5.159000000000000e-01 +-6.365000000000000e-01 +-7.241300000000001e-01 +-7.783800000000000e-01 +-7.938100000000000e-01 +-7.583600000000000e-01 +-6.599400000000000e-01 +-4.953000000000000e-01 +-2.742000000000000e-01 +-1.634300000000000e-02 + 2.557800000000000e-01 + 5.224500000000000e-01 + 7.673900000000000e-01 + 9.750700000000000e-01 + 1.128700000000000e+00 + 1.212400000000000e+00 + 1.216300000000000e+00 + 1.142200000000000e+00 + 1.004200000000000e+00 + 8.241700000000000e-01 + 6.240200000000000e-01 + 4.176500000000000e-01 + 2.068800000000000e-01 +-1.717200000000000e-02 +-2.672900000000000e-01 +-5.503000000000000e-01 +-8.579300000000000e-01 +-1.163100000000000e+00 +-1.424200000000000e+00 +-1.597700000000000e+00 +-1.651700000000000e+00 +-1.576500000000000e+00 +-1.384300000000000e+00 +-1.100400000000000e+00 +-7.529400000000001e-01 +-3.662200000000000e-01 + 3.734700000000000e-02 + 4.315300000000000e-01 + 7.834400000000000e-01 + 1.058400000000000e+00 + 1.230700000000000e+00 + 1.293800000000000e+00 + 1.262700000000000e+00 + 1.166000000000000e+00 + 1.034700000000000e+00 + 8.917300000000000e-01 + 7.491200000000000e-01 + 6.100600000000000e-01 + 4.721200000000000e-01 + 3.288700000000000e-01 + 1.709900000000000e-01 +-1.018500000000000e-02 +-2.155900000000000e-01 +-4.316300000000000e-01 +-6.294600000000000e-01 +-7.733500000000000e-01 +-8.352400000000000e-01 +-8.071400000000000e-01 +-7.045700000000000e-01 +-5.593200000000000e-01 +-4.069100000000000e-01 +-2.758200000000000e-01 +-1.826600000000000e-01 +-1.321300000000000e-01 +-1.186000000000000e-01 +-1.276800000000000e-01 +-1.395100000000000e-01 +-1.357700000000000e-01 +-1.088300000000000e-01 +-6.711000000000000e-02 +-3.076000000000000e-02 +-1.785800000000000e-02 +-2.925500000000000e-02 +-4.324700000000000e-02 +-2.585900000000000e-02 + 4.843300000000000e-02 + 1.789200000000000e-01 + 3.360900000000000e-01 + 4.762200000000000e-01 + 5.636100000000001e-01 + 5.859200000000000e-01 + 5.542800000000000e-01 + 4.906500000000000e-01 + 4.130700000000000e-01 + 3.285800000000000e-01 + 2.359500000000000e-01 + 1.328400000000000e-01 + 2.058400000000000e-02 +-9.580300000000000e-02 +-2.092600000000000e-01 +-3.101500000000000e-01 +-3.837000000000000e-01 +-4.101500000000000e-01 +-3.715000000000000e-01 +-2.634800000000000e-01 +-1.047600000000000e-01 + 6.486900000000000e-02 + 1.988900000000000e-01 + 2.634700000000000e-01 + 2.499200000000000e-01 + 1.728000000000000e-01 + 5.651000000000000e-02 +-7.909500000000000e-02 +-2.235800000000000e-01 +-3.692500000000000e-01 +-5.003600000000000e-01 +-5.889000000000000e-01 +-6.026100000000000e-01 +-5.212400000000000e-01 +-3.503400000000000e-01 +-1.231600000000000e-01 + 1.112900000000000e-01 + 3.070500000000000e-01 + 4.365100000000000e-01 + 4.946200000000000e-01 + 4.917600000000000e-01 + 4.417600000000000e-01 + 3.533100000000000e-01 + 2.301500000000000e-01 + 7.901900000000001e-02 +-8.123400000000000e-02 +-2.173900000000000e-01 +-2.909400000000000e-01 +-2.755500000000000e-01 +-1.734300000000000e-01 +-1.963100000000000e-02 + 1.308000000000000e-01 + 2.275200000000000e-01 + 2.475500000000000e-01 + 2.023700000000000e-01 + 1.251900000000000e-01 + 4.752700000000000e-02 +-1.865200000000000e-02 +-8.093500000000001e-02 +-1.500100000000000e-01 +-2.206500000000000e-01 +-2.663600000000000e-01 +-2.535300000000000e-01 +-1.654300000000000e-01 +-1.841800000000000e-02 + 1.426600000000000e-01 + 2.674700000000000e-01 + 3.261900000000000e-01 + 3.213200000000000e-01 + 2.791300000000000e-01 + 2.289900000000000e-01 + 1.859400000000000e-01 + 1.470000000000000e-01 + 1.003000000000000e-01 + 3.726400000000000e-02 +-4.127600000000000e-02 +-1.269000000000000e-01 +-2.083100000000000e-01 +-2.737400000000000e-01 +-3.110100000000000e-01 +-3.093600000000000e-01 +-2.658400000000000e-01 +-1.926900000000000e-01 +-1.178800000000000e-01 +-7.410000000000000e-02 +-8.052300000000000e-02 +-1.294700000000000e-01 +-1.886800000000000e-01 +-2.196600000000000e-01 +-2.005300000000000e-01 +-1.380200000000000e-01 +-6.102100000000000e-02 +-1.103700000000000e-03 + 2.572400000000000e-02 + 2.443000000000000e-02 + 1.262500000000000e-02 + 7.426400000000000e-03 + 1.784200000000000e-02 + 4.599300000000000e-02 + 9.223300000000000e-02 + 1.570500000000000e-01 + 2.376600000000000e-01 + 3.239200000000000e-01 + 3.998000000000000e-01 + 4.512100000000000e-01 + 4.744800000000000e-01 + 4.776700000000000e-01 + 4.725100000000000e-01 + 4.628800000000000e-01 + 4.390700000000000e-01 + 3.827700000000000e-01 + 2.790900000000000e-01 + 1.266700000000000e-01 +-6.080100000000000e-02 +-2.609600000000000e-01 +-4.505600000000000e-01 +-6.089400000000000e-01 +-7.175300000000000e-01 +-7.601900000000000e-01 +-7.284200000000000e-01 +-6.287400000000000e-01 +-4.853400000000000e-01 +-3.327400000000000e-01 +-2.011300000000000e-01 +-1.040800000000000e-01 +-3.737200000000000e-02 + 1.052000000000000e-02 + 4.541400000000000e-02 + 6.276200000000000e-02 + 5.511600000000000e-02 + 2.465000000000000e-02 +-1.107300000000000e-02 +-2.637300000000000e-02 +-2.865100000000000e-03 + 5.918700000000000e-02 + 1.427300000000000e-01 + 2.272500000000000e-01 + 3.023800000000000e-01 + 3.706700000000000e-01 + 4.378100000000000e-01 + 4.997100000000000e-01 + 5.383200000000000e-01 + 5.311000000000000e-01 + 4.674100000000000e-01 + 3.590200000000000e-01 + 2.361700000000000e-01 + 1.314700000000000e-01 + 6.214100000000000e-02 + 2.184000000000000e-02 +-1.408500000000000e-02 +-7.443300000000000e-02 +-1.772800000000000e-01 +-3.207500000000000e-01 +-4.816900000000000e-01 +-6.218600000000000e-01 +-7.005600000000000e-01 +-6.908100000000000e-01 +-5.934700000000001e-01 +-4.408900000000000e-01 +-2.845700000000000e-01 +-1.700300000000000e-01 +-1.120100000000000e-01 +-8.628700000000000e-02 +-4.571700000000000e-02 + 4.781100000000000e-02 + 1.958500000000000e-01 + 3.591600000000000e-01 + 4.803900000000000e-01 + 5.186600000000000e-01 + 4.728300000000000e-01 + 3.786500000000000e-01 + 2.835600000000000e-01 + 2.177600000000000e-01 + 1.811700000000000e-01 + 1.525600000000000e-01 + 1.108100000000000e-01 + 5.130600000000000e-02 +-1.326600000000000e-02 +-6.561200000000000e-02 +-9.807399999999999e-02 +-1.175500000000000e-01 +-1.388000000000000e-01 +-1.726100000000000e-01 +-2.175600000000000e-01 +-2.597400000000000e-01 +-2.790500000000000e-01 +-2.578200000000000e-01 +-1.885500000000000e-01 +-7.937700000000000e-02 + 4.450600000000000e-02 + 1.460800000000000e-01 + 1.897000000000000e-01 + 1.585600000000000e-01 + 6.720700000000000e-02 +-4.071500000000000e-02 +-1.118700000000000e-01 +-1.106000000000000e-01 +-3.815100000000000e-02 + 6.893700000000000e-02 + 1.605900000000000e-01 + 2.012000000000000e-01 + 1.859200000000000e-01 + 1.363600000000000e-01 + 8.128800000000000e-02 + 3.768700000000000e-02 + 5.182900000000000e-03 +-2.509400000000000e-02 +-5.732300000000000e-02 +-8.565800000000000e-02 +-1.007600000000000e-01 +-1.013400000000000e-01 +-9.937100000000000e-02 +-1.132400000000000e-01 +-1.534100000000000e-01 +-2.119800000000000e-01 +-2.646600000000000e-01 +-2.842500000000000e-01 +-2.559800000000000e-01 +-1.838600000000000e-01 +-8.446700000000000e-02 + 2.591500000000000e-02 + 1.407300000000000e-01 + 2.622400000000000e-01 + 3.918500000000000e-01 + 5.196400000000000e-01 + 6.215500000000000e-01 + 6.671000000000000e-01 + 6.331800000000000e-01 + 5.160600000000000e-01 + 3.347300000000000e-01 + 1.243400000000000e-01 +-7.672000000000000e-02 +-2.396300000000000e-01 +-3.521500000000000e-01 +-4.176000000000000e-01 +-4.474900000000000e-01 +-4.522400000000000e-01 +-4.353000000000000e-01 +-3.937700000000000e-01 +-3.250200000000000e-01 +-2.349000000000000e-01 +-1.418700000000000e-01 +-7.329400000000000e-02 +-5.476000000000000e-02 +-9.749300000000000e-02 +-1.908100000000000e-01 +-3.038600000000000e-01 +-3.962100000000000e-01 +-4.320700000000000e-01 +-3.918800000000000e-01 +-2.766400000000000e-01 +-1.045400000000000e-01 + 9.702300000000000e-02 + 2.997200000000000e-01 + 4.799200000000000e-01 + 6.207100000000000e-01 + 7.115600000000000e-01 + 7.475500000000000e-01 + 7.291500000000000e-01 + 6.627200000000000e-01 + 5.603300000000000e-01 + 4.383300000000000e-01 + 3.143800000000000e-01 + 2.040200000000000e-01 + 1.181400000000000e-01 + 6.173000000000000e-02 + 3.341300000000000e-02 + 2.483100000000000e-02 + 2.004000000000000e-02 +-3.211000000000000e-03 +-6.800500000000000e-02 +-1.884200000000000e-01 +-3.591000000000000e-01 +-5.508800000000000e-01 +-7.178000000000000e-01 +-8.147200000000000e-01 +-8.176200000000000e-01 +-7.350300000000000e-01 +-6.031300000000001e-01 +-4.664000000000000e-01 +-3.548800000000000e-01 +-2.713900000000000e-01 +-1.955800000000000e-01 +-1.009300000000000e-01 + 2.674900000000000e-02 + 1.803700000000000e-01 + 3.357200000000000e-01 + 4.637800000000000e-01 + 5.425800000000000e-01 + 5.632000000000000e-01 + 5.296900000000000e-01 + 4.562700000000000e-01 + 3.639700000000000e-01 + 2.757100000000000e-01 + 2.088500000000000e-01 + 1.670800000000000e-01 + 1.372200000000000e-01 + 9.599500000000000e-02 + 2.535100000000000e-02 +-7.255200000000001e-02 +-1.719300000000000e-01 +-2.360500000000000e-01 +-2.391800000000000e-01 +-1.829500000000000e-01 +-9.545600000000000e-02 +-1.316500000000000e-02 + 4.165400000000000e-02 + 7.194200000000001e-02 + 9.815599999999999e-02 + 1.387100000000000e-01 + 1.938200000000000e-01 + 2.444900000000000e-01 + 2.661700000000000e-01 + 2.454000000000000e-01 + 1.870000000000000e-01 + 1.077000000000000e-01 + 2.334100000000000e-02 +-5.940000000000000e-02 +-1.413200000000000e-01 +-2.228400000000000e-01 +-2.986600000000000e-01 +-3.596400000000000e-01 +-3.993200000000000e-01 +-4.174000000000000e-01 +-4.165900000000000e-01 +-3.963400000000000e-01 +-3.514000000000000e-01 +-2.788800000000000e-01 +-1.886200000000000e-01 +-1.058800000000000e-01 +-5.969800000000000e-02 +-6.243200000000000e-02 +-9.557599999999999e-02 +-1.151400000000000e-01 +-7.638000000000000e-02 + 3.757300000000000e-02 + 2.032800000000000e-01 + 3.699200000000000e-01 + 4.885800000000000e-01 + 5.370800000000000e-01 + 5.241300000000000e-01 + 4.729500000000000e-01 + 4.006600000000000e-01 + 3.108200000000000e-01 + 2.038900000000000e-01 + 9.335900000000000e-02 + 9.575400000000000e-03 +-1.619000000000000e-02 + 2.323400000000000e-02 + 9.782900000000000e-02 + 1.531700000000000e-01 + 1.432800000000000e-01 + 6.087600000000000e-02 +-5.739400000000000e-02 +-1.556400000000000e-01 +-1.958900000000000e-01 +-1.811600000000000e-01 +-1.489100000000000e-01 +-1.412200000000000e-01 +-1.751400000000000e-01 +-2.345300000000000e-01 +-2.870400000000000e-01 +-3.104100000000000e-01 +-3.064100000000000e-01 +-2.926200000000000e-01 +-2.808000000000000e-01 +-2.616100000000000e-01 +-2.093200000000000e-01 +-1.033200000000000e-01 + 5.065100000000000e-02 + 2.166000000000000e-01 + 3.449700000000000e-01 + 3.977700000000000e-01 + 3.645900000000000e-01 + 2.605000000000000e-01 + 1.116500000000000e-01 +-5.791300000000000e-02 +-2.282300000000000e-01 +-3.767100000000000e-01 +-4.737800000000000e-01 +-4.897800000000000e-01 +-4.109600000000000e-01 +-2.520900000000000e-01 +-5.360200000000000e-02 + 1.376400000000000e-01 + 2.915900000000000e-01 + 4.057800000000000e-01 + 4.962100000000000e-01 + 5.760000000000000e-01 + 6.391000000000000e-01 + 6.624600000000000e-01 + 6.250300000000000e-01 + 5.284000000000000e-01 + 4.018600000000000e-01 + 2.861400000000000e-01 + 2.066800000000000e-01 + 1.558300000000000e-01 + 9.733400000000000e-02 +-9.178199999999999e-03 +-1.801900000000000e-01 +-3.956000000000000e-01 +-6.088000000000000e-01 +-7.717900000000000e-01 +-8.577700000000000e-01 +-8.676199999999999e-01 +-8.186900000000000e-01 +-7.263900000000000e-01 +-5.931200000000000e-01 +-4.118200000000000e-01 +-1.807900000000000e-01 + 8.164200000000001e-02 + 3.336400000000000e-01 + 5.211900000000000e-01 + 5.988000000000000e-01 + 5.490600000000000e-01 + 3.911500000000000e-01 + 1.746500000000000e-01 +-3.846000000000000e-02 +-1.953500000000000e-01 +-2.686100000000000e-01 +-2.609500000000000e-01 +-1.976100000000000e-01 +-1.111100000000000e-01 +-2.596000000000000e-02 + 4.951100000000000e-02 + 1.215500000000000e-01 + 2.019500000000000e-01 + 2.976900000000000e-01 + 4.051000000000000e-01 + 5.106100000000000e-01 + 5.964000000000000e-01 + 6.466400000000000e-01 + 6.512900000000000e-01 + 6.069800000000000e-01 + 5.164100000000000e-01 + 3.877900000000000e-01 + 2.340800000000000e-01 + 7.090700000000000e-02 +-8.729199999999999e-02 +-2.314400000000000e-01 +-3.594000000000000e-01 +-4.731400000000000e-01 +-5.727700000000000e-01 +-6.512900000000000e-01 +-6.945300000000000e-01 +-6.875900000000000e-01 +-6.249000000000000e-01 +-5.180000000000000e-01 +-3.957600000000000e-01 +-2.952400000000000e-01 +-2.466000000000000e-01 +-2.587700000000000e-01 +-3.129100000000000e-01 +-3.675900000000000e-01 +-3.745900000000000e-01 +-2.990500000000000e-01 +-1.351300000000000e-01 + 9.039300000000000e-02 + 3.290500000000000e-01 + 5.309900000000000e-01 + 6.647999999999999e-01 + 7.263400000000000e-01 + 7.326300000000000e-01 + 7.052700000000000e-01 + 6.545200000000000e-01 + 5.743100000000000e-01 + 4.512300000000000e-01 + 2.807700000000000e-01 + 7.934700000000000e-02 +-1.165700000000000e-01 +-2.642400000000000e-01 +-3.327000000000000e-01 +-3.143700000000000e-01 +-2.247400000000000e-01 +-9.246600000000001e-02 + 5.200600000000000e-02 + 1.830400000000000e-01 + 2.804200000000000e-01 + 3.281900000000000e-01 + 3.161300000000000e-01 + 2.442000000000000e-01 + 1.260400000000000e-01 +-1.332700000000000e-02 +-1.461500000000000e-01 +-2.526900000000000e-01 +-3.275900000000000e-01 +-3.783500000000000e-01 +-4.178100000000000e-01 +-4.559700000000000e-01 +-4.959800000000000e-01 +-5.346600000000000e-01 +-5.648200000000000e-01 +-5.763500000000000e-01 +-5.560900000000000e-01 +-4.894500000000000e-01 +-3.658200000000000e-01 +-1.866300000000000e-01 + 2.953600000000000e-02 + 2.495500000000000e-01 + 4.370900000000000e-01 + 5.672400000000000e-01 + 6.359200000000000e-01 + 6.587499999999999e-01 + 6.598300000000000e-01 + 6.575600000000000e-01 + 6.553400000000000e-01 + 6.415900000000000e-01 + 5.975100000000000e-01 + 5.073100000000000e-01 + 3.655900000000000e-01 + 1.797400000000000e-01 +-3.176300000000000e-02 +-2.434200000000000e-01 +-4.278300000000000e-01 +-5.617799999999999e-01 +-6.324800000000000e-01 +-6.418700000000001e-01 +-6.064700000000000e-01 +-5.511800000000000e-01 +-4.991300000000000e-01 +-4.618300000000000e-01 +-4.348200000000000e-01 +-4.011000000000000e-01 +-3.408400000000000e-01 +-2.425600000000000e-01 +-1.101800000000000e-01 + 3.751600000000000e-02 + 1.747900000000000e-01 + 2.803700000000000e-01 + 3.468800000000000e-01 + 3.835100000000000e-01 + 4.103300000000000e-01 + 4.468900000000000e-01 + 5.011400000000000e-01 + 5.647100000000000e-01 + 6.173700000000000e-01 + 6.381300000000000e-01 + 6.160400000000000e-01 + 5.541900000000000e-01 + 4.646800000000000e-01 + 3.588200000000000e-01 + 2.401300000000000e-01 + 1.057100000000000e-01 +-4.542700000000000e-02 +-2.038200000000000e-01 +-3.491200000000000e-01 +-4.595200000000000e-01 +-5.252500000000000e-01 +-5.557800000000001e-01 +-5.741800000000000e-01 +-6.010799999999999e-01 +-6.393400000000000e-01 +-6.708900000000000e-01 +-6.693200000000000e-01 +-6.202299999999999e-01 +-5.349900000000000e-01 +-4.471700000000000e-01 +-3.926200000000000e-01 +-3.856000000000000e-01 +-4.066900000000000e-01 +-4.106800000000000e-01 +-3.498100000000000e-01 +-1.985100000000000e-01 + 3.478200000000000e-02 + 3.136000000000000e-01 + 5.917600000000000e-01 + 8.321600000000000e-01 + 1.016300000000000e+00 + 1.142300000000000e+00 + 1.216200000000000e+00 + 1.243100000000000e+00 + 1.223500000000000e+00 + 1.154100000000000e+00 + 1.031300000000000e+00 + 8.550000000000000e-01 + 6.306200000000000e-01 + 3.697200000000000e-01 + 8.845100000000000e-02 +-1.954500000000000e-01 +-4.660000000000000e-01 +-7.106500000000000e-01 +-9.189500000000000e-01 +-1.079500000000000e+00 +-1.178300000000000e+00 +-1.202400000000000e+00 +-1.147500000000000e+00 +-1.026000000000000e+00 +-8.675400000000000e-01 +-7.098100000000001e-01 +-5.823800000000000e-01 +-4.933000000000000e-01 +-4.265800000000000e-01 +-3.522500000000000e-01 +-2.425300000000000e-01 +-8.419200000000000e-02 + 1.190000000000000e-01 + 3.522600000000000e-01 + 5.970500000000000e-01 + 8.337200000000000e-01 + 1.039800000000000e+00 + 1.189000000000000e+00 + 1.256700000000000e+00 + 1.229400000000000e+00 + 1.112600000000000e+00 + 9.294600000000000e-01 + 7.099900000000000e-01 + 4.775800000000000e-01 + 2.430900000000000e-01 + 9.349600000000000e-03 +-2.190200000000000e-01 +-4.306100000000000e-01 +-6.122700000000000e-01 +-7.598700000000000e-01 +-8.836300000000000e-01 +-1.000400000000000e+00 +-1.116300000000000e+00 +-1.212400000000000e+00 +-1.247900000000000e+00 +-1.180500000000000e+00 +-9.929800000000000e-01 +-7.069900000000000e-01 +-3.739200000000000e-01 +-4.845100000000000e-02 + 2.372200000000000e-01 + 4.821900000000000e-01 + 7.046700000000000e-01 + 9.199000000000001e-01 + 1.124200000000000e+00 + 1.294500000000000e+00 + 1.401200000000000e+00 + 1.421700000000000e+00 + 1.348000000000000e+00 + 1.185400000000000e+00 + 9.480300000000000e-01 + 6.569800000000000e-01 + 3.403300000000000e-01 + 3.069800000000000e-02 +-2.421100000000000e-01 +-4.604800000000000e-01 +-6.235300000000000e-01 +-7.426199999999999e-01 +-8.306600000000000e-01 +-8.936400000000000e-01 +-9.306000000000000e-01 +-9.410900000000000e-01 +-9.319900000000000e-01 +-9.164000000000000e-01 +-9.044200000000000e-01 +-8.938199999999999e-01 +-8.692200000000000e-01 +-8.115400000000000e-01 +-7.100000000000000e-01 +-5.670500000000001e-01 +-3.925100000000000e-01 +-1.933700000000000e-01 + 3.049800000000000e-02 + 2.800400000000000e-01 + 5.462100000000000e-01 + 8.058400000000000e-01 + 1.030500000000000e+00 + 1.202200000000000e+00 + 1.322400000000000e+00 + 1.404600000000000e+00 + 1.455600000000000e+00 + 1.459700000000000e+00 + 1.382900000000000e+00 + 1.195100000000000e+00 + 8.963000000000000e-01 + 5.258400000000000e-01 + 1.460700000000000e-01 +-1.878500000000000e-01 +-4.512300000000000e-01 +-6.506999999999999e-01 +-8.058200000000000e-01 +-9.284100000000000e-01 +-1.016400000000000e+00 +-1.063800000000000e+00 +-1.074200000000000e+00 +-1.061500000000000e+00 +-1.036900000000000e+00 +-9.929600000000000e-01 +-9.033500000000000e-01 +-7.414900000000000e-01 +-5.059000000000000e-01 +-2.305700000000000e-01 + 3.045600000000000e-02 + 2.345300000000000e-01 + 3.740400000000000e-01 + 4.738200000000000e-01 + 5.641900000000000e-01 + 6.515700000000000e-01 + 7.104800000000000e-01 + 7.035400000000001e-01 + 6.135100000000000e-01 + 4.616100000000000e-01 + 2.974700000000000e-01 + 1.687300000000000e-01 + 9.361800000000001e-02 + 5.645400000000000e-02 + 2.671400000000000e-02 +-1.557700000000000e-02 +-6.832600000000000e-02 +-1.160900000000000e-01 +-1.478000000000000e-01 +-1.659100000000000e-01 +-1.790900000000000e-01 +-1.868300000000000e-01 +-1.726000000000000e-01 +-1.148000000000000e-01 +-8.202500000000000e-03 + 1.224800000000000e-01 + 2.308300000000000e-01 + 2.759800000000000e-01 + 2.497800000000000e-01 + 1.837400000000000e-01 + 1.291800000000000e-01 + 1.242000000000000e-01 + 1.701800000000000e-01 + 2.333700000000000e-01 + 2.691000000000000e-01 + 2.505900000000000e-01 + 1.828400000000000e-01 + 9.401900000000001e-02 + 1.310800000000000e-02 +-4.963300000000000e-02 +-1.067100000000000e-01 +-1.817000000000000e-01 +-2.919100000000000e-01 +-4.374600000000000e-01 +-6.019600000000001e-01 +-7.616200000000000e-01 +-8.944800000000001e-01 +-9.841900000000000e-01 +-1.018400000000000e+00 +-9.865100000000000e-01 +-8.808400000000000e-01 +-7.016700000000000e-01 +-4.614700000000000e-01 +-1.832700000000000e-01 + 1.077600000000000e-01 + 3.950900000000000e-01 + 6.762000000000000e-01 + 9.573300000000000e-01 + 1.239500000000000e+00 + 1.504600000000000e+00 + 1.712400000000000e+00 + 1.812900000000000e+00 + 1.768600000000000e+00 + 1.574300000000000e+00 + 1.261100000000000e+00 + 8.820500000000000e-01 + 4.876200000000000e-01 + 1.072300000000000e-01 +-2.530400000000000e-01 +-5.967200000000000e-01 +-9.189500000000000e-01 +-1.198500000000000e+00 +-1.405500000000000e+00 +-1.519200000000000e+00 +-1.541000000000000e+00 +-1.494800000000000e+00 +-1.412000000000000e+00 +-1.314000000000000e+00 +-1.202400000000000e+00 +-1.062200000000000e+00 +-8.745200000000000e-01 +-6.287700000000001e-01 +-3.289900000000000e-01 + 7.372400000000000e-03 + 3.537500000000000e-01 + 6.792500000000000e-01 + 9.537500000000000e-01 + 1.154700000000000e+00 + 1.274100000000000e+00 + 1.321300000000000e+00 + 1.317300000000000e+00 + 1.281100000000000e+00 + 1.218000000000000e+00 + 1.117500000000000e+00 + 9.655400000000000e-01 + 7.623900000000000e-01 + 5.324900000000000e-01 + 3.168300000000000e-01 + 1.505400000000000e-01 + 4.054600000000000e-02 +-4.029100000000000e-02 +-1.372000000000000e-01 +-2.855200000000000e-01 +-4.893300000000000e-01 +-7.202499999999999e-01 +-9.359800000000000e-01 +-1.104400000000000e+00 +-1.216500000000000e+00 +-1.282000000000000e+00 +-1.311600000000000e+00 +-1.303200000000000e+00 +-1.239300000000000e+00 +-1.098900000000000e+00 +-8.732600000000000e-01 +-5.755700000000000e-01 +-2.382100000000000e-01 + 9.859400000000000e-02 + 3.998900000000000e-01 + 6.444800000000001e-01 + 8.264400000000000e-01 + 9.517000000000000e-01 + 1.032400000000000e+00 + 1.081700000000000e+00 + 1.108600000000000e+00 + 1.115700000000000e+00 + 1.098400000000000e+00 + 1.047600000000000e+00 + 9.547200000000000e-01 + 8.174200000000000e-01 + 6.429900000000000e-01 + 4.478000000000000e-01 + 2.524700000000000e-01 + 7.424000000000000e-02 +-8.041600000000000e-02 +-2.192500000000000e-01 +-3.608200000000000e-01 +-5.241200000000000e-01 +-7.154400000000000e-01 +-9.195900000000000e-01 +-1.102000000000000e+00 +-1.222200000000000e+00 +-1.252600000000000e+00 +-1.190700000000000e+00 +-1.057000000000000e+00 +-8.804400000000000e-01 +-6.804100000000000e-01 +-4.593300000000000e-01 +-2.107400000000000e-01 + 6.329000000000000e-02 + 3.393400000000000e-01 + 5.758100000000000e-01 + 7.317600000000000e-01 + 7.893900000000000e-01 + 7.648900000000000e-01 + 7.000300000000000e-01 + 6.401800000000000e-01 + 6.123100000000000e-01 + 6.155600000000000e-01 + 6.269500000000000e-01 + 6.157500000000000e-01 + 5.570700000000000e-01 + 4.393900000000000e-01 + 2.667400000000000e-01 + 5.844900000000000e-02 +-1.533900000000000e-01 +-3.310700000000000e-01 +-4.443200000000000e-01 +-4.846600000000000e-01 +-4.719700000000000e-01 +-4.458200000000000e-01 +-4.436100000000000e-01 +-4.775400000000000e-01 +-5.253000000000000e-01 +-5.416800000000001e-01 +-4.845500000000000e-01 +-3.389000000000000e-01 +-1.244100000000000e-01 + 1.166700000000000e-01 + 3.411300000000000e-01 + 5.212200000000000e-01 + 6.466900000000000e-01 + 7.154900000000000e-01 + 7.234400000000000e-01 + 6.626500000000000e-01 + 5.292200000000000e-01 + 3.329300000000000e-01 + 9.980100000000000e-02 +-1.358100000000000e-01 +-3.443900000000000e-01 +-5.109900000000001e-01 +-6.353700000000000e-01 +-7.236100000000000e-01 +-7.781000000000000e-01 +-7.927300000000000e-01 +-7.561400000000000e-01 +-6.598400000000000e-01 +-5.058200000000000e-01 +-3.091700000000000e-01 +-9.495099999999999e-02 + 1.084800000000000e-01 + 2.768000000000000e-01 + 3.957100000000000e-01 + 4.646300000000000e-01 + 4.972600000000000e-01 + 5.181300000000000e-01 + 5.542100000000000e-01 + 6.231200000000000e-01 + 7.220900000000000e-01 + 8.237100000000001e-01 + 8.829600000000000e-01 + 8.549000000000000e-01 + 7.160100000000000e-01 + 4.781900000000000e-01 + 1.868600000000000e-01 +-9.744999999999999e-02 +-3.251700000000000e-01 +-4.769000000000000e-01 +-5.652600000000000e-01 +-6.190800000000000e-01 +-6.609300000000000e-01 +-6.927100000000000e-01 +-6.982800000000000e-01 +-6.595299999999999e-01 +-5.733600000000000e-01 +-4.571200000000000e-01 +-3.393800000000000e-01 +-2.437400000000000e-01 +-1.781300000000000e-01 +-1.360400000000000e-01 +-1.065900000000000e-01 +-8.342500000000000e-02 +-6.555000000000000e-02 +-5.111600000000000e-02 +-3.232200000000000e-02 + 2.191500000000000e-03 + 5.888100000000000e-02 + 1.331700000000000e-01 + 2.128800000000000e-01 + 2.895700000000000e-01 + 3.675000000000000e-01 + 4.601600000000000e-01 + 5.743200000000001e-01 + 6.938299999999999e-01 + 7.784100000000000e-01 + 7.827200000000000e-01 + 6.843300000000000e-01 + 5.007100000000000e-01 + 2.811900000000000e-01 + 7.849700000000000e-02 +-8.028100000000001e-02 +-2.023800000000000e-01 +-3.126300000000000e-01 +-4.255800000000000e-01 +-5.289000000000000e-01 +-5.910200000000000e-01 +-5.859500000000000e-01 +-5.150000000000000e-01 +-4.076400000000000e-01 +-3.010900000000000e-01 +-2.149900000000000e-01 +-1.412800000000000e-01 +-5.685100000000000e-02 + 5.126600000000000e-02 + 1.681700000000000e-01 + 2.548000000000000e-01 + 2.710200000000000e-01 + 2.020800000000000e-01 + 7.080900000000000e-02 +-7.194500000000000e-02 +-1.722600000000000e-01 +-1.987100000000000e-01 +-1.554000000000000e-01 +-7.750200000000000e-02 +-1.302700000000000e-02 + 1.087400000000000e-04 +-4.831500000000000e-02 +-1.359600000000000e-01 +-2.183400000000000e-01 +-2.502300000000000e-01 +-2.079300000000000e-01 +-1.002500000000000e-01 + 3.837300000000000e-02 + 1.687500000000000e-01 + 2.685300000000000e-01 + 3.403800000000000e-01 + 4.020800000000000e-01 + 4.668300000000000e-01 + 5.294300000000000e-01 + 5.690400000000000e-01 + 5.656500000000000e-01 + 5.164500000000000e-01 + 4.381900000000000e-01 + 3.532300000000000e-01 + 2.707600000000000e-01 + 1.787300000000000e-01 + 5.374400000000000e-02 +-1.184200000000000e-01 +-3.274300000000000e-01 +-5.398500000000001e-01 +-7.157500000000000e-01 +-8.280300000000000e-01 +-8.712000000000000e-01 +-8.561400000000000e-01 +-7.981300000000000e-01 +-7.088100000000001e-01 +-5.963600000000000e-01 +-4.698000000000000e-01 +-3.397600000000000e-01 +-2.131800000000000e-01 +-8.671200000000000e-02 + 5.305800000000000e-02 + 2.202100000000000e-01 + 4.163300000000000e-01 + 6.233500000000000e-01 + 8.080600000000000e-01 + 9.353700000000000e-01 + 9.814700000000000e-01 + 9.399500000000000e-01 + 8.201300000000000e-01 + 6.426100000000000e-01 + 4.360400000000000e-01 + 2.342100000000000e-01 + 6.972000000000000e-02 +-3.725200000000000e-02 +-8.965700000000000e-02 +-1.151200000000000e-01 +-1.534400000000000e-01 +-2.350300000000000e-01 +-3.628500000000000e-01 +-5.092000000000000e-01 +-6.293900000000000e-01 +-6.830000000000001e-01 +-6.502700000000000e-01 +-5.362100000000000e-01 +-3.646400000000000e-01 +-1.692700000000000e-01 + 1.296200000000000e-02 + 1.473300000000000e-01 + 2.085100000000000e-01 + 1.895900000000000e-01 + 1.071300000000000e-01 +-4.136700000000000e-03 +-1.069600000000000e-01 +-1.787700000000000e-01 +-2.183800000000000e-01 +-2.372500000000000e-01 +-2.423600000000000e-01 +-2.250900000000000e-01 +-1.660800000000000e-01 +-5.288500000000000e-02 + 1.039400000000000e-01 + 2.702400000000000e-01 + 4.051200000000000e-01 + 4.833600000000000e-01 + 5.067900000000000e-01 + 4.969200000000000e-01 + 4.757300000000000e-01 + 4.495600000000000e-01 + 4.078000000000000e-01 + 3.350800000000000e-01 + 2.258900000000000e-01 + 9.056900000000000e-02 +-4.986100000000000e-02 +-1.733500000000000e-01 +-2.627300000000000e-01 +-3.057200000000000e-01 +-2.938400000000000e-01 +-2.255600000000000e-01 +-1.131000000000000e-01 + 1.429300000000000e-02 + 1.173900000000000e-01 + 1.635300000000000e-01 + 1.429500000000000e-01 + 7.327200000000000e-02 +-1.196800000000000e-02 +-8.349300000000000e-02 +-1.319300000000000e-01 +-1.692500000000000e-01 +-2.167400000000000e-01 +-2.886500000000000e-01 +-3.821200000000000e-01 +-4.777400000000000e-01 +-5.479800000000000e-01 +-5.678600000000000e-01 +-5.233500000000000e-01 +-4.161700000000000e-01 +-2.645700000000000e-01 +-9.905000000000000e-02 + 4.746400000000000e-02 + 1.521300000000000e-01 + 2.109900000000000e-01 + 2.380600000000000e-01 + 2.546300000000000e-01 + 2.756100000000000e-01 + 3.029900000000000e-01 + 3.304800000000000e-01 + 3.545600000000000e-01 + 3.812400000000000e-01 + 4.215500000000000e-01 + 4.790700000000000e-01 + 5.406700000000000e-01 + 5.799500000000000e-01 + 5.723300000000000e-01 + 5.104600000000000e-01 + 4.073000000000000e-01 + 2.844100000000000e-01 + 1.551900000000000e-01 + 1.758600000000000e-02 +-1.375000000000000e-01 +-3.093400000000000e-01 +-4.769800000000000e-01 +-6.052500000000000e-01 +-6.636700000000000e-01 +-6.443100000000000e-01 +-5.658000000000000e-01 +-4.618300000000000e-01 +-3.640700000000000e-01 +-2.912600000000000e-01 +-2.487800000000000e-01 +-2.333400000000000e-01 +-2.354700000000000e-01 +-2.385800000000000e-01 +-2.204100000000000e-01 +-1.623900000000000e-01 +-6.381500000000000e-02 + 5.107700000000000e-02 + 1.432000000000000e-01 + 1.837000000000000e-01 + 1.772700000000000e-01 + 1.644900000000000e-01 + 1.973700000000000e-01 + 3.029100000000000e-01 + 4.604400000000000e-01 + 6.099500000000000e-01 + 6.868000000000000e-01 + 6.585000000000000e-01 + 5.389000000000000e-01 + 3.723200000000000e-01 + 2.024800000000000e-01 + 5.018000000000000e-02 +-8.625099999999999e-02 +-2.131000000000000e-01 +-3.244000000000000e-01 +-4.010800000000000e-01 +-4.254900000000000e-01 +-3.979100000000000e-01 +-3.403300000000000e-01 +-2.845800000000000e-01 +-2.542700000000000e-01 +-2.536100000000000e-01 +-2.690300000000000e-01 +-2.794300000000000e-01 +-2.664400000000000e-01 +-2.197000000000000e-01 +-1.381500000000000e-01 +-3.023300000000000e-02 + 8.667500000000000e-02 + 1.908400000000000e-01 + 2.656500000000000e-01 + 3.090800000000000e-01 + 3.345800000000000e-01 + 3.595400000000000e-01 + 3.880700000000000e-01 + 4.021200000000000e-01 + 3.712600000000000e-01 + 2.766600000000000e-01 + 1.318700000000000e-01 +-1.776500000000000e-02 +-1.197500000000000e-01 +-1.470400000000000e-01 +-1.148700000000000e-01 +-6.901300000000000e-02 +-5.420400000000000e-02 +-8.621600000000000e-02 +-1.470900000000000e-01 +-2.040800000000000e-01 +-2.347000000000000e-01 +-2.376500000000000e-01 +-2.237300000000000e-01 +-1.986100000000000e-01 +-1.552400000000000e-01 +-8.314800000000000e-02 + 1.497700000000000e-02 + 1.165700000000000e-01 + 1.906900000000000e-01 + 2.193100000000000e-01 + 2.100400000000000e-01 + 1.888700000000000e-01 + 1.783000000000000e-01 + 1.793000000000000e-01 + 1.720100000000000e-01 + 1.339400000000000e-01 + 5.945600000000000e-02 +-3.601400000000000e-02 +-1.294000000000000e-01 +-2.076600000000000e-01 +-2.728300000000000e-01 +-3.303100000000000e-01 +-3.725100000000000e-01 +-3.755900000000000e-01 +-3.155400000000000e-01 +-1.920500000000000e-01 +-3.897200000000000e-02 + 9.007600000000000e-02 + 1.526200000000000e-01 + 1.421200000000000e-01 + 8.793600000000000e-02 + 3.131700000000000e-02 +-3.208400000000000e-03 +-1.896700000000000e-02 +-3.398200000000000e-02 +-5.684500000000000e-02 +-7.318100000000000e-02 +-5.432800000000000e-02 + 1.926400000000000e-02 + 1.395200000000000e-01 + 2.721500000000000e-01 + 3.764700000000000e-01 + 4.277700000000000e-01 + 4.258600000000000e-01 + 3.861600000000000e-01 + 3.236700000000000e-01 + 2.447200000000000e-01 + 1.520800000000000e-01 + 5.639300000000000e-02 +-1.899300000000000e-02 +-4.691000000000000e-02 +-1.380100000000000e-02 + 6.734999999999999e-02 + 1.590800000000000e-01 + 2.162700000000000e-01 + 2.075900000000000e-01 + 1.288300000000000e-01 + 2.082900000000000e-03 +-1.369500000000000e-01 +-2.549000000000000e-01 +-3.323200000000000e-01 +-3.671500000000000e-01 +-3.709700000000000e-01 +-3.614600000000000e-01 +-3.547500000000000e-01 +-3.609000000000000e-01 +-3.839000000000000e-01 +-4.251800000000000e-01 +-4.866500000000000e-01 +-5.694800000000000e-01 +-6.677300000000000e-01 +-7.611800000000000e-01 +-8.146099999999999e-01 +-7.879800000000000e-01 +-6.543200000000000e-01 +-4.149400000000000e-01 +-1.018600000000000e-01 + 2.352800000000000e-01 + 5.496799999999999e-01 + 8.124400000000001e-01 + 1.013800000000000e+00 + 1.152700000000000e+00 + 1.226400000000000e+00 + 1.228200000000000e+00 + 1.155800000000000e+00 + 1.021100000000000e+00 + 8.516000000000000e-01 + 6.803000000000000e-01 + 5.321500000000000e-01 + 4.160900000000000e-01 + 3.283100000000000e-01 + 2.616800000000000e-01 + 2.117400000000000e-01 + 1.737500000000000e-01 + 1.347000000000000e-01 + 7.015399999999999e-02 +-4.723100000000000e-02 +-2.308000000000000e-01 +-4.664100000000000e-01 +-7.135800000000000e-01 +-9.224500000000000e-01 +-1.056900000000000e+00 +-1.109400000000000e+00 +-1.100000000000000e+00 +-1.061600000000000e+00 +-1.022100000000000e+00 +-9.942900000000000e-01 +-9.737600000000000e-01 +-9.448600000000000e-01 +-8.870300000000000e-01 +-7.808400000000000e-01 +-6.137100000000000e-01 +-3.856300000000000e-01 +-1.122100000000000e-01 + 1.781200000000000e-01 + 4.534400000000000e-01 + 6.895000000000000e-01 + 8.761600000000000e-01 + 1.015600000000000e+00 + 1.114800000000000e+00 + 1.179500000000000e+00 + 1.213700000000000e+00 + 1.222800000000000e+00 + 1.214700000000000e+00 + 1.193600000000000e+00 + 1.150600000000000e+00 + 1.060600000000000e+00 + 8.926200000000000e-01 + 6.305200000000000e-01 + 2.920800000000000e-01 +-6.939600000000000e-02 +-3.852400000000000e-01 +-6.031600000000000e-01 +-7.111499999999999e-01 +-7.385300000000000e-01 +-7.344200000000000e-01 +-7.384600000000000e-01 +-7.629899999999999e-01 +-7.958600000000000e-01 +-8.180800000000000e-01 +-8.207200000000000e-01 +-8.084600000000000e-01 +-7.890800000000000e-01 +-7.593500000000000e-01 +-7.004899999999999e-01 +-5.879700000000000e-01 +-4.095300000000000e-01 +-1.786400000000000e-01 + 6.644200000000000e-02 + 2.780400000000000e-01 + 4.200200000000000e-01 + 4.826000000000000e-01 + 4.836900000000000e-01 + 4.576300000000000e-01 + 4.386100000000000e-01 + 4.475600000000000e-01 + 4.878700000000000e-01 + 5.496900000000000e-01 + 6.179600000000000e-01 + 6.783500000000000e-01 + 7.179500000000000e-01 + 7.218900000000000e-01 + 6.709900000000000e-01 + 5.453400000000000e-01 + 3.347800000000000e-01 + 5.114500000000000e-02 +-2.662200000000000e-01 +-5.582400000000000e-01 +-7.662500000000000e-01 +-8.552500000000000e-01 +-8.274400000000000e-01 +-7.181200000000000e-01 +-5.759600000000000e-01 +-4.393800000000000e-01 +-3.227700000000000e-01 +-2.192500000000000e-01 +-1.160200000000000e-01 +-1.025100000000000e-02 + 8.537800000000000e-02 + 1.505700000000000e-01 + 1.719500000000000e-01 + 1.535800000000000e-01 + 1.164400000000000e-01 + 8.793700000000000e-02 + 8.898100000000000e-02 + 1.267400000000000e-01 + 1.958600000000000e-01 + 2.848700000000000e-01 + 3.816600000000000e-01 + 4.743900000000000e-01 + 5.489000000000001e-01 + 5.873000000000000e-01 + 5.711000000000001e-01 + 4.884300000000000e-01 + 3.407700000000000e-01 + 1.443700000000000e-01 +-7.528200000000000e-02 +-2.925100000000000e-01 +-4.886600000000000e-01 +-6.534300000000000e-01 +-7.811000000000000e-01 +-8.659700000000000e-01 +-9.016000000000000e-01 +-8.843900000000000e-01 +-8.179600000000000e-01 +-7.130300000000001e-01 +-5.810500000000000e-01 +-4.253900000000000e-01 +-2.377700000000000e-01 +-5.143800000000000e-03 + 2.748400000000000e-01 + 5.793900000000000e-01 + 8.585500000000000e-01 + 1.050400000000000e+00 + 1.107900000000000e+00 + 1.021800000000000e+00 + 8.276000000000000e-01 + 5.899100000000000e-01 + 3.746200000000000e-01 + 2.234900000000000e-01 + 1.442600000000000e-01 + 1.186300000000000e-01 + 1.195500000000000e-01 + 1.256100000000000e-01 + 1.252600000000000e-01 + 1.122200000000000e-01 + 7.957300000000000e-02 + 1.885600000000000e-02 +-7.509600000000000e-02 +-1.984900000000000e-01 +-3.374400000000000e-01 +-4.728400000000000e-01 +-5.875800000000000e-01 +-6.713200000000000e-01 +-7.201400000000000e-01 +-7.332800000000000e-01 +-7.105200000000000e-01 +-6.527600000000000e-01 +-5.647500000000000e-01 +-4.569600000000000e-01 +-3.446000000000000e-01 +-2.440000000000000e-01 +-1.683900000000000e-01 +-1.247100000000000e-01 +-1.111600000000000e-01 +-1.152000000000000e-01 +-1.128500000000000e-01 +-7.186099999999999e-02 + 3.886100000000000e-02 + 2.353500000000000e-01 + 5.062200000000000e-01 + 8.098700000000000e-01 + 1.085400000000000e+00 + 1.273700000000000e+00 + 1.339200000000000e+00 + 1.281200000000000e+00 + 1.129200000000000e+00 + 9.273500000000000e-01 + 7.154300000000000e-01 + 5.177800000000000e-01 + 3.420400000000000e-01 + 1.852200000000000e-01 + 4.035400000000000e-02 +-1.006800000000000e-01 +-2.477800000000000e-01 +-4.128800000000000e-01 +-6.061200000000000e-01 +-8.283199999999999e-01 +-1.064200000000000e+00 +-1.281500000000000e+00 +-1.440000000000000e+00 +-1.505100000000000e+00 +-1.461900000000000e+00 +-1.320100000000000e+00 +-1.107600000000000e+00 +-8.572400000000000e-01 +-5.930500000000000e-01 +-3.249500000000000e-01 +-5.350600000000000e-02 + 2.197000000000000e-01 + 4.842200000000000e-01 + 7.212300000000000e-01 + 9.119600000000000e-01 + 1.047300000000000e+00 + 1.131500000000000e+00 + 1.176000000000000e+00 + 1.189500000000000e+00 + 1.170200000000000e+00 + 1.106900000000000e+00 + 9.883500000000000e-01 + 8.130500000000001e-01 + 5.929300000000000e-01 + 3.492100000000000e-01 + 1.046500000000000e-01 +-1.218300000000000e-01 +-3.153100000000000e-01 +-4.630300000000000e-01 +-5.554700000000000e-01 +-5.918000000000000e-01 +-5.852300000000000e-01 +-5.612800000000000e-01 +-5.465000000000000e-01 +-5.530000000000000e-01 +-5.696900000000000e-01 +-5.676900000000000e-01 +-5.181600000000000e-01 +-4.109800000000000e-01 +-2.620500000000000e-01 +-1.046900000000000e-01 + 2.817600000000000e-02 + 1.184100000000000e-01 + 1.652600000000000e-01 + 1.772000000000000e-01 + 1.618200000000000e-01 + 1.219000000000000e-01 + 5.898900000000000e-02 +-2.104500000000000e-02 +-1.066600000000000e-01 +-1.843200000000000e-01 +-2.424800000000000e-01 +-2.714200000000000e-01 +-2.595700000000000e-01 +-1.926600000000000e-01 +-6.079600000000000e-02 + 1.288900000000000e-01 + 3.438800000000000e-01 + 5.321600000000000e-01 + 6.430100000000000e-01 + 6.513300000000000e-01 + 5.696600000000001e-01 + 4.393300000000000e-01 + 3.066400000000000e-01 + 2.002400000000000e-01 + 1.239800000000000e-01 + 6.705999999999999e-02 + 2.075200000000000e-02 +-1.256200000000000e-02 +-2.355000000000000e-02 +-7.171800000000000e-03 + 3.047000000000000e-02 + 7.561400000000000e-02 + 1.161500000000000e-01 + 1.466400000000000e-01 + 1.635600000000000e-01 + 1.555700000000000e-01 + 1.000000000000000e-01 +-2.721000000000000e-02 +-2.327600000000000e-01 +-4.922500000000000e-01 +-7.535500000000001e-01 +-9.573900000000000e-01 +-1.062400000000000e+00 +-1.059100000000000e+00 +-9.645899999999999e-01 +-8.065200000000000e-01 +-6.076200000000000e-01 +-3.820900000000000e-01 +-1.415800000000000e-01 + 9.843399999999999e-02 + 3.195000000000000e-01 + 5.073600000000000e-01 + 6.576000000000000e-01 + 7.733000000000000e-01 + 8.564500000000000e-01 + 9.018300000000000e-01 + 9.004500000000000e-01 + 8.504100000000000e-01 + 7.649200000000000e-01 + 6.678700000000000e-01 + 5.778600000000000e-01 + 4.931400000000000e-01 + 3.915100000000000e-01 + 2.484800000000000e-01 + 6.170400000000000e-02 +-1.380100000000000e-01 +-3.002000000000000e-01 +-3.857300000000000e-01 +-3.940000000000000e-01 +-3.659100000000000e-01 +-3.592000000000000e-01 +-4.127200000000000e-01 +-5.238699999999999e-01 +-6.538400000000000e-01 +-7.548800000000000e-01 +-7.988100000000000e-01 +-7.867300000000000e-01 +-7.359300000000000e-01 +-6.573099999999999e-01 +-5.432300000000000e-01 +-3.759700000000000e-01 +-1.497400000000000e-01 + 1.121600000000000e-01 + 3.603300000000000e-01 + 5.428400000000000e-01 + 6.337500000000000e-01 + 6.469700000000000e-01 + 6.252300000000000e-01 + 6.114700000000000e-01 + 6.215100000000000e-01 + 6.360900000000000e-01 + 6.169700000000000e-01 + 5.356600000000000e-01 + 3.954700000000000e-01 + 2.324200000000000e-01 + 9.494300000000000e-02 + 1.582300000000000e-02 +-5.559000000000000e-03 +-3.836200000000000e-04 +-1.003600000000000e-02 +-6.209900000000000e-02 +-1.574500000000000e-01 +-2.745100000000000e-01 +-3.851600000000000e-01 +-4.698500000000000e-01 +-5.225700000000000e-01 +-5.446500000000000e-01 +-5.353599999999999e-01 +-4.884300000000000e-01 +-3.978800000000000e-01 +-2.682200000000000e-01 +-1.198800000000000e-01 + 1.605000000000000e-02 + 1.114800000000000e-01 + 1.547500000000000e-01 + 1.550900000000000e-01 + 1.355800000000000e-01 + 1.196900000000000e-01 + 1.201800000000000e-01 + 1.359600000000000e-01 + 1.566600000000000e-01 + 1.699400000000000e-01 + 1.664200000000000e-01 + 1.408800000000000e-01 + 9.200600000000000e-02 + 2.332700000000000e-02 +-5.454200000000000e-02 +-1.229600000000000e-01 +-1.585100000000000e-01 +-1.406000000000000e-01 +-6.010600000000000e-02 + 7.534900000000000e-02 + 2.422000000000000e-01 + 4.071400000000000e-01 + 5.356400000000000e-01 + 5.996600000000000e-01 + 5.829900000000000e-01 + 4.841300000000000e-01 + 3.171300000000000e-01 + 1.099000000000000e-01 +-1.003800000000000e-01 +-2.749500000000000e-01 +-3.831300000000000e-01 +-4.113100000000000e-01 +-3.685800000000000e-01 +-2.861200000000000e-01 +-2.089800000000000e-01 +-1.810900000000000e-01 +-2.277200000000000e-01 +-3.425300000000000e-01 +-4.866400000000000e-01 +-6.028100000000000e-01 +-6.400700000000000e-01 +-5.772100000000000e-01 +-4.320300000000000e-01 +-2.506900000000000e-01 +-8.267200000000000e-02 + 4.399500000000000e-02 + 1.326200000000000e-01 + 2.081100000000000e-01 + 2.953500000000000e-01 + 4.006600000000000e-01 + 5.077900000000000e-01 + 5.891999999999999e-01 + 6.232799999999999e-01 + 6.056200000000000e-01 + 5.486100000000000e-01 + 4.725400000000000e-01 + 3.955200000000000e-01 + 3.280100000000000e-01 + 2.719000000000000e-01 + 2.212600000000000e-01 + 1.633000000000000e-01 + 8.149300000000000e-02 +-3.665900000000000e-02 +-1.890400000000000e-01 +-3.526700000000000e-01 +-4.891300000000000e-01 +-5.620600000000000e-01 +-5.573399999999999e-01 +-4.921000000000000e-01 +-4.046300000000000e-01 +-3.308600000000000e-01 +-2.831800000000000e-01 +-2.465900000000000e-01 +-1.946700000000000e-01 +-1.127000000000000e-01 +-1.017700000000000e-02 + 8.648500000000001e-02 + 1.546500000000000e-01 + 1.921200000000000e-01 + 2.161500000000000e-01 + 2.456600000000000e-01 + 2.815900000000000e-01 + 3.023700000000000e-01 + 2.792900000000000e-01 + 2.006500000000000e-01 + 8.539300000000000e-02 +-2.489600000000000e-02 +-9.109200000000001e-02 +-1.006900000000000e-01 +-7.409700000000000e-02 +-4.929100000000000e-02 +-5.646700000000000e-02 +-1.003600000000000e-01 +-1.607800000000000e-01 +-2.082600000000000e-01 +-2.220200000000000e-01 +-1.984700000000000e-01 +-1.473400000000000e-01 +-8.187400000000000e-02 +-1.141800000000000e-02 + 5.983200000000000e-02 + 1.305300000000000e-01 + 2.007700000000000e-01 + 2.727000000000000e-01 + 3.499800000000000e-01 + 4.327000000000000e-01 + 5.091500000000000e-01 + 5.512600000000000e-01 + 5.206300000000000e-01 + 3.857400000000000e-01 + 1.420600000000000e-01 +-1.773700000000000e-01 +-5.089200000000000e-01 +-7.806200000000000e-01 +-9.377500000000000e-01 +-9.586700000000000e-01 +-8.544400000000000e-01 +-6.562200000000000e-01 +-4.004000000000000e-01 +-1.201200000000000e-01 + 1.552200000000000e-01 + 3.971900000000000e-01 + 5.784899999999999e-01 + 6.781199999999999e-01 + 6.886100000000001e-01 + 6.198500000000000e-01 + 4.965800000000000e-01 + 3.507900000000000e-01 + 2.130200000000000e-01 + 1.063100000000000e-01 + 4.329400000000000e-02 + 2.536900000000000e-02 + 4.255800000000000e-02 + 7.479400000000000e-02 + 9.624600000000000e-02 + 8.305899999999999e-02 + 2.207200000000000e-02 +-8.383500000000001e-02 +-2.170400000000000e-01 +-3.526600000000000e-01 +-4.679700000000000e-01 +-5.486300000000000e-01 +-5.889200000000000e-01 +-5.877599999999999e-01 +-5.445900000000000e-01 +-4.589900000000000e-01 +-3.343000000000000e-01 +-1.822600000000000e-01 +-2.437400000000000e-02 + 1.121400000000000e-01 + 2.029200000000000e-01 + 2.356300000000000e-01 + 2.155100000000000e-01 + 1.644800000000000e-01 + 1.138400000000000e-01 + 9.309099999999999e-02 + 1.194000000000000e-01 + 1.920700000000000e-01 + 2.945600000000000e-01 + 4.031400000000000e-01 + 4.973000000000000e-01 + 5.659800000000000e-01 + 6.058700000000000e-01 + 6.138700000000000e-01 + 5.802900000000000e-01 + 4.901100000000000e-01 + 3.337700000000000e-01 + 1.211600000000000e-01 +-1.122900000000000e-01 +-3.148700000000000e-01 +-4.408400000000000e-01 +-4.730300000000000e-01 +-4.313800000000000e-01 +-3.608900000000000e-01 +-3.062400000000000e-01 +-2.892100000000000e-01 +-3.028700000000000e-01 +-3.244100000000000e-01 +-3.356800000000000e-01 +-3.359200000000000e-01 +-3.387400000000000e-01 +-3.576200000000000e-01 +-3.926900000000000e-01 +-4.286500000000000e-01 +-4.436900000000000e-01 +-4.206400000000000e-01 +-3.513300000000000e-01 +-2.329300000000000e-01 +-6.366700000000000e-02 + 1.544500000000000e-01 + 4.060200000000000e-01 + 6.548300000000000e-01 + 8.493500000000000e-01 + 9.424800000000000e-01 + 9.149500000000000e-01 + 7.858700000000000e-01 + 6.020500000000000e-01 + 4.123700000000000e-01 + 2.449200000000000e-01 + 1.020100000000000e-01 +-2.582300000000000e-02 +-1.401900000000000e-01 +-2.266000000000000e-01 +-2.641200000000000e-01 +-2.438700000000000e-01 +-1.801600000000000e-01 +-1.041500000000000e-01 +-4.489100000000000e-02 +-1.319700000000000e-02 +-1.155500000000000e-03 + 3.163100000000000e-03 +-9.855899999999999e-04 +-3.088800000000000e-02 +-1.074800000000000e-01 +-2.357300000000000e-01 +-3.939200000000000e-01 +-5.404500000000000e-01 +-6.331100000000000e-01 +-6.475700000000000e-01 +-5.835800000000000e-01 +-4.583500000000000e-01 +-2.950800000000000e-01 +-1.157300000000000e-01 + 6.001200000000000e-02 + 2.140300000000000e-01 + 3.322700000000000e-01 + 4.099700000000000e-01 + 4.537900000000000e-01 + 4.765200000000000e-01 + 4.868700000000000e-01 + 4.824000000000000e-01 + 4.527700000000000e-01 + 3.911700000000000e-01 + 3.042500000000000e-01 + 2.106400000000000e-01 + 1.277400000000000e-01 + 5.735700000000000e-02 +-1.637900000000000e-02 +-1.128000000000000e-01 +-2.338100000000000e-01 +-3.532900000000000e-01 +-4.273600000000000e-01 +-4.202500000000000e-01 +-3.279400000000000e-01 +-1.826000000000000e-01 +-3.430800000000000e-02 + 7.697700000000000e-02 + 1.401200000000000e-01 + 1.712100000000000e-01 + 1.956700000000000e-01 + 2.285700000000000e-01 + 2.663900000000000e-01 + 2.924600000000000e-01 + 2.886800000000000e-01 + 2.439200000000000e-01 + 1.553200000000000e-01 + 2.611600000000000e-02 +-1.347500000000000e-01 +-3.104300000000000e-01 +-4.752800000000000e-01 +-5.997300000000000e-01 +-6.599800000000000e-01 +-6.465700000000000e-01 +-5.655700000000000e-01 +-4.319500000000000e-01 +-2.611500000000000e-01 +-6.583300000000000e-02 + 1.403400000000000e-01 + 3.373400000000000e-01 + 4.990500000000000e-01 + 6.016200000000000e-01 + 6.345300000000000e-01 + 6.054100000000000e-01 + 5.341500000000000e-01 + 4.401400000000000e-01 + 3.322000000000000e-01 + 2.083100000000000e-01 + 6.430100000000000e-02 +-9.647699999999999e-02 +-2.602400000000000e-01 +-4.081900000000000e-01 +-5.245200000000000e-01 +-6.001700000000000e-01 +-6.302100000000000e-01 +-6.093700000000000e-01 +-5.317300000000000e-01 +-3.961200000000000e-01 +-2.125700000000000e-01 +-3.085300000000000e-03 + 2.057000000000000e-01 + 3.929100000000000e-01 + 5.491100000000000e-01 + 6.728700000000000e-01 + 7.617500000000000e-01 + 8.060200000000000e-01 + 7.911000000000000e-01 + 7.076500000000000e-01 + 5.612100000000000e-01 + 3.736000000000000e-01 + 1.744800000000000e-01 +-1.139300000000000e-02 +-1.727600000000000e-01 +-3.117800000000000e-01 +-4.368200000000000e-01 +-5.534600000000000e-01 +-6.585600000000000e-01 +-7.388900000000000e-01 +-7.738300000000000e-01 +-7.416300000000000e-01 +-6.290900000000000e-01 +-4.427500000000000e-01 +-2.158800000000000e-01 +-4.382600000000000e-03 + 1.314200000000000e-01 + 1.533300000000000e-01 + 6.627800000000000e-02 +-7.976400000000000e-02 +-2.108700000000000e-01 +-2.633000000000000e-01 +-2.121000000000000e-01 +-7.835600000000000e-02 + 8.728600000000000e-02 + 2.337500000000000e-01 + 3.336400000000000e-01 + 3.901300000000000e-01 + 4.260500000000000e-01 + 4.646900000000000e-01 + 5.143700000000000e-01 + 5.642600000000000e-01 + 5.911300000000000e-01 + 5.718100000000000e-01 + 4.946400000000000e-01 + 3.650800000000000e-01 + 2.035900000000000e-01 + 3.717900000000000e-02 +-1.113600000000000e-01 +-2.306000000000000e-01 +-3.198200000000000e-01 +-3.809800000000000e-01 +-4.094400000000000e-01 +-3.918700000000000e-01 +-3.151100000000000e-01 +-1.813200000000000e-01 +-1.765700000000000e-02 + 1.293100000000000e-01 + 2.143900000000000e-01 + 2.173700000000000e-01 + 1.532700000000000e-01 + 6.102200000000000e-02 +-2.244300000000000e-02 +-8.459800000000001e-02 +-1.403500000000000e-01 +-2.140200000000000e-01 +-3.145400000000000e-01 +-4.231600000000000e-01 +-5.033200000000000e-01 +-5.253900000000000e-01 +-4.871700000000000e-01 +-4.145800000000000e-01 +-3.417100000000000e-01 +-2.853300000000000e-01 +-2.326400000000000e-01 +-1.515200000000000e-01 +-1.577800000000000e-02 + 1.723700000000000e-01 + 3.779000000000000e-01 + 5.492100000000000e-01 + 6.439700000000000e-01 + 6.485100000000000e-01 + 5.804100000000000e-01 + 4.752900000000000e-01 + 3.678000000000000e-01 + 2.782300000000000e-01 + 2.106900000000000e-01 + 1.608500000000000e-01 + 1.259800000000000e-01 + 1.095800000000000e-01 + 1.176600000000000e-01 + 1.495300000000000e-01 + 1.903200000000000e-01 + 2.121300000000000e-01 + 1.857300000000000e-01 + 9.723400000000000e-02 +-4.086800000000000e-02 +-1.932400000000000e-01 +-3.201000000000000e-01 +-4.003300000000000e-01 +-4.441700000000000e-01 +-4.854600000000000e-01 +-5.568000000000000e-01 +-6.631600000000000e-01 +-7.719700000000000e-01 +-8.271500000000001e-01 +-7.790300000000000e-01 +-6.109800000000000e-01 +-3.468400000000000e-01 +-3.650600000000000e-02 + 2.686800000000000e-01 + 5.342800000000000e-01 + 7.457700000000000e-01 + 8.994200000000000e-01 + 9.919200000000000e-01 + 1.016900000000000e+00 + 9.687500000000000e-01 + 8.471000000000000e-01 + 6.578600000000000e-01 + 4.113600000000000e-01 + 1.229900000000000e-01 +-1.818700000000000e-01 +-4.638300000000000e-01 +-6.747500000000000e-01 +-7.753600000000000e-01 +-7.565700000000000e-01 +-6.488300000000000e-01 +-5.091100000000000e-01 +-3.902500000000000e-01 +-3.124400000000000e-01 +-2.569200000000000e-01 +-1.871700000000000e-01 +-8.225300000000001e-02 + 4.280800000000000e-02 + 1.456300000000000e-01 + 1.876800000000000e-01 + 1.641200000000000e-01 + 1.090600000000000e-01 + 7.141100000000000e-02 + 7.968400000000000e-02 + 1.221600000000000e-01 + 1.573700000000000e-01 + 1.467200000000000e-01 + 8.461800000000000e-02 + 4.537900000000000e-03 +-4.259900000000000e-02 +-2.089100000000000e-02 + 6.991100000000000e-02 + 1.977500000000000e-01 + 3.197200000000000e-01 + 4.046400000000000e-01 + 4.425800000000000e-01 + 4.394500000000000e-01 + 4.055800000000000e-01 + 3.484800000000000e-01 + 2.728800000000000e-01 + 1.835600000000000e-01 + 8.551300000000001e-02 +-1.933800000000000e-02 +-1.341100000000000e-01 +-2.634300000000000e-01 +-4.058800000000000e-01 +-5.490900000000000e-01 +-6.730200000000000e-01 +-7.600400000000000e-01 +-8.035099999999999e-01 +-8.069600000000000e-01 +-7.739400000000000e-01 +-6.976700000000000e-01 +-5.613400000000000e-01 +-3.517700000000000e-01 +-7.738100000000001e-02 + 2.245200000000000e-01 + 4.995200000000000e-01 + 7.013200000000001e-01 + 8.135599999999999e-01 + 8.527900000000000e-01 + 8.504900000000000e-01 + 8.273800000000000e-01 + 7.787300000000000e-01 + 6.810700000000000e-01 + 5.142800000000000e-01 + 2.822500000000000e-01 + 1.687900000000000e-02 +-2.360500000000000e-01 +-4.376800000000000e-01 +-5.682199999999999e-01 +-6.241800000000000e-01 +-6.070800000000000e-01 +-5.166600000000000e-01 +-3.560300000000000e-01 +-1.441800000000000e-01 + 7.738000000000000e-02 + 2.540500000000000e-01 + 3.415700000000000e-01 + 3.287500000000000e-01 + 2.433600000000000e-01 + 1.354400000000000e-01 + 4.807800000000000e-02 +-4.975800000000000e-03 +-4.078300000000000e-02 +-8.798900000000000e-02 +-1.617600000000000e-01 +-2.508300000000000e-01 +-3.250600000000000e-01 +-3.565900000000000e-01 +-3.386000000000000e-01 +-2.883400000000000e-01 +-2.335700000000000e-01 +-1.932000000000000e-01 +-1.663900000000000e-01 +-1.367400000000000e-01 +-8.674900000000001e-02 +-1.100500000000000e-02 + 8.096600000000000e-02 + 1.723700000000000e-01 + 2.495700000000000e-01 + 3.068300000000000e-01 + 3.430200000000000e-01 + 3.554200000000000e-01 + 3.381400000000000e-01 + 2.879100000000000e-01 + 2.128100000000000e-01 + 1.354000000000000e-01 + 8.518600000000000e-02 + 8.336499999999999e-02 + 1.294300000000000e-01 + 1.991900000000000e-01 + 2.564000000000000e-01 + 2.713400000000000e-01 + 2.348800000000000e-01 + 1.599400000000000e-01 + 7.057500000000000e-02 +-1.332400000000000e-02 +-8.574500000000000e-02 +-1.533400000000000e-01 +-2.255800000000000e-01 +-3.038400000000000e-01 +-3.770000000000000e-01 +-4.263000000000000e-01 +-4.361700000000000e-01 +-4.041000000000000e-01 +-3.435800000000000e-01 +-2.780600000000000e-01 +-2.291400000000000e-01 +-2.054300000000000e-01 +-1.981900000000000e-01 +-1.866600000000000e-01 +-1.505700000000000e-01 +-8.334000000000000e-02 + 1.512000000000000e-03 + 7.507900000000001e-02 + 1.072300000000000e-01 + 8.327500000000000e-02 + 1.438300000000000e-02 +-6.399400000000000e-02 +-1.052600000000000e-01 +-7.027799999999999e-02 + 5.690200000000000e-02 + 2.624400000000000e-01 + 5.068400000000000e-01 + 7.371700000000000e-01 + 9.023300000000000e-01 + 9.665800000000000e-01 + 9.174700000000000e-01 + 7.666200000000000e-01 + 5.432399999999999e-01 + 2.832100000000000e-01 + 1.827900000000000e-02 +-2.298300000000000e-01 +-4.485700000000000e-01 +-6.290800000000000e-01 +-7.615499999999999e-01 +-8.360800000000000e-01 +-8.487000000000000e-01 +-8.075400000000000e-01 +-7.321200000000000e-01 +-6.437100000000000e-01 +-5.518800000000000e-01 +-4.467000000000000e-01 +-3.042300000000000e-01 +-1.036200000000000e-01 + 1.541100000000000e-01 + 4.384700000000000e-01 + 6.987600000000000e-01 + 8.852400000000000e-01 + 9.693200000000000e-01 + 9.510900000000000e-01 + 8.515900000000000e-01 + 6.973600000000000e-01 + 5.085000000000000e-01 + 2.969300000000000e-01 + 7.263799999999999e-02 +-1.499600000000000e-01 +-3.523500000000000e-01 +-5.187200000000000e-01 +-6.430500000000000e-01 +-7.298600000000000e-01 +-7.873599999999999e-01 +-8.179999999999999e-01 +-8.139200000000000e-01 +-7.609000000000000e-01 +-6.480300000000000e-01 +-4.765300000000000e-01 +-2.620400000000000e-01 +-2.973700000000000e-02 + 1.939300000000000e-01 + 3.881900000000000e-01 + 5.410300000000000e-01 + 6.491200000000000e-01 + 7.159799999999999e-01 + 7.493900000000000e-01 + 7.576800000000000e-01 + 7.453500000000000e-01 + 7.099800000000001e-01 + 6.433900000000000e-01 + 5.374500000000000e-01 + 3.919500000000000e-01 + 2.188100000000000e-01 + 3.900300000000000e-02 +-1.268000000000000e-01 +-2.679700000000000e-01 +-3.871500000000000e-01 +-4.946200000000000e-01 +-5.973400000000000e-01 +-6.905000000000000e-01 +-7.572200000000000e-01 +-7.766100000000000e-01 +-7.345699999999999e-01 +-6.304400000000000e-01 +-4.762400000000000e-01 +-2.903400000000000e-01 +-9.079200000000000e-02 + 1.076200000000000e-01 + 2.924400000000000e-01 + 4.512200000000000e-01 + 5.710900000000000e-01 + 6.409700000000000e-01 + 6.547500000000001e-01 + 6.134900000000000e-01 + 5.253200000000000e-01 + 4.038900000000000e-01 + 2.661800000000000e-01 + 1.299400000000000e-01 + 1.022100000000000e-02 +-8.462300000000000e-02 +-1.557100000000000e-01 +-2.126400000000000e-01 +-2.676900000000000e-01 +-3.274200000000000e-01 +-3.866000000000000e-01 +-4.291800000000000e-01 +-4.366800000000000e-01 +-3.996800000000000e-01 +-3.250900000000000e-01 +-2.343000000000000e-01 +-1.525000000000000e-01 +-9.572899999999999e-02 +-6.345099999999999e-02 +-4.105100000000000e-02 +-1.033300000000000e-02 + 3.901300000000000e-02 + 1.041200000000000e-01 + 1.724700000000000e-01 + 2.309300000000000e-01 + 2.735600000000000e-01 + 3.031600000000000e-01 + 3.263000000000000e-01 + 3.464000000000000e-01 + 3.604500000000000e-01 + 3.616200000000000e-01 + 3.452600000000000e-01 + 3.130600000000000e-01 + 2.718700000000000e-01 + 2.280600000000000e-01 + 1.822800000000000e-01 + 1.291900000000000e-01 + 6.265800000000001e-02 +-1.772000000000000e-02 +-1.044400000000000e-01 +-1.862600000000000e-01 +-2.553500000000000e-01 +-3.110600000000000e-01 +-3.565700000000000e-01 +-3.908500000000000e-01 +-4.034700000000000e-01 +-3.784100000000000e-01 +-3.059500000000000e-01 +-1.943900000000000e-01 +-7.147400000000000e-02 + 2.757300000000000e-02 + 7.838299999999999e-02 + 7.926800000000001e-02 + 4.773000000000000e-02 + 4.244300000000000e-03 +-4.397600000000000e-02 +-1.061100000000000e-01 +-1.948000000000000e-01 +-3.074800000000000e-01 +-4.175400000000000e-01 +-4.841300000000000e-01 +-4.746900000000000e-01 +-3.840100000000000e-01 +-2.355500000000000e-01 +-6.454000000000000e-02 + 1.038900000000000e-01 + 2.646000000000000e-01 + 4.237900000000000e-01 + 5.803900000000000e-01 + 7.146600000000000e-01 + 7.948600000000000e-01 + 7.977900000000000e-01 + 7.271000000000000e-01 + 6.141799999999999e-01 + 5.000000000000000e-01 + 4.111000000000000e-01 + 3.470400000000000e-01 + 2.871500000000000e-01 + 2.095000000000000e-01 + 1.063400000000000e-01 +-1.460200000000000e-02 +-1.406200000000000e-01 +-2.644500000000000e-01 +-3.841600000000000e-01 +-4.937900000000000e-01 +-5.755100000000000e-01 +-6.044200000000000e-01 +-5.652800000000000e-01 +-4.689800000000000e-01 +-3.539700000000000e-01 +-2.683500000000000e-01 +-2.434600000000000e-01 +-2.768800000000000e-01 +-3.364200000000000e-01 +-3.813400000000000e-01 +-3.854000000000000e-01 +-3.466100000000000e-01 +-2.802800000000000e-01 +-2.044500000000000e-01 +-1.299300000000000e-01 +-6.035000000000000e-02 + 2.550800000000000e-03 + 5.671500000000000e-02 + 1.036500000000000e-01 + 1.529000000000000e-01 + 2.192800000000000e-01 + 3.113400000000000e-01 + 4.195700000000000e-01 + 5.158100000000000e-01 + 5.679900000000000e-01 + 5.614000000000000e-01 + 5.105400000000000e-01 + 4.512600000000000e-01 + 4.177300000000000e-01 + 4.208500000000000e-01 + 4.439100000000000e-01 + 4.577000000000000e-01 + 4.422900000000000e-01 + 3.977900000000000e-01 + 3.368400000000000e-01 + 2.669200000000000e-01 + 1.793000000000000e-01 + 5.512900000000000e-02 +-1.162900000000000e-01 +-3.225600000000000e-01 +-5.302500000000000e-01 +-7.030000000000000e-01 +-8.213600000000000e-01 +-8.888100000000000e-01 +-9.198600000000000e-01 +-9.216700000000000e-01 +-8.855900000000000e-01 +-7.959400000000000e-01 +-6.481500000000000e-01 +-4.596100000000000e-01 +-2.625400000000000e-01 +-8.362300000000000e-02 + 7.280700000000000e-02 + 2.237600000000000e-01 + 3.884400000000000e-01 + 5.661000000000000e-01 + 7.287300000000000e-01 + 8.350600000000000e-01 + 8.553200000000000e-01 + 7.881200000000000e-01 + 6.574400000000000e-01 + 4.938300000000000e-01 + 3.157500000000000e-01 + 1.259000000000000e-01 +-7.638800000000000e-02 +-2.787500000000000e-01 +-4.511300000000000e-01 +-5.580400000000000e-01 +-5.790100000000000e-01 +-5.210300000000000e-01 +-4.131400000000000e-01 +-2.869600000000000e-01 +-1.580400000000000e-01 +-2.169800000000000e-02 + 1.342300000000000e-01 + 3.104700000000000e-01 + 4.863400000000000e-01 + 6.269200000000000e-01 + 7.026000000000000e-01 + 7.067600000000001e-01 + 6.590100000000000e-01 + 5.909400000000000e-01 + 5.239300000000000e-01 + 4.535900000000000e-01 + 3.514400000000000e-01 + 1.835900000000000e-01 +-6.443100000000000e-02 +-3.715200000000000e-01 +-6.835300000000000e-01 +-9.341400000000000e-01 +-1.073200000000000e+00 +-1.087900000000000e+00 +-1.004800000000000e+00 +-8.733300000000001e-01 +-7.391500000000000e-01 +-6.237500000000000e-01 +-5.201800000000000e-01 +-4.063500000000000e-01 +-2.657200000000000e-01 +-1.016500000000000e-01 + 6.321300000000001e-02 + 2.009300000000000e-01 + 2.952300000000000e-01 + 3.499400000000000e-01 + 3.842700000000000e-01 + 4.195100000000000e-01 + 4.668200000000000e-01 + 5.238400000000000e-01 + 5.801500000000001e-01 + 6.261100000000001e-01 + 6.579100000000000e-01 + 6.763400000000001e-01 + 6.822300000000000e-01 + 6.732300000000000e-01 + 6.446800000000000e-01 + 5.929700000000000e-01 + 5.179000000000000e-01 + 4.218500000000000e-01 + 3.070200000000000e-01 + 1.738800000000000e-01 + 2.247500000000000e-02 +-1.440800000000000e-01 +-3.173100000000000e-01 +-4.841400000000000e-01 +-6.303500000000000e-01 +-7.441700000000000e-01 +-8.181300000000000e-01 +-8.491100000000000e-01 +-8.382800000000000e-01 +-7.918800000000000e-01 +-7.215100000000000e-01 +-6.419600000000000e-01 +-5.656700000000000e-01 +-4.967100000000000e-01 +-4.285300000000000e-01 +-3.483900000000000e-01 +-2.465600000000000e-01 +-1.242900000000000e-01 + 5.283400000000000e-03 + 1.246100000000000e-01 + 2.227400000000000e-01 + 3.025000000000000e-01 + 3.786400000000000e-01 + 4.682500000000000e-01 + 5.795100000000000e-01 + 7.054200000000000e-01 + 8.254800000000000e-01 + 9.132100000000000e-01 + 9.451500000000000e-01 + 9.076400000000000e-01 + 8.004400000000000e-01 + 6.375300000000000e-01 + 4.448700000000000e-01 + 2.542600000000000e-01 + 9.342000000000000e-02 +-2.453100000000000e-02 +-1.064400000000000e-01 +-1.748000000000000e-01 +-2.544100000000000e-01 +-3.569000000000000e-01 +-4.727700000000000e-01 +-5.765200000000000e-01 +-6.423700000000000e-01 +-6.606200000000000e-01 +-6.440000000000000e-01 +-6.196400000000000e-01 +-6.116500000000000e-01 +-6.254200000000000e-01 +-6.433500000000000e-01 +-6.345100000000000e-01 +-5.719000000000000e-01 +-4.472300000000000e-01 +-2.754300000000000e-01 +-8.762300000000001e-02 + 8.262200000000000e-02 + 2.124100000000000e-01 + 2.966900000000000e-01 + 3.475400000000000e-01 + 3.872100000000000e-01 + 4.380200000000000e-01 + 5.128900000000000e-01 + 6.097200000000000e-01 + 7.121100000000000e-01 + 7.963900000000000e-01 + 8.421999999999999e-01 + 8.412400000000000e-01 + 7.991100000000000e-01 + 7.290300000000000e-01 + 6.412700000000000e-01 + 5.354900000000000e-01 + 4.017400000000000e-01 + 2.299600000000000e-01 + 2.167200000000000e-02 +-2.049400000000000e-01 +-4.211200000000000e-01 +-6.016600000000000e-01 +-7.376500000000000e-01 +-8.386600000000000e-01 +-9.222000000000000e-01 +-9.974600000000000e-01 +-1.054800000000000e+00 +-1.069000000000000e+00 +-1.015500000000000e+00 +-8.886900000000000e-01 +-7.098500000000000e-01 +-5.193200000000000e-01 +-3.563500000000000e-01 +-2.391000000000000e-01 +-1.566100000000000e-01 +-7.671000000000000e-02 + 3.569500000000000e-02 + 2.006600000000000e-01 + 4.148900000000000e-01 + 6.552600000000000e-01 + 8.896600000000000e-01 + 1.088100000000000e+00 + 1.228800000000000e+00 + 1.299500000000000e+00 + 1.295800000000000e+00 + 1.219800000000000e+00 + 1.080100000000000e+00 + 8.918300000000000e-01 + 6.756000000000000e-01 + 4.538900000000000e-01 + 2.463700000000000e-01 + 6.499000000000001e-02 +-8.940200000000000e-02 +-2.271600000000000e-01 +-3.657100000000000e-01 +-5.215200000000000e-01 +-7.007400000000000e-01 +-8.926600000000000e-01 +-1.070400000000000e+00 +-1.199600000000000e+00 +-1.251900000000000e+00 +-1.217000000000000e+00 +-1.105800000000000e+00 +-9.443900000000000e-01 +-7.619100000000000e-01 +-5.786500000000000e-01 +-4.014400000000000e-01 +-2.267800000000000e-01 +-4.867500000000000e-02 + 1.342000000000000e-01 + 3.156300000000000e-01 + 4.835000000000000e-01 + 6.238400000000000e-01 + 7.246899999999999e-01 + 7.781700000000000e-01 + 7.812200000000000e-01 + 7.354000000000001e-01 + 6.466300000000000e-01 + 5.253000000000000e-01 + 3.867100000000000e-01 + 2.514300000000000e-01 + 1.438400000000000e-01 + 8.746700000000000e-02 + 9.709000000000000e-02 + 1.705200000000000e-01 + 2.853700000000000e-01 + 4.047700000000000e-01 + 4.912400000000000e-01 + 5.216900000000000e-01 + 4.944500000000000e-01 + 4.236000000000000e-01 + 3.242500000000000e-01 + 1.997800000000000e-01 + 4.087200000000000e-02 +-1.621900000000000e-01 +-4.031400000000000e-01 +-6.525000000000000e-01 +-8.667800000000000e-01 +-1.008900000000000e+00 +-1.066200000000000e+00 +-1.053400000000000e+00 +-9.992799999999999e-01 +-9.273600000000000e-01 +-8.440600000000000e-01 +-7.416199999999999e-01 +-6.100900000000000e-01 +-4.474100000000000e-01 +-2.595200000000000e-01 +-5.321400000000000e-02 + 1.692200000000000e-01 + 4.065700000000000e-01 + 6.488000000000000e-01 + 8.706900000000000e-01 + 1.037500000000000e+00 + 1.120500000000000e+00 + 1.111800000000000e+00 + 1.025600000000000e+00 + 8.855499999999999e-01 + 7.079200000000000e-01 + 4.952700000000000e-01 + 2.463400000000000e-01 +-2.691400000000000e-02 +-2.909300000000000e-01 +-5.005300000000000e-01 +-6.215900000000000e-01 +-6.493400000000000e-01 +-6.073499999999999e-01 +-5.276000000000000e-01 +-4.272200000000000e-01 +-3.004000000000000e-01 +-1.317800000000000e-01 + 8.004400000000000e-02 + 3.086500000000000e-01 + 5.073600000000000e-01 + 6.330900000000000e-01 + 6.682700000000000e-01 + 6.248899999999999e-01 + 5.295700000000000e-01 + 4.029100000000000e-01 + 2.498200000000000e-01 + 6.648800000000001e-02 +-1.444600000000000e-01 +-3.651200000000000e-01 +-5.673200000000000e-01 +-7.264699999999999e-01 +-8.319800000000001e-01 +-8.862100000000001e-01 +-8.950900000000001e-01 +-8.606300000000000e-01 +-7.826800000000000e-01 +-6.671000000000000e-01 +-5.303300000000000e-01 +-3.930700000000000e-01 +-2.666400000000000e-01 +-1.441000000000000e-01 +-5.923900000000000e-03 + 1.619100000000000e-01 + 3.517300000000000e-01 + 5.341800000000000e-01 + 6.767100000000000e-01 + 7.667400000000000e-01 + 8.207200000000000e-01 + 8.700100000000000e-01 + 9.333399999999999e-01 + 9.969100000000000e-01 + 1.018700000000000e+00 + 9.553600000000000e-01 + 7.929100000000000e-01 + 5.588300000000000e-01 + 3.075300000000000e-01 + 8.983500000000000e-02 +-7.220300000000000e-02 +-1.893800000000000e-01 +-2.890900000000000e-01 +-3.931900000000000e-01 +-5.060000000000000e-01 +-6.177400000000000e-01 +-7.162300000000000e-01 +-7.951600000000000e-01 +-8.527500000000000e-01 +-8.845800000000000e-01 +-8.795100000000000e-01 +-8.239900000000000e-01 +-7.121600000000000e-01 +-5.534200000000000e-01 +-3.713500000000000e-01 +-1.942600000000000e-01 +-4.407000000000000e-02 + 6.990000000000000e-02 + 1.502400000000000e-01 + 2.070500000000000e-01 + 2.541400000000000e-01 + 3.072000000000000e-01 + 3.817300000000000e-01 + 4.880800000000000e-01 + 6.243100000000000e-01 + 7.711200000000000e-01 + 8.936900000000000e-01 + 9.517400000000000e-01 + 9.139699999999999e-01 + 7.700800000000000e-01 + 5.348700000000000e-01 + 2.432700000000000e-01 +-6.075100000000000e-02 +-3.364100000000000e-01 +-5.551300000000000e-01 +-7.041100000000000e-01 +-7.840500000000000e-01 +-8.028500000000000e-01 +-7.683300000000000e-01 +-6.838700000000000e-01 +-5.495400000000000e-01 +-3.681700000000000e-01 +-1.522900000000000e-01 + 7.357700000000000e-02 + 2.780200000000000e-01 + 4.331200000000000e-01 + 5.238300000000000e-01 + 5.504599999999999e-01 + 5.231700000000000e-01 + 4.532500000000000e-01 + 3.480500000000000e-01 + 2.132000000000000e-01 + 5.953200000000000e-02 +-9.238600000000000e-02 +-2.153900000000000e-01 +-2.860800000000000e-01 +-2.960100000000000e-01 +-2.560200000000000e-01 +-1.908100000000000e-01 +-1.274300000000000e-01 +-8.478100000000000e-02 +-6.963999999999999e-02 +-7.919500000000000e-02 +-1.058500000000000e-01 +-1.400200000000000e-01 +-1.702000000000000e-01 +-1.829600000000000e-01 +-1.657800000000000e-01 +-1.124700000000000e-01 +-2.737700000000000e-02 + 7.542100000000000e-02 + 1.783400000000000e-01 + 2.678300000000000e-01 + 3.377400000000000e-01 + 3.863200000000000e-01 + 4.097100000000000e-01 + 3.981800000000000e-01 + 3.394600000000000e-01 + 2.278500000000000e-01 + 7.281500000000000e-02 +-9.982800000000000e-02 +-2.561400000000000e-01 +-3.673300000000000e-01 +-4.199800000000000e-01 +-4.174000000000000e-01 +-3.723600000000000e-01 +-2.971200000000000e-01 +-1.977900000000000e-01 +-7.624499999999999e-02 + 6.315500000000000e-02 + 2.077900000000000e-01 + 3.367200000000000e-01 + 4.262700000000000e-01 + 4.575500000000000e-01 + 4.211700000000000e-01 + 3.180200000000000e-01 + 1.577800000000000e-01 +-4.171700000000000e-02 +-2.537500000000000e-01 +-4.434100000000000e-01 +-5.734399999999999e-01 +-6.155100000000000e-01 +-5.622400000000000e-01 +-4.322000000000000e-01 +-2.628900000000000e-01 +-9.400900000000000e-02 + 4.962800000000000e-02 + 1.648900000000000e-01 + 2.626500000000000e-01 + 3.513700000000000e-01 + 4.244600000000000e-01 + 4.614600000000000e-01 + 4.434000000000000e-01 + 3.714100000000000e-01 + 2.739500000000000e-01 + 1.951300000000000e-01 + 1.695000000000000e-01 + 1.996700000000000e-01 + 2.521000000000000e-01 + 2.756500000000000e-01 + 2.320400000000000e-01 + 1.192200000000000e-01 +-2.718400000000000e-02 +-1.552800000000000e-01 +-2.274600000000000e-01 +-2.414000000000000e-01 +-2.294000000000000e-01 +-2.378800000000000e-01 +-3.006900000000000e-01 +-4.216200000000000e-01 +-5.743200000000001e-01 +-7.166800000000000e-01 +-8.091900000000000e-01 +-8.275500000000000e-01 +-7.656200000000000e-01 +-6.314700000000000e-01 +-4.418000000000000e-01 +-2.178900000000000e-01 + 1.736300000000000e-02 + 2.429300000000000e-01 + 4.439000000000000e-01 + 6.139800000000000e-01 + 7.533800000000000e-01 + 8.620900000000000e-01 + 9.328000000000000e-01 + 9.495100000000000e-01 + 8.950300000000000e-01 + 7.640700000000000e-01 + 5.738400000000000e-01 + 3.638500000000000e-01 + 1.827400000000000e-01 + 6.825400000000000e-02 + 3.124100000000000e-02 + 5.249000000000000e-02 + 9.350899999999999e-02 + 1.142400000000000e-01 + 8.770400000000000e-02 + 5.444400000000000e-03 +-1.255000000000000e-01 +-2.882000000000000e-01 +-4.590900000000000e-01 +-6.089800000000000e-01 +-7.062700000000000e-01 +-7.258900000000000e-01 +-6.622200000000000e-01 +-5.379699999999999e-01 +-4.008000000000000e-01 +-3.058200000000000e-01 +-2.915400000000000e-01 +-3.620600000000000e-01 +-4.856600000000000e-01 +-6.098500000000000e-01 +-6.836100000000001e-01 +-6.746400000000000e-01 +-5.743500000000000e-01 +-3.925600000000000e-01 +-1.491800000000000e-01 + 1.306600000000000e-01 + 4.176000000000000e-01 + 6.794400000000000e-01 + 8.865200000000000e-01 + 1.020300000000000e+00 + 1.079700000000000e+00 + 1.079300000000000e+00 + 1.040100000000000e+00 + 9.780400000000000e-01 + 8.975000000000000e-01 + 7.941400000000000e-01 + 6.631200000000000e-01 + 5.069300000000000e-01 + 3.373600000000000e-01 + 1.714600000000000e-01 + 2.482800000000000e-02 +-9.342100000000000e-02 +-1.827200000000000e-01 +-2.508300000000000e-01 +-3.123500000000000e-01 +-3.853400000000000e-01 +-4.852000000000000e-01 +-6.170099999999999e-01 +-7.703400000000000e-01 +-9.210199999999999e-01 +-1.040400000000000e+00 +-1.107600000000000e+00 +-1.116100000000000e+00 +-1.072100000000000e+00 +-9.840300000000000e-01 +-8.546700000000000e-01 +-6.796600000000000e-01 +-4.550500000000000e-01 +-1.863500000000000e-01 + 1.084800000000000e-01 + 4.045800000000000e-01 + 6.790200000000000e-01 + 9.151899999999999e-01 + 1.099400000000000e+00 + 1.214500000000000e+00 + 1.239100000000000e+00 + 1.157000000000000e+00 + 9.719500000000000e-01 + 7.163400000000000e-01 + 4.444300000000000e-01 + 2.118900000000000e-01 + 5.290000000000000e-02 +-3.110800000000000e-02 +-6.513300000000000e-02 +-8.206400000000000e-02 +-1.044000000000000e-01 +-1.362600000000000e-01 +-1.671800000000000e-01 +-1.820000000000000e-01 +-1.698300000000000e-01 +-1.292100000000000e-01 +-7.042200000000000e-02 +-1.554600000000000e-02 + 5.269100000000000e-03 +-3.600600000000000e-02 +-1.506000000000000e-01 +-3.217400000000000e-01 +-5.064700000000000e-01 +-6.534400000000000e-01 +-7.278900000000000e-01 +-7.277600000000000e-01 +-6.793800000000000e-01 +-6.147300000000000e-01 +-5.465800000000000e-01 +-4.598900000000000e-01 +-3.263600000000000e-01 +-1.311300000000000e-01 + 1.084000000000000e-01 + 3.465800000000000e-01 + 5.338400000000000e-01 + 6.441700000000000e-01 + 6.867300000000000e-01 + 6.949900000000000e-01 + 7.030300000000000e-01 + 7.262000000000000e-01 + 7.578700000000000e-01 + 7.801399999999999e-01 + 7.771700000000000e-01 + 7.403300000000000e-01 + 6.641400000000000e-01 + 5.404300000000000e-01 + 3.592100000000000e-01 + 1.173700000000000e-01 +-1.715400000000000e-01 +-4.752400000000000e-01 +-7.516100000000000e-01 +-9.634900000000000e-01 +-1.090800000000000e+00 +-1.134000000000000e+00 +-1.109100000000000e+00 +-1.039800000000000e+00 +-9.492300000000000e-01 +-8.547700000000000e-01 +-7.633600000000000e-01 +-6.683800000000000e-01 +-5.505300000000000e-01 +-3.849900000000000e-01 +-1.537500000000000e-01 + 1.425800000000000e-01 + 4.804200000000000e-01 + 8.191500000000000e-01 + 1.114300000000000e+00 + 1.330300000000000e+00 + 1.447600000000000e+00 + 1.461500000000000e+00 + 1.378300000000000e+00 + 1.211600000000000e+00 + 9.806900000000000e-01 + 7.097200000000000e-01 + 4.247900000000000e-01 + 1.496300000000000e-01 +-9.835199999999999e-02 +-3.093400000000000e-01 +-4.796500000000000e-01 +-6.096300000000000e-01 +-7.024800000000000e-01 +-7.640100000000000e-01 +-8.013900000000000e-01 +-8.204100000000000e-01 +-8.226300000000000e-01 +-8.054600000000000e-01 +-7.656900000000000e-01 +-7.037800000000000e-01 +-6.246400000000000e-01 +-5.330600000000000e-01 +-4.274800000000000e-01 +-2.985000000000000e-01 +-1.359000000000000e-01 + 5.933800000000000e-02 + 2.672200000000000e-01 + 4.528800000000000e-01 + 5.825000000000000e-01 + 6.412900000000000e-01 + 6.411000000000000e-01 + 6.122000000000000e-01 + 5.842200000000000e-01 + 5.690000000000000e-01 + 5.560000000000000e-01 + 5.214299999999999e-01 + 4.436900000000000e-01 + 3.148500000000000e-01 + 1.434000000000000e-01 +-5.005900000000000e-02 +-2.389100000000000e-01 +-3.957100000000000e-01 +-4.971700000000000e-01 +-5.304300000000000e-01 +-4.989400000000000e-01 +-4.232200000000000e-01 +-3.331500000000000e-01 +-2.541600000000000e-01 +-1.953900000000000e-01 +-1.475200000000000e-01 +-9.151300000000000e-02 +-1.154900000000000e-02 + 9.691400000000000e-02 + 2.279200000000000e-01 + 3.706200000000000e-01 + 5.123300000000000e-01 + 6.358000000000000e-01 + 7.154000000000000e-01 + 7.203400000000000e-01 + 6.277100000000000e-01 + 4.387300000000000e-01 + 1.858100000000000e-01 +-7.741900000000000e-02 +-2.986100000000000e-01 +-4.479200000000000e-01 +-5.250000000000000e-01 +-5.496799999999999e-01 +-5.464100000000000e-01 +-5.343599999999999e-01 +-5.275600000000000e-01 +-5.380800000000000e-01 +-5.729600000000000e-01 +-6.237800000000000e-01 +-6.589600000000000e-01 +-6.316200000000000e-01 +-5.046600000000000e-01 +-2.786600000000000e-01 +-6.620200000000000e-04 + 2.570100000000000e-01 + 4.371600000000000e-01 + 5.300200000000000e-01 + 5.737700000000000e-01 + 6.218700000000000e-01 + 7.006100000000000e-01 + 7.879699999999999e-01 + 8.287700000000000e-01 + 7.746800000000000e-01 + 6.193700000000000e-01 + 4.043500000000000e-01 + 1.939700000000000e-01 + 3.962600000000000e-02 +-4.154300000000000e-02 +-6.291900000000000e-02 +-4.906400000000000e-02 +-1.969100000000000e-02 + 1.185900000000000e-02 + 3.024400000000000e-02 + 1.373300000000000e-02 +-5.751400000000000e-02 +-1.857600000000000e-01 +-3.472300000000000e-01 +-5.011600000000000e-01 +-6.122000000000000e-01 +-6.697600000000000e-01 +-6.893899999999999e-01 +-6.948000000000000e-01 +-6.947900000000000e-01 +-6.731600000000000e-01 +-5.995400000000000e-01 +-4.528900000000000e-01 +-2.400100000000000e-01 + 4.103800000000000e-03 + 2.334200000000000e-01 + 4.128600000000000e-01 + 5.308500000000000e-01 + 5.966600000000000e-01 + 6.279000000000000e-01 + 6.385600000000000e-01 + 6.346800000000000e-01 + 6.172700000000000e-01 + 5.872900000000000e-01 + 5.477000000000000e-01 + 5.017400000000000e-01 + 4.500900000000000e-01 + 3.896300000000000e-01 + 3.146500000000000e-01 + 2.194900000000000e-01 + 1.008000000000000e-01 +-4.100600000000000e-02 +-2.012200000000000e-01 +-3.713100000000000e-01 +-5.400600000000000e-01 +-6.950600000000000e-01 +-8.233400000000000e-01 +-9.108400000000000e-01 +-9.424200000000000e-01 +-9.044800000000000e-01 +-7.914200000000000e-01 +-6.128400000000001e-01 +-3.954500000000000e-01 +-1.755400000000000e-01 + 1.625500000000000e-02 + 1.688400000000000e-01 + 2.931200000000000e-01 + 4.098900000000000e-01 + 5.306000000000000e-01 + 6.451000000000000e-01 + 7.262700000000000e-01 + 7.489600000000000e-01 + 7.094400000000000e-01 + 6.298400000000000e-01 + 5.434800000000000e-01 + 4.716500000000000e-01 + 4.094600000000000e-01 + 3.321800000000000e-01 + 2.174000000000000e-01 + 6.631400000000000e-02 +-9.262100000000000e-02 +-2.205400000000000e-01 +-2.933300000000000e-01 +-3.164200000000000e-01 +-3.188200000000000e-01 +-3.313700000000000e-01 +-3.654800000000000e-01 +-4.072000000000000e-01 +-4.296700000000000e-01 +-4.136200000000000e-01 +-3.611400000000000e-01 +-2.938200000000000e-01 +-2.382200000000000e-01 +-2.095600000000000e-01 +-2.042400000000000e-01 +-2.047400000000000e-01 +-1.920500000000000e-01 +-1.568400000000000e-01 +-1.029600000000000e-01 +-4.237000000000000e-02 + 1.402300000000000e-02 + 6.339300000000000e-02 + 1.114500000000000e-01 + 1.663500000000000e-01 + 2.304400000000000e-01 + 2.958200000000000e-01 + 3.476900000000000e-01 + 3.741200000000000e-01 + 3.754400000000000e-01 + 3.658600000000000e-01 + 3.642100000000000e-01 + 3.793300000000000e-01 + 4.004600000000000e-01 + 4.013200000000000e-01 + 3.565900000000000e-01 + 2.597800000000000e-01 + 1.291100000000000e-01 +-3.961600000000000e-03 +-1.156400000000000e-01 +-2.041500000000000e-01 +-2.858700000000000e-01 +-3.757900000000000e-01 +-4.678600000000000e-01 +-5.318700000000000e-01 +-5.311900000000001e-01 +-4.492300000000000e-01 +-3.044500000000000e-01 +-1.423300000000000e-01 +-9.894200000000001e-03 + 6.855400000000000e-02 + 9.721600000000000e-02 + 9.442399999999999e-02 + 7.226600000000000e-02 + 2.836300000000000e-02 +-4.353300000000000e-02 +-1.345200000000000e-01 +-2.118000000000000e-01 +-2.311600000000000e-01 +-1.643400000000000e-01 +-2.130800000000000e-02 + 1.500800000000000e-01 + 2.886400000000000e-01 + 3.526200000000000e-01 + 3.389000000000000e-01 + 2.770900000000000e-01 + 2.052500000000000e-01 + 1.456500000000000e-01 + 9.712000000000000e-02 + 4.654400000000000e-02 +-1.170800000000000e-02 +-6.451400000000000e-02 +-8.531400000000000e-02 +-5.195700000000000e-02 + 3.552600000000000e-02 + 1.492000000000000e-01 + 2.433400000000000e-01 + 2.746500000000000e-01 + 2.220000000000000e-01 + 9.573800000000000e-02 +-6.721500000000000e-02 +-2.200300000000000e-01 +-3.262700000000000e-01 +-3.742800000000000e-01 +-3.785800000000000e-01 +-3.676100000000000e-01 +-3.646300000000000e-01 +-3.728300000000000e-01 +-3.736900000000000e-01 +-3.394700000000000e-01 +-2.514100000000000e-01 +-1.117000000000000e-01 + 5.874800000000000e-02 + 2.340400000000000e-01 + 3.978300000000000e-01 + 5.474900000000000e-01 + 6.850900000000000e-01 + 8.028000000000000e-01 + 8.751400000000000e-01 + 8.657600000000000e-01 + 7.461800000000000e-01 + 5.147400000000000e-01 + 2.036900000000000e-01 +-1.300300000000000e-01 +-4.251300000000000e-01 +-6.362300000000000e-01 +-7.450000000000000e-01 +-7.593400000000000e-01 +-7.043400000000000e-01 +-6.109400000000000e-01 +-5.066700000000000e-01 +-4.102000000000000e-01 +-3.293700000000000e-01 +-2.626800000000000e-01 +-2.035600000000000e-01 +-1.462500000000000e-01 +-9.054600000000000e-02 +-4.284800000000000e-02 +-1.267900000000000e-02 +-6.526100000000000e-03 +-2.259100000000000e-02 +-4.940600000000000e-02 +-6.893400000000000e-02 +-6.235000000000000e-02 +-1.571600000000000e-02 + 7.656600000000000e-02 + 2.112200000000000e-01 + 3.779000000000000e-01 + 5.619900000000000e-01 + 7.469800000000000e-01 + 9.153300000000000e-01 + 1.047800000000000e+00 + 1.123100000000000e+00 + 1.119600000000000e+00 + 1.021900000000000e+00 + 8.284100000000000e-01 + 5.578000000000000e-01 + 2.462800000000000e-01 +-6.328200000000000e-02 +-3.369900000000000e-01 +-5.611500000000000e-01 +-7.425200000000000e-01 +-8.974700000000000e-01 +-1.037800000000000e+00 +-1.162600000000000e+00 +-1.260500000000000e+00 +-1.319200000000000e+00 +-1.332800000000000e+00 +-1.301500000000000e+00 +-1.224000000000000e+00 +-1.090700000000000e+00 +-8.857800000000000e-01 +-5.988000000000000e-01 +-2.375800000000000e-01 + 1.664600000000000e-01 + 5.657500000000000e-01 + 9.125100000000000e-01 + 1.173500000000000e+00 + 1.335600000000000e+00 + 1.402700000000000e+00 + 1.387400000000000e+00 + 1.306200000000000e+00 + 1.177500000000000e+00 + 1.021200000000000e+00 + 8.546500000000000e-01 + 6.876400000000000e-01 + 5.193500000000000e-01 + 3.421400000000000e-01 + 1.506800000000000e-01 +-4.984600000000000e-02 +-2.428300000000000e-01 +-4.077800000000000e-01 +-5.302600000000000e-01 +-6.066500000000000e-01 +-6.405400000000000e-01 +-6.351400000000000e-01 +-5.898099999999999e-01 +-5.048300000000000e-01 +-3.907100000000000e-01 +-2.731500000000000e-01 +-1.869800000000000e-01 +-1.612200000000000e-01 +-2.048500000000000e-01 +-3.033000000000000e-01 +-4.275200000000000e-01 +-5.485000000000000e-01 +-6.463800000000000e-01 +-7.087500000000000e-01 +-7.224800000000000e-01 +-6.693100000000000e-01 +-5.318400000000000e-01 +-3.076400000000000e-01 +-2.060200000000000e-02 + 2.812900000000000e-01 + 5.433700000000000e-01 + 7.277500000000000e-01 + 8.283300000000000e-01 + 8.678600000000000e-01 + 8.791600000000001e-01 + 8.827199999999999e-01 + 8.749300000000000e-01 + 8.341300000000000e-01 + 7.397500000000000e-01 + 5.917400000000000e-01 + 4.169700000000000e-01 + 2.574500000000000e-01 + 1.467900000000000e-01 + 8.880200000000001e-02 + 5.235300000000000e-02 +-1.264100000000000e-02 +-1.457100000000000e-01 +-3.495100000000000e-01 +-5.829400000000000e-01 +-7.793300000000000e-01 +-8.802200000000000e-01 +-8.651500000000000e-01 +-7.598000000000000e-01 +-6.180000000000000e-01 +-4.897300000000000e-01 +-3.955800000000000e-01 +-3.231600000000000e-01 +-2.450500000000000e-01 +-1.437000000000000e-01 +-2.489600000000000e-02 + 8.828600000000000e-02 + 1.742100000000000e-01 + 2.281800000000000e-01 + 2.626800000000000e-01 + 2.937500000000000e-01 + 3.258200000000000e-01 + 3.482900000000000e-01 + 3.465700000000000e-01 + 3.179000000000000e-01 + 2.780300000000000e-01 + 2.525300000000000e-01 + 2.593200000000000e-01 + 2.962900000000000e-01 + 3.439500000000000e-01 + 3.803100000000000e-01 + 3.953800000000000e-01 + 3.932100000000000e-01 + 3.801100000000000e-01 + 3.499900000000000e-01 + 2.806500000000000e-01 + 1.462400000000000e-01 +-6.244300000000000e-02 +-3.254800000000000e-01 +-5.995500000000000e-01 +-8.387800000000000e-01 +-1.016000000000000e+00 +-1.129700000000000e+00 +-1.192800000000000e+00 +-1.213700000000000e+00 +-1.184700000000000e+00 +-1.086400000000000e+00 +-9.040899999999999e-01 +-6.426100000000000e-01 +-3.270800000000000e-01 + 9.888900000000001e-03 + 3.448100000000000e-01 + 6.704200000000000e-01 + 9.885900000000000e-01 + 1.295600000000000e+00 + 1.572200000000000e+00 + 1.786700000000000e+00 + 1.908700000000000e+00 + 1.921900000000000e+00 + 1.827400000000000e+00 + 1.636100000000000e+00 + 1.358800000000000e+00 + 1.003700000000000e+00 + 5.841499999999999e-01 + 1.287700000000000e-01 +-3.174300000000000e-01 +-7.067600000000001e-01 +-1.010400000000000e+00 +-1.232400000000000e+00 +-1.404600000000000e+00 +-1.563400000000000e+00 +-1.722400000000000e+00 +-1.861200000000000e+00 +-1.937000000000000e+00 +-1.912300000000000e+00 +-1.778800000000000e+00 +-1.562000000000000e+00 +-1.302800000000000e+00 +-1.032600000000000e+00 +-7.575400000000000e-01 +-4.628200000000000e-01 +-1.324000000000000e-01 + 2.330400000000000e-01 + 6.119599999999999e-01 + 9.733100000000000e-01 + 1.292500000000000e+00 + 1.559500000000000e+00 + 1.773900000000000e+00 + 1.934200000000000e+00 + 2.030100000000000e+00 + 2.046600000000000e+00 + 1.973500000000000e+00 + 1.813200000000000e+00 + 1.579000000000000e+00 + 1.287400000000000e+00 + 9.517300000000000e-01 + 5.825000000000000e-01 + 1.948900000000000e-01 +-1.868300000000000e-01 +-5.334100000000001e-01 +-8.223900000000000e-01 +-1.048200000000000e+00 +-1.221400000000000e+00 +-1.355800000000000e+00 +-1.453900000000000e+00 +-1.502300000000000e+00 +-1.481800000000000e+00 +-1.386100000000000e+00 +-1.233900000000000e+00 +-1.063000000000000e+00 +-9.112400000000000e-01 +-7.948100000000000e-01 +-7.007800000000000e-01 +-5.974500000000000e-01 +-4.552500000000000e-01 +-2.640000000000000e-01 +-3.696500000000000e-02 + 1.980200000000000e-01 + 4.119700000000000e-01 + 5.844300000000000e-01 + 7.065600000000000e-01 + 7.802100000000000e-01 + 8.163600000000000e-01 + 8.325900000000001e-01 + 8.475000000000000e-01 + 8.716600000000000e-01 + 8.997300000000000e-01 + 9.108700000000000e-01 + 8.801600000000001e-01 + 7.957500000000000e-01 + 6.701000000000000e-01 + 5.362100000000000e-01 + 4.294600000000000e-01 + 3.663100000000000e-01 + 3.340300000000000e-01 + 2.983300000000000e-01 + 2.233700000000000e-01 + 9.083500000000000e-02 +-9.355800000000000e-02 +-3.077900000000000e-01 +-5.276200000000000e-01 +-7.361600000000000e-01 +-9.238800000000000e-01 +-1.082000000000000e+00 +-1.197000000000000e+00 +-1.251700000000000e+00 +-1.231700000000000e+00 +-1.132300000000000e+00 +-9.607300000000000e-01 +-7.330600000000000e-01 +-4.688600000000000e-01 +-1.877800000000000e-01 + 9.080700000000000e-02 + 3.468600000000000e-01 + 5.599600000000000e-01 + 7.121800000000000e-01 + 7.921899999999999e-01 + 7.986500000000000e-01 + 7.409100000000000e-01 + 6.369600000000000e-01 + 5.092600000000000e-01 + 3.798700000000000e-01 + 2.664800000000000e-01 + 1.804000000000000e-01 + 1.267200000000000e-01 + 1.055300000000000e-01 + 1.122200000000000e-01 + 1.359400000000000e-01 + 1.580400000000000e-01 + 1.544600000000000e-01 + 1.047300000000000e-01 + 5.226600000000000e-03 +-1.214700000000000e-01 +-2.301400000000000e-01 +-2.720100000000000e-01 +-2.208200000000000e-01 +-9.049000000000000e-02 + 6.875400000000000e-02 + 1.952500000000000e-01 + 2.473500000000000e-01 + 2.214900000000000e-01 + 1.461200000000000e-01 + 5.738000000000000e-02 +-2.478200000000000e-02 +-1.032200000000000e-01 +-1.902600000000000e-01 +-2.876800000000000e-01 +-3.779700000000000e-01 +-4.348000000000000e-01 +-4.438400000000000e-01 +-4.162100000000000e-01 +-3.820900000000000e-01 +-3.683500000000000e-01 +-3.772800000000000e-01 +-3.835700000000000e-01 +-3.524600000000000e-01 +-2.659400000000000e-01 +-1.374800000000000e-01 +-4.602400000000000e-03 + 9.486400000000000e-02 + 1.457300000000000e-01 + 1.621100000000000e-01 + 1.750500000000000e-01 + 2.116100000000000e-01 + 2.798500000000000e-01 + 3.678800000000000e-01 + 4.540700000000000e-01 + 5.193600000000000e-01 + 5.537600000000000e-01 + 5.557200000000000e-01 + 5.284300000000000e-01 + 4.774900000000000e-01 + 4.109300000000000e-01 + 3.395100000000000e-01 + 2.748900000000000e-01 + 2.255300000000000e-01 + 1.924800000000000e-01 + 1.675300000000000e-01 + 1.350000000000000e-01 + 7.682400000000000e-02 +-2.018600000000000e-02 +-1.570700000000000e-01 +-3.184300000000000e-01 +-4.746600000000000e-01 +-5.919700000000000e-01 +-6.470200000000000e-01 +-6.385100000000000e-01 +-5.877400000000000e-01 +-5.263500000000000e-01 +-4.780600000000000e-01 +-4.465500000000000e-01 +-4.178600000000000e-01 +-3.754100000000000e-01 +-3.157800000000000e-01 +-2.526100000000000e-01 +-2.052600000000000e-01 +-1.810500000000000e-01 +-1.660500000000000e-01 +-1.324500000000000e-01 +-5.782100000000000e-02 + 5.850100000000000e-02 + 1.946200000000000e-01 + 3.212500000000000e-01 + 4.208200000000000e-01 + 4.960000000000000e-01 + 5.618200000000000e-01 + 6.289600000000000e-01 + 6.918700000000000e-01 + 7.304300000000000e-01 + 7.227700000000000e-01 + 6.585800000000001e-01 + 5.439700000000000e-01 + 3.969700000000000e-01 + 2.396500000000000e-01 + 9.294100000000000e-02 +-2.583400000000000e-02 +-1.063300000000000e-01 +-1.512200000000000e-01 +-1.799500000000000e-01 +-2.224500000000000e-01 +-3.010300000000000e-01 +-4.100600000000000e-01 +-5.096700000000000e-01 +-5.436700000000000e-01 +-4.744200000000000e-01 +-3.123600000000000e-01 +-1.175600000000000e-01 + 3.159000000000000e-02 + 8.398600000000001e-02 + 4.496800000000000e-02 +-3.125900000000000e-02 +-8.101800000000001e-02 +-7.499599999999999e-02 +-3.642100000000000e-02 +-2.219600000000000e-02 +-8.166500000000000e-02 +-2.220000000000000e-01 +-4.024300000000000e-01 +-5.580900000000000e-01 +-6.349600000000000e-01 +-6.129599999999999e-01 +-5.063000000000000e-01 +-3.468100000000000e-01 +-1.651900000000000e-01 + 1.815400000000000e-02 + 1.915500000000000e-01 + 3.465500000000000e-01 + 4.754200000000000e-01 + 5.730800000000000e-01 + 6.397200000000000e-01 + 6.804600000000000e-01 + 7.018700000000000e-01 + 7.087100000000000e-01 + 7.032200000000000e-01 + 6.866700000000000e-01 + 6.601500000000000e-01 + 6.231100000000001e-01 + 5.709500000000000e-01 + 4.949000000000000e-01 + 3.858200000000000e-01 + 2.397600000000000e-01 + 6.130200000000000e-02 +-1.381200000000000e-01 +-3.452800000000000e-01 +-5.496900000000000e-01 +-7.440400000000000e-01 +-9.208300000000000e-01 +-1.068700000000000e+00 +-1.171700000000000e+00 +-1.213100000000000e+00 +-1.180200000000000e+00 +-1.069400000000000e+00 +-8.881000000000000e-01 +-6.543600000000001e-01 +-3.943400000000000e-01 +-1.371300000000000e-01 + 9.264100000000000e-02 + 2.821000000000000e-01 + 4.332000000000000e-01 + 5.583500000000000e-01 + 6.704300000000000e-01 + 7.731300000000000e-01 + 8.590300000000000e-01 + 9.167600000000000e-01 + 9.416300000000000e-01 + 9.401300000000000e-01 + 9.234300000000000e-01 + 8.940800000000000e-01 + 8.376800000000000e-01 + 7.284400000000000e-01 + 5.475100000000001e-01 + 3.013700000000000e-01 + 2.597600000000000e-02 +-2.285700000000000e-01 +-4.236000000000000e-01 +-5.507300000000001e-01 +-6.315800000000000e-01 +-6.997800000000000e-01 +-7.788900000000000e-01 +-8.710900000000000e-01 +-9.616100000000000e-01 +-1.031600000000000e+00 +-1.067600000000000e+00 +-1.060500000000000e+00 +-9.996699999999999e-01 +-8.699600000000000e-01 +-6.593200000000000e-01 +-3.711700000000000e-01 +-3.184400000000000e-02 + 3.149200000000000e-01 + 6.244300000000000e-01 + 8.678500000000000e-01 + 1.038500000000000e+00 + 1.145000000000000e+00 + 1.198300000000000e+00 + 1.202500000000000e+00 + 1.155000000000000e+00 + 1.053000000000000e+00 + 8.995200000000000e-01 + 7.027800000000000e-01 + 4.724900000000000e-01 + 2.170100000000000e-01 +-5.411300000000000e-02 +-3.244400000000000e-01 +-5.677000000000000e-01 +-7.523100000000000e-01 +-8.523300000000000e-01 +-8.587300000000000e-01 +-7.842100000000000e-01 +-6.588100000000000e-01 +-5.188199999999999e-01 +-3.947600000000000e-01 +-3.032100000000000e-01 +-2.450500000000000e-01 +-2.095900000000000e-01 +-1.825300000000000e-01 +-1.541000000000000e-01 +-1.232500000000000e-01 +-9.498200000000000e-02 +-7.197199999999999e-02 +-4.617600000000000e-02 + 1.733500000000000e-03 + 9.165600000000000e-02 + 2.272700000000000e-01 + 3.852400000000000e-01 + 5.211500000000000e-01 + 5.917400000000000e-01 + 5.805100000000000e-01 + 5.083200000000000e-01 + 4.196700000000000e-01 + 3.525900000000000e-01 + 3.127900000000000e-01 + 2.711600000000000e-01 + 1.871900000000000e-01 + 4.166100000000000e-02 +-1.448800000000000e-01 +-3.212900000000000e-01 +-4.356600000000000e-01 +-4.644500000000000e-01 +-4.214500000000000e-01 +-3.432100000000000e-01 +-2.643400000000000e-01 +-2.011600000000000e-01 +-1.527600000000000e-01 +-1.137200000000000e-01 +-8.462900000000000e-02 +-7.189500000000000e-02 +-7.901400000000000e-02 +-9.943399999999999e-02 +-1.181900000000000e-01 +-1.204300000000000e-01 +-9.857500000000000e-02 +-5.204900000000000e-02 + 1.810300000000000e-02 + 1.116800000000000e-01 + 2.240400000000000e-01 + 3.373500000000000e-01 + 4.191400000000000e-01 + 4.347800000000000e-01 + 3.690000000000000e-01 + 2.409300000000000e-01 + 9.941000000000000e-02 +-1.838400000000000e-03 +-3.390500000000000e-02 +-7.387100000000000e-03 + 3.753900000000000e-02 + 5.800200000000000e-02 + 3.340400000000000e-02 +-2.718800000000000e-02 +-9.672400000000000e-02 +-1.491700000000000e-01 +-1.715600000000000e-01 +-1.635900000000000e-01 +-1.302700000000000e-01 +-7.689000000000000e-02 +-1.046800000000000e-02 + 5.669500000000000e-02 + 1.082000000000000e-01 + 1.311900000000000e-01 + 1.244800000000000e-01 + 9.928500000000000e-02 + 7.038700000000001e-02 + 4.445900000000000e-02 + 1.550700000000000e-02 +-2.845900000000000e-02 +-9.320400000000000e-02 +-1.712600000000000e-01 +-2.464100000000000e-01 +-3.056700000000000e-01 +-3.479300000000000e-01 +-3.813000000000000e-01 +-4.114700000000000e-01 +-4.317800000000000e-01 +-4.247800000000000e-01 +-3.750100000000000e-01 +-2.825900000000000e-01 +-1.658500000000000e-01 +-5.003000000000000e-02 + 4.938400000000000e-02 + 1.354600000000000e-01 + 2.240500000000000e-01 + 3.283100000000000e-01 + 4.458600000000000e-01 + 5.577000000000000e-01 + 6.385400000000000e-01 + 6.695600000000000e-01 + 6.451400000000000e-01 + 5.713400000000000e-01 + 4.611700000000000e-01 + 3.318900000000000e-01 + 2.045900000000000e-01 + 1.021200000000000e-01 + 4.206000000000000e-02 + 2.783800000000000e-02 + 4.534900000000000e-02 + 6.987500000000001e-02 + 7.987900000000001e-02 + 6.746700000000000e-02 + 3.708700000000000e-02 +-6.148500000000000e-03 +-6.750700000000000e-02 +-1.615000000000000e-01 +-2.971900000000000e-01 +-4.613000000000000e-01 +-6.146200000000001e-01 +-7.082200000000000e-01 +-7.103000000000000e-01 +-6.252500000000000e-01 +-4.910200000000000e-01 +-3.565700000000000e-01 +-2.552700000000000e-01 +-1.919100000000000e-01 +-1.493800000000000e-01 +-1.068200000000000e-01 +-5.443700000000000e-02 + 3.845600000000000e-03 + 5.732100000000000e-02 + 9.599000000000001e-02 + 1.125700000000000e-01 + 1.010800000000000e-01 + 5.831800000000000e-02 +-9.632699999999999e-03 +-8.160800000000000e-02 +-1.249600000000000e-01 +-1.107500000000000e-01 +-3.158800000000000e-02 + 9.180500000000000e-02 + 2.226500000000000e-01 + 3.313200000000000e-01 + 4.123600000000000e-01 + 4.820400000000000e-01 + 5.581700000000001e-01 + 6.393300000000000e-01 + 7.010700000000000e-01 + 7.132800000000000e-01 + 6.647800000000000e-01 + 5.746200000000000e-01 + 4.801500000000000e-01 + 4.104600000000000e-01 + 3.658800000000000e-01 + 3.189900000000000e-01 + 2.352100000000000e-01 + 9.602400000000000e-02 +-9.224100000000000e-02 +-3.075800000000000e-01 +-5.275000000000000e-01 +-7.351700000000000e-01 +-9.126100000000000e-01 +-1.031500000000000e+00 +-1.056400000000000e+00 +-9.647500000000000e-01 +-7.696400000000000e-01 +-5.267300000000000e-01 +-3.131500000000000e-01 +-1.893400000000000e-01 +-1.681200000000000e-01 +-2.119900000000000e-01 +-2.601700000000000e-01 +-2.658200000000000e-01 +-2.182700000000000e-01 +-1.377000000000000e-01 +-5.044900000000000e-02 + 3.390700000000000e-02 + 1.269000000000000e-01 + 2.463000000000000e-01 + 3.959000000000000e-01 + 5.561700000000001e-01 + 6.917700000000000e-01 + 7.694299999999999e-01 + 7.733800000000000e-01 + 7.100400000000000e-01 + 6.020700000000000e-01 + 4.776400000000000e-01 + 3.606100000000000e-01 + 2.639000000000000e-01 + 1.864500000000000e-01 + 1.148000000000000e-01 + 3.054800000000000e-02 +-7.742599999999999e-02 +-2.019800000000000e-01 +-3.158900000000000e-01 +-3.830800000000000e-01 +-3.778500000000000e-01 +-3.004700000000000e-01 +-1.787100000000000e-01 +-5.420700000000000e-02 + 3.721200000000000e-02 + 7.887500000000000e-02 + 7.398399999999999e-02 + 3.716600000000000e-02 +-1.448800000000000e-02 +-6.529200000000000e-02 +-1.014400000000000e-01 +-1.135400000000000e-01 +-1.028700000000000e-01 +-8.610700000000000e-02 +-9.036100000000000e-02 +-1.370900000000000e-01 +-2.241200000000000e-01 +-3.203100000000000e-01 +-3.803200000000000e-01 +-3.720700000000000e-01 +-2.979600000000000e-01 +-1.936200000000000e-01 +-1.043600000000000e-01 +-5.633900000000000e-02 +-4.371100000000000e-02 +-4.042800000000000e-02 +-2.545000000000000e-02 + 1.159400000000000e-04 + 1.816600000000000e-02 + 1.606600000000000e-02 + 6.483600000000000e-03 + 2.632900000000000e-02 + 1.135300000000000e-01 + 2.785700000000000e-01 + 4.922200000000000e-01 + 6.984700000000000e-01 + 8.425600000000000e-01 + 8.943100000000000e-01 + 8.530500000000000e-01 + 7.360100000000001e-01 + 5.638500000000000e-01 + 3.549700000000000e-01 + 1.288300000000000e-01 +-9.110600000000001e-02 +-2.827300000000000e-01 +-4.366200000000000e-01 +-5.618800000000000e-01 +-6.775099999999999e-01 +-7.930100000000000e-01 +-8.933400000000000e-01 +-9.425900000000000e-01 +-9.069400000000000e-01 +-7.809600000000000e-01 +-5.966700000000000e-01 +-4.067900000000000e-01 +-2.531100000000000e-01 +-1.426300000000000e-01 +-4.840700000000000e-02 + 6.634000000000000e-02 + 2.191700000000000e-01 + 3.949900000000000e-01 + 5.559600000000000e-01 + 6.651000000000000e-01 + 7.063000000000000e-01 + 6.888200000000000e-01 + 6.373900000000000e-01 + 5.779500000000000e-01 + 5.281400000000001e-01 + 4.944200000000000e-01 + 4.723400000000000e-01 + 4.469500000000000e-01 + 3.955000000000000e-01 + 2.956000000000000e-01 + 1.378100000000000e-01 +-6.487600000000000e-02 +-2.796200000000000e-01 +-4.693600000000000e-01 +-6.118900000000000e-01 +-7.081600000000000e-01 +-7.729300000000000e-01 +-8.148600000000000e-01 +-8.228799999999999e-01 +-7.712599999999999e-01 +-6.408500000000000e-01 +-4.395800000000000e-01 +-2.048000000000000e-01 + 1.639500000000000e-02 + 1.943900000000000e-01 + 3.311000000000000e-01 + 4.498400000000000e-01 + 5.693900000000000e-01 + 6.829600000000000e-01 + 7.587200000000000e-01 + 7.609900000000001e-01 + 6.750000000000000e-01 + 5.162200000000000e-01 + 3.183800000000000e-01 + 1.118100000000000e-01 +-8.969400000000000e-02 +-2.840500000000000e-01 +-4.646900000000000e-01 +-6.093700000000000e-01 +-6.859600000000000e-01 +-6.720600000000000e-01 +-5.735100000000000e-01 +-4.266600000000000e-01 +-2.817200000000000e-01 +-1.778800000000000e-01 +-1.261400000000000e-01 +-1.088600000000000e-01 +-9.335499999999999e-02 +-4.916000000000000e-02 + 3.987700000000000e-02 + 1.715500000000000e-01 + 3.269100000000000e-01 + 4.753600000000000e-01 + 5.832100000000000e-01 + 6.258400000000000e-01 + 5.995800000000000e-01 + 5.258699999999999e-01 + 4.417600000000000e-01 + 3.797300000000000e-01 + 3.486400000000000e-01 + 3.293600000000000e-01 + 2.895900000000000e-01 + 2.082900000000000e-01 + 9.220000000000000e-02 +-2.809100000000000e-02 +-1.201900000000000e-01 +-1.737600000000000e-01 +-2.085000000000000e-01 +-2.600800000000000e-01 +-3.545200000000000e-01 +-4.892500000000000e-01 +-6.332900000000000e-01 +-7.446500000000000e-01 +-7.911899999999999e-01 +-7.614800000000000e-01 +-6.620700000000000e-01 +-5.087400000000000e-01 +-3.216100000000000e-01 +-1.271300000000000e-01 + 3.938300000000000e-02 + 1.395800000000000e-01 + 1.482100000000000e-01 + 7.064100000000000e-02 +-5.202900000000000e-02 +-1.576400000000000e-01 +-1.915900000000000e-01 +-1.327000000000000e-01 +-4.479200000000000e-04 + 1.609300000000000e-01 + 3.105600000000000e-01 + 4.331800000000000e-01 + 5.417000000000000e-01 + 6.599100000000000e-01 + 7.979300000000000e-01 + 9.372500000000000e-01 + 1.035200000000000e+00 + 1.046800000000000e+00 + 9.492400000000000e-01 + 7.563400000000000e-01 + 5.119200000000000e-01 + 2.678700000000000e-01 + 5.899900000000000e-02 +-1.105500000000000e-01 +-2.619400000000000e-01 +-4.214700000000000e-01 +-5.986700000000000e-01 +-7.764700000000000e-01 +-9.191100000000000e-01 +-9.920600000000001e-01 +-9.804700000000000e-01 +-8.950100000000000e-01 +-7.628000000000000e-01 +-6.119100000000000e-01 +-4.606300000000000e-01 +-3.176100000000000e-01 +-1.889700000000000e-01 +-8.315300000000000e-02 +-7.623300000000000e-03 + 3.989700000000000e-02 + 7.604700000000000e-02 + 1.250900000000000e-01 + 2.031100000000000e-01 + 3.045400000000000e-01 + 4.023300000000000e-01 + 4.634300000000000e-01 + 4.687600000000000e-01 + 4.228400000000000e-01 + 3.461700000000000e-01 + 2.575300000000000e-01 + 1.616500000000000e-01 + 5.302000000000000e-02 +-6.784999999999999e-02 +-1.811100000000000e-01 +-2.512600000000000e-01 +-2.478900000000000e-01 +-1.679000000000000e-01 +-4.068700000000000e-02 + 8.972500000000000e-02 + 1.928400000000000e-01 + 2.679800000000000e-01 + 3.355300000000000e-01 + 4.102200000000000e-01 + 4.793300000000000e-01 + 5.054900000000000e-01 + 4.544900000000000e-01 + 3.270000000000000e-01 + 1.682200000000000e-01 + 4.505000000000000e-02 + 5.256600000000000e-03 + 4.735300000000000e-02 + 1.225700000000000e-01 + 1.666400000000000e-01 + 1.381000000000000e-01 + 3.675300000000000e-02 +-1.070500000000000e-01 +-2.598500000000000e-01 +-4.061100000000000e-01 +-5.484000000000000e-01 +-6.910100000000000e-01 +-8.239800000000000e-01 +-9.221300000000000e-01 +-9.592400000000000e-01 +-9.243900000000000e-01 +-8.270400000000000e-01 +-6.882100000000000e-01 +-5.271700000000000e-01 +-3.551900000000000e-01 +-1.797600000000000e-01 +-1.148600000000000e-02 + 1.360500000000000e-01 + 2.554900000000000e-01 + 3.551100000000000e-01 + 4.571200000000000e-01 + 5.824800000000000e-01 + 7.326000000000000e-01 + 8.833400000000000e-01 + 9.980900000000000e-01 + 1.050900000000000e+00 + 1.041400000000000e+00 + 9.893700000000000e-01 + 9.122700000000000e-01 + 8.062500000000000e-01 + 6.467800000000000e-01 + 4.111900000000000e-01 + 1.060900000000000e-01 +-2.229600000000000e-01 +-5.089900000000001e-01 +-6.973000000000000e-01 +-7.715600000000000e-01 +-7.546200000000000e-01 +-6.859900000000000e-01 +-5.947800000000000e-01 +-4.882700000000000e-01 +-3.617400000000000e-01 +-2.171900000000000e-01 +-7.292800000000001e-02 + 4.439000000000000e-02 + 1.169500000000000e-01 + 1.455100000000000e-01 + 1.421300000000000e-01 + 1.121900000000000e-01 + 4.306600000000000e-02 +-8.783500000000000e-02 +-2.894300000000000e-01 +-5.361399999999999e-01 +-7.684700000000000e-01 +-9.184099999999999e-01 +-9.435300000000000e-01 +-8.464300000000000e-01 +-6.664400000000000e-01 +-4.503800000000000e-01 +-2.240900000000000e-01 + 1.552400000000000e-02 + 2.842800000000000e-01 + 5.847200000000000e-01 + 8.905300000000000e-01 + 1.152600000000000e+00 + 1.321700000000000e+00 + 1.370800000000000e+00 + 1.303900000000000e+00 + 1.146700000000000e+00 + 9.300400000000000e-01 + 6.768700000000000e-01 + 4.004600000000000e-01 + 1.115600000000000e-01 +-1.737700000000000e-01 +-4.317300000000000e-01 +-6.351500000000000e-01 +-7.608600000000000e-01 +-7.961500000000000e-01 +-7.423300000000000e-01 +-6.155400000000000e-01 +-4.452300000000000e-01 +-2.698100000000000e-01 +-1.284400000000000e-01 +-5.016400000000000e-02 +-4.417000000000000e-02 +-9.619200000000000e-02 +-1.739500000000000e-01 +-2.401400000000000e-01 +-2.672800000000000e-01 +-2.474300000000000e-01 +-1.922700000000000e-01 +-1.242600000000000e-01 +-6.368900000000000e-02 +-1.897900000000000e-02 + 1.492400000000000e-02 + 4.971100000000000e-02 + 9.335200000000000e-02 + 1.434600000000000e-01 + 1.892300000000000e-01 + 2.209500000000000e-01 + 2.398000000000000e-01 + 2.596300000000000e-01 + 2.971800000000000e-01 + 3.561200000000000e-01 + 4.165600000000000e-01 + 4.397800000000000e-01 + 3.883300000000000e-01 + 2.500000000000000e-01 + 4.970600000000000e-02 +-1.598700000000000e-01 +-3.240900000000000e-01 +-4.123600000000000e-01 +-4.280800000000000e-01 +-3.976700000000000e-01 +-3.487000000000000e-01 +-2.939300000000000e-01 +-2.319900000000000e-01 +-1.612300000000000e-01 +-9.289600000000001e-02 +-5.062600000000000e-02 +-5.530500000000000e-02 +-1.066600000000000e-01 +-1.765300000000000e-01 +-2.201300000000000e-01 +-1.982700000000000e-01 +-9.598900000000000e-02 + 7.333700000000000e-02 + 2.780500000000000e-01 + 4.828800000000000e-01 + 6.581500000000000e-01 + 7.807900000000000e-01 + 8.324300000000000e-01 + 8.006799999999999e-01 + 6.849300000000000e-01 + 5.011300000000000e-01 + 2.794100000000000e-01 + 5.436700000000000e-02 +-1.462100000000000e-01 +-3.064000000000000e-01 +-4.192800000000000e-01 +-4.812600000000000e-01 +-4.908300000000000e-01 +-4.534400000000000e-01 +-3.869900000000000e-01 +-3.198400000000000e-01 +-2.792000000000000e-01 +-2.768600000000000e-01 +-3.033700000000000e-01 +-3.361000000000000e-01 +-3.555500000000000e-01 +-3.568000000000000e-01 +-3.470100000000000e-01 +-3.316700000000000e-01 +-3.026200000000000e-01 +-2.403200000000000e-01 +-1.304600000000000e-01 + 1.799200000000000e-02 + 1.694700000000000e-01 + 2.788100000000000e-01 + 3.177500000000000e-01 + 2.919900000000000e-01 + 2.361500000000000e-01 + 1.909100000000000e-01 + 1.794700000000000e-01 + 2.000500000000000e-01 + 2.368900000000000e-01 + 2.777600000000000e-01 + 3.217900000000000e-01 + 3.721000000000000e-01 + 4.219600000000000e-01 + 4.497300000000000e-01 + 4.299600000000000e-01 + 3.529800000000000e-01 + 2.365300000000000e-01 + 1.180500000000000e-01 + 3.172500000000000e-02 +-1.291400000000000e-02 +-3.466800000000000e-02 +-6.414100000000000e-02 +-1.200600000000000e-01 +-1.962700000000000e-01 +-2.678900000000000e-01 +-3.098700000000000e-01 +-3.125000000000000e-01 +-2.831500000000000e-01 +-2.359600000000000e-01 +-1.810300000000000e-01 +-1.231100000000000e-01 +-6.907600000000000e-02 +-3.471500000000000e-02 +-4.112200000000000e-02 +-1.010800000000000e-01 +-2.057800000000000e-01 +-3.237700000000000e-01 +-4.148800000000000e-01 +-4.502100000000000e-01 +-4.242400000000000e-01 +-3.519500000000000e-01 +-2.552700000000000e-01 +-1.506600000000000e-01 +-4.632700000000000e-02 + 5.231200000000000e-02 + 1.380200000000000e-01 + 2.049300000000000e-01 + 2.571400000000000e-01 + 3.127800000000000e-01 + 3.949300000000000e-01 + 5.122700000000000e-01 + 6.432800000000000e-01 + 7.385000000000000e-01 + 7.442400000000000e-01 + 6.344100000000000e-01 + 4.295300000000000e-01 + 1.888500000000000e-01 +-2.030900000000000e-02 +-1.565200000000000e-01 +-2.201700000000000e-01 +-2.428800000000000e-01 +-2.601300000000000e-01 +-2.872200000000000e-01 +-3.138100000000000e-01 +-3.179000000000000e-01 +-2.865200000000000e-01 +-2.276700000000000e-01 +-1.662900000000000e-01 +-1.291900000000000e-01 +-1.305000000000000e-01 +-1.662300000000000e-01 +-2.184900000000000e-01 +-2.636400000000000e-01 +-2.788500000000000e-01 +-2.458200000000000e-01 +-1.546700000000000e-01 +-9.766000000000000e-03 + 1.650700000000000e-01 + 3.280600000000000e-01 + 4.314700000000000e-01 + 4.408400000000000e-01 + 3.516700000000000e-01 + 1.934800000000000e-01 + 1.789500000000000e-02 +-1.228600000000000e-01 +-1.952500000000000e-01 +-1.922700000000000e-01 +-1.287000000000000e-01 +-3.027100000000000e-02 + 7.553500000000000e-02 + 1.635700000000000e-01 + 2.128300000000000e-01 + 2.101500000000000e-01 + 1.566200000000000e-01 + 7.157500000000000e-02 +-1.179300000000000e-02 +-6.053200000000000e-02 +-5.909900000000000e-02 +-1.872100000000000e-02 + 2.816700000000000e-02 + 4.590000000000000e-02 + 1.499000000000000e-02 +-5.892400000000000e-02 +-1.509200000000000e-01 +-2.316900000000000e-01 +-2.805600000000000e-01 +-2.895200000000000e-01 +-2.592400000000000e-01 +-1.942100000000000e-01 +-1.029400000000000e-01 +-1.828000000000000e-03 + 8.421200000000000e-02 + 1.300200000000000e-01 + 1.250600000000000e-01 + 8.466899999999999e-02 + 4.696100000000000e-02 + 5.388500000000000e-02 + 1.263700000000000e-01 + 2.494700000000000e-01 + 3.777100000000000e-01 + 4.578900000000000e-01 + 4.552100000000000e-01 + 3.673700000000000e-01 + 2.202200000000000e-01 + 5.073500000000000e-02 +-1.104500000000000e-01 +-2.472300000000000e-01 +-3.556200000000000e-01 +-4.362800000000000e-01 +-4.885200000000000e-01 +-5.086700000000000e-01 +-4.913700000000000e-01 +-4.320800000000000e-01 +-3.302000000000000e-01 +-1.931500000000000e-01 +-4.015700000000000e-02 + 9.846700000000000e-02 + 1.896200000000000e-01 + 2.117200000000000e-01 + 1.672500000000000e-01 + 8.470600000000000e-02 + 6.730300000000000e-03 +-2.908000000000000e-02 +-5.044600000000000e-03 + 7.453000000000000e-02 + 1.927000000000000e-01 + 3.311600000000000e-01 + 4.742300000000000e-01 + 6.047600000000000e-01 + 6.998200000000000e-01 + 7.344400000000000e-01 + 6.937300000000000e-01 + 5.836800000000000e-01 + 4.296200000000000e-01 + 2.605900000000000e-01 + 9.083500000000000e-02 +-8.624999999999999e-02 +-2.853200000000000e-01 +-5.072500000000000e-01 +-7.272400000000000e-01 +-9.050100000000000e-01 +-1.010900000000000e+00 +-1.046800000000000e+00 +-1.043500000000000e+00 +-1.033100000000000e+00 +-1.019100000000000e+00 +-9.679700000000000e-01 +-8.313900000000000e-01 +-5.846400000000000e-01 +-2.504500000000000e-01 + 1.101000000000000e-01 + 4.334600000000000e-01 + 6.887900000000000e-01 + 8.863400000000000e-01 + 1.054600000000000e+00 + 1.207200000000000e+00 + 1.326300000000000e+00 + 1.376300000000000e+00 + 1.332300000000000e+00 + 1.199500000000000e+00 + 1.007400000000000e+00 + 7.854200000000000e-01 + 5.434300000000000e-01 + 2.751900000000000e-01 +-1.941400000000000e-02 +-3.154200000000000e-01 +-5.675700000000000e-01 +-7.381100000000000e-01 +-8.248500000000000e-01 +-8.639900000000000e-01 +-9.018900000000000e-01 +-9.569200000000000e-01 +-1.002800000000000e+00 +-9.889000000000000e-01 +-8.830100000000000e-01 +-7.021400000000000e-01 +-5.056900000000000e-01 +-3.543000000000000e-01 +-2.660000000000000e-01 +-2.039900000000000e-01 +-1.061200000000000e-01 + 6.612500000000000e-02 + 2.962200000000000e-01 + 5.215300000000000e-01 + 6.743500000000000e-01 + 7.234699999999999e-01 + 6.870300000000000e-01 + 6.114100000000000e-01 + 5.362000000000000e-01 + 4.729400000000000e-01 + 4.100100000000000e-01 + 3.341000000000000e-01 + 2.466800000000000e-01 + 1.623500000000000e-01 + 9.348300000000000e-02 + 3.782300000000000e-02 +-1.843000000000000e-02 +-8.480799999999999e-02 +-1.528600000000000e-01 +-1.978400000000000e-01 +-1.956800000000000e-01 +-1.415900000000000e-01 +-5.541800000000000e-02 + 3.049400000000000e-02 + 9.086100000000000e-02 + 1.193400000000000e-01 + 1.249600000000000e-01 + 1.182200000000000e-01 + 9.954600000000000e-02 + 5.953900000000000e-02 +-1.049900000000000e-02 +-1.071800000000000e-01 +-2.122700000000000e-01 +-3.002600000000000e-01 +-3.503400000000000e-01 +-3.547900000000000e-01 +-3.202500000000000e-01 +-2.636500000000000e-01 +-2.068000000000000e-01 +-1.712400000000000e-01 +-1.728600000000000e-01 +-2.158900000000000e-01 +-2.888700000000000e-01 +-3.666100000000000e-01 +-4.197000000000000e-01 +-4.271600000000000e-01 +-3.848000000000000e-01 +-3.033400000000000e-01 +-1.979700000000000e-01 +-7.736700000000001e-02 + 5.968200000000000e-02 + 2.177100000000000e-01 + 3.940400000000000e-01 + 5.731200000000000e-01 + 7.306300000000000e-01 + 8.442499999999999e-01 + 9.035200000000000e-01 + 9.120200000000001e-01 + 8.816800000000000e-01 + 8.240800000000000e-01 + 7.446600000000000e-01 + 6.417400000000000e-01 + 5.091300000000000e-01 + 3.399000000000000e-01 + 1.309800000000000e-01 +-1.110100000000000e-01 +-3.639700000000000e-01 +-5.894100000000000e-01 +-7.413500000000000e-01 +-7.849300000000000e-01 +-7.163300000000000e-01 +-5.712300000000000e-01 +-4.134600000000000e-01 +-3.073000000000000e-01 +-2.880000000000000e-01 +-3.479200000000000e-01 +-4.458700000000000e-01 +-5.326600000000000e-01 +-5.760000000000000e-01 +-5.700400000000000e-01 +-5.265800000000000e-01 +-4.581900000000000e-01 +-3.671500000000000e-01 +-2.477600000000000e-01 +-9.810199999999999e-02 + 6.998600000000001e-02 + 2.317800000000000e-01 + 3.614000000000000e-01 + 4.459300000000000e-01 + 4.920500000000000e-01 + 5.206400000000000e-01 + 5.533700000000000e-01 + 5.996000000000000e-01 + 6.507900000000000e-01 + 6.842900000000000e-01 + 6.735100000000001e-01 + 5.994900000000000e-01 + 4.595500000000000e-01 + 2.705300000000000e-01 + 6.553500000000000e-02 +-1.154000000000000e-01 +-2.382300000000000e-01 +-2.867600000000000e-01 +-2.679100000000000e-01 +-2.077800000000000e-01 +-1.399900000000000e-01 +-9.240300000000000e-02 +-7.860700000000000e-02 +-9.744600000000000e-02 +-1.387000000000000e-01 +-1.901400000000000e-01 +-2.418200000000000e-01 +-2.866300000000000e-01 +-3.190900000000000e-01 +-3.344400000000000e-01 +-3.289100000000000e-01 +-3.000400000000000e-01 +-2.467100000000000e-01 +-1.692200000000000e-01 +-7.082400000000000e-02 + 3.981300000000000e-02 + 1.477800000000000e-01 + 2.355600000000000e-01 + 2.910300000000000e-01 + 3.153700000000000e-01 + 3.243000000000000e-01 + 3.393200000000000e-01 + 3.726900000000000e-01 + 4.154600000000000e-01 + 4.377300000000000e-01 + 4.025700000000000e-01 + 2.862400000000000e-01 + 9.242400000000001e-02 +-1.477400000000000e-01 +-3.887500000000000e-01 +-5.879700000000000e-01 +-7.172800000000000e-01 +-7.651400000000000e-01 +-7.330200000000000e-01 +-6.324000000000000e-01 +-4.845400000000000e-01 +-3.196600000000000e-01 +-1.700500000000000e-01 +-5.711500000000000e-02 + 2.046900000000000e-02 + 8.709799999999999e-02 + 1.750200000000000e-01 + 3.008900000000000e-01 + 4.495200000000000e-01 + 5.777900000000000e-01 + 6.383500000000000e-01 + 6.087500000000000e-01 + 5.064800000000000e-01 + 3.793600000000000e-01 + 2.774100000000000e-01 + 2.249500000000000e-01 + 2.109400000000000e-01 + 2.023500000000000e-01 + 1.695800000000000e-01 + 1.059200000000000e-01 + 2.876800000000000e-02 +-3.534200000000000e-02 +-6.949400000000000e-02 +-7.563599999999999e-02 +-7.009300000000000e-02 +-7.144200000000001e-02 +-9.082999999999999e-02 +-1.304800000000000e-01 +-1.883600000000000e-01 +-2.625000000000000e-01 +-3.506500000000000e-01 +-4.462000000000000e-01 +-5.356200000000000e-01 +-6.006899999999999e-01 +-6.247100000000000e-01 +-5.981900000000000e-01 +-5.202300000000000e-01 +-3.960800000000000e-01 +-2.344000000000000e-01 +-4.683500000000000e-02 + 1.504800000000000e-01 + 3.370400000000000e-01 + 4.919900000000000e-01 + 6.002999999999999e-01 + 6.569500000000000e-01 + 6.654900000000000e-01 + 6.326000000000001e-01 + 5.635700000000000e-01 + 4.631000000000000e-01 + 3.404400000000000e-01 + 2.128900000000000e-01 + 1.020200000000000e-01 + 2.265800000000000e-02 +-2.788600000000000e-02 +-7.144200000000001e-02 +-1.378000000000000e-01 +-2.466000000000000e-01 +-3.937300000000000e-01 +-5.509200000000000e-01 +-6.782600000000000e-01 +-7.411799999999999e-01 +-7.217000000000000e-01 +-6.200800000000000e-01 +-4.499800000000000e-01 +-2.335500000000000e-01 + 7.722100000000000e-04 + 2.205700000000000e-01 + 3.957100000000000e-01 + 5.084000000000000e-01 + 5.607200000000000e-01 + 5.723800000000000e-01 + 5.675300000000000e-01 + 5.586900000000000e-01 + 5.396800000000000e-01 + 4.936200000000000e-01 + 4.104600000000000e-01 + 3.001100000000000e-01 + 1.895800000000000e-01 + 1.050400000000000e-01 + 5.195400000000000e-02 + 9.347299999999999e-03 +-5.593700000000000e-02 +-1.643600000000000e-01 +-3.061400000000000e-01 +-4.439100000000000e-01 +-5.341200000000000e-01 +-5.521300000000000e-01 +-5.045500000000001e-01 +-4.225500000000000e-01 +-3.431300000000000e-01 +-2.924900000000000e-01 +-2.802600000000000e-01 +-3.035300000000000e-01 +-3.521900000000000e-01 +-4.091500000000000e-01 +-4.473300000000000e-01 +-4.311500000000000e-01 +-3.283100000000000e-01 +-1.283700000000000e-01 + 1.434900000000000e-01 + 4.291400000000000e-01 + 6.588700000000000e-01 + 7.808800000000000e-01 + 7.826700000000000e-01 + 6.923100000000000e-01 + 5.599499999999999e-01 + 4.315200000000000e-01 + 3.298100000000000e-01 + 2.521900000000000e-01 + 1.832600000000000e-01 + 1.122100000000000e-01 + 4.339800000000000e-02 +-6.086700000000000e-03 +-1.948300000000000e-02 + 4.885100000000000e-03 + 4.717400000000000e-02 + 7.327100000000000e-02 + 5.294400000000000e-02 +-2.113900000000000e-02 +-1.255900000000000e-01 +-2.163500000000000e-01 +-2.528900000000000e-01 +-2.229400000000000e-01 +-1.521200000000000e-01 +-9.088700000000000e-02 +-8.500800000000000e-02 +-1.475700000000000e-01 +-2.503500000000000e-01 +-3.407100000000000e-01 +-3.734500000000000e-01 +-3.371100000000000e-01 +-2.580400000000000e-01 +-1.806600000000000e-01 +-1.383500000000000e-01 +-1.347100000000000e-01 +-1.468900000000000e-01 +-1.464200000000000e-01 +-1.212700000000000e-01 +-8.337100000000000e-02 +-5.723500000000000e-02 +-5.925500000000000e-02 +-8.317200000000000e-02 +-1.018900000000000e-01 +-8.371199999999999e-02 +-1.136300000000000e-02 + 1.085900000000000e-01 + 2.508700000000000e-01 + 3.860300000000000e-01 + 4.944100000000000e-01 + 5.712600000000000e-01 + 6.221400000000000e-01 + 6.537600000000000e-01 + 6.672200000000000e-01 + 6.572900000000000e-01 + 6.167100000000000e-01 + 5.411800000000000e-01 + 4.313300000000000e-01 + 2.910000000000000e-01 + 1.241900000000000e-01 +-6.601300000000000e-02 +-2.748300000000000e-01 +-4.909700000000000e-01 +-6.932600000000000e-01 +-8.523200000000000e-01 +-9.381000000000000e-01 +-9.306500000000000e-01 +-8.290800000000000e-01 +-6.540000000000000e-01 +-4.419500000000000e-01 +-2.342000000000000e-01 +-6.458800000000001e-02 + 4.915200000000000e-02 + 1.081600000000000e-01 + 1.295300000000000e-01 + 1.391200000000000e-01 + 1.617300000000000e-01 + 2.111000000000000e-01 + 2.826300000000000e-01 + 3.529800000000000e-01 + 3.884700000000000e-01 + 3.606500000000000e-01 + 2.621700000000000e-01 + 1.140400000000000e-01 +-4.107400000000000e-02 +-1.572600000000000e-01 +-2.057200000000000e-01 +-1.856600000000000e-01 +-1.196200000000000e-01 +-3.737400000000000e-02 + 4.078500000000000e-02 + 1.106100000000000e-01 + 1.773000000000000e-01 + 2.421500000000000e-01 + 2.936500000000000e-01 + 3.103100000000000e-01 + 2.741500000000000e-01 + 1.853400000000000e-01 + 6.737000000000000e-02 +-4.191700000000000e-02 +-1.089100000000000e-01 +-1.214200000000000e-01 +-9.390200000000000e-02 +-5.747100000000000e-02 +-4.046900000000000e-02 +-5.156800000000000e-02 +-7.591400000000000e-02 +-8.707700000000000e-02 +-6.748700000000001e-02 +-2.396100000000000e-02 + 1.291000000000000e-02 + 6.873800000000000e-03 +-5.892200000000000e-02 +-1.664900000000000e-01 +-2.689200000000000e-01 +-3.158200000000000e-01 +-2.829200000000000e-01 +-1.862600000000000e-01 +-7.114600000000000e-02 + 1.710200000000000e-02 + 6.072300000000000e-02 + 7.658200000000000e-02 + 9.857700000000000e-02 + 1.489100000000000e-01 + 2.194100000000000e-01 + 2.760200000000000e-01 + 2.821500000000000e-01 + 2.228400000000000e-01 + 1.128100000000000e-01 +-1.538100000000000e-02 +-1.315500000000000e-01 +-2.201200000000000e-01 +-2.772900000000000e-01 +-2.996100000000000e-01 +-2.775700000000000e-01 +-2.018700000000000e-01 +-7.689799999999999e-02 + 7.183500000000000e-02 + 2.055800000000000e-01 + 2.913900000000000e-01 + 3.179600000000000e-01 + 2.956500000000000e-01 + 2.412900000000000e-01 + 1.612300000000000e-01 + 4.809800000000000e-02 +-1.052600000000000e-01 +-2.862800000000000e-01 +-4.552000000000000e-01 +-5.581500000000000e-01 +-5.530800000000000e-01 +-4.303300000000000e-01 +-2.140200000000000e-01 + 5.434000000000000e-02 + 3.358500000000000e-01 + 6.025400000000000e-01 + 8.310800000000000e-01 + 9.922000000000000e-01 + 1.049900000000000e+00 + 9.748000000000000e-01 + 7.632500000000000e-01 + 4.465400000000000e-01 + 8.229400000000001e-02 +-2.674800000000000e-01 +-5.574200000000000e-01 +-7.670800000000000e-01 +-8.952800000000000e-01 +-9.488600000000000e-01 +-9.356400000000000e-01 +-8.646500000000000e-01 +-7.492100000000000e-01 +-6.072500000000000e-01 +-4.575700000000000e-01 +-3.160000000000000e-01 +-1.948600000000000e-01 +-1.044100000000000e-01 +-5.148300000000000e-02 +-3.268000000000000e-02 +-2.681600000000000e-02 + 4.074300000000000e-03 + 9.984700000000001e-02 + 2.791500000000000e-01 + 5.229800000000000e-01 + 7.781500000000000e-01 + 9.810200000000000e-01 + 1.087000000000000e+00 + 1.087000000000000e+00 + 1.001000000000000e+00 + 8.566700000000000e-01 + 6.714599999999999e-01 + 4.509600000000000e-01 + 2.026200000000000e-01 +-5.006300000000000e-02 +-2.679700000000000e-01 +-4.137900000000000e-01 +-4.739200000000000e-01 +-4.682100000000000e-01 +-4.396000000000000e-01 +-4.309300000000000e-01 +-4.644400000000000e-01 +-5.355900000000000e-01 +-6.209000000000000e-01 +-6.909800000000000e-01 +-7.197200000000000e-01 +-6.883200000000000e-01 +-5.884800000000000e-01 +-4.277900000000000e-01 +-2.335800000000000e-01 +-4.804600000000000e-02 + 8.841100000000000e-02 + 1.578400000000000e-01 + 1.753300000000000e-01 + 1.796600000000000e-01 + 2.078100000000000e-01 + 2.698300000000000e-01 + 3.418100000000000e-01 + 3.819800000000000e-01 + 3.589500000000000e-01 + 2.723900000000000e-01 + 1.530300000000000e-01 + 4.415500000000000e-02 +-2.109100000000000e-02 +-3.149000000000000e-02 + 5.988500000000000e-03 + 7.828000000000000e-02 + 1.753500000000000e-01 + 2.904400000000000e-01 + 4.145200000000000e-01 + 5.323800000000000e-01 + 6.249100000000000e-01 + 6.756700000000000e-01 + 6.760600000000000e-01 + 6.253500000000000e-01 + 5.269900000000000e-01 + 3.853000000000000e-01 + 2.053900000000000e-01 +-4.971100000000000e-03 +-2.343600000000000e-01 +-4.691900000000000e-01 +-6.955800000000000e-01 +-8.990600000000000e-01 +-1.062200000000000e+00 +-1.163800000000000e+00 +-1.183200000000000e+00 +-1.110000000000000e+00 +-9.533800000000000e-01 +-7.421300000000000e-01 +-5.154600000000000e-01 +-3.070600000000000e-01 +-1.328500000000000e-01 + 1.091000000000000e-02 + 1.392500000000000e-01 + 2.664500000000000e-01 + 3.973500000000000e-01 + 5.254300000000000e-01 + 6.358000000000000e-01 + 7.102200000000000e-01 + 7.329400000000000e-01 + 6.975500000000000e-01 + 6.136400000000000e-01 + 5.084900000000000e-01 + 4.188600000000000e-01 + 3.731500000000000e-01 + 3.730500000000000e-01 + 3.878200000000000e-01 + 3.689400000000000e-01 + 2.795800000000000e-01 + 1.208400000000000e-01 +-6.338900000000000e-02 +-2.085600000000000e-01 +-2.659700000000000e-01 +-2.305300000000000e-01 +-1.422700000000000e-01 +-6.162500000000000e-02 +-3.544700000000000e-02 +-7.535300000000000e-02 +-1.595100000000000e-01 +-2.523700000000000e-01 +-3.263200000000000e-01 +-3.711200000000000e-01 +-3.888800000000000e-01 +-3.830000000000000e-01 +-3.521200000000000e-01 +-2.935300000000000e-01 +-2.114500000000000e-01 +-1.215400000000000e-01 +-4.636400000000000e-02 +-4.052900000000000e-03 + 2.350300000000000e-03 +-1.243600000000000e-02 +-2.327000000000000e-02 +-8.015300000000000e-03 + 4.016400000000000e-02 + 1.080600000000000e-01 + 1.678600000000000e-01 + 1.904700000000000e-01 + 1.605100000000000e-01 + 8.543600000000000e-02 +-6.394700000000000e-03 +-7.847200000000000e-02 +-1.031600000000000e-01 +-7.374300000000000e-02 +-4.986500000000000e-03 + 7.714900000000000e-02 + 1.490700000000000e-01 + 1.974900000000000e-01 + 2.181200000000000e-01 + 2.090400000000000e-01 + 1.668600000000000e-01 + 9.039200000000000e-02 +-1.111100000000000e-02 +-1.134700000000000e-01 +-1.835300000000000e-01 +-1.939900000000000e-01 +-1.378300000000000e-01 +-3.214800000000000e-02 + 9.125300000000000e-02 + 2.019700000000000e-01 + 2.826100000000000e-01 + 3.293100000000000e-01 + 3.438200000000000e-01 + 3.257400000000000e-01 + 2.722700000000000e-01 + 1.849400000000000e-01 + 7.618800000000001e-02 +-3.149000000000000e-02 +-1.145900000000000e-01 +-1.597700000000000e-01 +-1.689700000000000e-01 +-1.554600000000000e-01 +-1.346600000000000e-01 +-1.169000000000000e-01 +-1.066100000000000e-01 +-1.064300000000000e-01 +-1.211200000000000e-01 +-1.570400000000000e-01 +-2.176600000000000e-01 +-2.987300000000000e-01 +-3.868100000000000e-01 +-4.621400000000000e-01 +-5.041800000000000e-01 +-4.976700000000000e-01 +-4.379200000000000e-01 +-3.341000000000000e-01 +-2.082500000000000e-01 +-8.820500000000001e-02 + 5.033500000000000e-03 + 6.935800000000000e-02 + 1.248100000000000e-01 + 2.029100000000000e-01 + 3.262000000000000e-01 + 4.900700000000000e-01 + 6.599900000000000e-01 + 7.874300000000000e-01 + 8.351200000000000e-01 + 7.950500000000000e-01 + 6.877900000000000e-01 + 5.450400000000000e-01 + 3.895500000000000e-01 + 2.272100000000000e-01 + 5.554200000000000e-02 +-1.206600000000000e-01 +-2.808900000000000e-01 +-3.955800000000000e-01 +-4.427400000000000e-01 +-4.214600000000000e-01 +-3.522400000000000e-01 +-2.649600000000000e-01 +-1.846300000000000e-01 +-1.251700000000000e-01 +-9.285499999999999e-02 +-9.257799999999999e-02 +-1.283200000000000e-01 +-1.966000000000000e-01 +-2.798000000000000e-01 +-3.483000000000000e-01 +-3.733800000000000e-01 +-3.433400000000000e-01 +-2.710600000000000e-01 +-1.868700000000000e-01 +-1.210200000000000e-01 +-8.749600000000000e-02 +-7.931700000000000e-02 +-7.676100000000000e-02 +-6.117400000000000e-02 +-2.479600000000000e-02 + 2.834000000000000e-02 + 8.843900000000000e-02 + 1.472700000000000e-01 + 2.024600000000000e-01 + 2.578000000000000e-01 + 3.210900000000000e-01 + 4.003700000000000e-01 + 4.990700000000000e-01 + 6.110300000000000e-01 + 7.182100000000000e-01 + 7.939300000000000e-01 + 8.115700000000000e-01 + 7.543299999999999e-01 + 6.202299999999999e-01 + 4.193800000000000e-01 + 1.670000000000000e-01 +-1.211300000000000e-01 +-4.265500000000000e-01 +-7.223200000000000e-01 +-9.713200000000000e-01 +-1.134500000000000e+00 +-1.186500000000000e+00 +-1.128700000000000e+00 +-9.882000000000000e-01 +-8.037700000000000e-01 +-6.055300000000000e-01 +-4.042000000000000e-01 +-1.957900000000000e-01 + 2.325300000000000e-02 + 2.433300000000000e-01 + 4.415700000000000e-01 + 5.934900000000000e-01 + 6.859600000000000e-01 + 7.211300000000000e-01 + 7.091900000000000e-01 + 6.578600000000000e-01 + 5.683700000000000e-01 + 4.411100000000000e-01 + 2.846800000000000e-01 + 1.188800000000000e-01 +-3.205200000000000e-02 +-1.503400000000000e-01 +-2.301600000000000e-01 +-2.728800000000000e-01 +-2.772200000000000e-01 +-2.347100000000000e-01 +-1.369200000000000e-01 + 9.829299999999999e-03 + 1.746600000000000e-01 + 3.078400000000000e-01 + 3.617400000000000e-01 + 3.153200000000000e-01 + 1.868400000000000e-01 + 2.669200000000000e-02 +-1.056800000000000e-01 +-1.680100000000000e-01 +-1.520200000000000e-01 +-8.448600000000001e-02 +-1.436300000000000e-02 + 7.546900000000000e-03 +-5.127400000000000e-02 +-1.918800000000000e-01 +-3.826200000000000e-01 +-5.711700000000000e-01 +-7.053900000000000e-01 +-7.531500000000000e-01 +-7.106000000000000e-01 +-5.948400000000000e-01 +-4.274800000000000e-01 +-2.221700000000000e-01 + 1.406700000000000e-02 + 2.680000000000000e-01 + 5.087600000000000e-01 + 6.916500000000000e-01 + 7.787400000000000e-01 + 7.626800000000000e-01 + 6.745600000000000e-01 + 5.666600000000001e-01 + 4.804200000000000e-01 + 4.223500000000000e-01 + 3.661400000000000e-01 + 2.795600000000000e-01 + 1.553300000000000e-01 + 2.163700000000000e-02 +-7.633500000000000e-02 +-1.098400000000000e-01 +-8.916499999999999e-02 +-5.795500000000000e-02 +-6.347899999999999e-02 +-1.250400000000000e-01 +-2.229400000000000e-01 +-3.142600000000000e-01 +-3.618700000000000e-01 +-3.559600000000000e-01 +-3.154700000000000e-01 +-2.729000000000000e-01 +-2.561600000000000e-01 +-2.785600000000000e-01 +-3.382000000000000e-01 +-4.204900000000000e-01 +-4.995700000000000e-01 +-5.404900000000000e-01 +-5.082400000000000e-01 +-3.838800000000000e-01 +-1.793900000000000e-01 + 6.153000000000000e-02 + 2.819200000000000e-01 + 4.402600000000000e-01 + 5.308800000000000e-01 + 5.812000000000000e-01 + 6.274000000000000e-01 + 6.855900000000000e-01 + 7.390600000000001e-01 + 7.503600000000000e-01 + 6.880500000000001e-01 + 5.485200000000000e-01 + 3.579000000000000e-01 + 1.550800000000000e-01 +-2.969500000000000e-02 +-1.853900000000000e-01 +-3.148900000000000e-01 +-4.220300000000000e-01 +-5.035200000000000e-01 +-5.517100000000000e-01 +-5.637000000000000e-01 +-5.467600000000000e-01 +-5.142000000000000e-01 +-4.747300000000000e-01 +-4.247400000000000e-01 +-3.506400000000000e-01 +-2.401200000000000e-01 +-9.402500000000000e-02 + 6.984600000000001e-02 + 2.236800000000000e-01 + 3.421200000000000e-01 + 4.123200000000000e-01 + 4.362400000000000e-01 + 4.259700000000000e-01 + 3.964400000000000e-01 + 3.597800000000000e-01 + 3.229600000000000e-01 + 2.875800000000000e-01 + 2.508100000000000e-01 + 2.072900000000000e-01 + 1.522800000000000e-01 + 8.516000000000000e-02 + 1.135900000000000e-02 +-5.941900000000000e-02 +-1.182100000000000e-01 +-1.622900000000000e-01 +-1.974700000000000e-01 +-2.353100000000000e-01 +-2.867100000000000e-01 +-3.554100000000000e-01 +-4.348800000000000e-01 +-5.099700000000000e-01 +-5.620600000000000e-01 +-5.753700000000000e-01 +-5.419200000000000e-01 +-4.639000000000000e-01 +-3.527200000000000e-01 +-2.251200000000000e-01 +-9.764900000000000e-02 + 1.846400000000000e-02 + 1.196800000000000e-01 + 2.088100000000000e-01 + 2.910500000000000e-01 + 3.700600000000000e-01 + 4.464800000000000e-01 + 5.195300000000000e-01 + 5.894300000000000e-01 + 6.579500000000000e-01 + 7.255000000000000e-01 + 7.865100000000000e-01 + 8.263700000000000e-01 + 8.235600000000000e-01 + 7.571900000000000e-01 + 6.173900000000000e-01 + 4.130900000000000e-01 + 1.730000000000000e-01 +-6.193600000000000e-02 +-2.521000000000000e-01 +-3.733100000000000e-01 +-4.253600000000000e-01 +-4.313600000000000e-01 +-4.278600000000000e-01 +-4.506500000000000e-01 +-5.221100000000000e-01 +-6.452300000000000e-01 +-8.049900000000000e-01 +-9.743400000000000e-01 +-1.120800000000000e+00 +-1.211500000000000e+00 +-1.218100000000000e+00 +-1.122300000000000e+00 +-9.223600000000000e-01 +-6.379200000000000e-01 +-3.064900000000000e-01 + 2.753900000000000e-02 + 3.279900000000000e-01 + 5.775500000000000e-01 + 7.776800000000000e-01 + 9.384100000000000e-01 + 1.065800000000000e+00 + 1.156300000000000e+00 + 1.201100000000000e+00 + 1.196400000000000e+00 + 1.149200000000000e+00 + 1.073900000000000e+00 + 9.813100000000000e-01 + 8.698800000000000e-01 + 7.262900000000000e-01 + 5.365600000000000e-01 + 2.989300000000000e-01 + 2.910800000000000e-02 +-2.457900000000000e-01 +-4.990500000000000e-01 +-7.126800000000000e-01 +-8.768700000000000e-01 +-9.838400000000000e-01 +-1.024400000000000e+00 +-9.926300000000000e-01 +-8.956300000000000e-01 +-7.589200000000000e-01 +-6.198300000000000e-01 +-5.103000000000000e-01 +-4.398700000000000e-01 +-3.911300000000000e-01 +-3.318000000000000e-01 +-2.357700000000000e-01 +-9.912400000000000e-02 + 5.910100000000000e-02 + 2.109200000000000e-01 + 3.373800000000000e-01 + 4.379400000000000e-01 + 5.256800000000000e-01 + 6.124700000000000e-01 + 6.949200000000000e-01 + 7.504999999999999e-01 + 7.466200000000000e-01 + 6.577200000000000e-01 + 4.813200000000000e-01 + 2.445500000000000e-01 +-2.738400000000000e-03 +-2.059600000000000e-01 +-3.272300000000000e-01 +-3.598700000000000e-01 +-3.283100000000000e-01 +-2.728000000000000e-01 +-2.272000000000000e-01 +-2.028700000000000e-01 +-1.883100000000000e-01 +-1.640400000000000e-01 +-1.213600000000000e-01 +-7.079900000000000e-02 +-3.375400000000000e-02 +-2.376900000000000e-02 +-3.295200000000000e-02 +-3.560000000000000e-02 +-7.939999999999999e-03 + 5.051500000000000e-02 + 1.112300000000000e-01 + 1.330100000000000e-01 + 9.043200000000000e-02 +-5.462000000000000e-03 +-1.092600000000000e-01 +-1.657100000000000e-01 +-1.410400000000000e-01 +-4.156200000000000e-02 + 9.055199999999999e-02 + 1.997900000000000e-01 + 2.435300000000000e-01 + 2.085000000000000e-01 + 1.119800000000000e-01 +-8.371999999999999e-03 +-1.095000000000000e-01 +-1.569700000000000e-01 +-1.355000000000000e-01 +-5.394900000000000e-02 + 5.739200000000000e-02 + 1.581200000000000e-01 + 2.142500000000000e-01 + 2.124100000000000e-01 + 1.639100000000000e-01 + 9.653200000000001e-02 + 3.918300000000000e-02 + 8.686800000000000e-03 + 5.295400000000000e-03 + 1.678300000000000e-02 + 2.591400000000000e-02 + 1.638300000000000e-02 +-2.345600000000000e-02 +-9.677900000000000e-02 +-1.937300000000000e-01 +-2.898300000000000e-01 +-3.525700000000000e-01 +-3.568200000000000e-01 +-3.011200000000000e-01 +-2.129500000000000e-01 +-1.360600000000000e-01 +-1.053500000000000e-01 +-1.253700000000000e-01 +-1.674100000000000e-01 +-1.880200000000000e-01 +-1.562700000000000e-01 +-7.113600000000000e-02 + 4.164500000000000e-02 + 1.487000000000000e-01 + 2.284600000000000e-01 + 2.775500000000000e-01 + 3.029800000000000e-01 + 3.104800000000000e-01 + 3.004300000000000e-01 + 2.738700000000000e-01 + 2.404600000000000e-01 + 2.182600000000000e-01 + 2.235400000000000e-01 + 2.585900000000000e-01 + 3.085900000000000e-01 + 3.508600000000000e-01 + 3.685300000000000e-01 + 3.569600000000000e-01 + 3.179600000000000e-01 + 2.489300000000000e-01 + 1.393100000000000e-01 +-1.943800000000000e-02 +-2.175600000000000e-01 +-4.197300000000000e-01 +-5.766300000000000e-01 +-6.501000000000000e-01 +-6.344000000000000e-01 +-5.576600000000000e-01 +-4.623300000000000e-01 +-3.798800000000000e-01 +-3.186300000000000e-01 +-2.719200000000000e-01 +-2.364000000000000e-01 +-2.219400000000000e-01 +-2.427100000000000e-01 +-2.966900000000000e-01 +-3.525000000000000e-01 +-3.581900000000000e-01 +-2.693900000000000e-01 +-7.797000000000000e-02 + 1.792500000000000e-01 + 4.380200000000000e-01 + 6.381300000000000e-01 + 7.481200000000000e-01 + 7.698199999999999e-01 + 7.252000000000000e-01 + 6.395700000000000e-01 + 5.334100000000001e-01 + 4.242600000000000e-01 + 3.305200000000000e-01 + 2.687000000000000e-01 + 2.444900000000000e-01 + 2.457300000000000e-01 + 2.456700000000000e-01 + 2.162200000000000e-01 + 1.420700000000000e-01 + 2.565900000000000e-02 +-1.195200000000000e-01 +-2.798400000000000e-01 +-4.466800000000000e-01 +-6.117200000000000e-01 +-7.585800000000000e-01 +-8.607100000000000e-01 +-8.904500000000000e-01 +-8.339900000000000e-01 +-7.006100000000000e-01 +-5.185600000000000e-01 +-3.197800000000000e-01 +-1.248600000000000e-01 + 6.143600000000000e-02 + 2.420600000000000e-01 + 4.150700000000000e-01 + 5.670900000000000e-01 + 6.776500000000000e-01 + 7.296300000000000e-01 + 7.169300000000000e-01 + 6.439800000000000e-01 + 5.194400000000000e-01 + 3.515100000000000e-01 + 1.498100000000000e-01 +-6.813500000000000e-02 +-2.733900000000000e-01 +-4.310100000000000e-01 +-5.132900000000000e-01 +-5.125500000000000e-01 +-4.447200000000000e-01 +-3.407900000000000e-01 +-2.317900000000000e-01 +-1.370100000000000e-01 +-6.183700000000000e-02 +-4.418800000000000e-03 + 3.620500000000000e-02 + 5.738900000000000e-02 + 5.744700000000000e-02 + 4.287800000000000e-02 + 3.129900000000000e-02 + 4.617600000000000e-02 + 1.054100000000000e-01 + 2.103400000000000e-01 + 3.419600000000000e-01 + 4.667300000000000e-01 + 5.495400000000000e-01 + 5.671500000000000e-01 + 5.161000000000000e-01 + 4.116700000000000e-01 + 2.794100000000000e-01 + 1.434400000000000e-01 + 1.765200000000000e-02 +-9.654500000000001e-02 +-2.052900000000000e-01 +-3.135300000000000e-01 +-4.179500000000000e-01 +-5.061000000000000e-01 +-5.626300000000000e-01 +-5.789200000000000e-01 +-5.598800000000000e-01 +-5.225900000000000e-01 +-4.864500000000000e-01 +-4.601200000000000e-01 +-4.334600000000000e-01 +-3.809900000000000e-01 +-2.764500000000000e-01 +-1.109100000000000e-01 + 9.625700000000000e-02 + 3.013200000000000e-01 + 4.540900000000000e-01 + 5.203100000000001e-01 + 4.961200000000000e-01 + 4.066900000000000e-01 + 2.911300000000000e-01 + 1.836000000000000e-01 + 1.023000000000000e-01 + 5.123600000000000e-02 + 3.026600000000000e-02 + 4.367600000000000e-02 + 9.963700000000000e-02 + 2.012300000000000e-01 + 3.369800000000000e-01 + 4.795400000000000e-01 + 5.949400000000000e-01 + 6.561200000000000e-01 + 6.517100000000000e-01 + 5.847900000000000e-01 + 4.646300000000000e-01 + 2.997200000000000e-01 + 9.789100000000001e-02 +-1.278700000000000e-01 +-3.556700000000000e-01 +-5.592500000000000e-01 +-7.196900000000001e-01 +-8.353200000000000e-01 +-9.205600000000000e-01 +-9.923200000000000e-01 +-1.052900000000000e+00 +-1.082800000000000e+00 +-1.049500000000000e+00 +-9.279500000000001e-01 +-7.179200000000000e-01 +-4.459200000000000e-01 +-1.513500000000000e-01 + 1.331900000000000e-01 + 3.934000000000000e-01 + 6.301300000000000e-01 + 8.463800000000000e-01 + 1.036000000000000e+00 + 1.182300000000000e+00 + 1.265500000000000e+00 + 1.271800000000000e+00 + 1.195900000000000e+00 + 1.037700000000000e+00 + 8.000200000000000e-01 + 4.915800000000000e-01 + 1.360300000000000e-01 +-2.226600000000000e-01 +-5.265000000000000e-01 +-7.228400000000000e-01 +-7.874000000000000e-01 +-7.371799999999999e-01 +-6.241700000000000e-01 +-5.122500000000000e-01 +-4.494500000000000e-01 +-4.497000000000000e-01 +-4.919600000000000e-01 +-5.345100000000000e-01 +-5.353900000000000e-01 +-4.689900000000000e-01 +-3.330200000000000e-01 +-1.455000000000000e-01 + 6.437600000000000e-02 + 2.665100000000000e-01 + 4.372600000000000e-01 + 5.619200000000000e-01 + 6.333200000000000e-01 + 6.493700000000000e-01 + 6.125000000000000e-01 + 5.314700000000000e-01 + 4.229400000000000e-01 + 3.087700000000000e-01 + 2.079300000000000e-01 + 1.267000000000000e-01 + 5.458400000000000e-02 +-2.929100000000000e-02 +-1.416100000000000e-01 +-2.814500000000000e-01 +-4.279300000000000e-01 +-5.512200000000000e-01 +-6.288100000000000e-01 +-6.547100000000000e-01 +-6.344500000000000e-01 +-5.717000000000000e-01 +-4.596800000000000e-01 +-2.879000000000000e-01 +-6.103200000000000e-02 + 1.862800000000000e-01 + 3.947100000000000e-01 + 5.081500000000000e-01 + 5.076200000000000e-01 + 4.268400000000000e-01 + 3.351600000000000e-01 + 2.962600000000000e-01 + 3.291600000000000e-01 + 3.974400000000000e-01 + 4.337100000000000e-01 + 3.823100000000000e-01 + 2.319100000000000e-01 + 1.893000000000000e-02 +-1.960500000000000e-01 +-3.594200000000000e-01 +-4.429100000000000e-01 +-4.426900000000000e-01 +-3.680800000000000e-01 +-2.341600000000000e-01 +-6.383800000000001e-02 + 1.070500000000000e-01 + 2.330600000000000e-01 + 2.750600000000000e-01 + 2.204300000000000e-01 + 9.280800000000000e-02 +-5.764400000000000e-02 +-1.788500000000000e-01 +-2.411200000000000e-01 +-2.465600000000000e-01 +-2.200100000000000e-01 +-1.898200000000000e-01 +-1.719000000000000e-01 +-1.646400000000000e-01 +-1.539400000000000e-01 +-1.217100000000000e-01 +-5.294300000000000e-02 + 5.917900000000000e-02 + 2.083900000000000e-01 + 3.715300000000000e-01 + 5.100900000000000e-01 + 5.810200000000000e-01 + 5.545500000000000e-01 + 4.300100000000000e-01 + 2.387600000000000e-01 + 3.075000000000000e-02 +-1.484500000000000e-01 +-2.759400000000000e-01 +-3.545500000000000e-01 +-4.006500000000000e-01 +-4.274200000000000e-01 +-4.361100000000000e-01 +-4.207500000000000e-01 +-3.802200000000000e-01 +-3.261000000000000e-01 +-2.785000000000000e-01 +-2.521800000000000e-01 +-2.434200000000000e-01 +-2.287000000000000e-01 +-1.773500000000000e-01 +-7.083100000000001e-02 + 8.418600000000000e-02 + 2.575000000000000e-01 + 4.110300000000000e-01 + 5.186100000000000e-01 + 5.778200000000000e-01 + 6.068800000000000e-01 + 6.292000000000000e-01 + 6.554200000000000e-01 + 6.742100000000000e-01 + 6.578400000000000e-01 + 5.791900000000000e-01 + 4.300000000000000e-01 + 2.291300000000000e-01 + 1.529700000000000e-02 +-1.717400000000000e-01 +-3.102000000000000e-01 +-4.040500000000000e-01 +-4.748400000000000e-01 +-5.433700000000000e-01 +-6.131300000000000e-01 +-6.663700000000000e-01 +-6.749300000000000e-01 +-6.187600000000000e-01 +-4.999800000000000e-01 +-3.444900000000000e-01 +-1.907500000000000e-01 +-7.347800000000000e-02 +-1.099000000000000e-02 +-1.412400000000000e-03 +-2.692100000000000e-02 +-6.184200000000000e-02 +-8.081400000000000e-02 +-6.540600000000001e-02 +-8.821700000000000e-03 + 8.214600000000000e-02 + 1.893100000000000e-01 + 2.896900000000000e-01 + 3.638400000000000e-01 + 4.014900000000000e-01 + 4.012800000000000e-01 + 3.657900000000000e-01 + 2.968000000000000e-01 + 1.957200000000000e-01 + 6.900400000000000e-02 +-6.631200000000000e-02 +-1.835000000000000e-01 +-2.551000000000000e-01 +-2.649300000000000e-01 +-2.145500000000000e-01 +-1.195500000000000e-01 + 1.197500000000000e-03 + 1.346300000000000e-01 + 2.735800000000000e-01 + 4.088200000000000e-01 + 5.218600000000000e-01 + 5.872500000000000e-01 + 5.858200000000000e-01 + 5.195000000000000e-01 + 4.149500000000000e-01 + 3.101100000000000e-01 + 2.303300000000000e-01 + 1.703200000000000e-01 + 9.542600000000000e-02 +-3.653500000000000e-02 +-2.463100000000000e-01 +-5.156100000000000e-01 +-7.922300000000000e-01 +-1.014300000000000e+00 +-1.138500000000000e+00 +-1.155600000000000e+00 +-1.087000000000000e+00 +-9.662900000000000e-01 +-8.203100000000000e-01 +-6.582900000000000e-01 +-4.736900000000000e-01 +-2.540600000000000e-01 + 7.553300000000000e-03 + 3.046400000000000e-01 + 6.143700000000000e-01 + 8.999800000000000e-01 + 1.118200000000000e+00 + 1.230500000000000e+00 + 1.216500000000000e+00 + 1.082500000000000e+00 + 8.627899999999999e-01 + 6.087600000000000e-01 + 3.724100000000000e-01 + 1.892900000000000e-01 + 6.931200000000000e-02 +-1.578900000000000e-03 +-5.079600000000000e-02 +-1.051000000000000e-01 +-1.791000000000000e-01 +-2.702000000000000e-01 +-3.613500000000000e-01 +-4.301000000000000e-01 +-4.604500000000000e-01 +-4.521100000000000e-01 +-4.219900000000000e-01 +-3.955900000000000e-01 +-3.916200000000000e-01 +-4.085700000000000e-01 +-4.224000000000000e-01 +-3.990700000000000e-01 +-3.161300000000000e-01 +-1.800100000000000e-01 +-2.703600000000000e-02 + 9.456700000000000e-02 + 1.517100000000000e-01 + 1.458600000000000e-01 + 1.123700000000000e-01 + 9.996800000000000e-02 + 1.434100000000000e-01 + 2.457600000000000e-01 + 3.798000000000000e-01 + 5.048700000000000e-01 + 5.866800000000000e-01 + 6.080700000000000e-01 + 5.679500000000000e-01 + 4.740700000000000e-01 + 3.384800000000000e-01 + 1.784100000000000e-01 + 1.840400000000000e-02 +-1.131900000000000e-01 +-1.951400000000000e-01 +-2.255300000000000e-01 +-2.250900000000000e-01 +-2.269900000000000e-01 +-2.578300000000000e-01 +-3.225700000000000e-01 +-4.037500000000000e-01 +-4.752900000000000e-01 +-5.201600000000000e-01 +-5.386200000000000e-01 +-5.411899999999999e-01 +-5.330100000000000e-01 +-5.034300000000000e-01 +-4.302100000000000e-01 +-2.963900000000000e-01 +-1.065900000000000e-01 + 1.102500000000000e-01 + 3.151100000000000e-01 + 4.801200000000000e-01 + 6.013300000000000e-01 + 6.937500000000000e-01 + 7.727400000000000e-01 + 8.359799999999999e-01 + 8.599100000000000e-01 + 8.137900000000000e-01 + 6.816100000000000e-01 + 4.765500000000000e-01 + 2.380700000000000e-01 + 1.351100000000000e-02 +-1.642000000000000e-01 +-2.896200000000000e-01 +-3.820700000000000e-01 +-4.704800000000000e-01 +-5.747000000000000e-01 +-6.929999999999999e-01 +-8.008100000000000e-01 +-8.603200000000000e-01 +-8.365500000000000e-01 +-7.133699999999999e-01 +-5.027400000000000e-01 +-2.425400000000000e-01 + 1.688500000000000e-02 + 2.319700000000000e-01 + 3.814400000000000e-01 + 4.698000000000000e-01 + 5.174800000000001e-01 + 5.442600000000000e-01 + 5.570600000000000e-01 + 5.496500000000000e-01 + 5.130500000000000e-01 + 4.471700000000000e-01 + 3.638700000000000e-01 + 2.785400000000000e-01 + 1.970500000000000e-01 + 1.092600000000000e-01 +-4.249900000000000e-03 +-1.555900000000000e-01 +-3.345500000000000e-01 +-5.060000000000000e-01 +-6.225100000000000e-01 +-6.448700000000001e-01 +-5.587700000000000e-01 +-3.795400000000000e-01 +-1.450800000000000e-01 + 9.705400000000000e-02 + 3.016800000000000e-01 + 4.342900000000000e-01 + 4.764500000000000e-01 + 4.291600000000000e-01 + 3.130400000000000e-01 + 1.624500000000000e-01 + 1.360400000000000e-02 +-1.090400000000000e-01 +-2.005900000000000e-01 +-2.726800000000000e-01 +-3.410600000000000e-01 +-4.116300000000000e-01 +-4.739800000000000e-01 +-5.063700000000000e-01 +-4.884400000000000e-01 +-4.132700000000000e-01 +-2.913700000000000e-01 +-1.452800000000000e-01 + 1.083800000000000e-03 + 1.317100000000000e-01 + 2.418800000000000e-01 + 3.355600000000000e-01 + 4.196500000000000e-01 + 4.987400000000000e-01 + 5.726500000000000e-01 + 6.370100000000000e-01 + 6.855300000000000e-01 + 7.120200000000000e-01 + 7.103500000000000e-01 + 6.724500000000000e-01 + 5.864600000000000e-01 + 4.386600000000000e-01 + 2.214100000000000e-01 +-5.527100000000000e-02 +-3.554700000000000e-01 +-6.209100000000000e-01 +-7.892500000000000e-01 +-8.209400000000000e-01 +-7.205400000000000e-01 +-5.391200000000000e-01 +-3.541000000000000e-01 +-2.360500000000000e-01 +-2.200500000000000e-01 +-2.958900000000000e-01 +-4.195300000000000e-01 +-5.357400000000000e-01 +-5.980000000000000e-01 +-5.775700000000000e-01 +-4.634900000000000e-01 +-2.611500000000000e-01 + 6.182700000000000e-03 + 2.957100000000000e-01 + 5.507400000000000e-01 + 7.170700000000000e-01 + 7.645900000000000e-01 + 7.014500000000000e-01 + 5.705500000000000e-01 + 4.285800000000000e-01 + 3.192200000000000e-01 + 2.557100000000000e-01 + 2.212800000000000e-01 + 1.843500000000000e-01 + 1.172400000000000e-01 + 8.319399999999999e-03 +-1.358600000000000e-01 +-2.945000000000000e-01 +-4.376700000000000e-01 +-5.312600000000000e-01 +-5.439000000000001e-01 +-4.572600000000000e-01 +-2.764700000000000e-01 +-3.346400000000000e-02 + 2.214300000000000e-01 + 4.375800000000000e-01 + 5.822800000000000e-01 + 6.489500000000000e-01 + 6.511900000000000e-01 + 6.081600000000000e-01 + 5.316500000000000e-01 + 4.228200000000000e-01 + 2.789400000000000e-01 + 1.033300000000000e-01 +-8.905500000000000e-02 +-2.743400000000000e-01 +-4.281400000000000e-01 +-5.344800000000000e-01 +-5.907300000000000e-01 +-6.070200000000000e-01 +-6.014600000000000e-01 +-5.928099999999999e-01 +-5.930000000000000e-01 +-6.019300000000000e-01 +-6.073700000000000e-01 +-5.909900000000000e-01 +-5.381600000000000e-01 +-4.459200000000000e-01 +-3.236800000000000e-01 +-1.857900000000000e-01 +-4.107600000000000e-02 + 1.126000000000000e-01 + 2.840500000000000e-01 + 4.771700000000000e-01 + 6.806700000000000e-01 + 8.667500000000000e-01 + 1.000300000000000e+00 + 1.052600000000000e+00 + 1.011300000000000e+00 + 8.816300000000000e-01 + 6.826300000000000e-01 + 4.421500000000000e-01 + 1.945800000000000e-01 +-2.165400000000000e-02 +-1.713300000000000e-01 +-2.347300000000000e-01 +-2.188200000000000e-01 +-1.577400000000000e-01 +-9.858400000000000e-02 +-7.841500000000000e-02 +-1.064600000000000e-01 +-1.631300000000000e-01 +-2.165400000000000e-01 +-2.450700000000000e-01 +-2.503900000000000e-01 +-2.527400000000000e-01 +-2.734500000000000e-01 +-3.182400000000000e-01 +-3.729700000000000e-01 +-4.135500000000000e-01 +-4.210000000000000e-01 +-3.907500000000000e-01 +-3.311800000000000e-01 +-2.552900000000000e-01 +-1.737600000000000e-01 +-9.422600000000000e-02 +-2.486300000000000e-02 + 2.339500000000000e-02 + 3.995800000000000e-02 + 2.120200000000000e-02 +-2.478500000000000e-02 +-7.938800000000000e-02 +-1.198100000000000e-01 +-1.261000000000000e-01 +-8.510100000000000e-02 + 8.623100000000000e-03 + 1.518600000000000e-01 + 3.300000000000000e-01 + 5.147200000000000e-01 + 6.670100000000000e-01 + 7.483400000000000e-01 + 7.364600000000000e-01 + 6.370400000000001e-01 + 4.829400000000000e-01 + 3.195100000000000e-01 + 1.834000000000000e-01 + 8.675200000000000e-02 + 1.544900000000000e-02 +-5.821000000000000e-02 +-1.564400000000000e-01 +-2.811900000000000e-01 +-4.111100000000000e-01 +-5.106100000000000e-01 +-5.457600000000000e-01 +-4.991800000000000e-01 +-3.778000000000000e-01 +-2.104400000000000e-01 +-3.686700000000000e-02 + 1.070700000000000e-01 + 2.017900000000000e-01 + 2.483500000000000e-01 + 2.631300000000000e-01 + 2.660400000000000e-01 + 2.686500000000000e-01 + 2.685000000000000e-01 + 2.517700000000000e-01 + 2.013800000000000e-01 + 1.057400000000000e-01 +-3.606900000000000e-02 +-2.128000000000000e-01 +-4.021700000000000e-01 +-5.734399999999999e-01 +-6.927600000000000e-01 +-7.323000000000000e-01 +-6.813500000000000e-01 +-5.537300000000001e-01 +-3.850700000000000e-01 +-2.186600000000000e-01 +-8.630699999999999e-02 + 4.602700000000000e-03 + 6.922800000000000e-02 + 1.298700000000000e-01 + 1.977200000000000e-01 + 2.646600000000000e-01 + 3.107100000000000e-01 + 3.209700000000000e-01 + 2.988400000000000e-01 + 2.654800000000000e-01 + 2.460300000000000e-01 + 2.533300000000000e-01 + 2.813100000000000e-01 + 3.124300000000000e-01 + 3.326300000000000e-01 + 3.419900000000000e-01 + 3.532000000000000e-01 + 3.797900000000000e-01 + 4.234900000000000e-01 + 4.698500000000000e-01 + 4.944500000000000e-01 + 4.743600000000000e-01 + 3.972200000000000e-01 + 2.638800000000000e-01 + 8.611300000000000e-02 +-1.167600000000000e-01 +-3.202200000000000e-01 +-4.973600000000000e-01 +-6.244700000000000e-01 +-6.886800000000000e-01 +-6.933800000000000e-01 +-6.566000000000000e-01 +-6.017800000000000e-01 +-5.459900000000000e-01 +-4.930000000000000e-01 +-4.353300000000000e-01 +-3.631100000000000e-01 +-2.728600000000000e-01 +-1.703700000000000e-01 +-6.721100000000001e-02 + 2.479700000000000e-02 + 9.667199999999999e-02 + 1.419100000000000e-01 + 1.560500000000000e-01 + 1.392700000000000e-01 + 1.012400000000000e-01 + 6.290200000000000e-02 + 5.023900000000000e-02 + 8.102900000000000e-02 + 1.522900000000000e-01 + 2.380500000000000e-01 + 3.013000000000000e-01 + 3.140000000000000e-01 + 2.727000000000000e-01 + 1.996100000000000e-01 + 1.285700000000000e-01 + 8.572900000000000e-02 + 7.751900000000000e-02 + 9.241900000000000e-02 + 1.127200000000000e-01 + 1.261700000000000e-01 + 1.294600000000000e-01 + 1.237800000000000e-01 + 1.093600000000000e-01 + 8.597399999999999e-02 + 5.927500000000000e-02 + 4.589000000000000e-02 + 6.916600000000001e-02 + 1.447300000000000e-01 + 2.646000000000000e-01 + 3.924700000000000e-01 + 4.768600000000000e-01 + 4.764000000000000e-01 + 3.820300000000000e-01 + 2.214000000000000e-01 + 4.181700000000000e-02 +-1.174100000000000e-01 +-2.456100000000000e-01 +-3.612700000000000e-01 +-4.932300000000000e-01 +-6.556999999999999e-01 +-8.337500000000000e-01 +-9.880500000000000e-01 +-1.074700000000000e+00 +-1.067300000000000e+00 +-9.674500000000000e-01 +-7.999500000000000e-01 +-5.976500000000000e-01 +-3.859600000000000e-01 +-1.758700000000000e-01 + 3.288200000000000e-02 + 2.425300000000000e-01 + 4.485000000000000e-01 + 6.358400000000000e-01 + 7.824800000000000e-01 + 8.676000000000000e-01 + 8.815200000000000e-01 + 8.327200000000000e-01 + 7.478600000000000e-01 + 6.631500000000000e-01 + 6.093400000000000e-01 + 5.969700000000000e-01 + 6.099599999999999e-01 + 6.124100000000000e-01 + 5.661300000000000e-01 + 4.499600000000000e-01 + 2.699400000000000e-01 + 5.469500000000000e-02 +-1.604100000000000e-01 +-3.504200000000000e-01 +-5.087800000000000e-01 +-6.427300000000000e-01 +-7.606700000000000e-01 +-8.610600000000000e-01 +-9.298700000000000e-01 +-9.473700000000000e-01 +-8.989200000000001e-01 +-7.831200000000000e-01 +-6.134100000000000e-01 +-4.135700000000000e-01 +-2.103100000000000e-01 +-2.594300000000000e-02 + 1.268500000000000e-01 + 2.469900000000000e-01 + 3.426400000000000e-01 + 4.245700000000000e-01 + 4.975600000000000e-01 + 5.547500000000000e-01 + 5.795100000000000e-01 + 5.553800000000000e-01 + 4.788500000000000e-01 + 3.664200000000000e-01 + 2.501800000000000e-01 + 1.633500000000000e-01 + 1.243400000000000e-01 + 1.288500000000000e-01 + 1.542700000000000e-01 + 1.723000000000000e-01 + 1.611900000000000e-01 + 1.114600000000000e-01 + 2.504200000000000e-02 +-8.744399999999999e-02 +-2.076700000000000e-01 +-3.102100000000000e-01 +-3.673800000000000e-01 +-3.605500000000000e-01 +-2.928400000000000e-01 +-1.935500000000000e-01 +-1.073700000000000e-01 +-7.184599999999999e-02 +-9.650200000000000e-02 +-1.581100000000000e-01 +-2.165000000000000e-01 +-2.408100000000000e-01 +-2.279500000000000e-01 +-2.007200000000000e-01 +-1.875700000000000e-01 +-1.995300000000000e-01 +-2.212400000000000e-01 +-2.216700000000000e-01 +-1.752800000000000e-01 +-7.751000000000000e-02 + 5.555500000000000e-02 + 2.001800000000000e-01 + 3.382100000000000e-01 + 4.600800000000000e-01 + 5.576600000000000e-01 + 6.167700000000000e-01 + 6.192700000000000e-01 + 5.549900000000000e-01 + 4.338300000000000e-01 + 2.858400000000000e-01 + 1.466400000000000e-01 + 3.740400000000000e-02 +-4.554300000000000e-02 +-1.230700000000000e-01 +-2.127900000000000e-01 +-3.110900000000000e-01 +-3.911900000000000e-01 +-4.189500000000000e-01 +-3.750200000000000e-01 +-2.678600000000000e-01 +-1.294400000000000e-01 + 1.865200000000000e-03 + 9.897700000000000e-02 + 1.535500000000000e-01 + 1.715500000000000e-01 + 1.634900000000000e-01 + 1.375500000000000e-01 + 9.877900000000001e-02 + 5.171000000000000e-02 + 1.553700000000000e-03 +-4.757200000000000e-02 +-9.480700000000000e-02 +-1.416900000000000e-01 +-1.881900000000000e-01 +-2.296000000000000e-01 +-2.584000000000000e-01 +-2.710300000000000e-01 +-2.737900000000000e-01 +-2.813400000000000e-01 +-3.059200000000000e-01 +-3.435300000000000e-01 +-3.677400000000000e-01 +-3.381100000000000e-01 +-2.210300000000000e-01 +-1.118000000000000e-02 + 2.597100000000000e-01 + 5.332100000000000e-01 + 7.483000000000000e-01 + 8.656100000000000e-01 + 8.785100000000000e-01 + 8.067100000000000e-01 + 6.786200000000000e-01 + 5.150300000000000e-01 + 3.236800000000000e-01 + 1.061400000000000e-01 +-1.302800000000000e-01 +-3.653100000000000e-01 +-5.688800000000001e-01 +-7.125700000000000e-01 +-7.814500000000000e-01 +-7.786700000000000e-01 +-7.203400000000000e-01 +-6.248000000000000e-01 +-5.034500000000000e-01 +-3.585300000000000e-01 +-1.879400000000000e-01 + 7.204000000000000e-03 + 2.176200000000000e-01 + 4.259800000000000e-01 + 6.110000000000000e-01 + 7.523300000000001e-01 + 8.342500000000000e-01 + 8.479900000000000e-01 + 7.936299999999999e-01 + 6.814500000000000e-01 + 5.309500000000000e-01 + 3.660900000000000e-01 + 2.075000000000000e-01 + 6.553800000000000e-02 +-6.125100000000000e-02 +-1.810700000000000e-01 +-3.003900000000000e-01 +-4.182100000000000e-01 +-5.270100000000000e-01 +-6.191500000000000e-01 +-6.928200000000000e-01 +-7.520100000000000e-01 +-8.001600000000000e-01 +-8.326800000000000e-01 +-8.353400000000000e-01 +-7.907200000000000e-01 +-6.887400000000000e-01 +-5.334900000000000e-01 +-3.417300000000000e-01 +-1.349200000000000e-01 + 6.861100000000001e-02 + 2.561200000000000e-01 + 4.180000000000000e-01 + 5.458700000000000e-01 + 6.355100000000000e-01 + 6.926500000000000e-01 + 7.345800000000000e-01 + 7.817400000000000e-01 + 8.419800000000000e-01 + 8.985500000000000e-01 + 9.135100000000000e-01 + 8.482900000000000e-01 + 6.896300000000000e-01 + 4.629600000000000e-01 + 2.219200000000000e-01 + 1.967100000000000e-02 +-1.193400000000000e-01 +-2.079400000000000e-01 +-2.799300000000000e-01 +-3.616200000000000e-01 +-4.517500000000000e-01 +-5.232800000000000e-01 +-5.437600000000000e-01 +-4.982600000000000e-01 +-3.988900000000000e-01 +-2.767400000000000e-01 +-1.654100000000000e-01 +-8.882100000000000e-02 +-5.925600000000000e-02 +-8.124099999999999e-02 +-1.525500000000000e-01 +-2.594100000000000e-01 +-3.720200000000000e-01 +-4.496200000000000e-01 +-4.577700000000000e-01 +-3.888700000000000e-01 +-2.708200000000000e-01 +-1.547700000000000e-01 +-8.736300000000000e-02 +-8.444699999999999e-02 +-1.234000000000000e-01 +-1.584000000000000e-01 +-1.475400000000000e-01 +-7.402200000000000e-02 + 5.063000000000000e-02 + 1.992600000000000e-01 + 3.459500000000000e-01 + 4.752200000000000e-01 + 5.808800000000000e-01 + 6.603400000000000e-01 + 7.121800000000000e-01 + 7.386600000000000e-01 + 7.481000000000000e-01 + 7.510000000000000e-01 + 7.498500000000000e-01 + 7.300800000000000e-01 + 6.615900000000000e-01 + 5.134100000000000e-01 + 2.739700000000000e-01 +-3.653800000000000e-02 +-3.709500000000000e-01 +-6.754700000000000e-01 +-9.130500000000000e-01 +-1.075000000000000e+00 +-1.173900000000000e+00 +-1.223800000000000e+00 +-1.221800000000000e+00 +-1.144200000000000e+00 +-9.619600000000000e-01 +-6.653000000000000e-01 +-2.817800000000000e-01 + 1.247700000000000e-01 + 4.769000000000000e-01 + 7.161800000000000e-01 + 8.278700000000000e-01 + 8.431300000000000e-01 + 8.170100000000000e-01 + 7.950000000000000e-01 + 7.878100000000000e-01 + 7.694900000000000e-01 + 6.992100000000000e-01 + 5.523500000000000e-01 + 3.405100000000000e-01 + 1.079900000000000e-01 +-9.239799999999999e-02 +-2.277700000000000e-01 +-2.999500000000000e-01 +-3.387300000000000e-01 +-3.806400000000000e-01 +-4.484100000000000e-01 +-5.429600000000000e-01 +-6.492500000000000e-01 +-7.472299999999999e-01 +-8.187800000000000e-01 +-8.474900000000000e-01 +-8.166300000000000e-01 +-7.112700000000000e-01 +-5.257100000000000e-01 +-2.703700000000000e-01 + 2.856800000000000e-02 + 3.377200000000000e-01 + 6.268700000000000e-01 + 8.730700000000000e-01 + 1.056500000000000e+00 + 1.154600000000000e+00 + 1.144200000000000e+00 + 1.013600000000000e+00 + 7.772400000000000e-01 + 4.801400000000000e-01 + 1.832500000000000e-01 +-6.181000000000000e-02 +-2.332800000000000e-01 +-3.403300000000000e-01 +-4.048600000000000e-01 +-4.387400000000000e-01 +-4.346500000000000e-01 +-3.772800000000000e-01 +-2.647500000000000e-01 +-1.211800000000000e-01 + 1.154900000000000e-02 + 9.780200000000000e-02 + 1.293400000000000e-01 + 1.269000000000000e-01 + 1.206200000000000e-01 + 1.246900000000000e-01 + 1.258600000000000e-01 + 9.447899999999999e-02 + 8.650100000000001e-03 +-1.275100000000000e-01 +-2.851700000000000e-01 +-4.293500000000000e-01 +-5.391300000000000e-01 +-6.140400000000000e-01 +-6.633900000000000e-01 +-6.891900000000000e-01 +-6.781900000000000e-01 +-6.099700000000000e-01 +-4.747400000000000e-01 +-2.864800000000000e-01 +-8.089399999999999e-02 + 1.012100000000000e-01 + 2.339500000000000e-01 + 3.173800000000000e-01 + 3.737300000000000e-01 + 4.327100000000000e-01 + 5.150600000000000e-01 + 6.224300000000000e-01 + 7.373100000000000e-01 + 8.313700000000001e-01 + 8.784800000000000e-01 + 8.669300000000000e-01 + 8.055700000000000e-01 + 7.199700000000000e-01 + 6.390000000000000e-01 + 5.778799999999999e-01 + 5.277100000000000e-01 + 4.589500000000000e-01 + 3.381400000000000e-01 + 1.478400000000000e-01 +-1.033400000000000e-01 +-3.869100000000000e-01 +-6.715200000000000e-01 +-9.371300000000000e-01 +-1.175500000000000e+00 +-1.377500000000000e+00 +-1.519000000000000e+00 +-1.560500000000000e+00 +-1.464400000000000e+00 +-1.219100000000000e+00 +-8.545100000000000e-01 +-4.354600000000000e-01 +-3.698100000000000e-02 + 2.834400000000000e-01 + 5.006800000000000e-01 + 6.182000000000000e-01 + 6.531600000000000e-01 + 6.237300000000000e-01 + 5.464599999999999e-01 + 4.411800000000000e-01 + 3.346500000000000e-01 + 2.564700000000000e-01 + 2.290400000000000e-01 + 2.591600000000000e-01 + 3.377200000000000e-01 + 4.466500000000000e-01 + 5.666500000000000e-01 + 6.795200000000000e-01 + 7.655200000000000e-01 + 8.015500000000000e-01 + 7.659400000000000e-01 + 6.489500000000000e-01 + 4.613600000000000e-01 + 2.331900000000000e-01 + 1.272700000000000e-03 +-2.069200000000000e-01 +-3.822600000000000e-01 +-5.302600000000000e-01 +-6.584000000000000e-01 +-7.649100000000000e-01 +-8.374900000000000e-01 +-8.622200000000000e-01 +-8.349900000000000e-01 +-7.661900000000000e-01 +-6.750500000000000e-01 +-5.776900000000000e-01 +-4.776200000000000e-01 +-3.647800000000000e-01 +-2.235900000000000e-01 +-4.496800000000000e-02 + 1.643300000000000e-01 + 3.793700000000000e-01 + 5.628400000000000e-01 + 6.770400000000000e-01 + 6.981100000000000e-01 + 6.270800000000000e-01 + 4.918800000000000e-01 + 3.375900000000000e-01 + 2.076100000000000e-01 + 1.249000000000000e-01 + 8.404900000000000e-02 + 5.975400000000000e-02 + 2.695000000000000e-02 +-2.036100000000000e-02 +-6.454699999999999e-02 +-7.751600000000000e-02 +-4.259300000000000e-02 + 3.036900000000000e-02 + 1.074900000000000e-01 + 1.492800000000000e-01 + 1.322400000000000e-01 + 5.945900000000000e-02 +-4.530600000000000e-02 +-1.535100000000000e-01 +-2.454600000000000e-01 +-3.132900000000000e-01 +-3.548500000000000e-01 +-3.669200000000000e-01 +-3.449900000000000e-01 +-2.896100000000000e-01 +-2.122200000000000e-01 +-1.333600000000000e-01 +-7.271600000000000e-02 +-3.769200000000000e-02 +-1.910200000000000e-02 + 2.810400000000000e-03 + 4.643500000000000e-02 + 1.190300000000000e-01 + 2.143800000000000e-01 + 3.168000000000000e-01 + 4.064700000000000e-01 + 4.626800000000000e-01 + 4.659500000000000e-01 + 4.028000000000000e-01 + 2.739000000000000e-01 + 1.011100000000000e-01 +-7.444900000000000e-02 +-2.063600000000000e-01 +-2.636700000000000e-01 +-2.458800000000000e-01 +-1.817200000000000e-01 +-1.109300000000000e-01 +-6.067100000000000e-02 +-3.183300000000000e-02 +-4.335300000000000e-03 + 4.305500000000000e-02 + 1.129300000000000e-01 + 1.836300000000000e-01 + 2.216300000000000e-01 + 2.028500000000000e-01 + 1.281500000000000e-01 + 2.314300000000000e-02 +-7.671400000000000e-02 +-1.448400000000000e-01 +-1.745400000000000e-01 +-1.771600000000000e-01 +-1.713400000000000e-01 +-1.720600000000000e-01 +-1.860200000000000e-01 +-2.139700000000000e-01 +-2.554700000000000e-01 +-3.108900000000000e-01 +-3.789600000000000e-01 +-4.521900000000000e-01 +-5.145800000000000e-01 +-5.442100000000000e-01 +-5.203700000000000e-01 +-4.317100000000000e-01 +-2.812500000000000e-01 +-8.560800000000000e-02 + 1.313300000000000e-01 + 3.471600000000000e-01 + 5.474300000000000e-01 + 7.260600000000000e-01 + 8.794600000000000e-01 + 9.982400000000000e-01 + 1.063200000000000e+00 + 1.050600000000000e+00 + 9.456500000000000e-01 + 7.573600000000000e-01 + 5.228699999999999e-01 + 2.966600000000000e-01 + 1.271600000000000e-01 + 3.366000000000000e-02 +-2.381600000000000e-03 +-2.540500000000000e-02 +-7.978200000000001e-02 +-1.856900000000000e-01 +-3.315200000000000e-01 +-4.863600000000000e-01 +-6.225500000000000e-01 +-7.319700000000000e-01 +-8.252100000000000e-01 +-9.154800000000000e-01 +-1.000700000000000e+00 +-1.057800000000000e+00 +-1.054400000000000e+00 +-9.690700000000000e-01 +-8.054300000000000e-01 +-5.904700000000001e-01 +-3.579500000000000e-01 +-1.296100000000000e-01 + 9.229000000000000e-02 + 3.166400000000000e-01 + 5.462600000000000e-01 + 7.653600000000000e-01 + 9.413800000000000e-01 + 1.040500000000000e+00 + 1.046600000000000e+00 + 9.711100000000000e-01 + 8.476100000000000e-01 + 7.151800000000000e-01 + 6.003100000000000e-01 + 5.073900000000000e-01 + 4.218000000000000e-01 + 3.218300000000000e-01 + 1.924100000000000e-01 + 3.376500000000000e-02 +-1.381000000000000e-01 +-2.981400000000000e-01 +-4.226100000000000e-01 +-4.983400000000000e-01 +-5.270400000000000e-01 +-5.223800000000000e-01 +-5.012400000000000e-01 +-4.731300000000000e-01 +-4.342200000000000e-01 +-3.702400000000000e-01 +-2.678900000000000e-01 +-1.290700000000000e-01 + 2.119800000000000e-02 + 1.394000000000000e-01 + 1.807900000000000e-01 + 1.215900000000000e-01 +-2.520000000000000e-02 +-2.094600000000000e-01 +-3.610600000000000e-01 +-4.174500000000000e-01 +-3.495300000000000e-01 +-1.738500000000000e-01 + 5.465400000000000e-02 + 2.662700000000000e-01 + 4.054100000000000e-01 + 4.514100000000000e-01 + 4.215800000000000e-01 + 3.562900000000000e-01 + 2.949300000000000e-01 + 2.565000000000000e-01 + 2.349900000000000e-01 + 2.104100000000000e-01 + 1.665100000000000e-01 + 1.027700000000000e-01 + 3.294600000000000e-02 +-2.716000000000000e-02 +-7.230200000000001e-02 +-1.106500000000000e-01 +-1.548100000000000e-01 +-2.086800000000000e-01 +-2.611700000000000e-01 +-2.925700000000000e-01 +-2.885500000000000e-01 +-2.507500000000000e-01 +-1.949100000000000e-01 +-1.381300000000000e-01 +-8.553500000000000e-02 +-2.773100000000000e-02 + 4.812500000000000e-02 + 1.423300000000000e-01 + 2.348200000000000e-01 + 2.928300000000000e-01 + 2.893800000000000e-01 + 2.195000000000000e-01 + 1.030800000000000e-01 +-2.678500000000000e-02 +-1.404700000000000e-01 +-2.219400000000000e-01 +-2.675800000000000e-01 +-2.787400000000000e-01 +-2.568100000000000e-01 +-2.053700000000000e-01 +-1.354100000000000e-01 +-6.564800000000000e-02 +-1.419100000000000e-02 + 1.350000000000000e-02 + 3.040400000000000e-02 + 6.115900000000000e-02 + 1.262400000000000e-01 + 2.282700000000000e-01 + 3.502600000000000e-01 + 4.660800000000000e-01 + 5.539600000000000e-01 + 6.022700000000000e-01 + 6.049099999999999e-01 + 5.535700000000000e-01 + 4.372800000000000e-01 + 2.525400000000000e-01 + 1.652400000000000e-02 +-2.296800000000000e-01 +-4.343200000000000e-01 +-5.583600000000000e-01 +-5.935000000000000e-01 +-5.623300000000000e-01 +-5.009200000000000e-01 +-4.371300000000000e-01 +-3.801600000000000e-01 +-3.265800000000000e-01 +-2.746500000000000e-01 +-2.326600000000000e-01 +-2.134400000000000e-01 +-2.204500000000000e-01 +-2.386000000000000e-01 +-2.397000000000000e-01 +-1.996500000000000e-01 +-1.143700000000000e-01 +-2.172000000000000e-03 + 1.088800000000000e-01 + 1.979900000000000e-01 + 2.600000000000000e-01 + 3.000300000000000e-01 + 3.218500000000000e-01 + 3.221100000000000e-01 + 2.963900000000000e-01 + 2.514300000000000e-01 + 2.107600000000000e-01 + 2.058200000000000e-01 + 2.567800000000000e-01 + 3.571100000000000e-01 + 4.740600000000000e-01 + 5.658600000000000e-01 + 6.032600000000000e-01 + 5.803199999999999e-01 + 5.080200000000000e-01 + 3.979900000000000e-01 + 2.508100000000000e-01 + 5.874900000000000e-02 +-1.795800000000000e-01 +-4.453600000000000e-01 +-6.987200000000000e-01 +-8.930800000000000e-01 +-9.951800000000000e-01 +-9.974100000000000e-01 +-9.150300000000000e-01 +-7.721100000000000e-01 +-5.873800000000000e-01 +-3.694600000000000e-01 +-1.233900000000000e-01 + 1.386300000000000e-01 + 3.912900000000000e-01 + 5.997500000000000e-01 + 7.306300000000000e-01 + 7.635400000000000e-01 + 6.968900000000000e-01 + 5.462399999999999e-01 + 3.377900000000000e-01 + 1.014500000000000e-01 +-1.334400000000000e-01 +-3.392700000000000e-01 +-4.904200000000000e-01 +-5.649800000000000e-01 +-5.491000000000000e-01 +-4.426600000000000e-01 +-2.632400000000000e-01 +-4.478100000000000e-02 + 1.701200000000000e-01 + 3.422700000000000e-01 + 4.470000000000000e-01 + 4.790600000000000e-01 + 4.492000000000000e-01 + 3.750700000000000e-01 + 2.723700000000000e-01 + 1.512500000000000e-01 + 1.874200000000000e-02 +-1.163600000000000e-01 +-2.410900000000000e-01 +-3.407400000000000e-01 +-4.042000000000000e-01 +-4.278000000000000e-01 +-4.149900000000000e-01 +-3.725200000000000e-01 +-3.065100000000000e-01 +-2.212600000000000e-01 +-1.204000000000000e-01 +-8.060500000000000e-03 + 1.117000000000000e-01 + 2.362700000000000e-01 + 3.639100000000000e-01 + 4.899000000000000e-01 + 6.019800000000000e-01 + 6.798400000000000e-01 + 7.016000000000000e-01 + 6.549199999999999e-01 + 5.454200000000000e-01 + 3.961600000000000e-01 + 2.374500000000000e-01 + 9.366200000000000e-02 +-2.416500000000000e-02 +-1.158600000000000e-01 +-1.835900000000000e-01 +-2.259500000000000e-01 +-2.403700000000000e-01 +-2.319700000000000e-01 +-2.201300000000000e-01 +-2.346700000000000e-01 +-3.013400000000000e-01 +-4.252700000000000e-01 +-5.837400000000000e-01 +-7.342700000000000e-01 +-8.339200000000000e-01 +-8.584900000000000e-01 +-8.110100000000000e-01 +-7.161300000000000e-01 +-6.054900000000000e-01 +-5.027800000000000e-01 +-4.153500000000000e-01 +-3.344500000000000e-01 +-2.416800000000000e-01 +-1.185100000000000e-01 + 4.484900000000000e-02 + 2.436800000000000e-01 + 4.589200000000000e-01 + 6.638500000000001e-01 + 8.349700000000000e-01 + 9.612400000000000e-01 + 1.046100000000000e+00 + 1.100500000000000e+00 + 1.132600000000000e+00 + 1.140300000000000e+00 + 1.114500000000000e+00 + 1.047100000000000e+00 + 9.401100000000000e-01 + 8.046400000000000e-01 + 6.526800000000000e-01 + 4.878800000000000e-01 + 3.047600000000000e-01 + 9.792099999999999e-02 +-1.258700000000000e-01 +-3.442800000000000e-01 +-5.298700000000000e-01 +-6.682600000000000e-01 +-7.701800000000000e-01 +-8.664700000000000e-01 +-9.876500000000000e-01 +-1.141700000000000e+00 +-1.305900000000000e+00 +-1.438000000000000e+00 +-1.499800000000000e+00 +-1.475200000000000e+00 +-1.372200000000000e+00 +-1.211100000000000e+00 +-1.008600000000000e+00 +-7.726700000000000e-01 +-5.079500000000000e-01 +-2.250500000000000e-01 + 5.819200000000000e-02 + 3.262500000000000e-01 + 5.782300000000000e-01 + 8.304600000000000e-01 + 1.103100000000000e+00 + 1.398300000000000e+00 + 1.684400000000000e+00 + 1.900900000000000e+00 + 1.982800000000000e+00 + 1.891500000000000e+00 + 1.634100000000000e+00 + 1.260300000000000e+00 + 8.400900000000000e-01 + 4.371300000000000e-01 + 9.098000000000001e-02 +-1.846600000000000e-01 +-3.926800000000000e-01 +-5.416900000000000e-01 +-6.407300000000000e-01 +-6.996700000000000e-01 +-7.308500000000000e-01 +-7.473000000000000e-01 +-7.577800000000000e-01 +-7.624100000000000e-01 +-7.535100000000000e-01 +-7.223000000000001e-01 +-6.671700000000000e-01 +-5.977100000000000e-01 +-5.308500000000000e-01 +-4.811700000000000e-01 +-4.515700000000000e-01 +-4.308800000000000e-01 +-4.003300000000000e-01 +-3.448400000000000e-01 +-2.618800000000000e-01 +-1.617700000000000e-01 +-5.942700000000000e-02 + 3.663700000000000e-02 + 1.302300000000000e-01 + 2.339900000000000e-01 + 3.589800000000000e-01 + 5.047600000000000e-01 + 6.567400000000000e-01 + 7.922700000000000e-01 + 8.903600000000000e-01 + 9.378300000000001e-01 + 9.286100000000000e-01 + 8.588700000000000e-01 + 7.249700000000000e-01 + 5.280800000000000e-01 + 2.830600000000000e-01 + 2.342300000000000e-02 +-2.046100000000000e-01 +-3.587900000000000e-01 +-4.193200000000000e-01 +-3.978000000000000e-01 +-3.305800000000000e-01 +-2.604600000000000e-01 +-2.178400000000000e-01 +-2.115600000000000e-01 +-2.322800000000000e-01 +-2.629700000000000e-01 +-2.885600000000000e-01 +-3.001100000000000e-01 +-2.947900000000000e-01 +-2.754300000000000e-01 +-2.509300000000000e-01 +-2.353600000000000e-01 +-2.423000000000000e-01 +-2.755400000000000e-01 +-3.222400000000000e-01 +-3.553900000000000e-01 +-3.467200000000000e-01 +-2.828600000000000e-01 +-1.735900000000000e-01 +-4.562600000000000e-02 + 7.410400000000000e-02 + 1.735400000000000e-01 + 2.579400000000000e-01 + 3.383600000000000e-01 + 4.161000000000000e-01 + 4.762800000000000e-01 + 4.966000000000000e-01 + 4.649600000000000e-01 + 3.922400000000000e-01 + 3.096400000000000e-01 + 2.517900000000000e-01 + 2.370800000000000e-01 + 2.587500000000000e-01 + 2.916100000000000e-01 + 3.082900000000000e-01 + 2.929200000000000e-01 + 2.441600000000000e-01 + 1.684700000000000e-01 + 7.172500000000000e-02 +-4.310800000000000e-02 +-1.710300000000000e-01 +-2.982500000000000e-01 +-4.006400000000000e-01 +-4.504300000000000e-01 +-4.279800000000000e-01 +-3.323700000000000e-01 +-1.853500000000000e-01 +-2.688900000000000e-02 + 9.640700000000001e-02 + 1.466100000000000e-01 + 1.089000000000000e-01 +-7.440599999999999e-04 +-1.400300000000000e-01 +-2.582800000000000e-01 +-3.215900000000000e-01 +-3.319500000000000e-01 +-3.271400000000000e-01 +-3.579600000000000e-01 +-4.538200000000000e-01 +-5.978300000000000e-01 +-7.290200000000000e-01 +-7.729300000000000e-01 +-6.829400000000000e-01 +-4.662800000000000e-01 +-1.782700000000000e-01 + 1.106200000000000e-01 + 3.524200000000000e-01 + 5.394000000000000e-01 + 6.927300000000000e-01 + 8.336200000000000e-01 + 9.601900000000000e-01 + 1.046600000000000e+00 + 1.063300000000000e+00 + 1.000300000000000e+00 + 8.759700000000000e-01 + 7.249500000000000e-01 + 5.761100000000000e-01 + 4.386400000000000e-01 + 3.058000000000000e-01 + 1.711800000000000e-01 + 4.210300000000000e-02 +-6.199600000000000e-02 +-1.252000000000000e-01 +-1.517600000000000e-01 +-1.695300000000000e-01 +-2.164900000000000e-01 +-3.196200000000000e-01 +-4.810000000000000e-01 +-6.791500000000000e-01 +-8.821900000000000e-01 +-1.060900000000000e+00 +-1.193300000000000e+00 +-1.260300000000000e+00 +-1.243300000000000e+00 +-1.128100000000000e+00 +-9.172500000000000e-01 +-6.373400000000000e-01 +-3.347000000000000e-01 +-5.665900000000000e-02 + 1.693500000000000e-01 + 3.446400000000000e-01 + 4.895000000000000e-01 + 6.220100000000000e-01 + 7.415800000000000e-01 + 8.298400000000000e-01 + 8.679500000000000e-01 + 8.566600000000000e-01 + 8.226300000000000e-01 + 8.047800000000001e-01 + 8.294000000000000e-01 + 8.912099999999999e-01 + 9.537099999999999e-01 + 9.682200000000000e-01 + 8.989700000000000e-01 + 7.383100000000000e-01 + 5.043400000000000e-01 + 2.256300000000000e-01 +-7.459300000000001e-02 +-3.843700000000000e-01 +-6.970100000000000e-01 +-9.999700000000000e-01 +-1.267600000000000e+00 +-1.464000000000000e+00 +-1.554000000000000e+00 +-1.517700000000000e+00 +-1.360000000000000e+00 +-1.111000000000000e+00 +-8.171300000000000e-01 +-5.247000000000001e-01 +-2.634500000000000e-01 +-3.796000000000000e-02 + 1.679900000000000e-01 + 3.751000000000000e-01 + 5.887800000000000e-01 + 7.886100000000000e-01 + 9.352900000000000e-01 + 9.928800000000000e-01 + 9.530400000000000e-01 + 8.448200000000000e-01 + 7.219000000000000e-01 + 6.338900000000000e-01 + 5.995100000000000e-01 + 5.988900000000000e-01 + 5.891999999999999e-01 + 5.324400000000000e-01 + 4.167200000000000e-01 + 2.582100000000000e-01 + 8.553200000000000e-02 +-7.994400000000000e-02 +-2.334700000000000e-01 +-3.815100000000000e-01 +-5.286100000000000e-01 +-6.686299999999999e-01 +-7.864100000000001e-01 +-8.669000000000000e-01 +-9.025500000000000e-01 +-8.931500000000000e-01 +-8.401900000000000e-01 +-7.430800000000000e-01 +-6.025700000000001e-01 +-4.288700000000000e-01 +-2.461000000000000e-01 +-8.622199999999999e-02 + 2.618000000000000e-02 + 8.854500000000000e-02 + 1.235200000000000e-01 + 1.671200000000000e-01 + 2.484600000000000e-01 + 3.735100000000000e-01 + 5.219700000000000e-01 + 6.580600000000000e-01 + 7.476500000000000e-01 + 7.724000000000000e-01 + 7.348800000000000e-01 + 6.546300000000000e-01 + 5.584100000000000e-01 + 4.685900000000000e-01 + 3.937200000000000e-01 + 3.247500000000000e-01 + 2.399300000000000e-01 + 1.181500000000000e-01 +-4.518900000000000e-02 +-2.293800000000000e-01 +-3.944500000000000e-01 +-5.009600000000000e-01 +-5.321200000000000e-01 +-5.030700000000000e-01 +-4.496700000000000e-01 +-4.034500000000000e-01 +-3.704500000000000e-01 +-3.301000000000000e-01 +-2.556200000000000e-01 +-1.411300000000000e-01 +-1.395500000000000e-02 + 7.861899999999999e-02 + 9.996099999999999e-02 + 4.957800000000000e-02 +-3.597900000000000e-02 +-1.082500000000000e-01 +-1.397100000000000e-01 +-1.397200000000000e-01 +-1.417200000000000e-01 +-1.718400000000000e-01 +-2.233900000000000e-01 +-2.578200000000000e-01 +-2.323300000000000e-01 +-1.336200000000000e-01 + 8.169200000000000e-03 + 1.369200000000000e-01 + 2.080800000000000e-01 + 2.195300000000000e-01 + 2.134300000000000e-01 + 2.474000000000000e-01 + 3.549100000000000e-01 + 5.220000000000000e-01 + 6.951000000000001e-01 + 8.130200000000000e-01 + 8.399200000000000e-01 + 7.775600000000000e-01 + 6.516300000000000e-01 + 4.859900000000000e-01 + 2.861200000000000e-01 + 4.407800000000000e-02 +-2.404900000000000e-01 +-5.419700000000000e-01 +-8.098300000000000e-01 +-9.908600000000000e-01 +-1.057900000000000e+00 +-1.024200000000000e+00 +-9.331700000000001e-01 +-8.289400000000000e-01 +-7.299300000000000e-01 +-6.222299999999999e-01 +-4.770600000000000e-01 +-2.786100000000000e-01 +-4.146900000000000e-02 + 1.945400000000000e-01 + 3.877500000000000e-01 + 5.190900000000001e-01 + 6.003200000000000e-01 + 6.616600000000000e-01 + 7.287500000000000e-01 + 8.053000000000000e-01 + 8.718100000000000e-01 + 8.984000000000000e-01 + 8.609400000000000e-01 + 7.504100000000000e-01 + 5.729700000000000e-01 + 3.454700000000000e-01 + 9.216000000000001e-02 +-1.572500000000000e-01 +-3.717800000000000e-01 +-5.285400000000000e-01 +-6.234100000000000e-01 +-6.742300000000000e-01 +-7.104800000000000e-01 +-7.529800000000000e-01 +-7.968100000000000e-01 +-8.106500000000000e-01 +-7.554700000000000e-01 +-6.109400000000000e-01 +-3.913100000000000e-01 +-1.395800000000000e-01 + 9.604500000000001e-02 + 2.862900000000000e-01 + 4.291800000000000e-01 + 5.388200000000000e-01 + 6.257800000000000e-01 + 6.852400000000000e-01 + 7.013500000000000e-01 + 6.621100000000000e-01 + 5.706100000000000e-01 + 4.431600000000000e-01 + 2.967000000000000e-01 + 1.377000000000000e-01 +-3.683400000000000e-02 +-2.268200000000000e-01 +-4.164200000000000e-01 +-5.738900000000000e-01 +-6.664300000000000e-01 +-6.797400000000000e-01 +-6.271099999999999e-01 +-5.403800000000000e-01 +-4.487900000000000e-01 +-3.610800000000000e-01 +-2.632800000000000e-01 +-1.329100000000000e-01 + 4.195100000000000e-02 + 2.523900000000000e-01 + 4.731000000000000e-01 + 6.760900000000000e-01 + 8.422100000000000e-01 + 9.624800000000000e-01 + 1.030700000000000e+00 + 1.035300000000000e+00 + 9.592100000000000e-01 + 7.879100000000000e-01 + 5.212500000000000e-01 + 1.801000000000000e-01 +-1.963900000000000e-01 +-5.613600000000000e-01 +-8.727900000000000e-01 +-1.102100000000000e+00 +-1.236400000000000e+00 +-1.274700000000000e+00 +-1.222700000000000e+00 +-1.088300000000000e+00 +-8.805300000000000e-01 +-6.122200000000000e-01 +-3.031400000000000e-01 + 1.824600000000000e-02 + 3.176000000000000e-01 + 5.619000000000000e-01 + 7.278300000000000e-01 + 8.071100000000000e-01 + 8.057800000000001e-01 + 7.387000000000000e-01 + 6.232000000000000e-01 + 4.759300000000000e-01 + 3.135100000000000e-01 + 1.539500000000000e-01 + 1.506400000000000e-02 +-9.068700000000000e-02 +-1.614500000000000e-01 +-2.063800000000000e-01 +-2.393800000000000e-01 +-2.693600000000000e-01 +-2.936400000000000e-01 +-2.989200000000000e-01 +-2.691100000000000e-01 +-1.947100000000000e-01 +-7.794300000000000e-02 + 6.812600000000001e-02 + 2.242300000000000e-01 + 3.697000000000000e-01 + 4.858300000000000e-01 + 5.584500000000000e-01 + 5.808200000000000e-01 + 5.552600000000000e-01 + 4.910700000000000e-01 + 3.981000000000000e-01 + 2.798300000000000e-01 + 1.322800000000000e-01 +-4.838000000000000e-02 +-2.538900000000000e-01 +-4.577100000000000e-01 +-6.224600000000000e-01 +-7.187900000000000e-01 +-7.433700000000000e-01 +-7.215300000000000e-01 +-6.906099999999999e-01 +-6.741100000000000e-01 +-6.656800000000000e-01 +-6.352800000000000e-01 +-5.536200000000000e-01 +-4.166900000000000e-01 +-2.511900000000000e-01 +-9.635500000000000e-02 + 2.442200000000000e-02 + 1.203500000000000e-01 + 2.254000000000000e-01 + 3.714300000000000e-01 + 5.621200000000000e-01 + 7.664100000000000e-01 + 9.352900000000000e-01 + 1.028900000000000e+00 + 1.035100000000000e+00 + 9.686500000000000e-01 + 8.557600000000000e-01 + 7.169800000000000e-01 + 5.608800000000000e-01 + 3.894200000000000e-01 + 2.071200000000000e-01 + 2.522500000000000e-02 +-1.416900000000000e-01 +-2.821700000000000e-01 +-3.913000000000000e-01 +-4.692700000000000e-01 +-5.181600000000000e-01 +-5.412500000000000e-01 +-5.453100000000000e-01 +-5.423200000000000e-01 +-5.469800000000000e-01 +-5.701600000000000e-01 +-6.124900000000000e-01 +-6.629200000000000e-01 +-7.030300000000000e-01 +-7.137800000000000e-01 +-6.801700000000001e-01 +-5.927400000000000e-01 +-4.479900000000000e-01 +-2.503900000000000e-01 +-1.515600000000000e-02 + 2.318800000000000e-01 + 4.606800000000000e-01 + 6.475900000000000e-01 + 7.836700000000000e-01 + 8.740900000000000e-01 + 9.284500000000000e-01 + 9.490900000000000e-01 + 9.267000000000000e-01 + 8.473500000000000e-01 + 7.059500000000000e-01 + 5.156800000000000e-01 + 3.061000000000000e-01 + 1.107000000000000e-01 +-4.717800000000000e-02 +-1.608500000000000e-01 +-2.364500000000000e-01 +-2.837100000000000e-01 +-3.093500000000000e-01 +-3.172700000000000e-01 +-3.134100000000000e-01 +-3.093400000000000e-01 +-3.205800000000000e-01 +-3.603400000000000e-01 +-4.326900000000000e-01 +-5.289100000000000e-01 +-6.282799999999999e-01 +-7.025500000000000e-01 +-7.233400000000000e-01 +-6.716400000000000e-01 +-5.471200000000001e-01 +-3.721100000000000e-01 +-1.850700000000000e-01 +-2.341600000000000e-02 + 9.639499999999999e-02 + 1.885500000000000e-01 + 2.883600000000000e-01 + 4.269100000000000e-01 + 6.055700000000001e-01 + 7.885700000000000e-01 + 9.206100000000000e-01 + 9.591000000000000e-01 + 8.994799999999999e-01 + 7.765500000000000e-01 + 6.415300000000000e-01 + 5.319199999999999e-01 + 4.546800000000000e-01 + 3.921800000000000e-01 + 3.222500000000000e-01 + 2.344300000000000e-01 + 1.300900000000000e-01 + 9.417399999999999e-03 +-1.396600000000000e-01 +-3.373200000000000e-01 +-5.926200000000000e-01 +-8.837600000000000e-01 +-1.155100000000000e+00 +-1.337200000000000e+00 +-1.378700000000000e+00 +-1.272400000000000e+00 +-1.057600000000000e+00 +-8.000800000000000e-01 +-5.619100000000000e-01 +-3.770900000000000e-01 +-2.446100000000000e-01 +-1.377100000000000e-01 +-2.207800000000000e-02 + 1.267300000000000e-01 + 3.126300000000000e-01 + 5.180100000000000e-01 + 7.121300000000000e-01 + 8.654700000000000e-01 + 9.639700000000000e-01 + 1.015000000000000e+00 + 1.040300000000000e+00 + 1.058900000000000e+00 + 1.070300000000000e+00 + 1.050200000000000e+00 + 9.636700000000000e-01 + 7.891300000000000e-01 + 5.354500000000000e-01 + 2.411300000000000e-01 +-4.550500000000000e-02 +-2.916000000000000e-01 +-4.926100000000000e-01 +-6.642300000000000e-01 +-8.204399999999999e-01 +-9.546100000000000e-01 +-1.038400000000000e+00 +-1.039300000000000e+00 +-9.435200000000000e-01 +-7.678900000000000e-01 +-5.519300000000000e-01 +-3.371700000000000e-01 +-1.484800000000000e-01 + 9.941699999999999e-03 + 1.434000000000000e-01 + 2.512000000000000e-01 + 3.198900000000000e-01 + 3.309600000000000e-01 + 2.770200000000000e-01 + 1.734900000000000e-01 + 5.622700000000000e-02 +-3.494100000000000e-02 +-7.654600000000000e-02 +-7.273499999999999e-02 +-5.021700000000000e-02 +-4.010600000000000e-02 +-5.795900000000000e-02 +-9.408800000000000e-02 +-1.195200000000000e-01 +-1.033400000000000e-01 +-3.070400000000000e-02 + 8.901400000000000e-02 + 2.274400000000000e-01 + 3.512700000000000e-01 + 4.359800000000000e-01 + 4.714500000000000e-01 + 4.588700000000000e-01 + 4.036200000000000e-01 + 3.112800000000000e-01 + 1.896500000000000e-01 + 5.376000000000000e-02 +-7.214900000000000e-02 +-1.599900000000000e-01 +-1.888600000000000e-01 +-1.554200000000000e-01 +-7.672600000000000e-02 + 1.655300000000000e-02 + 9.287800000000000e-02 + 1.316800000000000e-01 + 1.287900000000000e-01 + 9.437900000000000e-02 + 4.590000000000000e-02 +-2.472200000000000e-05 +-3.391300000000000e-02 +-5.649900000000000e-02 +-7.783800000000000e-02 +-1.123500000000000e-01 +-1.710800000000000e-01 +-2.546500000000000e-01 +-3.508200000000000e-01 +-4.389500000000000e-01 +-4.987600000000000e-01 +-5.178600000000000e-01 +-4.930100000000000e-01 +-4.253700000000000e-01 +-3.151300000000000e-01 +-1.620300000000000e-01 + 2.719300000000000e-02 + 2.304000000000000e-01 + 4.098000000000000e-01 + 5.241000000000000e-01 + 5.477200000000000e-01 + 4.848600000000000e-01 + 3.681600000000000e-01 + 2.419600000000000e-01 + 1.406500000000000e-01 + 7.602100000000001e-02 + 4.000400000000000e-02 + 1.806300000000000e-02 + 1.400500000000000e-03 +-1.079400000000000e-02 +-1.828000000000000e-02 +-2.713400000000000e-02 +-4.911000000000000e-02 +-9.238200000000001e-02 +-1.513600000000000e-01 +-2.048900000000000e-01 +-2.257600000000000e-01 +-1.957300000000000e-01 +-1.160200000000000e-01 +-6.943400000000000e-03 + 1.020700000000000e-01 + 1.851800000000000e-01 + 2.286000000000000e-01 + 2.322300000000000e-01 + 2.060900000000000e-01 + 1.643600000000000e-01 + 1.191700000000000e-01 + 7.569300000000000e-02 + 3.073800000000000e-02 +-2.282400000000000e-02 +-8.692500000000000e-02 +-1.501300000000000e-01 +-1.882800000000000e-01 +-1.772800000000000e-01 +-1.115700000000000e-01 +-1.489500000000000e-02 + 6.767200000000000e-02 + 9.474299999999999e-02 + 5.498700000000000e-02 +-2.438500000000000e-02 +-9.481400000000000e-02 +-1.181400000000000e-01 +-9.019000000000001e-02 +-3.912500000000000e-02 +-8.422700000000000e-04 + 8.520800000000000e-03 + 1.247300000000000e-03 + 2.172400000000000e-03 + 2.316900000000000e-02 + 5.065300000000000e-02 + 5.711300000000000e-02 + 2.649300000000000e-02 +-2.929300000000000e-02 +-7.808400000000000e-02 +-9.377600000000000e-02 +-7.875300000000000e-02 +-6.247600000000000e-02 +-7.629300000000000e-02 +-1.252700000000000e-01 +-1.812200000000000e-01 +-2.035600000000000e-01 +-1.710900000000000e-01 +-9.795100000000000e-02 +-2.009000000000000e-02 + 3.620100000000000e-02 + 7.662300000000000e-02 + 1.320300000000000e-01 + 2.269800000000000e-01 + 3.497000000000000e-01 + 4.494900000000000e-01 + 4.660600000000000e-01 + 3.696400000000000e-01 + 1.819800000000000e-01 +-3.675400000000000e-02 +-2.238300000000000e-01 +-3.451800000000000e-01 +-4.010900000000000e-01 +-4.073500000000000e-01 +-3.718400000000000e-01 +-2.876200000000000e-01 +-1.464400000000000e-01 + 4.154400000000000e-02 + 2.412300000000000e-01 + 4.064800000000000e-01 + 5.040300000000000e-01 + 5.289800000000000e-01 + 5.009700000000000e-01 + 4.461800000000000e-01 + 3.801400000000000e-01 + 3.035600000000000e-01 + 2.107400000000000e-01 + 1.002100000000000e-01 +-2.190100000000000e-02 +-1.465200000000000e-01 +-2.671900000000000e-01 +-3.797900000000000e-01 +-4.774700000000000e-01 +-5.480800000000000e-01 +-5.796500000000000e-01 +-5.707600000000000e-01 +-5.358100000000000e-01 +-4.978700000000000e-01 +-4.719300000000000e-01 +-4.516200000000000e-01 +-4.112100000000000e-01 +-3.235400000000000e-01 +-1.812100000000000e-01 +-4.677600000000000e-03 + 1.690500000000000e-01 + 3.084600000000000e-01 + 4.032200000000000e-01 + 4.622900000000000e-01 + 4.980400000000000e-01 + 5.115900000000000e-01 + 4.925100000000000e-01 + 4.333000000000000e-01 + 3.451800000000000e-01 + 2.599400000000000e-01 + 2.133900000000000e-01 + 2.213100000000000e-01 + 2.659400000000000e-01 + 3.036600000000000e-01 + 2.894200000000000e-01 + 2.015900000000000e-01 + 5.179000000000000e-02 +-1.243200000000000e-01 +-2.861800000000000e-01 +-4.038800000000000e-01 +-4.625900000000000e-01 +-4.581500000000000e-01 +-3.920600000000000e-01 +-2.713900000000000e-01 +-1.121000000000000e-01 + 6.055300000000000e-02 + 2.183000000000000e-01 + 3.403300000000000e-01 + 4.201800000000000e-01 + 4.630800000000000e-01 + 4.749600000000000e-01 + 4.512800000000000e-01 + 3.750400000000000e-01 + 2.269000000000000e-01 + 1.407000000000000e-03 +-2.813700000000000e-01 +-5.775200000000000e-01 +-8.339500000000000e-01 +-1.008000000000000e+00 +-1.080800000000000e+00 +-1.057800000000000e+00 +-9.582300000000000e-01 +-8.020900000000000e-01 +-6.022700000000000e-01 +-3.665700000000000e-01 +-1.054500000000000e-01 + 1.617500000000000e-01 + 4.078200000000000e-01 + 6.061400000000000e-01 + 7.407899999999999e-01 + 8.115900000000000e-01 + 8.304700000000000e-01 + 8.123100000000000e-01 + 7.669200000000000e-01 + 6.977400000000000e-01 + 6.073400000000000e-01 + 5.042500000000000e-01 + 4.045800000000000e-01 + 3.258800000000000e-01 + 2.771400000000000e-01 + 2.523100000000000e-01 + 2.326500000000000e-01 + 1.968800000000000e-01 + 1.324200000000000e-01 + 4.048300000000000e-02 +-6.776900000000000e-02 +-1.801300000000000e-01 +-2.903500000000000e-01 +-3.983700000000000e-01 +-5.047100000000000e-01 +-6.043200000000000e-01 +-6.853100000000000e-01 +-7.339900000000000e-01 +-7.425600000000000e-01 +-7.141300000000000e-01 +-6.615100000000000e-01 +-6.005400000000000e-01 +-5.419400000000000e-01 +-4.860000000000000e-01 +-4.226200000000000e-01 +-3.363100000000000e-01 +-2.139000000000000e-01 +-5.170000000000000e-02 + 1.409100000000000e-01 + 3.431100000000000e-01 + 5.292000000000000e-01 + 6.768800000000000e-01 + 7.733000000000000e-01 + 8.157000000000000e-01 + 8.073200000000000e-01 + 7.525400000000000e-01 + 6.557900000000000e-01 + 5.255100000000000e-01 + 3.792200000000000e-01 + 2.437500000000000e-01 + 1.469800000000000e-01 + 1.045800000000000e-01 + 1.101600000000000e-01 + 1.365200000000000e-01 + 1.491700000000000e-01 + 1.241700000000000e-01 + 5.913400000000000e-02 +-2.944400000000000e-02 +-1.201200000000000e-01 +-2.013800000000000e-01 +-2.772500000000000e-01 +-3.604900000000000e-01 +-4.591800000000000e-01 +-5.667700000000000e-01 +-6.624600000000000e-01 +-7.210800000000001e-01 +-7.253900000000000e-01 +-6.733800000000000e-01 +-5.772400000000000e-01 +-4.563800000000000e-01 +-3.295200000000000e-01 +-2.096000000000000e-01 +-1.026500000000000e-01 +-9.015799999999999e-03 + 7.443800000000000e-02 + 1.522600000000000e-01 + 2.288600000000000e-01 + 3.078600000000000e-01 + 3.921400000000000e-01 + 4.840600000000000e-01 + 5.841400000000000e-01 + 6.878100000000000e-01 + 7.818800000000000e-01 + 8.439800000000000e-01 + 8.479600000000000e-01 + 7.742599999999999e-01 + 6.202600000000000e-01 + 4.043900000000000e-01 + 1.608800000000000e-01 +-7.222800000000000e-02 +-2.653100000000000e-01 +-4.037100000000000e-01 +-4.873000000000000e-01 +-5.260100000000000e-01 +-5.354700000000000e-01 +-5.336700000000000e-01 +-5.370700000000000e-01 +-5.545500000000000e-01 +-5.813800000000000e-01 +-5.985200000000001e-01 +-5.811500000000001e-01 +-5.136700000000000e-01 +-4.022400000000000e-01 +-2.748700000000000e-01 +-1.666600000000000e-01 +-9.817700000000000e-02 +-6.099200000000000e-02 +-2.082700000000000e-02 + 6.287500000000000e-02 + 2.131000000000000e-01 + 4.218500000000000e-01 + 6.545000000000000e-01 + 8.671700000000000e-01 + 1.025000000000000e+00 + 1.110800000000000e+00 + 1.121100000000000e+00 + 1.057400000000000e+00 + 9.190600000000000e-01 + 7.047300000000000e-01 + 4.198300000000000e-01 + 8.383200000000000e-02 +-2.676200000000000e-01 +-5.884600000000000e-01 +-8.341300000000000e-01 +-9.757800000000000e-01 +-1.011000000000000e+00 +-9.661100000000000e-01 +-8.859300000000000e-01 +-8.145200000000000e-01 +-7.742000000000000e-01 +-7.550300000000000e-01 +-7.222300000000000e-01 +-6.387900000000000e-01 +-4.899200000000000e-01 +-2.936600000000000e-01 +-9.004200000000000e-02 + 8.386900000000000e-02 + 2.154900000000000e-01 + 3.198900000000000e-01 + 4.232400000000000e-01 + 5.399800000000000e-01 + 6.614700000000000e-01 + 7.642300000000000e-01 + 8.297700000000000e-01 + 8.590700000000000e-01 + 8.693700000000000e-01 + 8.762500000000000e-01 + 8.763900000000000e-01 + 8.462200000000000e-01 + 7.583400000000000e-01 + 6.030799999999999e-01 + 3.979100000000000e-01 + 1.774000000000000e-01 +-2.786200000000000e-02 +-2.066400000000000e-01 +-3.653700000000000e-01 +-5.130500000000000e-01 +-6.470800000000000e-01 +-7.530400000000000e-01 +-8.181300000000000e-01 +-8.456500000000000e-01 +-8.563499999999999e-01 +-8.736100000000000e-01 +-9.036200000000000e-01 +-9.269200000000000e-01 +-9.087800000000000e-01 +-8.213800000000000e-01 +-6.609300000000000e-01 +-4.478100000000000e-01 +-2.114600000000000e-01 + 2.660300000000000e-02 + 2.579600000000000e-01 + 4.785900000000000e-01 + 6.764500000000000e-01 + 8.287300000000000e-01 + 9.129000000000000e-01 + 9.229300000000000e-01 + 8.762000000000000e-01 + 8.037300000000001e-01 + 7.299099999999999e-01 + 6.572400000000000e-01 + 5.682100000000000e-01 + 4.430600000000000e-01 + 2.796700000000000e-01 + 1.000400000000000e-01 +-6.151600000000000e-02 +-1.792200000000000e-01 +-2.497800000000000e-01 +-2.896300000000000e-01 +-3.189300000000000e-01 +-3.458500000000000e-01 +-3.631200000000000e-01 +-3.585000000000000e-01 +-3.288300000000000e-01 +-2.854600000000000e-01 +-2.460900000000000e-01 +-2.200900000000000e-01 +-1.998200000000000e-01 +-1.659400000000000e-01 +-1.032800000000000e-01 +-1.517500000000000e-02 + 7.510200000000000e-02 + 1.372800000000000e-01 + 1.523100000000000e-01 + 1.227100000000000e-01 + 6.843399999999999e-02 + 1.227700000000000e-02 +-3.342200000000000e-02 +-6.926900000000000e-02 +-9.999300000000000e-02 +-1.230700000000000e-01 +-1.253300000000000e-01 +-9.144500000000000e-02 +-1.807300000000000e-02 + 7.769100000000000e-02 + 1.633000000000000e-01 + 2.070800000000000e-01 + 1.951700000000000e-01 + 1.374000000000000e-01 + 5.838300000000000e-02 +-1.974500000000000e-02 +-9.044800000000000e-02 +-1.627700000000000e-01 +-2.487100000000000e-01 +-3.476100000000000e-01 +-4.391800000000000e-01 +-4.904000000000000e-01 +-4.721600000000000e-01 +-3.748700000000000e-01 +-2.133500000000000e-01 +-1.903200000000000e-02 + 1.750700000000000e-01 + 3.468300000000000e-01 + 4.886500000000000e-01 + 6.019500000000000e-01 + 6.881300000000000e-01 + 7.426900000000000e-01 + 7.558800000000000e-01 + 7.186000000000000e-01 + 6.289100000000000e-01 + 4.946500000000000e-01 + 3.309200000000000e-01 + 1.545400000000000e-01 +-2.042100000000000e-02 +-1.832100000000000e-01 +-3.231000000000000e-01 +-4.258600000000000e-01 +-4.745500000000000e-01 +-4.564800000000000e-01 +-3.738200000000000e-01 +-2.505000000000000e-01 +-1.286900000000000e-01 +-5.320500000000000e-02 +-5.037400000000000e-02 +-1.135900000000000e-01 +-2.058600000000000e-01 +-2.801300000000000e-01 +-3.065300000000000e-01 +-2.898100000000000e-01 +-2.654800000000000e-01 +-2.761100000000000e-01 +-3.429700000000000e-01 +-4.511700000000000e-01 +-5.578100000000000e-01 +-6.169400000000000e-01 +-6.041600000000000e-01 +-5.249600000000000e-01 +-4.031700000000000e-01 +-2.604200000000000e-01 +-1.026600000000000e-01 + 7.711800000000001e-02 + 2.843400000000000e-01 + 5.100400000000000e-01 + 7.309300000000000e-01 + 9.220200000000000e-01 + 1.070500000000000e+00 + 1.177800000000000e+00 + 1.248100000000000e+00 + 1.271600000000000e+00 + 1.219700000000000e+00 + 1.058400000000000e+00 + 7.746100000000000e-01 + 3.967800000000000e-01 +-6.403000000000000e-03 +-3.509000000000000e-01 +-5.727900000000000e-01 +-6.537600000000000e-01 +-6.228800000000000e-01 +-5.366000000000000e-01 +-4.510100000000000e-01 +-4.026700000000000e-01 +-4.047200000000000e-01 +-4.539900000000000e-01 +-5.387300000000000e-01 +-6.407300000000000e-01 +-7.338500000000000e-01 +-7.860000000000000e-01 +-7.691300000000000e-01 +-6.734000000000000e-01 +-5.156400000000000e-01 +-3.339500000000000e-01 +-1.692000000000000e-01 +-4.435300000000000e-02 + 4.497100000000000e-02 + 1.221800000000000e-01 + 2.095200000000000e-01 + 3.102400000000000e-01 + 4.059000000000000e-01 + 4.705500000000000e-01 + 4.913500000000000e-01 + 4.802400000000000e-01 + 4.675400000000000e-01 + 4.811300000000000e-01 + 5.254100000000000e-01 + 5.744400000000000e-01 + 5.845000000000000e-01 + 5.182800000000000e-01 + 3.658400000000000e-01 + 1.504300000000000e-01 +-8.250200000000001e-02 +-2.847100000000000e-01 +-4.214200000000000e-01 +-4.776600000000000e-01 +-4.556800000000000e-01 +-3.693500000000000e-01 +-2.403300000000000e-01 +-9.595400000000000e-02 + 3.449600000000000e-02 + 1.271500000000000e-01 + 1.719800000000000e-01 + 1.763600000000000e-01 + 1.598100000000000e-01 + 1.413100000000000e-01 + 1.271200000000000e-01 + 1.068600000000000e-01 + 6.097300000000000e-02 +-2.546900000000000e-02 +-1.514400000000000e-01 +-2.980100000000000e-01 +-4.359900000000000e-01 +-5.374000000000000e-01 +-5.838300000000000e-01 +-5.684500000000000e-01 +-4.933100000000000e-01 +-3.659600000000000e-01 +-1.980100000000000e-01 +-4.918300000000000e-03 + 1.949800000000000e-01 + 3.830000000000000e-01 + 5.428400000000000e-01 + 6.613900000000000e-01 + 7.275600000000000e-01 + 7.315199999999999e-01 + 6.671200000000000e-01 + 5.373400000000000e-01 + 3.588700000000000e-01 + 1.611400000000000e-01 +-2.211800000000000e-02 +-1.647400000000000e-01 +-2.564600000000000e-01 +-3.025400000000000e-01 +-3.156200000000000e-01 +-3.062800000000000e-01 +-2.792800000000000e-01 +-2.376200000000000e-01 +-1.897600000000000e-01 +-1.525900000000000e-01 +-1.458600000000000e-01 +-1.810100000000000e-01 +-2.520200000000000e-01 +-3.357700000000000e-01 +-4.027800000000000e-01 +-4.319200000000000e-01 +-4.202200000000000e-01 +-3.817300000000000e-01 +-3.366200000000000e-01 +-2.978300000000000e-01 +-2.629800000000000e-01 +-2.161600000000000e-01 +-1.373800000000000e-01 +-1.410000000000000e-02 + 1.515100000000000e-01 + 3.427500000000000e-01 + 5.350900000000000e-01 + 7.054900000000000e-01 + 8.397000000000000e-01 + 9.344400000000000e-01 + 9.941200000000000e-01 + 1.024400000000000e+00 + 1.026600000000000e+00 + 9.948700000000000e-01 + 9.197000000000000e-01 + 7.929900000000000e-01 + 6.141700000000000e-01 + 3.930300000000000e-01 + 1.481200000000000e-01 +-9.872300000000001e-02 +-3.296500000000000e-01 +-5.370300000000000e-01 +-7.258000000000000e-01 +-9.099200000000000e-01 +-1.102900000000000e+00 +-1.306000000000000e+00 +-1.498800000000000e+00 +-1.640500000000000e+00 +-1.682400000000000e+00 +-1.588000000000000e+00 +-1.351800000000000e+00 +-1.003600000000000e+00 +-5.981800000000000e-01 +-1.929100000000000e-01 + 1.713600000000000e-01 + 4.763700000000000e-01 + 7.178700000000000e-01 + 8.916800000000000e-01 + 9.871400000000000e-01 + 9.941400000000000e-01 + 9.182500000000000e-01 + 7.904400000000000e-01 + 6.608800000000000e-01 + 5.778400000000000e-01 + 5.645500000000000e-01 + 6.093499999999999e-01 + 6.756500000000000e-01 + 7.243600000000000e-01 + 7.333600000000000e-01 + 7.017400000000000e-01 + 6.390200000000000e-01 + 5.503400000000001e-01 + 4.307200000000000e-01 + 2.723900000000000e-01 + 7.807200000000000e-02 +-1.322600000000000e-01 +-3.279300000000000e-01 +-4.836400000000000e-01 +-5.930700000000000e-01 +-6.698300000000000e-01 +-7.347300000000000e-01 +-7.985800000000000e-01 +-8.524400000000000e-01 +-8.719300000000000e-01 +-8.321400000000000e-01 +-7.233700000000000e-01 +-5.581600000000000e-01 +-3.663500000000000e-01 +-1.821500000000000e-01 +-3.067800000000000e-02 + 7.932300000000000e-02 + 1.542000000000000e-01 + 2.072000000000000e-01 + 2.482100000000000e-01 + 2.767800000000000e-01 + 2.824100000000000e-01 + 2.524900000000000e-01 + 1.834500000000000e-01 + 8.803700000000000e-02 +-7.203400000000000e-03 +-7.409700000000000e-02 +-9.749200000000000e-02 +-8.223700000000000e-02 +-4.680300000000000e-02 +-7.553300000000000e-03 + 3.444500000000000e-02 + 9.282899999999999e-02 + 1.803500000000000e-01 + 2.895800000000000e-01 + 3.861900000000000e-01 + 4.237900000000000e-01 + 3.732400000000000e-01 + 2.470100000000000e-01 + 1.000200000000000e-01 + 3.134900000000000e-03 + 4.416300000000000e-03 + 1.026200000000000e-01 + 2.495300000000000e-01 + 3.787000000000000e-01 + 4.409500000000000e-01 + 4.239600000000000e-01 + 3.461400000000000e-01 + 2.336000000000000e-01 + 9.965400000000001e-02 +-5.825800000000000e-02 +-2.444500000000000e-01 +-4.476700000000000e-01 +-6.363100000000000e-01 +-7.710100000000000e-01 +-8.255300000000000e-01 +-8.000000000000000e-01 +-7.167600000000000e-01 +-6.025900000000000e-01 +-4.709900000000000e-01 +-3.180500000000000e-01 +-1.342100000000000e-01 + 7.775600000000001e-02 + 2.929800000000000e-01 + 4.711500000000000e-01 + 5.757500000000000e-01 + 5.929400000000000e-01 + 5.378500000000001e-01 + 4.444600000000000e-01 + 3.462800000000000e-01 + 2.599500000000000e-01 + 1.811400000000000e-01 + 9.361300000000000e-02 +-1.524500000000000e-02 +-1.419600000000000e-01 +-2.641300000000000e-01 +-3.481500000000000e-01 +-3.635900000000000e-01 +-2.973900000000000e-01 +-1.619000000000000e-01 + 7.392000000000000e-03 + 1.641100000000000e-01 + 2.687100000000000e-01 + 3.036100000000000e-01 + 2.779700000000000e-01 + 2.194200000000000e-01 + 1.570300000000000e-01 + 1.059100000000000e-01 + 6.262200000000000e-02 + 1.358100000000000e-02 +-5.054500000000000e-02 +-1.258400000000000e-01 +-1.983800000000000e-01 +-2.564100000000000e-01 +-3.004300000000000e-01 +-3.411400000000000e-01 +-3.854600000000000e-01 +-4.220100000000000e-01 +-4.201400000000000e-01 +-3.472300000000000e-01 +-1.937700000000000e-01 + 1.249100000000000e-02 + 2.166200000000000e-01 + 3.664800000000000e-01 + 4.426500000000000e-01 + 4.664700000000000e-01 + 4.797600000000000e-01 + 5.107000000000000e-01 + 5.511100000000000e-01 + 5.623100000000000e-01 + 5.050700000000000e-01 + 3.709300000000000e-01 + 1.913300000000000e-01 + 1.825500000000000e-02 +-1.083500000000000e-01 +-1.817700000000000e-01 +-2.240000000000000e-01 +-2.616100000000000e-01 +-3.029600000000000e-01 +-3.343600000000000e-01 +-3.361400000000000e-01 +-3.029600000000000e-01 +-2.508000000000000e-01 +-2.057500000000000e-01 +-1.858500000000000e-01 +-1.925000000000000e-01 +-2.177200000000000e-01 +-2.582300000000000e-01 +-3.203000000000000e-01 +-4.083600000000000e-01 +-5.067500000000000e-01 +-5.735000000000000e-01 +-5.573800000000000e-01 +-4.302100000000000e-01 +-2.112500000000000e-01 + 3.712400000000000e-02 + 2.426600000000000e-01 + 3.642800000000000e-01 + 4.125900000000000e-01 + 4.363900000000000e-01 + 4.860400000000000e-01 + 5.803500000000000e-01 + 6.986599999999999e-01 + 8.000200000000000e-01 + 8.515400000000000e-01 + 8.446700000000000e-01 + 7.906400000000000e-01 + 7.038100000000000e-01 + 5.892200000000000e-01 + 4.437200000000000e-01 + 2.664000000000000e-01 + 6.667800000000000e-02 +-1.376500000000000e-01 +-3.293300000000000e-01 +-4.980500000000000e-01 +-6.386300000000000e-01 +-7.445700000000000e-01 +-8.063700000000000e-01 +-8.189700000000000e-01 +-7.922700000000000e-01 +-7.526000000000000e-01 +-7.284600000000000e-01 +-7.282600000000000e-01 +-7.273800000000000e-01 +-6.783600000000000e-01 +-5.411500000000000e-01 +-3.138200000000000e-01 +-4.101000000000000e-02 + 2.077100000000000e-01 + 3.762200000000000e-01 + 4.513300000000000e-01 + 4.643200000000000e-01 + 4.657000000000000e-01 + 4.922800000000000e-01 + 5.487700000000000e-01 + 6.130000000000000e-01 + 6.562500000000000e-01 + 6.617000000000000e-01 + 6.293100000000000e-01 + 5.687200000000000e-01 + 4.904100000000000e-01 + 4.035100000000000e-01 + 3.196500000000000e-01 + 2.546600000000000e-01 + 2.220700000000000e-01 + 2.209000000000000e-01 + 2.275900000000000e-01 + 2.010600000000000e-01 + 1.004900000000000e-01 +-9.402300000000000e-02 +-3.704500000000000e-01 +-6.891699999999999e-01 +-9.982400000000000e-01 +-1.249500000000000e+00 +-1.407300000000000e+00 +-1.450400000000000e+00 +-1.370400000000000e+00 +-1.172900000000000e+00 +-8.797700000000001e-01 +-5.282900000000000e-01 +-1.634800000000000e-01 + 1.747600000000000e-01 + 4.628600000000000e-01 + 6.964100000000000e-01 + 8.829700000000000e-01 + 1.030100000000000e+00 + 1.136900000000000e+00 + 1.194400000000000e+00 + 1.193900000000000e+00 + 1.136000000000000e+00 + 1.034500000000000e+00 + 9.094600000000000e-01 + 7.764200000000000e-01 + 6.356100000000000e-01 + 4.713300000000000e-01 + 2.622500000000000e-01 +-1.591100000000000e-03 +-3.048000000000000e-01 +-6.051100000000000e-01 +-8.476000000000000e-01 +-9.886700000000000e-01 +-1.017000000000000e+00 +-9.591499999999999e-01 +-8.650099999999999e-01 +-7.814100000000000e-01 +-7.286500000000000e-01 +-6.941900000000000e-01 +-6.463200000000000e-01 +-5.583000000000000e-01 +-4.268800000000000e-01 +-2.739700000000000e-01 +-1.319000000000000e-01 +-2.373900000000000e-02 + 4.827600000000000e-02 + 1.000600000000000e-01 + 1.533000000000000e-01 + 2.234600000000000e-01 + 3.156000000000000e-01 + 4.279400000000000e-01 + 5.568800000000000e-01 + 6.977900000000000e-01 + 8.411300000000000e-01 + 9.686200000000000e-01 + 1.054700000000000e+00 + 1.073800000000000e+00 + 1.009600000000000e+00 + 8.600400000000000e-01 + 6.367900000000000e-01 + 3.609200000000000e-01 + 5.820300000000000e-02 +-2.438400000000000e-01 +-5.186600000000000e-01 +-7.447900000000000e-01 +-9.105100000000000e-01 +-1.015600000000000e+00 +-1.066800000000000e+00 +-1.069300000000000e+00 +-1.019500000000000e+00 +-9.054200000000000e-01 +-7.171000000000000e-01 +-4.594800000000000e-01 +-1.592100000000000e-01 + 1.405800000000000e-01 + 3.949000000000000e-01 + 5.722800000000000e-01 + 6.619500000000000e-01 + 6.705800000000000e-01 + 6.133900000000000e-01 + 5.069000000000000e-01 + 3.673200000000000e-01 + 2.124200000000000e-01 + 6.230500000000000e-02 +-6.386200000000000e-02 +-1.530700000000000e-01 +-2.014400000000000e-01 +-2.125000000000000e-01 +-1.926100000000000e-01 +-1.477900000000000e-01 +-8.445200000000000e-02 +-1.219300000000000e-02 + 5.554100000000000e-02 + 1.055100000000000e-01 + 1.312500000000000e-01 + 1.369300000000000e-01 + 1.349200000000000e-01 + 1.384600000000000e-01 + 1.547600000000000e-01 + 1.834000000000000e-01 + 2.197700000000000e-01 + 2.588800000000000e-01 + 2.950900000000000e-01 + 3.180100000000000e-01 + 3.100500000000000e-01 + 2.510000000000000e-01 + 1.292300000000000e-01 +-4.775900000000000e-02 +-2.524800000000000e-01 +-4.489000000000000e-01 +-6.096000000000000e-01 +-7.267800000000000e-01 +-8.091300000000000e-01 +-8.671800000000000e-01 +-8.984400000000000e-01 +-8.838800000000000e-01 +-7.983400000000000e-01 +-6.267100000000000e-01 +-3.740900000000000e-01 +-6.353900000000000e-02 + 2.743200000000000e-01 + 6.101600000000000e-01 + 9.163100000000000e-01 + 1.161600000000000e+00 + 1.309800000000000e+00 + 1.329100000000000e+00 + 1.209400000000000e+00 + 9.749200000000000e-01 + 6.812800000000000e-01 + 3.935300000000000e-01 + 1.585800000000000e-01 +-1.134300000000000e-02 +-1.337500000000000e-01 +-2.345700000000000e-01 +-3.265900000000000e-01 +-4.033300000000000e-01 +-4.510200000000000e-01 +-4.671300000000000e-01 +-4.688800000000000e-01 +-4.835400000000000e-01 +-5.272500000000000e-01 +-5.889200000000000e-01 +-6.326400000000000e-01 +-6.183999999999999e-01 +-5.269800000000000e-01 +-3.718100000000000e-01 +-1.900800000000000e-01 +-2.029700000000000e-02 + 1.171200000000000e-01 + 2.234800000000000e-01 + 3.092300000000000e-01 + 3.768400000000000e-01 + 4.133500000000000e-01 + 3.982500000000000e-01 + 3.201400000000000e-01 + 1.890500000000000e-01 + 3.539700000000000e-02 +-1.036200000000000e-01 +-2.000200000000000e-01 +-2.433600000000000e-01 +-2.380200000000000e-01 +-1.948100000000000e-01 +-1.248800000000000e-01 +-3.979000000000000e-02 + 4.561700000000000e-02 + 1.139200000000000e-01 + 1.522000000000000e-01 + 1.613700000000000e-01 + 1.594400000000000e-01 + 1.737100000000000e-01 + 2.251000000000000e-01 + 3.145600000000000e-01 + 4.211100000000000e-01 + 5.129800000000000e-01 + 5.641900000000000e-01 + 5.653700000000000e-01 + 5.224299999999999e-01 + 4.463800000000000e-01 + 3.434800000000000e-01 + 2.135800000000000e-01 + 5.663100000000000e-02 +-1.196900000000000e-01 +-2.991200000000000e-01 +-4.639200000000000e-01 +-6.039900000000000e-01 +-7.195600000000000e-01 +-8.145800000000000e-01 +-8.860000000000000e-01 +-9.185800000000000e-01 +-8.909600000000000e-01 +-7.896700000000000e-01 +-6.210599999999999e-01 +-4.119400000000000e-01 +-1.979500000000000e-01 +-7.785000000000000e-03 + 1.459300000000000e-01 + 2.641100000000000e-01 + 3.510600000000000e-01 + 4.062200000000000e-01 + 4.246000000000000e-01 + 4.047700000000000e-01 + 3.565900000000000e-01 + 3.010000000000000e-01 + 2.610400000000000e-01 + 2.503100000000000e-01 + 2.673400000000000e-01 + 2.995900000000000e-01 + 3.332800000000000e-01 + 3.615400000000000e-01 + 3.855800000000000e-01 + 4.096400000000000e-01 + 4.351600000000000e-01 + 4.589900000000000e-01 + 4.755800000000000e-01 + 4.795300000000000e-01 + 4.648200000000000e-01 + 4.217200000000000e-01 + 3.357800000000000e-01 + 1.929900000000000e-01 +-1.006500000000000e-02 +-2.575300000000000e-01 +-5.144300000000001e-01 +-7.376200000000001e-01 +-8.919899999999999e-01 +-9.625899999999999e-01 +-9.562100000000000e-01 +-8.933200000000000e-01 +-7.973900000000000e-01 +-6.886200000000000e-01 +-5.837300000000000e-01 +-4.973100000000000e-01 +-4.393400000000000e-01 +-4.082900000000000e-01 +-3.856300000000000e-01 +-3.392800000000000e-01 +-2.382900000000000e-01 +-7.165800000000000e-02 + 1.411200000000000e-01 + 3.568000000000000e-01 + 5.304800000000000e-01 + 6.401700000000000e-01 + 6.981000000000001e-01 + 7.410900000000000e-01 + 8.060400000000000e-01 + 9.062100000000000e-01 + 1.023200000000000e+00 + 1.118400000000000e+00 + 1.154900000000000e+00 + 1.114700000000000e+00 + 1.001700000000000e+00 + 8.308800000000000e-01 + 6.151600000000000e-01 + 3.606300000000000e-01 + 7.249600000000000e-02 +-2.345800000000000e-01 +-5.327400000000000e-01 +-7.888100000000000e-01 +-9.793900000000000e-01 +-1.102100000000000e+00 +-1.174400000000000e+00 +-1.219400000000000e+00 +-1.249500000000000e+00 +-1.258000000000000e+00 +-1.225500000000000e+00 +-1.134100000000000e+00 +-9.809600000000001e-01 +-7.803900000000000e-01 +-5.550400000000000e-01 +-3.237000000000000e-01 +-9.486799999999999e-02 + 1.303700000000000e-01 + 3.503500000000000e-01 + 5.575800000000000e-01 + 7.408700000000000e-01 + 8.923400000000000e-01 + 1.012300000000000e+00 + 1.106700000000000e+00 + 1.178000000000000e+00 + 1.217200000000000e+00 + 1.205000000000000e+00 + 1.122300000000000e+00 + 9.642400000000000e-01 + 7.476000000000000e-01 + 5.057100000000000e-01 + 2.732400000000000e-01 + 7.086199999999999e-02 +-1.005500000000000e-01 +-2.532900000000000e-01 +-3.990300000000000e-01 +-5.377600000000000e-01 +-6.564900000000000e-01 +-7.375699999999999e-01 +-7.701500000000000e-01 +-7.570300000000000e-01 +-7.128300000000000e-01 +-6.557700000000000e-01 +-5.986399999999999e-01 +-5.441900000000000e-01 +-4.868800000000000e-01 +-4.186800000000000e-01 +-3.355500000000000e-01 +-2.415900000000000e-01 +-1.494000000000000e-01 +-7.692200000000000e-02 +-4.126000000000000e-02 +-5.088500000000000e-02 +-9.865599999999999e-02 +-1.590500000000000e-01 +-1.925900000000000e-01 +-1.579400000000000e-01 +-2.808300000000000e-02 + 1.962100000000000e-01 + 4.824900000000000e-01 + 7.755000000000000e-01 + 1.015600000000000e+00 + 1.158900000000000e+00 + 1.189700000000000e+00 + 1.120300000000000e+00 + 9.803200000000000e-01 + 8.007500000000000e-01 + 6.035000000000000e-01 + 3.989300000000000e-01 + 1.910100000000000e-01 +-1.568500000000000e-02 +-2.126700000000000e-01 +-3.896100000000000e-01 +-5.389400000000000e-01 +-6.584500000000000e-01 +-7.495600000000000e-01 +-8.127400000000000e-01 +-8.445700000000000e-01 +-8.394600000000000e-01 +-7.951200000000000e-01 +-7.176100000000000e-01 +-6.212600000000000e-01 +-5.229100000000000e-01 +-4.338600000000000e-01 +-3.551200000000000e-01 +-2.789500000000000e-01 +-1.952900000000000e-01 +-9.851100000000000e-02 + 9.612799999999999e-03 + 1.213700000000000e-01 + 2.264900000000000e-01 + 3.147500000000000e-01 + 3.772100000000000e-01 + 4.079100000000000e-01 + 4.074000000000000e-01 + 3.865400000000000e-01 + 3.667300000000000e-01 + 3.736200000000000e-01 + 4.258100000000000e-01 + 5.246900000000000e-01 + 6.518699999999999e-01 + 7.765200000000000e-01 + 8.678000000000000e-01 + 9.047600000000000e-01 + 8.783100000000000e-01 + 7.865200000000000e-01 + 6.297300000000000e-01 + 4.107600000000000e-01 + 1.404400000000000e-01 +-1.577900000000000e-01 +-4.504300000000000e-01 +-7.045300000000000e-01 +-9.001600000000000e-01 +-1.036200000000000e+00 +-1.125200000000000e+00 +-1.181000000000000e+00 +-1.208500000000000e+00 +-1.201800000000000e+00 +-1.151100000000000e+00 +-1.051100000000000e+00 +-9.040600000000000e-01 +-7.169100000000000e-01 +-4.955600000000000e-01 +-2.438500000000000e-01 + 3.208400000000000e-02 + 3.178800000000000e-01 + 5.901100000000000e-01 + 8.224500000000000e-01 + 9.949300000000000e-01 + 1.099300000000000e+00 + 1.137000000000000e+00 + 1.112600000000000e+00 + 1.030300000000000e+00 + 8.963100000000001e-01 + 7.253800000000000e-01 + 5.436400000000000e-01 + 3.817100000000000e-01 + 2.610800000000000e-01 + 1.825000000000000e-01 + 1.255400000000000e-01 + 6.071000000000000e-02 +-3.383300000000000e-02 +-1.615900000000000e-01 +-3.089000000000000e-01 +-4.544300000000000e-01 +-5.781900000000000e-01 +-6.640600000000000e-01 +-6.971500000000000e-01 +-6.630600000000000e-01 +-5.536100000000000e-01 +-3.766100000000000e-01 +-1.609900000000000e-01 + 4.971200000000000e-02 + 2.138000000000000e-01 + 3.078000000000000e-01 + 3.315300000000000e-01 + 2.991300000000000e-01 + 2.236500000000000e-01 + 1.077500000000000e-01 +-5.253600000000000e-02 +-2.547500000000000e-01 +-4.794600000000000e-01 +-6.916500000000000e-01 +-8.540500000000000e-01 +-9.426900000000000e-01 +-9.535400000000001e-01 +-8.963500000000000e-01 +-7.815100000000000e-01 +-6.107000000000000e-01 +-3.778600000000000e-01 +-7.868100000000000e-02 + 2.789500000000000e-01 + 6.708900000000000e-01 + 1.060400000000000e+00 + 1.406200000000000e+00 + 1.669700000000000e+00 + 1.821400000000000e+00 + 1.845500000000000e+00 + 1.744000000000000e+00 + 1.538000000000000e+00 + 1.261600000000000e+00 + 9.499100000000000e-01 + 6.257700000000000e-01 + 2.937700000000000e-01 +-5.338100000000000e-02 +-4.202700000000000e-01 +-7.958499999999999e-01 +-1.151600000000000e+00 +-1.451900000000000e+00 +-1.669600000000000e+00 +-1.795000000000000e+00 +-1.833700000000000e+00 +-1.797100000000000e+00 +-1.694500000000000e+00 +-1.531400000000000e+00 +-1.315400000000000e+00 +-1.059000000000000e+00 +-7.771600000000000e-01 +-4.785000000000000e-01 +-1.604900000000000e-01 + 1.857600000000000e-01 + 5.616700000000000e-01 + 9.482300000000000e-01 + 1.304900000000000e+00 + 1.583600000000000e+00 + 1.750000000000000e+00 + 1.798000000000000e+00 + 1.748300000000000e+00 + 1.632200000000000e+00 + 1.472900000000000e+00 + 1.275700000000000e+00 + 1.032700000000000e+00 + 7.367500000000000e-01 + 3.939800000000000e-01 + 2.753800000000000e-02 +-3.282300000000000e-01 +-6.377300000000000e-01 +-8.727000000000000e-01 +-1.017200000000000e+00 +-1.069300000000000e+00 +-1.042200000000000e+00 +-9.611300000000000e-01 +-8.584100000000000e-01 +-7.636100000000000e-01 +-6.946400000000000e-01 +-6.537200000000000e-01 +-6.306400000000000e-01 +-6.105400000000000e-01 +-5.807900000000000e-01 +-5.328200000000000e-01 +-4.598000000000000e-01 +-3.546900000000000e-01 +-2.126600000000000e-01 +-3.679500000000000e-02 + 1.582000000000000e-01 + 3.493500000000000e-01 + 5.154800000000000e-01 + 6.476499999999999e-01 + 7.516699999999999e-01 + 8.399900000000000e-01 + 9.180400000000000e-01 + 9.753400000000000e-01 + 9.886400000000000e-01 + 9.359400000000000e-01 + 8.121500000000000e-01 + 6.351599999999999e-01 + 4.380000000000000e-01 + 2.519900000000000e-01 + 9.202700000000000e-02 +-4.662400000000000e-02 +-1.786900000000000e-01 +-3.137100000000000e-01 +-4.458300000000000e-01 +-5.553500000000000e-01 +-6.209300000000000e-01 +-6.342700000000000e-01 +-6.077900000000001e-01 +-5.700499999999999e-01 +-5.509700000000000e-01 +-5.651300000000000e-01 +-6.028500000000000e-01 +-6.345499999999999e-01 +-6.263900000000000e-01 +-5.584700000000000e-01 +-4.349600000000000e-01 +-2.799900000000000e-01 +-1.219200000000000e-01 + 2.361800000000000e-02 + 1.605700000000000e-01 + 3.040400000000000e-01 + 4.623800000000000e-01 + 6.226600000000000e-01 + 7.508400000000000e-01 + 8.082200000000000e-01 + 7.737200000000000e-01 + 6.572000000000000e-01 + 4.945800000000000e-01 + 3.284200000000000e-01 + 1.874200000000000e-01 + 7.879300000000000e-02 +-3.174400000000000e-03 +-6.117300000000000e-02 +-8.590700000000000e-02 +-6.212900000000000e-02 + 1.499700000000000e-02 + 1.270400000000000e-01 + 2.349200000000000e-01 + 2.972900000000000e-01 + 2.923100000000000e-01 + 2.271900000000000e-01 + 1.283900000000000e-01 + 2.010000000000000e-02 +-9.279300000000000e-02 +-2.239100000000000e-01 +-3.872400000000000e-01 +-5.753300000000000e-01 +-7.512100000000000e-01 +-8.619000000000000e-01 +-8.662500000000000e-01 +-7.592900000000000e-01 +-5.774400000000000e-01 +-3.811300000000000e-01 +-2.257700000000000e-01 +-1.382800000000000e-01 +-1.114100000000000e-01 +-1.157400000000000e-01 +-1.190900000000000e-01 +-1.005000000000000e-01 +-5.245800000000000e-02 + 2.565600000000000e-02 + 1.344200000000000e-01 + 2.747900000000000e-01 + 4.418900000000000e-01 + 6.183500000000000e-01 + 7.744700000000000e-01 + 8.775300000000000e-01 + 9.058400000000000e-01 + 8.589000000000000e-01 + 7.569500000000000e-01 + 6.297100000000000e-01 + 5.010900000000000e-01 + 3.791100000000000e-01 + 2.566200000000000e-01 + 1.214100000000000e-01 +-3.157000000000000e-02 +-1.941500000000000e-01 +-3.481500000000000e-01 +-4.749500000000000e-01 +-5.641100000000000e-01 +-6.156300000000000e-01 +-6.352700000000000e-01 +-6.276500000000000e-01 +-5.928300000000000e-01 +-5.285700000000000e-01 +-4.357900000000000e-01 +-3.223200000000000e-01 +-2.017900000000000e-01 +-8.887399999999999e-02 + 5.216300000000000e-03 + 7.364300000000000e-02 + 1.118300000000000e-01 + 1.158000000000000e-01 + 8.412200000000000e-02 + 2.274500000000000e-02 +-5.159800000000000e-02 +-1.141500000000000e-01 +-1.415300000000000e-01 +-1.227500000000000e-01 +-6.462500000000000e-02 + 1.271400000000000e-02 + 8.767400000000000e-02 + 1.488300000000000e-01 + 1.987500000000000e-01 + 2.479500000000000e-01 + 3.038100000000000e-01 + 3.625000000000000e-01 + 4.092100000000000e-01 + 4.262500000000000e-01 + 4.027900000000000e-01 + 3.399600000000000e-01 + 2.487900000000000e-01 + 1.434100000000000e-01 + 3.510900000000000e-02 +-6.905799999999999e-02 +-1.632000000000000e-01 +-2.385800000000000e-01 +-2.828900000000000e-01 +-2.844500000000000e-01 +-2.392400000000000e-01 +-1.565200000000000e-01 +-5.883000000000000e-02 + 2.486100000000000e-02 + 7.031400000000000e-02 + 6.814199999999999e-02 + 2.768300000000000e-02 +-2.769700000000000e-02 +-7.158500000000000e-02 +-8.601200000000001e-02 +-6.751200000000000e-02 +-2.532000000000000e-02 + 2.576700000000000e-02 + 7.237100000000000e-02 + 1.050700000000000e-01 + 1.166600000000000e-01 + 1.002400000000000e-01 + 5.124800000000000e-02 +-2.669800000000000e-02 +-1.172400000000000e-01 +-1.941200000000000e-01 +-2.326600000000000e-01 +-2.238900000000000e-01 +-1.814500000000000e-01 +-1.351000000000000e-01 +-1.137300000000000e-01 +-1.289000000000000e-01 +-1.699500000000000e-01 +-2.136200000000000e-01 +-2.404300000000000e-01 +-2.453500000000000e-01 +-2.353000000000000e-01 +-2.168200000000000e-01 +-1.851600000000000e-01 +-1.245400000000000e-01 +-1.965600000000000e-02 + 1.307400000000000e-01 + 3.094000000000000e-01 + 4.886500000000000e-01 + 6.441100000000000e-01 + 7.627800000000000e-01 + 8.398300000000000e-01 + 8.685300000000000e-01 + 8.343699999999999e-01 + 7.206600000000000e-01 + 5.228900000000000e-01 + 2.603600000000000e-01 +-2.552600000000000e-02 +-2.867800000000000e-01 +-4.884200000000000e-01 +-6.188000000000000e-01 +-6.852600000000000e-01 +-7.006300000000000e-01 +-6.727100000000000e-01 +-6.043100000000000e-01 +-5.017700000000000e-01 +-3.819200000000000e-01 +-2.690800000000000e-01 +-1.826900000000000e-01 +-1.248500000000000e-01 +-7.818799999999999e-02 +-1.678600000000000e-02 + 7.680500000000000e-02 + 1.998100000000000e-01 + 3.296600000000000e-01 + 4.348700000000000e-01 + 4.882200000000000e-01 + 4.748900000000000e-01 + 3.935500000000000e-01 + 2.537900000000000e-01 + 7.365900000000000e-02 +-1.218100000000000e-01 +-3.032100000000000e-01 +-4.422300000000000e-01 +-5.185900000000000e-01 +-5.246200000000000e-01 +-4.649700000000000e-01 +-3.524700000000000e-01 +-2.040100000000000e-01 +-3.895900000000000e-02 + 1.205300000000000e-01 + 2.510400000000000e-01 + 3.330700000000000e-01 + 3.578600000000000e-01 + 3.308800000000000e-01 + 2.687100000000000e-01 + 1.911400000000000e-01 + 1.143000000000000e-01 + 4.949600000000000e-02 + 6.851700000000000e-03 +-2.057100000000000e-03 + 3.238800000000000e-02 + 1.095000000000000e-01 + 2.123000000000000e-01 + 3.112400000000000e-01 + 3.777400000000000e-01 + 3.990500000000000e-01 + 3.833600000000000e-01 + 3.507800000000000e-01 + 3.168500000000000e-01 + 2.810800000000000e-01 + 2.290700000000000e-01 + 1.453500000000000e-01 + 2.579900000000000e-02 +-1.206900000000000e-01 +-2.810000000000000e-01 +-4.475000000000000e-01 +-6.180200000000000e-01 +-7.853800000000000e-01 +-9.269400000000000e-01 +-1.006800000000000e+00 +-9.939900000000000e-01 +-8.842500000000000e-01 +-7.087700000000000e-01 +-5.190700000000000e-01 +-3.568900000000000e-01 +-2.297100000000000e-01 +-1.103800000000000e-01 + 3.821600000000000e-02 + 2.311100000000000e-01 + 4.453800000000000e-01 + 6.319500000000000e-01 + 7.462500000000000e-01 + 7.756500000000000e-01 + 7.448700000000000e-01 + 6.976200000000000e-01 + 6.691400000000000e-01 + 6.686500000000000e-01 + 6.811100000000000e-01 + 6.824500000000000e-01 + 6.545800000000001e-01 + 5.899500000000000e-01 + 4.866700000000000e-01 + 3.426500000000000e-01 + 1.565500000000000e-01 +-6.511900000000000e-02 +-3.020500000000000e-01 +-5.228100000000000e-01 +-6.962300000000000e-01 +-8.039900000000000e-01 +-8.456100000000000e-01 +-8.324300000000000e-01 +-7.757900000000000e-01 +-6.788200000000000e-01 +-5.381500000000000e-01 +-3.542200000000000e-01 +-1.420800000000000e-01 + 6.601400000000000e-02 + 2.298600000000000e-01 + 3.180900000000000e-01 + 3.230300000000000e-01 + 2.647900000000000e-01 + 1.812800000000000e-01 + 1.090900000000000e-01 + 6.549800000000000e-02 + 4.207800000000000e-02 + 1.394100000000000e-02 +-4.065000000000000e-02 +-1.225200000000000e-01 +-2.075000000000000e-01 +-2.594600000000000e-01 +-2.524600000000000e-01 +-1.872200000000000e-01 +-9.036300000000000e-02 + 3.241000000000000e-03 + 7.261500000000000e-02 + 1.215100000000000e-01 + 1.704100000000000e-01 + 2.362300000000000e-01 + 3.156400000000000e-01 + 3.848800000000000e-01 + 4.162100000000000e-01 + 3.981700000000000e-01 + 3.440700000000000e-01 + 2.824100000000000e-01 + 2.367700000000000e-01 + 2.106200000000000e-01 + 1.878600000000000e-01 + 1.476100000000000e-01 + 8.149500000000000e-02 + 8.643800000000000e-04 +-6.981800000000001e-02 +-1.073400000000000e-01 +-1.017600000000000e-01 +-6.002600000000000e-02 +-2.211400000000000e-03 + 4.508400000000000e-02 + 5.532100000000000e-02 + 8.878000000000000e-03 +-9.926800000000000e-02 +-2.538900000000000e-01 +-4.214000000000000e-01 +-5.620500000000000e-01 +-6.476200000000000e-01 +-6.734400000000000e-01 +-6.555700000000000e-01 +-6.141100000000000e-01 +-5.549200000000000e-01 +-4.645900000000000e-01 +-3.237700000000000e-01 +-1.292000000000000e-01 + 9.330500000000000e-02 + 2.965400000000000e-01 + 4.362700000000000e-01 + 4.947000000000000e-01 + 4.863400000000000e-01 + 4.429600000000000e-01 + 3.906200000000000e-01 + 3.367400000000000e-01 + 2.756100000000000e-01 + 2.049500000000000e-01 + 1.370500000000000e-01 + 9.406100000000001e-02 + 9.142500000000001e-02 + 1.246000000000000e-01 + 1.715900000000000e-01 + 2.102200000000000e-01 + 2.359800000000000e-01 + 2.650600000000000e-01 + 3.189600000000000e-01 + 4.022600000000000e-01 + 4.911000000000000e-01 + 5.418100000000000e-01 + 5.142700000000000e-01 + 3.939900000000000e-01 + 1.990500000000000e-01 +-3.046200000000000e-02 +-2.515500000000000e-01 +-4.337500000000000e-01 +-5.644800000000000e-01 +-6.458500000000000e-01 +-6.882800000000000e-01 +-7.048200000000000e-01 +-7.061900000000000e-01 +-6.964900000000001e-01 +-6.711800000000000e-01 +-6.203500000000000e-01 +-5.375900000000000e-01 +-4.290300000000000e-01 +-3.150500000000000e-01 +-2.210100000000000e-01 +-1.621100000000000e-01 +-1.334400000000000e-01 +-1.133500000000000e-01 +-7.855700000000000e-02 +-1.945600000000000e-02 + 5.645900000000000e-02 + 1.356100000000000e-01 + 2.143400000000000e-01 + 3.058500000000000e-01 + 4.311900000000000e-01 + 6.005700000000000e-01 + 7.997200000000000e-01 + 9.923400000000000e-01 + 1.137100000000000e+00 + 1.206400000000000e+00 + 1.194300000000000e+00 + 1.109200000000000e+00 + 9.601700000000000e-01 + 7.501200000000000e-01 + 4.798700000000000e-01 + 1.593600000000000e-01 +-1.856400000000000e-01 +-5.179200000000000e-01 +-8.015900000000000e-01 +-1.013800000000000e+00 +-1.147800000000000e+00 +-1.207300000000000e+00 +-1.198800000000000e+00 +-1.128600000000000e+00 +-1.004800000000000e+00 +-8.403800000000000e-01 +-6.518000000000000e-01 +-4.539800000000000e-01 +-2.568000000000000e-01 +-6.698999999999999e-02 + 1.059500000000000e-01 + 2.462800000000000e-01 + 3.365500000000000e-01 + 3.685900000000000e-01 + 3.529700000000000e-01 + 3.180500000000000e-01 + 2.972400000000000e-01 + 3.117500000000000e-01 + 3.604900000000000e-01 + 4.233400000000000e-01 + 4.749400000000000e-01 + 4.990400000000000e-01 + 4.943600000000000e-01 + 4.700900000000000e-01 + 4.360300000000000e-01 + 3.950900000000000e-01 + 3.418800000000000e-01 + 2.666800000000000e-01 + 1.612000000000000e-01 + 2.345000000000000e-02 +-1.393600000000000e-01 +-3.102400000000000e-01 +-4.654400000000000e-01 +-5.812800000000000e-01 +-6.428700000000001e-01 +-6.495900000000000e-01 +-6.129800000000000e-01 +-5.475700000000000e-01 +-4.607600000000000e-01 +-3.501300000000000e-01 +-2.108400000000000e-01 +-4.741500000000000e-02 + 1.202700000000000e-01 + 2.635700000000000e-01 + 3.606700000000000e-01 + 4.094900000000000e-01 + 4.277400000000000e-01 + 4.392700000000000e-01 + 4.570600000000000e-01 + 4.754600000000000e-01 + 4.765700000000000e-01 + 4.442100000000000e-01 + 3.734900000000000e-01 + 2.696600000000000e-01 + 1.401700000000000e-01 +-9.934999999999999e-03 +-1.737100000000000e-01 +-3.340400000000000e-01 +-4.625000000000000e-01 +-5.312900000000000e-01 +-5.317000000000000e-01 +-4.837300000000000e-01 +-4.256900000000000e-01 +-3.886500000000000e-01 +-3.743500000000000e-01 +-3.548900000000000e-01 +-2.964500000000000e-01 +-1.893400000000000e-01 +-6.022300000000000e-02 + 4.467800000000000e-02 + 9.347800000000001e-02 + 9.342900000000000e-02 + 8.673900000000000e-02 + 1.201500000000000e-01 + 2.116400000000000e-01 + 3.395700000000000e-01 + 4.613200000000000e-01 + 5.450000000000000e-01 + 5.882500000000001e-01 + 6.101100000000000e-01 + 6.246500000000000e-01 + 6.201600000000000e-01 + 5.624600000000000e-01 + 4.205500000000000e-01 + 1.944400000000000e-01 +-7.705099999999999e-02 +-3.344500000000000e-01 +-5.280800000000000e-01 +-6.388900000000000e-01 +-6.774400000000000e-01 +-6.660300000000000e-01 +-6.206900000000000e-01 +-5.463600000000000e-01 +-4.452000000000000e-01 +-3.269900000000000e-01 +-2.107000000000000e-01 +-1.157000000000000e-01 +-5.083800000000000e-02 +-1.117400000000000e-02 + 1.572500000000000e-02 + 4.009500000000000e-02 + 6.548600000000000e-02 + 9.214300000000000e-02 + 1.233500000000000e-01 + 1.673300000000000e-01 + 2.318500000000000e-01 + 3.156200000000000e-01 + 4.036100000000000e-01 + 4.701400000000000e-01 + 4.878800000000000e-01 + 4.378700000000000e-01 + 3.165800000000000e-01 + 1.396000000000000e-01 +-5.831900000000000e-02 +-2.283700000000000e-01 +-3.208400000000000e-01 +-3.049500000000000e-01 +-1.869200000000000e-01 +-1.378400000000000e-02 + 1.444300000000000e-01 + 2.281700000000000e-01 + 2.187200000000000e-01 + 1.457700000000000e-01 + 6.574700000000000e-02 + 2.442900000000000e-02 + 2.856100000000000e-02 + 4.538400000000000e-02 + 2.919000000000000e-02 +-4.488400000000000e-02 +-1.637000000000000e-01 +-2.862600000000000e-01 +-3.716800000000000e-01 +-4.040300000000000e-01 +-3.976200000000000e-01 +-3.823000000000000e-01 +-3.823000000000000e-01 +-4.035800000000000e-01 +-4.352000000000000e-01 +-4.586800000000000e-01 +-4.553200000000000e-01 +-4.075800000000000e-01 +-2.986900000000000e-01 +-1.168700000000000e-01 + 1.348400000000000e-01 + 4.303700000000000e-01 + 7.228000000000000e-01 + 9.591400000000000e-01 + 1.099900000000000e+00 + 1.131600000000000e+00 + 1.064600000000000e+00 + 9.207000000000000e-01 + 7.208900000000000e-01 + 4.814900000000000e-01 + 2.193500000000000e-01 +-4.267400000000000e-02 +-2.774500000000000e-01 +-4.628300000000000e-01 +-5.906600000000000e-01 +-6.669200000000000e-01 +-7.020200000000000e-01 +-6.990200000000000e-01 +-6.503600000000000e-01 +-5.470200000000000e-01 +-3.934000000000000e-01 +-2.154700000000000e-01 +-5.380100000000000e-02 + 5.542000000000000e-02 + 9.902700000000000e-02 + 9.210800000000000e-02 + 6.620700000000000e-02 + 4.860300000000000e-02 + 4.668200000000000e-02 + 4.729900000000000e-02 + 3.032100000000000e-02 +-1.386200000000000e-02 +-7.504600000000000e-02 +-1.280300000000000e-01 +-1.478200000000000e-01 +-1.250100000000000e-01 +-7.145600000000001e-02 +-1.296200000000000e-02 + 2.631700000000000e-02 + 3.800400000000000e-02 + 3.351200000000000e-02 + 3.557400000000000e-02 + 6.266600000000000e-02 + 1.163100000000000e-01 + 1.796400000000000e-01 + 2.285400000000000e-01 + 2.480400000000000e-01 + 2.429900000000000e-01 + 2.350900000000000e-01 + 2.479200000000000e-01 + 2.901100000000000e-01 + 3.484500000000000e-01 + 3.960300000000000e-01 + 4.093800000000000e-01 + 3.820900000000000e-01 + 3.249800000000000e-01 + 2.533100000000000e-01 + 1.717600000000000e-01 + 6.988900000000001e-02 +-6.733400000000000e-02 +-2.416500000000000e-01 +-4.303500000000000e-01 +-5.919400000000000e-01 +-6.865000000000000e-01 +-6.976100000000000e-01 +-6.411300000000000e-01 +-5.553300000000000e-01 +-4.791800000000000e-01 +-4.330600000000000e-01 +-4.128500000000000e-01 +-3.984600000000000e-01 +-3.684000000000000e-01 +-3.103000000000000e-01 +-2.223400000000000e-01 +-1.083100000000000e-01 + 2.710400000000000e-02 + 1.786100000000000e-01 + 3.370500000000000e-01 + 4.868000000000000e-01 + 6.078200000000000e-01 + 6.818700000000000e-01 + 6.996300000000000e-01 + 6.644500000000000e-01 + 5.908200000000000e-01 + 4.986700000000000e-01 + 4.062100000000000e-01 + 3.243700000000000e-01 + 2.547400000000000e-01 + 1.919000000000000e-01 + 1.290900000000000e-01 + 6.436000000000000e-02 + 3.568700000000000e-03 +-4.269200000000000e-02 +-6.707900000000000e-02 +-7.346200000000000e-02 +-7.856600000000000e-02 +-1.044600000000000e-01 +-1.655500000000000e-01 +-2.586800000000000e-01 +-3.637600000000000e-01 +-4.554300000000000e-01 +-5.182000000000000e-01 +-5.539600000000000e-01 +-5.765200000000000e-01 +-5.966900000000001e-01 +-6.093900000000000e-01 +-5.929400000000000e-01 +-5.218699999999999e-01 +-3.847800000000000e-01 +-1.949200000000000e-01 + 1.393800000000000e-02 + 2.034100000000000e-01 + 3.476300000000000e-01 + 4.414100000000000e-01 + 4.958700000000000e-01 + 5.267100000000000e-01 + 5.437000000000000e-01 + 5.473500000000000e-01 + 5.328800000000000e-01 + 4.968900000000000e-01 + 4.419000000000000e-01 + 3.765900000000000e-01 + 3.123500000000000e-01 + 2.583000000000000e-01 + 2.166100000000000e-01 + 1.801300000000000e-01 + 1.340000000000000e-01 + 6.217400000000000e-02 +-4.266100000000000e-02 +-1.709600000000000e-01 +-2.961100000000000e-01 +-3.849400000000000e-01 +-4.148000000000000e-01 +-3.873900000000000e-01 +-3.297200000000000e-01 +-2.799400000000000e-01 +-2.658200000000000e-01 +-2.891500000000000e-01 +-3.261200000000000e-01 +-3.432100000000000e-01 +-3.179300000000000e-01 +-2.512600000000000e-01 +-1.646200000000000e-01 +-8.511100000000001e-02 +-2.996600000000000e-02 + 1.106700000000000e-04 + 1.626200000000000e-02 + 3.116600000000000e-02 + 5.136200000000000e-02 + 7.683100000000000e-02 + 1.061600000000000e-01 + 1.417700000000000e-01 + 1.906300000000000e-01 + 2.599900000000000e-01 + 3.511700000000000e-01 + 4.552900000000000e-01 + 5.532600000000000e-01 + 6.198000000000000e-01 + 6.303800000000001e-01 + 5.691300000000000e-01 + 4.354700000000000e-01 + 2.464500000000000e-01 + 3.261200000000000e-02 +-1.720200000000000e-01 +-3.415300000000000e-01 +-4.649800000000000e-01 +-5.444900000000000e-01 +-5.865300000000000e-01 +-5.931700000000000e-01 +-5.606500000000000e-01 +-4.863700000000000e-01 +-3.786000000000000e-01 +-2.594300000000000e-01 +-1.562900000000000e-01 +-8.651499999999999e-02 +-4.591400000000000e-02 +-1.088800000000000e-02 + 4.573700000000000e-02 + 1.353900000000000e-01 + 2.444000000000000e-01 + 3.412400000000000e-01 + 3.953800000000000e-01 + 3.944500000000000e-01 + 3.486000000000000e-01 + 2.801200000000000e-01 + 2.073300000000000e-01 + 1.344500000000000e-01 + 5.349200000000000e-02 +-4.493400000000000e-02 +-1.605400000000000e-01 +-2.791200000000000e-01 +-3.760600000000000e-01 +-4.234900000000000e-01 +-3.973500000000000e-01 +-2.833000000000000e-01 +-8.293200000000001e-02 + 1.805700000000000e-01 + 4.616200000000000e-01 + 7.010100000000000e-01 + 8.441600000000000e-01 + 8.605699999999999e-01 + 7.531600000000001e-01 + 5.510699999999999e-01 + 2.907800000000000e-01 +-8.149800000000000e-04 +-3.091400000000000e-01 +-6.197400000000000e-01 +-9.033900000000000e-01 +-1.114100000000000e+00 +-1.206500000000000e+00 +-1.161300000000000e+00 +-1.001300000000000e+00 +-7.819400000000000e-01 +-5.614700000000000e-01 +-3.696000000000000e-01 +-1.962400000000000e-01 +-7.755700000000000e-03 + 2.220500000000000e-01 + 4.891600000000000e-01 + 7.603200000000000e-01 + 9.946700000000001e-01 + 1.167500000000000e+00 + 1.277500000000000e+00 + 1.333000000000000e+00 + 1.331900000000000e+00 + 1.252800000000000e+00 + 1.067400000000000e+00 + 7.655100000000000e-01 + 3.723400000000000e-01 +-5.500800000000000e-02 +-4.512400000000000e-01 +-7.698700000000001e-01 +-9.959400000000000e-01 +-1.138400000000000e+00 +-1.211700000000000e+00 +-1.221900000000000e+00 +-1.167500000000000e+00 +-1.049800000000000e+00 +-8.818600000000000e-01 +-6.873300000000000e-01 +-4.888900000000000e-01 +-2.979500000000000e-01 +-1.138700000000000e-01 + 6.710099999999999e-02 + 2.415800000000000e-01 + 3.971300000000000e-01 + 5.202100000000000e-01 + 6.064900000000000e-01 + 6.634000000000000e-01 + 7.018100000000000e-01 + 7.233700000000000e-01 + 7.148600000000001e-01 + 6.555500000000000e-01 + 5.328700000000000e-01 + 3.547500000000000e-01 + 1.490100000000000e-01 +-4.966100000000000e-02 +-2.151900000000000e-01 +-3.371200000000000e-01 +-4.156200000000000e-01 +-4.509200000000000e-01 +-4.374900000000000e-01 +-3.681700000000000e-01 +-2.442800000000000e-01 +-8.213900000000000e-02 + 9.045599999999999e-02 + 2.459000000000000e-01 + 3.678100000000000e-01 + 4.531600000000000e-01 + 5.047100000000000e-01 + 5.208600000000000e-01 + 4.917900000000000e-01 + 4.054100000000000e-01 + 2.582900000000000e-01 + 6.294500000000000e-02 +-1.542700000000000e-01 +-3.629700000000000e-01 +-5.391600000000000e-01 +-6.697700000000000e-01 +-7.502200000000000e-01 +-7.794500000000000e-01 +-7.578100000000000e-01 +-6.893200000000000e-01 +-5.850600000000000e-01 +-4.627500000000000e-01 +-3.408100000000000e-01 +-2.301000000000000e-01 +-1.291300000000000e-01 +-2.645100000000000e-02 + 9.103799999999999e-02 + 2.289400000000000e-01 + 3.808600000000000e-01 + 5.303900000000000e-01 + 6.573700000000000e-01 + 7.443200000000000e-01 + 7.801399999999999e-01 + 7.610700000000000e-01 + 6.904900000000000e-01 + 5.789299999999999e-01 + 4.438800000000000e-01 + 3.079500000000000e-01 + 1.939900000000000e-01 + 1.180400000000000e-01 + 8.253099999999999e-02 + 7.318200000000000e-02 + 6.202000000000000e-02 + 1.666400000000000e-02 +-8.677799999999999e-02 +-2.520200000000000e-01 +-4.575200000000000e-01 +-6.614300000000000e-01 +-8.160200000000000e-01 +-8.858900000000000e-01 +-8.616800000000000e-01 +-7.619300000000000e-01 +-6.217100000000000e-01 +-4.735300000000000e-01 +-3.312500000000000e-01 +-1.861700000000000e-01 +-1.782900000000000e-02 + 1.868600000000000e-01 + 4.175100000000000e-01 + 6.374000000000000e-01 + 7.961500000000000e-01 + 8.516100000000000e-01 + 7.891400000000000e-01 + 6.285200000000000e-01 + 4.153700000000000e-01 + 2.024300000000000e-01 + 3.050600000000000e-02 +-8.236900000000000e-02 +-1.401400000000000e-01 +-1.593800000000000e-01 +-1.581200000000000e-01 +-1.487300000000000e-01 +-1.374400000000000e-01 +-1.281800000000000e-01 +-1.264700000000000e-01 +-1.398100000000000e-01 +-1.740000000000000e-01 +-2.282500000000000e-01 +-2.928500000000000e-01 +-3.515800000000000e-01 +-3.877300000000000e-01 +-3.899400000000000e-01 +-3.544200000000000e-01 +-2.827700000000000e-01 +-1.781500000000000e-01 +-4.366500000000000e-02 + 1.149000000000000e-01 + 2.843400000000000e-01 + 4.422300000000000e-01 + 5.620300000000000e-01 + 6.243000000000000e-01 + 6.273700000000000e-01 + 5.897400000000000e-01 + 5.404900000000000e-01 + 5.020200000000000e-01 + 4.757400000000000e-01 + 4.406000000000000e-01 + 3.664800000000000e-01 + 2.345300000000000e-01 + 5.102800000000000e-02 +-1.546200000000000e-01 +-3.466100000000000e-01 +-5.024700000000000e-01 +-6.218900000000001e-01 +-7.189400000000000e-01 +-8.038900000000000e-01 +-8.694800000000000e-01 +-8.927300000000000e-01 +-8.519099999999999e-01 +-7.456400000000000e-01 +-5.985500000000000e-01 +-4.472100000000000e-01 +-3.154100000000000e-01 +-1.970900000000000e-01 +-6.084800000000000e-02 + 1.250900000000000e-01 + 3.644400000000000e-01 + 6.215900000000000e-01 + 8.366700000000000e-01 + 9.577900000000000e-01 + 9.686100000000000e-01 + 8.932099999999999e-01 + 7.764500000000000e-01 + 6.551399999999999e-01 + 5.409600000000000e-01 + 4.252500000000000e-01 + 2.989200000000000e-01 + 1.693100000000000e-01 + 6.006500000000000e-02 +-5.616500000000000e-03 +-2.404500000000000e-02 +-1.656600000000000e-02 +-1.685800000000000e-02 +-4.988400000000000e-02 +-1.184700000000000e-01 +-2.065800000000000e-01 +-2.947200000000000e-01 +-3.736800000000000e-01 +-4.460100000000000e-01 +-5.159700000000000e-01 +-5.788400000000000e-01 +-6.205300000000000e-01 +-6.283100000000000e-01 +-6.033400000000000e-01 +-5.630600000000000e-01 +-5.302100000000000e-01 +-5.166800000000000e-01 +-5.147900000000000e-01 +-5.025900000000000e-01 +-4.578300000000000e-01 +-3.690100000000000e-01 +-2.354100000000000e-01 +-5.916800000000000e-02 + 1.601500000000000e-01 + 4.206300000000000e-01 + 7.059800000000001e-01 + 9.784200000000000e-01 + 1.187300000000000e+00 + 1.291300000000000e+00 + 1.280400000000000e+00 + 1.179700000000000e+00 + 1.032200000000000e+00 + 8.711500000000000e-01 + 7.029000000000000e-01 + 5.127000000000000e-01 + 2.878400000000000e-01 + 3.904900000000000e-02 +-1.977300000000000e-01 +-3.814500000000000e-01 +-4.926500000000000e-01 +-5.460100000000000e-01 +-5.793700000000001e-01 +-6.275500000000001e-01 +-7.005300000000000e-01 +-7.810300000000000e-01 +-8.407900000000000e-01 +-8.611400000000000e-01 +-8.421000000000000e-01 +-7.953100000000000e-01 +-7.297800000000000e-01 +-6.438900000000000e-01 +-5.303200000000000e-01 +-3.880300000000000e-01 +-2.295100000000000e-01 +-7.585600000000001e-02 + 5.681800000000000e-02 + 1.681300000000000e-01 + 2.720300000000000e-01 + 3.838700000000000e-01 + 5.060300000000000e-01 + 6.233100000000000e-01 + 7.116400000000001e-01 + 7.534400000000000e-01 + 7.484200000000000e-01 + 7.127900000000000e-01 + 6.683800000000000e-01 + 6.299100000000000e-01 + 5.985200000000001e-01 + 5.638400000000000e-01 + 5.115000000000000e-01 + 4.305000000000000e-01 + 3.173600000000000e-01 + 1.768500000000000e-01 + 2.091900000000000e-02 +-1.336300000000000e-01 +-2.690100000000000e-01 +-3.717500000000000e-01 +-4.376100000000000e-01 +-4.732900000000000e-01 +-4.931400000000000e-01 +-5.125300000000000e-01 +-5.413600000000000e-01 +-5.812300000000000e-01 +-6.267900000000000e-01 +-6.689700000000000e-01 +-6.970300000000000e-01 +-6.982300000000000e-01 +-6.570600000000000e-01 +-5.570200000000000e-01 +-3.867400000000000e-01 +-1.487300000000000e-01 + 1.335800000000000e-01 + 4.157300000000000e-01 + 6.416200000000000e-01 + 7.609900000000001e-01 + 7.487700000000000e-01 + 6.176900000000000e-01 + 4.166100000000000e-01 + 2.129300000000000e-01 + 6.533300000000000e-02 +-2.359000000000000e-04 + 1.637100000000000e-03 + 2.957800000000000e-02 + 4.364000000000000e-02 + 3.146800000000000e-02 + 1.604800000000000e-02 + 3.956300000000000e-02 + 1.331000000000000e-01 + 2.914500000000000e-01 + 4.694500000000000e-01 + 6.022999999999999e-01 + 6.374600000000000e-01 + 5.588800000000000e-01 + 3.903800000000000e-01 + 1.791700000000000e-01 +-2.849800000000000e-02 +-2.047600000000000e-01 +-3.435800000000000e-01 +-4.525200000000000e-01 +-5.412600000000000e-01 +-6.136500000000000e-01 +-6.656100000000000e-01 +-6.872200000000001e-01 +-6.671400000000000e-01 +-5.984100000000000e-01 +-4.844100000000000e-01 +-3.420900000000000e-01 +-1.986800000000000e-01 +-8.103500000000000e-02 +-2.542700000000000e-03 + 4.373300000000000e-02 + 7.941500000000000e-02 + 1.249400000000000e-01 + 1.841400000000000e-01 + 2.410000000000000e-01 + 2.721700000000000e-01 + 2.666500000000000e-01 + 2.375200000000000e-01 + 2.158500000000000e-01 + 2.299700000000000e-01 + 2.849500000000000e-01 + 3.574400000000000e-01 + 4.101100000000000e-01 + 4.152100000000000e-01 + 3.705700000000000e-01 + 2.973000000000000e-01 + 2.225900000000000e-01 + 1.614100000000000e-01 + 1.105000000000000e-01 + 5.712800000000000e-02 +-6.244500000000000e-03 +-7.412000000000001e-02 +-1.324600000000000e-01 +-1.704500000000000e-01 +-1.885500000000000e-01 +-1.959100000000000e-01 +-1.999100000000000e-01 +-1.976400000000000e-01 +-1.779200000000000e-01 +-1.335000000000000e-01 +-7.387500000000000e-02 +-2.741900000000000e-02 +-2.880300000000000e-02 +-9.839000000000001e-02 +-2.270600000000000e-01 +-3.771800000000000e-01 +-5.003700000000000e-01 +-5.616900000000000e-01 +-5.557500000000000e-01 +-5.051700000000000e-01 +-4.426700000000000e-01 +-3.880100000000000e-01 +-3.343000000000000e-01 +-2.521300000000000e-01 +-1.093500000000000e-01 + 1.053800000000000e-01 + 3.696100000000000e-01 + 6.327900000000000e-01 + 8.379500000000000e-01 + 9.471000000000001e-01 + 9.565399999999999e-01 + 8.941900000000000e-01 + 8.021200000000001e-01 + 7.149400000000000e-01 + 6.458700000000001e-01 + 5.859900000000000e-01 + 5.138800000000000e-01 + 4.085400000000000e-01 + 2.586800000000000e-01 + 6.635199999999999e-02 +-1.539800000000000e-01 +-3.787400000000000e-01 +-5.804300000000000e-01 +-7.345000000000000e-01 +-8.266700000000000e-01 +-8.568200000000000e-01 +-8.366800000000000e-01 +-7.818000000000001e-01 +-7.031400000000000e-01 +-6.046899999999999e-01 +-4.890900000000000e-01 +-3.662800000000000e-01 +-2.566300000000000e-01 +-1.834900000000000e-01 +-1.587900000000000e-01 +-1.721800000000000e-01 +-1.930900000000000e-01 +-1.860000000000000e-01 +-1.290100000000000e-01 +-2.299700000000000e-02 + 1.143300000000000e-01 + 2.631000000000000e-01 + 4.122200000000000e-01 + 5.576900000000000e-01 + 6.913400000000000e-01 + 7.919600000000000e-01 + 8.297200000000000e-01 + 7.838100000000000e-01 + 6.609500000000000e-01 + 4.999100000000000e-01 + 3.559200000000000e-01 + 2.733200000000000e-01 + 2.636000000000000e-01 + 3.021100000000000e-01 + 3.440700000000000e-01 + 3.485700000000000e-01 + 2.957600000000000e-01 + 1.896100000000000e-01 + 4.892700000000000e-02 +-1.050000000000000e-01 +-2.565400000000000e-01 +-3.980700000000000e-01 +-5.285300000000001e-01 +-6.505600000000000e-01 +-7.664100000000000e-01 +-8.726800000000000e-01 +-9.559800000000001e-01 +-9.934200000000000e-01 +-9.605800000000000e-01 +-8.441600000000000e-01 +-6.517600000000000e-01 +-4.117500000000000e-01 +-1.623300000000000e-01 + 6.360200000000001e-02 + 2.480700000000000e-01 + 3.870700000000000e-01 + 4.821100000000000e-01 + 5.326700000000000e-01 + 5.359000000000000e-01 + 4.928600000000000e-01 + 4.148000000000000e-01 + 3.228200000000000e-01 + 2.402400000000000e-01 + 1.830800000000000e-01 + 1.551600000000000e-01 + 1.502300000000000e-01 + 1.581600000000000e-01 + 1.699500000000000e-01 + 1.795200000000000e-01 + 1.836100000000000e-01 + 1.824700000000000e-01 + 1.814000000000000e-01 + 1.901100000000000e-01 + 2.177000000000000e-01 + 2.651100000000000e-01 + 3.205200000000000e-01 + 3.626300000000000e-01 + 3.706200000000000e-01 + 3.342200000000000e-01 + 2.565000000000000e-01 + 1.481500000000000e-01 + 1.923300000000000e-02 +-1.242100000000000e-01 +-2.760000000000000e-01 +-4.236600000000000e-01 +-5.482500000000000e-01 +-6.327500000000000e-01 +-6.727100000000000e-01 +-6.790000000000000e-01 +-6.684900000000000e-01 +-6.492100000000000e-01 +-6.128800000000000e-01 +-5.426299999999999e-01 +-4.304800000000000e-01 +-2.899300000000000e-01 +-1.513300000000000e-01 +-4.230700000000000e-02 + 3.104700000000000e-02 + 8.590399999999999e-02 + 1.447800000000000e-01 + 2.129200000000000e-01 + 2.710600000000000e-01 + 2.915400000000000e-01 + 2.653000000000000e-01 + 2.164100000000000e-01 + 1.896100000000000e-01 + 2.188300000000000e-01 + 3.014400000000000e-01 + 4.000500000000000e-01 + 4.713300000000000e-01 + 4.988800000000000e-01 + 5.025200000000000e-01 + 5.158800000000000e-01 + 5.508300000000000e-01 + 5.794800000000000e-01 + 5.510800000000000e-01 + 4.323600000000000e-01 + 2.389300000000000e-01 + 3.120900000000000e-02 +-1.245400000000000e-01 +-2.009400000000000e-01 +-2.256000000000000e-01 +-2.558700000000000e-01 +-3.316900000000000e-01 +-4.428100000000000e-01 +-5.355000000000000e-01 +-5.532899999999999e-01 +-4.809600000000000e-01 +-3.590900000000000e-01 +-2.593600000000000e-01 +-2.391300000000000e-01 +-3.069800000000000e-01 +-4.205500000000000e-01 +-5.142200000000000e-01 +-5.355100000000000e-01 +-4.676300000000000e-01 +-3.291600000000000e-01 +-1.578300000000000e-01 + 8.072599999999999e-03 + 1.410700000000000e-01 + 2.279200000000000e-01 + 2.688600000000000e-01 + 2.751200000000000e-01 + 2.644800000000000e-01 + 2.537800000000000e-01 + 2.512400000000000e-01 + 2.533900000000000e-01 + 2.497500000000000e-01 + 2.326400000000000e-01 + 2.047500000000000e-01 + 1.787500000000000e-01 + 1.692300000000000e-01 + 1.835300000000000e-01 + 2.185800000000000e-01 + 2.652700000000000e-01 + 3.153800000000000e-01 + 3.645500000000000e-01 + 4.090800000000000e-01 + 4.408000000000000e-01 + 4.461700000000000e-01 + 4.121700000000000e-01 + 3.346800000000000e-01 + 2.223200000000000e-01 + 9.213000000000000e-02 +-4.007100000000000e-02 +-1.669800000000000e-01 +-2.896600000000000e-01 +-4.108100000000000e-01 +-5.278600000000000e-01 +-6.314400000000000e-01 +-7.102400000000000e-01 +-7.573700000000000e-01 +-7.730600000000000e-01 +-7.621599999999999e-01 +-7.294100000000000e-01 +-6.767600000000000e-01 +-6.040400000000000e-01 +-5.109200000000000e-01 +-3.974300000000000e-01 +-2.628000000000000e-01 +-1.052700000000000e-01 + 7.488100000000000e-02 + 2.701700000000000e-01 + 4.633700000000000e-01 + 6.312700000000000e-01 + 7.541900000000000e-01 + 8.249800000000000e-01 + 8.512100000000000e-01 + 8.485600000000000e-01 + 8.302600000000000e-01 + 8.002000000000000e-01 + 7.539900000000000e-01 + 6.855800000000000e-01 + 5.930100000000000e-01 + 4.784700000000000e-01 + 3.437600000000000e-01 + 1.865400000000000e-01 + 2.507700000000000e-03 +-2.073200000000000e-01 +-4.296400000000000e-01 +-6.383600000000000e-01 +-8.017300000000001e-01 +-8.930800000000000e-01 +-8.992700000000000e-01 +-8.236500000000000e-01 +-6.847299999999999e-01 +-5.129800000000000e-01 +-3.461100000000000e-01 +-2.210800000000000e-01 +-1.622300000000000e-01 +-1.693600000000000e-01 +-2.138400000000000e-01 +-2.486000000000000e-01 +-2.297700000000000e-01 +-1.387200000000000e-01 + 8.903500000000000e-03 + 1.733200000000000e-01 + 3.132200000000000e-01 + 4.059400000000000e-01 + 4.527600000000000e-01 + 4.679400000000000e-01 + 4.623500000000000e-01 + 4.351000000000000e-01 + 3.790200000000000e-01 + 2.939100000000000e-01 + 1.952900000000000e-01 + 1.103400000000000e-01 + 6.388500000000000e-02 + 6.512100000000000e-02 + 1.050700000000000e-01 + 1.656000000000000e-01 + 2.314600000000000e-01 + 2.950500000000000e-01 + 3.507400000000000e-01 + 3.852100000000000e-01 + 3.743400000000000e-01 + 2.921700000000000e-01 + 1.270600000000000e-01 +-1.064300000000000e-01 +-3.694500000000000e-01 +-6.143300000000000e-01 +-8.037900000000000e-01 +-9.217000000000000e-01 +-9.699200000000000e-01 +-9.557500000000000e-01 +-8.810000000000000e-01 +-7.410400000000000e-01 +-5.339800000000000e-01 +-2.718600000000000e-01 + 1.542400000000000e-02 + 2.874100000000000e-01 + 5.072200000000000e-01 + 6.534900000000000e-01 + 7.234699999999999e-01 + 7.272100000000000e-01 + 6.789600000000000e-01 + 5.924300000000000e-01 + 4.820500000000000e-01 + 3.663000000000000e-01 + 2.670100000000000e-01 + 2.020000000000000e-01 + 1.748000000000000e-01 + 1.696200000000000e-01 + 1.572900000000000e-01 + 1.108100000000000e-01 + 2.149600000000000e-02 +-9.491200000000000e-02 +-2.067900000000000e-01 +-2.846000000000000e-01 +-3.165800000000000e-01 +-3.119300000000000e-01 +-2.904400000000000e-01 +-2.671700000000000e-01 +-2.439500000000000e-01 +-2.137100000000000e-01 +-1.732800000000000e-01 +-1.331100000000000e-01 +-1.148500000000000e-01 +-1.368000000000000e-01 +-1.975800000000000e-01 +-2.705000000000000e-01 +-3.145100000000000e-01 +-2.957000000000000e-01 +-2.062300000000000e-01 +-6.904100000000001e-02 + 7.403200000000000e-02 + 1.828500000000000e-01 + 2.363600000000000e-01 + 2.383800000000000e-01 + 2.113000000000000e-01 + 1.833800000000000e-01 + 1.766000000000000e-01 + 1.996000000000000e-01 + 2.463400000000000e-01 + 2.997100000000000e-01 + 3.385100000000000e-01 + 3.460500000000000e-01 + 3.173200000000000e-01 + 2.611800000000000e-01 + 1.957900000000000e-01 + 1.389800000000000e-01 + 9.911399999999999e-02 + 7.191800000000000e-02 + 4.513700000000000e-02 + 7.465000000000000e-03 +-4.438900000000000e-02 +-1.048400000000000e-01 +-1.642900000000000e-01 +-2.154300000000000e-01 +-2.565700000000000e-01 +-2.907900000000000e-01 +-3.230600000000000e-01 +-3.577500000000000e-01 +-3.971700000000000e-01 +-4.400100000000000e-01 +-4.788700000000000e-01 +-4.990700000000000e-01 +-4.817600000000000e-01 +-4.122600000000000e-01 +-2.896500000000000e-01 +-1.305800000000000e-01 + 3.734100000000000e-02 + 1.898500000000000e-01 + 3.190500000000000e-01 + 4.352000000000000e-01 + 5.551400000000000e-01 + 6.847299999999999e-01 + 8.079600000000000e-01 + 8.911600000000000e-01 + 9.001300000000000e-01 + 8.188000000000000e-01 + 6.571399999999999e-01 + 4.439300000000000e-01 + 2.104900000000000e-01 +-2.300200000000000e-02 +-2.501800000000000e-01 +-4.704800000000000e-01 +-6.780800000000000e-01 +-8.565000000000000e-01 +-9.825199999999999e-01 +-1.036200000000000e+00 +-1.010100000000000e+00 +-9.130800000000000e-01 +-7.658300000000000e-01 +-5.923200000000000e-01 +-4.107500000000000e-01 +-2.284000000000000e-01 +-4.275600000000000e-02 + 1.515100000000000e-01 + 3.531700000000000e-01 + 5.483900000000000e-01 + 7.128400000000000e-01 + 8.223300000000000e-01 + 8.663000000000000e-01 + 8.550300000000000e-01 + 8.143899999999999e-01 + 7.702000000000000e-01 + 7.322200000000000e-01 + 6.890200000000000e-01 + 6.175500000000000e-01 + 5.005800000000000e-01 + 3.393400000000000e-01 + 1.523800000000000e-01 +-3.715400000000000e-02 +-2.145800000000000e-01 +-3.765800000000000e-01 +-5.226200000000000e-01 +-6.445200000000000e-01 +-7.254699999999999e-01 +-7.516600000000000e-01 +-7.271400000000000e-01 +-6.780400000000000e-01 +-6.393799999999999e-01 +-6.323000000000000e-01 +-6.485400000000000e-01 +-6.550600000000000e-01 +-6.167400000000000e-01 +-5.208600000000000e-01 +-3.852400000000000e-01 +-2.445500000000000e-01 +-1.254900000000000e-01 +-2.960900000000000e-02 + 6.411500000000001e-02 + 1.807700000000000e-01 + 3.300200000000000e-01 + 4.996900000000000e-01 + 6.646400000000000e-01 + 8.012500000000000e-01 + 8.958400000000000e-01 + 9.428600000000000e-01 + 9.389600000000000e-01 + 8.815100000000000e-01 + 7.739900000000000e-01 + 6.315000000000000e-01 + 4.780500000000000e-01 + 3.343500000000000e-01 + 2.049400000000000e-01 + 7.673099999999999e-02 +-6.706400000000000e-02 +-2.271900000000000e-01 +-3.789300000000000e-01 +-4.831400000000000e-01 +-5.116200000000000e-01 +-4.686100000000000e-01 +-3.910000000000000e-01 +-3.254000000000000e-01 +-2.979300000000000e-01 +-2.987500000000000e-01 +-2.928200000000000e-01 +-2.490300000000000e-01 +-1.662600000000000e-01 +-7.748600000000000e-02 +-2.968000000000000e-02 +-5.464100000000000e-02 +-1.516300000000000e-01 +-2.924300000000000e-01 +-4.423900000000000e-01 +-5.798500000000000e-01 +-6.994400000000000e-01 +-7.986799999999999e-01 +-8.604900000000000e-01 +-8.479500000000000e-01 +-7.177700000000000e-01 +-4.454200000000000e-01 +-4.584500000000000e-02 + 4.235900000000000e-01 + 8.803600000000000e-01 + 1.244700000000000e+00 + 1.464300000000000e+00 + 1.525400000000000e+00 + 1.448600000000000e+00 + 1.275000000000000e+00 + 1.050600000000000e+00 + 8.133500000000000e-01 + 5.872600000000000e-01 + 3.805300000000000e-01 + 1.895200000000000e-01 + 6.456500000000000e-03 +-1.712900000000000e-01 +-3.349600000000000e-01 +-4.655900000000000e-01 +-5.437500000000000e-01 +-5.631800000000000e-01 +-5.398900000000000e-01 +-5.091500000000000e-01 +-5.100200000000000e-01 +-5.649900000000000e-01 +-6.668900000000000e-01 +-7.813800000000000e-01 +-8.639500000000000e-01 +-8.810600000000000e-01 +-8.225800000000000e-01 +-6.995000000000000e-01 +-5.309300000000000e-01 +-3.315900000000000e-01 +-1.090600000000000e-01 + 1.287800000000000e-01 + 3.644000000000000e-01 + 5.693800000000000e-01 + 7.140600000000000e-01 + 7.819500000000000e-01 + 7.779400000000000e-01 + 7.241100000000000e-01 + 6.465500000000000e-01 + 5.630400000000000e-01 + 4.799600000000000e-01 + 3.979700000000000e-01 + 3.188400000000000e-01 + 2.455800000000000e-01 + 1.758500000000000e-01 + 9.684500000000000e-02 +-9.648900000000000e-03 +-1.520100000000000e-01 +-3.138800000000000e-01 +-4.534000000000000e-01 +-5.216800000000000e-01 +-4.906000000000000e-01 +-3.715800000000000e-01 +-2.109800000000000e-01 +-6.442700000000000e-02 + 3.313400000000000e-02 + 8.163500000000000e-02 + 1.066000000000000e-01 + 1.354800000000000e-01 + 1.780500000000000e-01 + 2.237100000000000e-01 + 2.541000000000000e-01 + 2.577300000000000e-01 + 2.342400000000000e-01 + 1.868300000000000e-01 + 1.127900000000000e-01 + 3.321600000000000e-03 +-1.456000000000000e-01 +-3.209100000000000e-01 +-4.913600000000000e-01 +-6.213700000000000e-01 +-6.906800000000000e-01 +-7.044899999999999e-01 +-6.852900000000000e-01 +-6.520200000000000e-01 +-6.024300000000000e-01 +-5.123900000000000e-01 +-3.533000000000000e-01 +-1.150200000000000e-01 + 1.819700000000000e-01 + 4.926600000000000e-01 + 7.667600000000000e-01 + 9.676500000000000e-01 + 1.080500000000000e+00 + 1.108600000000000e+00 + 1.064200000000000e+00 + 9.624000000000000e-01 + 8.194000000000000e-01 + 6.515700000000000e-01 + 4.723900000000000e-01 + 2.871700000000000e-01 + 9.082899999999999e-02 +-1.272500000000000e-01 +-3.719600000000000e-01 +-6.314500000000000e-01 +-8.738200000000000e-01 +-1.054700000000000e+00 +-1.132200000000000e+00 +-1.083100000000000e+00 +-9.114800000000000e-01 +-6.501600000000000e-01 +-3.519500000000000e-01 +-7.536900000000001e-02 + 1.325800000000000e-01 + 2.510400000000000e-01 + 2.913000000000000e-01 + 2.896800000000000e-01 + 2.889100000000000e-01 + 3.164900000000000e-01 + 3.718100000000000e-01 + 4.294700000000000e-01 + 4.564200000000000e-01 + 4.314400000000000e-01 + 3.546400000000000e-01 + 2.422900000000000e-01 + 1.132200000000000e-01 +-2.126300000000000e-02 +-1.563800000000000e-01 +-2.845400000000000e-01 +-3.879000000000000e-01 +-4.417200000000000e-01 +-4.282100000000000e-01 +-3.506300000000000e-01 +-2.361900000000000e-01 +-1.238000000000000e-01 +-4.404400000000000e-02 +-4.612000000000000e-03 + 1.003600000000000e-02 + 2.584900000000000e-02 + 6.297100000000000e-02 + 1.262900000000000e-01 + 2.063600000000000e-01 + 2.866700000000000e-01 + 3.504800000000000e-01 + 3.837900000000000e-01 + 3.759500000000000e-01 + 3.213200000000000e-01 + 2.229700000000000e-01 + 9.524000000000001e-02 +-3.847100000000000e-02 +-1.531700000000000e-01 +-2.308000000000000e-01 +-2.643700000000000e-01 +-2.555200000000000e-01 +-2.087700000000000e-01 +-1.282200000000000e-01 +-1.987500000000000e-02 + 1.027000000000000e-01 + 2.154400000000000e-01 + 2.880600000000000e-01 + 2.948700000000000e-01 + 2.259100000000000e-01 + 9.212700000000000e-02 +-7.818600000000001e-02 +-2.488100000000000e-01 +-3.855400000000000e-01 +-4.626300000000000e-01 +-4.654500000000000e-01 +-3.913800000000000e-01 +-2.505000000000000e-01 +-6.574800000000000e-02 + 1.292700000000000e-01 + 2.962900000000000e-01 + 4.010100000000000e-01 + 4.220400000000000e-01 + 3.568600000000000e-01 + 2.231400000000000e-01 + 5.440400000000000e-02 +-1.093000000000000e-01 +-2.336100000000000e-01 +-3.010800000000000e-01 +-3.163600000000000e-01 +-3.018800000000000e-01 +-2.849900000000000e-01 +-2.830100000000000e-01 +-2.945900000000000e-01 +-3.026800000000000e-01 +-2.871100000000000e-01 +-2.379700000000000e-01 +-1.607200000000000e-01 +-7.009600000000001e-02 + 2.176300000000000e-02 + 1.132100000000000e-01 + 2.108900000000000e-01 + 3.196800000000000e-01 + 4.337200000000000e-01 + 5.365100000000000e-01 + 6.107800000000000e-01 + 6.503600000000000e-01 + 6.641500000000000e-01 + 6.684000000000000e-01 + 6.727700000000000e-01 + 6.707600000000000e-01 + 6.421300000000000e-01 + 5.658300000000001e-01 + 4.341100000000000e-01 + 2.578400000000000e-01 + 5.988400000000000e-02 +-1.379100000000000e-01 +-3.245100000000000e-01 +-5.000500000000000e-01 +-6.679400000000000e-01 +-8.257900000000000e-01 +-9.622600000000000e-01 +-1.061700000000000e+00 +-1.112900000000000e+00 +-1.114500000000000e+00 +-1.075400000000000e+00 +-1.008100000000000e+00 +-9.205600000000000e-01 +-8.120800000000000e-01 +-6.734500000000000e-01 +-4.926200000000000e-01 +-2.620900000000000e-01 + 1.520500000000000e-02 + 3.240000000000000e-01 + 6.396700000000000e-01 + 9.343600000000000e-01 + 1.183400000000000e+00 + 1.368700000000000e+00 + 1.479000000000000e+00 + 1.507600000000000e+00 + 1.451200000000000e+00 + 1.312400000000000e+00 + 1.101900000000000e+00 + 8.396600000000000e-01 + 5.502700000000000e-01 + 2.553400000000000e-01 +-3.249100000000000e-02 +-3.086200000000000e-01 +-5.685200000000000e-01 +-7.988000000000000e-01 +-9.751300000000001e-01 +-1.070700000000000e+00 +-1.071000000000000e+00 +-9.848000000000000e-01 +-8.427900000000000e-01 +-6.845400000000000e-01 +-5.409100000000000e-01 +-4.234200000000000e-01 +-3.255000000000000e-01 +-2.324100000000000e-01 +-1.317400000000000e-01 +-1.815900000000000e-02 + 1.072800000000000e-01 + 2.386300000000000e-01 + 3.641900000000000e-01 + 4.655200000000000e-01 + 5.214100000000000e-01 + 5.185100000000000e-01 + 4.630700000000000e-01 + 3.831700000000000e-01 + 3.155700000000000e-01 + 2.826600000000000e-01 + 2.750100000000000e-01 + 2.541800000000000e-01 + 1.775100000000000e-01 + 2.988200000000000e-02 +-1.594300000000000e-01 +-3.280400000000000e-01 +-4.137300000000000e-01 +-3.882900000000000e-01 +-2.698800000000000e-01 +-1.080400000000000e-01 + 4.600200000000000e-02 + 1.620000000000000e-01 + 2.328000000000000e-01 + 2.600200000000000e-01 + 2.393800000000000e-01 + 1.604000000000000e-01 + 2.045700000000000e-02 +-1.600700000000000e-01 +-3.371900000000000e-01 +-4.612600000000000e-01 +-5.022300000000000e-01 +-4.645900000000000e-01 +-3.813700000000000e-01 +-2.919800000000000e-01 +-2.196800000000000e-01 +-1.630700000000000e-01 +-1.045400000000000e-01 +-2.646400000000000e-02 + 7.736999999999999e-02 + 2.011900000000000e-01 + 3.337000000000000e-01 + 4.634300000000000e-01 + 5.782700000000000e-01 + 6.621100000000000e-01 + 6.949900000000000e-01 + 6.601100000000000e-01 + 5.540300000000000e-01 + 3.921100000000000e-01 + 2.042300000000000e-01 + 2.278900000000000e-02 +-1.292500000000000e-01 +-2.430600000000000e-01 +-3.204200000000000e-01 +-3.664200000000000e-01 +-3.845800000000000e-01 +-3.764100000000000e-01 +-3.432400000000000e-01 +-2.872500000000000e-01 +-2.111700000000000e-01 +-1.194300000000000e-01 +-2.208300000000000e-02 + 6.083400000000000e-02 + 1.006600000000000e-01 + 7.084200000000000e-02 +-3.660700000000000e-02 +-1.994800000000000e-01 +-3.688800000000000e-01 +-4.893200000000000e-01 +-5.246700000000000e-01 +-4.740300000000000e-01 +-3.670100000000000e-01 +-2.420800000000000e-01 +-1.231900000000000e-01 +-1.083900000000000e-02 + 1.075100000000000e-01 + 2.373300000000000e-01 + 3.640100000000000e-01 + 4.579500000000000e-01 + 4.946600000000000e-01 + 4.748600000000000e-01 + 4.288400000000000e-01 + 4.005600000000000e-01 + 4.211000000000000e-01 + 4.889600000000000e-01 + 5.696700000000000e-01 + 6.148600000000000e-01 + 5.880900000000000e-01 + 4.818900000000000e-01 + 3.168800000000000e-01 + 1.258800000000000e-01 +-6.538500000000000e-02 +-2.486700000000000e-01 +-4.291500000000000e-01 +-6.111900000000000e-01 +-7.844400000000000e-01 +-9.199300000000000e-01 +-9.798000000000000e-01 +-9.356500000000000e-01 +-7.852500000000000e-01 +-5.581199999999999e-01 +-3.063200000000000e-01 +-8.505000000000000e-02 + 6.722599999999999e-02 + 1.396400000000000e-01 + 1.469400000000000e-01 + 1.179400000000000e-01 + 8.201200000000000e-02 + 6.027700000000000e-02 + 6.362800000000000e-02 + 9.515300000000000e-02 + 1.529200000000000e-01 + 2.311900000000000e-01 + 3.209300000000000e-01 + 4.116400000000000e-01 + 4.946000000000000e-01 + 5.653800000000000e-01 + 6.230900000000000e-01 + 6.661700000000000e-01 + 6.879400000000000e-01 + 6.758999999999999e-01 + 6.165200000000000e-01 + 5.027000000000000e-01 + 3.387500000000000e-01 + 1.396200000000000e-01 +-7.498100000000001e-02 +-2.871400000000000e-01 +-4.836600000000000e-01 +-6.547900000000000e-01 +-7.914300000000000e-01 +-8.842900000000000e-01 +-9.257600000000000e-01 +-9.123300000000000e-01 +-8.450500000000000e-01 +-7.280600000000000e-01 +-5.678100000000000e-01 +-3.751300000000000e-01 +-1.690300000000000e-01 + 2.267500000000000e-02 + 1.696600000000000e-01 + 2.512700000000000e-01 + 2.672600000000000e-01 + 2.389900000000000e-01 + 1.984500000000000e-01 + 1.714500000000000e-01 + 1.659700000000000e-01 + 1.734200000000000e-01 + 1.810600000000000e-01 + 1.855200000000000e-01 + 1.970000000000000e-01 + 2.312100000000000e-01 + 2.960900000000000e-01 + 3.837300000000000e-01 + 4.736300000000000e-01 + 5.439100000000000e-01 + 5.816500000000000e-01 + 5.852200000000000e-01 + 5.589200000000000e-01 + 5.064700000000000e-01 + 4.292100000000000e-01 + 3.294800000000000e-01 + 2.137600000000000e-01 + 9.100700000000000e-02 +-3.345300000000000e-02 +-1.621500000000000e-01 +-3.024100000000000e-01 +-4.566500000000000e-01 +-6.138300000000000e-01 +-7.502300000000000e-01 +-8.409600000000000e-01 +-8.745100000000000e-01 +-8.590800000000000e-01 +-8.154600000000000e-01 +-7.613100000000000e-01 +-6.990000000000000e-01 +-6.162100000000000e-01 +-4.985600000000000e-01 +-3.441000000000000e-01 +-1.683300000000000e-01 + 4.012600000000000e-03 + 1.538000000000000e-01 + 2.779200000000000e-01 + 3.882800000000000e-01 + 5.012900000000000e-01 + 6.259900000000000e-01 + 7.585300000000000e-01 + 8.845700000000000e-01 + 9.859700000000000e-01 + 1.046500000000000e+00 + 1.054700000000000e+00 + 1.004800000000000e+00 + 8.970800000000000e-01 + 7.383300000000000e-01 + 5.395900000000000e-01 + 3.122900000000000e-01 + 6.483600000000000e-02 +-1.965900000000000e-01 +-4.628600000000000e-01 +-7.164199999999999e-01 +-9.316100000000000e-01 +-1.082800000000000e+00 +-1.156300000000000e+00 +-1.156900000000000e+00 +-1.104200000000000e+00 +-1.020500000000000e+00 +-9.182800000000000e-01 +-7.971800000000000e-01 +-6.502300000000000e-01 +-4.741200000000000e-01 +-2.741500000000000e-01 +-6.063500000000000e-02 + 1.587300000000000e-01 + 3.825200000000000e-01 + 6.115500000000000e-01 + 8.411400000000000e-01 + 1.057100000000000e+00 + 1.240200000000000e+00 + 1.374200000000000e+00 + 1.451200000000000e+00 + 1.467000000000000e+00 + 1.412000000000000e+00 + 1.267600000000000e+00 + 1.014300000000000e+00 + 6.493900000000000e-01 + 2.009700000000000e-01 +-2.745600000000000e-01 +-7.123200000000000e-01 +-1.064700000000000e+00 +-1.316000000000000e+00 +-1.477300000000000e+00 +-1.566400000000000e+00 +-1.589600000000000e+00 +-1.538400000000000e+00 +-1.402100000000000e+00 +-1.185400000000000e+00 +-9.160400000000000e-01 +-6.356000000000001e-01 +-3.806100000000000e-01 +-1.667500000000000e-01 + 1.384200000000000e-02 + 1.817300000000000e-01 + 3.542500000000000e-01 + 5.344700000000000e-01 + 7.100500000000000e-01 + 8.605400000000000e-01 + 9.677300000000000e-01 + 1.024000000000000e+00 + 1.035500000000000e+00 + 1.019500000000000e+00 + 9.959300000000000e-01 + 9.767000000000000e-01 + 9.578200000000000e-01 + 9.205200000000000e-01 + 8.422500000000001e-01 + 7.120600000000000e-01 + 5.401899999999999e-01 + 3.536700000000000e-01 + 1.796300000000000e-01 + 2.723900000000000e-02 +-1.180400000000000e-01 +-2.826500000000000e-01 +-4.831100000000000e-01 +-7.097500000000000e-01 +-9.280600000000000e-01 +-1.097100000000000e+00 +-1.191700000000000e+00 +-1.214100000000000e+00 +-1.188300000000000e+00 +-1.142300000000000e+00 +-1.093900000000000e+00 +-1.044600000000000e+00 +-9.851400000000000e-01 +-9.028600000000000e-01 +-7.863300000000000e-01 +-6.268200000000000e-01 +-4.205700000000000e-01 +-1.737200000000000e-01 + 9.402000000000001e-02 + 3.530200000000000e-01 + 5.759700000000000e-01 + 7.518200000000000e-01 + 8.905800000000000e-01 + 1.013800000000000e+00 + 1.136700000000000e+00 + 1.256100000000000e+00 + 1.353400000000000e+00 + 1.411200000000000e+00 + 1.427800000000000e+00 + 1.417200000000000e+00 + 1.392300000000000e+00 + 1.345500000000000e+00 + 1.244000000000000e+00 + 1.047600000000000e+00 + 7.365500000000000e-01 + 3.291900000000000e-01 +-1.241000000000000e-01 +-5.674000000000000e-01 +-9.657800000000000e-01 +-1.312900000000000e+00 +-1.615900000000000e+00 +-1.872100000000000e+00 +-2.057600000000000e+00 +-2.137700000000000e+00 +-2.089300000000000e+00 +-1.916900000000000e+00 +-1.650000000000000e+00 +-1.323600000000000e+00 +-9.602300000000000e-01 +-5.672900000000000e-01 +-1.512500000000000e-01 + 2.656300000000000e-01 + 6.422600000000001e-01 + 9.348800000000000e-01 + 1.121300000000000e+00 + 1.214600000000000e+00 + 1.255800000000000e+00 + 1.288100000000000e+00 + 1.331500000000000e+00 + 1.373400000000000e+00 + 1.379700000000000e+00 + 1.317600000000000e+00 + 1.174600000000000e+00 + 9.628400000000000e-01 + 7.098500000000000e-01 + 4.441400000000000e-01 + 1.856100000000000e-01 +-5.517400000000000e-02 +-2.717400000000000e-01 +-4.566500000000000e-01 +-6.011900000000000e-01 +-6.998799999999999e-01 +-7.562700000000000e-01 +-7.850500000000000e-01 +-8.076000000000000e-01 +-8.419200000000000e-01 +-8.915400000000000e-01 +-9.401400000000000e-01 +-9.564100000000000e-01 +-9.083599999999999e-01 +-7.801300000000000e-01 +-5.816300000000000e-01 +-3.448000000000000e-01 +-1.083700000000000e-01 + 9.918399999999999e-02 + 2.678200000000000e-01 + 4.008200000000000e-01 + 5.020300000000000e-01 + 5.664600000000000e-01 + 5.826700000000000e-01 + 5.452900000000001e-01 + 4.676100000000000e-01 + 3.827800000000000e-01 + 3.305300000000000e-01 + 3.365500000000000e-01 + 3.975100000000000e-01 + 4.811900000000000e-01 + 5.415300000000000e-01 + 5.396500000000000e-01 + 4.597400000000000e-01 + 3.134500000000000e-01 + 1.330400000000000e-01 +-4.168600000000000e-02 +-1.769700000000000e-01 +-2.550200000000000e-01 +-2.776700000000000e-01 +-2.625300000000000e-01 +-2.330700000000000e-01 +-2.071600000000000e-01 +-1.906900000000000e-01 +-1.804200000000000e-01 +-1.742200000000000e-01 +-1.798900000000000e-01 +-2.141000000000000e-01 +-2.896100000000000e-01 +-3.994700000000000e-01 +-5.117000000000000e-01 +-5.819800000000001e-01 +-5.784800000000000e-01 +-5.023200000000000e-01 +-3.880100000000000e-01 +-2.815200000000000e-01 +-2.097800000000000e-01 +-1.625700000000000e-01 +-9.928600000000000e-02 + 2.387300000000000e-02 + 2.246700000000000e-01 + 4.818900000000000e-01 + 7.450300000000000e-01 + 9.576400000000000e-01 + 1.079100000000000e+00 + 1.094400000000000e+00 + 1.011300000000000e+00 + 8.532200000000000e-01 + 6.522500000000000e-01 + 4.437400000000000e-01 + 2.586700000000000e-01 + 1.138100000000000e-01 + 4.228500000000000e-03 +-9.469300000000000e-02 +-2.143200000000000e-01 +-3.752500000000000e-01 +-5.760900000000000e-01 +-7.950900000000000e-01 +-1.002000000000000e+00 +-1.170400000000000e+00 +-1.281900000000000e+00 +-1.322900000000000e+00 +-1.280200000000000e+00 +-1.142700000000000e+00 +-9.101900000000001e-01 +-5.992200000000000e-01 +-2.405300000000000e-01 + 1.335700000000000e-01 + 5.016800000000000e-01 + 8.549600000000001e-01 + 1.185400000000000e+00 + 1.470100000000000e+00 + 1.666700000000000e+00 + 1.727400000000000e+00 + 1.624600000000000e+00 + 1.371600000000000e+00 + 1.022200000000000e+00 + 6.481100000000000e-01 + 3.076900000000000e-01 + 2.458400000000000e-02 +-2.113600000000000e-01 +-4.249500000000000e-01 +-6.324600000000000e-01 +-8.289900000000000e-01 +-9.918100000000000e-01 +-1.094300000000000e+00 +-1.120300000000000e+00 +-1.070900000000000e+00 +-9.624200000000001e-01 +-8.179400000000000e-01 +-6.585200000000000e-01 +-4.963000000000000e-01 +-3.328400000000000e-01 +-1.632900000000000e-01 + 1.470000000000000e-02 + 1.915900000000000e-01 + 3.429300000000000e-01 + 4.370500000000000e-01 + 4.517200000000000e-01 + 3.905800000000000e-01 + 2.880600000000000e-01 + 1.972300000000000e-01 + 1.658400000000000e-01 + 2.142700000000000e-01 + 3.282000000000000e-01 + 4.696500000000000e-01 + 5.978700000000000e-01 + 6.863500000000000e-01 + 7.268400000000000e-01 + 7.213800000000000e-01 + 6.718700000000000e-01 + 5.765300000000000e-01 + 4.351300000000000e-01 + 2.567500000000000e-01 + 6.134100000000000e-02 +-1.280200000000000e-01 +-2.972400000000000e-01 +-4.483500000000000e-01 +-5.952600000000000e-01 +-7.500000000000000e-01 +-9.083400000000000e-01 +-1.044900000000000e+00 +-1.121600000000000e+00 +-1.105900000000000e+00 +-9.876500000000000e-01 +-7.861100000000000e-01 +-5.427300000000000e-01 +-3.037800000000000e-01 +-1.021000000000000e-01 + 5.291000000000000e-02 + 1.726400000000000e-01 + 2.769900000000000e-01 + 3.805000000000000e-01 + 4.854100000000000e-01 + 5.852900000000000e-01 + 6.753500000000000e-01 + 7.605900000000000e-01 + 8.542400000000000e-01 + 9.655899999999999e-01 + 1.085200000000000e+00 + 1.178600000000000e+00 + 1.195500000000000e+00 + 1.092000000000000e+00 + 8.535100000000000e-01 + 5.050200000000000e-01 + 1.030000000000000e-01 +-2.870700000000000e-01 +-6.144100000000000e-01 +-8.556400000000000e-01 +-1.012400000000000e+00 +-1.098800000000000e+00 +-1.128100000000000e+00 +-1.107300000000000e+00 +-1.039800000000000e+00 +-9.319499999999999e-01 +-7.978200000000000e-01 +-6.578700000000000e-01 +-5.330800000000000e-01 +-4.374300000000000e-01 +-3.724200000000000e-01 +-3.258300000000000e-01 +-2.750100000000000e-01 +-1.936800000000000e-01 +-6.072300000000000e-02 + 1.317700000000000e-01 + 3.736600000000000e-01 + 6.373200000000000e-01 + 8.838700000000000e-01 + 1.073400000000000e+00 + 1.176000000000000e+00 + 1.179800000000000e+00 + 1.093300000000000e+00 + 9.415400000000000e-01 + 7.572700000000000e-01 + 5.708700000000000e-01 + 4.032400000000000e-01 + 2.644400000000000e-01 + 1.575900000000000e-01 + 8.388000000000000e-02 + 4.354000000000000e-02 + 3.094600000000000e-02 + 2.738600000000000e-02 +-7.151900000000000e-04 +-9.220200000000001e-02 +-2.719600000000000e-01 +-5.324900000000000e-01 +-8.292500000000000e-01 +-1.096100000000000e+00 +-1.273900000000000e+00 +-1.336000000000000e+00 +-1.294600000000000e+00 +-1.185000000000000e+00 +-1.039700000000000e+00 +-8.694800000000000e-01 +-6.647999999999999e-01 +-4.132100000000000e-01 +-1.180700000000000e-01 + 1.963300000000000e-01 + 4.965300000000000e-01 + 7.579900000000001e-01 + 9.744600000000000e-01 + 1.151300000000000e+00 + 1.289100000000000e+00 + 1.371500000000000e+00 + 1.368500000000000e+00 + 1.253400000000000e+00 + 1.022000000000000e+00 + 7.003900000000000e-01 + 3.372900000000000e-01 +-1.268900000000000e-02 +-3.045600000000000e-01 +-5.104100000000000e-01 +-6.195700000000000e-01 +-6.363900000000000e-01 +-5.785100000000000e-01 +-4.743800000000000e-01 +-3.567500000000000e-01 +-2.528600000000000e-01 +-1.761800000000000e-01 +-1.259200000000000e-01 +-9.511699999999999e-02 +-8.114499999999999e-02 +-9.016500000000000e-02 +-1.316200000000000e-01 +-2.072800000000000e-01 +-3.040300000000000e-01 +-3.967400000000000e-01 +-4.588600000000000e-01 +-4.726700000000000e-01 +-4.319900000000000e-01 +-3.377500000000000e-01 +-1.934200000000000e-01 +-6.481700000000000e-03 + 2.050300000000000e-01 + 4.090600000000000e-01 + 5.667400000000000e-01 + 6.491900000000000e-01 + 6.529800000000000e-01 + 6.014800000000000e-01 + 5.287500000000001e-01 + 4.560800000000000e-01 + 3.784800000000000e-01 + 2.721200000000000e-01 + 1.185200000000000e-01 +-7.227500000000001e-02 +-2.573200000000000e-01 +-3.804300000000000e-01 +-4.038500000000000e-01 +-3.312500000000000e-01 +-2.071900000000000e-01 +-9.357500000000001e-02 +-3.799000000000000e-02 +-5.241500000000000e-02 +-1.129300000000000e-01 +-1.777400000000000e-01 +-2.111600000000000e-01 +-2.003800000000000e-01 +-1.574400000000000e-01 +-1.081600000000000e-01 +-7.527100000000000e-02 +-6.517800000000000e-02 +-6.486500000000001e-02 +-5.023500000000000e-02 +-1.368100000000000e-03 + 8.379900000000000e-02 + 1.855100000000000e-01 + 2.710300000000000e-01 + 3.117100000000000e-01 + 2.984600000000000e-01 + 2.460200000000000e-01 + 1.836400000000000e-01 + 1.380500000000000e-01 + 1.193300000000000e-01 + 1.176000000000000e-01 + 1.110800000000000e-01 + 7.915600000000000e-02 + 1.249000000000000e-02 +-8.397600000000000e-02 +-1.940500000000000e-01 +-2.957100000000000e-01 +-3.664400000000000e-01 +-3.882000000000000e-01 +-3.524400000000000e-01 +-2.638100000000000e-01 +-1.400500000000000e-01 +-6.875200000000000e-03 + 1.100700000000000e-01 + 1.916700000000000e-01 + 2.271700000000000e-01 + 2.127600000000000e-01 + 1.510700000000000e-01 + 5.397800000000000e-02 +-5.422000000000000e-02 +-1.395800000000000e-01 +-1.708500000000000e-01 +-1.364600000000000e-01 +-5.428400000000000e-02 + 3.541200000000000e-02 + 9.255500000000000e-02 + 1.012100000000000e-01 + 7.774399999999999e-02 + 5.636400000000000e-02 + 6.220700000000000e-02 + 9.237700000000000e-02 + 1.198000000000000e-01 + 1.169900000000000e-01 + 8.067199999999999e-02 + 3.694400000000000e-02 + 2.202400000000000e-02 + 5.321400000000000e-02 + 1.131200000000000e-01 + 1.600200000000000e-01 + 1.567300000000000e-01 + 9.611599999999999e-02 + 4.449200000000000e-03 +-7.840600000000000e-02 +-1.254400000000000e-01 +-1.355000000000000e-01 +-1.252900000000000e-01 +-1.102300000000000e-01 +-9.166800000000000e-02 +-6.041300000000000e-02 +-1.130100000000000e-02 + 4.579400000000000e-02 + 8.905399999999999e-02 + 9.923899999999999e-02 + 7.272600000000000e-02 + 2.176100000000000e-02 +-3.782100000000000e-02 +-1.001800000000000e-01 +-1.723400000000000e-01 +-2.640500000000000e-01 +-3.735700000000000e-01 +-4.817600000000000e-01 +-5.593399999999999e-01 +-5.814400000000000e-01 +-5.383599999999999e-01 +-4.360700000000000e-01 +-2.887800000000000e-01 +-1.114400000000000e-01 + 8.239600000000000e-02 + 2.786200000000000e-01 + 4.617700000000000e-01 + 6.180400000000000e-01 + 7.393999999999999e-01 + 8.234200000000000e-01 + 8.680300000000000e-01 + 8.661600000000000e-01 + 8.078700000000000e-01 + 6.907900000000000e-01 + 5.312100000000000e-01 + 3.641100000000000e-01 + 2.279400000000000e-01 + 1.424300000000000e-01 + 9.561300000000000e-02 + 5.129400000000000e-02 +-2.702200000000000e-02 +-1.525700000000000e-01 +-3.092400000000000e-01 +-4.665000000000000e-01 +-6.021600000000000e-01 +-7.145600000000000e-01 +-8.151800000000000e-01 +-9.097800000000000e-01 +-9.857500000000000e-01 +-1.017400000000000e+00 +-9.850900000000000e-01 +-8.917100000000000e-01 +-7.617600000000000e-01 +-6.234100000000000e-01 +-4.882900000000000e-01 +-3.457000000000000e-01 +-1.755700000000000e-01 + 3.129100000000000e-02 + 2.627900000000000e-01 + 4.932300000000000e-01 + 7.012100000000000e-01 + 8.816800000000000e-01 + 1.041700000000000e+00 + 1.184500000000000e+00 + 1.296700000000000e+00 + 1.351500000000000e+00 + 1.325600000000000e+00 + 1.215700000000000e+00 + 1.041400000000000e+00 + 8.313100000000000e-01 + 6.056400000000000e-01 + 3.689200000000000e-01 + 1.189600000000000e-01 +-1.380300000000000e-01 +-3.811200000000000e-01 +-5.843900000000000e-01 +-7.353499999999999e-01 +-8.458000000000000e-01 +-9.444000000000000e-01 +-1.054900000000000e+00 +-1.176500000000000e+00 +-1.280700000000000e+00 +-1.327500000000000e+00 +-1.288400000000000e+00 +-1.159200000000000e+00 +-9.561400000000000e-01 +-7.013000000000000e-01 +-4.109100000000000e-01 +-9.524199999999999e-02 + 2.325400000000000e-01 + 5.488400000000000e-01 + 8.217900000000000e-01 + 1.021900000000000e+00 + 1.133300000000000e+00 + 1.156600000000000e+00 + 1.104500000000000e+00 + 9.944700000000000e-01 + 8.449700000000000e-01 + 6.757000000000000e-01 + 5.065400000000000e-01 + 3.516300000000000e-01 + 2.120100000000000e-01 + 7.470800000000000e-02 +-7.643000000000000e-02 +-2.432900000000000e-01 +-4.026100000000000e-01 +-5.132100000000001e-01 +-5.400100000000000e-01 +-4.794400000000000e-01 +-3.670600000000000e-01 +-2.595200000000000e-01 +-2.018700000000000e-01 +-2.025300000000000e-01 +-2.333900000000000e-01 +-2.538200000000000e-01 +-2.400100000000000e-01 +-1.977700000000000e-01 +-1.508600000000000e-01 +-1.160600000000000e-01 +-8.625300000000000e-02 +-3.507400000000000e-02 + 6.075000000000000e-02 + 1.995600000000000e-01 + 3.503100000000000e-01 + 4.682800000000000e-01 + 5.183400000000000e-01 + 4.889400000000000e-01 + 3.895800000000000e-01 + 2.383200000000000e-01 + 5.271400000000000e-02 +-1.486800000000000e-01 +-3.390200000000000e-01 +-4.820500000000000e-01 +-5.438900000000000e-01 +-5.120600000000000e-01 +-4.068300000000000e-01 +-2.735500000000000e-01 +-1.581500000000000e-01 +-8.150700000000000e-02 +-3.028900000000000e-02 + 2.970600000000000e-02 + 1.275400000000000e-01 + 2.665500000000000e-01 + 4.218100000000000e-01 + 5.542899999999999e-01 + 6.294999999999999e-01 + 6.281200000000000e-01 + 5.458700000000000e-01 + 3.888300000000000e-01 + 1.723600000000000e-01 +-7.553799999999999e-02 +-3.132900000000000e-01 +-4.946700000000000e-01 +-5.868100000000001e-01 +-5.865500000000000e-01 +-5.229500000000000e-01 +-4.415400000000000e-01 +-3.796700000000000e-01 +-3.488000000000000e-01 +-3.345300000000000e-01 +-3.120100000000000e-01 +-2.636600000000000e-01 +-1.861100000000000e-01 +-8.377600000000000e-02 + 4.204300000000000e-02 + 1.967800000000000e-01 + 3.846000000000000e-01 + 5.958000000000000e-01 + 8.016100000000000e-01 + 9.625000000000000e-01 + 1.045100000000000e+00 + 1.035700000000000e+00 + 9.408500000000000e-01 + 7.777400000000000e-01 + 5.623200000000000e-01 + 3.064800000000000e-01 + 2.369300000000000e-02 +-2.644800000000000e-01 +-5.302000000000000e-01 +-7.503300000000001e-01 +-9.179900000000000e-01 +-1.043600000000000e+00 +-1.142700000000000e+00 +-1.218100000000000e+00 +-1.251800000000000e+00 +-1.213000000000000e+00 +-1.078200000000000e+00 +-8.486600000000000e-01 +-5.521100000000000e-01 +-2.275700000000000e-01 + 9.497600000000000e-02 + 4.053800000000000e-01 + 7.074500000000000e-01 + 1.002100000000000e+00 + 1.273000000000000e+00 + 1.485800000000000e+00 + 1.600300000000000e+00 + 1.588000000000000e+00 + 1.442700000000000e+00 + 1.180800000000000e+00 + 8.326500000000000e-01 + 4.335500000000000e-01 + 1.802800000000000e-02 +-3.817800000000000e-01 +-7.365699999999999e-01 +-1.021500000000000e+00 +-1.219000000000000e+00 +-1.321100000000000e+00 +-1.329900000000000e+00 +-1.257300000000000e+00 +-1.122200000000000e+00 +-9.465600000000000e-01 +-7.498000000000000e-01 +-5.427300000000000e-01 +-3.258900000000000e-01 +-9.444900000000001e-02 + 1.513000000000000e-01 + 3.967500000000000e-01 + 6.130800000000000e-01 + 7.693400000000000e-01 + 8.503900000000000e-01 + 8.684200000000000e-01 + 8.585500000000000e-01 + 8.594400000000000e-01 + 8.905800000000000e-01 + 9.407700000000000e-01 + 9.749600000000000e-01 + 9.538800000000000e-01 + 8.533500000000001e-01 + 6.721300000000000e-01 + 4.267300000000000e-01 + 1.407800000000000e-01 +-1.623900000000000e-01 +-4.609200000000000e-01 +-7.333200000000000e-01 +-9.600700000000000e-01 +-1.128600000000000e+00 +-1.236700000000000e+00 +-1.289600000000000e+00 +-1.292000000000000e+00 +-1.241400000000000e+00 +-1.130700000000000e+00 +-9.578500000000000e-01 +-7.356900000000000e-01 +-4.906800000000000e-01 +-2.504300000000000e-01 +-2.888000000000000e-02 + 1.781400000000000e-01 + 3.817100000000000e-01 + 5.816100000000000e-01 + 7.564900000000000e-01 + 8.726600000000000e-01 + 9.061500000000000e-01 + 8.613200000000000e-01 + 7.704700000000000e-01 + 6.739600000000000e-01 + 5.957500000000000e-01 + 5.334000000000000e-01 + 4.695400000000000e-01 + 3.942900000000000e-01 + 3.188600000000000e-01 + 2.684300000000000e-01 + 2.596700000000000e-01 + 2.818300000000000e-01 + 2.979300000000000e-01 + 2.663100000000000e-01 + 1.668800000000000e-01 + 1.247900000000000e-02 +-1.620700000000000e-01 +-3.233600000000000e-01 +-4.570400000000000e-01 +-5.677200000000000e-01 +-6.642000000000000e-01 +-7.441200000000000e-01 +-7.908100000000000e-01 +-7.835400000000000e-01 +-7.117300000000000e-01 +-5.818300000000000e-01 +-4.131500000000000e-01 +-2.282900000000000e-01 +-4.631600000000000e-02 + 1.176500000000000e-01 + 2.499100000000000e-01 + 3.381300000000000e-01 + 3.752400000000000e-01 + 3.631400000000000e-01 + 3.115700000000000e-01 + 2.320300000000000e-01 + 1.323500000000000e-01 + 1.742000000000000e-02 +-1.037500000000000e-01 +-2.118100000000000e-01 +-2.791500000000000e-01 +-2.818600000000000e-01 +-2.137800000000000e-01 +-9.236100000000000e-02 + 4.886300000000000e-02 + 1.763300000000000e-01 + 2.702900000000000e-01 + 3.282600000000000e-01 + 3.584700000000000e-01 + 3.705400000000000e-01 + 3.703800000000000e-01 + 3.604400000000000e-01 + 3.412100000000000e-01 + 3.104300000000000e-01 + 2.613700000000000e-01 + 1.850800000000000e-01 + 7.884700000000000e-02 +-4.424900000000000e-02 +-1.537800000000000e-01 +-2.138500000000000e-01 +-2.032200000000000e-01 +-1.303200000000000e-01 +-3.126900000000000e-02 + 4.887300000000000e-02 + 7.926400000000000e-02 + 5.520300000000000e-02 +-7.623400000000000e-03 +-8.918400000000000e-02 +-1.772600000000000e-01 +-2.671200000000000e-01 +-3.524400000000000e-01 +-4.194100000000000e-01 +-4.516100000000000e-01 +-4.422100000000000e-01 +-4.011000000000000e-01 +-3.483400000000000e-01 +-2.977100000000000e-01 +-2.446800000000000e-01 +-1.708700000000000e-01 +-6.304999999999999e-02 + 6.878600000000000e-02 + 1.910800000000000e-01 + 2.670900000000000e-01 + 2.832100000000000e-01 + 2.602600000000000e-01 + 2.396800000000000e-01 + 2.545000000000000e-01 + 3.070000000000000e-01 + 3.697400000000000e-01 + 4.075100000000000e-01 + 4.020100000000000e-01 + 3.602600000000000e-01 + 3.027700000000000e-01 + 2.443600000000000e-01 + 1.851000000000000e-01 + 1.178000000000000e-01 + 4.269600000000000e-02 +-2.647800000000000e-02 +-7.199600000000000e-02 +-8.886800000000000e-02 +-9.251200000000000e-02 +-1.084900000000000e-01 +-1.516100000000000e-01 +-2.120900000000000e-01 +-2.618000000000000e-01 +-2.764100000000000e-01 +-2.557700000000000e-01 +-2.251400000000000e-01 +-2.152500000000000e-01 +-2.368300000000000e-01 +-2.694000000000000e-01 +-2.735500000000000e-01 +-2.174900000000000e-01 +-9.901600000000001e-02 + 5.125300000000000e-02 + 1.852000000000000e-01 + 2.589500000000000e-01 + 2.483200000000000e-01 + 1.533200000000000e-01 +-4.692900000000000e-03 +-1.883300000000000e-01 +-3.513900000000000e-01 +-4.503200000000000e-01 +-4.590700000000000e-01 +-3.798900000000000e-01 +-2.409200000000000e-01 +-7.888700000000000e-02 + 8.311499999999999e-02 + 2.460300000000000e-01 + 4.243400000000000e-01 + 6.215500000000000e-01 + 8.112400000000000e-01 + 9.408200000000000e-01 + 9.584500000000000e-01 + 8.447200000000000e-01 + 6.262400000000000e-01 + 3.610700000000000e-01 + 1.070000000000000e-01 +-1.043800000000000e-01 +-2.708300000000000e-01 +-4.019700000000000e-01 +-4.987200000000000e-01 +-5.476400000000000e-01 +-5.335000000000000e-01 +-4.577600000000000e-01 +-3.458600000000000e-01 +-2.367700000000000e-01 +-1.631500000000000e-01 +-1.371000000000000e-01 +-1.503800000000000e-01 +-1.851700000000000e-01 +-2.242000000000000e-01 +-2.528300000000000e-01 +-2.560100000000000e-01 +-2.187700000000000e-01 +-1.348700000000000e-01 +-1.799100000000000e-02 + 9.622400000000000e-02 + 1.639300000000000e-01 + 1.566000000000000e-01 + 7.895500000000000e-02 +-3.201700000000000e-02 +-1.267700000000000e-01 +-1.687100000000000e-01 +-1.493100000000000e-01 +-8.531999999999999e-02 +-4.061300000000000e-03 + 7.143900000000000e-02 + 1.290700000000000e-01 + 1.667900000000000e-01 + 1.900600000000000e-01 + 2.109300000000000e-01 + 2.461700000000000e-01 + 3.099800000000000e-01 + 4.025600000000000e-01 + 5.025500000000001e-01 + 5.726500000000000e-01 + 5.789500000000000e-01 + 5.125800000000000e-01 + 3.975700000000000e-01 + 2.772200000000000e-01 + 1.872000000000000e-01 + 1.342400000000000e-01 + 9.573300000000000e-02 + 3.957700000000000e-02 +-5.183200000000000e-02 +-1.718800000000000e-01 +-3.001400000000000e-01 +-4.219500000000000e-01 +-5.390500000000000e-01 +-6.618600000000000e-01 +-7.904200000000000e-01 +-9.015500000000000e-01 +-9.551900000000000e-01 +-9.169100000000000e-01 +-7.802900000000000e-01 +-5.723200000000001e-01 +-3.381600000000000e-01 +-1.170800000000000e-01 + 7.341499999999999e-02 + 2.360200000000000e-01 + 3.796300000000000e-01 + 5.061099999999999e-01 + 6.076200000000000e-01 + 6.737400000000000e-01 + 6.998300000000000e-01 + 6.886800000000000e-01 + 6.456900000000000e-01 + 5.738600000000000e-01 + 4.748100000000000e-01 + 3.543600000000000e-01 + 2.260900000000000e-01 + 1.069500000000000e-01 + 6.506600000000000e-03 +-8.133000000000000e-02 +-1.757500000000000e-01 +-2.949300000000000e-01 +-4.392000000000000e-01 +-5.834800000000000e-01 +-6.850700000000000e-01 +-7.026800000000000e-01 +-6.154300000000000e-01 +-4.313800000000000e-01 +-1.826500000000000e-01 + 8.813500000000001e-02 + 3.419100000000000e-01 + 5.516799999999999e-01 + 7.041200000000000e-01 + 7.961300000000000e-01 + 8.293700000000001e-01 + 8.055800000000000e-01 + 7.245300000000000e-01 + 5.858300000000000e-01 + 3.938000000000000e-01 + 1.623100000000000e-01 +-8.455500000000001e-02 +-3.180100000000000e-01 +-5.137500000000000e-01 +-6.590800000000000e-01 +-7.533500000000000e-01 +-8.018500000000000e-01 +-8.090500000000000e-01 +-7.771500000000000e-01 +-7.109200000000000e-01 +-6.233800000000000e-01 +-5.348700000000000e-01 +-4.634300000000000e-01 +-4.125900000000000e-01 +-3.665700000000000e-01 +-2.985700000000000e-01 +-1.872800000000000e-01 +-3.009800000000000e-02 + 1.568000000000000e-01 + 3.504500000000000e-01 + 5.345700000000000e-01 + 7.028799999999999e-01 + 8.501800000000000e-01 + 9.606500000000000e-01 + 1.006400000000000e+00 + 9.611700000000000e-01 + 8.196099999999999e-01 + 6.073800000000000e-01 + 3.713500000000000e-01 + 1.560800000000000e-01 +-1.643500000000000e-02 +-1.490100000000000e-01 +-2.528800000000000e-01 +-3.276300000000000e-01 +-3.553200000000000e-01 +-3.145600000000000e-01 +-2.032800000000000e-01 +-5.051600000000000e-02 + 9.410000000000000e-02 + 1.867500000000000e-01 + 2.120000000000000e-01 + 1.847700000000000e-01 + 1.312100000000000e-01 + 6.506500000000000e-02 +-2.083500000000000e-02 +-1.410400000000000e-01 +-2.939500000000000e-01 +-4.494300000000000e-01 +-5.604500000000000e-01 +-5.926399999999999e-01 +-5.504500000000000e-01 +-4.793200000000000e-01 +-4.401100000000000e-01 +-4.717200000000000e-01 +-5.662600000000000e-01 +-6.728000000000000e-01 +-7.260799999999999e-01 +-6.812800000000000e-01 +-5.335200000000000e-01 +-3.129500000000000e-01 +-6.259900000000000e-02 + 1.845000000000000e-01 + 4.146500000000000e-01 + 6.267400000000000e-01 + 8.177900000000000e-01 + 9.732800000000000e-01 + 1.069600000000000e+00 + 1.086900000000000e+00 + 1.022400000000000e+00 + 8.961800000000000e-01 + 7.436600000000000e-01 + 6.002300000000000e-01 + 4.862300000000000e-01 + 4.006100000000000e-01 + 3.258600000000000e-01 + 2.401100000000000e-01 + 1.291200000000000e-01 +-7.961800000000000e-03 +-1.602600000000000e-01 +-3.110300000000000e-01 +-4.433700000000000e-01 +-5.437500000000000e-01 +-6.042300000000000e-01 +-6.250000000000000e-01 +-6.167000000000000e-01 +-5.992200000000000e-01 +-5.942400000000000e-01 +-6.132900000000000e-01 +-6.481000000000000e-01 +-6.711900000000000e-01 +-6.492700000000000e-01 +-5.625500000000000e-01 +-4.179200000000000e-01 +-2.463000000000000e-01 +-8.546700000000000e-02 + 4.043700000000000e-02 + 1.306500000000000e-01 + 2.010600000000000e-01 + 2.676900000000000e-01 + 3.338700000000000e-01 + 3.908000000000000e-01 + 4.293200000000000e-01 + 4.509100000000000e-01 + 4.671000000000000e-01 + 4.870300000000000e-01 + 5.044200000000000e-01 + 4.972600000000000e-01 + 4.435900000000000e-01 + 3.423900000000000e-01 + 2.223400000000000e-01 + 1.287400000000000e-01 + 9.569200000000000e-02 + 1.227300000000000e-01 + 1.734600000000000e-01 + 1.980100000000000e-01 + 1.638500000000000e-01 + 7.360100000000000e-02 +-4.163800000000000e-02 +-1.464200000000000e-01 +-2.238800000000000e-01 +-2.813300000000000e-01 +-3.368400000000000e-01 +-3.999400000000000e-01 +-4.625000000000000e-01 +-5.059000000000000e-01 +-5.170400000000001e-01 +-4.986600000000000e-01 +-4.652000000000000e-01 +-4.280600000000000e-01 +-3.829200000000000e-01 +-3.101600000000000e-01 +-1.888900000000000e-01 +-1.406800000000000e-02 + 1.957600000000000e-01 + 4.055200000000000e-01 + 5.797600000000001e-01 + 6.965200000000000e-01 + 7.502000000000000e-01 + 7.443300000000000e-01 + 6.818900000000000e-01 + 5.619700000000000e-01 + 3.852100000000000e-01 + 1.630300000000000e-01 +-7.765800000000000e-02 +-2.991300000000000e-01 +-4.653500000000000e-01 +-5.550300000000000e-01 +-5.677600000000000e-01 +-5.202200000000000e-01 +-4.353400000000000e-01 +-3.315100000000000e-01 +-2.177500000000000e-01 +-9.694800000000001e-02 + 2.642200000000000e-02 + 1.402200000000000e-01 + 2.251800000000000e-01 + 2.625500000000000e-01 + 2.441700000000000e-01 + 1.783300000000000e-01 + 8.714400000000000e-02 +-3.210700000000000e-03 +-7.357400000000000e-02 +-1.172100000000000e-01 +-1.369600000000000e-01 +-1.373100000000000e-01 +-1.181000000000000e-01 +-7.476200000000000e-02 +-4.555300000000000e-03 + 8.656400000000000e-02 + 1.822700000000000e-01 + 2.610200000000000e-01 + 3.044200000000000e-01 + 3.031600000000000e-01 + 2.577000000000000e-01 + 1.754900000000000e-01 + 6.855500000000000e-02 +-4.645000000000000e-02 +-1.483700000000000e-01 +-2.156900000000000e-01 +-2.354700000000000e-01 +-2.121300000000000e-01 +-1.681400000000000e-01 +-1.328600000000000e-01 +-1.244700000000000e-01 +-1.369000000000000e-01 +-1.419400000000000e-01 +-1.070600000000000e-01 +-1.769300000000000e-02 + 1.113200000000000e-01 + 2.432800000000000e-01 + 3.409300000000000e-01 + 3.867000000000000e-01 + 3.879000000000000e-01 + 3.649300000000000e-01 + 3.325000000000000e-01 + 2.882300000000000e-01 + 2.163800000000000e-01 + 1.020600000000000e-01 +-5.557600000000000e-02 +-2.404700000000000e-01 +-4.271700000000000e-01 +-5.908500000000000e-01 +-7.122400000000000e-01 +-7.762800000000000e-01 +-7.702200000000000e-01 +-6.869300000000000e-01 +-5.326900000000000e-01 +-3.322400000000000e-01 +-1.234300000000000e-01 + 5.810500000000000e-02 + 1.951400000000000e-01 + 2.941300000000000e-01 + 3.751400000000000e-01 + 4.535500000000000e-01 + 5.271200000000000e-01 + 5.778200000000000e-01 + 5.859500000000000e-01 + 5.445400000000000e-01 + 4.624600000000000e-01 + 3.552100000000000e-01 + 2.330500000000000e-01 + 9.856400000000000e-02 +-4.334100000000000e-02 +-1.724600000000000e-01 +-2.517700000000000e-01 +-2.436900000000000e-01 +-1.355100000000000e-01 + 4.473700000000000e-02 + 2.361600000000000e-01 + 3.743400000000000e-01 + 4.236500000000000e-01 + 3.907400000000000e-01 + 3.107800000000000e-01 + 2.174900000000000e-01 + 1.194400000000000e-01 +-5.512600000000000e-04 +-1.644800000000000e-01 +-3.741200000000000e-01 +-6.018600000000000e-01 +-8.037800000000000e-01 +-9.438200000000000e-01 +-1.010000000000000e+00 +-1.011300000000000e+00 +-9.599100000000000e-01 +-8.564900000000000e-01 +-6.903300000000000e-01 +-4.557600000000000e-01 +-1.692600000000000e-01 + 1.284400000000000e-01 + 3.895200000000000e-01 + 5.837000000000000e-01 + 7.121499999999999e-01 + 7.999900000000000e-01 + 8.734400000000000e-01 + 9.389800000000000e-01 + 9.799000000000000e-01 + 9.714100000000000e-01 + 9.011400000000001e-01 + 7.785300000000001e-01 + 6.266100000000000e-01 + 4.644300000000000e-01 + 2.956200000000000e-01 + 1.128900000000000e-01 +-8.577700000000001e-02 +-2.837700000000000e-01 +-4.479500000000000e-01 +-5.464800000000000e-01 +-5.699000000000000e-01 +-5.397500000000000e-01 +-4.980700000000000e-01 +-4.852100000000000e-01 +-5.203800000000000e-01 +-5.963900000000000e-01 +-6.883000000000000e-01 +-7.667100000000000e-01 +-8.060800000000000e-01 +-7.857900000000000e-01 +-6.895100000000000e-01 +-5.089900000000001e-01 +-2.525200000000000e-01 + 4.943400000000000e-02 + 3.491300000000000e-01 + 5.979500000000000e-01 + 7.655100000000000e-01 + 8.495500000000000e-01 + 8.702800000000001e-01 + 8.539700000000000e-01 + 8.177500000000000e-01 + 7.654100000000000e-01 + 6.942900000000000e-01 + 6.049600000000001e-01 + 5.042900000000000e-01 + 3.998900000000000e-01 + 2.925800000000000e-01 + 1.754300000000000e-01 + 4.186900000000000e-02 +-1.039400000000000e-01 +-2.445100000000000e-01 +-3.585200000000000e-01 +-4.359800000000000e-01 +-4.867700000000000e-01 +-5.341100000000000e-01 +-5.965400000000000e-01 +-6.716299999999999e-01 +-7.345300000000000e-01 +-7.534900000000000e-01 +-7.112900000000000e-01 +-6.170200000000000e-01 +-4.997900000000000e-01 +-3.898600000000000e-01 +-3.014400000000000e-01 +-2.294100000000000e-01 +-1.597700000000000e-01 +-8.332100000000001e-02 +-3.956700000000000e-04 + 8.607400000000000e-02 + 1.806100000000000e-01 + 2.964100000000000e-01 + 4.434500000000000e-01 + 6.121799999999999e-01 + 7.674900000000000e-01 + 8.622200000000000e-01 + 8.641000000000000e-01 + 7.783400000000000e-01 + 6.489500000000000e-01 + 5.353800000000000e-01 + 4.789000000000000e-01 + 4.804500000000000e-01 + 5.042200000000000e-01 + 5.033200000000000e-01 + 4.492400000000000e-01 + 3.449600000000000e-01 + 2.146300000000000e-01 + 7.926900000000001e-02 +-6.238800000000000e-02 +-2.335600000000000e-01 +-4.597500000000000e-01 +-7.436000000000000e-01 +-1.051800000000000e+00 +-1.323400000000000e+00 +-1.493700000000000e+00 +-1.521500000000000e+00 +-1.402300000000000e+00 +-1.163900000000000e+00 +-8.490100000000000e-01 +-4.974500000000000e-01 +-1.376300000000000e-01 + 2.097600000000000e-01 + 5.220700000000000e-01 + 7.684200000000000e-01 + 9.140800000000000e-01 + 9.347500000000000e-01 + 8.327800000000000e-01 + 6.446499999999999e-01 + 4.328700000000000e-01 + 2.639800000000000e-01 + 1.828500000000000e-01 + 1.962100000000000e-01 + 2.738700000000000e-01 + 3.661400000000000e-01 + 4.273400000000000e-01 + 4.326900000000000e-01 + 3.814400000000000e-01 + 2.879300000000000e-01 + 1.695100000000000e-01 + 3.984400000000000e-02 +-8.993200000000000e-02 +-2.065700000000000e-01 +-2.936800000000000e-01 +-3.372200000000000e-01 +-3.342500000000000e-01 +-2.976300000000000e-01 +-2.518700000000000e-01 +-2.216500000000000e-01 +-2.198200000000000e-01 +-2.422800000000000e-01 +-2.717900000000000e-01 +-2.873700000000000e-01 +-2.728700000000000e-01 +-2.210400000000000e-01 +-1.332400000000000e-01 +-1.778400000000000e-02 + 1.110800000000000e-01 + 2.343400000000000e-01 + 3.311700000000000e-01 + 3.839600000000000e-01 + 3.831500000000000e-01 + 3.288500000000000e-01 + 2.288700000000000e-01 + 9.585000000000000e-02 +-5.346000000000000e-02 +-1.965800000000000e-01 +-3.056300000000000e-01 +-3.540500000000000e-01 +-3.292700000000000e-01 +-2.438600000000000e-01 +-1.353900000000000e-01 +-5.079300000000000e-02 +-2.218700000000000e-02 +-4.891300000000000e-02 +-9.839000000000001e-02 +-1.261800000000000e-01 +-1.022700000000000e-01 +-2.623500000000000e-02 + 7.769500000000000e-02 + 1.796100000000000e-01 + 2.613300000000000e-01 + 3.195900000000000e-01 + 3.556200000000000e-01 + 3.633200000000000e-01 + 3.291500000000000e-01 + 2.452700000000000e-01 + 1.245900000000000e-01 + 2.449600000000000e-03 +-7.999000000000001e-02 +-1.004200000000000e-01 +-6.967400000000000e-02 +-2.419800000000000e-02 +-1.581600000000000e-03 +-1.728300000000000e-02 +-5.915000000000000e-02 +-1.020200000000000e-01 +-1.290000000000000e-01 +-1.418000000000000e-01 +-1.531400000000000e-01 +-1.698400000000000e-01 +-1.827800000000000e-01 +-1.730000000000000e-01 +-1.285700000000000e-01 +-5.681100000000000e-02 + 1.931000000000000e-02 + 7.796500000000001e-02 + 1.137600000000000e-01 + 1.379700000000000e-01 + 1.632800000000000e-01 + 1.863700000000000e-01 + 1.843900000000000e-01 + 1.299300000000000e-01 + 1.368400000000000e-02 +-1.430900000000000e-01 +-2.961100000000000e-01 +-4.001800000000000e-01 +-4.296400000000000e-01 +-3.843500000000000e-01 +-2.809300000000000e-01 +-1.401700000000000e-01 + 1.821800000000000e-02 + 1.726900000000000e-01 + 2.972600000000000e-01 + 3.678800000000000e-01 + 3.763000000000000e-01 + 3.396500000000000e-01 + 2.941100000000000e-01 + 2.729800000000000e-01 + 2.835700000000000e-01 + 3.008700000000000e-01 + 2.848200000000000e-01 + 2.096700000000000e-01 + 8.398600000000001e-02 +-5.350900000000000e-02 +-1.591100000000000e-01 +-2.114600000000000e-01 +-2.215400000000000e-01 +-2.200800000000000e-01 +-2.340200000000000e-01 +-2.701100000000000e-01 +-3.154100000000000e-01 +-3.503000000000000e-01 +-3.609100000000000e-01 +-3.420300000000000e-01 +-2.923600000000000e-01 +-2.109500000000000e-01 +-1.005600000000000e-01 + 2.547300000000000e-02 + 1.422800000000000e-01 + 2.234100000000000e-01 + 2.562300000000000e-01 + 2.503100000000000e-01 + 2.305600000000000e-01 + 2.191900000000000e-01 + 2.207900000000000e-01 + 2.224800000000000e-01 + 2.087000000000000e-01 + 1.770700000000000e-01 + 1.408700000000000e-01 + 1.153900000000000e-01 + 1.004600000000000e-01 + 7.620300000000001e-02 + 1.805500000000000e-02 +-7.976400000000000e-02 +-1.923100000000000e-01 +-2.754500000000000e-01 +-2.940900000000000e-01 +-2.458400000000000e-01 +-1.615900000000000e-01 +-8.249500000000000e-02 +-3.124100000000000e-02 +-5.788400000000000e-05 + 3.611900000000000e-02 + 9.324000000000000e-02 + 1.606800000000000e-01 + 2.068500000000000e-01 + 2.029000000000000e-01 + 1.447700000000000e-01 + 5.617500000000000e-02 +-2.906300000000000e-02 +-9.040600000000000e-02 +-1.311100000000000e-01 +-1.690200000000000e-01 +-2.170400000000000e-01 +-2.699600000000000e-01 +-3.075900000000000e-01 +-3.096600000000000e-01 +-2.688100000000000e-01 +-1.912900000000000e-01 +-8.681400000000000e-02 + 4.099800000000000e-02 + 1.933900000000000e-01 + 3.646100000000000e-01 + 5.302900000000000e-01 + 6.482700000000000e-01 + 6.749400000000000e-01 + 5.877300000000000e-01 + 3.993100000000000e-01 + 1.538700000000000e-01 +-9.170000000000000e-02 +-2.904900000000000e-01 +-4.195800000000000e-01 +-4.805500000000000e-01 +-4.897600000000000e-01 +-4.661000000000000e-01 +-4.221800000000000e-01 +-3.612200000000000e-01 +-2.788300000000000e-01 +-1.681800000000000e-01 +-2.713800000000000e-02 + 1.351400000000000e-01 + 2.957000000000000e-01 + 4.224800000000000e-01 + 4.856700000000000e-01 + 4.705200000000000e-01 + 3.845100000000000e-01 + 2.542400000000000e-01 + 1.135200000000000e-01 +-1.033200000000000e-02 +-1.048100000000000e-01 +-1.718100000000000e-01 +-2.208700000000000e-01 +-2.615100000000000e-01 +-2.984100000000000e-01 +-3.303600000000000e-01 +-3.509600000000000e-01 +-3.501100000000000e-01 +-3.164700000000000e-01 +-2.417900000000000e-01 +-1.261700000000000e-01 + 1.876900000000000e-02 + 1.718700000000000e-01 + 3.097500000000000e-01 + 4.153000000000000e-01 + 4.821500000000000e-01 + 5.120900000000000e-01 + 5.080100000000000e-01 + 4.681100000000000e-01 + 3.863900000000000e-01 + 2.595000000000000e-01 + 9.484800000000000e-02 +-8.639700000000000e-02 +-2.545100000000000e-01 +-3.821400000000000e-01 +-4.547100000000000e-01 +-4.745800000000000e-01 +-4.571300000000000e-01 +-4.214600000000000e-01 +-3.808800000000000e-01 +-3.375400000000000e-01 +-2.830900000000000e-01 +-2.042200000000000e-01 +-9.053400000000000e-02 + 5.859400000000000e-02 + 2.307500000000000e-01 + 4.021700000000000e-01 + 5.439200000000000e-01 + 6.301400000000000e-01 + 6.454000000000000e-01 + 5.883800000000000e-01 + 4.710500000000000e-01 + 3.142800000000000e-01 + 1.419500000000000e-01 +-2.441400000000000e-02 +-1.693400000000000e-01 +-2.846300000000000e-01 +-3.685200000000000e-01 +-4.231100000000000e-01 +-4.517500000000000e-01 +-4.575100000000000e-01 +-4.436000000000000e-01 +-4.146600000000000e-01 +-3.769500000000000e-01 +-3.360100000000000e-01 +-2.927300000000000e-01 +-2.412800000000000e-01 +-1.716400000000000e-01 +-7.683900000000000e-02 + 3.990200000000000e-02 + 1.637100000000000e-01 + 2.748100000000000e-01 + 3.594800000000000e-01 + 4.173200000000000e-01 + 4.584700000000000e-01 + 4.922900000000000e-01 + 5.159500000000000e-01 + 5.128700000000000e-01 + 4.637500000000000e-01 + 3.630500000000000e-01 + 2.285100000000000e-01 + 9.522799999999999e-02 +-2.731600000000000e-03 +-5.108500000000000e-02 +-6.159800000000000e-02 +-6.206100000000000e-02 +-7.780800000000000e-02 +-1.178500000000000e-01 +-1.739800000000000e-01 +-2.308400000000000e-01 +-2.771500000000000e-01 +-3.096900000000000e-01 +-3.288900000000000e-01 +-3.327000000000000e-01 +-3.157100000000000e-01 +-2.748200000000000e-01 +-2.156400000000000e-01 +-1.529100000000000e-01 +-1.035400000000000e-01 +-7.734600000000000e-02 +-7.308800000000000e-02 +-8.222900000000000e-02 +-9.609400000000000e-02 +-1.094200000000000e-01 +-1.174800000000000e-01 +-1.110000000000000e-01 +-7.627700000000000e-02 +-3.448700000000000e-03 + 1.025000000000000e-01 + 2.179100000000000e-01 + 3.096800000000000e-01 + 3.532400000000000e-01 + 3.468600000000000e-01 + 3.113700000000000e-01 + 2.751300000000000e-01 + 2.551900000000000e-01 + 2.487000000000000e-01 + 2.402000000000000e-01 + 2.178900000000000e-01 + 1.848600000000000e-01 + 1.562200000000000e-01 + 1.448200000000000e-01 + 1.480700000000000e-01 + 1.475600000000000e-01 + 1.220300000000000e-01 + 6.336000000000000e-02 +-1.771200000000000e-02 +-1.009300000000000e-01 +-1.731700000000000e-01 +-2.384100000000000e-01 +-3.123200000000000e-01 +-4.049300000000000e-01 +-5.051000000000000e-01 +-5.797400000000000e-01 +-5.900400000000000e-01 +-5.146700000000000e-01 +-3.643700000000000e-01 +-1.784600000000000e-01 +-5.607500000000000e-03 + 1.189300000000000e-01 + 1.861500000000000e-01 + 2.103800000000000e-01 + 2.148100000000000e-01 + 2.155800000000000e-01 + 2.139200000000000e-01 + 1.994500000000000e-01 + 1.610000000000000e-01 + 9.755600000000000e-02 + 2.268900000000000e-02 +-3.984800000000000e-02 +-6.695100000000000e-02 +-4.752500000000000e-02 + 1.182400000000000e-02 + 9.005000000000001e-02 + 1.623500000000000e-01 + 2.124900000000000e-01 + 2.397700000000000e-01 + 2.565300000000000e-01 + 2.777700000000000e-01 + 3.090300000000000e-01 + 3.400000000000000e-01 + 3.476200000000000e-01 + 3.067200000000000e-01 + 2.023300000000000e-01 + 3.731700000000000e-02 +-1.676000000000000e-01 +-3.801600000000000e-01 +-5.656900000000000e-01 +-6.955200000000000e-01 +-7.530100000000000e-01 +-7.363400000000000e-01 +-6.576100000000000e-01 +-5.379600000000000e-01 +-3.995000000000000e-01 +-2.570900000000000e-01 +-1.138900000000000e-01 + 3.640700000000000e-02 + 2.013800000000000e-01 + 3.803500000000000e-01 + 5.593399999999999e-01 + 7.139000000000000e-01 + 8.183600000000000e-01 + 8.561700000000000e-01 + 8.254100000000000e-01 + 7.369100000000000e-01 + 6.068100000000000e-01 + 4.486800000000000e-01 + 2.696600000000000e-01 + 7.223400000000001e-02 +-1.404100000000000e-01 +-3.592100000000000e-01 +-5.676099999999999e-01 +-7.442400000000000e-01 +-8.684200000000000e-01 +-9.257600000000000e-01 +-9.114700000000000e-01 +-8.305900000000001e-01 +-6.955400000000000e-01 +-5.225600000000000e-01 +-3.282000000000000e-01 +-1.267500000000000e-01 + 7.115900000000000e-02 + 2.584900000000000e-01 + 4.302400000000000e-01 + 5.807700000000000e-01 + 7.011100000000000e-01 + 7.779800000000000e-01 + 7.961200000000000e-01 + 7.434700000000000e-01 + 6.171400000000000e-01 + 4.267400000000000e-01 + 1.933000000000000e-01 +-5.559800000000000e-02 +-2.912100000000000e-01 +-4.867500000000000e-01 +-6.182600000000000e-01 +-6.660000000000000e-01 +-6.192600000000000e-01 +-4.837300000000000e-01 +-2.860700000000000e-01 +-6.949800000000000e-02 + 1.211600000000000e-01 + 2.580600000000000e-01 + 3.409700000000000e-01 + 3.916100000000000e-01 + 4.340600000000000e-01 + 4.742700000000000e-01 + 4.939900000000000e-01 + 4.646000000000000e-01 + 3.716900000000000e-01 + 2.319500000000000e-01 + 8.815600000000000e-02 +-1.570100000000000e-02 +-6.225700000000000e-02 +-7.111400000000000e-02 +-8.382400000000000e-02 +-1.343800000000000e-01 +-2.269500000000000e-01 +-3.368800000000000e-01 +-4.329200000000000e-01 +-5.023100000000000e-01 +-5.584300000000000e-01 +-6.250500000000000e-01 +-7.098500000000000e-01 +-7.889100000000000e-01 +-8.153700000000000e-01 +-7.470400000000000e-01 +-5.733200000000001e-01 +-3.225000000000000e-01 +-4.557500000000000e-02 + 2.106300000000000e-01 + 4.221700000000000e-01 + 5.880500000000000e-01 + 7.163800000000000e-01 + 8.105200000000000e-01 + 8.662500000000000e-01 + 8.797300000000000e-01 + 8.563900000000000e-01 + 8.112700000000000e-01 + 7.596200000000000e-01 + 7.059400000000000e-01 + 6.408500000000000e-01 + 5.483600000000000e-01 + 4.176000000000000e-01 + 2.499400000000000e-01 + 5.724700000000000e-02 +-1.450100000000000e-01 +-3.425500000000000e-01 +-5.213300000000000e-01 +-6.638500000000001e-01 +-7.497400000000000e-01 +-7.636700000000000e-01 +-7.067099999999999e-01 +-6.020500000000000e-01 +-4.888400000000000e-01 +-4.062000000000000e-01 +-3.765900000000000e-01 +-3.982800000000000e-01 +-4.500200000000000e-01 +-5.028800000000000e-01 +-5.309900000000000e-01 +-5.162000000000000e-01 +-4.479200000000000e-01 +-3.229200000000000e-01 +-1.473200000000000e-01 + 6.130800000000000e-02 + 2.762900000000000e-01 + 4.701600000000000e-01 + 6.247200000000001e-01 + 7.359300000000000e-01 + 8.096500000000000e-01 + 8.514699999999999e-01 + 8.587000000000000e-01 + 8.214700000000000e-01 + 7.323400000000000e-01 + 5.968000000000000e-01 + 4.357800000000000e-01 + 2.772300000000000e-01 + 1.425400000000000e-01 + 3.721600000000000e-02 +-4.809300000000000e-02 +-1.281500000000000e-01 +-2.132100000000000e-01 +-3.055400000000000e-01 +-4.028200000000000e-01 +-5.025100000000000e-01 +-6.012999999999999e-01 +-6.890900000000000e-01 +-7.442700000000000e-01 +-7.379100000000000e-01 +-6.484500000000000e-01 +-4.789200000000000e-01 +-2.641400000000000e-01 +-5.961500000000000e-02 + 8.394600000000001e-02 + 1.463700000000000e-01 + 1.477500000000000e-01 + 1.355300000000000e-01 + 1.563100000000000e-01 + 2.298100000000000e-01 + 3.401700000000000e-01 + 4.487100000000000e-01 + 5.179400000000000e-01 + 5.308900000000000e-01 + 4.941100000000000e-01 + 4.254400000000000e-01 + 3.376600000000000e-01 + 2.310600000000000e-01 + 9.973300000000000e-02 +-5.454000000000000e-02 +-2.129800000000000e-01 +-3.438100000000000e-01 +-4.177700000000000e-01 +-4.245400000000000e-01 +-3.780500000000000e-01 +-3.067400000000000e-01 +-2.358800000000000e-01 +-1.743900000000000e-01 +-1.155500000000000e-01 +-4.981900000000000e-02 + 2.090400000000000e-02 + 7.937700000000000e-02 + 1.033100000000000e-01 + 8.241400000000000e-02 + 2.912900000000000e-02 +-2.578200000000000e-02 +-5.060600000000000e-02 +-3.122600000000000e-02 + 2.188100000000000e-02 + 8.255500000000000e-02 + 1.267800000000000e-01 + 1.465800000000000e-01 + 1.509400000000000e-01 + 1.547400000000000e-01 + 1.652800000000000e-01 + 1.768200000000000e-01 + 1.761700000000000e-01 + 1.536000000000000e-01 + 1.097200000000000e-01 + 5.312400000000000e-02 +-8.030199999999999e-03 +-7.227300000000000e-02 +-1.426800000000000e-01 +-2.176700000000000e-01 +-2.829000000000000e-01 +-3.125500000000000e-01 +-2.815900000000000e-01 +-1.821600000000000e-01 +-3.311400000000000e-02 + 1.242800000000000e-01 + 2.428300000000000e-01 + 2.890600000000000e-01 + 2.555400000000000e-01 + 1.607500000000000e-01 + 3.857800000000000e-02 +-7.582800000000001e-02 +-1.571500000000000e-01 +-1.946800000000000e-01 +-1.913200000000000e-01 +-1.589300000000000e-01 +-1.123200000000000e-01 +-6.374400000000000e-02 +-1.956100000000000e-02 + 1.927700000000000e-02 + 5.339500000000000e-02 + 8.032400000000001e-02 + 9.293899999999999e-02 + 8.321000000000001e-02 + 4.942900000000000e-02 + 1.501100000000000e-03 +-4.083100000000000e-02 +-5.726900000000000e-02 +-3.828900000000000e-02 + 9.346900000000000e-03 + 6.715599999999999e-02 + 1.165600000000000e-01 + 1.490700000000000e-01 + 1.676700000000000e-01 + 1.787900000000000e-01 + 1.819700000000000e-01 + 1.664100000000000e-01 + 1.179200000000000e-01 + 3.131400000000000e-02 +-8.155000000000000e-02 +-1.951500000000000e-01 +-2.832600000000000e-01 +-3.323500000000000e-01 +-3.461300000000000e-01 +-3.387000000000000e-01 +-3.225600000000000e-01 +-3.005300000000000e-01 +-2.665700000000000e-01 +-2.125700000000000e-01 +-1.340700000000000e-01 +-3.061900000000000e-02 + 9.729500000000001e-02 + 2.487300000000000e-01 + 4.169100000000000e-01 + 5.820100000000000e-01 + 7.105000000000000e-01 + 7.661700000000000e-01 + 7.286300000000000e-01 + 6.066700000000000e-01 + 4.357300000000000e-01 + 2.587200000000000e-01 + 1.028500000000000e-01 +-3.160400000000000e-02 +-1.623300000000000e-01 +-3.032300000000000e-01 +-4.468600000000000e-01 +-5.648400000000000e-01 +-6.260800000000000e-01 +-6.185700000000000e-01 +-5.580500000000000e-01 +-4.775600000000000e-01 +-4.066800000000000e-01 +-3.565900000000000e-01 +-3.211700000000000e-01 +-2.901300000000000e-01 +-2.607100000000000e-01 +-2.370200000000000e-01 +-2.182300000000000e-01 +-1.882600000000000e-01 +-1.192700000000000e-01 + 1.006400000000000e-02 + 1.945000000000000e-01 + 3.969600000000000e-01 + 5.648500000000000e-01 + 6.584100000000001e-01 + 6.718400000000000e-01 + 6.326200000000000e-01 + 5.799299999999999e-01 + 5.378700000000000e-01 + 5.018200000000000e-01 + 4.459300000000000e-01 + 3.447100000000000e-01 + 1.930500000000000e-01 + 1.210200000000000e-02 +-1.604400000000000e-01 +-2.875400000000000e-01 +-3.470100000000000e-01 +-3.371500000000000e-01 +-2.743800000000000e-01 +-1.865900000000000e-01 +-1.047200000000000e-01 +-5.385600000000000e-02 +-4.535400000000000e-02 +-7.344100000000001e-02 +-1.190900000000000e-01 +-1.603900000000000e-01 +-1.836100000000000e-01 +-1.877100000000000e-01 +-1.796400000000000e-01 +-1.649100000000000e-01 +-1.418900000000000e-01 +-1.050900000000000e-01 +-5.447500000000000e-02 +-1.598300000000000e-03 + 3.476500000000000e-02 + 4.177600000000000e-02 + 2.412000000000000e-02 + 3.156400000000000e-03 + 1.952800000000000e-03 + 2.636100000000000e-02 + 5.694800000000000e-02 + 5.953100000000000e-02 + 8.144700000000000e-03 +-9.556900000000000e-02 +-2.205900000000000e-01 +-3.238300000000000e-01 +-3.744100000000000e-01 +-3.687700000000000e-01 +-3.278300000000000e-01 +-2.804600000000000e-01 +-2.458800000000000e-01 +-2.256200000000000e-01 +-2.069800000000000e-01 +-1.716400000000000e-01 +-1.022800000000000e-01 + 1.505000000000000e-02 + 1.894600000000000e-01 + 4.208800000000000e-01 + 6.934100000000000e-01 + 9.719700000000000e-01 + 1.207600000000000e+00 + 1.351600000000000e+00 + 1.372400000000000e+00 + 1.267000000000000e+00 + 1.060900000000000e+00 + 7.986700000000000e-01 + 5.294200000000000e-01 + 2.926100000000000e-01 + 1.083800000000000e-01 +-2.655100000000000e-02 +-1.359100000000000e-01 +-2.538100000000000e-01 +-4.098600000000000e-01 +-6.155500000000000e-01 +-8.590400000000000e-01 +-1.111900000000000e+00 +-1.343700000000000e+00 +-1.534700000000000e+00 +-1.677800000000000e+00 +-1.770000000000000e+00 +-1.800800000000000e+00 +-1.749200000000000e+00 +-1.593700000000000e+00 +-1.328500000000000e+00 +-9.733800000000000e-01 +-5.684700000000000e-01 +-1.568400000000000e-01 + 2.331600000000000e-01 + 5.933300000000000e-01 + 9.262700000000000e-01 + 1.230400000000000e+00 + 1.491700000000000e+00 + 1.689600000000000e+00 + 1.810000000000000e+00 + 1.855500000000000e+00 + 1.842800000000000e+00 + 1.790300000000000e+00 + 1.705500000000000e+00 + 1.582200000000000e+00 + 1.408100000000000e+00 + 1.176400000000000e+00 + 8.912300000000000e-01 + 5.652400000000000e-01 + 2.130700000000000e-01 +-1.511400000000000e-01 +-5.106100000000000e-01 +-8.415200000000000e-01 +-1.114500000000000e+00 +-1.304300000000000e+00 +-1.401000000000000e+00 +-1.414700000000000e+00 +-1.368600000000000e+00 +-1.285600000000000e+00 +-1.178600000000000e+00 +-1.051100000000000e+00 +-9.076800000000000e-01 +-7.624500000000000e-01 +-6.387000000000000e-01 +-5.572200000000000e-01 +-5.228800000000000e-01 +-5.193800000000000e-01 +-5.165000000000000e-01 +-4.841800000000000e-01 +-4.035000000000000e-01 +-2.683900000000000e-01 +-8.056600000000000e-02 + 1.547500000000000e-01 + 4.267300000000000e-01 + 7.128600000000000e-01 + 9.769200000000000e-01 + 1.177000000000000e+00 + 1.281900000000000e+00 + 1.285800000000000e+00 + 1.211000000000000e+00 + 1.096600000000000e+00 + 9.787300000000000e-01 + 8.764200000000000e-01 + 7.881800000000000e-01 + 7.003000000000000e-01 + 5.981400000000000e-01 + 4.729200000000000e-01 + 3.220300000000000e-01 + 1.464600000000000e-01 +-4.989800000000000e-02 +-2.580000000000000e-01 +-4.616900000000000e-01 +-6.397900000000000e-01 +-7.727700000000000e-01 +-8.498599999999999e-01 +-8.721200000000000e-01 +-8.496000000000000e-01 +-7.957800000000000e-01 +-7.237200000000000e-01 +-6.459200000000000e-01 +-5.756800000000000e-01 +-5.255600000000000e-01 +-5.015700000000000e-01 +-4.963100000000000e-01 +-4.871900000000000e-01 +-4.436600000000000e-01 +-3.412900000000000e-01 +-1.751400000000000e-01 + 3.577400000000000e-02 + 2.556800000000000e-01 + 4.470800000000000e-01 + 5.851200000000000e-01 + 6.640200000000001e-01 + 6.938500000000000e-01 + 6.910600000000000e-01 + 6.691500000000000e-01 + 6.336300000000000e-01 + 5.826000000000000e-01 + 5.108300000000000e-01 + 4.147100000000000e-01 + 2.958300000000000e-01 + 1.625300000000000e-01 + 2.899900000000000e-02 +-8.794000000000000e-02 +-1.736100000000000e-01 +-2.203900000000000e-01 +-2.306500000000000e-01 +-2.158200000000000e-01 +-1.916500000000000e-01 +-1.714300000000000e-01 +-1.603200000000000e-01 +-1.539600000000000e-01 +-1.420900000000000e-01 +-1.158900000000000e-01 +-7.509600000000000e-02 +-3.094000000000000e-02 +-2.560400000000000e-03 +-7.957100000000000e-03 +-5.388700000000000e-02 +-1.304500000000000e-01 +-2.141400000000000e-01 +-2.785400000000000e-01 +-3.069400000000000e-01 +-2.994900000000000e-01 +-2.701400000000000e-01 +-2.352000000000000e-01 +-2.006800000000000e-01 +-1.572600000000000e-01 +-8.663000000000000e-02 + 2.448600000000000e-02 + 1.717500000000000e-01 + 3.306700000000000e-01 + 4.660700000000000e-01 + 5.475300000000000e-01 + 5.614700000000000e-01 + 5.132300000000000e-01 + 4.201100000000000e-01 + 3.019700000000000e-01 + 1.761300000000000e-01 + 5.815000000000000e-02 +-3.608100000000000e-02 +-9.254900000000001e-02 +-1.068200000000000e-01 +-9.165700000000000e-02 +-7.633600000000000e-02 +-9.422100000000000e-02 +-1.638700000000000e-01 +-2.756000000000000e-01 +-3.934800000000000e-01 +-4.731000000000000e-01 +-4.844600000000000e-01 +-4.258600000000000e-01 +-3.204000000000000e-01 +-1.994900000000000e-01 +-8.552400000000000e-02 + 1.444300000000000e-02 + 1.025300000000000e-01 + 1.794500000000000e-01 + 2.402600000000000e-01 + 2.799900000000000e-01 + 3.025800000000000e-01 + 3.225400000000000e-01 + 3.545900000000000e-01 + 3.983800000000000e-01 + 4.316700000000000e-01 + 4.210300000000000e-01 + 3.448900000000000e-01 + 2.126300000000000e-01 + 6.345800000000000e-02 +-5.705700000000000e-02 +-1.274700000000000e-01 +-1.657600000000000e-01 +-2.168700000000000e-01 +-3.196400000000000e-01 +-4.761600000000000e-01 +-6.448900000000000e-01 +-7.624900000000000e-01 +-7.789500000000000e-01 +-6.822900000000000e-01 +-4.984900000000000e-01 +-2.706400000000000e-01 +-3.502300000000000e-02 + 1.894700000000000e-01 + 3.954800000000000e-01 + 5.751300000000000e-01 + 7.145400000000000e-01 + 7.992400000000000e-01 + 8.232500000000000e-01 + 7.916299999999999e-01 + 7.136400000000001e-01 + 5.934400000000000e-01 + 4.286700000000000e-01 + 2.194800000000000e-01 +-1.999800000000000e-02 +-2.600800000000000e-01 +-4.679100000000000e-01 +-6.248600000000000e-01 +-7.337600000000000e-01 +-8.077500000000000e-01 +-8.491600000000000e-01 +-8.370200000000000e-01 +-7.373200000000000e-01 +-5.314800000000000e-01 +-2.418500000000000e-01 + 6.808800000000000e-02 + 3.229800000000000e-01 + 4.757200000000000e-01 + 5.300400000000000e-01 + 5.291700000000000e-01 + 5.197300000000000e-01 + 5.182000000000000e-01 + 5.043800000000001e-01 + 4.447400000000000e-01 + 3.249600000000000e-01 + 1.655300000000000e-01 + 9.284799999999999e-03 +-1.071500000000000e-01 +-1.736100000000000e-01 +-2.032200000000000e-01 +-2.111800000000000e-01 +-1.966300000000000e-01 +-1.446400000000000e-01 +-4.687800000000000e-02 + 7.804300000000000e-02 + 1.846600000000000e-01 + 2.243000000000000e-01 + 1.754600000000000e-01 + 5.725400000000000e-02 +-8.468299999999999e-02 +-2.087800000000000e-01 +-3.008900000000000e-01 +-3.732600000000000e-01 +-4.421700000000000e-01 +-5.044700000000000e-01 +-5.333500000000000e-01 +-4.972500000000000e-01 +-3.864300000000000e-01 +-2.255200000000000e-01 +-6.131400000000000e-02 + 6.557900000000000e-02 + 1.443100000000000e-01 + 1.962700000000000e-01 + 2.560100000000000e-01 + 3.452900000000000e-01 + 4.581000000000000e-01 + 5.645900000000000e-01 + 6.283700000000000e-01 + 6.241300000000000e-01 + 5.459600000000000e-01 + 4.053900000000000e-01 + 2.247200000000000e-01 + 3.137000000000000e-02 +-1.454600000000000e-01 +-2.782100000000000e-01 +-3.464400000000000e-01 +-3.428900000000000e-01 +-2.765300000000000e-01 +-1.700700000000000e-01 +-5.282000000000000e-02 + 4.760000000000000e-02 + 1.116700000000000e-01 + 1.314700000000000e-01 + 1.119400000000000e-01 + 6.967100000000000e-02 + 2.816800000000000e-02 + 8.951300000000001e-03 + 2.087700000000000e-02 + 5.327100000000000e-02 + 7.815900000000001e-02 + 6.234300000000000e-02 +-1.615100000000000e-02 +-1.559500000000000e-01 +-3.309500000000000e-01 +-4.997700000000000e-01 +-6.204200000000000e-01 +-6.632700000000000e-01 +-6.179200000000000e-01 +-4.939200000000000e-01 +-3.170800000000000e-01 +-1.226200000000000e-01 + 5.410800000000000e-02 + 1.875700000000000e-01 + 2.690000000000000e-01 + 3.062000000000000e-01 + 3.155600000000000e-01 + 3.108600000000000e-01 + 2.962600000000000e-01 + 2.684400000000000e-01 + 2.254100000000000e-01 + 1.741500000000000e-01 + 1.295200000000000e-01 + 1.042400000000000e-01 + 9.820900000000000e-02 + 9.692199999999999e-02 + 8.278900000000000e-02 + 5.201100000000000e-02 + 2.403200000000000e-02 + 3.443900000000000e-02 + 1.137300000000000e-01 + 2.648700000000000e-01 + 4.542800000000000e-01 + 6.221700000000000e-01 + 7.064800000000000e-01 + 6.670300000000000e-01 + 4.989000000000000e-01 + 2.317600000000000e-01 +-8.087200000000000e-02 +-3.763400000000000e-01 +-5.981100000000000e-01 +-7.099500000000000e-01 +-7.064600000000000e-01 +-6.152500000000000e-01 +-4.863700000000000e-01 +-3.708800000000000e-01 +-2.984400000000000e-01 +-2.669000000000000e-01 +-2.508600000000000e-01 +-2.240000000000000e-01 +-1.799100000000000e-01 +-1.368100000000000e-01 +-1.229100000000000e-01 +-1.534200000000000e-01 +-2.164400000000000e-01 +-2.784700000000000e-01 +-3.054100000000000e-01 +-2.836900000000000e-01 +-2.263300000000000e-01 +-1.602000000000000e-01 +-1.045200000000000e-01 +-5.676600000000000e-02 + 4.743500000000000e-03 + 1.042600000000000e-01 + 2.508600000000000e-01 + 4.315200000000000e-01 + 6.184200000000000e-01 + 7.833200000000000e-01 + 9.082000000000000e-01 + 9.859800000000000e-01 + 1.013300000000000e+00 + 9.831400000000000e-01 + 8.848200000000001e-01 + 7.112400000000000e-01 + 4.690600000000000e-01 + 1.836200000000000e-01 +-1.057300000000000e-01 +-3.583400000000000e-01 +-5.465700000000000e-01 +-6.641300000000000e-01 +-7.238599999999999e-01 +-7.460700000000000e-01 +-7.440700000000000e-01 +-7.153000000000000e-01 +-6.441800000000000e-01 +-5.157600000000000e-01 +-3.323000000000000e-01 +-1.220000000000000e-01 + 6.733000000000000e-02 + 1.877400000000000e-01 + 2.133000000000000e-01 + 1.517800000000000e-01 + 3.901400000000000e-02 +-8.008300000000000e-02 +-1.718300000000000e-01 +-2.233600000000000e-01 +-2.379500000000000e-01 +-2.227700000000000e-01 +-1.800400000000000e-01 +-1.083200000000000e-01 +-1.129200000000000e-02 + 9.501800000000001e-02 + 1.845000000000000e-01 + 2.326100000000000e-01 + 2.294700000000000e-01 + 1.852600000000000e-01 + 1.240300000000000e-01 + 7.108500000000000e-02 + 4.219500000000000e-02 + 4.084700000000000e-02 + 6.235200000000000e-02 + 9.940800000000000e-02 + 1.444600000000000e-01 + 1.890500000000000e-01 + 2.238200000000000e-01 + 2.418300000000000e-01 + 2.431500000000000e-01 + 2.356600000000000e-01 + 2.290500000000000e-01 + 2.249700000000000e-01 + 2.114100000000000e-01 + 1.674500000000000e-01 + 7.751300000000000e-02 +-5.422300000000000e-02 +-2.001200000000000e-01 +-3.202100000000000e-01 +-3.820700000000000e-01 +-3.766300000000000e-01 +-3.202300000000000e-01 +-2.423900000000000e-01 +-1.685600000000000e-01 +-1.088100000000000e-01 +-5.819200000000000e-02 +-5.351800000000000e-03 + 5.840000000000000e-02 + 1.352800000000000e-01 + 2.222600000000000e-01 + 3.130700000000000e-01 + 3.974700000000000e-01 + 4.591500000000000e-01 + 4.764300000000000e-01 + 4.284100000000000e-01 + 3.043300000000000e-01 + 1.101500000000000e-01 +-1.321600000000000e-01 +-3.920300000000000e-01 +-6.384100000000000e-01 +-8.431100000000000e-01 +-9.789400000000000e-01 +-1.018100000000000e+00 +-9.372500000000000e-01 +-7.297700000000000e-01 +-4.186200000000000e-01 +-5.883700000000000e-02 + 2.758100000000000e-01 + 5.180200000000000e-01 + 6.311099999999999e-01 + 6.192900000000000e-01 + 5.190000000000000e-01 + 3.781000000000000e-01 + 2.355200000000000e-01 + 1.123500000000000e-01 + 1.586900000000000e-02 +-5.018900000000000e-02 +-7.890900000000001e-02 +-6.202000000000000e-02 + 2.152400000000000e-03 + 1.019900000000000e-01 + 2.134800000000000e-01 + 3.093000000000000e-01 + 3.706700000000000e-01 + 3.946400000000000e-01 + 3.925300000000000e-01 + 3.808000000000000e-01 + 3.703400000000000e-01 + 3.606700000000000e-01 + 3.417100000000000e-01 + 3.013000000000000e-01 + 2.332100000000000e-01 + 1.408500000000000e-01 + 3.515600000000000e-02 +-7.086000000000001e-02 +-1.669200000000000e-01 +-2.470700000000000e-01 +-3.085700000000000e-01 +-3.509800000000000e-01 +-3.776300000000000e-01 +-3.985100000000000e-01 +-4.309400000000000e-01 +-4.943000000000000e-01 +-5.993500000000000e-01 +-7.375699999999999e-01 +-8.781400000000000e-01 +-9.767600000000000e-01 +-9.932500000000000e-01 +-9.086600000000000e-01 +-7.320900000000000e-01 +-4.935500000000000e-01 +-2.279100000000000e-01 + 3.966800000000000e-02 + 2.984200000000000e-01 + 5.455900000000000e-01 + 7.756100000000000e-01 + 9.734200000000000e-01 + 1.116800000000000e+00 + 1.185700000000000e+00 + 1.172300000000000e+00 + 1.085900000000000e+00 + 9.502500000000000e-01 + 7.963600000000000e-01 + 6.529400000000000e-01 + 5.379000000000000e-01 + 4.525200000000000e-01 + 3.803500000000000e-01 + 2.931900000000000e-01 + 1.639000000000000e-01 +-1.853200000000000e-02 +-2.397300000000000e-01 +-4.634000000000000e-01 +-6.474200000000000e-01 +-7.637900000000000e-01 +-8.106300000000000e-01 +-8.085900000000000e-01 +-7.851399999999999e-01 +-7.580100000000000e-01 +-7.289200000000000e-01 +-6.898600000000000e-01 +-6.346000000000001e-01 +-5.646500000000000e-01 +-4.857000000000000e-01 +-3.998800000000000e-01 +-3.034900000000000e-01 +-1.944900000000000e-01 +-8.334200000000000e-02 + 4.803200000000000e-03 + 4.334000000000000e-02 + 2.648700000000000e-02 +-1.592900000000000e-02 +-2.533600000000000e-02 + 5.743600000000000e-02 + 2.591200000000000e-01 + 5.572400000000000e-01 + 8.898900000000000e-01 + 1.184400000000000e+00 + 1.385100000000000e+00 + 1.464900000000000e+00 + 1.419200000000000e+00 + 1.254500000000000e+00 + 9.857399999999999e-01 + 6.414100000000000e-01 + 2.684800000000000e-01 +-7.701400000000000e-02 +-3.528700000000000e-01 +-5.524200000000000e-01 +-7.065800000000000e-01 +-8.601900000000000e-01 +-1.036400000000000e+00 +-1.213900000000000e+00 +-1.335500000000000e+00 +-1.341900000000000e+00 +-1.209900000000000e+00 +-9.661000000000000e-01 +-6.706000000000000e-01 +-3.822200000000000e-01 +-1.315200000000000e-01 + 8.177100000000000e-02 + 2.698600000000000e-01 + 4.351600000000000e-01 + 5.637300000000000e-01 + 6.371000000000000e-01 + 6.505500000000000e-01 + 6.208900000000001e-01 + 5.774500000000000e-01 + 5.438100000000000e-01 + 5.249500000000000e-01 + 5.088900000000000e-01 + 4.793000000000000e-01 + 4.275300000000000e-01 + 3.546500000000000e-01 + 2.642200000000000e-01 + 1.545600000000000e-01 + 1.897900000000000e-02 +-1.453400000000000e-01 +-3.274900000000000e-01 +-5.008800000000000e-01 +-6.317100000000000e-01 +-6.926900000000000e-01 +-6.733500000000000e-01 +-5.820100000000000e-01 +-4.407500000000000e-01 +-2.780800000000000e-01 +-1.226900000000000e-01 + 1.650900000000000e-03 + 8.138200000000000e-02 + 1.176100000000000e-01 + 1.261800000000000e-01 + 1.305100000000000e-01 + 1.493300000000000e-01 + 1.863200000000000e-01 + 2.289000000000000e-01 + 2.576000000000000e-01 + 2.595800000000000e-01 + 2.367600000000000e-01 + 2.032100000000000e-01 + 1.747800000000000e-01 + 1.595600000000000e-01 + 1.559900000000000e-01 + 1.585200000000000e-01 + 1.641300000000000e-01 + 1.732800000000000e-01 + 1.850100000000000e-01 + 1.917600000000000e-01 + 1.806600000000000e-01 + 1.416100000000000e-01 + 7.606599999999999e-02 +-1.449200000000000e-03 +-7.147000000000001e-02 +-1.218100000000000e-01 +-1.546600000000000e-01 +-1.835100000000000e-01 +-2.229100000000000e-01 +-2.796100000000000e-01 +-3.510300000000000e-01 +-4.302700000000000e-01 +-5.107500000000000e-01 +-5.851800000000000e-01 +-6.403000000000000e-01 +-6.549199999999999e-01 +-6.072600000000000e-01 +-4.895800000000000e-01 +-3.194700000000000e-01 +-1.367500000000000e-01 + 1.550000000000000e-02 + 1.153400000000000e-01 + 1.750800000000000e-01 + 2.332000000000000e-01 + 3.293600000000000e-01 + 4.784500000000000e-01 + 6.603300000000000e-01 + 8.306100000000000e-01 + 9.436300000000000e-01 + 9.720800000000001e-01 + 9.124200000000000e-01 + 7.771600000000000e-01 + 5.838700000000000e-01 + 3.506600000000000e-01 + 9.962699999999999e-02 +-1.387400000000000e-01 +-3.285900000000000e-01 +-4.407300000000000e-01 +-4.667600000000000e-01 +-4.246000000000000e-01 +-3.501700000000000e-01 +-2.796600000000000e-01 +-2.335900000000000e-01 +-2.124200000000000e-01 +-2.051500000000000e-01 +-2.029800000000000e-01 +-2.074200000000000e-01 +-2.270500000000000e-01 +-2.661700000000000e-01 +-3.147800000000000e-01 +-3.480700000000000e-01 +-3.369600000000000e-01 +-2.631200000000000e-01 +-1.291000000000000e-01 + 4.215900000000000e-02 + 2.173800000000000e-01 + 3.655500000000000e-01 + 4.658600000000000e-01 + 5.082400000000000e-01 + 4.889500000000000e-01 + 4.070000000000000e-01 + 2.649300000000000e-01 + 7.333800000000000e-02 +-1.454700000000000e-01 +-3.589900000000000e-01 +-5.322500000000000e-01 +-6.383799999999999e-01 +-6.663600000000000e-01 +-6.222700000000000e-01 +-5.239800000000000e-01 +-3.931500000000000e-01 +-2.487500000000000e-01 +-1.044000000000000e-01 + 3.116600000000000e-02 + 1.531000000000000e-01 + 2.602300000000000e-01 + 3.554300000000000e-01 + 4.447700000000000e-01 + 5.345100000000000e-01 + 6.267500000000000e-01 + 7.163300000000000e-01 + 7.908500000000001e-01 + 8.343000000000000e-01 + 8.322300000000000e-01 + 7.760899999999999e-01 + 6.648300000000000e-01 + 5.043400000000000e-01 + 3.056900000000000e-01 + 8.370200000000000e-02 +-1.439100000000000e-01 +-3.575000000000000e-01 +-5.374900000000000e-01 +-6.676700000000000e-01 +-7.393900000000000e-01 +-7.550400000000000e-01 +-7.288800000000000e-01 +-6.835200000000000e-01 +-6.418300000000000e-01 +-6.170200000000000e-01 +-6.056200000000000e-01 +-5.883000000000000e-01 +-5.401200000000000e-01 +-4.456900000000000e-01 +-3.105100000000000e-01 +-1.603500000000000e-01 +-2.756000000000000e-02 + 6.801200000000000e-02 + 1.305600000000000e-01 + 1.835600000000000e-01 + 2.508500000000000e-01 + 3.364200000000000e-01 + 4.182900000000000e-01 + 4.627400000000000e-01 + 4.504700000000000e-01 + 3.965100000000000e-01 + 3.480800000000000e-01 + 3.594300000000000e-01 + 4.582300000000000e-01 + 6.251700000000000e-01 + 7.999000000000001e-01 + 9.096600000000000e-01 + 9.027200000000000e-01 + 7.673000000000000e-01 + 5.276700000000000e-01 + 2.245300000000000e-01 +-1.047700000000000e-01 +-4.339900000000000e-01 +-7.428700000000000e-01 +-1.008000000000000e+00 +-1.199600000000000e+00 +-1.288800000000000e+00 +-1.258400000000000e+00 +-1.110800000000000e+00 +-8.653300000000000e-01 +-5.507500000000000e-01 +-1.964200000000000e-01 + 1.698200000000000e-01 + 5.185900000000000e-01 + 8.154600000000000e-01 + 1.022800000000000e+00 + 1.108100000000000e+00 + 1.055400000000000e+00 + 8.730000000000000e-01 + 5.926500000000000e-01 + 2.612300000000000e-01 +-7.174899999999999e-02 +-3.647500000000000e-01 +-5.894700000000000e-01 +-7.304400000000000e-01 +-7.819400000000000e-01 +-7.459300000000000e-01 +-6.327600000000000e-01 +-4.636500000000000e-01 +-2.708600000000000e-01 +-9.196400000000000e-02 + 4.189100000000000e-02 + 1.188000000000000e-01 + 1.520300000000000e-01 + 1.734100000000000e-01 + 2.158700000000000e-01 + 2.943300000000000e-01 + 3.968300000000000e-01 + 4.920500000000000e-01 + 5.485100000000001e-01 + 5.525700000000000e-01 + 5.129400000000000e-01 + 4.491600000000000e-01 + 3.737700000000000e-01 + 2.825400000000000e-01 + 1.609400000000000e-01 + 1.819600000000000e-03 +-1.804200000000000e-01 +-3.517100000000000e-01 +-4.764200000000000e-01 +-5.386200000000000e-01 +-5.498800000000000e-01 +-5.371899999999999e-01 +-5.199900000000000e-01 +-4.944000000000000e-01 +-4.375100000000000e-01 +-3.288600000000000e-01 +-1.725200000000000e-01 +-1.798900000000000e-03 + 1.380800000000000e-01 + 2.174100000000000e-01 + 2.396300000000000e-01 + 2.366000000000000e-01 + 2.458300000000000e-01 + 2.866700000000000e-01 + 3.518900000000000e-01 + 4.184200000000000e-01 + 4.660500000000000e-01 + 4.882800000000000e-01 + 4.874800000000000e-01 + 4.608500000000000e-01 + 3.915100000000000e-01 + 2.551100000000000e-01 + 3.916300000000000e-02 +-2.391000000000000e-01 +-5.307300000000000e-01 +-7.728699999999999e-01 +-9.162300000000000e-01 +-9.451800000000000e-01 +-8.787300000000000e-01 +-7.534400000000000e-01 +-6.004100000000000e-01 +-4.313700000000000e-01 +-2.410000000000000e-01 +-2.183700000000000e-02 + 2.198500000000000e-01 + 4.578800000000000e-01 + 6.538100000000000e-01 + 7.735300000000001e-01 + 8.033200000000000e-01 + 7.564300000000000e-01 + 6.667000000000000e-01 + 5.723500000000000e-01 + 4.981500000000000e-01 + 4.448000000000000e-01 + 3.908500000000000e-01 + 3.064100000000000e-01 + 1.716700000000000e-01 +-9.529500000000000e-03 +-2.083800000000000e-01 +-3.828700000000000e-01 +-4.965200000000000e-01 +-5.341600000000000e-01 +-5.068500000000000e-01 +-4.441400000000000e-01 +-3.787100000000000e-01 +-3.317400000000000e-01 +-3.057700000000000e-01 +-2.872600000000000e-01 +-2.560100000000000e-01 +-1.963000000000000e-01 +-1.049000000000000e-01 + 6.408200000000000e-03 + 1.142100000000000e-01 + 1.909400000000000e-01 + 2.141100000000000e-01 + 1.741600000000000e-01 + 7.842000000000000e-02 +-5.039400000000000e-02 +-1.804300000000000e-01 +-2.793300000000000e-01 +-3.221700000000000e-01 +-2.965200000000000e-01 +-2.042100000000000e-01 +-6.019800000000000e-02 + 1.105100000000000e-01 + 2.778600000000000e-01 + 4.134500000000000e-01 + 4.977400000000000e-01 + 5.255200000000000e-01 + 5.068400000000000e-01 + 4.621300000000000e-01 + 4.130500000000000e-01 + 3.729100000000000e-01 + 3.410000000000000e-01 + 3.036200000000000e-01 + 2.413200000000000e-01 + 1.394200000000000e-01 +-3.063800000000000e-03 +-1.702000000000000e-01 +-3.339100000000000e-01 +-4.652000000000000e-01 +-5.470100000000000e-01 +-5.815500000000000e-01 +-5.868400000000000e-01 +-5.829100000000000e-01 +-5.749300000000001e-01 +-5.447300000000000e-01 +-4.588000000000000e-01 +-2.907400000000000e-01 +-4.562500000000000e-02 + 2.306500000000000e-01 + 4.664300000000000e-01 + 5.980200000000000e-01 + 6.028900000000000e-01 + 5.113300000000000e-01 + 3.882500000000000e-01 + 2.956300000000000e-01 + 2.589400000000000e-01 + 2.579800000000000e-01 + 2.462700000000000e-01 + 1.841700000000000e-01 + 6.330700000000000e-02 +-9.223300000000000e-02 +-2.448700000000000e-01 +-3.663600000000000e-01 +-4.477400000000000e-01 +-4.922100000000000e-01 +-5.004500000000000e-01 +-4.632100000000000e-01 +-3.683100000000000e-01 +-2.158800000000000e-01 +-2.849600000000000e-02 + 1.538100000000000e-01 + 2.914300000000000e-01 + 3.637000000000000e-01 + 3.754800000000000e-01 + 3.485300000000000e-01 + 3.055000000000000e-01 + 2.585700000000000e-01 + 2.091600000000000e-01 + 1.554200000000000e-01 + 9.845200000000000e-02 + 4.106500000000000e-02 +-1.882300000000000e-02 +-9.200700000000001e-02 +-1.923700000000000e-01 +-3.233500000000000e-01 +-4.658100000000000e-01 +-5.778600000000000e-01 +-6.095800000000000e-01 +-5.258300000000000e-01 +-3.243600000000000e-01 +-3.923700000000000e-02 + 2.717500000000000e-01 + 5.481900000000000e-01 + 7.457900000000000e-01 + 8.452800000000000e-01 + 8.504000000000000e-01 + 7.791200000000000e-01 + 6.539600000000000e-01 + 4.952300000000000e-01 + 3.183100000000000e-01 + 1.337700000000000e-01 +-5.117400000000000e-02 +-2.311900000000000e-01 +-4.017800000000000e-01 +-5.582600000000000e-01 +-6.945700000000000e-01 +-8.018900000000000e-01 +-8.683400000000000e-01 +-8.814200000000000e-01 +-8.335200000000000e-01 +-7.282900000000000e-01 +-5.832800000000000e-01 +-4.249400000000000e-01 +-2.765600000000000e-01 +-1.455900000000000e-01 +-1.946700000000000e-02 + 1.249600000000000e-01 + 3.023000000000000e-01 + 5.019100000000000e-01 + 6.863100000000000e-01 + 8.084000000000000e-01 + 8.381800000000000e-01 + 7.817000000000000e-01 + 6.790100000000000e-01 + 5.813700000000001e-01 + 5.220399999999999e-01 + 4.993900000000000e-01 + 4.827400000000000e-01 + 4.358000000000000e-01 + 3.414200000000000e-01 + 2.118500000000000e-01 + 7.939499999999999e-02 +-2.443300000000000e-02 +-8.735600000000000e-02 +-1.221500000000000e-01 +-1.588000000000000e-01 +-2.294100000000000e-01 +-3.539600000000000e-01 +-5.317499999999999e-01 +-7.397600000000000e-01 +-9.379400000000000e-01 +-1.080600000000000e+00 +-1.132100000000000e+00 +-1.080600000000000e+00 +-9.431800000000000e-01 +-7.575200000000000e-01 +-5.624100000000000e-01 +-3.790800000000000e-01 +-2.045700000000000e-01 +-2.148000000000000e-02 + 1.829800000000000e-01 + 4.026800000000000e-01 + 6.134600000000000e-01 + 7.880300000000000e-01 + 9.130300000000000e-01 + 9.952100000000000e-01 + 1.052200000000000e+00 + 1.095700000000000e+00 + 1.120600000000000e+00 + 1.107900000000000e+00 + 1.038300000000000e+00 + 9.053700000000000e-01 + 7.191600000000000e-01 + 4.978900000000000e-01 + 2.567800000000000e-01 + 2.654600000000000e-03 +-2.624000000000000e-01 +-5.329300000000000e-01 +-7.950700000000001e-01 +-1.028200000000000e+00 +-1.210900000000000e+00 +-1.325000000000000e+00 +-1.357400000000000e+00 +-1.298600000000000e+00 +-1.145700000000000e+00 +-9.079900000000000e-01 +-6.111300000000000e-01 +-2.945100000000000e-01 + 2.317300000000000e-05 + 2.423100000000000e-01 + 4.218100000000000e-01 + 5.444600000000001e-01 + 6.216900000000000e-01 + 6.603500000000000e-01 + 6.607400000000000e-01 + 6.224900000000000e-01 + 5.513900000000000e-01 + 4.601600000000000e-01 + 3.624000000000000e-01 + 2.655800000000000e-01 + 1.699900000000000e-01 + 7.489200000000000e-02 +-1.396800000000000e-02 +-8.317400000000000e-02 +-1.191800000000000e-01 +-1.189500000000000e-01 +-9.480100000000000e-02 +-6.850299999999999e-02 +-5.879000000000000e-02 +-7.130300000000001e-02 +-9.803700000000000e-02 +-1.252400000000000e-01 +-1.422300000000000e-01 +-1.440300000000000e-01 +-1.273300000000000e-01 +-8.595999999999999e-02 +-1.220000000000000e-02 + 9.568800000000000e-02 + 2.263900000000000e-01 + 3.565100000000000e-01 + 4.607100000000000e-01 + 5.239600000000000e-01 + 5.459700000000000e-01 + 5.337300000000000e-01 + 4.879900000000000e-01 + 3.952900000000000e-01 + 2.336500000000000e-01 +-1.040000000000000e-02 +-3.250800000000000e-01 +-6.688700000000000e-01 +-9.824000000000001e-01 +-1.209600000000000e+00 +-1.315900000000000e+00 +-1.294900000000000e+00 +-1.162200000000000e+00 +-9.446800000000000e-01 +-6.719200000000000e-01 +-3.727200000000000e-01 +-7.510500000000001e-02 + 1.951000000000000e-01 + 4.186100000000000e-01 + 5.879700000000000e-01 + 7.096100000000000e-01 + 8.002300000000000e-01 + 8.780200000000000e-01 + 9.527800000000000e-01 + 1.019400000000000e+00 + 1.058100000000000e+00 + 1.042500000000000e+00 + 9.515700000000000e-01 + 7.808600000000000e-01 + 5.470800000000000e-01 + 2.824900000000000e-01 + 2.205400000000000e-02 +-2.094800000000000e-01 +-4.031300000000000e-01 +-5.606700000000000e-01 +-6.838600000000000e-01 +-7.666300000000000e-01 +-7.968900000000000e-01 +-7.667200000000000e-01 +-6.824400000000000e-01 +-5.657200000000000e-01 +-4.434300000000000e-01 +-3.337300000000000e-01 +-2.387700000000000e-01 +-1.495400000000000e-01 +-5.838300000000000e-02 + 3.146100000000000e-02 + 1.071600000000000e-01 + 1.564700000000000e-01 + 1.773200000000000e-01 + 1.777400000000000e-01 + 1.666600000000000e-01 + 1.446300000000000e-01 + 1.045400000000000e-01 + 4.337000000000000e-02 +-2.529900000000000e-02 +-7.075700000000000e-02 +-6.075900000000000e-02 + 1.672600000000000e-02 + 1.425500000000000e-01 + 2.763300000000000e-01 + 3.812400000000000e-01 + 4.452200000000000e-01 + 4.818000000000000e-01 + 5.095800000000000e-01 + 5.267700000000000e-01 + 5.021800000000000e-01 + 3.922100000000000e-01 + 1.734700000000000e-01 +-1.322400000000000e-01 +-4.594400000000000e-01 +-7.274700000000000e-01 +-8.781099999999999e-01 +-8.990100000000000e-01 +-8.203200000000000e-01 +-6.902500000000000e-01 +-5.472600000000000e-01 +-4.057900000000000e-01 +-2.604100000000000e-01 +-1.009700000000000e-01 + 7.365099999999999e-02 + 2.513900000000000e-01 + 4.121700000000000e-01 + 5.365900000000000e-01 + 6.123800000000000e-01 + 6.364200000000000e-01 + 6.137899999999999e-01 + 5.559800000000000e-01 + 4.790800000000000e-01 + 4.014200000000000e-01 + 3.397400000000000e-01 + 3.044700000000000e-01 + 2.955400000000000e-01 + 3.008800000000000e-01 + 2.990100000000000e-01 + 2.659600000000000e-01 + 1.844300000000000e-01 + 5.161300000000000e-02 +-1.187000000000000e-01 +-3.016000000000000e-01 +-4.719400000000000e-01 +-6.145600000000000e-01 +-7.274600000000000e-01 +-8.159100000000000e-01 +-8.823800000000001e-01 +-9.201800000000000e-01 +-9.166200000000000e-01 +-8.634900000000000e-01 +-7.663900000000000e-01 +-6.442800000000000e-01 +-5.181700000000000e-01 +-3.965800000000000e-01 +-2.688500000000000e-01 +-1.120500000000000e-01 + 9.280200000000000e-02 + 3.461100000000000e-01 + 6.261300000000000e-01 + 8.970900000000001e-01 + 1.122200000000000e+00 + 1.273300000000000e+00 + 1.334000000000000e+00 + 1.300000000000000e+00 + 1.179700000000000e+00 + 9.961000000000000e-01 + 7.841300000000000e-01 + 5.803500000000000e-01 + 4.086400000000000e-01 + 2.709000000000000e-01 + 1.510500000000000e-01 + 3.043400000000000e-02 +-9.649500000000000e-02 +-2.192400000000000e-01 +-3.236000000000000e-01 +-4.087300000000000e-01 +-4.930600000000000e-01 +-6.016200000000000e-01 +-7.432600000000000e-01 +-8.965600000000000e-01 +-1.018000000000000e+00 +-1.068800000000000e+00 +-1.040600000000000e+00 +-9.607000000000000e-01 +-8.722400000000000e-01 +-8.031600000000000e-01 +-7.484300000000000e-01 +-6.772600000000000e-01 +-5.587000000000000e-01 +-3.849300000000000e-01 +-1.750300000000000e-01 + 4.153100000000000e-02 + 2.464200000000000e-01 + 4.412900000000000e-01 + 6.377699999999999e-01 + 8.384100000000000e-01 + 1.024600000000000e+00 + 1.161300000000000e+00 + 1.214600000000000e+00 + 1.169800000000000e+00 + 1.039600000000000e+00 + 8.582800000000000e-01 + 6.689000000000001e-01 + 5.100200000000000e-01 + 4.050700000000000e-01 + 3.562000000000000e-01 + 3.434200000000000e-01 + 3.312100000000000e-01 + 2.828600000000000e-01 + 1.770500000000000e-01 + 1.754600000000000e-02 +-1.709300000000000e-01 +-3.578500000000000e-01 +-5.222200000000000e-01 +-6.567700000000000e-01 +-7.594900000000000e-01 +-8.225400000000000e-01 +-8.313700000000001e-01 +-7.773800000000000e-01 +-6.736200000000000e-01 +-5.573000000000000e-01 +-4.724300000000000e-01 +-4.430000000000000e-01 +-4.574000000000000e-01 +-4.779700000000000e-01 +-4.692400000000000e-01 +-4.229500000000000e-01 +-3.592300000000000e-01 +-3.032700000000000e-01 +-2.578700000000000e-01 +-1.964500000000000e-01 +-8.414400000000000e-02 + 8.982800000000001e-02 + 2.960300000000000e-01 + 4.800100000000000e-01 + 5.978300000000000e-01 + 6.437000000000000e-01 + 6.480300000000000e-01 + 6.486100000000000e-01 + 6.603599999999999e-01 + 6.690300000000000e-01 + 6.530300000000000e-01 + 6.123000000000000e-01 + 5.765700000000000e-01 + 5.830200000000000e-01 + 6.404200000000000e-01 + 7.100100000000000e-01 + 7.216100000000000e-01 + 6.153400000000000e-01 + 3.795000000000000e-01 + 5.807100000000000e-02 +-2.753000000000000e-01 +-5.560400000000000e-01 +-7.531500000000000e-01 +-8.677400000000000e-01 +-9.143600000000000e-01 +-9.045000000000000e-01 +-8.437400000000000e-01 +-7.390600000000001e-01 +-6.043900000000000e-01 +-4.574500000000000e-01 +-3.120700000000000e-01 +-1.756300000000000e-01 +-5.519900000000000e-02 + 3.469500000000000e-02 + 7.360700000000001e-02 + 4.854000000000000e-02 +-3.084100000000000e-02 +-1.298600000000000e-01 +-2.047400000000000e-01 +-2.263800000000000e-01 +-1.937500000000000e-01 +-1.266800000000000e-01 +-4.520100000000000e-02 + 4.576600000000000e-02 + 1.529800000000000e-01 + 2.769300000000000e-01 + 3.980200000000000e-01 + 4.823600000000000e-01 + 5.052100000000000e-01 + 4.721800000000000e-01 + 4.183800000000000e-01 + 3.832400000000000e-01 + 3.804500000000000e-01 + 3.880000000000000e-01 + 3.675100000000000e-01 + 2.976100000000000e-01 + 1.937300000000000e-01 + 9.757500000000000e-02 + 4.449100000000000e-02 + 3.540700000000000e-02 + 3.605400000000000e-02 + 3.766200000000000e-03 +-8.000400000000001e-02 +-1.967700000000000e-01 +-3.059200000000000e-01 +-3.733600000000000e-01 +-3.906700000000000e-01 +-3.722600000000000e-01 +-3.376700000000000e-01 +-2.965000000000000e-01 +-2.483000000000000e-01 +-1.931700000000000e-01 +-1.396900000000000e-01 +-1.004200000000000e-01 +-7.948100000000000e-02 +-6.539700000000000e-02 +-3.826700000000000e-02 + 1.371300000000000e-02 + 8.304200000000000e-02 + 1.478700000000000e-01 + 1.893700000000000e-01 + 2.061400000000000e-01 + 2.121500000000000e-01 + 2.197600000000000e-01 + 2.230500000000000e-01 + 1.976300000000000e-01 + 1.188900000000000e-01 +-1.548100000000000e-02 +-1.774000000000000e-01 +-3.218600000000000e-01 +-4.118700000000000e-01 +-4.361600000000000e-01 +-4.083000000000000e-01 +-3.513300000000000e-01 +-2.824600000000000e-01 +-2.088700000000000e-01 +-1.335800000000000e-01 +-6.098800000000000e-02 + 5.680000000000000e-03 + 7.233400000000000e-02 + 1.566900000000000e-01 + 2.787100000000000e-01 + 4.435800000000000e-01 + 6.308200000000000e-01 + 7.996799999999999e-01 + 9.081500000000000e-01 + 9.313600000000000e-01 + 8.664300000000000e-01 + 7.233100000000000e-01 + 5.134000000000000e-01 + 2.484800000000000e-01 +-4.975600000000000e-02 +-3.420300000000000e-01 +-5.790999999999999e-01 +-7.244900000000000e-01 +-7.761800000000000e-01 +-7.677800000000000e-01 +-7.444800000000000e-01 +-7.300500000000000e-01 +-7.107599999999999e-01 +-6.501400000000001e-01 +-5.237300000000000e-01 +-3.460300000000000e-01 +-1.670400000000000e-01 +-3.981300000000000e-02 + 1.586700000000000e-02 + 2.531900000000000e-02 + 3.738700000000000e-02 + 8.707200000000000e-02 + 1.718300000000000e-01 + 2.588900000000000e-01 + 3.154200000000000e-01 + 3.358100000000000e-01 + 3.440800000000000e-01 + 3.710000000000000e-01 + 4.259500000000000e-01 + 4.868700000000000e-01 + 5.158600000000000e-01 + 4.873200000000000e-01 + 4.067100000000000e-01 + 3.064500000000000e-01 + 2.236600000000000e-01 + 1.770800000000000e-01 + 1.584400000000000e-01 + 1.415200000000000e-01 + 9.954100000000000e-02 + 1.873600000000000e-02 +-9.837000000000000e-02 +-2.379700000000000e-01 +-3.824500000000000e-01 +-5.156600000000000e-01 +-6.250100000000000e-01 +-7.008500000000000e-01 +-7.341700000000000e-01 +-7.141200000000000e-01 +-6.282200000000000e-01 +-4.683900000000000e-01 +-2.420000000000000e-01 + 1.893800000000000e-02 + 2.601000000000000e-01 + 4.233800000000000e-01 + 4.744500000000000e-01 + 4.224400000000000e-01 + 3.166100000000000e-01 + 2.189100000000000e-01 + 1.688600000000000e-01 + 1.641400000000000e-01 + 1.700800000000000e-01 + 1.502200000000000e-01 + 9.496000000000000e-02 + 2.715500000000000e-02 +-1.823100000000000e-02 +-2.315700000000000e-02 +-9.560000000000000e-04 + 1.464700000000000e-02 +-3.593500000000000e-03 +-5.513500000000000e-02 +-1.117400000000000e-01 +-1.371700000000000e-01 +-1.100900000000000e-01 +-3.327300000000000e-02 + 7.457400000000000e-02 + 1.939500000000000e-01 + 3.125000000000000e-01 + 4.206400000000000e-01 + 5.022500000000000e-01 + 5.326000000000000e-01 + 4.886000000000000e-01 + 3.643500000000000e-01 + 1.790700000000000e-01 +-3.025200000000000e-02 +-2.271700000000000e-01 +-3.920700000000000e-01 +-5.254100000000000e-01 +-6.370100000000000e-01 +-7.306500000000000e-01 +-7.955100000000001e-01 +-8.098500000000000e-01 +-7.533100000000000e-01 +-6.195900000000000e-01 +-4.226200000000000e-01 +-1.942700000000000e-01 + 2.447900000000000e-02 + 1.957400000000000e-01 + 2.967200000000000e-01 + 3.278000000000000e-01 + 3.120900000000000e-01 + 2.848500000000000e-01 + 2.761200000000000e-01 + 2.959500000000000e-01 + 3.314200000000000e-01 + 3.583900000000000e-01 + 3.602000000000000e-01 + 3.402800000000000e-01 + 3.194400000000000e-01 + 3.198800000000000e-01 + 3.481400000000000e-01 + 3.896500000000000e-01 + 4.185200000000000e-01 + 4.140200000000000e-01 + 3.708500000000000e-01 + 2.963500000000000e-01 + 1.993700000000000e-01 + 8.199099999999999e-02 +-5.787600000000000e-02 +-2.158100000000000e-01 +-3.730100000000000e-01 +-5.003500000000000e-01 +-5.735800000000000e-01 +-5.884700000000000e-01 +-5.639300000000000e-01 +-5.296200000000000e-01 +-5.065800000000000e-01 +-4.945500000000000e-01 +-4.743400000000000e-01 +-4.224700000000000e-01 +-3.271900000000000e-01 +-1.957000000000000e-01 +-4.976700000000000e-02 + 8.481600000000000e-02 + 1.875800000000000e-01 + 2.479100000000000e-01 + 2.658800000000000e-01 + 2.519000000000000e-01 + 2.251500000000000e-01 + 2.085100000000000e-01 + 2.190000000000000e-01 + 2.572800000000000e-01 + 3.036600000000000e-01 + 3.257000000000000e-01 + 2.954500000000000e-01 + 2.070000000000000e-01 + 8.321400000000000e-02 +-3.310700000000000e-02 +-9.892800000000000e-02 +-9.034700000000000e-02 +-1.151100000000000e-02 + 1.098300000000000e-01 + 2.354000000000000e-01 + 3.301200000000000e-01 + 3.710300000000000e-01 + 3.503200000000000e-01 + 2.744800000000000e-01 + 1.613200000000000e-01 + 3.481900000000000e-02 +-8.220200000000000e-02 +-1.761200000000000e-01 +-2.471900000000000e-01 +-3.072900000000000e-01 +-3.707400000000000e-01 +-4.427900000000000e-01 +-5.128400000000000e-01 +-5.572300000000000e-01 +-5.506100000000000e-01 +-4.794300000000000e-01 +-3.494200000000000e-01 +-1.829800000000000e-01 +-8.354600000000000e-03 + 1.520200000000000e-01 + 2.867400000000000e-01 + 3.919100000000000e-01 + 4.630700000000000e-01 + 4.902900000000000e-01 + 4.616300000000000e-01 + 3.735100000000000e-01 + 2.398400000000000e-01 + 9.110300000000000e-02 +-3.863100000000000e-02 +-1.297500000000000e-01 +-1.873000000000000e-01 +-2.346600000000000e-01 +-2.934000000000000e-01 +-3.631000000000000e-01 +-4.166400000000000e-01 +-4.165800000000000e-01 +-3.419800000000000e-01 +-2.064200000000000e-01 +-5.246700000000000e-02 + 7.529000000000000e-02 + 1.598100000000000e-01 + 2.217700000000000e-01 + 3.015100000000000e-01 + 4.247900000000000e-01 + 5.771100000000000e-01 + 7.060700000000000e-01 + 7.514900000000000e-01 + 6.827400000000000e-01 + 5.180000000000000e-01 + 3.125100000000000e-01 + 1.251800000000000e-01 +-1.359100000000000e-02 +-1.122500000000000e-01 +-2.027700000000000e-01 +-3.127900000000000e-01 +-4.447600000000000e-01 +-5.739700000000000e-01 +-6.633000000000000e-01 +-6.831700000000001e-01 +-6.247300000000000e-01 +-5.013400000000000e-01 +-3.410100000000000e-01 +-1.754300000000000e-01 +-3.038000000000000e-02 + 7.975599999999999e-02 + 1.521900000000000e-01 + 1.907100000000000e-01 + 1.980900000000000e-01 + 1.710500000000000e-01 + 1.027300000000000e-01 +-7.389400000000000e-03 +-1.428700000000000e-01 +-2.690000000000000e-01 +-3.452600000000000e-01 +-3.455200000000000e-01 +-2.719000000000000e-01 +-1.510300000000000e-01 +-1.432600000000000e-02 + 1.229500000000000e-01 + 2.666100000000000e-01 + 4.276200000000000e-01 + 5.982300000000000e-01 + 7.417400000000000e-01 + 8.084700000000000e-01 + 7.692600000000001e-01 + 6.415900000000000e-01 + 4.859200000000000e-01 + 3.706800000000000e-01 + 3.283900000000000e-01 + 3.336000000000000e-01 + 3.186900000000000e-01 + 2.169300000000000e-01 + 3.505900000000000e-03 +-2.914000000000000e-01 +-6.025000000000000e-01 +-8.642500000000000e-01 +-1.036300000000000e+00 +-1.107000000000000e+00 +-1.081000000000000e+00 +-9.681100000000000e-01 +-7.832000000000000e-01 +-5.536900000000000e-01 +-3.216500000000000e-01 +-1.319000000000000e-01 +-1.102700000000000e-02 + 4.763900000000000e-02 + 8.084000000000000e-02 + 1.345500000000000e-01 + 2.389100000000000e-01 + 3.942900000000000e-01 + 5.746700000000000e-01 + 7.423800000000000e-01 + 8.630400000000000e-01 + 9.137300000000000e-01 + 8.853200000000000e-01 + 7.832400000000000e-01 + 6.277500000000000e-01 + 4.500400000000000e-01 + 2.812000000000000e-01 + 1.373800000000000e-01 + 1.155800000000000e-02 +-1.196900000000000e-01 +-2.759800000000000e-01 +-4.530200000000000e-01 +-6.184500000000001e-01 +-7.289200000000000e-01 +-7.573800000000001e-01 +-7.109799999999999e-01 +-6.261300000000000e-01 +-5.444099999999999e-01 +-4.872300000000000e-01 +-4.470800000000000e-01 +-3.995100000000000e-01 +-3.238600000000000e-01 +-2.160100000000000e-01 +-8.518100000000001e-02 + 5.819700000000000e-02 + 2.097900000000000e-01 + 3.665200000000000e-01 + 5.156800000000000e-01 + 6.314500000000000e-01 + 6.866300000000000e-01 + 6.723900000000000e-01 + 6.095000000000000e-01 + 5.383599999999999e-01 + 4.920400000000000e-01 + 4.717800000000000e-01 + 4.444900000000000e-01 + 3.665700000000000e-01 + 2.178900000000000e-01 + 2.093300000000000e-02 +-1.695700000000000e-01 +-2.999100000000000e-01 +-3.505000000000000e-01 +-3.461000000000000e-01 +-3.372500000000000e-01 +-3.667000000000000e-01 +-4.433700000000000e-01 +-5.391200000000000e-01 +-6.074100000000000e-01 +-6.098200000000000e-01 +-5.346600000000000e-01 +-3.995300000000000e-01 +-2.401200000000000e-01 +-9.306800000000000e-02 + 1.929600000000000e-02 + 9.714000000000000e-02 + 1.615500000000000e-01 + 2.426700000000000e-01 + 3.608900000000000e-01 + 5.092000000000000e-01 + 6.478400000000000e-01 + 7.177100000000000e-01 + 6.688900000000000e-01 + 4.891700000000000e-01 + 2.151200000000000e-01 +-8.258000000000000e-02 +-3.316900000000000e-01 +-4.893300000000000e-01 +-5.530400000000000e-01 +-5.480400000000000e-01 +-5.025200000000000e-01 +-4.298500000000000e-01 +-3.287300000000000e-01 +-1.978000000000000e-01 +-4.999600000000000e-02 + 8.629100000000001e-02 + 1.807600000000000e-01 + 2.190200000000000e-01 + 2.113600000000000e-01 + 1.866400000000000e-01 + 1.762100000000000e-01 + 1.990900000000000e-01 + 2.560200000000000e-01 + 3.327300000000000e-01 + 4.071900000000000e-01 + 4.562700000000000e-01 + 4.612900000000000e-01 + 4.139500000000000e-01 + 3.218200000000000e-01 + 2.085800000000000e-01 + 1.046600000000000e-01 + 3.034500000000000e-02 +-1.828900000000000e-02 +-6.888800000000000e-02 +-1.543800000000000e-01 +-2.871500000000000e-01 +-4.444400000000000e-01 +-5.778000000000000e-01 +-6.424600000000000e-01 +-6.266500000000000e-01 +-5.588800000000000e-01 +-4.867600000000000e-01 +-4.420100000000000e-01 +-4.177000000000000e-01 +-3.754500000000000e-01 +-2.774000000000000e-01 +-1.189300000000000e-01 + 6.309900000000000e-02 + 2.133200000000000e-01 + 2.946500000000000e-01 + 3.112900000000000e-01 + 3.008800000000000e-01 + 3.029100000000000e-01 + 3.285900000000000e-01 + 3.552000000000000e-01 + 3.486600000000000e-01 + 2.952200000000000e-01 + 2.170700000000000e-01 + 1.591300000000000e-01 + 1.575400000000000e-01 + 2.136600000000000e-01 + 2.925200000000000e-01 + 3.453700000000000e-01 + 3.384500000000000e-01 + 2.677000000000000e-01 + 1.522100000000000e-01 + 1.619700000000000e-02 +-1.238300000000000e-01 +-2.579100000000000e-01 +-3.727700000000000e-01 +-4.465200000000000e-01 +-4.560300000000000e-01 +-3.922600000000000e-01 +-2.699900000000000e-01 +-1.223100000000000e-01 + 1.725900000000000e-02 + 1.311100000000000e-01 + 2.193300000000000e-01 + 2.863700000000000e-01 + 3.252300000000000e-01 + 3.141800000000000e-01 + 2.310100000000000e-01 + 7.382100000000000e-02 +-1.286000000000000e-01 +-3.271500000000000e-01 +-4.771000000000000e-01 +-5.596000000000000e-01 +-5.845700000000000e-01 +-5.739900000000000e-01 +-5.395900000000000e-01 +-4.723500000000000e-01 +-3.511800000000000e-01 +-1.631300000000000e-01 + 8.102700000000000e-02 + 3.469700000000000e-01 + 5.911400000000000e-01 + 7.776900000000000e-01 + 8.864400000000000e-01 + 9.099600000000000e-01 + 8.467500000000000e-01 + 6.994100000000000e-01 + 4.797100000000000e-01 + 2.143300000000000e-01 +-5.699400000000000e-02 +-2.932300000000000e-01 +-4.670300000000000e-01 +-5.730200000000000e-01 +-6.239500000000000e-01 +-6.383200000000000e-01 +-6.287100000000000e-01 +-5.980300000000000e-01 +-5.435100000000000e-01 +-4.624300000000000e-01 +-3.543500000000000e-01 +-2.196100000000000e-01 +-5.903100000000000e-02 + 1.218100000000000e-01 + 3.062200000000000e-01 + 4.651900000000000e-01 + 5.667400000000000e-01 + 5.927000000000000e-01 + 5.520100000000000e-01 + 4.793200000000000e-01 + 4.169900000000000e-01 + 3.908900000000000e-01 + 3.959800000000000e-01 + 4.016600000000000e-01 + 3.731200000000000e-01 + 2.937300000000000e-01 + 1.734200000000000e-01 + 3.884500000000000e-02 +-8.572399999999999e-02 +-1.918100000000000e-01 +-2.856400000000000e-01 +-3.756100000000000e-01 +-4.600800000000000e-01 +-5.254900000000000e-01 +-5.558900000000000e-01 +-5.449600000000000e-01 +-5.007800000000000e-01 +-4.398800000000000e-01 +-3.765500000000000e-01 +-3.165200000000000e-01 +-2.596700000000000e-01 +-2.076400000000000e-01 +-1.680300000000000e-01 +-1.499000000000000e-01 +-1.536200000000000e-01 +-1.642500000000000e-01 +-1.554000000000000e-01 +-1.028200000000000e-01 + 1.493400000000000e-03 + 1.446300000000000e-01 + 3.006000000000000e-01 + 4.445000000000000e-01 + 5.627600000000000e-01 + 6.532200000000000e-01 + 7.176600000000000e-01 + 7.550100000000000e-01 + 7.614300000000001e-01 + 7.362100000000000e-01 + 6.861100000000000e-01 + 6.216800000000000e-01 + 5.470200000000000e-01 + 4.515400000000000e-01 + 3.131000000000000e-01 + 1.132100000000000e-01 +-1.450000000000000e-01 +-4.300100000000000e-01 +-6.928400000000000e-01 +-8.897600000000000e-01 +-1.001400000000000e+00 +-1.035400000000000e+00 +-1.011700000000000e+00 +-9.437600000000000e-01 +-8.299299999999999e-01 +-6.628800000000000e-01 +-4.471600000000000e-01 +-2.092300000000000e-01 + 1.108500000000000e-02 + 1.832500000000000e-01 + 3.054900000000000e-01 + 4.045300000000000e-01 + 5.131900000000000e-01 + 6.410400000000001e-01 + 7.600400000000000e-01 + 8.174100000000000e-01 + 7.684100000000000e-01 + 6.065600000000000e-01 + 3.702600000000000e-01 + 1.213300000000000e-01 +-8.921200000000000e-02 +-2.443000000000000e-01 +-3.583800000000000e-01 +-4.539000000000000e-01 +-5.363599999999999e-01 +-5.868500000000000e-01 +-5.766700000000000e-01 +-4.913500000000000e-01 +-3.448100000000000e-01 +-1.728000000000000e-01 +-1.095500000000000e-02 + 1.255700000000000e-01 + 2.459700000000000e-01 + 3.693700000000000e-01 + 5.039100000000000e-01 + 6.355800000000000e-01 + 7.343200000000000e-01 + 7.717200000000000e-01 + 7.364600000000000e-01 + 6.365700000000000e-01 + 4.889900000000000e-01 + 3.066700000000000e-01 + 9.464000000000000e-02 +-1.422600000000000e-01 +-3.876400000000000e-01 +-6.097000000000000e-01 +-7.712100000000000e-01 +-8.478599999999999e-01 +-8.420800000000001e-01 +-7.814300000000000e-01 +-7.015100000000000e-01 +-6.246300000000000e-01 +-5.486700000000000e-01 +-4.534400000000000e-01 +-3.193700000000000e-01 +-1.449600000000000e-01 + 4.908700000000000e-02 + 2.308500000000000e-01 + 3.742500000000000e-01 + 4.697000000000000e-01 + 5.219300000000000e-01 + 5.388400000000000e-01 + 5.221700000000000e-01 + 4.680900000000000e-01 + 3.768600000000000e-01 + 2.628200000000000e-01 + 1.549200000000000e-01 + 8.574200000000000e-02 + 7.600700000000001e-02 + 1.254200000000000e-01 + 2.155800000000000e-01 + 3.212700000000000e-01 + 4.205500000000000e-01 + 4.961300000000000e-01 + 5.296100000000000e-01 + 4.971900000000000e-01 + 3.753200000000000e-01 + 1.556700000000000e-01 +-1.407500000000000e-01 +-4.628900000000000e-01 +-7.469800000000000e-01 +-9.433200000000000e-01 +-1.035900000000000e+00 +-1.042000000000000e+00 +-9.927600000000000e-01 +-9.078500000000000e-01 +-7.831500000000000e-01 +-5.989100000000001e-01 +-3.425000000000000e-01 +-2.887600000000000e-02 + 2.962400000000000e-01 + 5.732500000000000e-01 + 7.551000000000000e-01 + 8.268799999999999e-01 + 8.076100000000001e-01 + 7.350800000000000e-01 + 6.442600000000001e-01 + 5.522800000000000e-01 + 4.569500000000000e-01 + 3.469300000000000e-01 + 2.153100000000000e-01 + 6.814000000000001e-02 +-7.660300000000000e-02 +-1.973900000000000e-01 +-2.792000000000000e-01 +-3.189000000000000e-01 +-3.234900000000000e-01 +-3.030500000000000e-01 +-2.641900000000000e-01 +-2.090400000000000e-01 +-1.403700000000000e-01 +-6.823200000000000e-02 +-1.103700000000000e-02 + 1.254300000000000e-02 +-3.126300000000000e-03 +-4.200800000000000e-02 +-7.124900000000001e-02 +-5.947900000000000e-02 + 2.238700000000000e-03 + 9.168900000000001e-02 + 1.667800000000000e-01 + 1.904200000000000e-01 + 1.519900000000000e-01 + 7.019700000000000e-02 +-2.407900000000000e-02 +-1.107600000000000e-01 +-1.905500000000000e-01 +-2.738800000000000e-01 +-3.587200000000000e-01 +-4.177600000000000e-01 +-4.090200000000000e-01 +-3.047500000000000e-01 +-1.170600000000000e-01 + 1.013900000000000e-01 + 2.849400000000000e-01 + 3.922800000000000e-01 + 4.265200000000000e-01 + 4.236200000000000e-01 + 4.191800000000000e-01 + 4.199400000000000e-01 + 4.019700000000000e-01 + 3.357300000000000e-01 + 2.164200000000000e-01 + 7.424100000000000e-02 +-4.385500000000000e-02 +-1.061100000000000e-01 +-1.157700000000000e-01 +-1.035900000000000e-01 +-1.005400000000000e-01 +-1.140900000000000e-01 +-1.274000000000000e-01 +-1.206900000000000e-01 +-9.480700000000000e-02 +-7.554300000000000e-02 +-9.355500000000000e-02 +-1.565800000000000e-01 +-2.379700000000000e-01 +-2.930500000000000e-01 +-2.922200000000000e-01 +-2.451800000000000e-01 +-1.967800000000000e-01 +-1.961700000000000e-01 +-2.612500000000000e-01 +-3.637800000000000e-01 +-4.449300000000000e-01 +-4.494800000000000e-01 +-3.552300000000000e-01 +-1.797200000000000e-01 + 3.596900000000000e-02 + 2.518300000000000e-01 + 4.448800000000000e-01 + 6.091200000000000e-01 + 7.446100000000000e-01 + 8.466399999999999e-01 + 9.027800000000000e-01 + 8.978500000000000e-01 + 8.216900000000000e-01 + 6.745300000000000e-01 + 4.684000000000000e-01 + 2.255300000000000e-01 +-2.516000000000000e-02 +-2.534600000000000e-01 +-4.345400000000000e-01 +-5.550600000000000e-01 +-6.155400000000000e-01 +-6.276400000000000e-01 +-6.080700000000000e-01 +-5.730900000000000e-01 +-5.357200000000000e-01 +-5.048700000000000e-01 +-4.831900000000000e-01 +-4.629400000000000e-01 +-4.237300000000000e-01 +-3.377700000000000e-01 +-1.843600000000000e-01 + 3.290100000000000e-02 + 2.783900000000000e-01 + 4.949300000000000e-01 + 6.296200000000000e-01 + 6.603500000000000e-01 + 6.055000000000000e-01 + 5.097300000000000e-01 + 4.150000000000000e-01 + 3.366700000000000e-01 + 2.606900000000000e-01 + 1.627600000000000e-01 + 3.409300000000000e-02 +-1.058300000000000e-01 +-2.187300000000000e-01 +-2.718000000000000e-01 +-2.586700000000000e-01 +-2.023500000000000e-01 +-1.394800000000000e-01 +-9.846900000000000e-02 +-8.707700000000000e-02 +-9.605200000000000e-02 +-1.126300000000000e-01 +-1.316400000000000e-01 +-1.560500000000000e-01 +-1.891100000000000e-01 +-2.270700000000000e-01 +-2.599300000000000e-01 +-2.790900000000000e-01 +-2.841600000000000e-01 +-2.809900000000000e-01 +-2.717600000000000e-01 +-2.453300000000000e-01 +-1.782600000000000e-01 +-4.859500000000000e-02 + 1.454700000000000e-01 + 3.759800000000000e-01 + 5.931300000000000e-01 + 7.477400000000000e-01 + 8.145200000000000e-01 + 8.015800000000000e-01 + 7.405700000000000e-01 + 6.648500000000001e-01 + 5.903500000000000e-01 + 5.110300000000000e-01 + 4.096400000000000e-01 + 2.744000000000000e-01 + 1.091100000000000e-01 +-6.936800000000000e-02 +-2.424500000000000e-01 +-4.001100000000000e-01 +-5.422800000000000e-01 +-6.715200000000000e-01 +-7.839100000000000e-01 +-8.665400000000000e-01 +-9.036100000000000e-01 +-8.865000000000000e-01 +-8.195800000000000e-01 +-7.174800000000000e-01 +-5.960500000000000e-01 +-4.643400000000000e-01 +-3.232900000000000e-01 +-1.713600000000000e-01 +-1.181100000000000e-02 + 1.443500000000000e-01 + 2.817900000000000e-01 + 3.872800000000000e-01 + 4.543800000000000e-01 + 4.837300000000000e-01 + 4.805800000000000e-01 + 4.530800000000000e-01 + 4.125200000000000e-01 + 3.736800000000000e-01 + 3.521000000000000e-01 + 3.581600000000000e-01 + 3.914500000000000e-01 + 4.402800000000000e-01 + 4.875200000000000e-01 + 5.189900000000000e-01 + 5.278300000000000e-01 + 5.121100000000000e-01 + 4.690200000000000e-01 + 3.927900000000000e-01 + 2.803400000000000e-01 + 1.408500000000000e-01 +-2.173900000000000e-04 +-1.099500000000000e-01 +-1.669000000000000e-01 +-1.778500000000000e-01 +-1.789500000000000e-01 +-2.178200000000000e-01 +-3.269200000000000e-01 +-5.057700000000001e-01 +-7.233100000000000e-01 +-9.375599999999999e-01 +-1.116700000000000e+00 +-1.246900000000000e+00 +-1.322200000000000e+00 +-1.329500000000000e+00 +-1.242200000000000e+00 +-1.032400000000000e+00 +-6.926500000000000e-01 +-2.516000000000000e-01 + 2.296200000000000e-01 + 6.789300000000000e-01 + 1.039500000000000e+00 + 1.284600000000000e+00 + 1.415100000000000e+00 + 1.445200000000000e+00 + 1.388500000000000e+00 + 1.253900000000000e+00 + 1.050600000000000e+00 + 7.954400000000000e-01 + 5.159500000000000e-01 + 2.474300000000000e-01 + 2.646300000000000e-02 +-1.167200000000000e-01 +-1.659100000000000e-01 +-1.263100000000000e-01 +-2.861300000000000e-02 + 7.517200000000000e-02 + 1.270300000000000e-01 + 8.507300000000000e-02 +-5.862300000000000e-02 +-2.753800000000000e-01 +-5.150700000000000e-01 +-7.296400000000000e-01 +-8.904400000000000e-01 +-9.899600000000000e-01 +-1.031100000000000e+00 +-1.015800000000000e+00 +-9.435500000000000e-01 +-8.193500000000000e-01 +-6.599100000000000e-01 +-4.890600000000000e-01 +-3.221600000000000e-01 +-1.528000000000000e-01 + 4.421600000000000e-02 + 2.910600000000000e-01 + 5.803000000000000e-01 + 8.644200000000000e-01 + 1.073000000000000e+00 + 1.148900000000000e+00 + 1.080300000000000e+00 + 9.071500000000000e-01 + 6.981600000000000e-01 + 5.151900000000000e-01 + 3.878200000000000e-01 + 3.117800000000000e-01 + 2.656900000000000e-01 + 2.294800000000000e-01 + 1.909300000000000e-01 + 1.405000000000000e-01 + 6.529000000000000e-02 +-4.769500000000000e-02 +-2.000000000000000e-01 +-3.731800000000000e-01 +-5.338400000000000e-01 +-6.513800000000000e-01 +-7.157500000000000e-01 +-7.405300000000000e-01 +-7.480700000000000e-01 +-7.478200000000000e-01 +-7.255300000000000e-01 +-6.527700000000000e-01 +-5.100400000000000e-01 +-3.057700000000000e-01 +-7.658100000000000e-02 + 1.318400000000000e-01 + 2.888000000000000e-01 + 3.905400000000000e-01 + 4.527500000000000e-01 + 4.914000000000000e-01 + 5.076800000000000e-01 + 4.879700000000000e-01 + 4.177700000000000e-01 + 2.977600000000000e-01 + 1.497900000000000e-01 + 9.018099999999999e-03 +-9.168700000000000e-02 +-1.343500000000000e-01 +-1.190400000000000e-01 +-5.824700000000000e-02 + 3.153600000000000e-02 + 1.354400000000000e-01 + 2.414500000000000e-01 + 3.391200000000000e-01 + 4.181300000000000e-01 + 4.677400000000000e-01 + 4.765700000000000e-01 + 4.331200000000000e-01 + 3.281200000000000e-01 + 1.597500000000000e-01 +-5.981800000000000e-02 +-3.007300000000000e-01 +-5.190700000000000e-01 +-6.687700000000000e-01 +-7.174500000000000e-01 +-6.587800000000000e-01 +-5.151600000000000e-01 +-3.294800000000000e-01 +-1.503800000000000e-01 +-1.791500000000000e-02 + 4.539400000000000e-02 + 3.680000000000000e-02 +-2.911400000000000e-02 +-1.251000000000000e-01 +-2.170800000000000e-01 +-2.714500000000000e-01 +-2.635500000000000e-01 +-1.853800000000000e-01 +-4.901100000000000e-02 + 1.170700000000000e-01 + 2.779200000000000e-01 + 4.045400000000000e-01 + 4.826700000000000e-01 + 5.140500000000000e-01 + 5.102500000000000e-01 + 4.832800000000000e-01 + 4.385900000000000e-01 + 3.740400000000000e-01 + 2.843600000000000e-01 + 1.675000000000000e-01 + 2.869600000000000e-02 +-1.194900000000000e-01 +-2.600400000000000e-01 +-3.747600000000000e-01 +-4.466000000000000e-01 +-4.618300000000000e-01 +-4.138600000000000e-01 +-3.084100000000000e-01 +-1.672900000000000e-01 +-2.626300000000000e-02 + 7.515700000000000e-02 + 1.089600000000000e-01 + 7.149300000000000e-02 +-1.383600000000000e-02 +-1.064800000000000e-01 +-1.666400000000000e-01 +-1.717200000000000e-01 +-1.230100000000000e-01 +-4.063900000000000e-02 + 4.851000000000000e-02 + 1.222800000000000e-01 + 1.687700000000000e-01 + 1.856800000000000e-01 + 1.766500000000000e-01 + 1.484800000000000e-01 + 1.100100000000000e-01 + 7.169000000000000e-02 + 4.420300000000000e-02 + 3.629500000000000e-02 + 5.293100000000000e-02 + 9.463000000000001e-02 + 1.575200000000000e-01 + 2.331800000000000e-01 + 3.084000000000000e-01 + 3.664600000000000e-01 + 3.912800000000000e-01 + 3.732100000000000e-01 + 3.129200000000000e-01 + 2.195600000000000e-01 + 1.035800000000000e-01 +-3.075400000000000e-02 +-1.865500000000000e-01 +-3.669100000000000e-01 +-5.638500000000000e-01 +-7.526400000000000e-01 +-8.982000000000000e-01 +-9.707900000000000e-01 +-9.609100000000000e-01 +-8.822000000000000e-01 +-7.599300000000000e-01 +-6.131799999999999e-01 +-4.441200000000000e-01 +-2.422100000000000e-01 + 1.720700000000000e-04 + 2.730800000000000e-01 + 5.466600000000000e-01 + 7.826500000000000e-01 + 9.508300000000000e-01 + 1.038500000000000e+00 + 1.048200000000000e+00 + 9.885699999999999e-01 + 8.676800000000000e-01 + 6.950200000000000e-01 + 4.877500000000000e-01 + 2.728300000000000e-01 + 7.957100000000000e-02 +-7.359100000000000e-02 +-1.872900000000000e-01 +-2.764300000000000e-01 +-3.544000000000000e-01 +-4.179000000000000e-01 +-4.450900000000000e-01 +-4.096600000000000e-01 +-3.016600000000000e-01 +-1.394300000000000e-01 + 3.635300000000000e-02 + 1.829500000000000e-01 + 2.760900000000000e-01 + 3.169100000000000e-01 + 3.216500000000000e-01 + 3.027000000000000e-01 + 2.553500000000000e-01 + 1.595800000000000e-01 +-4.489000000000000e-03 +-2.380400000000000e-01 +-5.142099999999999e-01 +-7.836100000000000e-01 +-9.918900000000000e-01 +-1.099600000000000e+00 +-1.094700000000000e+00 +-9.924800000000000e-01 +-8.247100000000001e-01 +-6.239700000000000e-01 +-4.120700000000000e-01 +-1.973200000000000e-01 + 1.943300000000000e-02 + 2.354000000000000e-01 + 4.402800000000000e-01 + 6.186800000000000e-01 + 7.584100000000000e-01 + 8.576800000000000e-01 + 9.246400000000000e-01 + 9.686300000000000e-01 + 9.898600000000000e-01 + 9.767100000000000e-01 + 9.144900000000000e-01 + 8.002600000000000e-01 + 6.516100000000000e-01 + 5.006600000000000e-01 + 3.747000000000000e-01 + 2.767400000000000e-01 + 1.805700000000000e-01 + 4.650000000000000e-02 +-1.514400000000000e-01 +-4.043500000000000e-01 +-6.680199999999999e-01 +-8.837500000000000e-01 +-1.006900000000000e+00 +-1.025800000000000e+00 +-9.604000000000000e-01 +-8.454900000000000e-01 +-7.108300000000000e-01 +-5.707200000000000e-01 +-4.263800000000000e-01 +-2.753300000000000e-01 +-1.194900000000000e-01 + 3.270900000000000e-02 + 1.687500000000000e-01 + 2.753100000000000e-01 + 3.406000000000000e-01 + 3.569600000000000e-01 + 3.252900000000000e-01 + 2.595500000000000e-01 + 1.866400000000000e-01 + 1.381300000000000e-01 + 1.356000000000000e-01 + 1.775400000000000e-01 + 2.367200000000000e-01 + 2.717900000000000e-01 + 2.479900000000000e-01 + 1.556700000000000e-01 + 1.645800000000000e-02 +-1.261800000000000e-01 +-2.262900000000000e-01 +-2.544700000000000e-01 +-2.076900000000000e-01 +-1.066700000000000e-01 + 1.583400000000000e-02 + 1.293100000000000e-01 + 2.155100000000000e-01 + 2.707800000000000e-01 + 3.009800000000000e-01 + 3.128600000000000e-01 + 3.073200000000000e-01 + 2.784400000000000e-01 + 2.189700000000000e-01 + 1.286700000000000e-01 + 1.975200000000000e-02 +-8.472000000000000e-02 +-1.594500000000000e-01 +-1.879800000000000e-01 +-1.701700000000000e-01 +-1.221500000000000e-01 +-6.945500000000000e-02 +-3.694000000000000e-02 +-4.001600000000000e-02 +-7.989000000000000e-02 +-1.436800000000000e-01 +-2.092400000000000e-01 +-2.539900000000000e-01 +-2.652000000000000e-01 +-2.474600000000000e-01 +-2.219000000000000e-01 +-2.153500000000000e-01 +-2.434400000000000e-01 +-2.975600000000000e-01 +-3.450800000000000e-01 +-3.448600000000000e-01 +-2.700200000000000e-01 +-1.239700000000000e-01 + 6.030500000000000e-02 + 2.370800000000000e-01 + 3.696900000000000e-01 + 4.438800000000000e-01 + 4.666100000000000e-01 + 4.549000000000000e-01 + 4.247200000000000e-01 + 3.868600000000000e-01 + 3.485700000000000e-01 + 3.147300000000000e-01 + 2.842100000000000e-01 + 2.450200000000000e-01 + 1.755900000000000e-01 + 5.664600000000000e-02 +-1.118800000000000e-01 +-3.010800000000000e-01 +-4.603500000000000e-01 +-5.401500000000000e-01 +-5.164000000000000e-01 +-4.009300000000000e-01 +-2.312400000000000e-01 +-4.803000000000000e-02 + 1.234200000000000e-01 + 2.759500000000000e-01 + 4.084900000000000e-01 + 5.114900000000000e-01 + 5.629600000000000e-01 + 5.383700000000000e-01 + 4.265400000000000e-01 + 2.394300000000000e-01 + 9.095700000000000e-03 +-2.248200000000000e-01 +-4.282000000000000e-01 +-5.788700000000000e-01 +-6.661600000000000e-01 +-6.877700000000000e-01 +-6.480900000000001e-01 +-5.577800000000001e-01 +-4.322200000000000e-01 +-2.876400000000000e-01 +-1.375300000000000e-01 + 7.465800000000000e-03 + 1.357700000000000e-01 + 2.319100000000000e-01 + 2.795600000000000e-01 + 2.708300000000000e-01 + 2.156000000000000e-01 + 1.419000000000000e-01 + 8.432400000000000e-02 + 6.664700000000000e-02 + 9.060400000000000e-02 + 1.389200000000000e-01 + 1.900600000000000e-01 + 2.330500000000000e-01 + 2.711900000000000e-01 + 3.125800000000000e-01 + 3.567000000000000e-01 + 3.891500000000000e-01 + 3.896800000000000e-01 + 3.471600000000000e-01 + 2.694500000000000e-01 + 1.800300000000000e-01 + 1.042000000000000e-01 + 5.512500000000000e-02 + 2.905500000000000e-02 + 1.099100000000000e-02 +-1.583600000000000e-02 +-6.407100000000000e-02 +-1.418300000000000e-01 +-2.537300000000000e-01 +-3.988800000000000e-01 +-5.660900000000000e-01 +-7.315600000000000e-01 +-8.634300000000000e-01 +-9.318300000000000e-01 +-9.178100000000000e-01 +-8.155600000000000e-01 +-6.288500000000000e-01 +-3.685500000000000e-01 +-5.619000000000000e-02 + 2.692900000000000e-01 + 5.519800000000000e-01 + 7.346200000000001e-01 + 7.853000000000000e-01 + 7.185600000000000e-01 + 5.931200000000000e-01 + 4.824200000000000e-01 + 4.342700000000000e-01 + 4.457000000000000e-01 + 4.704300000000000e-01 + 4.533900000000000e-01 + 3.677600000000000e-01 + 2.289300000000000e-01 + 7.825699999999999e-02 +-4.772900000000000e-02 +-1.378200000000000e-01 +-2.023900000000000e-01 +-2.527800000000000e-01 +-2.846800000000000e-01 +-2.810200000000000e-01 +-2.312100000000000e-01 +-1.482700000000000e-01 +-6.664000000000000e-02 +-2.064900000000000e-02 +-2.111500000000000e-02 +-4.984400000000000e-02 +-7.703000000000000e-02 +-8.676300000000001e-02 +-8.885700000000001e-02 +-1.070500000000000e-01 +-1.543900000000000e-01 +-2.183000000000000e-01 +-2.694300000000000e-01 +-2.875400000000000e-01 +-2.811800000000000e-01 +-2.817600000000000e-01 +-3.140600000000000e-01 +-3.665800000000000e-01 +-3.884100000000000e-01 +-3.201100000000000e-01 +-1.384200000000000e-01 + 1.181300000000000e-01 + 3.640500000000000e-01 + 5.144100000000000e-01 + 5.331700000000000e-01 + 4.499600000000000e-01 + 3.357800000000000e-01 + 2.567000000000000e-01 + 2.383300000000000e-01 + 2.628800000000000e-01 + 2.950500000000000e-01 + 3.131200000000000e-01 + 3.213300000000000e-01 + 3.372800000000000e-01 + 3.685700000000000e-01 + 3.997700000000000e-01 + 4.005200000000000e-01 + 3.472100000000000e-01 + 2.398500000000000e-01 + 1.004700000000000e-01 +-4.499800000000000e-02 +-1.860500000000000e-01 +-3.318800000000000e-01 +-4.969400000000000e-01 +-6.789100000000000e-01 +-8.469500000000000e-01 +-9.508200000000000e-01 +-9.462000000000000e-01 +-8.202500000000000e-01 +-6.006899999999999e-01 +-3.432700000000000e-01 +-1.059700000000000e-01 + 7.400900000000001e-02 + 1.881400000000000e-01 + 2.481600000000000e-01 + 2.703100000000000e-01 + 2.642300000000000e-01 + 2.329000000000000e-01 + 1.807400000000000e-01 + 1.211800000000000e-01 + 7.609000000000000e-02 + 6.646100000000001e-02 + 1.005300000000000e-01 + 1.681600000000000e-01 + 2.457100000000000e-01 + 3.085700000000000e-01 + 3.431100000000000e-01 + 3.507000000000000e-01 + 3.419800000000000e-01 + 3.266100000000000e-01 + 3.062400000000000e-01 + 2.754800000000000e-01 + 2.295000000000000e-01 + 1.715400000000000e-01 + 1.140300000000000e-01 + 7.174500000000000e-02 + 5.146500000000000e-02 + 4.556200000000000e-02 + 3.444000000000000e-02 +-3.081300000000000e-03 +-7.751900000000000e-02 +-1.818300000000000e-01 +-2.937500000000000e-01 +-3.858300000000000e-01 +-4.378100000000000e-01 +-4.450600000000000e-01 +-4.195000000000000e-01 +-3.829200000000000e-01 +-3.561400000000000e-01 +-3.485100000000000e-01 +-3.527100000000000e-01 +-3.475200000000000e-01 +-3.081600000000000e-01 +-2.200500000000000e-01 +-8.918800000000000e-02 + 5.675200000000000e-02 + 1.785700000000000e-01 + 2.427400000000000e-01 + 2.372300000000000e-01 + 1.775100000000000e-01 + 9.981400000000000e-02 + 4.513100000000000e-02 + 4.244900000000000e-02 + 9.882100000000001e-02 + 1.993700000000000e-01 + 3.148800000000000e-01 + 4.121300000000000e-01 + 4.631000000000000e-01 + 4.518100000000000e-01 + 3.790100000000000e-01 + 2.639000000000000e-01 + 1.407600000000000e-01 + 4.890400000000000e-02 + 1.794800000000000e-02 + 5.445800000000000e-02 + 1.374800000000000e-01 + 2.266600000000000e-01 + 2.798100000000000e-01 + 2.708100000000000e-01 + 1.987000000000000e-01 + 8.384500000000000e-02 +-4.504500000000000e-02 +-1.648200000000000e-01 +-2.655400000000000e-01 +-3.497700000000000e-01 +-4.264100000000000e-01 +-5.038600000000000e-01 +-5.851100000000000e-01 +-6.651000000000000e-01 +-7.299200000000000e-01 +-7.586100000000000e-01 +-7.292900000000000e-01 +-6.293100000000000e-01 +-4.648900000000000e-01 +-2.635800000000000e-01 +-6.506700000000000e-02 + 9.671100000000001e-02 + 2.103200000000000e-01 + 2.911700000000000e-01 + 3.693400000000000e-01 + 4.678800000000000e-01 + 5.856500000000000e-01 + 6.962300000000000e-01 + 7.638700000000000e-01 + 7.652000000000000e-01 + 7.020900000000000e-01 + 5.975800000000000e-01 + 4.793300000000000e-01 + 3.635900000000000e-01 + 2.510700000000000e-01 + 1.360700000000000e-01 + 1.976600000000000e-02 +-8.409000000000000e-02 +-1.559100000000000e-01 +-1.839200000000000e-01 +-1.737500000000000e-01 +-1.463800000000000e-01 +-1.262700000000000e-01 +-1.288100000000000e-01 +-1.557200000000000e-01 +-2.001800000000000e-01 +-2.555700000000000e-01 +-3.203400000000000e-01 +-3.958000000000000e-01 +-4.804100000000000e-01 +-5.665000000000000e-01 +-6.420200000000000e-01 +-6.944900000000001e-01 +-7.126500000000000e-01 +-6.843300000000000e-01 +-5.948300000000000e-01 +-4.309800000000000e-01 +-1.915700000000000e-01 + 1.025600000000000e-01 + 4.084600000000000e-01 + 6.748900000000000e-01 + 8.638200000000000e-01 + 9.655600000000000e-01 + 9.968399999999999e-01 + 9.827200000000000e-01 + 9.354700000000000e-01 + 8.463400000000000e-01 + 6.968500000000000e-01 + 4.813100000000000e-01 + 2.232300000000000e-01 +-2.758800000000000e-02 +-2.168700000000000e-01 +-3.126600000000000e-01 +-3.200000000000000e-01 +-2.752700000000000e-01 +-2.259600000000000e-01 +-2.092900000000000e-01 +-2.412700000000000e-01 +-3.181900000000000e-01 +-4.243700000000000e-01 +-5.390700000000000e-01 +-6.401300000000000e-01 +-7.070200000000000e-01 +-7.262200000000000e-01 +-6.971000000000001e-01 +-6.328200000000000e-01 +-5.528300000000000e-01 +-4.698000000000000e-01 +-3.803600000000000e-01 +-2.674700000000000e-01 +-1.145200000000000e-01 + 7.840800000000001e-02 + 2.887200000000000e-01 + 4.814300000000000e-01 + 6.291900000000000e-01 + 7.279600000000001e-01 + 7.970300000000000e-01 + 8.629100000000000e-01 + 9.384100000000000e-01 + 1.011500000000000e+00 + 1.051700000000000e+00 + 1.027800000000000e+00 + 9.263200000000000e-01 + 7.563299999999999e-01 + 5.416700000000000e-01 + 3.066100000000000e-01 + 6.669799999999999e-02 +-1.699200000000000e-01 +-3.941000000000000e-01 +-5.890700000000000e-01 +-7.325700000000001e-01 +-8.073399999999999e-01 +-8.126000000000000e-01 +-7.680399999999999e-01 +-7.063900000000000e-01 +-6.588000000000001e-01 +-6.416500000000001e-01 +-6.524100000000000e-01 +-6.759100000000000e-01 +-6.956400000000000e-01 +-7.020400000000000e-01 +-6.925400000000000e-01 +-6.650100000000000e-01 +-6.110400000000000e-01 +-5.160600000000000e-01 +-3.678800000000000e-01 +-1.683500000000000e-01 + 6.091700000000000e-02 + 2.847600000000000e-01 + 4.707200000000000e-01 + 6.056300000000000e-01 + 7.012600000000000e-01 + 7.841500000000000e-01 + 8.754500000000000e-01 + 9.738400000000000e-01 + 1.053600000000000e+00 + 1.079900000000000e+00 + 1.031800000000000e+00 + 9.178700000000000e-01 + 7.740500000000000e-01 + 6.442300000000000e-01 + 5.563700000000000e-01 + 5.083500000000000e-01 + 4.714900000000000e-01 + 4.083300000000000e-01 + 2.932000000000000e-01 + 1.243200000000000e-01 +-7.743300000000000e-02 +-2.799300000000000e-01 +-4.540000000000000e-01 +-5.841800000000000e-01 +-6.731200000000001e-01 +-7.396100000000000e-01 +-8.111200000000000e-01 +-9.122500000000000e-01 +-1.051900000000000e+00 +-1.214600000000000e+00 +-1.360700000000000e+00 +-1.439500000000000e+00 +-1.409100000000000e+00 +-1.254400000000000e+00 +-9.937400000000000e-01 +-6.697200000000000e-01 +-3.299600000000000e-01 +-8.901700000000000e-03 + 2.797200000000000e-01 + 5.373599999999999e-01 + 7.679600000000000e-01 + 9.675500000000000e-01 + 1.122500000000000e+00 + 1.216300000000000e+00 + 1.238700000000000e+00 + 1.191500000000000e+00 + 1.087600000000000e+00 + 9.458900000000000e-01 + 7.856700000000000e-01 + 6.233800000000000e-01 + 4.718600000000000e-01 + 3.398900000000000e-01 + 2.306700000000000e-01 + 1.398700000000000e-01 + 5.547500000000000e-02 +-3.864200000000000e-02 +-1.557700000000000e-01 +-2.990200000000000e-01 +-4.573400000000000e-01 +-6.075300000000000e-01 +-7.218500000000000e-01 +-7.776800000000000e-01 +-7.649100000000000e-01 +-6.875000000000000e-01 +-5.591900000000000e-01 +-3.964300000000000e-01 +-2.130700000000000e-01 +-1.965000000000000e-02 + 1.729100000000000e-01 + 3.489000000000000e-01 + 4.868600000000000e-01 + 5.638300000000001e-01 + 5.629400000000000e-01 + 4.800500000000000e-01 + 3.260800000000000e-01 + 1.242400000000000e-01 +-9.522000000000000e-02 +-3.003500000000000e-01 +-4.620000000000000e-01 +-5.586600000000000e-01 +-5.822200000000000e-01 +-5.424400000000000e-01 +-4.657400000000000e-01 +-3.854500000000000e-01 +-3.263000000000000e-01 +-2.914700000000000e-01 +-2.616300000000000e-01 +-2.084200000000000e-01 +-1.151800000000000e-01 + 9.114199999999999e-03 + 1.332500000000000e-01 + 2.237000000000000e-01 + 2.677200000000000e-01 + 2.828400000000000e-01 + 3.047900000000000e-01 + 3.614000000000000e-01 + 4.507800000000000e-01 + 5.402600000000000e-01 + 5.880200000000000e-01 + 5.729700000000000e-01 + 5.116500000000000e-01 + 4.495300000000000e-01 + 4.314500000000000e-01 + 4.706900000000000e-01 + 5.368400000000000e-01 + 5.705200000000000e-01 + 5.151400000000000e-01 + 3.462300000000000e-01 + 8.216900000000001e-02 +-2.268900000000000e-01 +-5.218300000000000e-01 +-7.547400000000000e-01 +-8.978699999999999e-01 +-9.423000000000000e-01 +-8.936700000000000e-01 +-7.705900000000000e-01 +-6.051600000000000e-01 +-4.400800000000000e-01 +-3.181100000000000e-01 +-2.659500000000000e-01 +-2.808400000000000e-01 +-3.292100000000000e-01 +-3.604900000000000e-01 +-3.302300000000000e-01 +-2.204900000000000e-01 +-4.706200000000000e-02 + 1.496600000000000e-01 + 3.238200000000000e-01 + 4.423900000000000e-01 + 4.936300000000000e-01 + 4.843000000000000e-01 + 4.305500000000000e-01 + 3.503000000000000e-01 + 2.611800000000000e-01 + 1.825300000000000e-01 + 1.360200000000000e-01 + 1.408400000000000e-01 + 2.047500000000000e-01 + 3.168500000000000e-01 + 4.487300000000000e-01 + 5.651400000000000e-01 + 6.389000000000000e-01 + 6.606200000000000e-01 + 6.370200000000000e-01 + 5.794700000000000e-01 + 4.914000000000000e-01 + 3.642100000000000e-01 + 1.855100000000000e-01 +-4.632200000000000e-02 +-3.118700000000000e-01 +-5.734600000000000e-01 +-7.902700000000000e-01 +-9.366200000000000e-01 +-1.012000000000000e+00 +-1.036800000000000e+00 +-1.037600000000000e+00 +-1.031600000000000e+00 +-1.019500000000000e+00 +-9.875600000000000e-01 +-9.174300000000000e-01 +-7.938200000000000e-01 +-6.091500000000000e-01 +-3.650700000000000e-01 +-7.352599999999999e-02 + 2.424600000000000e-01 + 5.508800000000000e-01 + 8.184000000000000e-01 + 1.021500000000000e+00 + 1.155100000000000e+00 + 1.230800000000000e+00 + 1.265800000000000e+00 + 1.267200000000000e+00 + 1.224600000000000e+00 + 1.116600000000000e+00 + 9.277400000000000e-01 + 6.652700000000000e-01 + 3.619900000000000e-01 + 6.357599999999999e-02 +-1.919900000000000e-01 +-3.887800000000000e-01 +-5.321200000000000e-01 +-6.347699999999999e-01 +-7.014000000000000e-01 +-7.230799999999999e-01 +-6.853500000000000e-01 +-5.830100000000000e-01 +-4.304100000000000e-01 +-2.599100000000000e-01 +-1.101100000000000e-01 +-1.180000000000000e-02 + 2.068000000000000e-02 +-1.000000000000000e-02 +-8.843600000000000e-02 +-1.914300000000000e-01 +-2.920900000000000e-01 +-3.646100000000000e-01 +-3.909700000000000e-01 +-3.677500000000000e-01 +-3.081800000000000e-01 +-2.364300000000000e-01 +-1.758400000000000e-01 +-1.378000000000000e-01 +-1.182400000000000e-01 +-1.032000000000000e-01 +-7.904600000000001e-02 +-3.954400000000000e-02 + 1.393600000000000e-02 + 7.742400000000001e-02 + 1.488200000000000e-01 + 2.280100000000000e-01 + 3.137300000000000e-01 + 4.016200000000000e-01 + 4.861600000000000e-01 + 5.643100000000000e-01 + 6.359300000000000e-01 + 6.983500000000000e-01 + 7.394400000000000e-01 + 7.369100000000000e-01 + 6.688800000000000e-01 + 5.306999999999999e-01 + 3.455400000000000e-01 + 1.576400000000000e-01 + 8.963600000000000e-03 +-8.650900000000000e-02 +-1.518900000000000e-01 +-2.312200000000000e-01 +-3.573500000000000e-01 +-5.260500000000000e-01 +-6.953400000000000e-01 +-8.111400000000000e-01 +-8.411500000000000e-01 +-7.926000000000000e-01 +-7.018100000000000e-01 +-6.047500000000000e-01 +-5.115700000000000e-01 +-4.043500000000000e-01 +-2.583400000000000e-01 +-6.878800000000000e-02 + 1.384500000000000e-01 + 3.207900000000000e-01 + 4.460600000000000e-01 + 5.116800000000000e-01 + 5.414500000000000e-01 + 5.637300000000000e-01 + 5.887100000000000e-01 + 6.021100000000000e-01 + 5.783199999999999e-01 + 5.010300000000000e-01 + 3.744900000000000e-01 + 2.180500000000000e-01 + 5.084400000000000e-02 +-1.192200000000000e-01 +-2.932400000000000e-01 +-4.693000000000000e-01 +-6.327800000000000e-01 +-7.581800000000000e-01 +-8.214800000000000e-01 +-8.123300000000000e-01 +-7.363700000000000e-01 +-6.066000000000000e-01 +-4.329800000000000e-01 +-2.200500000000000e-01 + 2.521000000000000e-02 + 2.837100000000000e-01 + 5.233400000000000e-01 + 7.105000000000000e-01 + 8.260400000000000e-01 + 8.729300000000000e-01 + 8.686000000000000e-01 + 8.277700000000000e-01 + 7.496200000000000e-01 + 6.204499999999999e-01 + 4.303500000000000e-01 + 1.905000000000000e-01 +-6.313199999999999e-02 +-2.841100000000000e-01 +-4.377800000000000e-01 +-5.156200000000000e-01 +-5.321300000000000e-01 +-5.083900000000000e-01 +-4.561600000000000e-01 +-3.748400000000000e-01 +-2.622000000000000e-01 +-1.281900000000000e-01 + 9.940600000000000e-04 + 9.353300000000001e-02 + 1.297900000000000e-01 + 1.141200000000000e-01 + 7.181000000000000e-02 + 3.344500000000000e-02 + 1.747800000000000e-02 + 2.223900000000000e-02 + 3.060600000000000e-02 + 2.187600000000000e-02 +-1.806300000000000e-02 +-9.336600000000000e-02 +-2.002500000000000e-01 +-3.294100000000000e-01 +-4.658100000000000e-01 +-5.873000000000000e-01 +-6.663400000000000e-01 +-6.769200000000000e-01 +-6.040300000000000e-01 +-4.498500000000000e-01 +-2.324700000000000e-01 + 2.183800000000000e-02 + 2.874200000000000e-01 + 5.432800000000000e-01 + 7.710500000000000e-01 + 9.506599999999999e-01 + 1.059400000000000e+00 + 1.077000000000000e+00 + 9.953300000000000e-01 + 8.246700000000000e-01 + 5.941300000000000e-01 + 3.432800000000000e-01 + 1.099800000000000e-01 +-8.009300000000000e-02 +-2.177500000000000e-01 +-3.079100000000000e-01 +-3.627000000000000e-01 +-3.936800000000000e-01 +-4.063500000000000e-01 +-3.989100000000000e-01 +-3.657600000000000e-01 +-3.041500000000000e-01 +-2.208700000000000e-01 +-1.345800000000000e-01 +-7.104800000000000e-02 +-5.249600000000000e-02 +-8.613400000000000e-02 +-1.589900000000000e-01 +-2.430000000000000e-01 +-3.081500000000000e-01 +-3.363200000000000e-01 +-3.273500000000000e-01 +-2.945000000000000e-01 +-2.533500000000000e-01 +-2.123600000000000e-01 +-1.712400000000000e-01 +-1.263500000000000e-01 +-7.673199999999999e-02 +-2.433300000000000e-02 + 3.198500000000000e-02 + 1.020600000000000e-01 + 2.019000000000000e-01 + 3.411500000000000e-01 + 5.082900000000000e-01 + 6.656700000000000e-01 + 7.617600000000000e-01 + 7.560200000000000e-01 + 6.415200000000000e-01 + 4.503500000000000e-01 + 2.373700000000000e-01 + 5.264700000000000e-02 +-7.996100000000000e-02 +-1.656000000000000e-01 +-2.239700000000000e-01 +-2.706200000000000e-01 +-3.081700000000000e-01 +-3.315700000000000e-01 +-3.396300000000000e-01 +-3.404800000000000e-01 +-3.456400000000000e-01 +-3.582600000000000e-01 +-3.673000000000000e-01 +-3.542400000000000e-01 +-3.076400000000000e-01 +-2.329900000000000e-01 +-1.486000000000000e-01 +-7.016000000000000e-02 + 2.959500000000000e-03 + 8.696700000000000e-02 + 1.978200000000000e-01 + 3.329200000000000e-01 + 4.663100000000000e-01 + 5.631500000000000e-01 + 6.030000000000000e-01 + 5.932700000000000e-01 + 5.611500000000000e-01 + 5.294900000000000e-01 + 4.957200000000000e-01 + 4.310800000000000e-01 + 3.019300000000000e-01 + 9.726799999999999e-02 +-1.584700000000000e-01 +-4.165300000000000e-01 +-6.298100000000000e-01 +-7.740200000000000e-01 +-8.497700000000000e-01 +-8.680900000000000e-01 +-8.346400000000000e-01 +-7.470500000000000e-01 +-6.065700000000001e-01 +-4.309800000000000e-01 +-2.544200000000000e-01 +-1.112400000000000e-01 +-1.567800000000000e-02 + 4.554900000000000e-02 + 1.008800000000000e-01 + 1.710700000000000e-01 + 2.541800000000000e-01 + 3.303300000000000e-01 + 3.817200000000000e-01 + 4.106000000000000e-01 + 4.393500000000000e-01 + 4.919700000000000e-01 + 5.716500000000000e-01 + 6.531700000000000e-01 + 6.969800000000000e-01 + 6.750000000000000e-01 + 5.886600000000000e-01 + 4.661700000000000e-01 + 3.416900000000000e-01 + 2.326000000000000e-01 + 1.311700000000000e-01 + 1.555700000000000e-02 +-1.294100000000000e-01 +-2.970700000000000e-01 +-4.592600000000000e-01 +-5.807800000000000e-01 +-6.374800000000000e-01 +-6.273900000000000e-01 +-5.698299999999999e-01 +-4.952200000000000e-01 +-4.313300000000000e-01 +-3.923200000000000e-01 +-3.741500000000000e-01 +-3.581200000000000e-01 +-3.213300000000000e-01 +-2.499800000000000e-01 +-1.487800000000000e-01 +-4.033400000000000e-02 + 4.651700000000000e-02 + 9.313700000000000e-02 + 1.021700000000000e-01 + 9.590200000000000e-02 + 1.030000000000000e-01 + 1.427500000000000e-01 + 2.168000000000000e-01 + 3.121700000000000e-01 + 4.101400000000000e-01 + 4.928800000000000e-01 + 5.435100000000000e-01 + 5.438499999999999e-01 + 4.771700000000000e-01 + 3.386700000000000e-01 + 1.470900000000000e-01 +-5.382200000000000e-02 +-2.103000000000000e-01 +-2.837600000000000e-01 +-2.705000000000000e-01 +-2.021100000000000e-01 +-1.255000000000000e-01 +-7.612200000000000e-02 +-6.201900000000000e-02 +-6.787899999999999e-02 +-7.289800000000000e-02 +-6.711600000000000e-02 +-5.435000000000000e-02 +-4.241500000000000e-02 +-3.186800000000000e-02 +-1.442400000000000e-02 + 1.773300000000000e-02 + 6.102900000000000e-02 + 9.897700000000000e-02 + 1.126400000000000e-01 + 9.483300000000000e-02 + 5.604000000000000e-02 + 1.699700000000000e-02 +-6.147400000000000e-03 +-1.201500000000000e-02 +-1.189700000000000e-02 +-1.819000000000000e-02 +-3.378000000000000e-02 +-5.108700000000000e-02 +-6.056200000000000e-02 +-6.042100000000000e-02 +-5.910000000000000e-02 +-6.899500000000000e-02 +-9.770400000000000e-02 +-1.442700000000000e-01 +-2.022800000000000e-01 +-2.648400000000000e-01 +-3.253000000000000e-01 +-3.729700000000000e-01 +-3.897800000000000e-01 +-3.545900000000000e-01 +-2.553800000000000e-01 +-1.009900000000000e-01 + 7.810000000000000e-02 + 2.434200000000000e-01 + 3.688000000000000e-01 + 4.531300000000000e-01 + 5.160500000000000e-01 + 5.794899999999999e-01 + 6.481800000000000e-01 + 7.032600000000000e-01 + 7.128100000000001e-01 + 6.512200000000000e-01 + 5.137000000000000e-01 + 3.173700000000000e-01 + 9.087700000000000e-02 +-1.382700000000000e-01 +-3.501000000000000e-01 +-5.309300000000000e-01 +-6.693000000000000e-01 +-7.549600000000000e-01 +-7.820500000000000e-01 +-7.527700000000001e-01 +-6.776000000000000e-01 +-5.712500000000000e-01 +-4.478500000000000e-01 +-3.186900000000000e-01 +-1.929200000000000e-01 +-7.798200000000000e-02 + 2.276100000000000e-02 + 1.139700000000000e-01 + 2.089400000000000e-01 + 3.230900000000000e-01 + 4.620600000000000e-01 + 6.118300000000000e-01 + 7.391000000000000e-01 + 8.041500000000000e-01 + 7.796500000000000e-01 + 6.646600000000000e-01 + 4.852800000000000e-01 + 2.823000000000000e-01 + 9.368600000000001e-02 +-5.818200000000000e-02 +-1.691100000000000e-01 +-2.472200000000000e-01 +-3.046100000000000e-01 +-3.517500000000000e-01 +-3.958700000000000e-01 +-4.411700000000000e-01 +-4.883400000000000e-01 +-5.329700000000001e-01 +-5.646400000000000e-01 +-5.687700000000000e-01 +-5.312900000000000e-01 +-4.443700000000000e-01 +-3.106900000000000e-01 +-1.441000000000000e-01 + 3.332300000000000e-02 + 1.971500000000000e-01 + 3.274200000000000e-01 + 4.142300000000000e-01 + 4.598700000000000e-01 + 4.762700000000000e-01 + 4.786700000000000e-01 + 4.782100000000000e-01 + 4.772700000000000e-01 + 4.695400000000000e-01 + 4.441300000000000e-01 + 3.904800000000000e-01 + 3.015100000000000e-01 + 1.741800000000000e-01 + 9.800900000000000e-03 +-1.839000000000000e-01 +-3.892800000000000e-01 +-5.770000000000000e-01 +-7.098300000000000e-01 +-7.527900000000000e-01 +-6.860600000000000e-01 +-5.142000000000000e-01 +-2.668900000000000e-01 + 9.314500000000000e-03 + 2.639500000000000e-01 + 4.550200000000000e-01 + 5.568800000000000e-01 + 5.633100000000000e-01 + 4.867100000000000e-01 + 3.542300000000000e-01 + 2.005900000000000e-01 + 5.831300000000000e-02 +-5.206300000000000e-02 +-1.271200000000000e-01 +-1.777700000000000e-01 +-2.194900000000000e-01 +-2.612400000000000e-01 +-3.000000000000000e-01 +-3.242700000000000e-01 +-3.236600000000000e-01 +-2.973600000000000e-01 +-2.551500000000000e-01 +-2.103400000000000e-01 +-1.699900000000000e-01 +-1.299600000000000e-01 +-7.864599999999999e-02 +-6.864400000000000e-03 + 8.326200000000000e-02 + 1.769600000000000e-01 + 2.542800000000000e-01 + 3.016400000000000e-01 + 3.195800000000000e-01 + 3.218100000000000e-01 + 3.258800000000000e-01 + 3.415400000000000e-01 + 3.641700000000000e-01 + 3.775300000000000e-01 + 3.640300000000000e-01 + 3.161700000000000e-01 + 2.415400000000000e-01 + 1.579200000000000e-01 + 8.126600000000000e-02 + 1.435500000000000e-02 +-5.574500000000000e-02 +-1.487100000000000e-01 +-2.752100000000000e-01 +-4.244300000000000e-01 +-5.638100000000000e-01 +-6.526400000000000e-01 +-6.623500000000000e-01 +-5.915600000000000e-01 +-4.667500000000000e-01 +-3.285300000000000e-01 +-2.118400000000000e-01 +-1.318200000000000e-01 +-8.230000000000000e-02 +-4.536900000000000e-02 +-4.341400000000000e-03 + 4.820000000000000e-02 + 1.103500000000000e-01 + 1.760500000000000e-01 + 2.402700000000000e-01 + 3.007400000000000e-01 + 3.568500000000000e-01 + 4.080500000000000e-01 + 4.534400000000000e-01 + 4.917200000000000e-01 + 5.200600000000000e-01 + 5.319400000000000e-01 + 5.162099999999999e-01 + 4.600200000000000e-01 + 3.555600000000000e-01 + 2.070600000000000e-01 + 3.307600000000000e-02 +-1.382800000000000e-01 +-2.792900000000000e-01 +-3.723500000000000e-01 +-4.148200000000000e-01 +-4.176900000000000e-01 +-4.001400000000000e-01 +-3.830200000000000e-01 +-3.826700000000000e-01 +-4.054400000000000e-01 +-4.434200000000000e-01 +-4.743200000000000e-01 +-4.683000000000000e-01 +-4.015100000000000e-01 +-2.703900000000000e-01 +-9.810600000000000e-02 + 7.287000000000000e-02 + 1.996200000000000e-01 + 2.586000000000000e-01 + 2.544900000000000e-01 + 2.132200000000000e-01 + 1.649000000000000e-01 + 1.287600000000000e-01 + 1.099100000000000e-01 + 1.072100000000000e-01 + 1.232900000000000e-01 + 1.662100000000000e-01 + 2.405200000000000e-01 + 3.354200000000000e-01 + 4.218900000000000e-01 + 4.640800000000000e-01 + 4.395700000000000e-01 + 3.543500000000000e-01 + 2.417000000000000e-01 + 1.442100000000000e-01 + 9.064300000000000e-02 + 8.196000000000001e-02 + 9.476700000000000e-02 + 9.805500000000000e-02 + 7.136099999999999e-02 + 1.327600000000000e-02 +-6.271300000000000e-02 +-1.394900000000000e-01 +-2.061700000000000e-01 +-2.613500000000000e-01 +-3.104100000000000e-01 +-3.608200000000000e-01 +-4.186100000000000e-01 +-4.863700000000000e-01 +-5.617400000000000e-01 +-6.365000000000000e-01 +-6.974700000000000e-01 +-7.304700000000000e-01 +-7.253300000000000e-01 +-6.784300000000000e-01 +-5.899200000000000e-01 +-4.578100000000000e-01 +-2.749000000000000e-01 +-3.391300000000000e-02 + 2.600800000000000e-01 + 5.783600000000000e-01 + 8.689400000000000e-01 + 1.073100000000000e+00 + 1.150900000000000e+00 + 1.101500000000000e+00 + 9.636300000000000e-01 + 7.953800000000000e-01 + 6.449600000000000e-01 + 5.294200000000000e-01 + 4.339500000000000e-01 + 3.299200000000000e-01 + 1.984200000000000e-01 + 4.406400000000000e-02 +-1.081100000000000e-01 +-2.279900000000000e-01 +-2.967000000000000e-01 +-3.144300000000000e-01 +-2.975900000000000e-01 +-2.701200000000000e-01 +-2.546400000000000e-01 +-2.663600000000000e-01 +-3.089600000000000e-01 +-3.721100000000000e-01 +-4.323900000000000e-01 +-4.603100000000000e-01 +-4.334300000000000e-01 +-3.495600000000000e-01 +-2.313600000000000e-01 +-1.174900000000000e-01 +-4.392000000000000e-02 +-2.661200000000000e-02 +-5.681400000000000e-02 +-1.112100000000000e-01 +-1.686500000000000e-01 +-2.205300000000000e-01 +-2.676300000000000e-01 +-3.079900000000000e-01 +-3.280900000000000e-01 +-3.072700000000000e-01 +-2.335300000000000e-01 +-1.180400000000000e-01 + 5.733900000000000e-03 + 1.007600000000000e-01 + 1.514700000000000e-01 + 1.761200000000000e-01 + 2.156800000000000e-01 + 3.053500000000000e-01 + 4.481700000000000e-01 + 6.100100000000001e-01 + 7.397700000000000e-01 + 8.006500000000000e-01 + 7.905700000000000e-01 + 7.380300000000000e-01 + 6.782300000000000e-01 + 6.281600000000001e-01 + 5.785300000000000e-01 + 5.065200000000000e-01 + 3.967700000000000e-01 + 2.529000000000000e-01 + 9.091700000000000e-02 +-7.802000000000001e-02 +-2.588700000000000e-01 +-4.660200000000000e-01 +-7.023100000000000e-01 +-9.408300000000001e-01 +-1.126800000000000e+00 +-1.202600000000000e+00 +-1.142000000000000e+00 +-9.687400000000000e-01 +-7.476699999999999e-01 +-5.499600000000000e-01 +-4.158400000000000e-01 +-3.373300000000000e-01 +-2.709500000000000e-01 +-1.702200000000000e-01 +-1.590500000000000e-02 + 1.745900000000000e-01 + 3.620400000000000e-01 + 5.112700000000000e-01 + 6.096000000000000e-01 + 6.667000000000000e-01 + 6.992000000000000e-01 + 7.136400000000001e-01 + 7.010400000000000e-01 + 6.461200000000000e-01 + 5.431400000000000e-01 + 4.056500000000000e-01 + 2.622700000000000e-01 + 1.415300000000000e-01 + 5.595300000000000e-02 +-3.584800000000000e-03 +-5.984300000000000e-02 +-1.329300000000000e-01 +-2.260300000000000e-01 +-3.213900000000000e-01 +-3.882200000000000e-01 +-3.975300000000000e-01 +-3.361300000000000e-01 +-2.135200000000000e-01 +-5.949600000000000e-02 + 8.583499999999999e-02 + 1.856800000000000e-01 + 2.186900000000000e-01 + 1.851000000000000e-01 + 1.041000000000000e-01 + 3.373800000000000e-03 +-9.422999999999999e-02 +-1.794900000000000e-01 +-2.559200000000000e-01 +-3.296600000000000e-01 +-3.975600000000000e-01 +-4.425700000000000e-01 +-4.412600000000000e-01 +-3.793200000000000e-01 +-2.643300000000000e-01 +-1.256100000000000e-01 +-1.345800000000000e-04 + 8.670100000000000e-02 + 1.322500000000000e-01 + 1.523900000000000e-01 + 1.659600000000000e-01 + 1.806200000000000e-01 + 1.912000000000000e-01 + 1.913700000000000e-01 + 1.880400000000000e-01 + 2.050500000000000e-01 + 2.705000000000000e-01 + 3.955100000000000e-01 + 5.595400000000000e-01 + 7.141600000000000e-01 + 8.039500000000001e-01 + 7.916600000000000e-01 + 6.724300000000000e-01 + 4.700400000000000e-01 + 2.208000000000000e-01 +-4.266900000000000e-02 +-2.984200000000000e-01 +-5.324000000000000e-01 +-7.324800000000000e-01 +-8.858500000000000e-01 +-9.813000000000000e-01 +-1.012800000000000e+00 +-9.802999999999999e-01 +-8.885700000000000e-01 +-7.460800000000000e-01 +-5.667800000000000e-01 +-3.718300000000000e-01 +-1.867300000000000e-01 +-3.212500000000000e-02 + 8.662100000000000e-02 + 1.824500000000000e-01 + 2.773400000000000e-01 + 3.854400000000000e-01 + 5.008200000000000e-01 + 6.000700000000000e-01 + 6.590200000000001e-01 + 6.711100000000000e-01 + 6.525700000000000e-01 + 6.296300000000000e-01 + 6.173500000000000e-01 + 6.071800000000001e-01 + 5.735200000000000e-01 + 4.942600000000000e-01 + 3.684800000000000e-01 + 2.166200000000000e-01 + 6.342000000000000e-02 +-8.133799999999999e-02 +-2.272200000000000e-01 +-3.879200000000000e-01 +-5.592900000000000e-01 +-7.103600000000000e-01 +-7.973600000000000e-01 +-7.920800000000000e-01 +-7.028700000000000e-01 +-5.715700000000000e-01 +-4.476600000000000e-01 +-3.585100000000000e-01 +-2.972100000000000e-01 +-2.351300000000000e-01 +-1.472000000000000e-01 +-2.970500000000000e-02 + 1.019400000000000e-01 + 2.298200000000000e-01 + 3.478900000000000e-01 + 4.608300000000000e-01 + 5.692300000000000e-01 + 6.561399999999999e-01 + 6.893200000000000e-01 + 6.404000000000000e-01 + 5.070100000000000e-01 + 3.201400000000000e-01 + 1.299900000000000e-01 +-2.038900000000000e-02 +-1.152400000000000e-01 +-1.673300000000000e-01 +-2.018900000000000e-01 +-2.368100000000000e-01 +-2.730500000000000e-01 +-2.991800000000000e-01 +-3.030800000000000e-01 +-2.806900000000000e-01 +-2.367800000000000e-01 +-1.807600000000000e-01 +-1.232500000000000e-01 +-7.546200000000000e-02 +-4.831400000000000e-02 +-4.786500000000000e-02 +-6.870700000000000e-02 +-9.218899999999999e-02 +-9.506700000000000e-02 +-6.581099999999999e-02 +-1.690300000000000e-02 + 1.902900000000000e-02 + 1.091500000000000e-02 +-4.412900000000000e-02 +-1.092000000000000e-01 +-1.231800000000000e-01 +-3.708600000000000e-02 + 1.510500000000000e-01 + 3.867700000000000e-01 + 5.834300000000000e-01 + 6.665600000000000e-01 + 6.116400000000000e-01 + 4.530800000000000e-01 + 2.612100000000000e-01 + 1.036000000000000e-01 + 1.470100000000000e-02 +-1.070600000000000e-02 +-1.985700000000000e-03 + 1.026800000000000e-02 + 8.496200000000001e-03 +-1.238900000000000e-02 +-5.451400000000000e-02 +-1.241300000000000e-01 +-2.290800000000000e-01 +-3.687900000000000e-01 +-5.258500000000000e-01 +-6.674700000000000e-01 +-7.579700000000000e-01 +-7.748699999999999e-01 +-7.184300000000000e-01 +-6.085500000000000e-01 +-4.713600000000000e-01 +-3.247700000000000e-01 +-1.723700000000000e-01 +-9.146400000000001e-03 + 1.660900000000000e-01 + 3.415000000000000e-01 + 4.940900000000000e-01 + 6.025500000000000e-01 + 6.625300000000000e-01 + 6.930200000000000e-01 + 7.273800000000000e-01 + 7.926100000000000e-01 + 8.890300000000000e-01 + 9.836400000000000e-01 + 1.022800000000000e+00 + 9.580400000000000e-01 + 7.705000000000000e-01 + 4.803300000000000e-01 + 1.360300000000000e-01 +-2.085700000000000e-01 +-5.158500000000000e-01 +-7.723300000000000e-01 +-9.810600000000000e-01 +-1.146400000000000e+00 +-1.263100000000000e+00 +-1.317100000000000e+00 +-1.295400000000000e+00 +-1.197800000000000e+00 +-1.038100000000000e+00 +-8.371900000000000e-01 +-6.104500000000000e-01 +-3.619600000000000e-01 +-8.965700000000000e-02 + 2.017800000000000e-01 + 4.905500000000000e-01 + 7.393900000000000e-01 + 9.102900000000000e-01 + 9.836700000000000e-01 + 9.691500000000000e-01 + 9.003600000000000e-01 + 8.166700000000000e-01 + 7.437500000000000e-01 + 6.850800000000000e-01 + 6.281800000000000e-01 + 5.588100000000000e-01 + 4.718500000000000e-01 + 3.712200000000000e-01 + 2.616400000000000e-01 + 1.412100000000000e-01 + 2.613600000000000e-03 +-1.574100000000000e-01 +-3.292400000000000e-01 +-4.909500000000000e-01 +-6.196100000000000e-01 +-7.046800000000000e-01 +-7.521000000000000e-01 +-7.748200000000000e-01 +-7.769000000000000e-01 +-7.449500000000000e-01 +-6.558000000000000e-01 +-4.964600000000000e-01 +-2.814000000000000e-01 +-5.284700000000000e-02 + 1.383000000000000e-01 + 2.586900000000000e-01 + 3.079200000000000e-01 + 3.129200000000000e-01 + 3.065000000000000e-01 + 3.058900000000000e-01 + 3.057300000000000e-01 + 2.879900000000000e-01 + 2.390800000000000e-01 + 1.608800000000000e-01 + 6.963900000000001e-02 +-1.347900000000000e-02 +-7.114200000000000e-02 +-9.293700000000001e-02 +-7.453899999999999e-02 +-1.795700000000000e-02 + 6.569800000000001e-02 + 1.552400000000000e-01 + 2.255300000000000e-01 + 2.600400000000000e-01 + 2.612800000000000e-01 + 2.491100000000000e-01 + 2.452600000000000e-01 + 2.540100000000000e-01 + 2.547200000000000e-01 + 2.141300000000000e-01 + 1.110600000000000e-01 +-4.467900000000000e-02 +-2.145100000000000e-01 +-3.538300000000000e-01 +-4.384000000000000e-01 +-4.746100000000000e-01 +-4.863800000000000e-01 +-4.903100000000000e-01 +-4.797100000000000e-01 +-4.304200000000000e-01 +-3.231900000000000e-01 +-1.636000000000000e-01 + 1.708300000000000e-02 + 1.806100000000000e-01 + 3.045000000000000e-01 + 3.904000000000000e-01 + 4.522300000000000e-01 + 4.955100000000000e-01 + 5.063700000000000e-01 + 4.602800000000000e-01 + 3.435400000000000e-01 + 1.700000000000000e-01 +-2.104900000000000e-02 +-1.845100000000000e-01 +-2.920500000000000e-01 +-3.415400000000000e-01 +-3.487300000000000e-01 +-3.300500000000000e-01 +-2.910200000000000e-01 +-2.281700000000000e-01 +-1.403600000000000e-01 +-3.843700000000000e-02 + 5.506600000000000e-02 + 1.160000000000000e-01 + 1.305500000000000e-01 + 1.013800000000000e-01 + 4.532300000000000e-02 +-1.412800000000000e-02 +-5.494200000000000e-02 +-6.271100000000000e-02 +-3.441300000000000e-02 + 2.070500000000000e-02 + 8.452100000000000e-02 + 1.381200000000000e-01 + 1.713400000000000e-01 + 1.877000000000000e-01 + 2.001500000000000e-01 + 2.196400000000000e-01 + 2.450800000000000e-01 + 2.630500000000000e-01 + 2.584000000000000e-01 + 2.272800000000000e-01 + 1.810100000000000e-01 + 1.360800000000000e-01 + 9.808100000000000e-02 + 5.352400000000000e-02 +-2.151500000000000e-02 +-1.409300000000000e-01 +-2.924500000000000e-01 +-4.402100000000000e-01 +-5.460100000000000e-01 +-5.938600000000001e-01 +-5.986800000000000e-01 +-5.916300000000000e-01 +-5.930500000000000e-01 +-5.938500000000000e-01 +-5.598200000000000e-01 +-4.556300000000000e-01 +-2.704700000000000e-01 +-2.714900000000000e-02 + 2.298100000000000e-01 + 4.561000000000000e-01 + 6.233600000000000e-01 + 7.209200000000000e-01 + 7.490700000000000e-01 + 7.149700000000000e-01 + 6.361300000000000e-01 + 5.452500000000000e-01 + 4.848000000000000e-01 + 4.877400000000000e-01 + 5.539700000000000e-01 + 6.406400000000000e-01 + 6.775300000000000e-01 + 6.017600000000000e-01 + 3.915000000000000e-01 + 7.746100000000000e-02 +-2.741800000000000e-01 +-5.952600000000000e-01 +-8.437100000000000e-01 +-1.011100000000000e+00 +-1.109500000000000e+00 +-1.152100000000000e+00 +-1.140200000000000e+00 +-1.065500000000000e+00 +-9.191300000000000e-01 +-7.024100000000000e-01 +-4.298700000000000e-01 +-1.274700000000000e-01 + 1.717400000000000e-01 + 4.326800000000000e-01 + 6.248000000000000e-01 + 7.304800000000000e-01 + 7.520800000000000e-01 + 7.120300000000001e-01 + 6.431400000000000e-01 + 5.728500000000000e-01 + 5.110200000000000e-01 + 4.496500000000000e-01 + 3.750100000000000e-01 + 2.833100000000000e-01 + 1.882400000000000e-01 + 1.141800000000000e-01 + 7.956600000000000e-02 + 8.234500000000000e-02 + 9.769300000000000e-02 + 8.996800000000001e-02 + 3.115200000000000e-02 +-8.541200000000000e-02 +-2.430600000000000e-01 +-4.109200000000000e-01 +-5.573200000000000e-01 +-6.602900000000000e-01 +-7.113400000000000e-01 +-7.130900000000000e-01 +-6.738300000000000e-01 +-6.017800000000000e-01 +-5.010700000000000e-01 +-3.704300000000000e-01 +-2.054000000000000e-01 +-3.521500000000000e-03 + 2.292300000000000e-01 + 4.740200000000000e-01 + 6.996500000000000e-01 + 8.690099999999999e-01 + 9.498400000000000e-01 + 9.260300000000000e-01 + 8.051600000000000e-01 + 6.184400000000000e-01 + 4.118100000000000e-01 + 2.299800000000000e-01 + 9.920100000000000e-02 + 1.701800000000000e-02 +-4.437700000000000e-02 +-1.205900000000000e-01 +-2.315800000000000e-01 +-3.659600000000000e-01 +-4.844800000000000e-01 +-5.428300000000000e-01 +-5.211500000000000e-01 +-4.411900000000000e-01 +-3.584400000000000e-01 +-3.320000000000000e-01 +-3.900000000000000e-01 +-5.117200000000000e-01 +-6.375999999999999e-01 +-7.001300000000000e-01 +-6.565400000000000e-01 +-5.048400000000000e-01 +-2.773400000000000e-01 +-2.025000000000000e-02 + 2.256300000000000e-01 + 4.331600000000000e-01 + 5.868700000000000e-01 + 6.787900000000000e-01 + 7.087400000000000e-01 + 6.886600000000000e-01 + 6.440300000000000e-01 + 6.067000000000000e-01 + 6.003900000000000e-01 + 6.271099999999999e-01 + 6.640600000000000e-01 + 6.741500000000000e-01 + 6.247400000000000e-01 + 5.040800000000000e-01 + 3.267700000000000e-01 + 1.263600000000000e-01 +-5.987700000000000e-02 +-2.060200000000000e-01 +-3.060600000000000e-01 +-3.733200000000000e-01 +-4.321500000000000e-01 +-5.056600000000000e-01 +-6.046100000000000e-01 +-7.219600000000000e-01 +-8.359500000000000e-01 +-9.201700000000000e-01 +-9.557400000000000e-01 +-9.386400000000000e-01 +-8.782200000000000e-01 +-7.881800000000000e-01 +-6.764100000000000e-01 +-5.405900000000000e-01 +-3.723800000000000e-01 +-1.668100000000000e-01 + 6.976700000000000e-02 + 3.186700000000000e-01 + 5.548500000000000e-01 + 7.554400000000000e-01 + 9.056800000000000e-01 + 9.997200000000001e-01 + 1.037900000000000e+00 + 1.023900000000000e+00 + 9.640000000000000e-01 + 8.673100000000000e-01 + 7.465700000000000e-01 + 6.166700000000001e-01 + 4.921500000000000e-01 + 3.841900000000000e-01 + 2.980400000000000e-01 + 2.308200000000000e-01 + 1.704500000000000e-01 + 9.711800000000000e-02 +-1.103600000000000e-02 +-1.684800000000000e-01 +-3.728000000000000e-01 +-6.007200000000000e-01 +-8.134200000000000e-01 +-9.698400000000000e-01 +-1.041800000000000e+00 +-1.023400000000000e+00 +-9.298000000000000e-01 +-7.887500000000000e-01 +-6.284600000000000e-01 +-4.697600000000000e-01 +-3.237800000000000e-01 +-1.937200000000000e-01 +-7.778599999999999e-02 + 2.857500000000000e-02 + 1.309000000000000e-01 + 2.333000000000000e-01 + 3.354700000000000e-01 + 4.306800000000000e-01 + 5.061500000000000e-01 + 5.461600000000000e-01 + 5.367600000000000e-01 + 4.706700000000000e-01 + 3.514800000000000e-01 + 1.962400000000000e-01 + 3.507800000000000e-02 +-9.427099999999999e-02 +-1.575500000000000e-01 +-1.374500000000000e-01 +-4.265200000000000e-02 + 9.400400000000000e-02 + 2.295400000000000e-01 + 3.301400000000000e-01 + 3.845800000000000e-01 + 4.034700000000000e-01 + 4.054800000000000e-01 + 4.007000000000000e-01 + 3.833200000000000e-01 + 3.383900000000000e-01 + 2.566300000000000e-01 + 1.448800000000000e-01 + 2.354800000000000e-02 +-8.723700000000000e-02 +-1.817300000000000e-01 +-2.715800000000000e-01 +-3.750700000000000e-01 +-5.005900000000000e-01 +-6.368400000000000e-01 +-7.567800000000000e-01 +-8.319800000000001e-01 +-8.466600000000000e-01 +-8.021900000000000e-01 +-7.107700000000000e-01 +-5.849400000000000e-01 +-4.312300000000000e-01 +-2.516100000000000e-01 +-4.933100000000000e-02 + 1.663800000000000e-01 + 3.801500000000000e-01 + 5.732699999999999e-01 + 7.265700000000000e-01 + 8.219800000000000e-01 + 8.449600000000000e-01 + 7.896000000000000e-01 + 6.648400000000000e-01 + 4.964500000000000e-01 + 3.202500000000000e-01 + 1.678200000000000e-01 + 5.315300000000000e-02 +-3.048600000000000e-02 +-1.000500000000000e-01 +-1.656800000000000e-01 +-2.198100000000000e-01 +-2.411400000000000e-01 +-2.113300000000000e-01 +-1.320500000000000e-01 +-2.920700000000000e-02 + 5.957300000000000e-02 + 1.054800000000000e-01 + 1.025900000000000e-01 + 6.579500000000001e-02 + 1.560800000000000e-02 +-3.790900000000000e-02 +-9.950800000000000e-02 +-1.788000000000000e-01 +-2.746400000000000e-01 +-3.669100000000000e-01 +-4.227700000000000e-01 +-4.138000000000000e-01 +-3.322300000000000e-01 +-1.959000000000000e-01 +-3.964800000000000e-02 + 1.003100000000000e-01 + 1.992600000000000e-01 + 2.483100000000000e-01 + 2.512100000000000e-01 + 2.185800000000000e-01 + 1.637900000000000e-01 + 1.007900000000000e-01 + 4.190100000000000e-02 +-5.594700000000000e-03 +-4.214200000000000e-02 +-7.478600000000001e-02 +-1.113400000000000e-01 +-1.531800000000000e-01 +-1.922900000000000e-01 +-2.155500000000000e-01 +-2.137700000000000e-01 +-1.885400000000000e-01 +-1.506500000000000e-01 +-1.104100000000000e-01 +-6.701699999999999e-02 +-5.854400000000000e-03 + 9.224000000000000e-02 + 2.350400000000000e-01 + 4.074300000000000e-01 + 5.734800000000000e-01 + 6.922900000000000e-01 + 7.379700000000000e-01 + 7.109799999999999e-01 + 6.337300000000000e-01 + 5.341399999999999e-01 + 4.284400000000000e-01 + 3.141900000000000e-01 + 1.766200000000000e-01 + 1.855200000000000e-03 +-2.125500000000000e-01 +-4.554800000000000e-01 +-7.068600000000000e-01 +-9.426000000000000e-01 +-1.135600000000000e+00 +-1.254800000000000e+00 +-1.268300000000000e+00 +-1.153400000000000e+00 +-9.116200000000000e-01 +-5.769700000000000e-01 +-2.097900000000000e-01 + 1.238900000000000e-01 + 3.773400000000000e-01 + 5.380400000000000e-01 + 6.243300000000001e-01 + 6.673100000000000e-01 + 6.908200000000000e-01 + 7.022400000000000e-01 + 6.974399999999999e-01 + 6.729900000000000e-01 + 6.340400000000000e-01 + 5.914800000000000e-01 + 5.512300000000000e-01 + 5.054300000000000e-01 + 4.334700000000000e-01 + 3.133900000000000e-01 + 1.363300000000000e-01 +-8.517500000000000e-02 +-3.198300000000000e-01 +-5.290200000000000e-01 +-6.805000000000000e-01 +-7.583299999999999e-01 +-7.659400000000000e-01 +-7.226700000000000e-01 +-6.548700000000000e-01 +-5.842600000000000e-01 +-5.171900000000000e-01 +-4.403500000000000e-01 +-3.272400000000000e-01 +-1.547100000000000e-01 + 7.859300000000000e-02 + 3.430500000000000e-01 + 5.860100000000000e-01 + 7.540600000000000e-01 + 8.171000000000000e-01 + 7.795800000000001e-01 + 6.727500000000000e-01 + 5.342400000000000e-01 + 3.894100000000000e-01 + 2.464500000000000e-01 + 1.054500000000000e-01 +-2.849400000000000e-02 +-1.399900000000000e-01 +-2.101100000000000e-01 +-2.287000000000000e-01 +-2.016100000000000e-01 +-1.472200000000000e-01 +-8.636099999999999e-02 +-3.459900000000000e-02 +-2.711400000000000e-03 +-2.203100000000000e-03 +-4.726200000000000e-02 +-1.476700000000000e-01 +-2.966500000000000e-01 +-4.645900000000000e-01 +-6.072300000000000e-01 +-6.857300000000000e-01 +-6.857000000000000e-01 +-6.214800000000000e-01 +-5.224800000000001e-01 +-4.121700000000000e-01 +-2.959600000000000e-01 +-1.664900000000000e-01 +-2.035900000000000e-02 + 1.295400000000000e-01 + 2.580400000000000e-01 + 3.461500000000000e-01 + 3.985300000000000e-01 + 4.444500000000000e-01 + 5.188100000000000e-01 + 6.364100000000000e-01 + 7.787600000000000e-01 + 9.037800000000000e-01 + 9.715600000000000e-01 + 9.670800000000001e-01 + 9.036200000000000e-01 + 8.057299999999999e-01 + 6.861900000000000e-01 + 5.355500000000000e-01 + 3.320900000000000e-01 + 6.425800000000000e-02 +-2.519000000000000e-01 +-5.733900000000000e-01 +-8.485500000000000e-01 +-1.039800000000000e+00 +-1.136500000000000e+00 +-1.150800000000000e+00 +-1.103400000000000e+00 +-1.009400000000000e+00 +-8.741600000000000e-01 +-6.975700000000000e-01 +-4.832600000000000e-01 +-2.442200000000000e-01 +-3.245300000000000e-03 + 2.107500000000000e-01 + 3.682300000000000e-01 + 4.452600000000000e-01 + 4.304100000000000e-01 + 3.305600000000000e-01 + 1.723200000000000e-01 +-3.785500000000000e-03 +-1.554000000000000e-01 +-2.511600000000000e-01 +-2.774100000000000e-01 +-2.359500000000000e-01 +-1.359500000000000e-01 + 1.251600000000000e-02 + 1.987700000000000e-01 + 4.066500000000000e-01 + 6.111200000000000e-01 + 7.818900000000000e-01 + 8.936100000000000e-01 + 9.358900000000000e-01 + 9.153500000000000e-01 + 8.480300000000000e-01 + 7.479800000000000e-01 + 6.208300000000000e-01 + 4.669300000000000e-01 + 2.899200000000000e-01 + 1.018700000000000e-01 +-8.097400000000000e-02 +-2.491800000000000e-01 +-4.079400000000000e-01 +-5.730200000000000e-01 +-7.554500000000000e-01 +-9.454900000000001e-01 +-1.109100000000000e+00 +-1.201800000000000e+00 +-1.192400000000000e+00 +-1.080700000000000e+00 +-8.973400000000000e-01 +-6.855100000000000e-01 +-4.782700000000000e-01 +-2.858400000000000e-01 +-1.004000000000000e-01 + 8.790600000000000e-02 + 2.768200000000000e-01 + 4.501100000000000e-01 + 5.876700000000000e-01 + 6.783500000000000e-01 + 7.251200000000000e-01 + 7.395400000000000e-01 + 7.311900000000000e-01 + 7.012800000000000e-01 + 6.449400000000000e-01 + 5.595200000000000e-01 + 4.510500000000000e-01 + 3.337900000000000e-01 + 2.233800000000000e-01 + 1.296300000000000e-01 + 5.426500000000000e-02 +-5.541600000000000e-03 +-5.196200000000000e-02 +-8.422100000000000e-02 +-1.007500000000000e-01 +-1.031300000000000e-01 +-9.804000000000000e-02 +-9.569700000000000e-02 +-1.062400000000000e-01 +-1.367900000000000e-01 +-1.901400000000000e-01 +-2.641900000000000e-01 +-3.508900000000000e-01 +-4.359000000000000e-01 +-5.012100000000000e-01 +-5.318700000000000e-01 +-5.239200000000001e-01 +-4.875500000000000e-01 +-4.414200000000000e-01 +-3.996700000000000e-01 +-3.600900000000000e-01 +-3.024200000000000e-01 +-1.998500000000000e-01 +-3.752600000000000e-02 + 1.738500000000000e-01 + 3.982600000000000e-01 + 5.885100000000000e-01 + 7.052600000000000e-01 + 7.303100000000000e-01 + 6.685800000000000e-01 + 5.414500000000000e-01 + 3.781000000000000e-01 + 2.093800000000000e-01 + 6.379100000000000e-02 +-3.739200000000000e-02 +-8.599600000000000e-02 +-8.998500000000000e-02 +-6.890200000000000e-02 +-4.207400000000000e-02 +-1.680100000000000e-02 + 1.407900000000000e-02 + 6.199300000000000e-02 + 1.268800000000000e-01 + 1.890300000000000e-01 + 2.171400000000000e-01 + 1.888000000000000e-01 + 1.084700000000000e-01 + 8.303700000000001e-03 +-7.050700000000000e-02 +-1.033200000000000e-01 +-9.583600000000000e-02 +-7.626300000000000e-02 +-7.284400000000001e-02 +-9.485000000000000e-02 +-1.319000000000000e-01 +-1.707300000000000e-01 +-2.136000000000000e-01 +-2.806500000000000e-01 +-3.919800000000000e-01 +-5.428200000000000e-01 +-6.928700000000000e-01 +-7.811900000000001e-01 +-7.589900000000001e-01 +-6.183100000000000e-01 +-3.971700000000000e-01 +-1.583000000000000e-01 + 4.310700000000000e-02 + 1.813300000000000e-01 + 2.606700000000000e-01 + 3.001400000000000e-01 + 3.178400000000000e-01 + 3.265600000000000e-01 + 3.394900000000000e-01 + 3.750900000000000e-01 + 4.519600000000000e-01 + 5.755100000000000e-01 + 7.278300000000000e-01 + 8.717100000000000e-01 + 9.685400000000000e-01 + 9.977600000000000e-01 + 9.632300000000000e-01 + 8.816300000000000e-01 + 7.628100000000000e-01 + 5.983900000000000e-01 + 3.690100000000000e-01 + 6.536900000000000e-02 +-2.932300000000000e-01 +-6.577400000000000e-01 +-9.678500000000000e-01 +-1.178100000000000e+00 +-1.274300000000000e+00 +-1.272300000000000e+00 +-1.202300000000000e+00 +-1.092700000000000e+00 +-9.635800000000000e-01 +-8.297700000000000e-01 +-7.053700000000001e-01 +-6.012600000000000e-01 +-5.161400000000000e-01 +-4.301700000000000e-01 +-3.102400000000000e-01 +-1.281900000000000e-01 + 1.185600000000000e-01 + 3.982800000000000e-01 + 6.561200000000000e-01 + 8.401600000000000e-01 + 9.269800000000000e-01 + 9.315200000000000e-01 + 8.961300000000000e-01 + 8.668300000000000e-01 + 8.712200000000000e-01 + 9.094800000000000e-01 + 9.602000000000001e-01 + 9.936400000000000e-01 + 9.832000000000000e-01 + 9.101900000000001e-01 + 7.637100000000000e-01 + 5.405700000000000e-01 + 2.479100000000000e-01 +-9.318200000000000e-02 +-4.478000000000000e-01 +-7.741400000000001e-01 +-1.035500000000000e+00 +-1.212000000000000e+00 +-1.304600000000000e+00 +-1.331800000000000e+00 +-1.317400000000000e+00 +-1.279200000000000e+00 +-1.221000000000000e+00 +-1.132400000000000e+00 +-9.945800000000000e-01 +-7.903800000000000e-01 +-5.141200000000000e-01 +-1.780400000000000e-01 + 1.871700000000000e-01 + 5.389800000000000e-01 + 8.347700000000000e-01 + 1.044600000000000e+00 + 1.159400000000000e+00 + 1.191000000000000e+00 + 1.164000000000000e+00 + 1.103800000000000e+00 + 1.027300000000000e+00 + 9.389000000000000e-01 + 8.335500000000000e-01 + 7.024700000000000e-01 + 5.388700000000000e-01 + 3.419600000000000e-01 + 1.195000000000000e-01 +-1.108000000000000e-01 +-3.226900000000000e-01 +-4.876500000000000e-01 +-5.861600000000000e-01 +-6.191000000000000e-01 +-6.118500000000000e-01 +-6.053600000000000e-01 +-6.360300000000000e-01 +-7.147300000000000e-01 +-8.176900000000000e-01 +-8.963100000000001e-01 +-9.010500000000000e-01 +-8.055099999999999e-01 +-6.164400000000000e-01 +-3.651400000000000e-01 +-8.830900000000000e-02 + 1.871300000000000e-01 + 4.454800000000000e-01 + 6.719600000000000e-01 + 8.423900000000000e-01 + 9.247400000000000e-01 + 8.943900000000000e-01 + 7.530600000000000e-01 + 5.368400000000000e-01 + 3.053700000000000e-01 + 1.173700000000000e-01 + 6.831700000000000e-03 +-2.641400000000000e-02 +-8.664600000000000e-03 + 2.512500000000000e-02 + 4.603400000000000e-02 + 3.621900000000000e-02 +-1.328800000000000e-02 +-1.045100000000000e-01 +-2.295200000000000e-01 +-3.653900000000000e-01 +-4.750100000000000e-01 +-5.186300000000000e-01 +-4.725000000000000e-01 +-3.435100000000000e-01 +-1.691900000000000e-01 +-1.508300000000000e-03 + 1.165200000000000e-01 + 1.677200000000000e-01 + 1.622500000000000e-01 + 1.256000000000000e-01 + 8.289299999999999e-02 + 4.986900000000000e-02 + 3.333700000000000e-02 + 3.639500000000000e-02 + 6.101400000000000e-02 + 1.051800000000000e-01 + 1.585800000000000e-01 + 2.033600000000000e-01 + 2.227800000000000e-01 + 2.126500000000000e-01 + 1.865000000000000e-01 + 1.684600000000000e-01 + 1.767800000000000e-01 + 2.087400000000000e-01 + 2.381400000000000e-01 + 2.288400000000000e-01 + 1.563000000000000e-01 + 2.340600000000000e-02 +-1.396900000000000e-01 +-2.915600000000000e-01 +-4.005200000000000e-01 +-4.576300000000000e-01 +-4.745200000000000e-01 +-4.699400000000000e-01 +-4.556700000000000e-01 +-4.312500000000000e-01 +-3.892400000000000e-01 +-3.248900000000000e-01 +-2.416500000000000e-01 +-1.488300000000000e-01 +-5.478500000000000e-02 + 3.740900000000000e-02 + 1.277300000000000e-01 + 2.127300000000000e-01 + 2.816200000000000e-01 + 3.202300000000000e-01 + 3.210500000000000e-01 + 2.920200000000000e-01 + 2.558100000000000e-01 + 2.381900000000000e-01 + 2.523400000000000e-01 + 2.895700000000000e-01 + 3.232300000000000e-01 + 3.236600000000000e-01 + 2.743900000000000e-01 + 1.799500000000000e-01 + 6.166400000000000e-02 +-5.410400000000000e-02 +-1.466700000000000e-01 +-2.052500000000000e-01 +-2.268800000000000e-01 +-2.126900000000000e-01 +-1.665500000000000e-01 +-9.622400000000000e-02 +-1.407200000000000e-02 + 6.515100000000000e-02 + 1.287000000000000e-01 + 1.693200000000000e-01 + 1.854100000000000e-01 + 1.789200000000000e-01 + 1.538800000000000e-01 + 1.174500000000000e-01 + 8.143599999999999e-02 + 6.020200000000000e-02 + 6.307400000000001e-02 + 8.494300000000000e-02 + 1.026500000000000e-01 + 8.259600000000000e-02 +-2.625200000000000e-03 +-1.582300000000000e-01 +-3.624800000000000e-01 +-5.765500000000000e-01 +-7.622800000000000e-01 +-8.956600000000000e-01 +-9.682300000000000e-01 +-9.783900000000000e-01 +-9.223100000000000e-01 +-7.935900000000000e-01 +-5.919800000000000e-01 +-3.329600000000000e-01 +-4.848500000000000e-02 + 2.234700000000000e-01 + 4.534300000000000e-01 + 6.285300000000000e-01 + 7.494400000000000e-01 + 8.210300000000000e-01 + 8.466300000000000e-01 + 8.315399999999999e-01 + 7.910500000000000e-01 + 7.524600000000000e-01 + 7.440400000000000e-01 + 7.759300000000000e-01 + 8.272699999999999e-01 + 8.523100000000000e-01 + 8.055099999999999e-01 + 6.701400000000000e-01 + 4.709000000000000e-01 + 2.604300000000000e-01 + 8.825000000000000e-02 +-2.728400000000000e-02 +-1.056700000000000e-01 +-1.867300000000000e-01 +-3.028000000000000e-01 +-4.603500000000000e-01 +-6.418000000000000e-01 +-8.224900000000001e-01 +-9.875000000000000e-01 +-1.135400000000000e+00 +-1.267800000000000e+00 +-1.376100000000000e+00 +-1.437500000000000e+00 +-1.425200000000000e+00 +-1.325100000000000e+00 +-1.145700000000000e+00 +-9.128700000000000e-01 +-6.533500000000000e-01 +-3.781100000000000e-01 +-7.910000000000000e-02 + 2.579800000000000e-01 + 6.334100000000000e-01 + 1.020100000000000e+00 + 1.368000000000000e+00 + 1.624800000000000e+00 + 1.761300000000000e+00 + 1.784900000000000e+00 + 1.731000000000000e+00 + 1.638800000000000e+00 + 1.523700000000000e+00 + 1.366800000000000e+00 + 1.128700000000000e+00 + 7.779700000000001e-01 + 3.198700000000000e-01 +-1.964400000000000e-01 +-6.948700000000000e-01 +-1.103800000000000e+00 +-1.382300000000000e+00 +-1.526300000000000e+00 +-1.555700000000000e+00 +-1.493000000000000e+00 +-1.352600000000000e+00 +-1.143100000000000e+00 +-8.788600000000000e-01 +-5.860500000000000e-01 +-2.972400000000000e-01 +-3.855900000000000e-02 + 1.786600000000000e-01 + 3.541800000000000e-01 + 4.869200000000000e-01 + 5.674300000000000e-01 + 5.840400000000000e-01 + 5.395100000000000e-01 + 4.628300000000000e-01 + 4.018300000000000e-01 + 3.967200000000000e-01 + 4.515000000000000e-01 + 5.255500000000000e-01 + 5.549900000000000e-01 + 4.917500000000000e-01 + 3.341200000000000e-01 + 1.276700000000000e-01 +-6.356100000000001e-02 +-1.947400000000000e-01 +-2.615300000000000e-01 +-2.931600000000000e-01 +-3.269600000000000e-01 +-3.850400000000000e-01 +-4.679100000000000e-01 +-5.634100000000000e-01 +-6.573500000000000e-01 +-7.348700000000000e-01 +-7.740899999999999e-01 +-7.440700000000000e-01 +-6.164500000000001e-01 +-3.861700000000000e-01 +-8.521900000000000e-02 + 2.252300000000000e-01 + 4.831300000000000e-01 + 6.564900000000000e-01 + 7.550600000000000e-01 + 8.146900000000000e-01 + 8.664800000000000e-01 + 9.137100000000000e-01 + 9.324500000000000e-01 + 8.927800000000000e-01 + 7.819400000000000e-01 + 6.118400000000001e-01 + 4.075200000000000e-01 + 1.892200000000000e-01 +-3.590100000000000e-02 +-2.667100000000000e-01 +-4.944200000000000e-01 +-6.965700000000000e-01 +-8.450000000000000e-01 +-9.211200000000000e-01 +-9.250500000000000e-01 +-8.712800000000001e-01 +-7.758900000000000e-01 +-6.477900000000000e-01 +-4.916500000000000e-01 +-3.183600000000000e-01 +-1.502400000000000e-01 +-1.262300000000000e-02 + 8.364500000000000e-02 + 1.536500000000000e-01 + 2.312100000000000e-01 + 3.446400000000000e-01 + 4.922200000000000e-01 + 6.361100000000000e-01 + 7.211400000000000e-01 + 7.061900000000000e-01 + 5.869799999999999e-01 + 3.959300000000000e-01 + 1.819400000000000e-01 +-1.345600000000000e-02 +-1.674300000000000e-01 +-2.711900000000000e-01 +-3.191000000000000e-01 +-3.045700000000000e-01 +-2.270600000000000e-01 +-1.026500000000000e-01 + 3.396400000000000e-02 + 1.408000000000000e-01 + 1.869300000000000e-01 + 1.650100000000000e-01 + 9.024200000000000e-02 +-1.160200000000000e-02 +-1.165300000000000e-01 +-2.067500000000000e-01 +-2.677600000000000e-01 +-2.857400000000000e-01 +-2.518500000000000e-01 +-1.715100000000000e-01 +-6.924000000000000e-02 + 1.888400000000000e-02 + 6.364900000000000e-02 + 6.017700000000000e-02 + 3.107800000000000e-02 + 1.146400000000000e-02 + 2.551200000000000e-02 + 7.108299999999999e-02 + 1.232200000000000e-01 + 1.534000000000000e-01 + 1.497700000000000e-01 + 1.235000000000000e-01 + 9.751100000000000e-02 + 8.699400000000000e-02 + 8.738600000000001e-02 + 7.855700000000000e-02 + 4.149000000000000e-02 +-2.570800000000000e-02 +-1.045400000000000e-01 +-1.675100000000000e-01 +-1.951600000000000e-01 +-1.861900000000000e-01 +-1.541200000000000e-01 +-1.143500000000000e-01 +-7.266800000000000e-02 +-2.390600000000000e-02 + 3.842400000000000e-02 + 1.096700000000000e-01 + 1.690500000000000e-01 + 1.870900000000000e-01 + 1.416600000000000e-01 + 3.254500000000000e-02 +-1.146200000000000e-01 +-2.574400000000000e-01 +-3.536100000000000e-01 +-3.760700000000000e-01 +-3.195400000000000e-01 +-1.972800000000000e-01 +-3.251700000000000e-02 + 1.492800000000000e-01 + 3.238500000000000e-01 + 4.684600000000000e-01 + 5.624000000000000e-01 + 5.904400000000000e-01 + 5.483200000000000e-01 + 4.465600000000000e-01 + 3.087000000000000e-01 + 1.634400000000000e-01 + 3.391700000000000e-02 +-7.003600000000000e-02 +-1.525300000000000e-01 +-2.248500000000000e-01 +-2.953700000000000e-01 +-3.618800000000000e-01 +-4.107200000000000e-01 +-4.232000000000000e-01 +-3.860500000000000e-01 +-3.005700000000000e-01 +-1.858700000000000e-01 +-7.410100000000000e-02 + 8.029600000000000e-04 + 1.636100000000000e-02 +-2.891600000000000e-02 +-1.143500000000000e-01 +-2.053800000000000e-01 +-2.679600000000000e-01 +-2.823900000000000e-01 +-2.497300000000000e-01 +-1.878100000000000e-01 +-1.194200000000000e-01 +-5.950900000000000e-02 +-8.883100000000000e-03 + 4.276800000000000e-02 + 1.074100000000000e-01 + 1.896100000000000e-01 + 2.838800000000000e-01 + 3.793600000000000e-01 + 4.675100000000000e-01 + 5.464800000000000e-01 + 6.186100000000000e-01 + 6.832400000000000e-01 + 7.305600000000000e-01 + 7.421100000000000e-01 + 6.983700000000000e-01 + 5.886800000000000e-01 + 4.168400000000000e-01 + 1.988800000000000e-01 +-4.461300000000000e-02 +-2.953900000000000e-01 +-5.384400000000000e-01 +-7.570500000000000e-01 +-9.278500000000000e-01 +-1.022300000000000e+00 +-1.016700000000000e+00 +-9.050400000000000e-01 +-7.062000000000000e-01 +-4.589700000000000e-01 +-2.070200000000000e-01 + 1.653300000000000e-02 + 1.952700000000000e-01 + 3.233100000000000e-01 + 3.939000000000000e-01 + 3.939300000000000e-01 + 3.111600000000000e-01 + 1.498800000000000e-01 +-5.768300000000000e-02 +-2.558600000000000e-01 +-3.867900000000000e-01 +-4.165300000000000e-01 +-3.492200000000000e-01 +-2.200500000000000e-01 +-7.226100000000001e-02 + 6.584400000000000e-02 + 1.890100000000000e-01 + 3.053200000000000e-01 + 4.193000000000000e-01 + 5.222800000000000e-01 + 5.971500000000000e-01 + 6.312100000000000e-01 + 6.246400000000000e-01 + 5.865700000000000e-01 + 5.228100000000000e-01 + 4.279800000000000e-01 + 2.912200000000000e-01 + 1.124300000000000e-01 +-8.476599999999999e-02 +-2.571400000000000e-01 +-3.633000000000000e-01 +-3.884600000000000e-01 +-3.536200000000000e-01 +-3.012600000000000e-01 +-2.671600000000000e-01 +-2.588200000000000e-01 +-2.558400000000000e-01 +-2.306400000000000e-01 +-1.724500000000000e-01 +-9.625100000000000e-02 +-3.108800000000000e-02 + 1.089300000000000e-03 +-1.302900000000000e-03 +-2.338600000000000e-02 +-4.905000000000000e-02 +-7.287299999999999e-02 +-9.870300000000000e-02 +-1.281000000000000e-01 +-1.514600000000000e-01 +-1.520600000000000e-01 +-1.207300000000000e-01 +-6.786399999999999e-02 +-2.061000000000000e-02 +-4.897500000000000e-03 +-2.588100000000000e-02 +-6.266700000000000e-02 +-8.248200000000000e-02 +-6.384800000000000e-02 +-1.110600000000000e-02 + 5.031600000000000e-02 + 9.318300000000000e-02 + 1.067400000000000e-01 + 1.006900000000000e-01 + 9.438900000000000e-02 + 1.022800000000000e-01 + 1.280200000000000e-01 + 1.695000000000000e-01 + 2.264500000000000e-01 + 2.999300000000000e-01 + 3.824500000000000e-01 + 4.486300000000000e-01 + 4.591300000000000e-01 + 3.812100000000000e-01 + 2.141700000000000e-01 + 7.259300000000000e-04 +-1.874100000000000e-01 +-2.839600000000000e-01 +-2.623000000000000e-01 +-1.483700000000000e-01 +-4.947200000000000e-03 + 1.015000000000000e-01 + 1.309800000000000e-01 + 8.104500000000001e-02 +-2.283100000000000e-02 +-1.467600000000000e-01 +-2.638700000000000e-01 +-3.586100000000000e-01 +-4.228500000000000e-01 +-4.510700000000000e-01 +-4.403900000000000e-01 +-3.941600000000000e-01 +-3.243900000000000e-01 +-2.486900000000000e-01 +-1.822900000000000e-01 +-1.300000000000000e-01 +-8.365000000000000e-02 +-2.735300000000000e-02 + 5.222300000000000e-02 + 1.565400000000000e-01 + 2.725900000000000e-01 + 3.789500000000000e-01 + 4.568800000000000e-01 + 4.995500000000000e-01 + 5.130400000000001e-01 + 5.080300000000000e-01 + 4.878000000000000e-01 + 4.418000000000000e-01 + 3.511600000000000e-01 + 2.037000000000000e-01 + 8.438400000000000e-03 +-2.022900000000000e-01 +-3.866500000000000e-01 +-5.149300000000000e-01 +-5.837500000000000e-01 +-6.117899999999999e-01 +-6.194200000000000e-01 +-6.074700000000000e-01 +-5.522500000000000e-01 +-4.224900000000000e-01 +-2.071000000000000e-01 + 6.643400000000001e-02 + 3.375300000000000e-01 + 5.397700000000000e-01 + 6.326300000000000e-01 + 6.177700000000000e-01 + 5.317600000000000e-01 + 4.229700000000000e-01 + 3.286800000000000e-01 + 2.647500000000000e-01 + 2.284000000000000e-01 + 2.063600000000000e-01 + 1.807100000000000e-01 + 1.321100000000000e-01 + 4.443200000000000e-02 +-8.639300000000000e-02 +-2.440300000000000e-01 +-3.921500000000000e-01 +-4.877700000000000e-01 +-5.019300000000000e-01 +-4.347500000000000e-01 +-3.147500000000000e-01 +-1.830700000000000e-01 +-7.380700000000000e-02 +-3.112400000000000e-03 + 2.866900000000000e-02 + 2.817900000000000e-02 + 3.458000000000000e-03 +-3.450900000000000e-02 +-6.831200000000000e-02 +-7.704999999999999e-02 +-4.764800000000000e-02 + 1.323300000000000e-02 + 7.806700000000000e-02 + 1.122600000000000e-01 + 9.468699999999999e-02 + 3.012200000000000e-02 +-5.547900000000000e-02 +-1.323400000000000e-01 +-1.823900000000000e-01 +-2.010900000000000e-01 +-1.870000000000000e-01 +-1.319900000000000e-01 +-2.463800000000000e-02 + 1.339300000000000e-01 + 3.161300000000000e-01 + 4.721700000000000e-01 + 5.548300000000000e-01 + 5.487800000000000e-01 + 4.815300000000000e-01 + 4.048400000000000e-01 + 3.580500000000000e-01 + 3.397600000000000e-01 + 3.097300000000000e-01 + 2.205700000000000e-01 + 5.629500000000000e-02 +-1.507100000000000e-01 +-3.372000000000000e-01 +-4.486100000000000e-01 +-4.727900000000000e-01 +-4.452200000000000e-01 +-4.232500000000000e-01 +-4.481800000000000e-01 +-5.197200000000000e-01 +-5.975600000000000e-01 +-6.260500000000000e-01 +-5.654100000000000e-01 +-4.117400000000000e-01 +-1.973800000000000e-01 + 2.568300000000000e-02 + 2.093300000000000e-01 + 3.283600000000000e-01 + 3.873200000000000e-01 + 4.127300000000000e-01 + 4.350500000000000e-01 + 4.699000000000000e-01 + 5.094300000000000e-01 + 5.292000000000000e-01 + 5.065900000000000e-01 + 4.379400000000000e-01 + 3.418100000000000e-01 + 2.453900000000000e-01 + 1.640700000000000e-01 + 9.045499999999999e-02 + 2.724800000000000e-03 +-1.133600000000000e-01 +-2.462300000000000e-01 +-3.602400000000000e-01 +-4.183100000000000e-01 +-4.094800000000000e-01 +-3.600900000000000e-01 +-3.183000000000000e-01 +-3.219900000000000e-01 +-3.725900000000000e-01 +-4.334700000000000e-01 +-4.535500000000000e-01 +-3.990400000000000e-01 +-2.716900000000000e-01 +-1.033600000000000e-01 + 6.555500000000000e-02 + 2.069000000000000e-01 + 3.111500000000000e-01 + 3.794300000000000e-01 + 4.116400000000000e-01 + 4.020700000000000e-01 + 3.454700000000000e-01 + 2.473100000000000e-01 + 1.290400000000000e-01 + 2.367600000000000e-02 +-3.593900000000000e-02 +-2.971500000000000e-02 + 4.174500000000000e-02 + 1.564000000000000e-01 + 2.772500000000000e-01 + 3.647800000000000e-01 + 3.921700000000000e-01 + 3.572800000000000e-01 + 2.841400000000000e-01 + 2.102600000000000e-01 + 1.644900000000000e-01 + 1.480600000000000e-01 + 1.319800000000000e-01 + 7.442000000000000e-02 +-5.173600000000000e-02 +-2.393400000000000e-01 +-4.484000000000000e-01 +-6.272200000000000e-01 +-7.384500000000001e-01 +-7.728200000000000e-01 +-7.440800000000000e-01 +-6.729000000000001e-01 +-5.738200000000000e-01 +-4.543400000000000e-01 +-3.223700000000000e-01 +-1.917200000000000e-01 +-7.797800000000001e-02 + 1.166100000000000e-02 + 8.428200000000000e-02 + 1.555100000000000e-01 + 2.358100000000000e-01 + 3.207700000000000e-01 + 3.951000000000000e-01 + 4.475500000000000e-01 + 4.832700000000000e-01 + 5.206100000000000e-01 + 5.723500000000000e-01 + 6.262000000000000e-01 + 6.429300000000000e-01 + 5.783600000000000e-01 + 4.157800000000000e-01 + 1.851400000000000e-01 +-4.771500000000000e-02 +-2.167900000000000e-01 +-2.933600000000000e-01 +-2.991700000000000e-01 +-2.864300000000000e-01 +-2.986500000000000e-01 +-3.397600000000000e-01 +-3.721400000000000e-01 +-3.440900000000000e-01 +-2.273600000000000e-01 +-3.967000000000000e-02 + 1.616100000000000e-01 + 3.094200000000000e-01 + 3.611700000000000e-01 + 3.170200000000000e-01 + 2.133800000000000e-01 + 9.808799999999999e-02 + 3.446100000000000e-03 +-6.693300000000001e-02 +-1.312300000000000e-01 +-2.083700000000000e-01 +-2.973900000000000e-01 +-3.711200000000000e-01 +-3.895300000000000e-01 +-3.251600000000000e-01 +-1.845500000000000e-01 +-1.094300000000000e-02 + 1.351800000000000e-01 + 2.065100000000000e-01 + 1.913600000000000e-01 + 1.141900000000000e-01 + 1.480300000000000e-02 +-7.819400000000000e-02 +-1.609800000000000e-01 +-2.464500000000000e-01 +-3.423600000000000e-01 +-4.340000000000000e-01 +-4.858000000000000e-01 +-4.617400000000000e-01 +-3.498100000000000e-01 +-1.730100000000000e-01 + 2.098200000000000e-02 + 1.837200000000000e-01 + 2.877000000000000e-01 + 3.336300000000000e-01 + 3.425400000000000e-01 + 3.417000000000000e-01 + 3.541900000000000e-01 + 3.951100000000000e-01 + 4.706600000000000e-01 + 5.757500000000000e-01 + 6.908300000000001e-01 + 7.835400000000000e-01 + 8.191100000000000e-01 + 7.761700000000000e-01 + 6.581000000000000e-01 + 4.909600000000000e-01 + 3.077300000000000e-01 + 1.293400000000000e-01 +-4.438100000000000e-02 +-2.274700000000000e-01 +-4.301800000000000e-01 +-6.442300000000000e-01 +-8.417100000000000e-01 +-9.878800000000000e-01 +-1.058100000000000e+00 +-1.047500000000000e+00 +-9.681500000000000e-01 +-8.390500000000000e-01 +-6.772500000000000e-01 +-4.964000000000000e-01 +-3.109500000000000e-01 +-1.397000000000000e-01 +-3.279400000000000e-03 + 8.390800000000000e-02 + 1.218200000000000e-01 + 1.269200000000000e-01 + 1.262300000000000e-01 + 1.463900000000000e-01 + 2.032100000000000e-01 + 2.963200000000000e-01 + 4.101900000000000e-01 + 5.201400000000000e-01 + 6.003800000000000e-01 + 6.314500000000000e-01 + 6.048900000000000e-01 + 5.243000000000000e-01 + 4.031300000000000e-01 + 2.607800000000000e-01 + 1.187100000000000e-01 +-3.026100000000000e-03 +-8.933700000000000e-02 +-1.344500000000000e-01 +-1.455500000000000e-01 +-1.421000000000000e-01 +-1.478900000000000e-01 +-1.772700000000000e-01 +-2.229400000000000e-01 +-2.546600000000000e-01 +-2.332300000000000e-01 +-1.340700000000000e-01 + 3.366600000000000e-02 + 2.258700000000000e-01 + 3.830200000000000e-01 + 4.597300000000000e-01 + 4.460400000000000e-01 + 3.678600000000000e-01 + 2.676600000000000e-01 + 1.795400000000000e-01 + 1.149700000000000e-01 + 6.594100000000000e-02 + 1.909600000000000e-02 +-3.246200000000000e-02 +-8.824799999999999e-02 +-1.482500000000000e-01 +-2.195800000000000e-01 +-3.136200000000000e-01 +-4.348900000000000e-01 +-5.709500000000000e-01 +-6.930900000000000e-01 +-7.690700000000000e-01 +-7.797100000000000e-01 +-7.279000000000000e-01 +-6.345499999999999e-01 +-5.256400000000000e-01 +-4.200600000000000e-01 +-3.252400000000000e-01 +-2.404400000000000e-01 +-1.615600000000000e-01 +-8.269700000000001e-02 + 5.475200000000000e-03 + 1.153000000000000e-01 + 2.563800000000000e-01 + 4.265600000000000e-01 + 6.069600000000001e-01 + 7.670000000000000e-01 + 8.786000000000000e-01 + 9.311100000000000e-01 + 9.369200000000000e-01 + 9.236300000000000e-01 + 9.174300000000000e-01 + 9.281300000000000e-01 + 9.444200000000000e-01 + 9.408200000000000e-01 + 8.905800000000000e-01 + 7.766900000000000e-01 + 5.961600000000000e-01 + 3.579800000000000e-01 + 7.836799999999999e-02 +-2.235900000000000e-01 +-5.286900000000000e-01 +-8.194200000000000e-01 +-1.081400000000000e+00 +-1.304000000000000e+00 +-1.479600000000000e+00 +-1.601500000000000e+00 +-1.662000000000000e+00 +-1.652200000000000e+00 +-1.562900000000000e+00 +-1.387900000000000e+00 +-1.126900000000000e+00 +-7.890700000000000e-01 +-3.955300000000000e-01 + 2.042200000000000e-02 + 4.172500000000000e-01 + 7.541900000000000e-01 + 1.003100000000000e+00 + 1.158000000000000e+00 + 1.235800000000000e+00 + 1.267400000000000e+00 + 1.281600000000000e+00 + 1.290800000000000e+00 + 1.285700000000000e+00 + 1.241500000000000e+00 + 1.130800000000000e+00 + 9.373000000000000e-01 + 6.623400000000000e-01 + 3.253800000000000e-01 +-4.172300000000000e-02 +-4.022300000000000e-01 +-7.222499999999999e-01 +-9.771900000000000e-01 +-1.155200000000000e+00 +-1.255700000000000e+00 +-1.282600000000000e+00 +-1.235700000000000e+00 +-1.106700000000000e+00 +-8.856100000000000e-01 +-5.743200000000001e-01 +-2.009000000000000e-01 + 1.788600000000000e-01 + 4.968300000000000e-01 + 6.993200000000001e-01 + 7.701600000000000e-01 + 7.359400000000000e-01 + 6.496499999999999e-01 + 5.627000000000000e-01 + 5.021600000000001e-01 + 4.654300000000000e-01 + 4.323600000000000e-01 + 3.837400000000000e-01 + 3.130100000000000e-01 + 2.254800000000000e-01 + 1.295700000000000e-01 + 2.957500000000000e-02 +-7.411600000000000e-02 +-1.792200000000000e-01 +-2.772300000000000e-01 +-3.557400000000000e-01 +-4.062900000000000e-01 +-4.309300000000000e-01 +-4.417400000000000e-01 +-4.532900000000000e-01 +-4.738700000000000e-01 +-5.020300000000000e-01 +-5.299900000000000e-01 +-5.495700000000000e-01 +-5.548100000000000e-01 +-5.396900000000000e-01 +-4.946200000000000e-01 +-4.077900000000000e-01 +-2.727000000000000e-01 +-9.681900000000000e-02 + 9.710600000000000e-02 + 2.808200000000000e-01 + 4.366400000000000e-01 + 5.684700000000000e-01 + 6.981300000000000e-01 + 8.477500000000000e-01 + 1.019000000000000e+00 + 1.183800000000000e+00 + 1.293900000000000e+00 + 1.303700000000000e+00 + 1.192200000000000e+00 + 9.712800000000000e-01 + 6.755800000000000e-01 + 3.446700000000000e-01 + 8.363400000000000e-03 +-3.161000000000000e-01 +-6.174900000000000e-01 +-8.832000000000000e-01 +-1.098400000000000e+00 +-1.251400000000000e+00 +-1.339100000000000e+00 +-1.365300000000000e+00 +-1.332800000000000e+00 +-1.236600000000000e+00 +-1.064600000000000e+00 +-8.101400000000000e-01 +-4.858800000000000e-01 +-1.298000000000000e-01 + 2.044000000000000e-01 + 4.680200000000000e-01 + 6.367300000000000e-01 + 7.170400000000000e-01 + 7.367000000000000e-01 + 7.269099999999999e-01 + 7.084000000000000e-01 + 6.887000000000000e-01 + 6.685600000000000e-01 + 6.491600000000000e-01 + 6.328400000000000e-01 + 6.175200000000000e-01 + 5.912100000000000e-01 + 5.333599999999999e-01 + 4.237200000000000e-01 + 2.527900000000000e-01 + 2.671600000000000e-02 +-2.357500000000000e-01 +-5.097400000000000e-01 +-7.680100000000000e-01 +-9.799800000000000e-01 +-1.110800000000000e+00 +-1.127200000000000e+00 +-1.011900000000000e+00 +-7.780899999999999e-01 +-4.725100000000000e-01 +-1.604900000000000e-01 + 1.011700000000000e-01 + 2.871100000000000e-01 + 4.071900000000000e-01 + 4.887800000000000e-01 + 5.508000000000000e-01 + 5.887200000000000e-01 + 5.814500000000000e-01 + 5.140300000000000e-01 + 3.975600000000000e-01 + 2.697000000000000e-01 + 1.738300000000000e-01 + 1.318100000000000e-01 + 1.305100000000000e-01 + 1.323600000000000e-01 + 1.023300000000000e-01 + 3.189900000000000e-02 +-5.684500000000000e-02 +-1.286500000000000e-01 +-1.604200000000000e-01 +-1.559700000000000e-01 +-1.409200000000000e-01 +-1.429400000000000e-01 +-1.727300000000000e-01 +-2.182000000000000e-01 +-2.541500000000000e-01 +-2.587400000000000e-01 +-2.252800000000000e-01 +-1.635000000000000e-01 +-9.233900000000000e-02 +-3.098800000000000e-02 + 6.884700000000000e-03 + 1.500100000000000e-02 +-5.473900000000000e-03 +-4.635500000000000e-02 +-9.421000000000000e-02 +-1.347300000000000e-01 +-1.587100000000000e-01 +-1.660200000000000e-01 +-1.641000000000000e-01 +-1.613000000000000e-01 +-1.594100000000000e-01 +-1.509700000000000e-01 +-1.232200000000000e-01 +-6.564500000000000e-02 + 2.467500000000000e-02 + 1.431800000000000e-01 + 2.818500000000000e-01 + 4.323200000000000e-01 + 5.847300000000000e-01 + 7.238400000000000e-01 + 8.274100000000000e-01 + 8.705400000000000e-01 + 8.346900000000000e-01 + 7.154600000000000e-01 + 5.238400000000000e-01 + 2.804700000000000e-01 + 8.278700000000000e-03 +-2.707600000000000e-01 +-5.333100000000000e-01 +-7.517400000000000e-01 +-8.971400000000000e-01 +-9.495800000000000e-01 +-9.096100000000000e-01 +-8.013900000000000e-01 +-6.623599999999999e-01 +-5.244200000000000e-01 +-3.986800000000000e-01 +-2.744800000000000e-01 +-1.334100000000000e-01 + 3.201500000000000e-02 + 2.084700000000000e-01 + 3.675600000000000e-01 + 4.818900000000000e-01 + 5.391000000000000e-01 + 5.439800000000000e-01 + 5.090100000000000e-01 + 4.428700000000000e-01 + 3.470000000000000e-01 + 2.224500000000000e-01 + 7.964300000000001e-02 +-5.928900000000000e-02 +-1.693900000000000e-01 +-2.368000000000000e-01 +-2.662800000000000e-01 +-2.753300000000000e-01 +-2.786500000000000e-01 +-2.747300000000000e-01 +-2.452200000000000e-01 +-1.681600000000000e-01 +-3.544600000000000e-02 + 1.379000000000000e-01 + 3.185200000000000e-01 + 4.688400000000000e-01 + 5.601699999999999e-01 + 5.770999999999999e-01 + 5.144900000000000e-01 + 3.743400000000000e-01 + 1.682500000000000e-01 +-7.652700000000000e-02 +-3.159000000000000e-01 +-4.993900000000000e-01 +-5.901500000000000e-01 +-5.824900000000000e-01 +-5.041000000000000e-01 +-3.989200000000000e-01 +-3.006900000000000e-01 +-2.145300000000000e-01 +-1.194500000000000e-01 + 1.018000000000000e-02 + 1.792000000000000e-01 + 3.607400000000000e-01 + 5.077900000000000e-01 + 5.794800000000000e-01 + 5.643000000000000e-01 + 4.847600000000000e-01 + 3.810800000000000e-01 + 2.858100000000000e-01 + 2.061000000000000e-01 + 1.247600000000000e-01 + 1.749700000000000e-02 +-1.261400000000000e-01 +-2.922500000000000e-01 +-4.484700000000000e-01 +-5.613000000000000e-01 +-6.131799999999999e-01 +-6.087300000000000e-01 +-5.674600000000000e-01 +-5.088400000000000e-01 +-4.399700000000000e-01 +-3.537800000000000e-01 +-2.382600000000000e-01 +-9.022300000000000e-02 + 7.600999999999999e-02 + 2.314700000000000e-01 + 3.457700000000000e-01 + 4.028100000000000e-01 + 4.089000000000000e-01 + 3.878800000000000e-01 + 3.661300000000000e-01 + 3.569800000000000e-01 + 3.545400000000000e-01 + 3.406100000000000e-01 + 2.993100000000000e-01 + 2.291900000000000e-01 + 1.446400000000000e-01 + 6.626400000000000e-02 + 7.958600000000000e-03 +-2.999400000000000e-02 +-5.733700000000000e-02 +-8.339700000000000e-02 +-1.081400000000000e-01 +-1.212700000000000e-01 +-1.094800000000000e-01 +-6.603900000000000e-02 + 3.653200000000000e-03 + 8.325200000000001e-02 + 1.508400000000000e-01 + 1.845900000000000e-01 + 1.669500000000000e-01 + 8.850900000000000e-02 +-4.705600000000000e-02 +-2.186800000000000e-01 +-3.889700000000000e-01 +-5.141900000000000e-01 +-5.609400000000000e-01 +-5.212599999999999e-01 +-4.164600000000000e-01 +-2.861000000000000e-01 +-1.679900000000000e-01 +-8.120200000000000e-02 +-2.176100000000000e-02 + 2.769300000000000e-02 + 8.235199999999999e-02 + 1.443500000000000e-01 + 2.023900000000000e-01 + 2.398600000000000e-01 + 2.448400000000000e-01 + 2.162000000000000e-01 + 1.648000000000000e-01 + 1.112600000000000e-01 + 8.182700000000000e-02 + 1.010500000000000e-01 + 1.809800000000000e-01 + 3.101300000000000e-01 + 4.498200000000000e-01 + 5.442800000000000e-01 + 5.431400000000000e-01 + 4.253500000000000e-01 + 2.098900000000000e-01 +-5.435500000000000e-02 +-3.133200000000000e-01 +-5.306400000000000e-01 +-6.937200000000000e-01 +-8.010400000000000e-01 +-8.438200000000000e-01 +-7.995300000000000e-01 +-6.454299999999999e-01 +-3.831300000000000e-01 +-5.435900000000000e-02 + 2.673300000000000e-01 + 5.073700000000000e-01 + 6.250100000000000e-01 + 6.296700000000000e-01 + 5.684399999999999e-01 + 4.937400000000000e-01 + 4.327800000000000e-01 + 3.778000000000000e-01 + 3.009700000000000e-01 + 1.814000000000000e-01 + 2.543800000000000e-02 +-1.322200000000000e-01 +-2.456700000000000e-01 +-2.816000000000000e-01 +-2.361200000000000e-01 +-1.366600000000000e-01 +-2.954200000000000e-02 + 3.966500000000000e-02 + 4.435900000000000e-02 +-1.383500000000000e-02 +-1.081800000000000e-01 +-2.008500000000000e-01 +-2.613700000000000e-01 +-2.802400000000000e-01 +-2.703800000000000e-01 +-2.559600000000000e-01 +-2.557100000000000e-01 +-2.717300000000000e-01 +-2.904500000000000e-01 +-2.940200000000000e-01 +-2.723900000000000e-01 +-2.268900000000000e-01 +-1.636300000000000e-01 +-8.401300000000000e-02 + 1.790500000000000e-02 + 1.477900000000000e-01 + 2.994400000000000e-01 + 4.503400000000000e-01 + 5.702900000000000e-01 + 6.378000000000000e-01 + 6.518600000000000e-01 + 6.290500000000000e-01 + 5.880200000000000e-01 + 5.339000000000000e-01 + 4.557200000000000e-01 + 3.392300000000000e-01 + 1.841900000000000e-01 + 1.090400000000000e-02 +-1.506800000000000e-01 +-2.809200000000000e-01 +-3.825400000000000e-01 +-4.733100000000000e-01 +-5.641699999999999e-01 +-6.403900000000000e-01 +-6.632400000000001e-01 +-5.938500000000000e-01 +-4.237700000000000e-01 +-1.894100000000000e-01 + 4.121200000000000e-02 + 2.016400000000000e-01 + 2.583900000000000e-01 + 2.210600000000000e-01 + 1.276400000000000e-01 + 1.890800000000000e-02 +-7.942399999999999e-02 +-1.571600000000000e-01 +-2.084400000000000e-01 +-2.230100000000000e-01 +-1.894500000000000e-01 +-1.074400000000000e-01 + 3.380400000000000e-03 + 1.082100000000000e-01 + 1.747300000000000e-01 + 1.917500000000000e-01 + 1.752400000000000e-01 + 1.572400000000000e-01 + 1.654700000000000e-01 + 2.072600000000000e-01 + 2.673400000000000e-01 + 3.185600000000000e-01 + 3.366700000000000e-01 + 3.100000000000000e-01 + 2.411000000000000e-01 + 1.434200000000000e-01 + 3.741800000000000e-02 +-5.320500000000000e-02 +-1.072600000000000e-01 +-1.148900000000000e-01 +-8.548900000000000e-02 +-4.732000000000000e-02 +-3.497400000000000e-02 +-6.936000000000000e-02 +-1.428300000000000e-01 +-2.213400000000000e-01 +-2.649900000000000e-01 +-2.546700000000000e-01 +-2.063400000000000e-01 +-1.612700000000000e-01 +-1.573800000000000e-01 +-2.006300000000000e-01 +-2.572700000000000e-01 +-2.735800000000000e-01 +-2.110400000000000e-01 +-7.322800000000000e-02 + 9.392100000000000e-02 + 2.287900000000000e-01 + 2.899100000000000e-01 + 2.775100000000000e-01 + 2.280100000000000e-01 + 1.874500000000000e-01 + 1.829300000000000e-01 + 2.106100000000000e-01 + 2.449000000000000e-01 + 2.589300000000000e-01 + 2.402300000000000e-01 + 1.921100000000000e-01 + 1.241700000000000e-01 + 4.274400000000000e-02 +-4.968100000000000e-02 +-1.470600000000000e-01 +-2.336600000000000e-01 +-2.876800000000000e-01 +-2.945200000000000e-01 +-2.595600000000000e-01 +-2.090300000000000e-01 +-1.754400000000000e-01 +-1.765000000000000e-01 +-2.024500000000000e-01 +-2.221500000000000e-01 +-2.047200000000000e-01 +-1.420400000000000e-01 +-5.636900000000000e-02 + 1.304300000000000e-02 + 3.549500000000000e-02 + 9.849900000000000e-03 +-3.274000000000000e-02 +-4.592300000000000e-02 + 5.790900000000000e-03 + 1.274600000000000e-01 + 2.909100000000000e-01 + 4.485400000000000e-01 + 5.548900000000000e-01 + 5.848100000000001e-01 + 5.409500000000000e-01 + 4.493800000000000e-01 + 3.469400000000000e-01 + 2.663000000000000e-01 + 2.239900000000000e-01 + 2.155200000000000e-01 + 2.192200000000000e-01 + 2.069900000000000e-01 + 1.570500000000000e-01 + 6.256200000000001e-02 +-6.827500000000000e-02 +-2.199600000000000e-01 +-3.798100000000000e-01 +-5.436600000000000e-01 +-7.134000000000000e-01 +-8.882600000000000e-01 +-1.056300000000000e+00 +-1.191700000000000e+00 +-1.261500000000000e+00 +-1.235700000000000e+00 +-1.098600000000000e+00 +-8.540800000000000e-01 +-5.238100000000000e-01 +-1.418700000000000e-01 + 2.529800000000000e-01 + 6.242799999999999e-01 + 9.430200000000000e-01 + 1.190400000000000e+00 + 1.357600000000000e+00 + 1.442400000000000e+00 + 1.445200000000000e+00 + 1.366300000000000e+00 + 1.206800000000000e+00 + 9.738400000000000e-01 + 6.862300000000000e-01 + 3.760700000000000e-01 + 8.441200000000000e-02 +-1.490400000000000e-01 +-2.976100000000000e-01 +-3.558600000000000e-01 +-3.406600000000000e-01 +-2.851300000000000e-01 +-2.278100000000000e-01 +-2.012100000000000e-01 +-2.237300000000000e-01 +-2.972100000000000e-01 +-4.106400000000000e-01 +-5.474599999999999e-01 +-6.924300000000000e-01 +-8.340000000000000e-01 +-9.612100000000000e-01 +-1.058000000000000e+00 +-1.100900000000000e+00 +-1.063700000000000e+00 +-9.300300000000000e-01 +-7.045100000000000e-01 +-4.167000000000000e-01 +-1.116300000000000e-01 + 1.683300000000000e-01 + 4.002800000000000e-01 + 5.861800000000000e-01 + 7.440800000000000e-01 + 8.913200000000000e-01 + 1.030800000000000e+00 + 1.148300000000000e+00 + 1.221300000000000e+00 + 1.230600000000000e+00 + 1.168700000000000e+00 + 1.039400000000000e+00 + 8.532000000000000e-01 + 6.242600000000000e-01 + 3.709900000000000e-01 + 1.177700000000000e-01 +-1.075800000000000e-01 +-2.827200000000000e-01 +-4.017300000000000e-01 +-4.801700000000000e-01 +-5.482200000000000e-01 +-6.343000000000000e-01 +-7.484100000000000e-01 +-8.759100000000000e-01 +-9.860300000000000e-01 +-1.049400000000000e+00 +-1.053000000000000e+00 +-1.003100000000000e+00 +-9.153800000000000e-01 +-7.999300000000000e-01 +-6.536100000000000e-01 +-4.650600000000000e-01 +-2.290400000000000e-01 + 4.084500000000000e-02 + 3.114200000000000e-01 + 5.436900000000000e-01 + 7.129100000000000e-01 + 8.220000000000000e-01 + 8.986600000000000e-01 + 9.769300000000000e-01 + 1.074300000000000e+00 + 1.178700000000000e+00 + 1.253400000000000e+00 + 1.257200000000000e+00 + 1.165800000000000e+00 + 9.834400000000000e-01 + 7.369500000000000e-01 + 4.592800000000000e-01 + 1.742300000000000e-01 +-1.082500000000000e-01 +-3.855500000000000e-01 +-6.522900000000000e-01 +-8.959300000000000e-01 +-1.101100000000000e+00 +-1.257700000000000e+00 +-1.364400000000000e+00 +-1.423900000000000e+00 +-1.433100000000000e+00 +-1.379100000000000e+00 +-1.245300000000000e+00 +-1.025600000000000e+00 +-7.364800000000000e-01 +-4.161900000000000e-01 +-1.104900000000000e-01 + 1.464400000000000e-01 + 3.433100000000000e-01 + 4.884500000000000e-01 + 5.964699999999999e-01 + 6.760100000000000e-01 + 7.279300000000000e-01 + 7.535600000000000e-01 + 7.642700000000000e-01 + 7.824700000000000e-01 + 8.318000000000000e-01 + 9.233100000000000e-01 + 1.047600000000000e+00 + 1.177600000000000e+00 + 1.279500000000000e+00 + 1.321900000000000e+00 + 1.280400000000000e+00 + 1.136800000000000e+00 + 8.814300000000000e-01 + 5.189900000000000e-01 + 7.613300000000001e-02 +-3.991000000000000e-01 +-8.496600000000000e-01 +-1.229300000000000e+00 +-1.517600000000000e+00 +-1.719400000000000e+00 +-1.850000000000000e+00 +-1.915800000000000e+00 +-1.907400000000000e+00 +-1.807400000000000e+00 +-1.608600000000000e+00 +-1.326000000000000e+00 +-9.924500000000001e-01 +-6.406500000000001e-01 +-2.865800000000000e-01 + 7.298100000000000e-02 + 4.451900000000000e-01 + 8.199200000000000e-01 + 1.159200000000000e+00 + 1.407400000000000e+00 + 1.516800000000000e+00 + 1.473900000000000e+00 + 1.308800000000000e+00 + 1.084200000000000e+00 + 8.699100000000000e-01 + 7.171100000000000e-01 + 6.446700000000000e-01 + 6.400400000000001e-01 + 6.704100000000000e-01 + 6.971600000000000e-01 + 6.879900000000000e-01 + 6.245700000000000e-01 + 5.048800000000000e-01 + 3.403100000000000e-01 + 1.483500000000000e-01 +-5.640800000000000e-02 +-2.682000000000000e-01 +-4.894100000000000e-01 +-7.232700000000000e-01 +-9.645300000000000e-01 +-1.194600000000000e+00 +-1.385400000000000e+00 +-1.509800000000000e+00 +-1.553200000000000e+00 +-1.518800000000000e+00 +-1.423300000000000e+00 +-1.286000000000000e+00 +-1.117200000000000e+00 +-9.131700000000000e-01 +-6.604800000000000e-01 +-3.474800000000000e-01 + 2.277100000000000e-02 + 4.258100000000000e-01 + 8.197100000000000e-01 + 1.158600000000000e+00 + 1.409600000000000e+00 + 1.562900000000000e+00 + 1.630600000000000e+00 + 1.633000000000000e+00 + 1.582800000000000e+00 + 1.477500000000000e+00 + 1.306200000000000e+00 + 1.066600000000000e+00 + 7.793200000000000e-01 + 4.868200000000000e-01 + 2.355900000000000e-01 + 5.101000000000000e-02 +-7.786200000000000e-02 +-1.921900000000000e-01 +-3.387600000000000e-01 +-5.423900000000000e-01 +-7.927100000000000e-01 +-1.052600000000000e+00 +-1.280300000000000e+00 +-1.449000000000000e+00 +-1.551200000000000e+00 +-1.588800000000000e+00 +-1.560000000000000e+00 +-1.455300000000000e+00 +-1.266500000000000e+00 +-9.990700000000000e-01 +-6.776300000000000e-01 +-3.363500000000000e-01 +-2.284900000000000e-03 + 3.163200000000000e-01 + 6.270800000000000e-01 + 9.378800000000000e-01 + 1.240500000000000e+00 + 1.506200000000000e+00 + 1.696500000000000e+00 + 1.782300000000000e+00 + 1.757400000000000e+00 + 1.638700000000000e+00 + 1.453000000000000e+00 + 1.222600000000000e+00 + 9.569000000000000e-01 + 6.554800000000000e-01 + 3.168100000000000e-01 +-5.322200000000000e-02 +-4.384000000000000e-01 +-8.142100000000000e-01 +-1.151800000000000e+00 +-1.421600000000000e+00 +-1.597400000000000e+00 +-1.661900000000000e+00 +-1.612600000000000e+00 +-1.465100000000000e+00 +-1.250700000000000e+00 +-1.005900000000000e+00 +-7.595900000000000e-01 +-5.248200000000000e-01 +-2.989200000000000e-01 +-7.198100000000000e-02 + 1.622600000000000e-01 + 3.995600000000000e-01 + 6.256200000000000e-01 + 8.221100000000000e-01 + 9.735700000000000e-01 + 1.071200000000000e+00 + 1.112500000000000e+00 + 1.099300000000000e+00 + 1.035500000000000e+00 + 9.271500000000000e-01 + 7.825400000000000e-01 + 6.121000000000000e-01 + 4.271200000000000e-01 + 2.381300000000000e-01 + 5.391100000000000e-02 +-1.182600000000000e-01 +-2.719000000000000e-01 +-4.011800000000000e-01 +-5.015800000000000e-01 +-5.712400000000000e-01 +-6.117100000000000e-01 +-6.273700000000000e-01 +-6.236600000000000e-01 +-6.045800000000000e-01 +-5.709200000000000e-01 +-5.201800000000000e-01 +-4.487700000000000e-01 +-3.558200000000000e-01 +-2.469700000000000e-01 +-1.354100000000000e-01 +-3.866600000000000e-02 + 2.875300000000000e-02 + 6.335200000000001e-02 + 7.676800000000000e-02 + 9.252500000000000e-02 + 1.358900000000000e-01 + 2.215800000000000e-01 + 3.456300000000000e-01 + 4.859600000000000e-01 + 6.107399999999999e-01 + 6.899300000000000e-01 + 7.041300000000000e-01 + 6.475800000000000e-01 + 5.264600000000000e-01 + 3.557900000000000e-01 + 1.569000000000000e-01 +-4.488000000000000e-02 +-2.244200000000000e-01 +-3.632300000000000e-01 +-4.552700000000000e-01 +-5.075499999999999e-01 +-5.335100000000000e-01 +-5.423400000000000e-01 +-5.315600000000000e-01 +-4.891800000000000e-01 +-4.049400000000000e-01 +-2.830300000000000e-01 +-1.461300000000000e-01 +-2.597800000000000e-02 + 5.419900000000000e-02 + 9.350700000000001e-02 + 1.128800000000000e-01 + 1.396400000000000e-01 + 1.876200000000000e-01 + 2.470200000000000e-01 + 2.919200000000000e-01 + 3.003400000000000e-01 + 2.725100000000000e-01 + 2.338600000000000e-01 + 2.199800000000000e-01 + 2.536500000000000e-01 + 3.295800000000000e-01 + 4.166800000000000e-01 + 4.755400000000000e-01 + 4.785900000000000e-01 + 4.202100000000000e-01 + 3.121700000000000e-01 + 1.705700000000000e-01 + 5.280900000000000e-03 +-1.810900000000000e-01 +-3.857400000000000e-01 +-5.975300000000000e-01 +-7.952000000000000e-01 +-9.533300000000000e-01 +-1.051200000000000e+00 +-1.078400000000000e+00 +-1.033600000000000e+00 +-9.208800000000000e-01 +-7.453100000000000e-01 +-5.143100000000000e-01 +-2.408200000000000e-01 + 5.427000000000000e-02 + 3.443400000000000e-01 + 6.034600000000000e-01 + 8.140300000000000e-01 + 9.712800000000000e-01 + 1.082400000000000e+00 + 1.160500000000000e+00 + 1.216200000000000e+00 + 1.249300000000000e+00 + 1.246300000000000e+00 + 1.182600000000000e+00 + 1.032500000000000e+00 + 7.811399999999999e-01 + 4.352000000000000e-01 + 2.440100000000000e-02 +-4.059900000000000e-01 +-8.089499999999999e-01 +-1.148100000000000e+00 +-1.402200000000000e+00 +-1.561600000000000e+00 +-1.620600000000000e+00 +-1.574100000000000e+00 +-1.420900000000000e+00 +-1.172000000000000e+00 +-8.551500000000000e-01 +-5.112800000000000e-01 +-1.829000000000000e-01 + 9.884999999999999e-02 + 3.212000000000000e-01 + 4.878400000000000e-01 + 6.111799999999999e-01 + 7.047099999999999e-01 + 7.791400000000001e-01 + 8.414000000000000e-01 + 8.934900000000000e-01 + 9.297400000000000e-01 + 9.352100000000000e-01 + 8.891500000000000e-01 + 7.747200000000000e-01 + 5.906600000000000e-01 + 3.573400000000000e-01 + 1.124200000000000e-01 +-1.025000000000000e-01 +-2.567000000000000e-01 +-3.387900000000000e-01 +-3.561100000000000e-01 +-3.277900000000000e-01 +-2.772600000000000e-01 +-2.270700000000000e-01 +-1.952400000000000e-01 +-1.913000000000000e-01 +-2.123700000000000e-01 +-2.434100000000000e-01 +-2.645000000000000e-01 +-2.634300000000000e-01 +-2.456500000000000e-01 +-2.332500000000000e-01 +-2.510900000000000e-01 +-3.080400000000000e-01 +-3.863000000000000e-01 +-4.474000000000000e-01 +-4.523300000000000e-01 +-3.829100000000000e-01 +-2.508400000000000e-01 +-8.920400000000001e-02 + 6.645800000000000e-02 + 1.944800000000000e-01 + 2.913500000000000e-01 + 3.643100000000000e-01 + 4.203800000000000e-01 + 4.603000000000000e-01 + 4.796000000000000e-01 + 4.727800000000000e-01 + 4.356600000000000e-01 + 3.648900000000000e-01 + 2.582600000000000e-01 + 1.189800000000000e-01 +-3.762200000000000e-02 +-1.815700000000000e-01 +-2.753800000000000e-01 +-2.896200000000000e-01 +-2.183200000000000e-01 +-8.353500000000000e-02 + 7.460400000000000e-02 + 2.163400000000000e-01 + 3.172400000000000e-01 + 3.706500000000000e-01 + 3.785000000000000e-01 + 3.397700000000000e-01 + 2.472100000000000e-01 + 9.531400000000000e-02 +-1.066700000000000e-01 +-3.277300000000000e-01 +-5.210900000000001e-01 +-6.413100000000000e-01 +-6.626200000000000e-01 +-5.880500000000000e-01 +-4.447800000000000e-01 +-2.697000000000000e-01 +-9.409200000000000e-02 + 6.399600000000000e-02 + 1.971500000000000e-01 + 2.997000000000000e-01 + 3.602700000000000e-01 + 3.622800000000000e-01 + 2.935400000000000e-01 + 1.593300000000000e-01 +-1.011900000000000e-02 +-1.654000000000000e-01 +-2.565700000000000e-01 +-2.559900000000000e-01 +-1.720500000000000e-01 +-4.447900000000000e-02 + 7.696300000000000e-02 + 1.576500000000000e-01 + 1.914400000000000e-01 + 1.943000000000000e-01 + 1.842700000000000e-01 + 1.636800000000000e-01 + 1.175500000000000e-01 + 2.961100000000000e-02 +-9.682900000000000e-02 +-2.304100000000000e-01 +-3.239900000000000e-01 +-3.404300000000000e-01 +-2.741800000000000e-01 +-1.536900000000000e-01 +-2.355000000000000e-02 + 8.063200000000000e-02 + 1.478200000000000e-01 + 1.891400000000000e-01 + 2.226800000000000e-01 + 2.583200000000000e-01 + 2.926900000000000e-01 + 3.145100000000000e-01 + 3.132000000000000e-01 + 2.835100000000000e-01 + 2.253500000000000e-01 + 1.428600000000000e-01 + 4.613400000000000e-02 +-4.653800000000000e-02 +-1.114000000000000e-01 +-1.297300000000000e-01 +-1.009300000000000e-01 +-4.795800000000000e-02 +-8.120700000000000e-03 +-1.251800000000000e-02 +-6.722200000000000e-02 +-1.494200000000000e-01 +-2.217900000000000e-01 +-2.553400000000000e-01 +-2.452100000000000e-01 +-2.097300000000000e-01 +-1.756800000000000e-01 +-1.616900000000000e-01 +-1.710800000000000e-01 +-1.961800000000000e-01 +-2.271100000000000e-01 +-2.565900000000000e-01 +-2.782900000000000e-01 +-2.834200000000000e-01 +-2.617100000000000e-01 +-2.075100000000000e-01 +-1.257100000000000e-01 +-3.056700000000000e-02 + 6.310499999999999e-02 + 1.500000000000000e-01 + 2.371300000000000e-01 + 3.363200000000000e-01 + 4.519600000000000e-01 + 5.734200000000000e-01 + 6.777600000000000e-01 + 7.401500000000000e-01 + 7.439500000000000e-01 + 6.841300000000000e-01 + 5.646500000000000e-01 + 3.951400000000000e-01 + 1.912400000000000e-01 +-2.292300000000000e-02 +-2.160900000000000e-01 +-3.583800000000000e-01 +-4.336100000000000e-01 +-4.467200000000000e-01 +-4.195100000000000e-01 +-3.768200000000000e-01 +-3.331100000000000e-01 +-2.893500000000000e-01 +-2.416800000000000e-01 +-1.934500000000000e-01 +-1.591000000000000e-01 +-1.558000000000000e-01 +-1.893900000000000e-01 +-2.467900000000000e-01 +-3.020100000000000e-01 +-3.316400000000000e-01 +-3.275700000000000e-01 +-2.972500000000000e-01 +-2.520500000000000e-01 +-1.945400000000000e-01 +-1.160500000000000e-01 +-6.790600000000000e-03 + 1.299600000000000e-01 + 2.722200000000000e-01 + 3.880900000000000e-01 + 4.534000000000000e-01 + 4.660200000000000e-01 + 4.466500000000000e-01 + 4.263000000000000e-01 + 4.285200000000000e-01 + 4.570700000000000e-01 + 4.943500000000000e-01 + 5.094900000000000e-01 + 4.713000000000000e-01 + 3.613900000000000e-01 + 1.838300000000000e-01 +-3.197100000000000e-02 +-2.386300000000000e-01 +-3.885900000000000e-01 +-4.559900000000000e-01 +-4.507600000000000e-01 +-4.141200000000000e-01 +-3.947300000000000e-01 +-4.183600000000000e-01 +-4.704800000000000e-01 +-5.046000000000000e-01 +-4.724700000000000e-01 +-3.564500000000000e-01 +-1.824300000000000e-01 +-4.765900000000000e-03 + 1.261000000000000e-01 + 1.908300000000000e-01 + 2.060200000000000e-01 + 2.060000000000000e-01 + 2.169100000000000e-01 + 2.417100000000000e-01 + 2.645500000000000e-01 + 2.677500000000000e-01 + 2.468100000000000e-01 + 2.125900000000000e-01 + 1.811900000000000e-01 + 1.609600000000000e-01 + 1.465400000000000e-01 + 1.229700000000000e-01 + 7.576900000000000e-02 +-9.583800000000000e-05 +-9.617299999999999e-02 +-1.919300000000000e-01 +-2.602200000000000e-01 +-2.760500000000000e-01 +-2.275000000000000e-01 +-1.252400000000000e-01 +-4.054500000000000e-03 + 8.835300000000000e-02 + 1.130000000000000e-01 + 6.096000000000000e-02 +-3.938500000000000e-02 +-1.357700000000000e-01 +-1.798400000000000e-01 +-1.525100000000000e-01 +-7.130900000000000e-02 + 2.415500000000000e-02 + 9.745700000000000e-02 + 1.340500000000000e-01 + 1.422700000000000e-01 + 1.393800000000000e-01 + 1.356500000000000e-01 + 1.290900000000000e-01 + 1.128400000000000e-01 + 8.659200000000000e-02 + 6.057000000000000e-02 + 4.795900000000000e-02 + 5.212800000000000e-02 + 6.001900000000000e-02 + 4.826600000000000e-02 +-1.680300000000000e-03 +-9.049300000000000e-02 +-1.995400000000000e-01 +-3.018000000000000e-01 +-3.767000000000000e-01 +-4.182200000000000e-01 +-4.313300000000000e-01 +-4.210000000000000e-01 +-3.830900000000000e-01 +-3.046700000000000e-01 +-1.737100000000000e-01 + 8.553200000000000e-03 + 2.211900000000000e-01 + 4.276100000000000e-01 + 5.881200000000000e-01 + 6.744200000000000e-01 + 6.787600000000000e-01 + 6.140900000000000e-01 + 5.060700000000000e-01 + 3.815300000000000e-01 + 2.590000000000000e-01 + 1.455100000000000e-01 + 4.040500000000000e-02 +-5.694600000000000e-02 +-1.404700000000000e-01 +-1.966100000000000e-01 +-2.105000000000000e-01 +-1.761900000000000e-01 +-1.045700000000000e-01 +-2.375400000000000e-02 + 2.952500000000000e-02 + 2.398300000000000e-02 +-5.357900000000000e-02 +-1.929800000000000e-01 +-3.647400000000000e-01 +-5.308400000000000e-01 +-6.568700000000000e-01 +-7.204199999999999e-01 +-7.137100000000000e-01 +-6.412099999999999e-01 +-5.151500000000000e-01 +-3.515600000000000e-01 +-1.679500000000000e-01 + 1.765300000000000e-02 + 1.877500000000000e-01 + 3.271600000000000e-01 + 4.255400000000000e-01 + 4.794500000000000e-01 + 4.928600000000000e-01 + 4.758800000000000e-01 + 4.423500000000000e-01 + 4.077200000000000e-01 + 3.871200000000000e-01 + 3.929000000000000e-01 + 4.305200000000000e-01 + 4.932000000000000e-01 + 5.588300000000000e-01 + 5.931999999999999e-01 + 5.614200000000000e-01 + 4.441500000000000e-01 + 2.501900000000000e-01 + 1.682300000000000e-02 +-2.045800000000000e-01 +-3.712800000000000e-01 +-4.677600000000000e-01 +-5.093000000000000e-01 +-5.286400000000000e-01 +-5.542800000000000e-01 +-5.938400000000000e-01 +-6.317400000000000e-01 +-6.408500000000000e-01 +-5.991400000000000e-01 +-5.011500000000000e-01 +-3.591400000000000e-01 +-1.964600000000000e-01 +-3.893600000000000e-02 + 9.145499999999999e-02 + 1.806300000000000e-01 + 2.255200000000000e-01 + 2.359400000000000e-01 + 2.321400000000000e-01 + 2.357900000000000e-01 + 2.571500000000000e-01 + 2.865400000000000e-01 + 2.977400000000000e-01 + 2.639600000000000e-01 + 1.771000000000000e-01 + 5.680800000000000e-02 +-5.832300000000000e-02 +-1.326300000000000e-01 +-1.536000000000000e-01 +-1.362700000000000e-01 +-1.091900000000000e-01 +-9.253800000000000e-02 +-8.477300000000000e-02 +-6.673200000000000e-02 +-1.891100000000000e-02 + 6.210500000000000e-02 + 1.602400000000000e-01 + 2.507300000000000e-01 + 3.153100000000000e-01 + 3.501000000000000e-01 + 3.615400000000000e-01 + 3.563200000000000e-01 + 3.348100000000000e-01 + 2.931300000000000e-01 + 2.299100000000000e-01 + 1.503600000000000e-01 + 6.331800000000000e-02 +-2.494300000000000e-02 +-1.129300000000000e-01 +-1.989600000000000e-01 +-2.739800000000000e-01 +-3.211100000000000e-01 +-3.262100000000000e-01 +-2.928000000000000e-01 +-2.481900000000000e-01 +-2.319700000000000e-01 +-2.713500000000000e-01 +-3.598600000000000e-01 +-4.562600000000000e-01 +-5.064700000000000e-01 +-4.749500000000000e-01 +-3.638500000000000e-01 +-2.077100000000000e-01 +-4.932900000000000e-02 + 8.405700000000001e-02 + 1.873100000000000e-01 + 2.650600000000000e-01 + 3.150500000000000e-01 + 3.241400000000000e-01 + 2.820700000000000e-01 + 2.003300000000000e-01 + 1.173100000000000e-01 + 8.035500000000000e-02 + 1.152700000000000e-01 + 2.057800000000000e-01 + 3.004800000000000e-01 + 3.447700000000000e-01 + 3.158800000000000e-01 + 2.360700000000000e-01 + 1.547600000000000e-01 + 1.132800000000000e-01 + 1.182000000000000e-01 + 1.414700000000000e-01 + 1.449900000000000e-01 + 1.089300000000000e-01 + 4.236100000000000e-02 +-2.981900000000000e-02 +-9.041600000000000e-02 +-1.433700000000000e-01 +-2.061200000000000e-01 +-2.880400000000000e-01 +-3.738400000000000e-01 +-4.265800000000000e-01 +-4.091200000000000e-01 +-3.083200000000000e-01 +-1.444300000000000e-01 + 3.989600000000000e-02 + 2.011300000000000e-01 + 3.111200000000000e-01 + 3.586900000000000e-01 + 3.408400000000000e-01 + 2.555900000000000e-01 + 1.050400000000000e-01 +-9.442500000000000e-02 +-3.064900000000000e-01 +-4.832500000000000e-01 +-5.854700000000000e-01 +-6.013200000000000e-01 +-5.493800000000000e-01 +-4.628800000000000e-01 +-3.664200000000000e-01 +-2.624700000000000e-01 +-1.375800000000000e-01 + 1.756400000000000e-02 + 1.909600000000000e-01 + 3.499700000000000e-01 + 4.605900000000000e-01 + 5.112300000000000e-01 + 5.223300000000000e-01 + 5.333800000000000e-01 + 5.754000000000000e-01 + 6.479000000000000e-01 + 7.164600000000000e-01 + 7.326500000000000e-01 + 6.624600000000000e-01 + 5.048000000000000e-01 + 2.890200000000000e-01 + 5.575800000000000e-02 +-1.644900000000000e-01 +-3.605300000000000e-01 +-5.334200000000000e-01 +-6.807100000000000e-01 +-7.852000000000000e-01 +-8.173200000000000e-01 +-7.503000000000000e-01 +-5.787200000000000e-01 +-3.291800000000000e-01 +-5.609500000000000e-02 + 1.757400000000000e-01 + 3.137500000000000e-01 + 3.352600000000000e-01 + 2.530400000000000e-01 + 1.070900000000000e-01 +-5.284700000000000e-02 +-1.861600000000000e-01 +-2.735200000000000e-01 +-3.179800000000000e-01 +-3.359900000000000e-01 +-3.441800000000000e-01 +-3.490700000000000e-01 +-3.445700000000000e-01 +-3.171300000000000e-01 +-2.543500000000000e-01 +-1.516700000000000e-01 +-1.428400000000000e-02 + 1.451800000000000e-01 + 3.105900000000000e-01 + 4.653600000000000e-01 + 5.943800000000000e-01 + 6.857799999999999e-01 + 7.331800000000001e-01 + 7.373400000000000e-01 + 7.054200000000000e-01 + 6.469600000000000e-01 + 5.684500000000000e-01 + 4.702300000000000e-01 + 3.483700000000000e-01 + 2.014200000000000e-01 + 3.766000000000000e-02 +-1.221900000000000e-01 +-2.501200000000000e-01 +-3.223900000000000e-01 +-3.319800000000000e-01 +-2.951800000000000e-01 +-2.481300000000000e-01 +-2.334100000000000e-01 +-2.820500000000000e-01 +-3.987100000000000e-01 +-5.570400000000000e-01 +-7.084700000000000e-01 +-8.012100000000000e-01 +-8.012500000000000e-01 +-7.054300000000000e-01 +-5.398800000000000e-01 +-3.450400000000000e-01 +-1.556200000000000e-01 + 1.294300000000000e-02 + 1.640000000000000e-01 + 3.067800000000000e-01 + 4.405100000000000e-01 + 5.469900000000000e-01 + 5.971900000000000e-01 + 5.678000000000000e-01 + 4.567700000000000e-01 + 2.879900000000000e-01 + 1.025000000000000e-01 +-5.770300000000000e-02 +-1.632000000000000e-01 +-2.019400000000000e-01 +-1.757100000000000e-01 +-9.417200000000001e-02 + 2.817900000000000e-02 + 1.715300000000000e-01 + 3.106100000000000e-01 + 4.188100000000000e-01 + 4.764300000000000e-01 + 4.782800000000000e-01 + 4.352000000000000e-01 + 3.676500000000000e-01 + 2.951600000000000e-01 + 2.281200000000000e-01 + 1.659500000000000e-01 + 1.012100000000000e-01 + 2.527400000000000e-02 +-6.830000000000000e-02 +-1.829600000000000e-01 +-3.185800000000000e-01 +-4.688600000000000e-01 +-6.180500000000000e-01 +-7.408600000000000e-01 +-8.088300000000000e-01 +-8.017700000000000e-01 +-7.181800000000000e-01 +-5.778100000000000e-01 +-4.134800000000000e-01 +-2.562400000000000e-01 +-1.222000000000000e-01 +-8.399999999999999e-03 + 1.009000000000000e-01 + 2.219500000000000e-01 + 3.608000000000000e-01 + 5.091500000000000e-01 + 6.474200000000000e-01 + 7.518200000000000e-01 + 8.016200000000000e-01 + 7.844500000000000e-01 + 6.994800000000000e-01 + 5.585400000000000e-01 + 3.844900000000000e-01 + 2.061900000000000e-01 + 5.013000000000000e-02 +-6.824600000000000e-02 +-1.495900000000000e-01 +-2.088900000000000e-01 +-2.669700000000000e-01 +-3.392900000000000e-01 +-4.273800000000000e-01 +-5.174500000000000e-01 +-5.866900000000000e-01 +-6.143000000000000e-01 +-5.916500000000000e-01 +-5.267700000000000e-01 +-4.407000000000000e-01 +-3.574600000000000e-01 +-2.924700000000000e-01 +-2.453000000000000e-01 +-2.007800000000000e-01 +-1.381800000000000e-01 +-4.337300000000000e-02 + 8.288000000000000e-02 + 2.254900000000000e-01 + 3.637100000000000e-01 + 4.820600000000000e-01 + 5.759900000000000e-01 + 6.488100000000000e-01 + 7.028600000000000e-01 + 7.326000000000000e-01 + 7.258700000000000e-01 + 6.733100000000000e-01 + 5.788400000000000e-01 + 4.621300000000000e-01 + 3.494400000000000e-01 + 2.580900000000000e-01 + 1.855600000000000e-01 + 1.121000000000000e-01 + 1.629400000000000e-02 +-1.069400000000000e-01 +-2.391400000000000e-01 +-3.483100000000000e-01 +-4.104500000000000e-01 +-4.280800000000000e-01 +-4.325500000000000e-01 +-4.673200000000000e-01 +-5.621100000000000e-01 +-7.139100000000000e-01 +-8.862500000000000e-01 +-1.026300000000000e+00 +-1.089300000000000e+00 +-1.055300000000000e+00 +-9.323600000000000e-01 +-7.455100000000000e-01 +-5.222400000000000e-01 +-2.821400000000000e-01 +-3.484200000000000e-02 + 2.156800000000000e-01 + 4.653200000000000e-01 + 7.061200000000000e-01 + 9.257400000000000e-01 + 1.109300000000000e+00 + 1.242300000000000e+00 + 1.314000000000000e+00 + 1.319600000000000e+00 + 1.260400000000000e+00 + 1.142100000000000e+00 + 9.713700000000000e-01 + 7.545900000000000e-01 + 5.000500000000000e-01 + 2.228300000000000e-01 +-5.215700000000000e-02 +-2.936500000000000e-01 +-4.747000000000000e-01 +-5.853400000000000e-01 +-6.390100000000000e-01 +-6.670199999999999e-01 +-7.031800000000000e-01 +-7.670300000000000e-01 +-8.556200000000000e-01 +-9.476500000000000e-01 +-1.015500000000000e+00 +-1.036600000000000e+00 +-9.971500000000000e-01 +-8.903700000000000e-01 +-7.136600000000000e-01 +-4.705300000000000e-01 +-1.759100000000000e-01 + 1.413400000000000e-01 + 4.439700000000000e-01 + 6.987700000000000e-01 + 8.881300000000000e-01 + 1.012600000000000e+00 + 1.082500000000000e+00 + 1.106700000000000e+00 + 1.086500000000000e+00 + 1.019900000000000e+00 + 9.113700000000000e-01 + 7.751500000000000e-01 + 6.278800000000000e-01 + 4.748300000000000e-01 + 3.020600000000000e-01 + 8.420100000000000e-02 +-1.947000000000000e-01 +-5.212900000000000e-01 +-8.497000000000000e-01 +-1.119900000000000e+00 +-1.286700000000000e+00 +-1.340400000000000e+00 +-1.305300000000000e+00 +-1.219300000000000e+00 +-1.108400000000000e+00 +-9.740400000000000e-01 +-7.995300000000000e-01 +-5.680400000000000e-01 +-2.781800000000000e-01 + 5.228600000000000e-02 + 3.936400000000000e-01 + 7.143200000000000e-01 + 9.868300000000000e-01 + 1.189100000000000e+00 + 1.305100000000000e+00 + 1.329100000000000e+00 + 1.269500000000000e+00 + 1.148700000000000e+00 + 9.954100000000000e-01 + 8.328600000000000e-01 + 6.717500000000000e-01 + 5.121800000000000e-01 + 3.524700000000000e-01 + 1.964400000000000e-01 + 5.245600000000000e-02 +-7.467200000000000e-02 +-1.908600000000000e-01 +-3.112100000000000e-01 +-4.496700000000000e-01 +-6.080500000000000e-01 +-7.736800000000000e-01 +-9.275400000000000e-01 +-1.055700000000000e+00 +-1.153700000000000e+00 +-1.221000000000000e+00 +-1.251300000000000e+00 +-1.229400000000000e+00 +-1.140300000000000e+00 +-9.817900000000001e-01 +-7.700000000000000e-01 +-5.302800000000000e-01 +-2.794300000000000e-01 +-1.482900000000000e-02 + 2.784400000000000e-01 + 6.059700000000000e-01 + 9.447300000000000e-01 + 1.243400000000000e+00 + 1.445000000000000e+00 + 1.517100000000000e+00 + 1.467600000000000e+00 + 1.336200000000000e+00 + 1.167300000000000e+00 + 9.877899999999999e-01 + 8.019400000000000e-01 + 6.051400000000000e-01 + 3.996800000000000e-01 + 1.976900000000000e-01 + 9.775100000000000e-03 +-1.676400000000000e-01 +-3.509700000000000e-01 +-5.520900000000000e-01 +-7.589800000000000e-01 +-9.329499999999999e-01 +-1.028600000000000e+00 +-1.023500000000000e+00 +-9.339000000000000e-01 +-8.037200000000000e-01 +-6.737300000000001e-01 +-5.550900000000000e-01 +-4.280400000000000e-01 +-2.664800000000000e-01 +-6.824300000000000e-02 + 1.338600000000000e-01 + 2.896700000000000e-01 + 3.643400000000000e-01 + 3.606700000000000e-01 + 3.146700000000000e-01 + 2.689800000000000e-01 + 2.456900000000000e-01 + 2.383000000000000e-01 + 2.258800000000000e-01 + 1.944400000000000e-01 + 1.468600000000000e-01 + 9.503600000000000e-02 + 4.441900000000000e-02 +-1.244500000000000e-02 +-8.593500000000000e-02 +-1.718500000000000e-01 +-2.437100000000000e-01 +-2.651600000000000e-01 +-2.155600000000000e-01 +-1.092200000000000e-01 + 8.227600000000000e-03 + 8.642500000000000e-02 + 1.017900000000000e-01 + 7.185200000000000e-02 + 4.226100000000000e-02 + 5.597300000000000e-02 + 1.262300000000000e-01 + 2.310800000000000e-01 + 3.311500000000000e-01 + 3.963000000000000e-01 + 4.224500000000000e-01 + 4.286600000000000e-01 + 4.392400000000000e-01 + 4.649200000000000e-01 + 4.954400000000000e-01 + 5.065200000000000e-01 + 4.738500000000000e-01 + 3.840900000000000e-01 + 2.372500000000000e-01 + 4.201200000000000e-02 +-1.896700000000000e-01 +-4.441200000000000e-01 +-7.036700000000000e-01 +-9.451100000000000e-01 +-1.142800000000000e+00 +-1.276400000000000e+00 +-1.338800000000000e+00 +-1.336400000000000e+00 +-1.282200000000000e+00 +-1.182400000000000e+00 +-1.028200000000000e+00 +-7.983700000000000e-01 +-4.750900000000000e-01 +-6.219800000000000e-02 + 4.045700000000000e-01 + 8.646200000000001e-01 + 1.254400000000000e+00 + 1.531800000000000e+00 + 1.688600000000000e+00 + 1.743400000000000e+00 + 1.722200000000000e+00 + 1.639400000000000e+00 + 1.492500000000000e+00 + 1.273200000000000e+00 + 9.845500000000000e-01 + 6.501400000000001e-01 + 3.083200000000000e-01 +-5.324000000000000e-03 +-2.742700000000000e-01 +-5.050600000000000e-01 +-7.172300000000000e-01 +-9.268200000000000e-01 +-1.134500000000000e+00 +-1.324200000000000e+00 +-1.470700000000000e+00 +-1.549300000000000e+00 +-1.542700000000000e+00 +-1.444700000000000e+00 +-1.261800000000000e+00 +-1.013600000000000e+00 +-7.304000000000000e-01 +-4.441400000000000e-01 +-1.774500000000000e-01 + 6.423500000000000e-02 + 2.897300000000000e-01 + 5.087500000000000e-01 + 7.171200000000000e-01 + 8.923700000000000e-01 + 1.005300000000000e+00 + 1.041000000000000e+00 + 1.013600000000000e+00 + 9.632400000000000e-01 + 9.335599999999999e-01 + 9.453700000000000e-01 + 9.834700000000000e-01 + 1.006100000000000e+00 + 9.702200000000000e-01 + 8.559300000000000e-01 + 6.734700000000000e-01 + 4.511300000000000e-01 + 2.143500000000000e-01 +-2.811800000000000e-02 +-2.821900000000000e-01 +-5.540000000000000e-01 +-8.351600000000000e-01 +-1.098400000000000e+00 +-1.306500000000000e+00 +-1.427600000000000e+00 +-1.447600000000000e+00 +-1.373400000000000e+00 +-1.227600000000000e+00 +-1.038600000000000e+00 +-8.320100000000000e-01 +-6.254700000000000e-01 +-4.272200000000000e-01 +-2.371300000000000e-01 +-4.982400000000000e-02 + 1.406700000000000e-01 + 3.360500000000000e-01 + 5.304700000000000e-01 + 7.106100000000000e-01 + 8.594900000000000e-01 + 9.627500000000000e-01 + 1.014800000000000e+00 + 1.021800000000000e+00 + 1.000200000000000e+00 + 9.690600000000000e-01 + 9.405700000000000e-01 + 9.112400000000000e-01 + 8.607100000000000e-01 + 7.600000000000000e-01 + 5.870000000000000e-01 + 3.409100000000000e-01 + 4.670000000000000e-02 +-2.544200000000000e-01 +-5.236200000000000e-01 +-7.403900000000000e-01 +-9.055500000000000e-01 +-1.029400000000000e+00 +-1.114700000000000e+00 +-1.147500000000000e+00 +-1.104800000000000e+00 +-9.730900000000000e-01 +-7.655400000000000e-01 +-5.232000000000000e-01 +-2.985100000000000e-01 +-1.304700000000000e-01 +-2.742900000000000e-02 + 3.274200000000000e-02 + 8.679900000000000e-02 + 1.657300000000000e-01 + 2.813900000000000e-01 + 4.247000000000000e-01 + 5.719900000000000e-01 + 6.936000000000000e-01 + 7.612500000000000e-01 + 7.552800000000000e-01 + 6.723400000000000e-01 + 5.306999999999999e-01 + 3.674500000000000e-01 + 2.244700000000000e-01 + 1.280700000000000e-01 + 7.421500000000000e-02 + 3.016500000000000e-02 +-4.575700000000000e-02 +-1.774900000000000e-01 +-3.542400000000000e-01 +-5.340900000000000e-01 +-6.654700000000000e-01 +-7.122400000000000e-01 +-6.669200000000000e-01 +-5.460900000000000e-01 +-3.748000000000000e-01 +-1.729400000000000e-01 + 4.719000000000000e-02 + 2.735700000000000e-01 + 4.862300000000000e-01 + 6.572200000000000e-01 + 7.599100000000000e-01 + 7.811700000000000e-01 + 7.269300000000000e-01 + 6.173900000000000e-01 + 4.751600000000000e-01 + 3.147900000000000e-01 + 1.402500000000000e-01 +-4.929700000000000e-02 +-2.504200000000000e-01 +-4.497900000000000e-01 +-6.254400000000000e-01 +-7.536300000000000e-01 +-8.171600000000000e-01 +-8.111200000000000e-01 +-7.443900000000000e-01 +-6.371100000000000e-01 +-5.155900000000000e-01 +-4.052100000000000e-01 +-3.225600000000000e-01 +-2.684900000000000e-01 +-2.253900000000000e-01 +-1.617500000000000e-01 +-4.482200000000000e-02 + 1.426300000000000e-01 + 3.891300000000000e-01 + 6.528600000000000e-01 + 8.750800000000000e-01 + 1.003800000000000e+00 + 1.015900000000000e+00 + 9.261400000000000e-01 + 7.770300000000000e-01 + 6.152900000000000e-01 + 4.692100000000000e-01 + 3.400000000000000e-01 + 2.112500000000000e-01 + 6.866999999999999e-02 +-8.438200000000000e-02 +-2.262400000000000e-01 +-3.305500000000000e-01 +-3.832000000000000e-01 +-3.902500000000000e-01 +-3.719300000000000e-01 +-3.489500000000000e-01 +-3.321900000000000e-01 +-3.225300000000000e-01 +-3.183400000000000e-01 +-3.217700000000000e-01 +-3.375300000000000e-01 +-3.659000000000000e-01 +-3.979600000000000e-01 +-4.194400000000000e-01 +-4.208000000000000e-01 +-4.041700000000000e-01 +-3.791000000000000e-01 +-3.491100000000000e-01 +-3.007000000000000e-01 +-2.069200000000000e-01 +-4.666700000000000e-02 + 1.735000000000000e-01 + 4.127100000000000e-01 + 6.126500000000000e-01 + 7.284100000000000e-01 + 7.520000000000000e-01 + 7.115100000000000e-01 + 6.469200000000001e-01 + 5.809800000000001e-01 + 5.071200000000000e-01 + 4.024100000000000e-01 + 2.540300000000000e-01 + 7.705300000000000e-02 +-9.081000000000000e-02 +-2.131700000000000e-01 +-2.783300000000000e-01 +-3.035100000000000e-01 +-3.170500000000000e-01 +-3.331500000000000e-01 +-3.392700000000000e-01 +-3.062500000000000e-01 +-2.135600000000000e-01 +-7.061300000000000e-02 + 8.144300000000000e-02 + 1.891800000000000e-01 + 2.150400000000000e-01 + 1.568800000000000e-01 + 4.833000000000000e-02 +-5.873200000000000e-02 +-1.191800000000000e-01 +-1.147300000000000e-01 +-6.071800000000000e-02 + 2.433900000000000e-03 + 2.880300000000000e-02 +-1.079200000000000e-02 +-1.141600000000000e-01 +-2.484100000000000e-01 +-3.664600000000000e-01 +-4.309200000000000e-01 +-4.315700000000000e-01 +-3.858000000000000e-01 +-3.222300000000000e-01 +-2.594500000000000e-01 +-1.951000000000000e-01 +-1.126500000000000e-01 + 3.546800000000000e-04 + 1.379800000000000e-01 + 2.772100000000000e-01 + 3.939200000000000e-01 + 4.800700000000000e-01 + 5.476799999999999e-01 + 6.157200000000000e-01 + 6.903400000000000e-01 + 7.543400000000000e-01 + 7.747700000000000e-01 + 7.231800000000000e-01 + 5.934700000000001e-01 + 4.050600000000000e-01 + 1.908500000000000e-01 +-1.954600000000000e-02 +-2.092700000000000e-01 +-3.724600000000000e-01 +-5.070100000000000e-01 +-6.106500000000000e-01 +-6.833700000000000e-01 +-7.315700000000001e-01 +-7.667400000000000e-01 +-7.970200000000000e-01 +-8.176099999999999e-01 +-8.086800000000000e-01 +-7.444100000000000e-01 +-6.078700000000000e-01 +-4.018400000000000e-01 +-1.491600000000000e-01 + 1.159500000000000e-01 + 3.586200000000000e-01 + 5.502600000000000e-01 + 6.714200000000000e-01 + 7.142300000000000e-01 + 6.864500000000000e-01 + 6.135699999999999e-01 + 5.332800000000000e-01 + 4.805200000000000e-01 + 4.696500000000000e-01 + 4.852300000000000e-01 + 4.890500000000000e-01 + 4.407400000000000e-01 + 3.197100000000000e-01 + 1.356400000000000e-01 +-7.705200000000000e-02 +-2.748100000000000e-01 +-4.200900000000000e-01 +-4.894600000000000e-01 +-4.753000000000000e-01 +-3.858300000000000e-01 +-2.452700000000000e-01 +-9.110799999999999e-02 + 3.532800000000000e-02 + 1.038200000000000e-01 + 1.073200000000000e-01 + 6.202900000000000e-02 +-5.978200000000000e-03 +-7.868500000000000e-02 +-1.549700000000000e-01 +-2.435200000000000e-01 +-3.457900000000000e-01 +-4.439400000000000e-01 +-5.051300000000000e-01 +-5.003700000000000e-01 +-4.239600000000000e-01 +-2.982500000000000e-01 +-1.597800000000000e-01 +-3.713200000000000e-02 + 6.290900000000001e-02 + 1.519800000000000e-01 + 2.439700000000000e-01 + 3.397700000000000e-01 + 4.243000000000000e-01 + 4.759500000000000e-01 + 4.793600000000000e-01 + 4.319000000000000e-01 + 3.415100000000000e-01 + 2.215300000000000e-01 + 8.879200000000000e-02 +-3.463000000000000e-02 +-1.217000000000000e-01 +-1.479100000000000e-01 +-1.041400000000000e-01 +-5.653900000000000e-03 + 1.114900000000000e-01 + 2.070900000000000e-01 + 2.567700000000000e-01 + 2.622600000000000e-01 + 2.453500000000000e-01 + 2.304400000000000e-01 + 2.278000000000000e-01 + 2.279100000000000e-01 + 2.086800000000000e-01 + 1.490500000000000e-01 + 4.042000000000000e-02 +-1.090700000000000e-01 +-2.768900000000000e-01 +-4.325300000000000e-01 +-5.461000000000000e-01 +-5.975300000000000e-01 +-5.841400000000000e-01 +-5.223900000000000e-01 +-4.409200000000000e-01 +-3.670200000000000e-01 +-3.143300000000000e-01 +-2.795500000000000e-01 +-2.503900000000000e-01 +-2.178400000000000e-01 +-1.827100000000000e-01 +-1.509700000000000e-01 +-1.226700000000000e-01 +-8.532800000000000e-02 +-1.938700000000000e-02 + 8.716000000000000e-02 + 2.269400000000000e-01 + 3.746900000000000e-01 + 5.019400000000001e-01 + 5.934500000000000e-01 + 6.521500000000000e-01 + 6.887500000000000e-01 + 7.054900000000000e-01 + 6.887600000000000e-01 + 6.177900000000000e-01 + 4.831600000000000e-01 + 3.000300000000000e-01 + 1.050700000000000e-01 +-6.096800000000000e-02 +-1.723500000000000e-01 +-2.264900000000000e-01 +-2.384200000000000e-01 +-2.291400000000000e-01 +-2.176800000000000e-01 +-2.194000000000000e-01 +-2.458500000000000e-01 +-3.002900000000000e-01 +-3.710100000000000e-01 +-4.307500000000000e-01 +-4.490800000000000e-01 +-4.129900000000000e-01 +-3.408100000000000e-01 +-2.752500000000000e-01 +-2.559300000000000e-01 +-2.890500000000000e-01 +-3.372000000000000e-01 +-3.394900000000000e-01 +-2.500300000000000e-01 +-6.833100000000000e-02 + 1.595900000000000e-01 + 3.691700000000000e-01 + 5.134900000000000e-01 + 5.824800000000000e-01 + 5.949700000000000e-01 + 5.743600000000000e-01 + 5.294800000000000e-01 + 4.546000000000000e-01 + 3.450700000000000e-01 + 2.122900000000000e-01 + 8.393700000000000e-02 +-1.098700000000000e-02 +-5.980300000000000e-02 +-7.293700000000000e-02 +-7.577399999999999e-02 +-9.310200000000000e-02 +-1.372800000000000e-01 +-2.058200000000000e-01 +-2.858000000000000e-01 +-3.596200000000000e-01 +-4.092300000000000e-01 +-4.205000000000000e-01 +-3.889400000000000e-01 +-3.237500000000000e-01 +-2.447900000000000e-01 +-1.709600000000000e-01 +-1.068300000000000e-01 +-3.893800000000000e-02 + 5.217300000000000e-02 + 1.711800000000000e-01 + 2.949300000000000e-01 + 3.804500000000000e-01 + 3.914700000000000e-01 + 3.252500000000000e-01 + 2.185700000000000e-01 + 1.264000000000000e-01 + 8.773200000000000e-02 + 1.028900000000000e-01 + 1.383100000000000e-01 + 1.533800000000000e-01 + 1.277300000000000e-01 + 6.923799999999999e-02 + 2.437200000000000e-05 +-6.426500000000000e-02 +-1.231900000000000e-01 +-1.824800000000000e-01 +-2.383900000000000e-01 +-2.725800000000000e-01 +-2.639500000000000e-01 +-2.074200000000000e-01 +-1.221400000000000e-01 +-4.007900000000000e-02 + 1.639600000000000e-02 + 4.945200000000000e-02 + 8.052100000000000e-02 + 1.294800000000000e-01 + 1.961700000000000e-01 + 2.596700000000000e-01 + 2.948500000000000e-01 + 2.909800000000000e-01 + 2.558900000000000e-01 + 2.034400000000000e-01 + 1.375400000000000e-01 + 4.932400000000000e-02 +-6.840100000000000e-02 +-2.026300000000000e-01 +-3.162800000000000e-01 +-3.664700000000000e-01 +-3.331100000000000e-01 +-2.353700000000000e-01 +-1.218000000000000e-01 +-4.045900000000000e-02 +-1.125400000000000e-02 +-2.070400000000000e-02 +-4.113800000000000e-02 +-5.686600000000000e-02 +-7.552700000000000e-02 +-1.163300000000000e-01 +-1.866700000000000e-01 +-2.678700000000000e-01 +-3.226100000000000e-01 +-3.182200000000000e-01 +-2.474200000000000e-01 +-1.311300000000000e-01 +-2.908600000000000e-03 + 1.109900000000000e-01 + 2.006800000000000e-01 + 2.663700000000000e-01 + 3.061200000000000e-01 + 3.108400000000000e-01 + 2.721000000000000e-01 + 1.959100000000000e-01 + 1.092900000000000e-01 + 5.173900000000000e-02 + 5.569100000000000e-02 + 1.284100000000000e-01 + 2.471900000000000e-01 + 3.704000000000000e-01 + 4.570000000000000e-01 + 4.832800000000000e-01 + 4.492300000000000e-01 + 3.737800000000000e-01 + 2.838800000000000e-01 + 2.033000000000000e-01 + 1.455100000000000e-01 + 1.122300000000000e-01 + 9.671399999999999e-02 + 8.930100000000001e-02 + 8.155000000000000e-02 + 6.621800000000000e-02 + 3.349400000000000e-02 +-3.233600000000000e-02 +-1.504700000000000e-01 +-3.335600000000000e-01 +-5.749500000000000e-01 +-8.421600000000000e-01 +-1.083800000000000e+00 +-1.248100000000000e+00 +-1.303600000000000e+00 +-1.248300000000000e+00 +-1.104000000000000e+00 +-8.995400000000000e-01 +-6.575700000000000e-01 +-3.917800000000000e-01 +-1.148800000000000e-01 + 1.529100000000000e-01 + 3.842900000000000e-01 + 5.552300000000000e-01 + 6.571200000000000e-01 + 7.006800000000000e-01 + 7.084400000000000e-01 + 7.020600000000000e-01 + 6.946200000000000e-01 + 6.926600000000001e-01 + 7.034200000000000e-01 + 7.377200000000000e-01 + 8.031600000000000e-01 + 8.921400000000000e-01 + 9.758599999999999e-01 + 1.012200000000000e+00 + 9.656800000000000e-01 + 8.265700000000000e-01 + 6.173400000000000e-01 + 3.812000000000000e-01 + 1.607500000000000e-01 +-2.015300000000000e-02 +-1.620600000000000e-01 +-2.828500000000000e-01 +-4.051600000000000e-01 +-5.459100000000000e-01 +-7.111700000000000e-01 +-8.948800000000000e-01 +-1.079600000000000e+00 +-1.239100000000000e+00 +-1.345200000000000e+00 +-1.376900000000000e+00 +-1.328400000000000e+00 +-1.211300000000000e+00 +-1.047400000000000e+00 +-8.587600000000000e-01 +-6.600000000000000e-01 +-4.581300000000000e-01 +-2.571000000000000e-01 +-6.081300000000000e-02 + 1.293100000000000e-01 + 3.192300000000000e-01 + 5.221500000000000e-01 + 7.486600000000000e-01 + 9.915500000000000e-01 + 1.216900000000000e+00 + 1.372100000000000e+00 + 1.410200000000000e+00 + 1.316400000000000e+00 + 1.120400000000000e+00 + 8.831400000000000e-01 + 6.667500000000000e-01 + 5.057000000000000e-01 + 3.965000000000000e-01 + 3.106100000000000e-01 + 2.187500000000000e-01 + 1.090900000000000e-01 +-1.189300000000000e-02 +-1.327300000000000e-01 +-2.512600000000000e-01 +-3.773600000000000e-01 +-5.219200000000001e-01 +-6.814600000000000e-01 +-8.309299999999999e-01 +-9.318200000000000e-01 +-9.511700000000000e-01 +-8.798000000000000e-01 +-7.385900000000000e-01 +-5.694500000000000e-01 +-4.165800000000000e-01 +-3.085900000000000e-01 +-2.499600000000000e-01 +-2.245200000000000e-01 +-2.067000000000000e-01 +-1.735700000000000e-01 +-1.114500000000000e-01 +-1.559100000000000e-02 + 1.141400000000000e-01 + 2.763800000000000e-01 + 4.662800000000000e-01 + 6.692600000000000e-01 + 8.558000000000000e-01 + 9.837399999999999e-01 + 1.010900000000000e+00 + 9.139500000000000e-01 + 7.026700000000000e-01 + 4.211800000000000e-01 + 1.320700000000000e-01 +-1.086900000000000e-01 +-2.726700000000000e-01 +-3.643500000000000e-01 +-4.090800000000000e-01 +-4.324300000000000e-01 +-4.446200000000000e-01 +-4.389600000000000e-01 +-4.035500000000000e-01 +-3.362100000000000e-01 +-2.515400000000000e-01 +-1.755300000000000e-01 +-1.317700000000000e-01 +-1.291700000000000e-01 +-1.586800000000000e-01 +-1.996700000000000e-01 +-2.305400000000000e-01 +-2.360300000000000e-01 +-2.081900000000000e-01 +-1.430600000000000e-01 +-3.826200000000000e-02 + 1.053700000000000e-01 + 2.791300000000000e-01 + 4.635400000000000e-01 + 6.309399999999999e-01 + 7.535500000000001e-01 + 8.126900000000000e-01 + 8.036400000000000e-01 + 7.335700000000001e-01 + 6.148000000000000e-01 + 4.585600000000000e-01 + 2.734000000000000e-01 + 6.810900000000000e-02 +-1.447600000000000e-01 +-3.494600000000000e-01 +-5.324000000000000e-01 +-6.882700000000000e-01 +-8.206900000000000e-01 +-9.347100000000000e-01 +-1.024900000000000e+00 +-1.068200000000000e+00 +-1.029400000000000e+00 +-8.789800000000000e-01 +-6.153200000000000e-01 +-2.754800000000000e-01 + 7.280399999999999e-02 + 3.566000000000000e-01 + 5.272200000000000e-01 + 5.777000000000000e-01 + 5.395400000000000e-01 + 4.624600000000000e-01 + 3.904000000000000e-01 + 3.470600000000000e-01 + 3.360400000000000e-01 + 3.508400000000000e-01 + 3.846300000000000e-01 + 4.329900000000000e-01 + 4.901700000000000e-01 + 5.445600000000000e-01 + 5.792700000000000e-01 + 5.780500000000000e-01 + 5.324000000000000e-01 + 4.445400000000000e-01 + 3.246000000000000e-01 + 1.849100000000000e-01 + 3.606000000000000e-02 +-1.132600000000000e-01 +-2.539900000000000e-01 +-3.753800000000000e-01 +-4.666800000000000e-01 +-5.210100000000000e-01 +-5.386000000000000e-01 +-5.276900000000000e-01 +-5.031500000000000e-01 +-4.838900000000000e-01 +-4.896900000000000e-01 +-5.362800000000000e-01 +-6.282000000000000e-01 +-7.515700000000000e-01 +-8.715500000000000e-01 +-9.391200000000000e-01 +-9.074900000000000e-01 +-7.517500000000000e-01 +-4.817600000000000e-01 +-1.407200000000000e-01 + 2.108500000000000e-01 + 5.176400000000000e-01 + 7.472100000000000e-01 + 8.950300000000000e-01 + 9.769600000000001e-01 + 1.016000000000000e+00 + 1.031900000000000e+00 + 1.036700000000000e+00 + 1.037100000000000e+00 + 1.036200000000000e+00 + 1.032100000000000e+00 + 1.015400000000000e+00 + 9.664300000000000e-01 + 8.600200000000000e-01 + 6.753800000000000e-01 + 4.080400000000000e-01 + 7.652100000000001e-02 +-2.810100000000000e-01 +-6.194900000000000e-01 +-9.027100000000000e-01 +-1.113800000000000e+00 +-1.255400000000000e+00 +-1.339500000000000e+00 +-1.375600000000000e+00 +-1.363700000000000e+00 +-1.296900000000000e+00 +-1.171100000000000e+00 +-9.927500000000000e-01 +-7.796400000000000e-01 +-5.532300000000000e-01 +-3.280400000000000e-01 +-1.066000000000000e-01 + 1.164900000000000e-01 + 3.443300000000000e-01 + 5.691900000000000e-01 + 7.720399999999999e-01 + 9.300300000000000e-01 + 1.026300000000000e+00 + 1.054900000000000e+00 + 1.019900000000000e+00 + 9.299600000000000e-01 + 7.966500000000000e-01 + 6.357200000000000e-01 + 4.689300000000000e-01 + 3.206400000000000e-01 + 2.080300000000000e-01 + 1.309000000000000e-01 + 6.969499999999999e-02 +-3.777100000000000e-03 +-1.081600000000000e-01 +-2.385800000000000e-01 +-3.670400000000000e-01 +-4.575500000000000e-01 +-4.859200000000000e-01 +-4.512200000000000e-01 +-3.725100000000000e-01 +-2.752500000000000e-01 +-1.782800000000000e-01 +-9.002000000000000e-02 +-1.353100000000000e-02 + 4.638100000000000e-02 + 8.123600000000000e-02 + 8.284900000000001e-02 + 4.817800000000000e-02 +-2.002300000000000e-02 +-1.164800000000000e-01 +-2.353900000000000e-01 +-3.669100000000000e-01 +-4.904500000000000e-01 +-5.727500000000000e-01 +-5.775600000000000e-01 +-4.843800000000000e-01 +-3.046200000000000e-01 +-8.226700000000001e-02 + 1.243900000000000e-01 + 2.698100000000000e-01 + 3.399000000000000e-01 + 3.511600000000000e-01 + 3.327700000000000e-01 + 3.061000000000000e-01 + 2.761200000000000e-01 + 2.380500000000000e-01 + 1.905600000000000e-01 + 1.429100000000000e-01 + 1.104800000000000e-01 + 1.044800000000000e-01 + 1.261800000000000e-01 + 1.709700000000000e-01 + 2.369900000000000e-01 + 3.281000000000000e-01 + 4.457400000000000e-01 + 5.755900000000000e-01 + 6.815700000000000e-01 + 7.159600000000000e-01 + 6.419899999999999e-01 + 4.543100000000000e-01 + 1.831800000000000e-01 +-1.203900000000000e-01 +-4.079000000000000e-01 +-6.496700000000000e-01 +-8.356800000000000e-01 +-9.653000000000000e-01 +-1.037300000000000e+00 +-1.048400000000000e+00 +-9.994400000000000e-01 +-9.002100000000000e-01 +-7.664900000000000e-01 +-6.119000000000000e-01 +-4.420900000000000e-01 +-2.578500000000000e-01 +-6.435000000000000e-02 + 1.229200000000000e-01 + 2.833100000000000e-01 + 4.046200000000000e-01 + 4.935400000000000e-01 + 5.716500000000000e-01 + 6.571900000000001e-01 + 7.460200000000000e-01 + 8.082800000000000e-01 + 8.068000000000000e-01 + 7.256500000000000e-01 + 5.877300000000000e-01 + 4.462500000000000e-01 + 3.538100000000000e-01 + 3.296900000000000e-01 + 3.482200000000000e-01 + 3.562300000000000e-01 + 3.069900000000000e-01 + 1.867700000000000e-01 + 1.697300000000000e-02 +-1.666000000000000e-01 +-3.393300000000000e-01 +-4.983700000000000e-01 +-6.518900000000000e-01 +-7.979300000000000e-01 +-9.121800000000000e-01 +-9.564800000000000e-01 +-9.031400000000001e-01 +-7.573100000000000e-01 +-5.597900000000000e-01 +-3.666600000000000e-01 +-2.185100000000000e-01 +-1.196200000000000e-01 +-4.102200000000000e-02 + 5.516700000000000e-02 + 1.867300000000000e-01 + 3.370400000000000e-01 + 4.645500000000000e-01 + 5.292800000000000e-01 + 5.185500000000000e-01 + 4.554400000000000e-01 + 3.850000000000000e-01 + 3.479400000000000e-01 + 3.585300000000000e-01 + 3.997400000000000e-01 + 4.367500000000000e-01 + 4.383000000000000e-01 + 3.918500000000000e-01 + 3.045000000000000e-01 + 1.923600000000000e-01 + 6.843600000000000e-02 +-6.162100000000000e-02 +-1.940300000000000e-01 +-3.183900000000000e-01 +-4.150100000000000e-01 +-4.621100000000000e-01 +-4.485700000000000e-01 +-3.827900000000000e-01 +-2.908400000000000e-01 +-2.042200000000000e-01 +-1.449100000000000e-01 +-1.169800000000000e-01 +-1.087500000000000e-01 +-1.025100000000000e-01 +-8.473500000000000e-02 +-5.094900000000000e-02 +-4.731600000000000e-03 + 4.582100000000000e-02 + 9.047200000000000e-02 + 1.173900000000000e-01 + 1.140500000000000e-01 + 7.083299999999999e-02 +-1.323100000000000e-02 +-1.259000000000000e-01 +-2.420200000000000e-01 +-3.298300000000000e-01 +-3.606000000000000e-01 +-3.174900000000000e-01 +-2.000300000000000e-01 +-2.383500000000000e-02 + 1.833000000000000e-01 + 3.868700000000000e-01 + 5.518600000000000e-01 + 6.492900000000000e-01 + 6.626200000000000e-01 + 5.927200000000000e-01 + 4.593900000000000e-01 + 2.980300000000000e-01 + 1.511700000000000e-01 + 5.634600000000000e-02 + 3.326800000000000e-02 + 7.484600000000000e-02 + 1.466900000000000e-01 + 1.978300000000000e-01 + 1.806500000000000e-01 + 7.245699999999999e-02 +-1.120300000000000e-01 +-3.253600000000000e-01 +-5.085800000000000e-01 +-6.186100000000000e-01 +-6.466499999999999e-01 +-6.172000000000000e-01 +-5.689200000000000e-01 +-5.297900000000000e-01 +-5.022900000000000e-01 +-4.667500000000000e-01 +-3.987000000000000e-01 +-2.873300000000000e-01 +-1.430700000000000e-01 + 8.964700000000001e-03 + 1.430100000000000e-01 + 2.441800000000000e-01 + 3.116000000000000e-01 + 3.543100000000000e-01 + 3.853400000000000e-01 + 4.171700000000000e-01 + 4.583800000000000e-01 + 5.093700000000000e-01 + 5.580900000000000e-01 + 5.803600000000000e-01 + 5.488300000000000e-01 + 4.486700000000000e-01 + 2.905600000000000e-01 + 1.104900000000000e-01 +-4.671800000000000e-02 +-1.510800000000000e-01 +-2.027600000000000e-01 +-2.277100000000000e-01 +-2.565400000000000e-01 +-3.017100000000000e-01 +-3.499600000000000e-01 +-3.747900000000000e-01 +-3.586700000000000e-01 +-3.070200000000000e-01 +-2.430100000000000e-01 +-1.879700000000000e-01 +-1.439700000000000e-01 +-9.347100000000000e-02 +-1.691100000000000e-02 + 8.598400000000000e-02 + 1.890000000000000e-01 + 2.535300000000000e-01 + 2.543900000000000e-01 + 1.982000000000000e-01 + 1.205000000000000e-01 + 6.331000000000001e-02 + 4.914500000000000e-02 + 6.921300000000000e-02 + 9.261800000000001e-02 + 8.821600000000000e-02 + 4.329300000000000e-02 +-3.233000000000000e-02 +-1.163600000000000e-01 +-1.884900000000000e-01 +-2.388300000000000e-01 +-2.672100000000000e-01 +-2.774300000000000e-01 +-2.728300000000000e-01 +-2.555000000000000e-01 +-2.265000000000000e-01 +-1.839000000000000e-01 +-1.192900000000000e-01 +-1.768700000000000e-02 + 1.347800000000000e-01 + 3.371700000000000e-01 + 5.624000000000000e-01 + 7.582200000000000e-01 + 8.635900000000000e-01 + 8.336800000000000e-01 + 6.598800000000000e-01 + 3.737800000000000e-01 + 3.367200000000000e-02 +-2.978900000000000e-01 +-5.726599999999999e-01 +-7.635200000000000e-01 +-8.604600000000000e-01 +-8.630400000000000e-01 +-7.765100000000000e-01 +-6.135100000000000e-01 +-3.972700000000000e-01 +-1.611700000000000e-01 + 5.773800000000000e-02 + 2.283200000000000e-01 + 3.331400000000000e-01 + 3.708900000000000e-01 + 3.538100000000000e-01 + 3.026800000000000e-01 + 2.419900000000000e-01 + 1.957100000000000e-01 + 1.824900000000000e-01 + 2.104600000000000e-01 + 2.733100000000000e-01 + 3.508500000000000e-01 + 4.154500000000000e-01 + 4.420200000000000e-01 + 4.168800000000000e-01 + 3.408200000000000e-01 + 2.255100000000000e-01 + 8.632400000000000e-02 +-6.326400000000000e-02 +-2.127200000000000e-01 +-3.514900000000000e-01 +-4.659000000000000e-01 +-5.396400000000000e-01 +-5.589300000000000e-01 +-5.196300000000000e-01 +-4.322400000000000e-01 +-3.211600000000000e-01 +-2.179000000000000e-01 +-1.506100000000000e-01 +-1.340500000000000e-01 +-1.643500000000000e-01 +-2.206500000000000e-01 +-2.733800000000000e-01 +-2.957300000000000e-01 +-2.730500000000000e-01 +-2.056300000000000e-01 +-1.037200000000000e-01 + 2.146900000000000e-02 + 1.640200000000000e-01 + 3.217700000000000e-01 + 4.875900000000000e-01 + 6.408000000000000e-01 + 7.473500000000000e-01 + 7.726300000000000e-01 + 7.009900000000000e-01 + 5.494500000000000e-01 + 3.645700000000000e-01 + 2.019800000000000e-01 + 9.972499999999999e-02 + 6.188700000000000e-02 + 6.245500000000000e-02 + 6.593599999999999e-02 + 5.003600000000000e-02 + 1.532800000000000e-02 +-2.282800000000000e-02 +-5.173600000000000e-02 +-7.391900000000000e-02 +-1.058400000000000e-01 +-1.655100000000000e-01 +-2.599800000000000e-01 +-3.819100000000000e-01 +-5.157900000000000e-01 +-6.455600000000000e-01 +-7.560300000000000e-01 +-8.279900000000000e-01 +-8.351200000000000e-01 +-7.509600000000000e-01 +-5.651400000000000e-01 +-2.979600000000000e-01 + 1.391400000000000e-05 + 2.669400000000000e-01 + 4.570600000000000e-01 + 5.585599999999999e-01 + 5.903600000000000e-01 + 5.813900000000000e-01 + 5.489200000000000e-01 + 4.919000000000000e-01 + 4.026600000000000e-01 + 2.848600000000000e-01 + 1.614500000000000e-01 + 6.487700000000000e-02 + 1.757900000000000e-02 + 1.876300000000000e-02 + 4.835500000000000e-02 + 8.445999999999999e-02 + 1.194900000000000e-01 + 1.615300000000000e-01 + 2.201300000000000e-01 + 2.890700000000000e-01 + 3.410300000000000e-01 + 3.398800000000000e-01 + 2.616600000000000e-01 + 1.094500000000000e-01 +-8.787399999999999e-02 +-2.903200000000000e-01 +-4.634200000000000e-01 +-5.867100000000000e-01 +-6.523500000000000e-01 +-6.600300000000000e-01 +-6.148100000000000e-01 +-5.282900000000000e-01 +-4.185000000000000e-01 +-3.043700000000000e-01 +-1.973200000000000e-01 +-9.682600000000000e-02 + 4.778100000000000e-03 + 1.111900000000000e-01 + 2.142600000000000e-01 + 2.971100000000000e-01 + 3.467600000000000e-01 + 3.655200000000000e-01 + 3.699200000000000e-01 + 3.762000000000000e-01 + 3.832900000000000e-01 + 3.684900000000000e-01 + 3.019500000000000e-01 + 1.709500000000000e-01 +-4.084200000000000e-03 +-1.752700000000000e-01 +-2.921100000000000e-01 +-3.289400000000000e-01 +-2.962500000000000e-01 +-2.293000000000000e-01 +-1.635800000000000e-01 +-1.146900000000000e-01 +-7.489300000000000e-02 +-2.514200000000000e-02 + 4.865000000000000e-02 + 1.468200000000000e-01 + 2.576600000000000e-01 + 3.642700000000000e-01 + 4.494500000000000e-01 + 4.965500000000000e-01 + 4.897100000000000e-01 + 4.176800000000000e-01 + 2.805100000000000e-01 + 9.374600000000000e-02 +-1.147800000000000e-01 +-3.146900000000000e-01 +-4.828400000000000e-01 +-6.064700000000000e-01 +-6.789200000000000e-01 +-6.937500000000000e-01 +-6.441300000000000e-01 +-5.291700000000000e-01 +-3.612400000000000e-01 +-1.666200000000000e-01 + 2.347500000000000e-02 + 1.860200000000000e-01 + 3.138900000000000e-01 + 4.126600000000000e-01 + 4.896200000000000e-01 + 5.438499999999999e-01 + 5.651300000000000e-01 + 5.412800000000000e-01 + 4.672300000000000e-01 + 3.482000000000000e-01 + 1.957500000000000e-01 + 2.159900000000000e-02 +-1.643800000000000e-01 +-3.506200000000000e-01 +-5.196600000000000e-01 +-6.490600000000000e-01 +-7.190700000000000e-01 +-7.214699999999999e-01 +-6.624700000000000e-01 +-5.567500000000000e-01 +-4.174400000000000e-01 +-2.502400000000000e-01 +-5.657400000000000e-02 + 1.572400000000000e-01 + 3.731000000000000e-01 + 5.633700000000000e-01 + 7.015000000000000e-01 + 7.739900000000000e-01 + 7.850900000000000e-01 + 7.516200000000000e-01 + 6.919800000000000e-01 + 6.166600000000000e-01 + 5.251900000000000e-01 + 4.096400000000000e-01 + 2.614100000000000e-01 + 7.836700000000001e-02 +-1.293600000000000e-01 +-3.362400000000000e-01 +-5.036400000000000e-01 +-5.902800000000000e-01 +-5.697500000000000e-01 +-4.480000000000000e-01 +-2.694600000000000e-01 +-1.042200000000000e-01 +-1.921800000000000e-02 +-4.730100000000000e-02 +-1.718000000000000e-01 +-3.359600000000000e-01 +-4.722300000000000e-01 +-5.344600000000000e-01 +-5.153000000000000e-01 +-4.411300000000000e-01 +-3.505600000000000e-01 +-2.711600000000000e-01 +-2.074100000000000e-01 +-1.440800000000000e-01 +-5.993600000000000e-02 + 5.739700000000000e-02 + 2.031700000000000e-01 + 3.564300000000000e-01 + 4.884400000000000e-01 + 5.740200000000000e-01 + 6.008200000000000e-01 + 5.723000000000000e-01 + 5.029000000000000e-01 + 4.083100000000000e-01 + 2.972100000000000e-01 + 1.706700000000000e-01 + 3.047500000000000e-02 +-1.098500000000000e-01 +-2.213300000000000e-01 +-2.693400000000000e-01 +-2.330900000000000e-01 +-1.218600000000000e-01 + 2.492300000000000e-02 + 1.566000000000000e-01 + 2.380700000000000e-01 + 2.664200000000000e-01 + 2.657300000000000e-01 + 2.640400000000000e-01 + 2.696400000000000e-01 + 2.644400000000000e-01 + 2.191800000000000e-01 + 1.185200000000000e-01 +-2.361800000000000e-02 +-1.706300000000000e-01 +-2.869100000000000e-01 +-3.609100000000000e-01 +-4.102100000000000e-01 +-4.647400000000000e-01 +-5.406800000000000e-01 +-6.240900000000000e-01 +-6.760400000000000e-01 +-6.557100000000000e-01 +-5.458400000000000e-01 +-3.642800000000000e-01 +-1.553600000000000e-01 + 3.194000000000000e-02 + 1.652200000000000e-01 + 2.378200000000000e-01 + 2.633700000000000e-01 + 2.621800000000000e-01 + 2.489500000000000e-01 + 2.289600000000000e-01 + 2.031000000000000e-01 + 1.763300000000000e-01 + 1.623700000000000e-01 + 1.796700000000000e-01 + 2.401200000000000e-01 + 3.374000000000000e-01 + 4.439500000000000e-01 + 5.210800000000000e-01 + 5.385200000000000e-01 + 4.917900000000000e-01 + 4.053700000000000e-01 + 3.172700000000000e-01 + 2.534000000000000e-01 + 2.084500000000000e-01 + 1.469200000000000e-01 + 2.553600000000000e-02 +-1.767600000000000e-01 +-4.406900000000000e-01 +-7.121300000000000e-01 +-9.273800000000000e-01 +-1.041400000000000e+00 +-1.042600000000000e+00 +-9.469900000000000e-01 +-7.817300000000000e-01 +-5.695800000000000e-01 +-3.248800000000000e-01 +-5.885000000000000e-02 + 2.139600000000000e-01 + 4.743500000000000e-01 + 7.017700000000000e-01 + 8.770200000000000e-01 + 9.815100000000000e-01 + 9.963000000000000e-01 + 9.070400000000000e-01 + 7.158500000000000e-01 + 4.523600000000000e-01 + 1.721300000000000e-01 +-6.291500000000000e-02 +-2.130800000000000e-01 +-2.799300000000000e-01 +-3.008400000000000e-01 +-3.206200000000000e-01 +-3.595500000000000e-01 +-4.008000000000000e-01 +-4.070300000000000e-01 +-3.533000000000000e-01 +-2.511500000000000e-01 +-1.444900000000000e-01 +-7.990300000000000e-02 +-7.389100000000000e-02 +-1.020900000000000e-01 +-1.189200000000000e-01 +-9.274200000000000e-02 +-3.015400000000000e-02 + 2.851000000000000e-02 + 3.845600000000000e-02 +-1.739100000000000e-02 +-1.160500000000000e-01 +-2.090000000000000e-01 +-2.511900000000000e-01 +-2.238900000000000e-01 +-1.381300000000000e-01 +-2.096500000000000e-02 + 1.022200000000000e-01 + 2.169500000000000e-01 + 3.180400000000000e-01 + 4.034300000000000e-01 + 4.710100000000000e-01 + 5.199800000000000e-01 + 5.524800000000000e-01 + 5.711400000000000e-01 + 5.737000000000000e-01 + 5.502100000000000e-01 + 4.875300000000000e-01 + 3.785900000000000e-01 + 2.290000000000000e-01 + 5.447600000000000e-02 +-1.294800000000000e-01 +-3.165100000000000e-01 +-5.081400000000000e-01 +-7.018500000000000e-01 +-8.783800000000000e-01 +-1.000900000000000e+00 +-1.030400000000000e+00 +-9.487900000000000e-01 +-7.722000000000000e-01 +-5.448000000000000e-01 +-3.146000000000000e-01 +-1.085400000000000e-01 + 7.599900000000000e-02 + 2.579600000000000e-01 + 4.482100000000000e-01 + 6.326300000000000e-01 + 7.751400000000001e-01 + 8.375800000000000e-01 + 8.013800000000000e-01 + 6.758600000000000e-01 + 4.893900000000000e-01 + 2.729400000000000e-01 + 4.989100000000000e-02 +-1.613400000000000e-01 +-3.378800000000000e-01 +-4.487900000000000e-01 +-4.650400000000000e-01 +-3.782500000000000e-01 +-2.137000000000000e-01 +-2.501500000000000e-02 + 1.296000000000000e-01 + 2.156400000000000e-01 + 2.365900000000000e-01 + 2.248300000000000e-01 + 2.157800000000000e-01 + 2.233500000000000e-01 + 2.331700000000000e-01 + 2.169500000000000e-01 + 1.560400000000000e-01 + 5.685600000000000e-02 +-5.262700000000000e-02 +-1.413700000000000e-01 +-1.947200000000000e-01 +-2.208700000000000e-01 +-2.411800000000000e-01 +-2.726000000000000e-01 +-3.156600000000000e-01 +-3.555200000000000e-01 +-3.735700000000000e-01 +-3.595400000000000e-01 +-3.154500000000000e-01 +-2.503600000000000e-01 +-1.724600000000000e-01 +-8.605800000000000e-02 + 4.287300000000000e-03 + 8.759599999999999e-02 + 1.459100000000000e-01 + 1.624700000000000e-01 + 1.340700000000000e-01 + 7.812700000000000e-02 + 2.765900000000000e-02 + 1.555000000000000e-02 + 5.724900000000000e-02 + 1.428300000000000e-01 + 2.433600000000000e-01 + 3.272000000000000e-01 + 3.758900000000000e-01 + 3.900800000000000e-01 + 3.832400000000000e-01 + 3.687400000000000e-01 + 3.496300000000000e-01 + 3.174100000000000e-01 + 2.599000000000000e-01 + 1.722700000000000e-01 + 6.363500000000000e-02 +-4.503100000000000e-02 +-1.306100000000000e-01 +-1.795400000000000e-01 +-1.948200000000000e-01 +-1.941600000000000e-01 +-2.000000000000000e-01 +-2.266300000000000e-01 +-2.712500000000000e-01 +-3.146000000000000e-01 +-3.312600000000000e-01 +-3.048000000000000e-01 +-2.396100000000000e-01 +-1.624500000000000e-01 +-1.120100000000000e-01 +-1.212600000000000e-01 +-2.010800000000000e-01 +-3.330500000000000e-01 +-4.745000000000000e-01 +-5.731400000000000e-01 +-5.846100000000000e-01 +-4.863800000000000e-01 +-2.838700000000000e-01 +-7.776600000000000e-03 + 2.954600000000000e-01 + 5.767099999999999e-01 + 7.967500000000000e-01 + 9.341400000000000e-01 + 9.860000000000000e-01 + 9.620400000000000e-01 + 8.759400000000001e-01 + 7.392600000000000e-01 + 5.615200000000000e-01 + 3.548000000000000e-01 + 1.375900000000000e-01 +-6.743600000000000e-02 +-2.421400000000000e-01 +-3.824100000000000e-01 +-5.002500000000000e-01 +-6.143400000000000e-01 +-7.337300000000000e-01 +-8.450800000000001e-01 +-9.137200000000000e-01 +-8.994799999999999e-01 +-7.786900000000000e-01 +-5.585800000000000e-01 +-2.753000000000000e-01 + 2.251400000000000e-02 + 2.936200000000000e-01 + 5.155000000000000e-01 + 6.824500000000000e-01 + 7.954300000000000e-01 + 8.534400000000000e-01 + 8.528900000000000e-01 + 7.935400000000000e-01 + 6.841900000000000e-01 + 5.416100000000000e-01 + 3.828900000000000e-01 + 2.171400000000000e-01 + 4.337200000000000e-02 +-1.433700000000000e-01 +-3.421600000000000e-01 +-5.399600000000000e-01 +-7.134600000000000e-01 +-8.376500000000000e-01 +-8.954600000000000e-01 +-8.829500000000000e-01 +-8.085100000000000e-01 +-6.880800000000000e-01 +-5.398500000000001e-01 +-3.801600000000000e-01 +-2.207800000000000e-01 +-6.713300000000000e-02 + 8.168800000000000e-02 + 2.298100000000000e-01 + 3.788800000000000e-01 + 5.226200000000000e-01 + 6.460100000000000e-01 + 7.307200000000000e-01 + 7.644900000000000e-01 + 7.480400000000000e-01 + 6.944300000000000e-01 + 6.206900000000000e-01 + 5.369500000000000e-01 + 4.408900000000000e-01 + 3.212300000000000e-01 + 1.679800000000000e-01 +-1.757400000000000e-02 +-2.197300000000000e-01 +-4.137000000000000e-01 +-5.751300000000000e-01 +-6.877000000000000e-01 +-7.449500000000000e-01 +-7.471500000000000e-01 +-6.972100000000000e-01 +-5.990100000000000e-01 +-4.588100000000000e-01 +-2.874200000000000e-01 +-1.006400000000000e-01 + 8.281800000000000e-02 + 2.448100000000000e-01 + 3.708100000000000e-01 + 4.520000000000000e-01 + 4.864700000000000e-01 + 4.798900000000000e-01 + 4.446800000000000e-01 + 3.964900000000000e-01 + 3.482200000000000e-01 + 3.040200000000000e-01 + 2.572800000000000e-01 + 1.950400000000000e-01 + 1.073700000000000e-01 +-3.683400000000000e-03 +-1.216800000000000e-01 +-2.223400000000000e-01 +-2.857900000000000e-01 +-3.072100000000000e-01 +-2.990200000000000e-01 +-2.832200000000000e-01 +-2.785000000000000e-01 +-2.902500000000000e-01 +-3.093500000000000e-01 +-3.197100000000000e-01 +-3.091100000000000e-01 +-2.759600000000000e-01 +-2.282300000000000e-01 +-1.763100000000000e-01 +-1.256100000000000e-01 +-7.429300000000000e-02 +-1.714800000000000e-02 + 4.805900000000000e-02 + 1.171800000000000e-01 + 1.819300000000000e-01 + 2.357900000000000e-01 + 2.784300000000000e-01 + 3.148700000000000e-01 + 3.498300000000000e-01 + 3.820700000000000e-01 + 4.035900000000000e-01 + 4.047700000000000e-01 + 3.812500000000000e-01 + 3.367100000000000e-01 + 2.789100000000000e-01 + 2.124100000000000e-01 + 1.347800000000000e-01 + 4.083600000000000e-02 +-6.758599999999999e-02 +-1.743700000000000e-01 +-2.522500000000000e-01 +-2.764000000000000e-01 +-2.400000000000000e-01 +-1.600600000000000e-01 +-6.813600000000000e-02 + 8.037100000000000e-03 + 5.891400000000000e-02 + 9.255099999999999e-02 + 1.198900000000000e-01 + 1.381200000000000e-01 + 1.264000000000000e-01 + 5.889700000000000e-02 +-7.408900000000000e-02 +-2.532700000000000e-01 +-4.367400000000000e-01 +-5.816600000000000e-01 +-6.657700000000000e-01 +-6.929400000000000e-01 +-6.801700000000001e-01 +-6.377600000000000e-01 +-5.595700000000000e-01 +-4.315700000000000e-01 +-2.510700000000000e-01 +-3.986500000000000e-02 + 1.612700000000000e-01 + 3.139600000000000e-01 + 4.040300000000000e-01 + 4.472500000000000e-01 + 4.753300000000000e-01 + 5.132300000000000e-01 + 5.645600000000000e-01 + 6.145100000000000e-01 + 6.445600000000000e-01 + 6.454800000000001e-01 + 6.182500000000000e-01 + 5.650700000000000e-01 + 4.818200000000000e-01 + 3.616700000000000e-01 + 2.079400000000000e-01 + 4.421400000000000e-02 +-9.037199999999999e-02 +-1.610100000000000e-01 +-1.593700000000000e-01 +-1.113500000000000e-01 +-6.348700000000000e-02 +-5.660200000000000e-02 +-1.045500000000000e-01 +-1.914200000000000e-01 +-2.865800000000000e-01 +-3.644300000000000e-01 +-4.152600000000000e-01 +-4.424300000000000e-01 +-4.530600000000000e-01 +-4.519800000000000e-01 +-4.431500000000000e-01 +-4.332200000000000e-01 +-4.300100000000000e-01 +-4.346800000000000e-01 +-4.347100000000000e-01 +-4.070700000000000e-01 +-3.328900000000000e-01 +-2.139500000000000e-01 +-7.715900000000001e-02 + 3.908800000000000e-02 + 1.086400000000000e-01 + 1.342500000000000e-01 + 1.444200000000000e-01 + 1.728200000000000e-01 + 2.358400000000000e-01 + 3.251500000000000e-01 + 4.193500000000000e-01 + 5.034000000000000e-01 + 5.787800000000000e-01 + 6.561399999999999e-01 + 7.376900000000000e-01 + 8.059400000000000e-01 + 8.297600000000001e-01 + 7.839300000000000e-01 + 6.664400000000000e-01 + 4.994200000000000e-01 + 3.131000000000000e-01 + 1.263400000000000e-01 +-6.020400000000000e-02 +-2.535900000000000e-01 +-4.510600000000000e-01 +-6.319700000000000e-01 +-7.672600000000001e-01 +-8.390600000000000e-01 +-8.535000000000000e-01 +-8.349200000000000e-01 +-8.052300000000000e-01 +-7.649100000000000e-01 +-6.915900000000000e-01 +-5.583200000000000e-01 +-3.574900000000000e-01 +-1.119100000000000e-01 + 1.354300000000000e-01 + 3.446100000000000e-01 + 4.971000000000000e-01 + 5.961700000000000e-01 + 6.515100000000000e-01 + 6.628200000000000e-01 + 6.168500000000000e-01 + 5.005800000000000e-01 + 3.189100000000000e-01 + 1.013500000000000e-01 +-1.091600000000000e-01 +-2.777100000000000e-01 +-3.932100000000000e-01 +-4.670800000000000e-01 +-5.165100000000000e-01 +-5.458800000000000e-01 +-5.407500000000000e-01 +-4.790000000000000e-01 +-3.502100000000000e-01 +-1.685400000000000e-01 + 3.125500000000000e-02 + 2.124100000000000e-01 + 3.566900000000000e-01 + 4.727300000000000e-01 + 5.863000000000000e-01 + 7.181900000000000e-01 + 8.640400000000000e-01 + 9.888700000000000e-01 + 1.040900000000000e+00 + 9.774300000000000e-01 + 7.885900000000000e-01 + 5.058200000000000e-01 + 1.898100000000000e-01 +-9.578600000000000e-02 +-3.107800000000000e-01 +-4.510700000000000e-01 +-5.415400000000000e-01 +-6.147600000000000e-01 +-6.889500000000000e-01 +-7.584700000000000e-01 +-8.012500000000000e-01 +-7.967600000000000e-01 +-7.418700000000000e-01 +-6.540400000000000e-01 +-5.609800000000000e-01 +-4.845500000000000e-01 +-4.301300000000000e-01 +-3.873700000000000e-01 +-3.401200000000000e-01 +-2.773200000000000e-01 +-1.975900000000000e-01 +-1.061300000000000e-01 +-8.323100000000000e-03 + 9.416200000000000e-02 + 2.022900000000000e-01 + 3.158300000000000e-01 + 4.309300000000000e-01 + 5.411700000000000e-01 + 6.406300000000000e-01 + 7.257900000000000e-01 + 7.943000000000000e-01 + 8.421999999999999e-01 + 8.624300000000000e-01 + 8.465900000000000e-01 + 7.888700000000000e-01 + 6.892700000000000e-01 + 5.541100000000000e-01 + 3.940600000000000e-01 + 2.217400000000000e-01 + 5.040600000000000e-02 +-1.069200000000000e-01 +-2.394700000000000e-01 +-3.422100000000000e-01 +-4.187400000000000e-01 +-4.803100000000000e-01 +-5.397700000000000e-01 +-6.033900000000000e-01 +-6.659000000000000e-01 +-7.131000000000000e-01 +-7.310000000000000e-01 +-7.155800000000000e-01 +-6.761800000000000e-01 +-6.299100000000000e-01 +-5.904000000000000e-01 +-5.584100000000000e-01 +-5.203000000000000e-01 +-4.549000000000000e-01 +-3.443600000000000e-01 +-1.828900000000000e-01 + 2.033600000000000e-02 + 2.436200000000000e-01 + 4.583400000000000e-01 + 6.355499999999999e-01 + 7.529500000000000e-01 + 8.015099999999999e-01 + 7.895500000000000e-01 + 7.407800000000000e-01 + 6.849900000000000e-01 + 6.442600000000001e-01 + 6.219400000000000e-01 + 6.016100000000000e-01 + 5.579900000000000e-01 + 4.736600000000000e-01 + 3.514800000000000e-01 + 2.140900000000000e-01 + 9.057300000000000e-02 +-1.395100000000000e-03 +-6.639600000000000e-02 +-1.280200000000000e-01 +-2.136400000000000e-01 +-3.367800000000000e-01 +-4.875700000000000e-01 +-6.365600000000000e-01 +-7.487100000000000e-01 +-7.994700000000000e-01 +-7.845600000000000e-01 +-7.198500000000000e-01 +-6.329200000000000e-01 +-5.510699999999999e-01 +-4.910900000000000e-01 +-4.539300000000000e-01 +-4.257000000000000e-01 +-3.843500000000000e-01 +-3.095600000000000e-01 +-1.921100000000000e-01 +-3.812300000000000e-02 + 1.340600000000000e-01 + 3.033000000000000e-01 + 4.559700000000000e-01 + 5.907000000000000e-01 + 7.144100000000000e-01 + 8.319400000000000e-01 + 9.368600000000000e-01 + 1.010400000000000e+00 + 1.030700000000000e+00 + 9.859599999999999e-01 + 8.831300000000000e-01 + 7.447400000000000e-01 + 5.954199999999999e-01 + 4.470000000000000e-01 + 2.929100000000000e-01 + 1.163400000000000e-01 +-9.290400000000000e-02 +-3.244600000000000e-01 +-5.467900000000000e-01 +-7.214600000000000e-01 +-8.238400000000000e-01 +-8.571800000000001e-01 +-8.510600000000000e-01 +-8.449700000000000e-01 +-8.671100000000000e-01 +-9.202700000000000e-01 +-9.820200000000000e-01 +-1.017100000000000e+00 +-9.937700000000000e-01 +-8.953000000000000e-01 +-7.226800000000000e-01 +-4.901400000000000e-01 +-2.185400000000000e-01 + 6.948900000000000e-02 + 3.516600000000000e-01 + 6.069200000000000e-01 + 8.170200000000000e-01 + 9.692200000000000e-01 + 1.059200000000000e+00 + 1.092500000000000e+00 + 1.083400000000000e+00 + 1.051000000000000e+00 + 1.013000000000000e+00 + 9.787500000000000e-01 + 9.443800000000000e-01 + 8.928400000000000e-01 + 8.000000000000000e-01 + 6.458400000000000e-01 + 4.256800000000000e-01 + 1.556100000000000e-01 +-1.314600000000000e-01 +-3.978200000000000e-01 +-6.148400000000001e-01 +-7.716600000000000e-01 +-8.745100000000000e-01 +-9.382500000000000e-01 +-9.758500000000000e-01 +-9.916700000000001e-01 +-9.814100000000000e-01 +-9.369499999999999e-01 +-8.524200000000000e-01 +-7.279600000000001e-01 +-5.703000000000000e-01 +-3.911200000000000e-01 +-2.047400000000000e-01 +-2.630900000000000e-02 + 1.294400000000000e-01 + 2.489400000000000e-01 + 3.207200000000000e-01 + 3.372400000000000e-01 + 2.981400000000000e-01 + 2.140400000000000e-01 + 1.086700000000000e-01 + 1.577000000000000e-02 +-3.024500000000000e-02 +-7.258700000000000e-03 + 8.490600000000000e-02 + 2.246900000000000e-01 + 3.801300000000000e-01 + 5.250200000000000e-01 + 6.492900000000000e-01 + 7.565800000000000e-01 + 8.507500000000000e-01 + 9.223000000000000e-01 + 9.459800000000000e-01 + 8.933300000000000e-01 + 7.519200000000000e-01 + 5.371000000000000e-01 + 2.871200000000000e-01 + 4.399500000000000e-02 +-1.664400000000000e-01 +-3.422600000000000e-01 +-4.970000000000000e-01 +-6.435100000000000e-01 +-7.827900000000000e-01 +-9.050000000000000e-01 +-9.986699999999999e-01 +-1.057900000000000e+00 +-1.080600000000000e+00 +-1.061200000000000e+00 +-9.861500000000000e-01 +-8.405400000000000e-01 +-6.211200000000000e-01 +-3.461500000000000e-01 +-5.160200000000000e-02 + 2.248100000000000e-01 + 4.600600000000000e-01 + 6.497800000000000e-01 + 7.970699999999999e-01 + 8.966300000000000e-01 + 9.291500000000000e-01 + 8.727200000000001e-01 + 7.228700000000000e-01 + 5.043000000000000e-01 + 2.629600000000000e-01 + 4.274300000000000e-02 +-1.358500000000000e-01 +-2.786800000000000e-01 +-4.007300000000000e-01 +-5.032200000000000e-01 +-5.642100000000000e-01 +-5.510000000000000e-01 +-4.446100000000000e-01 +-2.570600000000000e-01 +-2.768900000000000e-02 + 1.980100000000000e-01 + 3.907200000000000e-01 + 5.445200000000000e-01 + 6.659600000000000e-01 + 7.568300000000000e-01 + 8.058700000000000e-01 + 7.955400000000000e-01 + 7.165899999999999e-01 + 5.770500000000000e-01 + 3.982100000000000e-01 + 2.024100000000000e-01 + 3.799700000000000e-03 +-1.907500000000000e-01 +-3.736900000000000e-01 +-5.320600000000000e-01 +-6.523000000000000e-01 +-7.308700000000000e-01 +-7.795000000000000e-01 +-8.176300000000000e-01 +-8.559400000000000e-01 +-8.846800000000000e-01 +-8.782300000000000e-01 +-8.144800000000000e-01 +-6.941900000000000e-01 +-5.436800000000001e-01 +-3.969600000000000e-01 +-2.700800000000000e-01 +-1.482400000000000e-01 + 2.570600000000000e-03 + 2.068400000000000e-01 + 4.548200000000000e-01 + 7.010700000000000e-01 + 8.882300000000000e-01 + 9.795199999999999e-01 + 9.776300000000000e-01 + 9.180800000000000e-01 + 8.440400000000000e-01 + 7.813300000000000e-01 + 7.297800000000000e-01 + 6.728700000000000e-01 + 5.947100000000000e-01 + 4.903500000000000e-01 + 3.639300000000000e-01 + 2.202800000000000e-01 + 5.981700000000000e-02 +-1.180500000000000e-01 +-3.067200000000000e-01 +-4.879100000000000e-01 +-6.362500000000000e-01 +-7.303800000000000e-01 +-7.630400000000001e-01 +-7.433800000000000e-01 +-6.911300000000000e-01 +-6.275600000000000e-01 +-5.692000000000000e-01 +-5.257200000000000e-01 +-5.000100000000000e-01 +-4.872700000000000e-01 +-4.731100000000000e-01 +-4.341700000000000e-01 +-3.440600000000000e-01 +-1.844200000000000e-01 + 4.426100000000000e-02 + 3.181000000000000e-01 + 5.948400000000000e-01 + 8.264600000000000e-01 + 9.736700000000000e-01 + 1.016200000000000e+00 + 9.558900000000000e-01 + 8.122700000000000e-01 + 6.142100000000000e-01 + 3.904200000000000e-01 + 1.625400000000000e-01 +-5.681700000000000e-02 +-2.607700000000000e-01 +-4.418500000000000e-01 +-5.869200000000000e-01 +-6.776500000000000e-01 +-6.971200000000000e-01 +-6.390200000000000e-01 +-5.132700000000000e-01 +-3.436900000000000e-01 +-1.588500000000000e-01 + 1.810400000000000e-02 + 1.739600000000000e-01 + 3.022300000000000e-01 + 3.962500000000000e-01 + 4.453900000000000e-01 + 4.387200000000000e-01 + 3.738300000000000e-01 + 2.638600000000000e-01 + 1.364000000000000e-01 + 2.355800000000000e-02 +-5.102000000000000e-02 +-8.045400000000000e-02 +-7.391800000000000e-02 +-4.901100000000000e-02 +-2.314600000000000e-02 +-8.960800000000000e-03 +-1.428300000000000e-02 +-4.343100000000000e-02 +-9.659900000000000e-02 +-1.674100000000000e-01 +-2.417800000000000e-01 +-3.011100000000000e-01 +-3.292700000000000e-01 +-3.190800000000000e-01 +-2.736500000000000e-01 +-2.016900000000000e-01 +-1.105200000000000e-01 +-2.757700000000000e-03 + 1.203000000000000e-01 + 2.513300000000000e-01 + 3.721000000000000e-01 + 4.562700000000000e-01 + 4.798400000000000e-01 + 4.329200000000000e-01 + 3.252700000000000e-01 + 1.818600000000000e-01 + 3.127200000000000e-02 +-1.054800000000000e-01 +-2.190700000000000e-01 +-3.077700000000000e-01 +-3.694900000000000e-01 +-3.967700000000000e-01 +-3.784300000000000e-01 +-3.063000000000000e-01 +-1.820800000000000e-01 +-1.948400000000000e-02 + 1.588400000000000e-01 + 3.269200000000000e-01 + 4.596300000000000e-01 + 5.347200000000000e-01 + 5.344200000000000e-01 + 4.496500000000000e-01 + 2.863600000000000e-01 + 6.987200000000000e-02 +-1.581400000000000e-01 +-3.519800000000000e-01 +-4.786600000000000e-01 +-5.298500000000000e-01 +-5.212100000000000e-01 +-4.788900000000000e-01 +-4.219900000000000e-01 +-3.526600000000000e-01 +-2.609800000000000e-01 +-1.407200000000000e-01 +-3.784300000000000e-03 + 1.189700000000000e-01 + 1.933900000000000e-01 + 2.046200000000000e-01 + 1.706200000000000e-01 + 1.355200000000000e-01 + 1.447800000000000e-01 + 2.172500000000000e-01 + 3.323400000000000e-01 + 4.411000000000000e-01 + 4.949400000000000e-01 + 4.741800000000000e-01 + 3.985900000000000e-01 + 3.141700000000000e-01 + 2.651000000000000e-01 + 2.683100000000000e-01 + 3.051500000000000e-01 + 3.332800000000000e-01 + 3.095500000000000e-01 + 2.101000000000000e-01 + 3.799300000000000e-02 +-1.823400000000000e-01 +-4.172200000000000e-01 +-6.345400000000000e-01 +-8.094000000000000e-01 +-9.254900000000000e-01 +-9.752400000000000e-01 +-9.600400000000000e-01 +-8.893500000000000e-01 +-7.768100000000000e-01 +-6.341100000000000e-01 +-4.661400000000000e-01 +-2.720300000000000e-01 +-5.263000000000000e-02 + 1.798400000000000e-01 + 3.975100000000000e-01 + 5.632900000000000e-01 + 6.463100000000001e-01 + 6.383400000000000e-01 + 5.609200000000000e-01 + 4.579200000000000e-01 + 3.770800000000000e-01 + 3.504500000000000e-01 + 3.839100000000000e-01 + 4.596800000000000e-01 + 5.476500000000000e-01 + 6.173999999999999e-01 + 6.449100000000000e-01 + 6.141900000000000e-01 + 5.180000000000000e-01 + 3.614900000000000e-01 + 1.668600000000000e-01 +-2.671100000000000e-02 +-1.732600000000000e-01 +-2.384700000000000e-01 +-2.175100000000000e-01 +-1.409600000000000e-01 +-6.363099999999999e-02 +-4.102700000000000e-02 +-1.062000000000000e-01 +-2.587900000000000e-01 +-4.701300000000000e-01 +-6.984600000000000e-01 +-9.039100000000000e-01 +-1.056100000000000e+00 +-1.134500000000000e+00 +-1.127100000000000e+00 +-1.031700000000000e+00 +-8.589900000000000e-01 +-6.336500000000000e-01 +-3.882900000000000e-01 +-1.525300000000000e-01 + 5.697900000000000e-02 + 2.389800000000000e-01 + 4.012000000000000e-01 + 5.498600000000000e-01 + 6.825700000000000e-01 + 7.888700000000000e-01 + 8.569000000000000e-01 + 8.809399999999999e-01 + 8.649500000000000e-01 + 8.210900000000000e-01 + 7.655100000000000e-01 + 7.137800000000000e-01 + 6.770300000000000e-01 + 6.581600000000000e-01 + 6.488800000000000e-01 + 6.300600000000000e-01 + 5.774100000000000e-01 + 4.717600000000000e-01 + 3.085600000000000e-01 + 1.003000000000000e-01 +-1.301300000000000e-01 +-3.610600000000000e-01 +-5.804500000000000e-01 +-7.852000000000000e-01 +-9.729500000000000e-01 +-1.133700000000000e+00 +-1.249000000000000e+00 +-1.298900000000000e+00 +-1.271800000000000e+00 +-1.168100000000000e+00 +-9.963200000000000e-01 +-7.656800000000000e-01 +-4.844800000000000e-01 +-1.661100000000000e-01 + 1.620700000000000e-01 + 4.570500000000000e-01 + 6.716600000000000e-01 + 7.745700000000000e-01 + 7.664400000000000e-01 + 6.805200000000000e-01 + 5.664100000000000e-01 + 4.666200000000000e-01 + 4.000700000000000e-01 + 3.608600000000000e-01 + 3.300300000000000e-01 + 2.906600000000000e-01 + 2.373800000000000e-01 + 1.774800000000000e-01 + 1.267800000000000e-01 + 1.039600000000000e-01 + 1.242600000000000e-01 + 1.920400000000000e-01 + 2.934600000000000e-01 + 3.947900000000000e-01 + 4.515900000000000e-01 + 4.277900000000000e-01 + 3.149300000000000e-01 + 1.383200000000000e-01 +-5.645000000000000e-02 +-2.293900000000000e-01 +-3.672800000000000e-01 +-4.850200000000000e-01 +-6.059600000000001e-01 +-7.360900000000000e-01 +-8.519200000000000e-01 +-9.120000000000000e-01 +-8.840500000000000e-01 +-7.680300000000000e-01 +-5.982200000000000e-01 +-4.232800000000000e-01 +-2.787500000000000e-01 +-1.710200000000000e-01 +-8.132499999999999e-02 + 1.618700000000000e-02 + 1.373900000000000e-01 + 2.830200000000000e-01 + 4.451400000000000e-01 + 6.156000000000000e-01 + 7.877800000000000e-01 + 9.507000000000000e-01 + 1.083000000000000e+00 + 1.155000000000000e+00 + 1.139400000000000e+00 + 1.025200000000000e+00 + 8.242800000000000e-01 + 5.676600000000001e-01 + 2.933500000000000e-01 + 3.413500000000000e-02 +-1.898300000000000e-01 +-3.724900000000000e-01 +-5.200000000000000e-01 +-6.472300000000000e-01 +-7.724200000000000e-01 +-9.092000000000000e-01 +-1.057700000000000e+00 +-1.199400000000000e+00 +-1.300600000000000e+00 +-1.323800000000000e+00 +-1.242900000000000e+00 +-1.053400000000000e+00 +-7.723300000000000e-01 +-4.314000000000000e-01 +-6.628500000000000e-02 + 2.901600000000000e-01 + 6.104700000000000e-01 + 8.727500000000000e-01 + 1.061600000000000e+00 + 1.170100000000000e+00 + 1.201200000000000e+00 + 1.165900000000000e+00 + 1.079800000000000e+00 + 9.584900000000000e-01 + 8.156400000000000e-01 + 6.627500000000000e-01 + 5.089000000000000e-01 + 3.596900000000000e-01 + 2.161600000000000e-01 + 7.584299999999999e-02 +-6.364000000000000e-02 +-2.009300000000000e-01 +-3.305900000000000e-01 +-4.471100000000000e-01 +-5.496600000000000e-01 +-6.425200000000000e-01 +-7.288800000000000e-01 +-8.023100000000000e-01 +-8.436600000000000e-01 +-8.285800000000000e-01 +-7.426800000000000e-01 +-5.941900000000000e-01 +-4.139400000000000e-01 +-2.410200000000000e-01 +-1.026500000000000e-01 +-1.482200000000000e-03 + 8.166900000000001e-02 + 1.721900000000000e-01 + 2.842100000000000e-01 + 4.120800000000000e-01 + 5.340000000000000e-01 + 6.229400000000000e-01 + 6.569900000000000e-01 + 6.248500000000000e-01 + 5.272900000000000e-01 + 3.773500000000000e-01 + 1.994300000000000e-01 + 2.501000000000000e-02 +-1.167200000000000e-01 +-2.101800000000000e-01 +-2.596400000000000e-01 +-2.853100000000000e-01 +-3.103300000000000e-01 +-3.471300000000000e-01 +-3.917400000000000e-01 +-4.287300000000000e-01 +-4.408800000000000e-01 +-4.157300000000000e-01 +-3.451600000000000e-01 +-2.225200000000000e-01 +-4.425400000000000e-02 + 1.819300000000000e-01 + 4.285300000000000e-01 + 6.495100000000000e-01 + 7.954599999999999e-01 + 8.354500000000000e-01 + 7.717900000000000e-01 + 6.372000000000000e-01 + 4.766400000000000e-01 + 3.265800000000000e-01 + 2.046000000000000e-01 + 1.125500000000000e-01 + 4.509800000000000e-02 +-6.592100000000000e-03 +-5.830100000000000e-02 +-1.349800000000000e-01 +-2.621400000000000e-01 +-4.467100000000000e-01 +-6.609699999999999e-01 +-8.461200000000000e-01 +-9.397900000000000e-01 +-9.123100000000000e-01 +-7.861800000000000e-01 +-6.224499999999999e-01 +-4.810600000000000e-01 +-3.826100000000000e-01 +-2.990600000000000e-01 +-1.802900000000000e-01 + 3.318100000000000e-03 + 2.336400000000000e-01 + 4.522000000000000e-01 + 5.956000000000000e-01 + 6.327100000000000e-01 + 5.782400000000000e-01 + 4.771700000000000e-01 + 3.757300000000000e-01 + 3.011600000000000e-01 + 2.611100000000000e-01 + 2.555300000000000e-01 + 2.853900000000000e-01 + 3.488800000000000e-01 + 4.310400000000000e-01 + 5.002600000000000e-01 + 5.199000000000000e-01 + 4.688800000000000e-01 + 3.550400000000000e-01 + 2.095200000000000e-01 + 6.509700000000000e-02 +-6.538300000000000e-02 +-1.936900000000000e-01 +-3.406600000000000e-01 +-5.127300000000000e-01 +-6.889400000000000e-01 +-8.283800000000000e-01 +-8.924900000000000e-01 +-8.662500000000000e-01 +-7.643100000000000e-01 +-6.199200000000000e-01 +-4.662800000000000e-01 +-3.231500000000000e-01 +-1.950700000000000e-01 +-7.850600000000001e-02 + 3.004300000000000e-02 + 1.307500000000000e-01 + 2.223200000000000e-01 + 3.052600000000000e-01 + 3.827100000000000e-01 + 4.585600000000000e-01 + 5.344500000000000e-01 + 6.079700000000000e-01 + 6.727400000000000e-01 + 7.197600000000000e-01 + 7.391900000000000e-01 + 7.223600000000000e-01 + 6.632700000000000e-01 + 5.594200000000000e-01 + 4.115000000000000e-01 + 2.231200000000000e-01 + 1.911300000000000e-03 +-2.375200000000000e-01 +-4.714700000000000e-01 +-6.695600000000000e-01 +-8.037400000000000e-01 +-8.605200000000000e-01 +-8.483500000000000e-01 +-7.934900000000000e-01 +-7.245500000000000e-01 +-6.552200000000000e-01 +-5.774000000000000e-01 +-4.706700000000000e-01 +-3.221100000000000e-01 +-1.414300000000000e-01 + 4.056100000000000e-02 + 1.902600000000000e-01 + 2.928600000000000e-01 + 3.606700000000000e-01 + 4.210600000000000e-01 + 4.930100000000000e-01 + 5.701500000000000e-01 + 6.236800000000000e-01 + 6.233800000000000e-01 + 5.609900000000000e-01 + 4.581800000000000e-01 + 3.532600000000000e-01 + 2.764800000000000e-01 + 2.319700000000000e-01 + 1.988000000000000e-01 + 1.493400000000000e-01 + 7.053800000000000e-02 +-2.672900000000000e-02 +-1.158800000000000e-01 +-1.730700000000000e-01 +-1.923900000000000e-01 +-1.881300000000000e-01 +-1.841100000000000e-01 +-1.985400000000000e-01 +-2.343900000000000e-01 +-2.803400000000000e-01 +-3.199100000000000e-01 +-3.420000000000000e-01 +-3.462300000000000e-01 +-3.404900000000000e-01 +-3.332400000000000e-01 +-3.259900000000000e-01 +-3.114400000000000e-01 +-2.786200000000000e-01 +-2.220700000000000e-01 +-1.481300000000000e-01 +-7.303300000000000e-02 +-1.263100000000000e-02 + 2.962600000000000e-02 + 6.714700000000000e-02 + 1.220900000000000e-01 + 2.088500000000000e-01 + 3.206700000000000e-01 + 4.301700000000000e-01 + 5.049000000000000e-01 + 5.274500000000000e-01 + 5.051000000000000e-01 + 4.611200000000000e-01 + 4.141900000000000e-01 + 3.622000000000000e-01 + 2.842300000000000e-01 + 1.603200000000000e-01 +-5.906300000000000e-03 +-1.802700000000000e-01 +-3.137100000000000e-01 +-3.701800000000000e-01 +-3.466600000000000e-01 +-2.711300000000000e-01 +-1.814700000000000e-01 +-1.024200000000000e-01 +-3.825100000000000e-02 + 1.547500000000000e-02 + 5.394000000000000e-02 + 5.694800000000000e-02 + 2.228100000000000e-03 +-1.116300000000000e-01 +-2.522200000000000e-01 +-3.636100000000000e-01 +-3.956000000000000e-01 +-3.325100000000000e-01 +-2.015900000000000e-01 +-5.531100000000000e-02 + 5.937600000000000e-02 + 1.239900000000000e-01 + 1.495900000000000e-01 + 1.587200000000000e-01 + 1.638200000000000e-01 + 1.585400000000000e-01 + 1.268600000000000e-01 + 6.154600000000000e-02 +-2.266600000000000e-02 +-9.125200000000000e-02 +-1.063600000000000e-01 +-4.746800000000000e-02 + 7.591500000000000e-02 + 2.263000000000000e-01 + 3.536800000000000e-01 + 4.166100000000000e-01 + 3.988900000000000e-01 + 3.143500000000000e-01 + 1.977000000000000e-01 + 8.609400000000000e-02 + 6.765600000000000e-04 +-6.190700000000000e-02 +-1.233300000000000e-01 +-2.065000000000000e-01 +-3.182000000000000e-01 +-4.425800000000000e-01 +-5.494400000000000e-01 +-6.112500000000000e-01 +-6.168100000000000e-01 +-5.721800000000000e-01 +-4.894600000000000e-01 +-3.728800000000000e-01 +-2.142700000000000e-01 +-2.291500000000000e-03 + 2.606300000000000e-01 + 5.464200000000000e-01 + 8.040900000000000e-01 + 9.773600000000000e-01 + 1.027200000000000e+00 + 9.470000000000000e-01 + 7.631100000000000e-01 + 5.223400000000000e-01 + 2.744300000000000e-01 + 5.785400000000000e-02 +-1.067500000000000e-01 +-2.160200000000000e-01 +-2.791400000000000e-01 +-3.114000000000000e-01 +-3.278000000000000e-01 +-3.379600000000000e-01 +-3.437900000000000e-01 +-3.413200000000000e-01 +-3.257300000000000e-01 +-2.971800000000000e-01 +-2.636700000000000e-01 +-2.393300000000000e-01 +-2.387700000000000e-01 +-2.706900000000000e-01 +-3.339300000000000e-01 +-4.173200000000000e-01 +-5.029400000000001e-01 +-5.708500000000000e-01 +-6.032900000000000e-01 +-5.872800000000000e-01 +-5.151500000000000e-01 +-3.836300000000000e-01 +-1.932100000000000e-01 + 5.090500000000000e-02 + 3.356400000000000e-01 + 6.368400000000000e-01 + 9.196400000000000e-01 + 1.145100000000000e+00 + 1.282300000000000e+00 + 1.319700000000000e+00 + 1.269800000000000e+00 + 1.161400000000000e+00 + 1.024900000000000e+00 + 8.782000000000000e-01 + 7.218100000000000e-01 + 5.457100000000000e-01 + 3.413400000000000e-01 + 1.097500000000000e-01 +-1.396800000000000e-01 +-3.969900000000000e-01 +-6.578000000000001e-01 +-9.211600000000000e-01 +-1.180100000000000e+00 +-1.413100000000000e+00 +-1.584500000000000e+00 +-1.657100000000000e+00 +-1.607600000000000e+00 +-1.438400000000000e+00 +-1.175200000000000e+00 +-8.561600000000000e-01 +-5.188400000000000e-01 +-1.925700000000000e-01 + 1.023300000000000e-01 + 3.526100000000000e-01 + 5.517200000000000e-01 + 7.012900000000000e-01 + 8.108500000000000e-01 + 8.927800000000000e-01 + 9.542100000000000e-01 + 9.915000000000000e-01 + 9.924300000000000e-01 + 9.453500000000000e-01 + 8.486600000000000e-01 + 7.134000000000000e-01 + 5.574000000000000e-01 + 3.962700000000000e-01 + 2.392200000000000e-01 + 9.274200000000000e-02 +-3.212000000000000e-02 +-1.172800000000000e-01 +-1.446400000000000e-01 +-1.089300000000000e-01 +-2.640200000000000e-02 + 6.822900000000000e-02 + 1.360500000000000e-01 + 1.500100000000000e-01 + 1.023000000000000e-01 +-3.971900000000000e-04 +-1.476700000000000e-01 +-3.316600000000000e-01 +-5.434200000000000e-01 +-7.633000000000000e-01 +-9.558500000000000e-01 +-1.077300000000000e+00 +-1.093900000000000e+00 +-9.999400000000001e-01 +-8.226500000000000e-01 +-6.095600000000000e-01 +-4.047000000000000e-01 +-2.286500000000000e-01 +-7.425900000000001e-02 + 7.994400000000000e-02 + 2.483100000000000e-01 + 4.229100000000000e-01 + 5.748200000000000e-01 + 6.711800000000000e-01 + 6.973400000000000e-01 + 6.695600000000000e-01 + 6.290700000000000e-01 + 6.193500000000000e-01 + 6.592300000000000e-01 + 7.280200000000000e-01 + 7.731200000000000e-01 + 7.377000000000000e-01 + 5.932100000000000e-01 + 3.577400000000000e-01 + 8.857700000000000e-02 +-1.472000000000000e-01 +-3.063200000000000e-01 +-3.869700000000000e-01 +-4.208300000000000e-01 +-4.465800000000000e-01 +-4.836900000000000e-01 +-5.237500000000000e-01 +-5.428500000000001e-01 +-5.235300000000001e-01 +-4.688100000000000e-01 +-3.986800000000000e-01 +-3.336400000000000e-01 +-2.798100000000000e-01 +-2.277900000000000e-01 +-1.653500000000000e-01 +-9.221900000000000e-02 +-2.388200000000000e-02 + 1.941500000000000e-02 + 2.946100000000000e-02 + 1.867700000000000e-02 + 1.311200000000000e-02 + 3.532200000000000e-02 + 9.085300000000000e-02 + 1.688600000000000e-01 + 2.554300000000000e-01 + 3.473100000000000e-01 + 4.535600000000000e-01 + 5.827500000000000e-01 + 7.262600000000000e-01 + 8.522900000000000e-01 + 9.176299999999999e-01 + 8.900900000000000e-01 + 7.657800000000000e-01 + 5.686900000000000e-01 + 3.335200000000000e-01 + 8.477400000000000e-02 +-1.724600000000000e-01 +-4.443900000000000e-01 +-7.310700000000000e-01 +-1.014300000000000e+00 +-1.261100000000000e+00 +-1.439200000000000e+00 +-1.532900000000000e+00 +-1.547000000000000e+00 +-1.495800000000000e+00 +-1.387700000000000e+00 +-1.217600000000000e+00 +-9.725400000000000e-01 +-6.468000000000000e-01 +-2.526400000000000e-01 + 1.802700000000000e-01 + 6.163600000000000e-01 + 1.026400000000000e+00 + 1.391000000000000e+00 + 1.694100000000000e+00 + 1.915000000000000e+00 + 2.028700000000000e+00 + 2.017900000000000e+00 + 1.888500000000000e+00 + 1.674300000000000e+00 + 1.424500000000000e+00 + 1.179100000000000e+00 + 9.473600000000000e-01 + 7.066800000000000e-01 + 4.222900000000000e-01 + 7.596400000000000e-02 +-3.163500000000000e-01 +-7.100500000000000e-01 +-1.056300000000000e+00 +-1.328100000000000e+00 +-1.529500000000000e+00 +-1.683900000000000e+00 +-1.810600000000000e+00 +-1.908100000000000e+00 +-1.955200000000000e+00 +-1.926900000000000e+00 +-1.811600000000000e+00 +-1.617300000000000e+00 +-1.363000000000000e+00 +-1.065400000000000e+00 +-7.317700000000000e-01 +-3.638700000000000e-01 + 3.134900000000000e-02 + 4.357300000000000e-01 + 8.231300000000000e-01 + 1.169100000000000e+00 + 1.458100000000000e+00 + 1.682700000000000e+00 + 1.837100000000000e+00 + 1.911900000000000e+00 + 1.898200000000000e+00 + 1.796200000000000e+00 + 1.621800000000000e+00 + 1.402500000000000e+00 + 1.163800000000000e+00 + 9.170199999999999e-01 + 6.577200000000000e-01 + 3.783000000000000e-01 + 8.410300000000000e-02 +-1.999100000000000e-01 +-4.390100000000000e-01 +-6.090500000000000e-01 +-7.124800000000000e-01 +-7.778500000000000e-01 +-8.423500000000000e-01 +-9.292200000000000e-01 +-1.034900000000000e+00 +-1.133200000000000e+00 +-1.191500000000000e+00 +-1.187800000000000e+00 +-1.118500000000000e+00 +-9.961300000000000e-01 +-8.412800000000000e-01 +-6.761500000000000e-01 +-5.198700000000001e-01 +-3.847500000000000e-01 +-2.720300000000000e-01 +-1.701100000000000e-01 +-5.929300000000000e-02 + 7.640000000000000e-02 + 2.363800000000000e-01 + 3.992600000000000e-01 + 5.326100000000000e-01 + 6.122000000000000e-01 + 6.384900000000000e-01 + 6.383700000000000e-01 + 6.500300000000000e-01 + 7.003800000000000e-01 + 7.897700000000000e-01 + 8.931700000000000e-01 + 9.753200000000000e-01 + 1.008600000000000e+00 + 9.823000000000000e-01 + 8.991300000000000e-01 + 7.659700000000000e-01 + 5.866800000000000e-01 + 3.628900000000000e-01 + 1.003400000000000e-01 +-1.858700000000000e-01 +-4.717800000000000e-01 +-7.305600000000000e-01 +-9.396700000000000e-01 +-1.084500000000000e+00 +-1.157600000000000e+00 +-1.156700000000000e+00 +-1.083100000000000e+00 +-9.428900000000000e-01 +-7.494600000000000e-01 +-5.234500000000000e-01 +-2.905300000000000e-01 +-7.664100000000000e-02 + 9.710600000000000e-02 + 2.182100000000000e-01 + 2.842600000000000e-01 + 3.017500000000000e-01 + 2.831000000000000e-01 + 2.430900000000000e-01 + 1.965800000000000e-01 + 1.578900000000000e-01 + 1.405800000000000e-01 + 1.550600000000000e-01 + 2.028200000000000e-01 + 2.700600000000000e-01 + 3.266900000000000e-01 + 3.359500000000000e-01 + 2.729700000000000e-01 + 1.429200000000000e-01 +-1.421100000000000e-02 +-1.388600000000000e-01 +-1.809900000000000e-01 +-1.262400000000000e-01 +-2.417500000000000e-03 + 1.383300000000000e-01 + 2.496300000000000e-01 + 3.132100000000000e-01 + 3.394200000000000e-01 + 3.484100000000000e-01 + 3.486400000000000e-01 + 3.299600000000000e-01 + 2.758900000000000e-01 + 1.832700000000000e-01 + 7.150600000000000e-02 +-2.775900000000000e-02 +-9.301100000000000e-02 +-1.292600000000000e-01 +-1.644300000000000e-01 +-2.274400000000000e-01 +-3.243800000000000e-01 +-4.311200000000000e-01 +-5.081700000000000e-01 +-5.270200000000000e-01 +-4.889200000000000e-01 +-4.230300000000000e-01 +-3.666800000000000e-01 +-3.422200000000000e-01 +-3.460500000000000e-01 +-3.549800000000000e-01 +-3.427400000000000e-01 +-2.945900000000000e-01 +-2.116200000000000e-01 +-1.056800000000000e-01 + 8.718399999999999e-03 + 1.193900000000000e-01 + 2.171400000000000e-01 + 2.948700000000000e-01 + 3.482200000000000e-01 + 3.777600000000000e-01 + 3.907300000000000e-01 + 3.998100000000000e-01 + 4.188100000000000e-01 + 4.568500000000000e-01 + 5.134200000000000e-01 + 5.760500000000000e-01 + 6.222900000000000e-01 + 6.264999999999999e-01 + 5.702600000000000e-01 + 4.526200000000000e-01 + 2.938900000000000e-01 + 1.289300000000000e-01 +-8.493300000000001e-03 +-1.018300000000000e-01 +-1.581000000000000e-01 +-1.995800000000000e-01 +-2.463100000000000e-01 +-3.020100000000000e-01 +-3.537600000000000e-01 +-3.856300000000000e-01 +-3.949100000000000e-01 +-3.974700000000000e-01 +-4.169600000000000e-01 +-4.658700000000000e-01 +-5.335600000000000e-01 +-5.911000000000000e-01 +-6.099000000000000e-01 +-5.797500000000000e-01 +-5.129000000000000e-01 +-4.317200000000000e-01 +-3.505200000000000e-01 +-2.658900000000000e-01 +-1.623600000000000e-01 +-2.773100000000000e-02 + 1.344700000000000e-01 + 3.042100000000000e-01 + 4.547400000000000e-01 + 5.642800000000000e-01 + 6.221500000000000e-01 + 6.284100000000000e-01 + 5.917000000000000e-01 + 5.285500000000000e-01 + 4.619300000000000e-01 + 4.142200000000000e-01 + 3.942500000000000e-01 + 3.864900000000000e-01 + 3.542400000000000e-01 + 2.607400000000000e-01 + 9.780999999999999e-02 +-9.837300000000000e-02 +-2.597500000000000e-01 +-3.236100000000000e-01 +-2.715100000000000e-01 +-1.427800000000000e-01 +-1.112200000000000e-02 + 6.115000000000000e-02 + 6.045600000000000e-02 + 2.540000000000000e-02 + 1.479100000000000e-02 + 6.337200000000000e-02 + 1.559700000000000e-01 + 2.365100000000000e-01 + 2.435000000000000e-01 + 1.467200000000000e-01 +-3.813500000000000e-02 +-2.624400000000000e-01 +-4.723500000000000e-01 +-6.317400000000000e-01 +-7.286400000000000e-01 +-7.674200000000000e-01 +-7.571900000000000e-01 +-7.058300000000000e-01 +-6.207600000000000e-01 +-5.116600000000000e-01 +-3.902500000000000e-01 +-2.668400000000000e-01 +-1.471800000000000e-01 +-3.231700000000000e-02 + 7.877099999999999e-02 + 1.870200000000000e-01 + 2.934000000000000e-01 + 4.003000000000000e-01 + 5.112700000000000e-01 + 6.278600000000000e-01 + 7.455900000000000e-01 + 8.528000000000000e-01 + 9.341100000000000e-01 + 9.764600000000000e-01 + 9.733800000000000e-01 + 9.245300000000000e-01 + 8.317500000000000e-01 + 6.953100000000000e-01 + 5.139400000000000e-01 + 2.886400000000000e-01 + 2.718200000000000e-02 +-2.538000000000000e-01 +-5.305700000000000e-01 +-7.765300000000001e-01 +-9.674500000000000e-01 +-1.086500000000000e+00 +-1.128300000000000e+00 +-1.101400000000000e+00 +-1.025600000000000e+00 +-9.247400000000000e-01 +-8.165800000000000e-01 +-7.059900000000000e-01 +-5.864000000000000e-01 +-4.487300000000000e-01 +-2.915700000000000e-01 +-1.241200000000000e-01 + 4.090400000000000e-02 + 1.985500000000000e-01 + 3.568400000000000e-01 + 5.292500000000000e-01 + 7.187300000000000e-01 + 9.056200000000000e-01 + 1.051000000000000e+00 + 1.115900000000000e+00 + 1.084800000000000e+00 + 9.758800000000000e-01 + 8.311400000000000e-01 + 6.924800000000000e-01 + 5.797400000000000e-01 + 4.849100000000000e-01 + 3.840400000000000e-01 + 2.555100000000000e-01 + 9.124400000000001e-02 +-1.048000000000000e-01 +-3.250500000000000e-01 +-5.631900000000000e-01 +-8.102200000000001e-01 +-1.046200000000000e+00 +-1.238000000000000e+00 +-1.348200000000000e+00 +-1.351600000000000e+00 +-1.248000000000000e+00 +-1.060800000000000e+00 +-8.249300000000001e-01 +-5.694800000000000e-01 +-3.097200000000000e-01 +-4.985000000000000e-02 + 2.075300000000000e-01 + 4.544300000000000e-01 + 6.776799999999999e-01 + 8.641799999999999e-01 + 1.004900000000000e+00 + 1.093600000000000e+00 + 1.123000000000000e+00 + 1.083200000000000e+00 + 9.663600000000000e-01 + 7.756300000000000e-01 + 5.313300000000000e-01 + 2.691400000000000e-01 + 2.991000000000000e-02 +-1.537300000000000e-01 +-2.672300000000000e-01 +-3.161300000000000e-01 +-3.206000000000000e-01 +-3.058300000000000e-01 +-2.923900000000000e-01 +-2.901800000000000e-01 +-2.979500000000000e-01 +-3.087000000000000e-01 +-3.178100000000000e-01 +-3.289400000000000e-01 +-3.521700000000000e-01 +-3.940900000000000e-01 +-4.460500000000000e-01 +-4.806300000000000e-01 +-4.625400000000000e-01 +-3.698500000000000e-01 +-2.116800000000000e-01 +-2.829400000000000e-02 + 1.298000000000000e-01 + 2.314000000000000e-01 + 2.823700000000000e-01 + 3.180700000000000e-01 + 3.746800000000000e-01 + 4.596100000000000e-01 + 5.427300000000000e-01 + 5.752000000000000e-01 + 5.226000000000000e-01 + 3.887400000000000e-01 + 2.140100000000000e-01 + 5.096800000000000e-02 +-6.427700000000000e-02 +-1.255500000000000e-01 +-1.489700000000000e-01 +-1.542400000000000e-01 +-1.511400000000000e-01 +-1.398200000000000e-01 +-1.204900000000000e-01 +-1.010300000000000e-01 +-9.487600000000000e-02 +-1.119000000000000e-01 +-1.514000000000000e-01 +-2.034500000000000e-01 +-2.560400000000000e-01 +-3.001800000000000e-01 +-3.278600000000000e-01 +-3.266400000000000e-01 +-2.797700000000000e-01 +-1.764800000000000e-01 +-2.655200000000000e-02 + 1.339600000000000e-01 + 2.550400000000000e-01 + 2.986400000000000e-01 + 2.616600000000000e-01 + 1.790200000000000e-01 + 1.033700000000000e-01 + 7.425300000000000e-02 + 9.738500000000000e-02 + 1.465800000000000e-01 + 1.844400000000000e-01 + 1.856700000000000e-01 + 1.476700000000000e-01 + 8.483300000000001e-02 + 1.549400000000000e-02 +-4.702400000000000e-02 +-9.444400000000000e-02 +-1.194500000000000e-01 +-1.150200000000000e-01 +-7.932699999999999e-02 +-2.089500000000000e-02 + 4.298000000000000e-02 + 9.557100000000000e-02 + 1.308900000000000e-01 + 1.558000000000000e-01 + 1.816500000000000e-01 + 2.122700000000000e-01 + 2.387600000000000e-01 + 2.457300000000000e-01 + 2.235700000000000e-01 + 1.758500000000000e-01 + 1.151200000000000e-01 + 5.112700000000000e-02 +-1.785100000000000e-02 +-1.020000000000000e-01 +-2.075100000000000e-01 +-3.256300000000000e-01 +-4.335600000000000e-01 +-5.076900000000000e-01 +-5.389100000000000e-01 +-5.374900000000000e-01 +-5.234300000000000e-01 +-5.098200000000001e-01 +-4.924800000000000e-01 +-4.533100000000000e-01 +-3.742000000000000e-01 +-2.503100000000000e-01 +-9.381399999999999e-02 + 7.260999999999999e-02 + 2.254700000000000e-01 + 3.464100000000000e-01 + 4.230900000000000e-01 + 4.491700000000000e-01 + 4.269100000000000e-01 + 3.706700000000000e-01 + 3.056600000000000e-01 + 2.590200000000000e-01 + 2.471100000000000e-01 + 2.684200000000000e-01 + 3.080800000000000e-01 + 3.509400000000000e-01 + 3.920800000000000e-01 + 4.352900000000000e-01 + 4.803500000000000e-01 + 5.108900000000000e-01 + 4.958700000000000e-01 + 4.072300000000000e-01 + 2.421100000000000e-01 + 3.233100000000000e-02 +-1.682100000000000e-01 +-3.111500000000000e-01 +-3.778100000000000e-01 +-3.841400000000000e-01 +-3.647100000000000e-01 +-3.489800000000000e-01 +-3.465600000000000e-01 +-3.488500000000000e-01 +-3.416300000000000e-01 +-3.164100000000000e-01 +-2.733500000000000e-01 +-2.177400000000000e-01 +-1.573200000000000e-01 +-1.039100000000000e-01 +-7.522100000000000e-02 +-9.036000000000000e-02 +-1.578200000000000e-01 +-2.642900000000000e-01 +-3.753600000000000e-01 +-4.516200000000000e-01 +-4.705100000000000e-01 +-4.379100000000000e-01 +-3.796500000000000e-01 +-3.190900000000000e-01 +-2.584600000000000e-01 +-1.794000000000000e-01 +-6.234700000000000e-02 + 9.143999999999999e-02 + 2.542800000000000e-01 + 3.886900000000000e-01 + 4.736300000000000e-01 + 5.194200000000000e-01 + 5.591699999999999e-01 + 6.236000000000000e-01 + 7.186399999999999e-01 + 8.221100000000000e-01 + 8.996400000000000e-01 + 9.247500000000000e-01 + 8.873100000000000e-01 + 7.870900000000000e-01 + 6.235700000000000e-01 + 3.959900000000000e-01 + 1.162900000000000e-01 +-1.776500000000000e-01 +-4.253400000000000e-01 +-5.684700000000000e-01 +-5.836800000000000e-01 +-4.998100000000000e-01 +-3.848300000000000e-01 +-3.090600000000000e-01 +-3.084300000000000e-01 +-3.716800000000000e-01 +-4.576200000000000e-01 +-5.272800000000000e-01 +-5.669800000000000e-01 +-5.878300000000000e-01 +-6.061600000000000e-01 +-6.229300000000000e-01 +-6.184100000000000e-01 +-5.649400000000000e-01 +-4.465900000000000e-01 +-2.713400000000000e-01 +-6.831300000000000e-02 + 1.257300000000000e-01 + 2.812400000000000e-01 + 3.844300000000000e-01 + 4.380700000000000e-01 + 4.571600000000000e-01 + 4.617800000000000e-01 + 4.684400000000000e-01 + 4.816100000000000e-01 + 4.894300000000000e-01 + 4.683700000000000e-01 + 3.967700000000000e-01 + 2.709600000000000e-01 + 1.131300000000000e-01 +-3.572200000000000e-02 +-1.347700000000000e-01 +-1.627900000000000e-01 +-1.260000000000000e-01 +-5.089900000000000e-02 + 3.125700000000000e-02 + 9.724900000000000e-02 + 1.357800000000000e-01 + 1.447000000000000e-01 + 1.281800000000000e-01 + 9.711800000000000e-02 + 6.932400000000000e-02 + 6.370000000000001e-02 + 8.803700000000000e-02 + 1.285900000000000e-01 + 1.523100000000000e-01 + 1.249300000000000e-01 + 3.465700000000000e-02 +-9.568300000000000e-02 +-2.192600000000000e-01 +-2.931500000000000e-01 +-3.042400000000000e-01 +-2.742300000000000e-01 +-2.406200000000000e-01 +-2.289400000000000e-01 +-2.380400000000000e-01 +-2.489100000000000e-01 +-2.481300000000000e-01 +-2.445500000000000e-01 +-2.641200000000000e-01 +-3.260000000000000e-01 +-4.194900000000000e-01 +-5.012799999999999e-01 +-5.169300000000000e-01 +-4.314200000000000e-01 +-2.475500000000000e-01 +-1.089300000000000e-03 + 2.606400000000000e-01 + 4.994500000000000e-01 + 6.934800000000000e-01 + 8.316600000000000e-01 + 9.066000000000000e-01 + 9.150600000000000e-01 + 8.642300000000001e-01 + 7.741000000000000e-01 + 6.684099999999999e-01 + 5.587700000000000e-01 + 4.354300000000000e-01 + 2.754200000000000e-01 + 6.492700000000000e-02 +-1.809600000000000e-01 +-4.181600000000000e-01 +-5.962600000000000e-01 +-6.887900000000000e-01 +-7.087500000000000e-01 +-6.975600000000000e-01 +-6.951400000000000e-01 +-7.128300000000000e-01 +-7.282300000000000e-01 +-7.037500000000000e-01 +-6.142900000000000e-01 +-4.639700000000000e-01 +-2.825700000000000e-01 +-1.074000000000000e-01 + 3.514500000000000e-02 + 1.376200000000000e-01 + 2.083600000000000e-01 + 2.638100000000000e-01 + 3.221700000000000e-01 + 3.987300000000000e-01 + 5.003100000000000e-01 + 6.188900000000001e-01 + 7.295600000000000e-01 + 7.981800000000000e-01 + 7.976200000000000e-01 + 7.226300000000000e-01 + 5.921100000000000e-01 + 4.353600000000000e-01 + 2.721100000000000e-01 + 1.020600000000000e-01 +-8.706700000000001e-02 +-2.990500000000000e-01 +-5.135700000000000e-01 +-6.900900000000000e-01 +-7.901100000000000e-01 +-8.014000000000000e-01 +-7.447500000000000e-01 +-6.573099999999999e-01 +-5.650700000000000e-01 +-4.659900000000000e-01 +-3.367000000000000e-01 +-1.570200000000000e-01 + 6.751400000000000e-02 + 3.027800000000000e-01 + 5.043500000000000e-01 + 6.416200000000000e-01 + 7.092700000000000e-01 + 7.189300000000000e-01 + 6.808600000000000e-01 + 5.930600000000000e-01 + 4.474100000000000e-01 + 2.470700000000000e-01 + 1.916000000000000e-02 +-1.901800000000000e-01 +-3.367600000000000e-01 +-4.013200000000000e-01 +-3.985400000000000e-01 +-3.668900000000000e-01 +-3.469000000000000e-01 +-3.618200000000000e-01 +-4.103700000000000e-01 +-4.716300000000000e-01 +-5.159100000000000e-01 +-5.155500000000000e-01 +-4.534400000000000e-01 +-3.295400000000000e-01 +-1.638100000000000e-01 + 8.270000000000000e-03 + 1.491700000000000e-01 + 2.372500000000000e-01 + 2.782700000000000e-01 + 3.012300000000000e-01 + 3.388300000000000e-01 + 4.048600000000000e-01 + 4.843300000000000e-01 + 5.444500000000000e-01 + 5.589700000000000e-01 + 5.280400000000000e-01 + 4.786600000000000e-01 + 4.448700000000000e-01 + 4.423200000000000e-01 + 4.556600000000000e-01 + 4.476700000000000e-01 + 3.827100000000000e-01 + 2.478700000000000e-01 + 5.848200000000000e-02 +-1.525000000000000e-01 +-3.505300000000000e-01 +-5.090800000000000e-01 +-6.096100000000000e-01 +-6.384900000000000e-01 +-5.893300000000000e-01 +-4.719900000000000e-01 +-3.201300000000000e-01 +-1.867200000000000e-01 +-1.243100000000000e-01 +-1.595400000000000e-01 +-2.777800000000000e-01 +-4.295200000000000e-01 +-5.559400000000000e-01 +-6.184400000000000e-01 +-6.139900000000000e-01 +-5.677600000000000e-01 +-5.092400000000000e-01 +-4.486500000000000e-01 +-3.691000000000000e-01 +-2.392900000000000e-01 +-3.779800000000000e-02 + 2.270000000000000e-01 + 5.142800000000000e-01 + 7.674000000000000e-01 + 9.401800000000000e-01 + 1.017400000000000e+00 + 1.018100000000000e+00 + 9.799000000000000e-01 + 9.345700000000000e-01 + 8.897100000000000e-01 + 8.269700000000000e-01 + 7.175400000000000e-01 + 5.441400000000000e-01 + 3.154300000000000e-01 + 6.389200000000000e-02 +-1.700400000000000e-01 +-3.565400000000000e-01 +-4.855100000000000e-01 +-5.626500000000000e-01 +-5.984100000000000e-01 +-6.001500000000000e-01 +-5.732699999999999e-01 +-5.276100000000000e-01 +-4.803000000000000e-01 +-4.491900000000000e-01 +-4.402000000000000e-01 +-4.395800000000000e-01 +-4.194300000000000e-01 +-3.551400000000000e-01 +-2.426800000000000e-01 +-1.025500000000000e-01 + 3.300100000000000e-02 + 1.396000000000000e-01 + 2.118800000000000e-01 + 2.578100000000000e-01 + 2.823900000000000e-01 + 2.763700000000000e-01 + 2.215600000000000e-01 + 1.096300000000000e-01 +-4.153900000000000e-02 +-1.898600000000000e-01 +-2.907400000000000e-01 +-3.232000000000000e-01 +-2.997600000000000e-01 +-2.518300000000000e-01 +-2.019000000000000e-01 +-1.455500000000000e-01 +-5.880300000000000e-02 + 7.431300000000000e-02 + 2.369000000000000e-01 + 3.794200000000000e-01 + 4.482400000000000e-01 + 4.229900000000000e-01 + 3.344400000000000e-01 + 2.483400000000000e-01 + 2.256100000000000e-01 + 2.866500000000000e-01 + 4.036300000000000e-01 + 5.235300000000001e-01 + 6.025100000000000e-01 + 6.264900000000000e-01 + 6.063600000000000e-01 + 5.568000000000000e-01 + 4.788100000000000e-01 + 3.602500000000000e-01 + 1.911900000000000e-01 +-2.086800000000000e-02 +-2.495200000000000e-01 +-4.623900000000000e-01 +-6.368300000000000e-01 +-7.659400000000000e-01 +-8.524700000000000e-01 +-8.992200000000000e-01 +-9.063099999999999e-01 +-8.772100000000000e-01 +-8.251500000000001e-01 +-7.703000000000000e-01 +-7.264699999999999e-01 +-6.879200000000000e-01 +-6.291000000000000e-01 +-5.208100000000000e-01 +-3.516900000000000e-01 +-1.379600000000000e-01 + 8.720400000000000e-02 + 2.968000000000000e-01 + 4.864500000000000e-01 + 6.699400000000000e-01 + 8.566500000000000e-01 + 1.029800000000000e+00 + 1.145100000000000e+00 + 1.154200000000000e+00 + 1.036200000000000e+00 + 8.147700000000000e-01 + 5.472100000000000e-01 + 2.935200000000000e-01 + 8.819500000000000e-02 +-6.649800000000000e-02 +-1.846100000000000e-01 +-2.740900000000000e-01 +-3.270400000000000e-01 +-3.288000000000000e-01 +-2.752100000000000e-01 +-1.809000000000000e-01 +-7.057700000000000e-02 + 3.831700000000000e-02 + 1.450600000000000e-01 + 2.570000000000000e-01 + 3.693000000000000e-01 + 4.515500000000000e-01 + 4.556600000000000e-01 + 3.432200000000000e-01 + 1.133000000000000e-01 +-1.902700000000000e-01 +-4.991400000000000e-01 +-7.549500000000000e-01 +-9.344900000000000e-01 +-1.049200000000000e+00 +-1.121700000000000e+00 +-1.159300000000000e+00 +-1.143000000000000e+00 +-1.040200000000000e+00 +-8.307200000000000e-01 +-5.247300000000000e-01 +-1.628600000000000e-01 + 2.016700000000000e-01 + 5.246900000000000e-01 + 7.830200000000000e-01 + 9.717300000000000e-01 + 1.092800000000000e+00 + 1.145200000000000e+00 + 1.123400000000000e+00 + 1.023300000000000e+00 + 8.492800000000000e-01 + 6.186600000000000e-01 + 3.597500000000000e-01 + 1.070700000000000e-01 +-1.049000000000000e-01 +-2.480100000000000e-01 +-3.068500000000000e-01 +-2.840700000000000e-01 +-2.020000000000000e-01 +-9.795800000000000e-02 +-1.290200000000000e-02 + 2.262500000000000e-02 +-8.547000000000000e-04 +-6.985100000000000e-02 +-1.558400000000000e-01 +-2.291200000000000e-01 +-2.717300000000000e-01 +-2.830300000000000e-01 +-2.758900000000000e-01 +-2.661800000000000e-01 +-2.622500000000000e-01 +-2.607600000000000e-01 +-2.511900000000000e-01 +-2.257000000000000e-01 +-1.868600000000000e-01 +-1.466300000000000e-01 +-1.162900000000000e-01 +-9.416500000000000e-02 +-6.128100000000000e-02 + 9.146200000000000e-03 + 1.323200000000000e-01 + 2.952000000000000e-01 + 4.553700000000000e-01 + 5.591900000000000e-01 + 5.692500000000000e-01 + 4.841300000000000e-01 + 3.375500000000000e-01 + 1.779300000000000e-01 + 4.258700000000000e-02 +-5.633200000000000e-02 +-1.265900000000000e-01 +-1.786200000000000e-01 +-2.119500000000000e-01 +-2.164300000000000e-01 +-1.866300000000000e-01 +-1.359400000000000e-01 +-9.700100000000000e-02 +-1.058700000000000e-01 +-1.802000000000000e-01 +-3.068600000000000e-01 +-4.471200000000000e-01 +-5.551600000000000e-01 +-5.969200000000000e-01 +-5.586100000000001e-01 +-4.435800000000000e-01 +-2.646200000000000e-01 +-3.977200000000000e-02 + 2.067200000000000e-01 + 4.434800000000000e-01 + 6.365200000000000e-01 + 7.591000000000000e-01 + 8.007100000000000e-01 + 7.684800000000001e-01 + 6.801800000000000e-01 + 5.551000000000000e-01 + 4.097600000000000e-01 + 2.604200000000000e-01 + 1.266600000000000e-01 + 2.919700000000000e-02 +-1.940900000000000e-02 +-2.424400000000000e-02 +-8.326200000000001e-03 +-8.665900000000000e-04 +-2.079500000000000e-02 +-6.787500000000000e-02 +-1.282600000000000e-01 +-1.894600000000000e-01 +-2.513600000000000e-01 +-3.231900000000000e-01 +-4.085600000000000e-01 +-4.921400000000000e-01 +-5.417200000000000e-01 +-5.271000000000000e-01 +-4.427300000000000e-01 +-3.162100000000000e-01 +-1.946300000000000e-01 +-1.176200000000000e-01 +-9.619100000000000e-02 +-1.118400000000000e-01 +-1.342900000000000e-01 +-1.425900000000000e-01 +-1.331600000000000e-01 +-1.113200000000000e-01 +-7.697800000000000e-02 +-1.973500000000000e-02 + 7.108600000000000e-02 + 1.905800000000000e-01 + 3.121800000000000e-01 + 3.995700000000000e-01 + 4.293100000000000e-01 + 4.068100000000000e-01 + 3.625400000000000e-01 + 3.305100000000000e-01 + 3.250300000000000e-01 + 3.330600000000000e-01 + 3.266800000000000e-01 + 2.851000000000000e-01 + 2.089600000000000e-01 + 1.176500000000000e-01 + 3.448300000000000e-02 +-2.677000000000000e-02 +-6.384300000000000e-02 +-7.798800000000000e-02 +-6.652300000000000e-02 +-2.486600000000000e-02 + 4.313600000000000e-02 + 1.169800000000000e-01 + 1.633700000000000e-01 + 1.522700000000000e-01 + 7.440600000000000e-02 +-5.281200000000000e-02 +-1.952800000000000e-01 +-3.205800000000000e-01 +-4.115000000000000e-01 +-4.667600000000000e-01 +-4.920900000000000e-01 +-4.920500000000000e-01 +-4.698200000000000e-01 +-4.327600000000000e-01 +-3.948400000000000e-01 +-3.690600000000000e-01 +-3.537400000000000e-01 +-3.249100000000000e-01 +-2.453600000000000e-01 +-8.857500000000000e-02 + 1.373500000000000e-01 + 3.841600000000000e-01 + 5.832900000000000e-01 + 6.806900000000000e-01 + 6.645900000000000e-01 + 5.684100000000000e-01 + 4.476500000000000e-01 + 3.470000000000000e-01 + 2.792900000000000e-01 + 2.281300000000000e-01 + 1.690500000000000e-01 + 9.192000000000000e-02 + 9.130100000000000e-03 +-5.431400000000000e-02 +-7.921100000000000e-02 +-6.536300000000000e-02 +-3.158400000000000e-02 +-4.933100000000000e-03 +-7.940800000000000e-03 +-5.123100000000000e-02 +-1.326700000000000e-01 +-2.392500000000000e-01 +-3.484900000000000e-01 +-4.301000000000000e-01 +-4.519400000000000e-01 +-3.916400000000000e-01 +-2.498800000000000e-01 +-5.666000000000000e-02 + 1.358900000000000e-01 + 2.730000000000000e-01 + 3.194700000000000e-01 + 2.727800000000000e-01 + 1.605000000000000e-01 + 2.533300000000000e-02 +-9.254800000000001e-02 +-1.666100000000000e-01 +-1.858300000000000e-01 +-1.514600000000000e-01 +-7.438300000000000e-02 + 2.515800000000000e-02 + 1.190500000000000e-01 + 1.782400000000000e-01 + 1.848900000000000e-01 + 1.430900000000000e-01 + 7.967500000000000e-02 + 3.171800000000000e-02 + 2.677000000000000e-02 + 6.765100000000000e-02 + 1.314900000000000e-01 + 1.833400000000000e-01 + 1.950700000000000e-01 + 1.576400000000000e-01 + 8.068500000000001e-02 +-1.696900000000000e-02 +-1.168400000000000e-01 +-2.040000000000000e-01 +-2.649000000000000e-01 +-2.866400000000000e-01 +-2.622400000000000e-01 +-1.995100000000000e-01 +-1.246700000000000e-01 +-7.370100000000000e-02 +-7.299000000000000e-02 +-1.210600000000000e-01 +-1.845900000000000e-01 +-2.138600000000000e-01 +-1.695200000000000e-01 +-4.446400000000000e-02 + 1.325200000000000e-01 + 3.123000000000000e-01 + 4.494900000000000e-01 + 5.200800000000000e-01 + 5.244799999999999e-01 + 4.779600000000000e-01 + 3.978900000000000e-01 + 2.959900000000000e-01 + 1.779900000000000e-01 + 4.749400000000000e-02 +-9.015900000000000e-02 +-2.258300000000000e-01 +-3.457700000000000e-01 +-4.321500000000000e-01 +-4.665500000000000e-01 +-4.375500000000000e-01 +-3.499600000000000e-01 +-2.293900000000000e-01 +-1.163400000000000e-01 +-5.025000000000000e-02 +-5.160300000000000e-02 +-1.131100000000000e-01 +-2.054800000000000e-01 +-2.933600000000000e-01 +-3.500200000000000e-01 +-3.620000000000000e-01 +-3.239800000000000e-01 +-2.323900000000000e-01 +-8.602700000000001e-02 + 1.063600000000000e-01 + 3.203700000000000e-01 + 5.210000000000000e-01 + 6.782800000000000e-01 + 7.821500000000000e-01 + 8.438900000000000e-01 + 8.809800000000000e-01 + 8.971500000000000e-01 + 8.747200000000001e-01 + 7.875700000000000e-01 + 6.251500000000000e-01 + 4.073900000000000e-01 + 1.757600000000000e-01 +-3.456400000000000e-02 +-2.195900000000000e-01 +-4.068400000000000e-01 +-6.284300000000000e-01 +-8.869000000000000e-01 +-1.141400000000000e+00 +-1.327000000000000e+00 +-1.393900000000000e+00 +-1.337300000000000e+00 +-1.195100000000000e+00 +-1.016900000000000e+00 +-8.292800000000000e-01 +-6.242900000000000e-01 +-3.781100000000000e-01 +-8.203900000000000e-02 + 2.412200000000000e-01 + 5.486700000000000e-01 + 8.042800000000000e-01 + 9.979100000000000e-01 + 1.140000000000000e+00 + 1.239000000000000e+00 + 1.283800000000000e+00 + 1.250000000000000e+00 + 1.125000000000000e+00 + 9.294400000000000e-01 + 7.128300000000000e-01 + 5.231500000000000e-01 + 3.738700000000000e-01 + 2.366600000000000e-01 + 6.817800000000000e-02 +-1.490400000000000e-01 +-3.850200000000000e-01 +-5.792000000000000e-01 +-6.842100000000000e-01 +-7.021200000000000e-01 +-6.838800000000000e-01 +-6.907700000000000e-01 +-7.473300000000000e-01 +-8.216700000000000e-01 +-8.481200000000000e-01 +-7.747300000000000e-01 +-5.998100000000000e-01 +-3.720200000000000e-01 +-1.568200000000000e-01 + 3.272100000000000e-03 + 1.061100000000000e-01 + 1.766300000000000e-01 + 2.387400000000000e-01 + 2.966900000000000e-01 + 3.385000000000000e-01 + 3.535300000000000e-01 + 3.456300000000000e-01 + 3.296300000000000e-01 + 3.158900000000000e-01 + 2.986600000000000e-01 + 2.601200000000000e-01 + 1.875500000000000e-01 + 8.874000000000000e-02 +-7.957499999999999e-03 +-6.995899999999999e-02 +-8.031400000000000e-02 +-4.599300000000000e-02 + 1.072400000000000e-02 + 6.945600000000000e-02 + 1.233700000000000e-01 + 1.771300000000000e-01 + 2.349300000000000e-01 + 2.899900000000000e-01 + 3.246200000000000e-01 + 3.203700000000000e-01 + 2.701300000000000e-01 + 1.833100000000000e-01 + 8.169200000000000e-02 +-9.987100000000000e-03 +-7.242200000000000e-02 +-9.625800000000000e-02 +-8.349800000000000e-02 +-4.746300000000000e-02 +-1.082100000000000e-02 + 2.449800000000000e-04 +-3.428000000000000e-02 +-1.189000000000000e-01 +-2.398400000000000e-01 +-3.718600000000000e-01 +-4.910700000000000e-01 +-5.853200000000000e-01 +-6.550100000000000e-01 +-7.047000000000000e-01 +-7.326900000000000e-01 +-7.273900000000000e-01 +-6.735400000000000e-01 +-5.632900000000000e-01 +-4.035300000000000e-01 +-2.140600000000000e-01 +-1.829100000000000e-02 + 1.668100000000000e-01 + 3.350100000000000e-01 + 4.883000000000000e-01 + 6.308000000000000e-01 + 7.634000000000000e-01 + 8.807100000000000e-01 + 9.698000000000000e-01 + 1.010700000000000e+00 + 9.803200000000000e-01 + 8.623100000000000e-01 + 6.598100000000000e-01 + 4.044400000000000e-01 + 1.525000000000000e-01 +-3.454400000000000e-02 +-1.172700000000000e-01 +-9.801799999999999e-02 +-2.028900000000000e-02 + 5.340000000000000e-02 + 7.240300000000000e-02 + 1.941000000000000e-02 +-8.906900000000000e-02 +-2.204600000000000e-01 +-3.479200000000000e-01 +-4.613100000000000e-01 +-5.624000000000000e-01 +-6.515700000000000e-01 +-7.186100000000000e-01 +-7.456199999999999e-01 +-7.192499999999999e-01 +-6.422500000000000e-01 +-5.348200000000000e-01 +-4.244700000000000e-01 +-3.309900000000000e-01 +-2.564300000000000e-01 +-1.858300000000000e-01 +-9.720400000000000e-02 + 2.527300000000000e-02 + 1.818700000000000e-01 + 3.550100000000000e-01 + 5.141600000000000e-01 + 6.254700000000000e-01 + 6.631400000000000e-01 + 6.191600000000000e-01 + 5.075800000000000e-01 + 3.610700000000000e-01 + 2.198400000000000e-01 + 1.173100000000000e-01 + 6.899500000000000e-02 + 6.975700000000000e-02 + 9.994400000000001e-02 + 1.361800000000000e-01 + 1.605500000000000e-01 + 1.641600000000000e-01 + 1.454200000000000e-01 + 1.063000000000000e-01 + 4.982200000000000e-02 +-2.039600000000000e-02 +-9.966100000000000e-02 +-1.822100000000000e-01 +-2.615400000000000e-01 +-3.303200000000000e-01 +-3.797600000000000e-01 +-4.001600000000000e-01 +-3.841000000000000e-01 +-3.317800000000000e-01 +-2.544900000000000e-01 +-1.719000000000000e-01 +-1.022900000000000e-01 +-5.074900000000000e-02 +-3.708300000000000e-03 + 6.455800000000000e-02 + 1.754500000000000e-01 + 3.292700000000000e-01 + 4.991500000000000e-01 + 6.403600000000000e-01 + 7.096100000000000e-01 + 6.830400000000000e-01 + 5.630700000000000e-01 + 3.729700000000000e-01 + 1.453500000000000e-01 +-8.707300000000000e-02 +-2.951400000000000e-01 +-4.545400000000000e-01 +-5.495400000000000e-01 +-5.796700000000000e-01 +-5.635500000000000e-01 +-5.329000000000000e-01 +-5.160500000000000e-01 +-5.195900000000000e-01 +-5.215400000000000e-01 +-4.836100000000000e-01 +-3.768900000000000e-01 +-2.047900000000000e-01 +-6.639800000000000e-03 + 1.619700000000000e-01 + 2.601600000000000e-01 + 2.837700000000000e-01 + 2.641600000000000e-01 + 2.454000000000000e-01 + 2.561600000000000e-01 + 2.948400000000000e-01 + 3.363600000000000e-01 + 3.532300000000000e-01 + 3.350500000000000e-01 + 2.935400000000000e-01 + 2.521600000000000e-01 + 2.301400000000000e-01 + 2.326200000000000e-01 + 2.518700000000000e-01 + 2.756100000000000e-01 + 2.939500000000000e-01 + 3.004200000000000e-01 + 2.885000000000000e-01 + 2.493400000000000e-01 + 1.741800000000000e-01 + 5.989400000000000e-02 +-8.691500000000001e-02 +-2.510000000000000e-01 +-4.135400000000000e-01 +-5.571800000000000e-01 +-6.678300000000000e-01 +-7.338100000000000e-01 +-7.455200000000000e-01 +-6.979400000000000e-01 +-5.945200000000000e-01 +-4.485000000000000e-01 +-2.792700000000000e-01 +-1.055300000000000e-01 + 5.959900000000000e-02 + 2.081400000000000e-01 + 3.327400000000000e-01 + 4.236900000000000e-01 + 4.719100000000000e-01 + 4.769000000000000e-01 + 4.525500000000000e-01 + 4.238900000000000e-01 + 4.141000000000000e-01 + 4.293400000000000e-01 + 4.519900000000000e-01 + 4.482400000000000e-01 + 3.856700000000000e-01 + 2.502500000000000e-01 + 5.274400000000000e-02 +-1.773400000000000e-01 +-4.040200000000000e-01 +-5.949100000000000e-01 +-7.255000000000000e-01 +-7.800200000000000e-01 +-7.533300000000001e-01 +-6.547100000000000e-01 +-5.087500000000000e-01 +-3.486900000000000e-01 +-2.027900000000000e-01 +-8.179000000000000e-02 + 2.299200000000000e-02 + 1.280900000000000e-01 + 2.407800000000000e-01 + 3.497200000000000e-01 + 4.314800000000000e-01 + 4.688000000000000e-01 + 4.662900000000000e-01 + 4.499100000000000e-01 + 4.492500000000000e-01 + 4.746900000000000e-01 + 5.072100000000000e-01 + 5.091500000000000e-01 + 4.492700000000000e-01 + 3.245500000000000e-01 + 1.638400000000000e-01 + 1.175600000000000e-02 +-9.527700000000000e-02 +-1.448800000000000e-01 +-1.487000000000000e-01 +-1.308300000000000e-01 +-1.157400000000000e-01 +-1.233700000000000e-01 +-1.700900000000000e-01 +-2.679700000000000e-01 +-4.177200000000000e-01 +-5.988000000000000e-01 +-7.664900000000000e-01 +-8.637100000000000e-01 +-8.449700000000000e-01 +-6.998000000000000e-01 +-4.609500000000000e-01 +-1.911400000000000e-01 + 4.488200000000000e-02 + 2.071800000000000e-01 + 2.919600000000000e-01 + 3.230800000000000e-01 + 3.314600000000000e-01 + 3.358900000000000e-01 + 3.360500000000000e-01 + 3.200800000000000e-01 + 2.796200000000000e-01 + 2.216400000000000e-01 + 1.690600000000000e-01 + 1.489600000000000e-01 + 1.753900000000000e-01 + 2.374100000000000e-01 + 3.009500000000000e-01 + 3.256800000000000e-01 + 2.883100000000000e-01 + 1.986100000000000e-01 + 9.691000000000000e-02 + 3.237600000000000e-02 + 3.384700000000000e-02 + 9.112500000000000e-02 + 1.595000000000000e-01 + 1.859400000000000e-01 + 1.410000000000000e-01 + 3.621900000000000e-02 +-8.416999999999999e-02 +-1.713400000000000e-01 +-2.010000000000000e-01 +-1.846800000000000e-01 +-1.570800000000000e-01 +-1.500200000000000e-01 +-1.718100000000000e-01 +-2.057800000000000e-01 +-2.270300000000000e-01 +-2.239000000000000e-01 +-2.079900000000000e-01 +-2.061600000000000e-01 +-2.409800000000000e-01 +-3.138900000000000e-01 +-4.024000000000000e-01 +-4.722400000000000e-01 +-4.956300000000000e-01 +-4.636200000000000e-01 +-3.862100000000000e-01 +-2.823400000000000e-01 +-1.678100000000000e-01 +-4.891600000000000e-02 + 7.587200000000000e-02 + 2.093500000000000e-01 + 3.498200000000000e-01 + 4.897800000000000e-01 + 6.188500000000000e-01 + 7.277200000000000e-01 + 8.096200000000000e-01 + 8.585199999999999e-01 + 8.659400000000000e-01 + 8.201000000000001e-01 + 7.093600000000000e-01 + 5.294600000000000e-01 + 2.906600000000000e-01 + 2.022100000000000e-02 +-2.423600000000000e-01 +-4.562300000000000e-01 +-5.917000000000000e-01 +-6.389400000000000e-01 +-6.096000000000000e-01 +-5.311700000000000e-01 +-4.371700000000000e-01 +-3.565900000000000e-01 +-3.057100000000000e-01 +-2.837500000000000e-01 +-2.738400000000000e-01 +-2.497800000000000e-01 +-1.877500000000000e-01 +-7.931700000000000e-02 + 6.056200000000000e-02 + 1.960700000000000e-01 + 2.845500000000000e-01 + 2.961800000000000e-01 + 2.287600000000000e-01 + 1.090500000000000e-01 +-2.079200000000000e-02 +-1.235800000000000e-01 +-1.822400000000000e-01 +-2.012300000000000e-01 +-1.951100000000000e-01 +-1.736300000000000e-01 +-1.343600000000000e-01 +-6.791500000000000e-02 + 2.886800000000000e-02 + 1.423200000000000e-01 + 2.428200000000000e-01 + 2.981100000000000e-01 + 2.910200000000000e-01 + 2.303100000000000e-01 + 1.470800000000000e-01 + 7.832799999999999e-02 + 4.723300000000000e-02 + 5.188800000000000e-02 + 6.941400000000000e-02 + 7.292200000000000e-02 + 5.071900000000000e-02 + 1.524300000000000e-02 +-4.837500000000000e-03 + 1.477200000000000e-02 + 7.380500000000000e-02 + 1.418900000000000e-01 + 1.733700000000000e-01 + 1.346800000000000e-01 + 2.708800000000000e-02 +-1.110100000000000e-01 +-2.252200000000000e-01 +-2.766900000000000e-01 +-2.633700000000000e-01 +-2.167500000000000e-01 +-1.767600000000000e-01 +-1.628900000000000e-01 +-1.620500000000000e-01 +-1.410900000000000e-01 +-7.390900000000000e-02 + 3.721800000000000e-02 + 1.611300000000000e-01 + 2.569500000000000e-01 + 2.974300000000000e-01 + 2.796600000000000e-01 + 2.180500000000000e-01 + 1.288900000000000e-01 + 2.133400000000000e-02 +-9.854400000000001e-02 +-2.168800000000000e-01 +-3.075800000000000e-01 +-3.416100000000000e-01 +-3.042500000000000e-01 +-2.061200000000000e-01 +-7.771400000000001e-02 + 4.897100000000000e-02 + 1.572000000000000e-01 + 2.470500000000000e-01 + 3.211300000000000e-01 + 3.680600000000000e-01 + 3.595800000000000e-01 + 2.664400000000000e-01 + 8.180100000000000e-02 +-1.659300000000000e-01 +-4.216200000000000e-01 +-6.274100000000000e-01 +-7.452100000000000e-01 +-7.630800000000000e-01 +-6.852600000000000e-01 +-5.182500000000000e-01 +-2.671500000000000e-01 + 5.483600000000000e-02 + 4.139800000000000e-01 + 7.546600000000000e-01 + 1.014700000000000e+00 + 1.148700000000000e+00 + 1.144800000000000e+00 + 1.023700000000000e+00 + 8.240200000000000e-01 + 5.835900000000001e-01 + 3.304900000000000e-01 + 8.388100000000000e-02 +-1.405400000000000e-01 +-3.282200000000000e-01 +-4.682900000000000e-01 +-5.571400000000000e-01 +-5.984900000000000e-01 +-6.004800000000000e-01 +-5.738600000000000e-01 +-5.338900000000000e-01 +-5.026100000000000e-01 +-5.050600000000000e-01 +-5.565600000000001e-01 +-6.475500000000000e-01 +-7.384800000000000e-01 +-7.729700000000000e-01 +-7.048200000000000e-01 +-5.227100000000000e-01 +-2.559800000000000e-01 + 4.239400000000000e-02 + 3.233600000000000e-01 + 5.605100000000000e-01 + 7.488400000000000e-01 + 8.885100000000000e-01 + 9.704600000000000e-01 + 9.774200000000000e-01 + 8.999000000000000e-01 + 7.527700000000001e-01 + 5.769200000000000e-01 + 4.220500000000000e-01 + 3.219000000000000e-01 + 2.785800000000000e-01 + 2.656500000000000e-01 + 2.455900000000000e-01 + 1.886900000000000e-01 + 8.271900000000000e-02 +-6.764299999999999e-02 +-2.454500000000000e-01 +-4.246600000000000e-01 +-5.728300000000000e-01 +-6.583300000000000e-01 +-6.634300000000000e-01 +-5.964699999999999e-01 +-4.924800000000000e-01 +-3.969900000000000e-01 +-3.408000000000000e-01 +-3.220400000000000e-01 +-3.091100000000000e-01 +-2.638100000000000e-01 +-1.692600000000000e-01 +-4.322500000000000e-02 + 7.186200000000000e-02 + 1.342900000000000e-01 + 1.260500000000000e-01 + 5.894400000000000e-02 +-3.709500000000000e-02 +-1.322000000000000e-01 +-2.079400000000000e-01 +-2.566600000000000e-01 +-2.738500000000000e-01 +-2.528400000000000e-01 +-1.865000000000000e-01 +-7.328999999999999e-02 + 7.876000000000000e-02 + 2.539900000000000e-01 + 4.349100000000000e-01 + 6.069400000000000e-01 + 7.589600000000000e-01 + 8.810300000000000e-01 + 9.628900000000000e-01 + 9.951500000000000e-01 + 9.715100000000000e-01 + 8.893600000000000e-01 + 7.484000000000000e-01 + 5.498800000000000e-01 + 2.993700000000000e-01 + 1.235100000000000e-02 +-2.825100000000000e-01 +-5.476600000000000e-01 +-7.487200000000001e-01 +-8.681100000000000e-01 +-9.115200000000000e-01 +-9.026100000000000e-01 +-8.692500000000000e-01 +-8.298400000000000e-01 +-7.874000000000000e-01 +-7.327700000000000e-01 +-6.530000000000000e-01 +-5.391100000000000e-01 +-3.909500000000000e-01 +-2.192000000000000e-01 +-4.510900000000000e-02 + 1.035000000000000e-01 + 2.019600000000000e-01 + 2.419600000000000e-01 + 2.404300000000000e-01 + 2.355200000000000e-01 + 2.672100000000000e-01 + 3.519200000000000e-01 + 4.675800000000000e-01 + 5.618600000000000e-01 + 5.815800000000000e-01 + 5.059500000000000e-01 + 3.618900000000000e-01 + 2.106800000000000e-01 + 1.138100000000000e-01 + 9.990300000000001e-02 + 1.529900000000000e-01 + 2.272800000000000e-01 + 2.760400000000000e-01 + 2.750100000000000e-01 + 2.271900000000000e-01 + 1.509900000000000e-01 + 6.400300000000000e-02 +-2.503800000000000e-02 +-1.128100000000000e-01 +-1.931300000000000e-01 +-2.533500000000000e-01 +-2.794400000000000e-01 +-2.661300000000000e-01 +-2.234600000000000e-01 +-1.742200000000000e-01 +-1.428200000000000e-01 +-1.422900000000000e-01 +-1.669000000000000e-01 +-1.947500000000000e-01 +-1.990300000000000e-01 +-1.623400000000000e-01 +-8.705499999999999e-02 + 3.788400000000000e-03 + 7.611700000000000e-02 + 1.008200000000000e-01 + 6.813200000000000e-02 +-7.390800000000000e-03 +-9.428200000000000e-02 +-1.596600000000000e-01 +-1.836300000000000e-01 +-1.645100000000000e-01 +-1.133900000000000e-01 +-4.410100000000000e-02 + 3.300000000000000e-02 + 1.093600000000000e-01 + 1.723700000000000e-01 + 2.032500000000000e-01 + 1.836600000000000e-01 + 1.079500000000000e-01 +-8.194900000000000e-03 +-1.308900000000000e-01 +-2.225100000000000e-01 +-2.586000000000000e-01 +-2.364400000000000e-01 +-1.704400000000000e-01 +-7.976900000000001e-02 + 2.172600000000000e-02 + 1.266000000000000e-01 + 2.274900000000000e-01 + 3.115000000000000e-01 + 3.618500000000000e-01 + 3.667300000000000e-01 + 3.278700000000000e-01 + 2.617400000000000e-01 + 1.916700000000000e-01 + 1.366200000000000e-01 + 1.042800000000000e-01 + 9.236800000000001e-02 + 9.502800000000000e-02 + 1.081700000000000e-01 + 1.296700000000000e-01 + 1.554000000000000e-01 + 1.758300000000000e-01 + 1.767600000000000e-01 + 1.441600000000000e-01 + 7.026399999999999e-02 +-4.242400000000000e-02 +-1.804300000000000e-01 +-3.217300000000000e-01 +-4.411300000000000e-01 +-5.181600000000000e-01 +-5.458000000000000e-01 +-5.353500000000000e-01 +-5.125200000000000e-01 +-5.037199999999999e-01 +-5.186200000000000e-01 +-5.403200000000000e-01 +-5.315800000000001e-01 +-4.556200000000000e-01 +-2.991500000000000e-01 +-8.247599999999999e-02 + 1.506200000000000e-01 + 3.561100000000000e-01 + 5.100300000000000e-01 + 6.125500000000000e-01 + 6.751800000000000e-01 + 7.035400000000001e-01 + 6.901100000000000e-01 + 6.224600000000000e-01 + 4.991900000000000e-01 + 3.395100000000000e-01 + 1.781800000000000e-01 + 4.934800000000000e-02 +-2.834000000000000e-02 +-5.555100000000000e-02 +-4.460300000000000e-02 +-9.188699999999999e-03 + 3.953000000000000e-02 + 8.921000000000000e-02 + 1.219700000000000e-01 + 1.173400000000000e-01 + 6.318600000000001e-02 +-3.335700000000000e-02 +-1.450600000000000e-01 +-2.370400000000000e-01 +-2.853100000000000e-01 +-2.890000000000000e-01 +-2.683300000000000e-01 +-2.504300000000000e-01 +-2.532400000000000e-01 +-2.778200000000000e-01 +-3.120300000000000e-01 +-3.408400000000000e-01 +-3.551900000000000e-01 +-3.548100000000000e-01 +-3.453400000000000e-01 +-3.332400000000000e-01 +-3.214500000000000e-01 +-3.066000000000000e-01 +-2.780500000000000e-01 +-2.197000000000000e-01 +-1.155300000000000e-01 + 4.240300000000000e-02 + 2.474400000000000e-01 + 4.780200000000000e-01 + 7.044600000000000e-01 + 8.986700000000000e-01 + 1.040100000000000e+00 + 1.114800000000000e+00 + 1.110500000000000e+00 + 1.015200000000000e+00 + 8.236000000000000e-01 + 5.473300000000000e-01 + 2.202300000000000e-01 +-1.088300000000000e-01 +-3.939700000000000e-01 +-6.099800000000000e-01 +-7.577199999999999e-01 +-8.535900000000000e-01 +-9.114800000000000e-01 +-9.309700000000000e-01 +-9.000200000000000e-01 +-8.085000000000000e-01 +-6.606500000000000e-01 +-4.762200000000000e-01 +-2.803600000000000e-01 +-9.149100000000000e-02 + 8.263500000000000e-02 + 2.388500000000000e-01 + 3.696000000000000e-01 + 4.605400000000000e-01 + 4.975400000000000e-01 + 4.767000000000000e-01 + 4.080100000000000e-01 + 3.090600000000000e-01 + 1.944700000000000e-01 + 7.123699999999999e-02 +-5.556200000000000e-02 +-1.717600000000000e-01 +-2.495000000000000e-01 +-2.564900000000000e-01 +-1.754700000000000e-01 +-2.071100000000000e-02 + 1.613200000000000e-01 + 3.101400000000000e-01 + 3.785500000000000e-01 + 3.539700000000000e-01 + 2.625800000000000e-01 + 1.556400000000000e-01 + 8.616400000000000e-02 + 8.701299999999999e-02 + 1.585000000000000e-01 + 2.688100000000000e-01 + 3.662800000000000e-01 + 3.992200000000000e-01 + 3.362900000000000e-01 + 1.785600000000000e-01 +-4.280200000000000e-02 +-2.824100000000000e-01 +-5.008500000000000e-01 +-6.766100000000000e-01 +-8.030800000000000e-01 +-8.754100000000000e-01 +-8.804200000000000e-01 +-8.008300000000000e-01 +-6.321400000000000e-01 +-3.983800000000000e-01 +-1.506400000000000e-01 + 5.530900000000000e-02 + 1.886300000000000e-01 + 2.587000000000000e-01 + 3.033600000000000e-01 + 3.578000000000000e-01 + 4.271300000000000e-01 + 4.836400000000000e-01 + 4.910300000000000e-01 + 4.365700000000000e-01 + 3.458000000000000e-01 + 2.677600000000000e-01 + 2.416300000000000e-01 + 2.698200000000000e-01 + 3.172400000000000e-01 + 3.363700000000000e-01 + 2.990100000000000e-01 + 2.124600000000000e-01 + 1.110700000000000e-01 + 3.256500000000000e-02 +-3.115700000000000e-03 +-2.412900000000000e-04 + 2.001800000000000e-02 + 3.096700000000000e-02 + 8.049199999999999e-03 +-6.711399999999999e-02 +-2.015100000000000e-01 +-3.830400000000000e-01 +-5.763200000000001e-01 +-7.304800000000000e-01 +-8.000400000000000e-01 +-7.683300000000000e-01 +-6.571000000000000e-01 +-5.133500000000000e-01 +-3.803600000000000e-01 +-2.722200000000000e-01 +-1.697600000000000e-01 +-4.038400000000000e-02 + 1.332300000000000e-01 + 3.364100000000000e-01 + 5.290700000000000e-01 + 6.692600000000000e-01 + 7.356800000000000e-01 + 7.340200000000000e-01 + 6.855700000000000e-01 + 6.097800000000000e-01 + 5.148000000000000e-01 + 4.010000000000000e-01 + 2.710400000000000e-01 + 1.355300000000000e-01 + 8.738500000000000e-03 +-1.010600000000000e-01 +-1.972500000000000e-01 +-2.905100000000000e-01 +-3.872700000000000e-01 +-4.804600000000000e-01 +-5.500100000000000e-01 +-5.733700000000000e-01 +-5.385100000000000e-01 +-4.508900000000000e-01 +-3.304600000000000e-01 +-2.019300000000000e-01 +-8.504200000000001e-02 + 1.038000000000000e-02 + 8.377200000000000e-02 + 1.403100000000000e-01 + 1.871800000000000e-01 + 2.306500000000000e-01 + 2.737900000000000e-01 + 3.149200000000000e-01 + 3.478800000000000e-01 + 3.650800000000000e-01 + 3.621700000000000e-01 + 3.416500000000000e-01 + 3.126000000000000e-01 + 2.859500000000000e-01 + 2.679700000000000e-01 + 2.558600000000000e-01 + 2.382000000000000e-01 + 1.999600000000000e-01 + 1.294200000000000e-01 + 2.355200000000000e-02 +-1.101600000000000e-01 +-2.557100000000000e-01 +-3.931800000000000e-01 +-5.045500000000001e-01 +-5.785900000000000e-01 +-6.134800000000000e-01 +-6.158600000000000e-01 +-5.967900000000000e-01 +-5.664300000000000e-01 +-5.302800000000000e-01 +-4.887300000000000e-01 +-4.396400000000000e-01 +-3.813000000000000e-01 +-3.134700000000000e-01 +-2.353000000000000e-01 +-1.425500000000000e-01 +-2.690600000000000e-02 + 1.202900000000000e-01 + 3.010900000000000e-01 + 5.044800000000000e-01 + 7.048600000000000e-01 + 8.676800000000000e-01 + 9.608800000000000e-01 + 9.674500000000000e-01 + 8.933500000000000e-01 + 7.668700000000001e-01 + 6.289200000000000e-01 + 5.181300000000000e-01 + 4.569400000000000e-01 + 4.445500000000000e-01 + 4.591700000000000e-01 + 4.674700000000000e-01 + 4.363900000000000e-01 + 3.419500000000000e-01 + 1.734700000000000e-01 +-6.587300000000000e-02 +-3.592700000000000e-01 +-6.769200000000000e-01 +-9.788100000000000e-01 +-1.222200000000000e+00 +-1.373600000000000e+00 +-1.419200000000000e+00 +-1.369200000000000e+00 +-1.250400000000000e+00 +-1.092100000000000e+00 +-9.129800000000000e-01 +-7.178800000000000e-01 +-5.049300000000000e-01 +-2.762200000000000e-01 +-4.321700000000000e-02 + 1.778200000000000e-01 + 3.761300000000000e-01 + 5.531199999999999e-01 + 7.190100000000000e-01 + 8.812600000000000e-01 + 1.033800000000000e+00 + 1.155900000000000e+00 + 1.222200000000000e+00 + 1.215700000000000e+00 + 1.135100000000000e+00 + 9.919800000000000e-01 + 8.015600000000001e-01 + 5.770000000000000e-01 + 3.312500000000000e-01 + 8.350100000000001e-02 +-1.387600000000000e-01 +-3.075700000000000e-01 +-4.088700000000000e-01 +-4.528900000000000e-01 +-4.708500000000000e-01 +-4.979000000000000e-01 +-5.526000000000000e-01 +-6.267700000000000e-01 +-6.923000000000000e-01 +-7.200600000000000e-01 +-6.975300000000000e-01 +-6.336600000000000e-01 +-5.488800000000000e-01 +-4.584300000000000e-01 +-3.611900000000000e-01 +-2.414700000000000e-01 +-8.221700000000000e-02 + 1.188600000000000e-01 + 3.402600000000000e-01 + 5.401700000000000e-01 + 6.715600000000000e-01 + 7.017900000000000e-01 + 6.276900000000000e-01 + 4.785100000000000e-01 + 3.041400000000000e-01 + 1.537500000000000e-01 + 5.512400000000000e-02 + 6.076300000000000e-03 +-1.735500000000000e-02 +-4.121300000000000e-02 +-7.553000000000000e-02 +-1.100500000000000e-01 +-1.261800000000000e-01 +-1.154100000000000e-01 +-8.925600000000000e-02 +-7.185800000000001e-02 +-8.033600000000000e-02 +-1.083800000000000e-01 +-1.273900000000000e-01 +-1.064800000000000e-01 +-3.764500000000000e-02 + 5.281100000000000e-02 + 1.166200000000000e-01 + 1.126700000000000e-01 + 3.382300000000000e-02 +-8.637200000000000e-02 +-1.911200000000000e-01 +-2.304800000000000e-01 +-1.858100000000000e-01 +-7.606700000000000e-02 + 5.441900000000000e-02 + 1.569800000000000e-01 + 1.972400000000000e-01 + 1.650800000000000e-01 + 7.532600000000000e-02 +-3.847700000000000e-02 +-1.352900000000000e-01 +-1.806400000000000e-01 +-1.596200000000000e-01 +-8.288500000000000e-02 + 1.837300000000000e-02 + 1.072600000000000e-01 + 1.581200000000000e-01 + 1.663200000000000e-01 + 1.463000000000000e-01 + 1.208300000000000e-01 + 1.092700000000000e-01 + 1.209800000000000e-01 + 1.545100000000000e-01 + 1.994600000000000e-01 + 2.382200000000000e-01 + 2.490600000000000e-01 + 2.134100000000000e-01 + 1.267800000000000e-01 + 6.843200000000000e-03 +-1.098000000000000e-01 +-1.844700000000000e-01 +-1.986700000000000e-01 +-1.668500000000000e-01 +-1.291800000000000e-01 +-1.271600000000000e-01 +-1.778600000000000e-01 +-2.641500000000000e-01 +-3.471300000000000e-01 +-3.910000000000000e-01 +-3.824500000000000e-01 +-3.325000000000000e-01 +-2.629400000000000e-01 +-1.905500000000000e-01 +-1.215100000000000e-01 +-5.741200000000000e-02 +-3.660100000000000e-03 + 2.983200000000000e-02 + 3.720400000000000e-02 + 2.590300000000000e-02 + 1.657000000000000e-02 + 3.181200000000000e-02 + 8.254900000000000e-02 + 1.632600000000000e-01 + 2.595700000000000e-01 + 3.603100000000000e-01 + 4.620700000000000e-01 + 5.617000000000000e-01 + 6.443000000000000e-01 + 6.806300000000000e-01 + 6.403400000000000e-01 + 5.136100000000000e-01 + 3.240900000000000e-01 + 1.210000000000000e-01 +-4.600300000000000e-02 +-1.517100000000000e-01 +-2.024300000000000e-01 +-2.218400000000000e-01 +-2.291400000000000e-01 +-2.282500000000000e-01 +-2.158800000000000e-01 +-1.991800000000000e-01 +-2.041500000000000e-01 +-2.638800000000000e-01 +-3.929800000000000e-01 +-5.681900000000000e-01 +-7.321000000000000e-01 +-8.200700000000000e-01 +-7.932700000000000e-01 +-6.561000000000000e-01 +-4.487000000000000e-01 +-2.226400000000000e-01 +-1.792200000000000e-02 + 1.454700000000000e-01 + 2.620400000000000e-01 + 3.318900000000000e-01 + 3.583800000000000e-01 + 3.525300000000000e-01 + 3.360600000000000e-01 + 3.358300000000000e-01 + 3.709200000000000e-01 + 4.416200000000000e-01 + 5.293600000000001e-01 + 6.078100000000000e-01 + 6.563900000000000e-01 + 6.660700000000001e-01 + 6.345900000000000e-01 + 5.580300000000000e-01 + 4.287000000000000e-01 + 2.426200000000000e-01 + 1.064600000000000e-02 +-2.376900000000000e-01 +-4.631800000000000e-01 +-6.337600000000000e-01 +-7.373400000000000e-01 +-7.817000000000000e-01 +-7.822300000000000e-01 +-7.479100000000000e-01 +-6.761100000000000e-01 +-5.590400000000000e-01 +-3.952300000000000e-01 +-1.961900000000000e-01 + 1.662900000000000e-02 + 2.207000000000000e-01 + 3.990300000000000e-01 + 5.396200000000000e-01 + 6.304300000000000e-01 + 6.569400000000000e-01 + 6.071700000000000e-01 + 4.819000000000000e-01 + 3.016500000000000e-01 + 1.035300000000000e-01 +-7.211700000000000e-02 +-1.975300000000000e-01 +-2.659700000000000e-01 +-2.884700000000000e-01 +-2.824600000000000e-01 +-2.612800000000000e-01 +-2.311000000000000e-01 +-1.956000000000000e-01 +-1.624700000000000e-01 +-1.446700000000000e-01 +-1.544500000000000e-01 +-1.938000000000000e-01 +-2.483800000000000e-01 +-2.902300000000000e-01 +-2.886200000000000e-01 +-2.238500000000000e-01 +-9.654900000000000e-02 + 7.186099999999999e-02 + 2.477800000000000e-01 + 3.984400000000000e-01 + 5.033000000000000e-01 + 5.587400000000000e-01 + 5.748000000000000e-01 + 5.661700000000000e-01 + 5.427500000000000e-01 + 5.047199999999999e-01 + 4.448100000000000e-01 + 3.560400000000000e-01 + 2.399600000000000e-01 + 1.097100000000000e-01 +-1.478800000000000e-02 +-1.174200000000000e-01 +-1.957100000000000e-01 +-2.629500000000000e-01 +-3.399200000000000e-01 +-4.398600000000000e-01 +-5.554500000000000e-01 +-6.568500000000000e-01 +-7.036000000000000e-01 +-6.651200000000000e-01 +-5.383500000000000e-01 +-3.522000000000000e-01 +-1.556200000000000e-01 + 3.907700000000000e-03 + 9.913800000000000e-02 + 1.289400000000000e-01 + 1.100200000000000e-01 + 6.216100000000000e-02 +-1.987900000000000e-03 +-7.637500000000000e-02 +-1.531200000000000e-01 +-2.151500000000000e-01 +-2.377100000000000e-01 +-1.989300000000000e-01 +-9.192500000000001e-02 + 7.058399999999999e-02 + 2.624700000000000e-01 + 4.561800000000000e-01 + 6.316300000000000e-01 + 7.764799999999999e-01 + 8.804300000000000e-01 + 9.311300000000000e-01 + 9.174600000000001e-01 + 8.380600000000000e-01 + 7.069000000000000e-01 + 5.485600000000000e-01 + 3.844400000000000e-01 + 2.192900000000000e-01 + 3.950400000000000e-02 +-1.739100000000000e-01 +-4.260100000000000e-01 +-6.963900000000000e-01 +-9.444500000000000e-01 +-1.128600000000000e+00 +-1.225800000000000e+00 +-1.238500000000000e+00 +-1.185800000000000e+00 +-1.086300000000000e+00 +-9.465300000000000e-01 +-7.623500000000000e-01 +-5.289600000000000e-01 +-2.510100000000000e-01 + 5.547600000000000e-02 + 3.685300000000000e-01 + 6.661700000000000e-01 + 9.268500000000000e-01 + 1.125400000000000e+00 + 1.231800000000000e+00 + 1.219000000000000e+00 + 1.078400000000000e+00 + 8.334500000000000e-01 + 5.391400000000000e-01 + 2.648900000000000e-01 + 6.709100000000000e-02 +-3.343000000000000e-02 +-5.707600000000000e-02 +-5.188500000000000e-02 +-6.902300000000000e-02 +-1.402900000000000e-01 +-2.675400000000000e-01 +-4.262300000000000e-01 +-5.785200000000000e-01 +-6.884200000000000e-01 +-7.327600000000000e-01 +-7.050900000000000e-01 +-6.131200000000000e-01 +-4.727500000000000e-01 +-3.022500000000000e-01 +-1.194800000000000e-01 + 5.813600000000000e-02 + 2.132200000000000e-01 + 3.307400000000000e-01 + 4.035200000000000e-01 + 4.371800000000000e-01 + 4.493400000000000e-01 + 4.606100000000000e-01 + 4.814500000000000e-01 + 5.037000000000000e-01 + 5.038700000000000e-01 + 4.574400000000000e-01 + 3.545000000000000e-01 + 2.055400000000000e-01 + 3.317600000000000e-02 +-1.427900000000000e-01 +-3.139400000000000e-01 +-4.775500000000000e-01 +-6.220400000000000e-01 +-7.181100000000000e-01 +-7.280799999999999e-01 +-6.308300000000000e-01 +-4.448900000000000e-01 +-2.294300000000000e-01 +-5.706500000000000e-02 + 2.682200000000000e-02 + 3.100800000000000e-02 + 1.205400000000000e-02 + 3.734900000000000e-02 + 1.416500000000000e-01 + 3.054600000000000e-01 + 4.679000000000000e-01 + 5.629800000000000e-01 + 5.541199999999999e-01 + 4.464100000000000e-01 + 2.745600000000000e-01 + 8.091400000000000e-02 +-9.930300000000000e-02 +-2.392700000000000e-01 +-3.158400000000000e-01 +-3.104800000000000e-01 +-2.194000000000000e-01 +-6.477300000000000e-02 + 1.055600000000000e-01 + 2.352000000000000e-01 + 2.846500000000000e-01 + 2.492900000000000e-01 + 1.580900000000000e-01 + 5.444300000000000e-02 +-2.762100000000000e-02 +-7.750100000000000e-02 +-1.061800000000000e-01 +-1.336000000000000e-01 +-1.752700000000000e-01 +-2.351200000000000e-01 +-3.048000000000000e-01 +-3.658600000000000e-01 +-3.930900000000000e-01 +-3.604300000000000e-01 +-2.511100000000000e-01 +-6.933599999999999e-02 + 1.539300000000000e-01 + 3.679500000000000e-01 + 5.214500000000000e-01 + 5.843900000000000e-01 + 5.592600000000000e-01 + 4.748400000000000e-01 + 3.670900000000000e-01 + 2.601900000000000e-01 + 1.598700000000000e-01 + 6.121600000000000e-02 +-3.763000000000000e-02 +-1.282200000000000e-01 +-1.968600000000000e-01 +-2.373000000000000e-01 +-2.598000000000000e-01 +-2.877600000000000e-01 +-3.427700000000000e-01 +-4.282100000000000e-01 +-5.231500000000000e-01 +-5.916600000000000e-01 +-6.021500000000000e-01 +-5.446299999999999e-01 +-4.352300000000000e-01 +-3.053700000000000e-01 +-1.828300000000000e-01 +-7.641100000000001e-02 + 2.645300000000000e-02 + 1.478900000000000e-01 + 3.011600000000000e-01 + 4.771700000000000e-01 + 6.444800000000001e-01 + 7.635800000000000e-01 + 8.070400000000000e-01 + 7.735400000000000e-01 + 6.871100000000000e-01 + 5.820900000000000e-01 + 4.831000000000000e-01 + 3.927300000000000e-01 + 2.944400000000000e-01 + 1.683000000000000e-01 + 9.023800000000000e-03 +-1.656000000000000e-01 +-3.210400000000000e-01 +-4.227600000000000e-01 +-4.529100000000000e-01 +-4.177500000000000e-01 +-3.432700000000000e-01 +-2.631400000000000e-01 +-2.062700000000000e-01 +-1.889600000000000e-01 +-2.124300000000000e-01 +-2.645900000000000e-01 +-3.241300000000000e-01 +-3.668200000000000e-01 +-3.730300000000000e-01 +-3.342200000000000e-01 +-2.549900000000000e-01 +-1.494100000000000e-01 +-3.374000000000000e-02 + 7.937400000000000e-02 + 1.812300000000000e-01 + 2.628100000000000e-01 + 3.110000000000000e-01 + 3.106200000000000e-01 + 2.525300000000000e-01 + 1.422700000000000e-01 + 1.743500000000000e-03 +-1.386600000000000e-01 +-2.527600000000000e-01 +-3.272100000000000e-01 +-3.601900000000000e-01 +-3.527500000000000e-01 +-3.015700000000000e-01 +-2.008000000000000e-01 +-5.235300000000000e-02 + 1.247000000000000e-01 + 2.960900000000000e-01 + 4.279000000000000e-01 + 5.064600000000000e-01 + 5.478499999999999e-01 + 5.876900000000000e-01 + 6.561300000000000e-01 + 7.537900000000000e-01 + 8.453700000000000e-01 + 8.762900000000000e-01 + 8.022500000000000e-01 + 6.134500000000001e-01 + 3.393500000000000e-01 + 3.260000000000000e-02 +-2.564600000000000e-01 +-4.992500000000000e-01 +-6.930500000000001e-01 +-8.510300000000000e-01 +-9.866900000000000e-01 +-1.102100000000000e+00 +-1.184800000000000e+00 +-1.211600000000000e+00 +-1.157900000000000e+00 +-1.006600000000000e+00 +-7.573299999999999e-01 +-4.315900000000000e-01 +-7.175200000000000e-02 + 2.676400000000000e-01 + 5.351300000000000e-01 + 6.985000000000000e-01 + 7.544999999999999e-01 + 7.276300000000000e-01 + 6.583000000000000e-01 + 5.861900000000000e-01 + 5.361700000000000e-01 + 5.121300000000000e-01 + 5.000700000000000e-01 + 4.777500000000000e-01 + 4.266600000000000e-01 + 3.414800000000000e-01 + 2.333500000000000e-01 + 1.249800000000000e-01 + 3.893700000000000e-02 +-1.532600000000000e-02 +-4.839800000000000e-02 +-8.603900000000000e-02 +-1.534200000000000e-01 +-2.569700000000000e-01 +-3.756400000000000e-01 +-4.692200000000000e-01 +-5.005400000000000e-01 +-4.586900000000000e-01 +-3.680800000000000e-01 +-2.764300000000000e-01 +-2.282000000000000e-01 +-2.396500000000000e-01 +-2.906300000000000e-01 +-3.374800000000000e-01 +-3.374800000000000e-01 +-2.695700000000000e-01 +-1.400300000000000e-01 + 2.642900000000000e-02 + 2.008600000000000e-01 + 3.592500000000000e-01 + 4.834900000000000e-01 + 5.589400000000000e-01 + 5.755300000000000e-01 + 5.339600000000000e-01 + 4.515700000000000e-01 + 3.596600000000000e-01 + 2.904400000000000e-01 + 2.600600000000000e-01 + 2.596400000000000e-01 + 2.614700000000000e-01 + 2.368900000000000e-01 + 1.735400000000000e-01 + 7.981000000000001e-02 +-2.587500000000000e-02 +-1.314600000000000e-01 +-2.398100000000000e-01 +-3.622900000000000e-01 +-5.026000000000000e-01 +-6.446800000000000e-01 +-7.555700000000000e-01 +-8.026400000000000e-01 +-7.729500000000000e-01 +-6.801700000000001e-01 +-5.536700000000000e-01 +-4.177600000000000e-01 +-2.765900000000000e-01 +-1.159700000000000e-01 + 7.934099999999999e-02 + 3.059700000000000e-01 + 5.345400000000000e-01 + 7.205500000000000e-01 + 8.266400000000000e-01 + 8.417100000000000e-01 + 7.851300000000000e-01 + 6.943300000000000e-01 + 6.038700000000000e-01 + 5.284000000000000e-01 + 4.577700000000000e-01 + 3.654200000000000e-01 + 2.245800000000000e-01 + 2.424600000000000e-02 +-2.217100000000000e-01 +-4.760200000000000e-01 +-6.898600000000000e-01 +-8.205800000000000e-01 +-8.480700000000000e-01 +-7.818300000000000e-01 +-6.546999999999999e-01 +-5.061700000000000e-01 +-3.644700000000000e-01 +-2.377000000000000e-01 +-1.184900000000000e-01 + 2.539800000000000e-03 + 1.249300000000000e-01 + 2.370400000000000e-01 + 3.254800000000000e-01 + 3.867200000000000e-01 + 4.306100000000000e-01 + 4.716800000000000e-01 + 5.142000000000000e-01 + 5.426800000000001e-01 + 5.263700000000000e-01 + 4.362000000000000e-01 + 2.638700000000000e-01 + 3.116500000000000e-02 +-2.159300000000000e-01 +-4.239300000000000e-01 +-5.497600000000000e-01 +-5.717700000000000e-01 +-4.918300000000000e-01 +-3.314800000000000e-01 +-1.259600000000000e-01 + 8.281100000000000e-02 + 2.552300000000000e-01 + 3.642100000000000e-01 + 4.031300000000000e-01 + 3.860300000000000e-01 + 3.385000000000000e-01 + 2.829000000000000e-01 + 2.267100000000000e-01 + 1.610600000000000e-01 + 7.033300000000001e-02 +-5.389600000000000e-02 +-2.036300000000000e-01 +-3.557800000000000e-01 +-4.825100000000000e-01 +-5.636200000000000e-01 +-5.937900000000000e-01 +-5.814900000000000e-01 +-5.417800000000000e-01 +-4.880300000000000e-01 +-4.269200000000000e-01 +-3.580300000000000e-01 +-2.768600000000000e-01 +-1.788000000000000e-01 +-6.171600000000000e-02 + 7.372500000000000e-02 + 2.254800000000000e-01 + 3.911800000000000e-01 + 5.665800000000000e-01 + 7.407800000000000e-01 + 8.910000000000000e-01 + 9.823400000000000e-01 + 9.769700000000000e-01 + 8.518200000000000e-01 + 6.165400000000000e-01 + 3.198700000000000e-01 + 3.685000000000000e-02 +-1.600200000000000e-01 +-2.318200000000000e-01 +-1.895900000000000e-01 +-8.700700000000000e-02 + 5.880800000000000e-03 + 3.267400000000000e-02 +-3.108200000000000e-02 +-1.771300000000000e-01 +-3.755500000000000e-01 +-5.870600000000000e-01 +-7.698500000000000e-01 +-8.831100000000000e-01 +-8.931200000000000e-01 +-7.849100000000000e-01 +-5.736300000000000e-01 +-3.061000000000000e-01 +-4.635600000000000e-02 + 1.498200000000000e-01 + 2.577500000000000e-01 + 2.908300000000000e-01 + 2.879000000000000e-01 + 2.896100000000000e-01 + 3.180900000000000e-01 + 3.698900000000000e-01 + 4.225400000000000e-01 + 4.472300000000000e-01 + 4.194400000000000e-01 + 3.249500000000000e-01 + 1.631700000000000e-01 +-4.989200000000000e-02 +-2.804400000000000e-01 +-4.818300000000000e-01 +-6.075900000000000e-01 +-6.283900000000000e-01 +-5.438000000000000e-01 +-3.810800000000000e-01 +-1.812500000000000e-01 + 1.954600000000000e-02 + 2.018700000000000e-01 + 3.623700000000000e-01 + 5.034400000000000e-01 + 6.221100000000001e-01 + 7.063199999999999e-01 + 7.402700000000000e-01 + 7.140500000000000e-01 + 6.306600000000000e-01 + 5.064400000000000e-01 + 3.653000000000000e-01 + 2.304300000000000e-01 + 1.169500000000000e-01 + 2.786000000000000e-02 +-4.580300000000000e-02 +-1.202800000000000e-01 +-2.109600000000000e-01 +-3.239700000000000e-01 +-4.519900000000000e-01 +-5.775900000000000e-01 +-6.825400000000000e-01 +-7.574400000000000e-01 +-8.044500000000000e-01 +-8.311300000000000e-01 +-8.393800000000000e-01 +-8.184800000000000e-01 +-7.481100000000001e-01 +-6.101500000000000e-01 +-4.015900000000000e-01 +-1.398700000000000e-01 + 1.420000000000000e-01 + 4.061200000000000e-01 + 6.192000000000000e-01 + 7.568700000000000e-01 + 8.049900000000000e-01 + 7.621100000000000e-01 + 6.439500000000000e-01 + 4.853800000000000e-01 + 3.334600000000000e-01 + 2.307000000000000e-01 + 1.962600000000000e-01 + 2.171400000000000e-01 + 2.569200000000000e-01 + 2.778100000000000e-01 + 2.622300000000000e-01 + 2.197300000000000e-01 + 1.755400000000000e-01 + 1.497800000000000e-01 + 1.426700000000000e-01 + 1.355100000000000e-01 + 1.052100000000000e-01 + 4.067100000000000e-02 +-5.064100000000000e-02 +-1.488600000000000e-01 +-2.339900000000000e-01 +-2.946000000000000e-01 +-3.280900000000000e-01 +-3.354700000000000e-01 +-3.175600000000000e-01 +-2.763500000000000e-01 +-2.195400000000000e-01 +-1.627900000000000e-01 +-1.259700000000000e-01 +-1.253000000000000e-01 +-1.666100000000000e-01 +-2.436400000000000e-01 +-3.410200000000000e-01 +-4.381800000000000e-01 +-5.116400000000000e-01 +-5.366100000000000e-01 +-4.914500000000000e-01 +-3.662800000000000e-01 +-1.719900000000000e-01 + 5.740400000000000e-02 + 2.739500000000000e-01 + 4.341900000000000e-01 + 5.173600000000000e-01 + 5.328500000000000e-01 + 5.119400000000000e-01 + 4.886900000000000e-01 + 4.808900000000000e-01 + 4.816100000000000e-01 + 4.651200000000000e-01 + 4.028600000000000e-01 + 2.802900000000000e-01 + 1.064600000000000e-01 +-8.765299999999999e-02 +-2.603400000000000e-01 +-3.746300000000000e-01 +-4.115000000000000e-01 +-3.754800000000000e-01 +-2.905300000000000e-01 +-1.881500000000000e-01 +-9.342600000000000e-02 +-1.582400000000000e-02 + 5.111400000000000e-02 + 1.217500000000000e-01 + 2.072600000000000e-01 + 3.076800000000000e-01 + 4.103900000000000e-01 + 4.942400000000000e-01 + 5.358000000000001e-01 + 5.152900000000000e-01 + 4.217000000000000e-01 + 2.577500000000000e-01 + 4.353800000000000e-02 +-1.845200000000000e-01 +-3.827500000000000e-01 +-5.155600000000000e-01 +-5.701100000000000e-01 +-5.608600000000000e-01 +-5.198199999999999e-01 +-4.774400000000000e-01 +-4.461300000000000e-01 +-4.171500000000000e-01 +-3.727300000000000e-01 +-3.037600000000000e-01 +-2.199700000000000e-01 +-1.448400000000000e-01 +-9.943299999999999e-02 +-8.776500000000000e-02 +-9.456299999999999e-02 +-9.684300000000000e-02 +-7.996200000000001e-02 +-4.592900000000000e-02 +-8.305300000000000e-03 + 2.145900000000000e-02 + 4.526500000000000e-02 + 7.878200000000000e-02 + 1.413300000000000e-01 + 2.430200000000000e-01 + 3.779100000000000e-01 + 5.262000000000000e-01 + 6.620700000000000e-01 + 7.613900000000000e-01 + 8.058200000000000e-01 + 7.847000000000000e-01 + 6.970900000000000e-01 + 5.541500000000000e-01 + 3.790600000000000e-01 + 2.013300000000000e-01 + 4.651200000000000e-02 +-7.345500000000001e-02 +-1.627400000000000e-01 +-2.351600000000000e-01 +-3.030200000000000e-01 +-3.688100000000000e-01 +-4.247600000000000e-01 +-4.593500000000000e-01 +-4.648200000000000e-01 +-4.405600000000000e-01 +-3.915700000000000e-01 +-3.255000000000000e-01 +-2.521100000000000e-01 +-1.846800000000000e-01 +-1.394600000000000e-01 +-1.298400000000000e-01 +-1.569500000000000e-01 +-2.036900000000000e-01 +-2.390600000000000e-01 +-2.330500000000000e-01 +-1.741400000000000e-01 +-7.758600000000000e-02 + 2.183800000000000e-02 + 8.898000000000000e-02 + 1.071000000000000e-01 + 8.453900000000000e-02 + 4.603200000000000e-02 + 1.615900000000000e-02 + 6.659000000000000e-03 + 1.498100000000000e-02 + 3.201400000000000e-02 + 5.045400000000000e-02 + 6.666999999999999e-02 + 7.636999999999999e-02 + 7.099300000000000e-02 + 4.147200000000000e-02 +-1.120200000000000e-02 +-6.711499999999999e-02 +-9.015500000000000e-02 +-4.472100000000000e-02 + 8.228100000000001e-02 + 2.689000000000000e-01 + 4.652800000000000e-01 + 6.178900000000001e-01 + 6.964100000000000e-01 + 7.061900000000000e-01 + 6.786100000000000e-01 + 6.461500000000000e-01 + 6.189700000000000e-01 + 5.782200000000000e-01 + 4.894800000000000e-01 + 3.267600000000000e-01 + 9.115300000000000e-02 +-1.869800000000000e-01 +-4.621300000000000e-01 +-6.940900000000000e-01 +-8.623300000000000e-01 +-9.676300000000000e-01 +-1.022700000000000e+00 +-1.039300000000000e+00 +-1.020600000000000e+00 +-9.605399999999999e-01 +-8.507500000000000e-01 +-6.895200000000000e-01 +-4.881100000000000e-01 +-2.714400000000000e-01 +-7.193300000000000e-02 + 8.182200000000001e-02 + 1.773500000000000e-01 + 2.253400000000000e-01 + 2.566200000000000e-01 + 3.084300000000000e-01 + 4.059300000000000e-01 + 5.484700000000000e-01 + 7.087700000000000e-01 + 8.460500000000000e-01 + 9.257600000000000e-01 + 9.345100000000000e-01 + 8.819200000000000e-01 + 7.897800000000000e-01 + 6.765300000000000e-01 + 5.473900000000000e-01 + 3.957500000000000e-01 + 2.131900000000000e-01 + 6.129900000000000e-04 +-2.268500000000000e-01 +-4.434400000000000e-01 +-6.216699999999999e-01 +-7.414800000000000e-01 +-7.954599999999999e-01 +-7.894200000000000e-01 +-7.388800000000000e-01 +-6.630900000000000e-01 +-5.777900000000000e-01 +-4.894600000000000e-01 +-3.938900000000000e-01 +-2.814100000000000e-01 +-1.467800000000000e-01 + 1.755000000000000e-03 + 1.411500000000000e-01 + 2.426000000000000e-01 + 2.865300000000000e-01 + 2.744900000000000e-01 + 2.296900000000000e-01 + 1.858100000000000e-01 + 1.707000000000000e-01 + 1.949900000000000e-01 + 2.509200000000000e-01 + 3.194100000000000e-01 + 3.787000000000000e-01 + 4.094800000000000e-01 + 3.968700000000000e-01 + 3.331700000000000e-01 + 2.233900000000000e-01 + 8.993200000000000e-02 +-3.052700000000000e-02 +-1.010600000000000e-01 +-1.038500000000000e-01 +-5.232200000000000e-02 + 1.412700000000000e-02 + 5.199400000000000e-02 + 3.874800000000000e-02 +-1.575800000000000e-02 +-7.953600000000000e-02 +-1.229500000000000e-01 +-1.397000000000000e-01 +-1.494000000000000e-01 +-1.808800000000000e-01 +-2.494200000000000e-01 +-3.448500000000000e-01 +-4.380600000000000e-01 +-4.990400000000000e-01 +-5.119800000000000e-01 +-4.771500000000000e-01 +-4.015800000000000e-01 +-2.896200000000000e-01 +-1.429600000000000e-01 + 3.050800000000000e-02 + 2.088300000000000e-01 + 3.594100000000000e-01 + 4.541300000000000e-01 + 4.855700000000000e-01 + 4.710400000000000e-01 + 4.396600000000000e-01 + 4.112800000000000e-01 + 3.826500000000000e-01 + 3.317300000000000e-01 + 2.370400000000000e-01 + 9.782700000000000e-02 +-5.974000000000000e-02 +-1.946000000000000e-01 +-2.722600000000000e-01 +-2.810400000000000e-01 +-2.336700000000000e-01 +-1.557800000000000e-01 +-7.126100000000000e-02 + 5.900100000000000e-03 + 7.077400000000000e-02 + 1.221200000000000e-01 + 1.587600000000000e-01 + 1.799800000000000e-01 + 1.873600000000000e-01 + 1.843900000000000e-01 + 1.733700000000000e-01 + 1.529600000000000e-01 + 1.198100000000000e-01 + 7.367000000000000e-02 + 2.123800000000000e-02 +-2.656800000000000e-02 +-6.363300000000000e-02 +-9.755000000000000e-02 +-1.498500000000000e-01 +-2.440800000000000e-01 +-3.873900000000000e-01 +-5.575599999999999e-01 +-7.057700000000000e-01 +-7.758300000000000e-01 +-7.300800000000000e-01 +-5.669600000000000e-01 +-3.206000000000000e-01 +-4.336000000000000e-02 + 2.175000000000000e-01 + 4.353700000000000e-01 + 6.047900000000000e-01 + 7.298000000000000e-01 + 8.102800000000000e-01 + 8.362900000000000e-01 + 7.936600000000000e-01 + 6.758500000000000e-01 + 4.928200000000000e-01 + 2.705300000000000e-01 + 4.123100000000000e-02 +-1.690300000000000e-01 +-3.478700000000000e-01 +-4.951700000000000e-01 +-6.151300000000000e-01 +-7.077599999999999e-01 +-7.654600000000000e-01 +-7.759300000000000e-01 +-7.285199999999999e-01 +-6.196900000000000e-01 +-4.551600000000000e-01 +-2.488800000000000e-01 +-2.087100000000000e-02 + 2.052400000000000e-01 + 4.055300000000000e-01 + 5.606200000000000e-01 + 6.610300000000000e-01 + 7.100700000000000e-01 + 7.213200000000000e-01 + 7.110100000000000e-01 + 6.895300000000000e-01 + 6.573700000000000e-01 + 6.082800000000000e-01 + 5.367200000000000e-01 + 4.435700000000000e-01 + 3.354800000000000e-01 + 2.185600000000000e-01 + 9.233500000000000e-02 +-5.018500000000000e-02 +-2.153200000000000e-01 +-3.997200000000000e-01 +-5.868700000000000e-01 +-7.522700000000000e-01 +-8.738500000000000e-01 +-9.400800000000000e-01 +-9.509600000000000e-01 +-9.130200000000001e-01 +-8.343900000000000e-01 +-7.243500000000000e-01 +-5.960600000000000e-01 +-4.666400000000000e-01 +-3.502600000000000e-01 +-2.476100000000000e-01 +-1.409300000000000e-01 +-2.545400000000000e-03 + 1.852600000000000e-01 + 4.115100000000000e-01 + 6.340600000000000e-01 + 7.983500000000000e-01 + 8.671100000000000e-01 + 8.414000000000000e-01 + 7.579500000000000e-01 + 6.644000000000000e-01 + 5.895800000000000e-01 + 5.292900000000000e-01 + 4.565100000000000e-01 + 3.468300000000000e-01 + 2.000500000000000e-01 + 4.304400000000000e-02 +-8.589900000000000e-02 +-1.581600000000000e-01 +-1.665600000000000e-01 +-1.228000000000000e-01 +-4.735800000000000e-02 + 3.797700000000000e-02 + 1.105700000000000e-01 + 1.456000000000000e-01 + 1.207900000000000e-01 + 2.867800000000000e-02 +-1.120800000000000e-01 +-2.581400000000000e-01 +-3.600300000000000e-01 +-3.886600000000000e-01 +-3.527700000000000e-01 +-2.944300000000000e-01 +-2.643800000000000e-01 +-2.931400000000000e-01 +-3.758700000000000e-01 +-4.792500000000000e-01 +-5.629200000000000e-01 +-6.000300000000000e-01 +-5.846500000000000e-01 +-5.254900000000000e-01 +-4.349500000000000e-01 +-3.228500000000000e-01 +-1.971900000000000e-01 +-6.680600000000000e-02 + 6.042100000000000e-02 + 1.837200000000000e-01 + 3.136200000000000e-01 + 4.671400000000000e-01 + 6.538300000000000e-01 + 8.614100000000000e-01 + 1.052400000000000e+00 + 1.176900000000000e+00 + 1.195600000000000e+00 + 1.098700000000000e+00 + 9.083599999999999e-01 + 6.638800000000000e-01 + 3.986200000000000e-01 + 1.249400000000000e-01 +-1.633200000000000e-01 +-4.727600000000000e-01 +-7.896800000000000e-01 +-1.071700000000000e+00 +-1.259600000000000e+00 +-1.304400000000000e+00 +-1.193800000000000e+00 +-9.629900000000000e-01 +-6.801800000000000e-01 +-4.156800000000000e-01 +-2.097900000000000e-01 +-5.885800000000000e-02 + 7.308400000000000e-02 + 2.244200000000000e-01 + 4.067000000000000e-01 + 5.943600000000000e-01 + 7.393800000000000e-01 + 8.009400000000000e-01 + 7.703600000000000e-01 + 6.757100000000000e-01 + 5.643300000000000e-01 + 4.758600000000000e-01 + 4.233000000000000e-01 + 3.921500000000000e-01 + 3.546300000000000e-01 + 2.865800000000000e-01 + 1.762500000000000e-01 + 2.288900000000000e-02 +-1.684900000000000e-01 +-3.888700000000000e-01 +-6.219400000000000e-01 +-8.413300000000000e-01 +-1.014000000000000e+00 +-1.110500000000000e+00 +-1.114500000000000e+00 +-1.025500000000000e+00 +-8.532700000000000e-01 +-6.095800000000000e-01 +-3.076500000000000e-01 + 3.078600000000000e-02 + 3.678200000000000e-01 + 6.520000000000000e-01 + 8.349400000000000e-01 + 8.932700000000000e-01 + 8.401900000000000e-01 + 7.170100000000000e-01 + 5.689400000000000e-01 + 4.222700000000000e-01 + 2.789100000000000e-01 + 1.309500000000000e-01 +-1.828100000000000e-02 +-1.450700000000000e-01 +-2.168600000000000e-01 +-2.153100000000000e-01 +-1.520400000000000e-01 +-6.299500000000000e-02 + 1.501600000000000e-02 + 6.793200000000001e-02 + 1.099100000000000e-01 + 1.667600000000000e-01 + 2.508000000000000e-01 + 3.468800000000000e-01 + 4.201700000000000e-01 + 4.386700000000000e-01 + 3.926600000000000e-01 + 2.967700000000000e-01 + 1.748300000000000e-01 + 4.149900000000000e-02 +-1.043100000000000e-01 +-2.696400000000000e-01 +-4.507900000000000e-01 +-6.246000000000000e-01 +-7.558300000000000e-01 +-8.159900000000000e-01 +-8.001400000000000e-01 +-7.301700000000000e-01 +-6.425300000000000e-01 +-5.688800000000001e-01 +-5.212100000000000e-01 +-4.887400000000000e-01 +-4.463300000000000e-01 +-3.685400000000000e-01 +-2.425600000000000e-01 +-7.479800000000000e-02 + 1.110700000000000e-01 + 2.842600000000000e-01 + 4.213700000000000e-01 + 5.184400000000000e-01 + 5.934100000000000e-01 + 6.756400000000000e-01 + 7.872800000000000e-01 + 9.274100000000000e-01 + 1.069400000000000e+00 + 1.174300000000000e+00 + 1.210200000000000e+00 + 1.165700000000000e+00 + 1.047500000000000e+00 + 8.657500000000000e-01 + 6.220700000000000e-01 + 3.101800000000000e-01 +-6.850800000000000e-02 +-4.870900000000000e-01 +-8.888800000000000e-01 +-1.203500000000000e+00 +-1.375400000000000e+00 +-1.386900000000000e+00 +-1.262600000000000e+00 +-1.052700000000000e+00 +-8.097400000000000e-01 +-5.720800000000000e-01 +-3.622000000000000e-01 +-1.943200000000000e-01 +-8.078800000000000e-02 +-3.041700000000000e-02 +-4.128300000000000e-02 +-9.608000000000000e-02 +-1.659200000000000e-01 +-2.206800000000000e-01 +-2.385500000000000e-01 +-2.085100000000000e-01 +-1.267100000000000e-01 + 7.338700000000000e-03 + 1.891800000000000e-01 + 4.036500000000000e-01 + 6.217100000000000e-01 + 8.061300000000000e-01 + 9.251700000000000e-01 + 9.658800000000000e-01 + 9.376700000000000e-01 + 8.630700000000000e-01 + 7.624500000000000e-01 + 6.435000000000000e-01 + 5.025300000000000e-01 + 3.351400000000000e-01 + 1.470000000000000e-01 +-4.413100000000000e-02 +-2.166400000000000e-01 +-3.569900000000000e-01 +-4.663000000000000e-01 +-5.569600000000000e-01 +-6.416400000000000e-01 +-7.221800000000000e-01 +-7.851500000000000e-01 +-8.061600000000000e-01 +-7.607500000000000e-01 +-6.366100000000000e-01 +-4.423000000000000e-01 +-2.087100000000000e-01 + 1.858100000000000e-02 + 1.944100000000000e-01 + 2.913300000000000e-01 + 3.105500000000000e-01 + 2.797500000000000e-01 + 2.372200000000000e-01 + 2.105300000000000e-01 + 2.027000000000000e-01 + 1.948900000000000e-01 + 1.642100000000000e-01 + 1.042800000000000e-01 + 3.411600000000000e-02 +-1.157700000000000e-02 +-4.104800000000000e-03 + 6.042800000000000e-02 + 1.579700000000000e-01 + 2.503400000000000e-01 + 3.055700000000000e-01 + 3.110900000000000e-01 + 2.729000000000000e-01 + 2.047800000000000e-01 + 1.181100000000000e-01 + 1.986400000000000e-02 +-8.228300000000000e-02 +-1.751900000000000e-01 +-2.425700000000000e-01 +-2.739300000000000e-01 +-2.726600000000000e-01 +-2.560300000000000e-01 +-2.455600000000000e-01 +-2.543000000000000e-01 +-2.795200000000000e-01 +-3.051300000000000e-01 +-3.106700000000000e-01 +-2.801500000000000e-01 +-2.062000000000000e-01 +-9.025100000000000e-02 + 5.743500000000000e-02 + 2.162300000000000e-01 + 3.550600000000000e-01 + 4.387600000000000e-01 + 4.417200000000000e-01 + 3.624100000000000e-01 + 2.285500000000000e-01 + 8.664500000000000e-02 +-2.027500000000000e-02 +-7.339400000000000e-02 +-8.400800000000000e-02 +-8.054300000000000e-02 +-8.576000000000000e-02 +-1.000700000000000e-01 +-1.023700000000000e-01 +-6.731700000000000e-02 + 1.381100000000000e-02 + 1.234600000000000e-01 + 2.258800000000000e-01 + 2.869100000000000e-01 + 2.921300000000000e-01 + 2.520500000000000e-01 + 1.929600000000000e-01 + 1.409200000000000e-01 + 1.097700000000000e-01 + 9.902900000000001e-02 + 9.991800000000001e-02 + 1.031100000000000e-01 + 1.022100000000000e-01 + 9.206300000000001e-02 + 6.516200000000000e-02 + 1.082400000000000e-02 +-8.107900000000000e-02 +-2.136600000000000e-01 +-3.779700000000000e-01 +-5.527600000000000e-01 +-7.099900000000000e-01 +-8.235600000000000e-01 +-8.773200000000000e-01 +-8.683800000000000e-01 +-8.040200000000000e-01 +-6.942300000000000e-01 +-5.444700000000000e-01 +-3.540000000000000e-01 +-1.219300000000000e-01 + 1.421200000000000e-01 + 4.105400000000000e-01 + 6.408800000000000e-01 + 7.911500000000000e-01 + 8.404600000000000e-01 + 8.024800000000000e-01 + 7.216300000000000e-01 + 6.519900000000000e-01 + 6.300600000000000e-01 + 6.574200000000000e-01 + 7.038900000000000e-01 + 7.284900000000000e-01 + 7.042600000000000e-01 + 6.306300000000000e-01 + 5.266000000000000e-01 + 4.112200000000000e-01 + 2.871500000000000e-01 + 1.393700000000000e-01 +-5.010900000000000e-02 +-2.831200000000000e-01 +-5.366800000000000e-01 +-7.715400000000000e-01 +-9.521500000000001e-01 +-1.063600000000000e+00 +-1.114200000000000e+00 +-1.122000000000000e+00 +-1.097400000000000e+00 +-1.033500000000000e+00 +-9.125200000000000e-01 +-7.228900000000000e-01 +-4.744700000000000e-01 +-2.008200000000000e-01 + 5.356900000000000e-02 + 2.531400000000000e-01 + 3.860700000000000e-01 + 4.658800000000000e-01 + 5.201700000000000e-01 + 5.738700000000000e-01 + 6.365200000000000e-01 + 6.992000000000000e-01 + 7.409500000000000e-01 + 7.402800000000000e-01 + 6.858200000000000e-01 + 5.816900000000000e-01 + 4.458700000000000e-01 + 3.025000000000000e-01 + 1.716500000000000e-01 + 6.147900000000000e-02 +-3.308900000000000e-02 +-1.235800000000000e-01 +-2.164000000000000e-01 +-3.032500000000000e-01 +-3.602400000000000e-01 +-3.583800000000000e-01 +-2.810800000000000e-01 +-1.392800000000000e-01 + 2.515800000000000e-02 + 1.519700000000000e-01 + 1.865100000000000e-01 + 1.043600000000000e-01 +-7.530900000000000e-02 +-2.949000000000000e-01 +-4.804800000000000e-01 +-5.712699999999999e-01 +-5.432900000000001e-01 +-4.164700000000000e-01 +-2.422100000000000e-01 +-7.805300000000000e-02 + 3.774700000000000e-02 + 9.906000000000000e-02 + 1.265800000000000e-01 + 1.492600000000000e-01 + 1.845900000000000e-01 + 2.298900000000000e-01 + 2.685300000000000e-01 + 2.850000000000000e-01 + 2.769700000000000e-01 + 2.555000000000000e-01 + 2.342600000000000e-01 + 2.169400000000000e-01 + 1.937000000000000e-01 + 1.495300000000000e-01 + 7.802500000000000e-02 +-1.092900000000000e-02 +-9.624099999999999e-02 +-1.596200000000000e-01 +-1.972500000000000e-01 +-2.194300000000000e-01 +-2.382400000000000e-01 +-2.534500000000000e-01 +-2.487500000000000e-01 +-2.026700000000000e-01 +-1.063300000000000e-01 + 2.520600000000000e-02 + 1.572400000000000e-01 + 2.524200000000000e-01 + 2.886400000000000e-01 + 2.660900000000000e-01 + 2.007700000000000e-01 + 1.121000000000000e-01 + 1.467600000000000e-02 +-8.120700000000000e-02 +-1.647500000000000e-01 +-2.235400000000000e-01 +-2.495300000000000e-01 +-2.470000000000000e-01 +-2.339400000000000e-01 +-2.326500000000000e-01 +-2.546800000000000e-01 +-2.914400000000000e-01 +-3.179200000000000e-01 +-3.072900000000000e-01 +-2.455100000000000e-01 +-1.356700000000000e-01 + 9.160700000000001e-03 + 1.760700000000000e-01 + 3.553400000000000e-01 + 5.339600000000000e-01 + 6.873400000000000e-01 + 7.805100000000000e-01 + 7.824500000000000e-01 + 6.851900000000000e-01 + 5.132000000000000e-01 + 3.142400000000000e-01 + 1.361600000000000e-01 + 5.362500000000000e-03 +-7.909900000000000e-02 +-1.337400000000000e-01 +-1.726500000000000e-01 +-1.981200000000000e-01 +-2.060900000000000e-01 +-1.991300000000000e-01 +-1.932300000000000e-01 +-2.106300000000000e-01 +-2.635600000000000e-01 +-3.425000000000000e-01 +-4.194900000000000e-01 +-4.646300000000000e-01 +-4.635000000000000e-01 +-4.224800000000000e-01 +-3.596000000000000e-01 +-2.900000000000000e-01 +-2.189500000000000e-01 +-1.470100000000000e-01 +-8.060700000000000e-02 +-3.578500000000000e-02 +-2.922300000000000e-02 +-6.249100000000000e-02 +-1.131400000000000e-01 +-1.421000000000000e-01 +-1.140800000000000e-01 +-1.720700000000000e-02 + 1.322800000000000e-01 + 3.026800000000000e-01 + 4.664900000000000e-01 + 6.118600000000000e-01 + 7.382600000000000e-01 + 8.418800000000000e-01 + 9.046800000000000e-01 + 8.975800000000000e-01 + 7.965800000000000e-01 + 6.000100000000000e-01 + 3.339900000000000e-01 + 4.197000000000000e-02 +-2.341300000000000e-01 +-4.684400000000000e-01 +-6.527200000000000e-01 +-7.866500000000000e-01 +-8.661600000000000e-01 +-8.790600000000000e-01 +-8.111400000000000e-01 +-6.574800000000000e-01 +-4.308200000000000e-01 +-1.615600000000000e-01 + 1.102900000000000e-01 + 3.461000000000000e-01 + 5.169600000000000e-01 + 6.065600000000000e-01 + 6.098200000000000e-01 + 5.301900000000001e-01 + 3.783900000000000e-01 + 1.731800000000000e-01 +-5.754300000000000e-02 +-2.780400000000000e-01 +-4.503000000000000e-01 +-5.431800000000000e-01 +-5.419800000000000e-01 +-4.534500000000000e-01 +-3.032900000000000e-01 +-1.264700000000000e-01 + 4.492700000000000e-02 + 1.901800000000000e-01 + 3.009800000000000e-01 + 3.762100000000000e-01 + 4.153200000000000e-01 + 4.154700000000000e-01 + 3.739800000000000e-01 + 2.930000000000000e-01 + 1.820600000000000e-01 + 5.588000000000000e-02 +-7.083200000000001e-02 +-1.877300000000000e-01 +-2.895400000000000e-01 +-3.737100000000000e-01 +-4.379900000000000e-01 +-4.799700000000000e-01 +-4.981000000000000e-01 +-4.917400000000000e-01 +-4.591300000000000e-01 +-3.950800000000000e-01 +-2.920500000000000e-01 +-1.461200000000000e-01 + 3.522500000000000e-02 + 2.297600000000000e-01 + 4.059100000000000e-01 + 5.351500000000000e-01 + 6.039099999999999e-01 + 6.171100000000000e-01 + 5.914500000000000e-01 + 5.440100000000000e-01 + 4.850600000000000e-01 + 4.199000000000000e-01 + 3.561900000000000e-01 + 3.084800000000000e-01 + 2.934200000000000e-01 + 3.174800000000000e-01 + 3.663700000000000e-01 + 4.057900000000000e-01 + 3.956800000000000e-01 + 3.102400000000000e-01 + 1.517300000000000e-01 +-5.052500000000000e-02 +-2.547000000000000e-01 +-4.256500000000000e-01 +-5.481700000000000e-01 +-6.286700000000000e-01 +-6.870800000000000e-01 +-7.446600000000000e-01 +-8.136600000000000e-01 +-8.921000000000000e-01 +-9.643500000000000e-01 +-1.007100000000000e+00 +-9.986900000000000e-01 +-9.286900000000000e-01 +-8.026000000000000e-01 +-6.389200000000000e-01 +-4.592800000000000e-01 +-2.777200000000000e-01 +-9.610000000000000e-02 + 9.114200000000000e-02 + 2.870300000000000e-01 + 4.849700000000000e-01 + 6.705200000000000e-01 + 8.303199999999999e-01 + 9.603800000000000e-01 + 1.065800000000000e+00 + 1.151700000000000e+00 + 1.213500000000000e+00 + 1.236200000000000e+00 + 1.204600000000000e+00 + 1.118900000000000e+00 + 1.000000000000000e+00 + 8.801900000000000e-01 + 7.818000000000001e-01 + 7.009500000000000e-01 + 6.075400000000000e-01 + 4.636200000000000e-01 + 2.476400000000000e-01 +-3.192100000000000e-02 +-3.422000000000000e-01 +-6.448700000000001e-01 +-9.139699999999999e-01 +-1.140700000000000e+00 +-1.325100000000000e+00 +-1.464700000000000e+00 +-1.552000000000000e+00 +-1.581200000000000e+00 +-1.558100000000000e+00 +-1.499600000000000e+00 +-1.420800000000000e+00 +-1.318900000000000e+00 +-1.166300000000000e+00 +-9.235200000000000e-01 +-5.650900000000000e-01 +-1.032700000000000e-01 + 4.068500000000000e-01 + 8.852000000000000e-01 + 1.257700000000000e+00 + 1.482900000000000e+00 + 1.560000000000000e+00 + 1.519100000000000e+00 + 1.401300000000000e+00 + 1.241900000000000e+00 + 1.065200000000000e+00 + 8.862500000000000e-01 + 7.162800000000000e-01 + 5.633600000000000e-01 + 4.301000000000000e-01 + 3.117800000000000e-01 + 1.989300000000000e-01 + 8.397100000000000e-02 +-3.229800000000000e-02 +-1.398300000000000e-01 +-2.254000000000000e-01 +-2.820000000000000e-01 +-3.152100000000000e-01 +-3.414500000000000e-01 +-3.789100000000000e-01 +-4.366200000000000e-01 +-5.090100000000000e-01 +-5.797400000000000e-01 +-6.321700000000000e-01 +-6.595600000000000e-01 +-6.677800000000000e-01 +-6.688600000000000e-01 +-6.699200000000000e-01 +-6.655500000000000e-01 +-6.390700000000000e-01 +-5.717600000000000e-01 +-4.534500000000000e-01 +-2.873700000000000e-01 +-8.686800000000000e-02 + 1.318000000000000e-01 + 3.538200000000000e-01 + 5.639100000000000e-01 + 7.412700000000000e-01 + 8.585100000000000e-01 + 8.893799999999999e-01 + 8.228700000000000e-01 + 6.743500000000000e-01 + 4.846600000000000e-01 + 3.052500000000000e-01 + 1.768700000000000e-01 + 1.141000000000000e-01 + 1.040900000000000e-01 + 1.185200000000000e-01 + 1.299200000000000e-01 + 1.226100000000000e-01 + 9.432200000000000e-02 + 5.145500000000000e-02 + 3.758600000000000e-03 +-3.847600000000000e-02 +-6.623700000000000e-02 +-7.532600000000000e-02 +-7.119000000000000e-02 +-7.059699999999999e-02 +-9.573900000000000e-02 +-1.616900000000000e-01 +-2.647500000000000e-01 +-3.808200000000000e-01 +-4.767300000000000e-01 +-5.281700000000000e-01 +-5.316000000000000e-01 +-5.019600000000000e-01 +-4.580700000000000e-01 +-4.073500000000000e-01 +-3.421100000000000e-01 +-2.502300000000000e-01 +-1.312800000000000e-01 +-4.632500000000000e-03 + 9.825299999999999e-02 + 1.525300000000000e-01 + 1.562100000000000e-01 + 1.322000000000000e-01 + 1.145500000000000e-01 + 1.291300000000000e-01 + 1.814600000000000e-01 + 2.584900000000000e-01 + 3.403000000000000e-01 + 4.114800000000000e-01 + 4.643400000000000e-01 + 4.941300000000000e-01 + 4.928700000000000e-01 + 4.490900000000000e-01 + 3.546700000000000e-01 + 2.142500000000000e-01 + 5.002800000000000e-02 +-1.019500000000000e-01 +-2.028000000000000e-01 +-2.244900000000000e-01 +-1.608800000000000e-01 +-3.219400000000000e-02 + 1.193800000000000e-01 + 2.432000000000000e-01 + 2.996800000000000e-01 + 2.781100000000000e-01 + 2.027400000000000e-01 + 1.206100000000000e-01 + 7.434700000000000e-02 + 7.422500000000000e-02 + 8.746100000000000e-02 + 5.451000000000000e-02 +-7.479900000000000e-02 +-3.068400000000000e-01 +-5.940600000000000e-01 +-8.570100000000000e-01 +-1.025300000000000e+00 +-1.071600000000000e+00 +-1.017200000000000e+00 +-9.087100000000000e-01 +-7.835900000000000e-01 +-6.492800000000000e-01 +-4.888600000000000e-01 +-2.855400000000000e-01 +-4.514300000000000e-02 + 2.008000000000000e-01 + 4.125900000000000e-01 + 5.656400000000000e-01 + 6.614900000000000e-01 + 7.191800000000000e-01 + 7.561000000000000e-01 + 7.748100000000000e-01 + 7.662200000000000e-01 + 7.252200000000000e-01 + 6.641000000000000e-01 + 6.112800000000000e-01 + 5.948500000000000e-01 + 6.231200000000000e-01 + 6.767400000000000e-01 + 7.180600000000000e-01 + 7.100700000000000e-01 + 6.316700000000000e-01 + 4.804300000000000e-01 + 2.652300000000000e-01 +-1.264000000000000e-03 +-3.027100000000000e-01 +-6.132300000000001e-01 +-8.947900000000000e-01 +-1.105300000000000e+00 +-1.215800000000000e+00 +-1.225000000000000e+00 +-1.160100000000000e+00 +-1.059800000000000e+00 +-9.523300000000000e-01 +-8.423900000000000e-01 +-7.167800000000000e-01 +-5.639100000000000e-01 +-3.910400000000000e-01 +-2.252000000000000e-01 +-9.613400000000000e-02 +-1.367400000000000e-02 + 4.329100000000000e-02 + 1.171100000000000e-01 + 2.467800000000000e-01 + 4.446400000000000e-01 + 6.892200000000001e-01 + 9.374300000000000e-01 + 1.146400000000000e+00 + 1.290200000000000e+00 + 1.362800000000000e+00 + 1.368000000000000e+00 + 1.306500000000000e+00 + 1.171100000000000e+00 + 9.513100000000000e-01 + 6.456900000000000e-01 + 2.715300000000000e-01 +-1.332300000000000e-01 +-5.180900000000001e-01 +-8.347300000000000e-01 +-1.052200000000000e+00 +-1.166100000000000e+00 +-1.197200000000000e+00 +-1.179000000000000e+00 +-1.139300000000000e+00 +-1.085300000000000e+00 +-1.001600000000000e+00 +-8.629900000000000e-01 +-6.570700000000000e-01 +-4.007800000000000e-01 +-1.394200000000000e-01 + 7.383000000000001e-02 + 2.064800000000000e-01 + 2.648800000000000e-01 + 2.896200000000000e-01 + 3.305500000000000e-01 + 4.173700000000000e-01 + 5.447100000000000e-01 + 6.797100000000000e-01 + 7.851100000000000e-01 + 8.406200000000000e-01 + 8.489500000000000e-01 + 8.253900000000000e-01 + 7.815500000000000e-01 + 7.166600000000000e-01 + 6.214300000000000e-01 + 4.890600000000000e-01 + 3.230900000000000e-01 + 1.361700000000000e-01 +-5.733600000000000e-02 +-2.468400000000000e-01 +-4.240700000000000e-01 +-5.773500000000000e-01 +-6.891800000000000e-01 +-7.425300000000000e-01 +-7.329599999999999e-01 +-6.768700000000000e-01 +-6.076200000000000e-01 +-5.594900000000000e-01 +-5.488300000000000e-01 +-5.646300000000000e-01 +-5.746400000000000e-01 +-5.431600000000000e-01 +-4.496000000000000e-01 +-2.977900000000000e-01 +-1.125500000000000e-01 + 7.238500000000000e-02 + 2.281700000000000e-01 + 3.406300000000000e-01 + 4.133500000000000e-01 + 4.637600000000000e-01 + 5.133200000000000e-01 + 5.747200000000000e-01 + 6.419800000000000e-01 + 6.898800000000000e-01 + 6.858900000000000e-01 + 6.095699999999999e-01 + 4.681400000000000e-01 + 2.963500000000000e-01 + 1.387200000000000e-01 + 2.452100000000000e-02 +-4.733400000000000e-02 +-1.019800000000000e-01 +-1.648300000000000e-01 +-2.378500000000000e-01 +-2.945700000000000e-01 +-2.988200000000000e-01 +-2.341900000000000e-01 +-1.214600000000000e-01 +-9.777299999999999e-03 + 5.351000000000000e-02 + 5.248300000000000e-02 + 9.836400000000000e-03 +-3.382900000000000e-02 +-5.279200000000000e-02 +-5.587600000000000e-02 +-7.768500000000000e-02 +-1.480200000000000e-01 +-2.632200000000000e-01 +-3.822800000000000e-01 +-4.522700000000000e-01 +-4.449400000000000e-01 +-3.777300000000000e-01 +-3.028200000000000e-01 +-2.711500000000000e-01 +-2.965300000000000e-01 +-3.446200000000000e-01 +-3.543900000000000e-01 +-2.764600000000000e-01 +-1.023000000000000e-01 + 1.342700000000000e-01 + 3.811700000000000e-01 + 5.985100000000000e-01 + 7.734500000000000e-01 + 9.113200000000000e-01 + 1.013500000000000e+00 + 1.062200000000000e+00 + 1.025700000000000e+00 + 8.813600000000000e-01 + 6.382900000000000e-01 + 3.412800000000000e-01 + 5.107000000000000e-02 +-1.866900000000000e-01 +-3.624600000000000e-01 +-4.995200000000000e-01 +-6.293299999999999e-01 +-7.636900000000000e-01 +-8.837300000000000e-01 +-9.526700000000000e-01 +-9.425400000000000e-01 +-8.546800000000000e-01 +-7.198500000000000e-01 +-5.784700000000000e-01 +-4.558400000000000e-01 +-3.494600000000000e-01 +-2.357000000000000e-01 +-8.904900000000000e-02 + 1.001400000000000e-01 + 3.199700000000000e-01 + 5.437300000000000e-01 + 7.411900000000000e-01 + 8.866500000000000e-01 + 9.618000000000000e-01 + 9.573600000000000e-01 + 8.765300000000000e-01 + 7.382600000000000e-01 + 5.743000000000000e-01 + 4.169200000000000e-01 + 2.822400000000000e-01 + 1.609000000000000e-01 + 2.514200000000000e-02 +-1.497600000000000e-01 +-3.632100000000000e-01 +-5.824600000000000e-01 +-7.574400000000000e-01 +-8.478400000000000e-01 +-8.439000000000000e-01 +-7.671300000000000e-01 +-6.518000000000000e-01 +-5.223400000000000e-01 +-3.830800000000000e-01 +-2.260100000000000e-01 +-4.760500000000000e-02 + 1.404800000000000e-01 + 3.153800000000000e-01 + 4.569200000000000e-01 + 5.584100000000000e-01 + 6.247200000000001e-01 + 6.598700000000000e-01 + 6.564500000000000e-01 + 5.975800000000000e-01 + 4.714400000000000e-01 + 2.867200000000000e-01 + 7.523600000000000e-02 +-1.222700000000000e-01 +-2.778300000000000e-01 +-3.895800000000000e-01 +-4.771000000000000e-01 +-5.625599999999999e-01 +-6.517400000000000e-01 +-7.282800000000000e-01 +-7.639899999999999e-01 +-7.360400000000000e-01 +-6.383200000000000e-01 +-4.800900000000000e-01 +-2.758000000000000e-01 +-3.593200000000000e-02 + 2.334800000000000e-01 + 5.230700000000000e-01 + 8.115500000000000e-01 + 1.064100000000000e+00 + 1.240400000000000e+00 + 1.307800000000000e+00 + 1.252500000000000e+00 + 1.082600000000000e+00 + 8.232500000000000e-01 + 5.075700000000000e-01 + 1.678100000000000e-01 +-1.692900000000000e-01 +-4.826100000000000e-01 +-7.538800000000000e-01 +-9.648700000000000e-01 +-1.097200000000000e+00 +-1.136100000000000e+00 +-1.076000000000000e+00 +-9.255600000000000e-01 +-7.082200000000000e-01 +-4.563400000000000e-01 +-2.026300000000000e-01 + 2.719500000000000e-02 + 2.169300000000000e-01 + 3.577200000000000e-01 + 4.448200000000000e-01 + 4.769200000000000e-01 + 4.586400000000000e-01 + 4.026300000000000e-01 + 3.274900000000000e-01 + 2.507700000000000e-01 + 1.809700000000000e-01 + 1.143500000000000e-01 + 3.957700000000000e-02 +-5.258700000000000e-02 +-1.608900000000000e-01 +-2.717600000000000e-01 +-3.644400000000000e-01 +-4.190800000000000e-01 +-4.228200000000000e-01 +-3.717800000000000e-01 +-2.705100000000000e-01 +-1.306600000000000e-01 + 3.070000000000000e-02 + 1.946300000000000e-01 + 3.458000000000000e-01 + 4.769800000000000e-01 + 5.883400000000000e-01 + 6.802900000000000e-01 + 7.447600000000000e-01 + 7.629800000000000e-01 + 7.145800000000000e-01 + 5.934100000000000e-01 + 4.183700000000000e-01 + 2.286600000000000e-01 + 6.369700000000000e-02 +-5.954900000000000e-02 +-1.549900000000000e-01 +-2.541600000000000e-01 +-3.799500000000000e-01 +-5.266999999999999e-01 +-6.621600000000000e-01 +-7.503000000000000e-01 +-7.777800000000000e-01 +-7.636500000000001e-01 +-7.443000000000000e-01 +-7.447200000000000e-01 +-7.578400000000000e-01 +-7.471900000000000e-01 +-6.710600000000000e-01 +-5.102300000000000e-01 +-2.803400000000000e-01 +-2.178000000000000e-02 + 2.231900000000000e-01 + 4.292900000000000e-01 + 5.917800000000000e-01 + 7.164800000000000e-01 + 8.072300000000000e-01 + 8.609400000000000e-01 + 8.719100000000000e-01 + 8.391800000000000e-01 + 7.697000000000001e-01 + 6.754500000000000e-01 + 5.682700000000001e-01 + 4.575100000000000e-01 + 3.511700000000000e-01 + 2.575300000000000e-01 + 1.834100000000000e-01 + 1.295100000000000e-01 + 8.698300000000000e-02 + 3.914200000000000e-02 +-3.162400000000000e-02 +-1.361700000000000e-01 +-2.748100000000000e-01 +-4.384600000000000e-01 +-6.121000000000000e-01 +-7.769800000000000e-01 +-9.115100000000000e-01 +-9.933800000000000e-01 +-1.005400000000000e+00 +-9.427800000000000e-01 +-8.168100000000000e-01 +-6.500300000000000e-01 +-4.650200000000000e-01 +-2.738700000000000e-01 +-7.658600000000000e-02 + 1.302600000000000e-01 + 3.412300000000000e-01 + 5.362600000000000e-01 + 6.867100000000000e-01 + 7.695800000000000e-01 + 7.796800000000000e-01 + 7.314700000000000e-01 + 6.499100000000000e-01 + 5.578200000000000e-01 + 4.685600000000000e-01 + 3.872200000000000e-01 + 3.168200000000000e-01 + 2.625500000000000e-01 + 2.301700000000000e-01 + 2.204000000000000e-01 + 2.243800000000000e-01 + 2.240000000000000e-01 + 1.971300000000000e-01 + 1.250700000000000e-01 +-6.843200000000000e-04 +-1.736900000000000e-01 +-3.712200000000000e-01 +-5.582800000000000e-01 +-6.983300000000000e-01 +-7.684800000000001e-01 +-7.715000000000000e-01 +-7.355600000000000e-01 +-6.982699999999999e-01 +-6.823500000000000e-01 +-6.784700000000000e-01 +-6.485800000000000e-01 +-5.501700000000000e-01 +-3.664700000000000e-01 +-1.219600000000000e-01 + 1.284500000000000e-01 + 3.297400000000000e-01 + 4.561900000000000e-01 + 5.203300000000000e-01 + 5.575200000000000e-01 + 5.996100000000000e-01 + 6.576500000000000e-01 + 7.239500000000000e-01 + 7.875300000000000e-01 + 8.463400000000000e-01 + 9.043800000000000e-01 + 9.564300000000000e-01 + 9.754900000000000e-01 + 9.173900000000000e-01 + 7.437500000000000e-01 + 4.492100000000000e-01 + 7.374000000000000e-02 +-3.098700000000000e-01 +-6.268899999999999e-01 +-8.319000000000000e-01 +-9.235300000000000e-01 +-9.368700000000000e-01 +-9.209900000000000e-01 +-9.149300000000000e-01 +-9.331700000000001e-01 +-9.642800000000000e-01 +-9.802900000000000e-01 +-9.514700000000000e-01 +-8.605800000000000e-01 +-7.111600000000000e-01 +-5.257300000000000e-01 +-3.336800000000000e-01 +-1.545400000000000e-01 + 1.320000000000000e-02 + 1.892600000000000e-01 + 3.947800000000000e-01 + 6.316800000000000e-01 + 8.730700000000000e-01 + 1.072700000000000e+00 + 1.188800000000000e+00 + 1.206500000000000e+00 + 1.142800000000000e+00 + 1.031600000000000e+00 + 8.991900000000000e-01 + 7.486000000000000e-01 + 5.641900000000000e-01 + 3.320300000000000e-01 + 6.031000000000000e-02 +-2.160400000000000e-01 +-4.500900000000000e-01 +-6.064600000000000e-01 +-6.768700000000000e-01 +-6.779100000000000e-01 +-6.345300000000000e-01 +-5.627700000000000e-01 +-4.645400000000000e-01 +-3.369200000000000e-01 +-1.870000000000000e-01 +-3.917600000000000e-02 + 7.212300000000001e-02 + 1.202100000000000e-01 + 1.021900000000000e-01 + 4.194400000000000e-02 +-2.294000000000000e-02 +-6.220800000000000e-02 +-6.919200000000000e-02 +-6.232400000000000e-02 +-7.146400000000000e-02 +-1.177900000000000e-01 +-1.994900000000000e-01 +-2.914400000000000e-01 +-3.580400000000000e-01 +-3.709700000000000e-01 +-3.212600000000000e-01 +-2.199400000000000e-01 +-8.909800000000000e-02 + 4.910600000000000e-02 + 1.783300000000000e-01 + 2.867200000000000e-01 + 3.624600000000000e-01 + 3.923900000000000e-01 + 3.668000000000000e-01 + 2.875700000000000e-01 + 1.731700000000000e-01 + 5.533300000000000e-02 +-3.226800000000000e-02 +-6.733500000000001e-02 +-4.705500000000000e-02 + 1.300000000000000e-02 + 8.758600000000000e-02 + 1.528400000000000e-01 + 1.944800000000000e-01 + 2.106700000000000e-01 + 2.098900000000000e-01 + 2.056400000000000e-01 + 2.096100000000000e-01 + 2.254900000000000e-01 + 2.458200000000000e-01 + 2.540600000000000e-01 + 2.318300000000000e-01 + 1.679800000000000e-01 + 6.396399999999999e-02 +-6.769500000000001e-02 +-2.104200000000000e-01 +-3.503200000000000e-01 +-4.770500000000000e-01 +-5.788900000000000e-01 +-6.376400000000000e-01 +-6.310000000000000e-01 +-5.439600000000000e-01 +-3.825200000000000e-01 +-1.790600000000000e-01 + 1.751000000000000e-02 + 1.626000000000000e-01 + 2.354700000000000e-01 + 2.450800000000000e-01 + 2.192600000000000e-01 + 1.859600000000000e-01 + 1.597500000000000e-01 + 1.412300000000000e-01 + 1.263100000000000e-01 + 1.151800000000000e-01 + 1.125700000000000e-01 + 1.200100000000000e-01 + 1.283600000000000e-01 + 1.190700000000000e-01 + 7.505500000000000e-02 +-6.300500000000000e-03 +-1.079200000000000e-01 +-1.996800000000000e-01 +-2.527900000000000e-01 +-2.525800000000000e-01 +-2.029500000000000e-01 +-1.217900000000000e-01 +-3.179700000000000e-02 + 4.796800000000000e-02 + 1.069900000000000e-01 + 1.444400000000000e-01 + 1.666800000000000e-01 + 1.815300000000000e-01 + 1.911200000000000e-01 + 1.877900000000000e-01 + 1.576600000000000e-01 + 9.222800000000000e-02 + 1.009900000000000e-03 +-8.562300000000000e-02 +-1.294700000000000e-01 +-1.078800000000000e-01 +-3.168100000000000e-02 + 5.703300000000000e-02 + 1.089500000000000e-01 + 9.821900000000000e-02 + 3.801500000000000e-02 +-3.063500000000000e-02 +-6.866600000000000e-02 +-6.490600000000001e-02 +-3.890300000000000e-02 +-2.000800000000000e-02 +-2.112800000000000e-02 +-2.924900000000000e-02 +-2.001600000000000e-02 + 1.720200000000000e-02 + 6.644700000000001e-02 + 9.652500000000000e-02 + 8.725900000000000e-02 + 4.767300000000000e-02 + 9.430900000000001e-03 + 4.053000000000000e-05 + 1.837600000000000e-02 + 3.395500000000000e-02 + 1.164500000000000e-02 +-5.844500000000000e-02 +-1.511500000000000e-01 +-2.252400000000000e-01 +-2.554100000000000e-01 +-2.501700000000000e-01 +-2.400100000000000e-01 +-2.457700000000000e-01 +-2.544200000000000e-01 +-2.243800000000000e-01 +-1.181800000000000e-01 + 6.281100000000001e-02 + 2.695100000000000e-01 + 4.301400000000000e-01 + 4.911000000000000e-01 + 4.438600000000000e-01 + 3.207000000000000e-01 + 1.663800000000000e-01 + 1.027200000000000e-02 +-1.403400000000000e-01 +-2.851700000000000e-01 +-4.116100000000000e-01 +-4.905600000000000e-01 +-4.920400000000000e-01 +-4.071800000000000e-01 +-2.575900000000000e-01 +-8.433800000000000e-02 + 7.488300000000001e-02 + 2.029000000000000e-01 + 3.033500000000000e-01 + 3.874600000000000e-01 + 4.602200000000000e-01 + 5.166700000000000e-01 + 5.482000000000000e-01 + 5.502899999999999e-01 + 5.238200000000000e-01 + 4.705100000000000e-01 + 3.895900000000000e-01 + 2.809900000000000e-01 + 1.524600000000000e-01 + 2.205600000000000e-02 +-8.961200000000000e-02 +-1.732600000000000e-01 +-2.391500000000000e-01 +-3.106200000000000e-01 +-4.054800000000000e-01 +-5.190000000000000e-01 +-6.224600000000000e-01 +-6.797200000000000e-01 +-6.698900000000000e-01 +-5.991500000000000e-01 +-4.933400000000000e-01 +-3.784500000000000e-01 +-2.653800000000000e-01 +-1.509000000000000e-01 +-3.211300000000000e-02 + 7.987400000000000e-02 + 1.610100000000000e-01 + 1.909800000000000e-01 + 1.724900000000000e-01 + 1.364900000000000e-01 + 1.269600000000000e-01 + 1.744800000000000e-01 + 2.767500000000000e-01 + 3.989100000000000e-01 + 4.928200000000000e-01 + 5.212800000000000e-01 + 4.724100000000000e-01 + 3.580300000000000e-01 + 2.019400000000000e-01 + 2.893100000000000e-02 +-1.388900000000000e-01 +-2.803800000000000e-01 +-3.748100000000000e-01 +-4.064900000000000e-01 +-3.719000000000000e-01 +-2.825500000000000e-01 +-1.591800000000000e-01 +-2.018800000000000e-02 + 1.272800000000000e-01 + 2.863000000000000e-01 + 4.590900000000000e-01 + 6.338300000000000e-01 + 7.796500000000000e-01 + 8.551299999999999e-01 + 8.261700000000000e-01 + 6.827400000000000e-01 + 4.445100000000000e-01 + 1.521400000000000e-01 +-1.496700000000000e-01 +-4.274000000000000e-01 +-6.640800000000000e-01 +-8.540900000000000e-01 +-9.933100000000000e-01 +-1.073000000000000e+00 +-1.081900000000000e+00 +-1.014400000000000e+00 +-8.780800000000000e-01 +-6.946500000000000e-01 +-4.925200000000000e-01 +-2.959800000000000e-01 +-1.180700000000000e-01 + 3.860000000000000e-02 + 1.747700000000000e-01 + 2.875400000000000e-01 + 3.695000000000000e-01 + 4.146900000000000e-01 + 4.265000000000000e-01 + 4.205300000000000e-01 + 4.188000000000000e-01 + 4.385700000000000e-01 + 4.830400000000000e-01 + 5.404600000000001e-01 + 5.919100000000000e-01 + 6.221400000000000e-01 + 6.259000000000000e-01 + 6.064300000000000e-01 + 5.683500000000000e-01 + 5.115600000000000e-01 + 4.309500000000000e-01 + 3.220000000000000e-01 + 1.873900000000000e-01 + 3.937800000000000e-02 +-1.043900000000000e-01 +-2.289100000000000e-01 +-3.286900000000000e-01 +-4.094200000000000e-01 +-4.838100000000000e-01 +-5.638500000000000e-01 +-6.536200000000000e-01 +-7.456000000000000e-01 +-8.220800000000000e-01 +-8.611500000000000e-01 +-8.449000000000000e-01 +-7.664600000000000e-01 +-6.324600000000000e-01 +-4.598000000000000e-01 +-2.687000000000000e-01 +-7.646699999999999e-02 + 1.042300000000000e-01 + 2.624000000000000e-01 + 3.851000000000000e-01 + 4.582600000000000e-01 + 4.734500000000000e-01 + 4.368400000000000e-01 + 3.724400000000000e-01 + 3.149800000000000e-01 + 2.943000000000000e-01 + 3.205400000000000e-01 + 3.797600000000000e-01 + 4.433900000000000e-01 + 4.855000000000000e-01 + 4.963800000000000e-01 + 4.838700000000000e-01 + 4.625900000000000e-01 + 4.397500000000000e-01 + 4.079400000000000e-01 + 3.496500000000000e-01 + 2.497500000000000e-01 + 1.068500000000000e-01 +-6.369700000000000e-02 +-2.363300000000000e-01 +-3.861500000000000e-01 +-4.975400000000000e-01 +-5.669500000000000e-01 +-6.001100000000000e-01 +-6.071400000000000e-01 +-5.982700000000000e-01 +-5.813199999999999e-01 +-5.607900000000000e-01 +-5.380600000000000e-01 +-5.121500000000000e-01 +-4.805800000000000e-01 +-4.393400000000000e-01 +-3.818200000000000e-01 +-2.981000000000000e-01 +-1.767600000000000e-01 +-1.043400000000000e-02 + 1.967600000000000e-01 + 4.245700000000000e-01 + 6.391200000000000e-01 + 8.032000000000000e-01 + 8.895900000000000e-01 + 8.904200000000000e-01 + 8.178700000000000e-01 + 6.969500000000000e-01 + 5.555099999999999e-01 + 4.168900000000000e-01 + 2.966700000000000e-01 + 2.017600000000000e-01 + 1.294700000000000e-01 + 6.721500000000000e-02 +-3.985900000000000e-03 +-1.004200000000000e-01 +-2.245600000000000e-01 +-3.593600000000000e-01 +-4.745100000000000e-01 +-5.431900000000000e-01 +-5.596500000000000e-01 +-5.451500000000000e-01 +-5.366400000000000e-01 +-5.639500000000000e-01 +-6.298899999999999e-01 +-7.061700000000000e-01 +-7.475300000000000e-01 +-7.147700000000000e-01 +-5.921700000000000e-01 +-3.902300000000000e-01 +-1.351400000000000e-01 + 1.456000000000000e-01 + 4.313500000000000e-01 + 7.068500000000000e-01 + 9.552500000000000e-01 + 1.153000000000000e+00 + 1.271600000000000e+00 + 1.286200000000000e+00 + 1.186300000000000e+00 + 9.837600000000000e-01 + 7.138200000000000e-01 + 4.266600000000000e-01 + 1.720400000000000e-01 +-1.858000000000000e-02 +-1.439900000000000e-01 +-2.320000000000000e-01 +-3.231200000000000e-01 +-4.463400000000000e-01 +-6.008900000000000e-01 +-7.557800000000000e-01 +-8.685500000000000e-01 +-9.115500000000000e-01 +-8.880300000000000e-01 +-8.272900000000000e-01 +-7.626300000000000e-01 +-7.087200000000000e-01 +-6.547600000000000e-01 +-5.776000000000000e-01 +-4.632100000000000e-01 +-3.188600000000000e-01 +-1.665900000000000e-01 +-2.427300000000000e-02 + 1.093100000000000e-01 + 2.519900000000000e-01 + 4.201600000000000e-01 + 6.098700000000000e-01 + 7.930700000000001e-01 + 9.326900000000000e-01 + 1.004900000000000e+00 + 1.011500000000000e+00 + 9.731400000000000e-01 + 9.108200000000000e-01 + 8.314600000000000e-01 + 7.287200000000000e-01 + 5.969700000000000e-01 + 4.443000000000000e-01 + 2.917100000000000e-01 + 1.582400000000000e-01 + 4.445400000000000e-02 +-7.052100000000000e-02 +-2.143400000000000e-01 +-3.995700000000000e-01 +-6.113900000000000e-01 +-8.142400000000000e-01 +-9.718900000000000e-01 +-1.065300000000000e+00 +-1.095700000000000e+00 +-1.072800000000000e+00 +-1.001600000000000e+00 +-8.781400000000000e-01 +-7.005100000000000e-01 +-4.811800000000000e-01 +-2.499200000000000e-01 +-4.135400000000000e-02 + 1.240900000000000e-01 + 2.505100000000000e-01 + 3.592100000000000e-01 + 4.687600000000000e-01 + 5.776000000000000e-01 + 6.630200000000001e-01 + 6.972400000000000e-01 + 6.681600000000000e-01 + 5.888900000000000e-01 + 4.891400000000000e-01 + 3.959600000000000e-01 + 3.186400000000000e-01 + 2.487700000000000e-01 + 1.735600000000000e-01 + 9.044900000000000e-02 + 1.070100000000000e-02 +-5.024400000000000e-02 +-8.677200000000000e-02 +-1.089400000000000e-01 +-1.345800000000000e-01 +-1.737700000000000e-01 +-2.181600000000000e-01 +-2.444600000000000e-01 +-2.302500000000000e-01 +-1.704600000000000e-01 +-8.251100000000000e-02 + 3.562500000000000e-03 + 6.260900000000000e-02 + 8.663899999999999e-02 + 8.395800000000000e-02 + 6.752700000000000e-02 + 4.299700000000000e-02 + 6.326400000000000e-03 +-4.752000000000000e-02 +-1.126900000000000e-01 +-1.683100000000000e-01 +-1.871200000000000e-01 +-1.518200000000000e-01 +-6.755899999999999e-02 + 3.903500000000000e-02 + 1.341600000000000e-01 + 1.950100000000000e-01 + 2.194500000000000e-01 + 2.210200000000000e-01 + 2.136300000000000e-01 + 1.975800000000000e-01 + 1.572000000000000e-01 + 7.195300000000000e-02 +-6.685800000000000e-02 +-2.452600000000000e-01 +-4.291900000000000e-01 +-5.787600000000001e-01 +-6.651700000000000e-01 +-6.803300000000000e-01 +-6.347400000000000e-01 +-5.468300000000000e-01 +-4.316000000000000e-01 +-2.954600000000000e-01 +-1.390200000000000e-01 + 3.566700000000000e-02 + 2.194500000000000e-01 + 3.956800000000000e-01 + 5.450900000000000e-01 + 6.524100000000000e-01 + 7.103000000000000e-01 + 7.187500000000000e-01 + 6.810000000000000e-01 + 6.001000000000000e-01 + 4.793100000000000e-01 + 3.270300000000000e-01 + 1.624400000000000e-01 + 1.631500000000000e-02 +-7.700600000000001e-02 +-9.463900000000000e-02 +-3.937400000000000e-02 + 5.680800000000000e-02 + 1.450500000000000e-01 + 1.833200000000000e-01 + 1.584400000000000e-01 + 9.261300000000000e-02 + 2.877300000000000e-02 + 2.854600000000000e-03 + 2.008200000000000e-02 + 5.070700000000000e-02 + 4.818600000000000e-02 +-2.212100000000000e-02 +-1.625400000000000e-01 +-3.437200000000000e-01 +-5.241500000000000e-01 +-6.738499999999999e-01 +-7.856200000000000e-01 +-8.681300000000000e-01 +-9.286500000000000e-01 +-9.607599999999999e-01 +-9.465200000000000e-01 +-8.703200000000000e-01 +-7.316100000000000e-01 +-5.453100000000000e-01 +-3.292900000000000e-01 +-9.036600000000000e-02 + 1.778200000000000e-01 + 4.808000000000000e-01 + 8.029600000000000e-01 + 1.097800000000000e+00 + 1.300000000000000e+00 + 1.354800000000000e+00 + 1.248200000000000e+00 + 1.017600000000000e+00 + 7.366000000000000e-01 + 4.827400000000000e-01 + 3.070800000000000e-01 + 2.212000000000000e-01 + 2.047100000000000e-01 + 2.234400000000000e-01 + 2.449100000000000e-01 + 2.440400000000000e-01 + 2.020100000000000e-01 + 1.059000000000000e-01 +-4.620500000000000e-02 +-2.383100000000000e-01 +-4.358800000000000e-01 +-5.967600000000000e-01 +-6.899500000000000e-01 +-7.107800000000000e-01 +-6.818100000000000e-01 +-6.375700000000000e-01 +-6.026800000000000e-01 +-5.781100000000000e-01 +-5.447300000000000e-01 +-4.812500000000000e-01 +-3.833000000000000e-01 +-2.694800000000000e-01 +-1.695200000000000e-01 +-1.029100000000000e-01 +-6.320900000000000e-02 +-2.000900000000000e-02 + 6.206200000000000e-02 + 1.992800000000000e-01 + 3.752800000000000e-01 + 5.463600000000000e-01 + 6.618700000000000e-01 + 6.869900000000000e-01 + 6.153600000000000e-01 + 4.671000000000000e-01 + 2.769600000000000e-01 + 8.152500000000000e-02 +-8.825800000000000e-02 +-2.094600000000000e-01 +-2.682100000000000e-01 +-2.622900000000000e-01 +-2.035500000000000e-01 +-1.160300000000000e-01 +-2.735800000000000e-02 + 4.321500000000000e-02 + 9.309600000000000e-02 + 1.347200000000000e-01 + 1.843600000000000e-01 + 2.483300000000000e-01 + 3.156500000000000e-01 + 3.618300000000000e-01 + 3.610900000000000e-01 + 2.989000000000000e-01 + 1.777700000000000e-01 + 1.438100000000000e-02 +-1.681300000000000e-01 +-3.470000000000000e-01 +-5.028899999999999e-01 +-6.199700000000000e-01 +-6.859499999999999e-01 +-6.932900000000000e-01 +-6.407900000000000e-01 +-5.333599999999999e-01 +-3.800800000000000e-01 +-1.921600000000000e-01 + 1.666800000000000e-02 + 2.278300000000000e-01 + 4.168800000000000e-01 + 5.571000000000000e-01 + 6.280200000000000e-01 + 6.243400000000000e-01 + 5.590000000000001e-01 + 4.575700000000000e-01 + 3.467500000000000e-01 + 2.443500000000000e-01 + 1.569600000000000e-01 + 8.540600000000000e-02 + 3.235000000000000e-02 + 4.854100000000000e-03 + 9.154700000000000e-03 + 4.185500000000000e-02 + 8.532700000000000e-02 + 1.125900000000000e-01 + 9.991500000000000e-02 + 3.945600000000000e-02 +-5.663000000000000e-02 +-1.634000000000000e-01 +-2.572800000000000e-01 +-3.284100000000000e-01 +-3.837700000000000e-01 +-4.401100000000000e-01 +-5.115000000000000e-01 +-5.990799999999999e-01 +-6.885100000000000e-01 +-7.558800000000000e-01 +-7.780000000000000e-01 +-7.417600000000000e-01 +-6.482100000000000e-01 +-5.100300000000000e-01 +-3.445200000000000e-01 +-1.660100000000000e-01 + 1.862700000000000e-02 + 2.094500000000000e-01 + 4.086500000000000e-01 + 6.144800000000000e-01 + 8.174200000000000e-01 + 1.000700000000000e+00 + 1.144700000000000e+00 + 1.234300000000000e+00 + 1.263400000000000e+00 + 1.237800000000000e+00 + 1.172200000000000e+00 + 1.083400000000000e+00 + 9.813300000000000e-01 + 8.620600000000000e-01 + 7.065399999999999e-01 + 4.881700000000000e-01 + 1.876200000000000e-01 +-1.913800000000000e-01 +-6.143100000000000e-01 +-1.022400000000000e+00 +-1.352400000000000e+00 +-1.559200000000000e+00 +-1.630300000000000e+00 +-1.583100000000000e+00 +-1.448900000000000e+00 +-1.255500000000000e+00 +-1.019900000000000e+00 +-7.548100000000000e-01 +-4.813800000000000e-01 +-2.341700000000000e-01 +-5.190800000000000e-02 + 4.212700000000000e-02 + 5.602200000000000e-02 + 2.866900000000000e-02 + 1.113500000000000e-02 + 4.132100000000000e-02 + 1.281400000000000e-01 + 2.543400000000000e-01 + 3.936500000000000e-01 + 5.282600000000000e-01 + 6.541200000000000e-01 + 7.725000000000000e-01 + 8.772600000000000e-01 + 9.501600000000000e-01 + 9.692900000000000e-01 + 9.239800000000000e-01 + 8.241700000000000e-01 + 6.958900000000000e-01 + 5.655300000000000e-01 + 4.440600000000000e-01 + 3.224600000000000e-01 + 1.814700000000000e-01 + 8.628700000000000e-03 +-1.891200000000000e-01 +-3.851100000000000e-01 +-5.445800000000000e-01 +-6.406100000000000e-01 +-6.651200000000000e-01 +-6.300300000000000e-01 +-5.592300000000000e-01 +-4.765500000000000e-01 +-3.960400000000000e-01 +-3.188300000000000e-01 +-2.376900000000000e-01 +-1.464300000000000e-01 +-4.895000000000000e-02 + 3.814000000000000e-02 + 9.195299999999999e-02 + 9.598200000000000e-02 + 5.111600000000000e-02 +-2.304400000000000e-02 +-9.874400000000000e-02 +-1.560600000000000e-01 +-1.928500000000000e-01 +-2.207400000000000e-01 +-2.493700000000000e-01 +-2.713800000000000e-01 +-2.615200000000000e-01 +-1.936800000000000e-01 +-6.525000000000000e-02 + 8.983400000000000e-02 + 2.122100000000000e-01 + 2.487100000000000e-01 + 1.853000000000000e-01 + 5.911100000000000e-02 +-5.976400000000000e-02 +-1.059200000000000e-01 +-5.200400000000000e-02 + 8.239400000000000e-02 + 2.494100000000000e-01 + 4.036700000000000e-01 + 5.234100000000000e-01 + 6.097600000000000e-01 + 6.691200000000000e-01 + 6.957900000000000e-01 + 6.696800000000001e-01 + 5.707200000000000e-01 + 3.976000000000000e-01 + 1.752000000000000e-01 +-5.578500000000000e-02 +-2.596900000000000e-01 +-4.216900000000000e-01 +-5.474500000000000e-01 +-6.481000000000000e-01 +-7.229900000000000e-01 +-7.541400000000000e-01 +-7.170100000000000e-01 +-5.996800000000000e-01 +-4.164600000000000e-01 +-2.056300000000000e-01 +-1.249500000000000e-02 + 1.315400000000000e-01 + 2.206500000000000e-01 + 2.710300000000000e-01 + 3.055000000000000e-01 + 3.367800000000000e-01 + 3.592600000000000e-01 + 3.530100000000000e-01 + 2.968600000000000e-01 + 1.827600000000000e-01 + 2.432900000000000e-02 +-1.445400000000000e-01 +-2.804700000000000e-01 +-3.466100000000000e-01 +-3.273100000000000e-01 +-2.346700000000000e-01 +-1.032700000000000e-01 + 2.533900000000000e-02 + 1.208400000000000e-01 + 1.753800000000000e-01 + 2.015700000000000e-01 + 2.190700000000000e-01 + 2.390900000000000e-01 + 2.574500000000000e-01 + 2.605000000000000e-01 + 2.382100000000000e-01 + 1.931200000000000e-01 + 1.371600000000000e-01 + 7.881700000000000e-02 + 1.224200000000000e-02 +-8.036400000000000e-02 +-2.120800000000000e-01 +-3.723000000000000e-01 +-5.218699999999999e-01 +-6.100800000000000e-01 +-6.041600000000000e-01 +-5.109000000000000e-01 +-3.733400000000000e-01 +-2.430200000000000e-01 +-1.468500000000000e-01 +-7.256000000000000e-02 + 1.637100000000000e-02 + 1.475500000000000e-01 + 3.132900000000000e-01 + 4.711700000000000e-01 + 5.708400000000000e-01 + 5.870100000000000e-01 + 5.338500000000000e-01 + 4.515500000000000e-01 + 3.767400000000000e-01 + 3.204000000000000e-01 + 2.686800000000000e-01 + 2.031100000000000e-01 + 1.215800000000000e-01 + 4.251200000000000e-02 +-9.606600000000000e-03 +-2.349300000000000e-02 +-8.274200000000001e-03 + 1.620500000000000e-02 + 3.528400000000000e-02 + 4.590400000000000e-02 + 4.776700000000000e-02 + 2.922100000000000e-02 +-3.531900000000000e-02 +-1.689200000000000e-01 +-3.671200000000000e-01 +-5.858400000000000e-01 +-7.567100000000000e-01 +-8.236300000000000e-01 +-7.762100000000000e-01 +-6.558400000000000e-01 +-5.286700000000000e-01 +-4.440500000000000e-01 +-4.069800000000000e-01 +-3.820300000000000e-01 +-3.229200000000000e-01 +-2.044800000000000e-01 +-3.499600000000000e-02 + 1.559100000000000e-01 + 3.398800000000000e-01 + 5.042600000000000e-01 + 6.495200000000000e-01 + 7.765000000000000e-01 + 8.772900000000000e-01 + 9.376500000000000e-01 + 9.469100000000000e-01 + 9.049400000000000e-01 + 8.199900000000000e-01 + 7.010800000000000e-01 + 5.540900000000000e-01 + 3.859100000000000e-01 + 2.114900000000000e-01 + 5.335500000000000e-02 +-7.038000000000000e-02 +-1.618100000000000e-01 +-2.477700000000000e-01 +-3.646300000000000e-01 +-5.304000000000000e-01 +-7.241500000000000e-01 +-8.903600000000000e-01 +-9.686700000000000e-01 +-9.304500000000000e-01 +-7.970200000000000e-01 +-6.268300000000000e-01 +-4.805500000000000e-01 +-3.879900000000000e-01 +-3.380300000000000e-01 +-2.948000000000000e-01 +-2.256300000000000e-01 +-1.203200000000000e-01 + 8.543100000000000e-03 + 1.392300000000000e-01 + 2.547500000000000e-01 + 3.470900000000000e-01 + 4.131300000000000e-01 + 4.506500000000000e-01 + 4.610200000000000e-01 + 4.561700000000000e-01 + 4.609600000000000e-01 + 5.044900000000000e-01 + 6.030200000000000e-01 + 7.455600000000000e-01 + 8.927600000000000e-01 + 9.910700000000000e-01 + 9.939900000000000e-01 + 8.781099999999999e-01 + 6.469500000000000e-01 + 3.243800000000000e-01 +-5.482400000000000e-02 +-4.510500000000000e-01 +-8.224200000000000e-01 +-1.128000000000000e+00 +-1.334900000000000e+00 +-1.427300000000000e+00 +-1.411500000000000e+00 +-1.311600000000000e+00 +-1.158000000000000e+00 +-9.741700000000000e-01 +-7.700200000000000e-01 +-5.459100000000000e-01 +-3.022900000000000e-01 +-4.824600000000000e-02 + 1.979500000000000e-01 + 4.165900000000000e-01 + 5.971200000000000e-01 + 7.438300000000000e-01 + 8.719200000000000e-01 + 9.951200000000000e-01 + 1.112000000000000e+00 + 1.200000000000000e+00 + 1.222400000000000e+00 + 1.146400000000000e+00 + 9.637400000000000e-01 + 7.007100000000001e-01 + 4.111700000000000e-01 + 1.538500000000000e-01 +-3.408400000000000e-02 +-1.520000000000000e-01 +-2.305000000000000e-01 +-3.091400000000000e-01 +-4.109700000000000e-01 +-5.297700000000000e-01 +-6.370100000000000e-01 +-7.024000000000000e-01 +-7.137900000000000e-01 +-6.835000000000000e-01 +-6.388200000000001e-01 +-6.048600000000000e-01 +-5.920299999999999e-01 +-5.947800000000000e-01 +-5.994300000000000e-01 +-5.927600000000000e-01 +-5.650800000000000e-01 +-5.076300000000000e-01 +-4.097700000000000e-01 +-2.608100000000000e-01 +-5.661800000000000e-02 + 1.939700000000000e-01 + 4.681100000000000e-01 + 7.343800000000000e-01 + 9.613300000000000e-01 + 1.124000000000000e+00 + 1.206800000000000e+00 + 1.203100000000000e+00 + 1.116200000000000e+00 + 9.585700000000000e-01 + 7.507300000000000e-01 + 5.153500000000000e-01 + 2.696900000000000e-01 + 2.125500000000000e-02 +-2.291400000000000e-01 +-4.776900000000000e-01 +-7.081499999999999e-01 +-8.905000000000000e-01 +-9.907200000000000e-01 +-9.863300000000000e-01 +-8.780900000000000e-01 +-6.902800000000000e-01 +-4.603200000000000e-01 +-2.248200000000000e-01 +-1.069400000000000e-02 + 1.656100000000000e-01 + 2.940200000000000e-01 + 3.677500000000000e-01 + 3.843200000000000e-01 + 3.487500000000000e-01 + 2.742800000000000e-01 + 1.788400000000000e-01 + 7.909099999999999e-02 +-1.325200000000000e-02 +-9.084299999999999e-02 +-1.476400000000000e-01 +-1.776300000000000e-01 +-1.775000000000000e-01 +-1.509100000000000e-01 +-1.098200000000000e-01 +-7.002100000000000e-02 +-4.326500000000000e-02 +-3.155200000000000e-02 +-2.765000000000000e-02 +-2.083800000000000e-02 +-2.678900000000000e-03 + 3.168700000000000e-02 + 8.631000000000000e-02 + 1.663700000000000e-01 + 2.748200000000000e-01 + 4.049200000000000e-01 + 5.350700000000000e-01 + 6.328500000000000e-01 + 6.683900000000000e-01 + 6.291200000000000e-01 + 5.252800000000000e-01 + 3.814800000000000e-01 + 2.199300000000000e-01 + 4.746700000000000e-02 +-1.439400000000000e-01 +-3.639200000000000e-01 +-6.081500000000000e-01 +-8.523600000000000e-01 +-1.060000000000000e+00 +-1.196900000000000e+00 +-1.242100000000000e+00 +-1.188500000000000e+00 +-1.036200000000000e+00 +-7.886900000000000e-01 +-4.580500000000000e-01 +-7.409499999999999e-02 + 3.117100000000000e-01 + 6.371000000000000e-01 + 8.519600000000001e-01 + 9.400700000000000e-01 + 9.246100000000000e-01 + 8.524200000000000e-01 + 7.671000000000000e-01 + 6.885200000000000e-01 + 6.117400000000000e-01 + 5.234200000000000e-01 + 4.211400000000000e-01 + 3.196200000000000e-01 + 2.391700000000000e-01 + 1.863900000000000e-01 + 1.437600000000000e-01 + 7.823300000000000e-02 +-3.610200000000000e-02 +-1.975000000000000e-01 +-3.734800000000000e-01 +-5.179300000000000e-01 +-5.965300000000000e-01 +-6.029900000000000e-01 +-5.560400000000000e-01 +-4.814900000000000e-01 +-3.938000000000000e-01 +-2.910100000000000e-01 +-1.650900000000000e-01 +-1.829100000000000e-02 + 1.284400000000000e-01 + 2.418800000000000e-01 + 2.931700000000000e-01 + 2.726900000000000e-01 + 1.934300000000000e-01 + 8.196900000000000e-02 +-3.483000000000000e-02 +-1.382700000000000e-01 +-2.178200000000000e-01 +-2.667900000000000e-01 +-2.806800000000000e-01 +-2.606700000000000e-01 +-2.184800000000000e-01 +-1.756100000000000e-01 +-1.538900000000000e-01 +-1.620600000000000e-01 +-1.879300000000000e-01 +-2.030700000000000e-01 +-1.780900000000000e-01 +-9.896199999999999e-02 + 2.649200000000000e-02 + 1.753500000000000e-01 + 3.237200000000000e-01 + 4.576400000000000e-01 + 5.736200000000000e-01 + 6.708499999999999e-01 + 7.433500000000000e-01 + 7.793900000000000e-01 + 7.686700000000000e-01 + 7.102900000000000e-01 + 6.138100000000000e-01 + 4.918900000000000e-01 + 3.506900000000000e-01 + 1.866800000000000e-01 +-6.118400000000000e-03 +-2.238900000000000e-01 +-4.456100000000000e-01 +-6.376900000000000e-01 +-7.685700000000000e-01 +-8.235100000000000e-01 +-8.094300000000000e-01 +-7.472100000000000e-01 +-6.580200000000000e-01 +-5.541900000000000e-01 +-4.401900000000000e-01 +-3.208800000000000e-01 +-2.082800000000000e-01 +-1.199600000000000e-01 +-6.982900000000000e-02 +-5.863700000000000e-02 +-7.221000000000000e-02 +-8.914800000000001e-02 +-9.243000000000000e-02 +-7.668200000000000e-02 +-4.674300000000000e-02 +-1.009700000000000e-02 + 3.017200000000000e-02 + 7.689400000000000e-02 + 1.352400000000000e-01 + 2.085700000000000e-01 + 2.976100000000000e-01 + 4.024300000000000e-01 + 5.233500000000000e-01 + 6.574300000000000e-01 + 7.923100000000000e-01 + 9.030800000000000e-01 + 9.573000000000000e-01 + 9.278800000000000e-01 + 8.066600000000000e-01 + 6.100700000000000e-01 + 3.730100000000000e-01 + 1.345600000000000e-01 +-7.541600000000000e-02 +-2.418200000000000e-01 +-3.616700000000000e-01 +-4.385900000000000e-01 +-4.806900000000000e-01 +-5.023700000000000e-01 +-5.254000000000000e-01 +-5.733100000000000e-01 +-6.590600000000000e-01 +-7.732800000000000e-01 +-8.829300000000000e-01 +-9.450900000000000e-01 +-9.297100000000000e-01 +-8.375100000000000e-01 +-7.005800000000000e-01 +-5.639200000000000e-01 +-4.588600000000000e-01 +-3.851700000000000e-01 +-3.130600000000000e-01 +-2.032500000000000e-01 +-3.137900000000000e-02 + 1.986100000000000e-01 + 4.591100000000000e-01 + 7.158400000000000e-01 + 9.437900000000000e-01 + 1.131800000000000e+00 + 1.275400000000000e+00 + 1.366300000000000e+00 + 1.389400000000000e+00 + 1.331200000000000e+00 + 1.192000000000000e+00 + 9.915100000000000e-01 + 7.629800000000000e-01 + 5.365900000000000e-01 + 3.251200000000000e-01 + 1.211500000000000e-01 +-9.201600000000000e-02 +-3.238000000000000e-01 +-5.659000000000000e-01 +-7.948300000000000e-01 +-9.845800000000000e-01 +-1.119800000000000e+00 +-1.200100000000000e+00 +-1.234500000000000e+00 +-1.230900000000000e+00 +-1.190600000000000e+00 +-1.110900000000000e+00 +-9.917700000000000e-01 +-8.405200000000000e-01 +-6.686500000000000e-01 +-4.840000000000000e-01 +-2.852400000000000e-01 +-6.479100000000000e-02 + 1.807300000000000e-01 + 4.399800000000000e-01 + 6.851699999999999e-01 + 8.820400000000000e-01 + 1.005800000000000e+00 + 1.053100000000000e+00 + 1.041000000000000e+00 + 9.956000000000000e-01 + 9.357600000000000e-01 + 8.649100000000000e-01 + 7.738400000000000e-01 + 6.521600000000000e-01 + 4.996500000000000e-01 + 3.298500000000000e-01 + 1.641900000000000e-01 + 2.143900000000000e-02 +-9.056599999999999e-02 +-1.761800000000000e-01 +-2.464500000000000e-01 +-3.111000000000000e-01 +-3.727100000000000e-01 +-4.255800000000000e-01 +-4.591000000000000e-01 +-4.634600000000000e-01 +-4.356400000000000e-01 +-3.835300000000000e-01 +-3.268600000000000e-01 +-2.934400000000000e-01 +-3.104000000000000e-01 +-3.926100000000000e-01 +-5.324600000000000e-01 +-6.967500000000000e-01 +-8.339600000000000e-01 +-8.907100000000000e-01 +-8.311900000000000e-01 +-6.507900000000000e-01 +-3.774900000000000e-01 +-6.034400000000000e-02 + 2.491500000000000e-01 + 5.136700000000000e-01 + 7.173400000000000e-01 + 8.619599999999999e-01 + 9.567099999999999e-01 + 1.008700000000000e+00 + 1.019600000000000e+00 + 9.885699999999999e-01 + 9.174500000000000e-01 + 8.132200000000001e-01 + 6.857500000000000e-01 + 5.432100000000000e-01 + 3.895400000000000e-01 + 2.264200000000000e-01 + 5.808200000000000e-02 +-1.053600000000000e-01 +-2.496100000000000e-01 +-3.624800000000000e-01 +-4.406000000000000e-01 +-4.911900000000000e-01 +-5.275800000000000e-01 +-5.612200000000001e-01 +-5.955000000000000e-01 +-6.250700000000000e-01 +-6.401900000000000e-01 +-6.323800000000001e-01 +-5.977800000000000e-01 +-5.376100000000000e-01 +-4.575100000000000e-01 +-3.676100000000000e-01 +-2.826200000000000e-01 +-2.194800000000000e-01 +-1.909600000000000e-01 +-1.975600000000000e-01 +-2.230000000000000e-01 +-2.379200000000000e-01 +-2.112900000000000e-01 +-1.235100000000000e-01 + 2.650800000000000e-02 + 2.239000000000000e-01 + 4.468200000000000e-01 + 6.745200000000000e-01 + 8.892600000000001e-01 + 1.072700000000000e+00 + 1.203300000000000e+00 + 1.259000000000000e+00 + 1.227100000000000e+00 + 1.111800000000000e+00 + 9.349800000000000e-01 + 7.263900000000000e-01 + 5.099900000000001e-01 + 2.952700000000000e-01 + 7.904100000000000e-02 +-1.447300000000000e-01 +-3.753800000000000e-01 +-6.029400000000000e-01 +-8.132100000000000e-01 +-9.944800000000000e-01 +-1.139800000000000e+00 +-1.243300000000000e+00 +-1.295900000000000e+00 +-1.284900000000000e+00 +-1.200700000000000e+00 +-1.044300000000000e+00 +-8.300900000000000e-01 +-5.807300000000000e-01 +-3.188100000000000e-01 +-6.139700000000000e-02 + 1.783700000000000e-01 + 3.862000000000000e-01 + 5.449200000000000e-01 + 6.404000000000000e-01 + 6.715800000000000e-01 + 6.562700000000000e-01 + 6.256800000000000e-01 + 6.093400000000000e-01 + 6.197900000000000e-01 + 6.471000000000000e-01 + 6.665200000000000e-01 + 6.529700000000001e-01 + 5.922500000000001e-01 + 4.828800000000000e-01 + 3.311300000000000e-01 + 1.467000000000000e-01 +-5.596800000000000e-02 +-2.531900000000000e-01 +-4.116900000000000e-01 +-4.975500000000000e-01 +-4.910500000000000e-01 +-3.975100000000000e-01 +-2.453400000000000e-01 +-7.157100000000000e-02 + 9.528000000000000e-02 + 2.430600000000000e-01 + 3.699300000000000e-01 + 4.709200000000000e-01 + 5.293700000000000e-01 + 5.210300000000000e-01 + 4.282100000000000e-01 + 2.527100000000000e-01 + 1.733800000000000e-02 +-2.451100000000000e-01 +-5.071200000000000e-01 +-7.547400000000000e-01 +-9.839900000000000e-01 +-1.189800000000000e+00 +-1.356700000000000e+00 +-1.458700000000000e+00 +-1.467700000000000e+00 +-1.363400000000000e+00 +-1.141100000000000e+00 +-8.124700000000000e-01 +-4.042200000000000e-01 + 4.570000000000000e-02 + 4.930100000000000e-01 + 8.953100000000001e-01 + 1.222400000000000e+00 + 1.463900000000000e+00 + 1.628700000000000e+00 + 1.733900000000000e+00 + 1.790300000000000e+00 + 1.792400000000000e+00 + 1.722000000000000e+00 + 1.561400000000000e+00 + 1.308400000000000e+00 + 9.810700000000000e-01 + 6.107900000000001e-01 + 2.286800000000000e-01 +-1.439200000000000e-01 +-4.956300000000000e-01 +-8.184500000000000e-01 +-1.102600000000000e+00 +-1.337700000000000e+00 +-1.519000000000000e+00 +-1.650600000000000e+00 +-1.739700000000000e+00 +-1.786300000000000e+00 +-1.774800000000000e+00 +-1.678500000000000e+00 +-1.475200000000000e+00 +-1.165500000000000e+00 +-7.786300000000000e-01 +-3.630600000000000e-01 + 3.449500000000000e-02 + 3.872000000000000e-01 + 6.922300000000000e-01 + 9.599000000000000e-01 + 1.196800000000000e+00 + 1.394700000000000e+00 + 1.532000000000000e+00 + 1.584400000000000e+00 + 1.537400000000000e+00 + 1.393000000000000e+00 + 1.169300000000000e+00 + 8.958000000000000e-01 + 6.073000000000000e-01 + 3.382100000000000e-01 + 1.161800000000000e-01 +-4.430200000000000e-02 +-1.456700000000000e-01 +-2.054100000000000e-01 +-2.481000000000000e-01 +-2.952100000000000e-01 +-3.583200000000000e-01 +-4.389400000000000e-01 +-5.330800000000000e-01 +-6.354300000000001e-01 +-7.393700000000000e-01 +-8.339900000000000e-01 +-9.027100000000000e-01 +-9.276400000000000e-01 +-8.983000000000000e-01 +-8.183800000000000e-01 +-7.043199999999999e-01 +-5.751100000000000e-01 +-4.400600000000000e-01 +-2.936800000000000e-01 +-1.224000000000000e-01 + 8.091700000000000e-02 + 3.052800000000000e-01 + 5.215200000000000e-01 + 6.950900000000000e-01 + 8.034900000000000e-01 + 8.467000000000000e-01 + 8.440000000000000e-01 + 8.196200000000000e-01 + 7.872200000000000e-01 + 7.433400000000000e-01 + 6.737300000000001e-01 + 5.674400000000001e-01 + 4.289900000000000e-01 + 2.801800000000000e-01 + 1.501400000000000e-01 + 5.933700000000000e-02 + 7.391000000000000e-03 +-2.787300000000000e-02 +-7.884500000000000e-02 +-1.701500000000000e-01 +-3.043800000000000e-01 +-4.598200000000000e-01 +-6.019099999999999e-01 +-7.016400000000000e-01 +-7.496900000000000e-01 +-7.574300000000000e-01 +-7.441800000000000e-01 +-7.195800000000000e-01 +-6.739300000000000e-01 +-5.839700000000000e-01 +-4.313500000000000e-01 +-2.209300000000000e-01 + 1.420300000000000e-02 + 2.258700000000000e-01 + 3.738000000000000e-01 + 4.436000000000000e-01 + 4.480700000000000e-01 + 4.126900000000000e-01 + 3.570700000000000e-01 + 2.865900000000000e-01 + 1.994900000000000e-01 + 1.018500000000000e-01 + 1.644600000000000e-02 +-2.390300000000000e-02 + 4.895400000000000e-03 + 1.010800000000000e-01 + 2.352500000000000e-01 + 3.664100000000000e-01 + 4.649100000000000e-01 + 5.257200000000000e-01 + 5.625800000000000e-01 + 5.880000000000000e-01 + 5.950000000000000e-01 + 5.557400000000000e-01 + 4.394400000000000e-01 + 2.378300000000000e-01 +-2.017100000000000e-02 +-2.759900000000000e-01 +-4.677300000000000e-01 +-5.595000000000000e-01 +-5.563399999999999e-01 +-4.970600000000000e-01 +-4.313500000000000e-01 +-3.959300000000000e-01 +-4.028600000000000e-01 +-4.433700000000000e-01 +-5.004600000000000e-01 +-5.595500000000000e-01 +-6.105800000000000e-01 +-6.431900000000000e-01 +-6.418800000000000e-01 +-5.879000000000000e-01 +-4.683600000000000e-01 +-2.865400000000000e-01 +-6.562500000000000e-02 + 1.583100000000000e-01 + 3.510400000000000e-01 + 4.941500000000000e-01 + 5.899100000000000e-01 + 6.545800000000001e-01 + 7.047800000000000e-01 + 7.458000000000000e-01 + 7.690399999999999e-01 + 7.591700000000000e-01 + 7.054100000000000e-01 + 6.090500000000000e-01 + 4.827200000000000e-01 + 3.429200000000000e-01 + 2.019900000000000e-01 + 6.520100000000000e-02 +-6.600200000000001e-02 +-1.881500000000000e-01 +-2.927600000000000e-01 +-3.685300000000000e-01 +-4.069100000000000e-01 +-4.063100000000000e-01 +-3.720100000000000e-01 +-3.126600000000000e-01 +-2.371600000000000e-01 +-1.546800000000000e-01 +-7.727000000000001e-02 +-2.088700000000000e-02 +-1.646600000000000e-03 +-2.786000000000000e-02 +-9.309800000000000e-02 +-1.761800000000000e-01 +-2.498000000000000e-01 +-2.933600000000000e-01 +-3.019000000000000e-01 +-2.854300000000000e-01 +-2.592700000000000e-01 +-2.322900000000000e-01 +-2.010900000000000e-01 +-1.537500000000000e-01 +-7.984800000000000e-02 + 2.047500000000000e-02 + 1.345100000000000e-01 + 2.427300000000000e-01 + 3.277600000000000e-01 + 3.804300000000000e-01 + 3.998000000000000e-01 + 3.886600000000000e-01 + 3.489300000000000e-01 + 2.809900000000000e-01 + 1.872900000000000e-01 + 7.724800000000000e-02 +-3.088400000000000e-02 +-1.138300000000000e-01 +-1.517900000000000e-01 +-1.376500000000000e-01 +-8.171000000000000e-02 +-8.809800000000000e-03 + 5.154000000000000e-02 + 7.750000000000000e-02 + 6.355600000000000e-02 + 2.115500000000000e-02 +-2.855300000000000e-02 +-6.524900000000000e-02 +-7.712500000000000e-02 +-6.218000000000000e-02 +-2.440000000000000e-02 + 3.042100000000000e-02 + 9.524000000000001e-02 + 1.590300000000000e-01 + 2.052400000000000e-01 + 2.159700000000000e-01 + 1.815900000000000e-01 + 1.097000000000000e-01 + 2.537800000000000e-02 +-3.992900000000000e-02 +-6.551700000000001e-02 +-5.331800000000000e-02 +-2.609300000000000e-02 +-1.272500000000000e-02 +-3.081500000000000e-02 +-7.868000000000000e-02 +-1.415800000000000e-01 +-2.060300000000000e-01 +-2.701000000000000e-01 +-3.414400000000000e-01 +-4.252700000000000e-01 +-5.128700000000000e-01 +-5.809299999999999e-01 +-6.026600000000000e-01 +-5.622600000000000e-01 +-4.612700000000000e-01 +-3.129700000000000e-01 +-1.307300000000000e-01 + 7.847100000000000e-02 + 3.094900000000000e-01 + 5.478400000000000e-01 + 7.631100000000000e-01 + 9.153400000000000e-01 + 9.721900000000000e-01 + 9.252800000000000e-01 + 7.938400000000000e-01 + 6.132600000000000e-01 + 4.171600000000000e-01 + 2.257100000000000e-01 + 4.695400000000000e-02 +-1.134400000000000e-01 +-2.446900000000000e-01 +-3.333700000000000e-01 +-3.737900000000000e-01 +-3.763500000000000e-01 +-3.650500000000000e-01 +-3.639600000000000e-01 +-3.818600000000000e-01 +-4.058600000000000e-01 +-4.087300000000000e-01 +-3.645400000000000e-01 +-2.624600000000000e-01 +-1.111700000000000e-01 + 6.632000000000000e-02 + 2.414800000000000e-01 + 3.871900000000000e-01 + 4.809700000000000e-01 + 5.069800000000000e-01 + 4.588200000000000e-01 + 3.425700000000000e-01 + 1.769900000000000e-01 +-1.088400000000000e-02 +-1.929100000000000e-01 +-3.458800000000000e-01 +-4.535100000000000e-01 +-5.055400000000000e-01 +-4.972000000000000e-01 +-4.312900000000000e-01 +-3.210000000000000e-01 +-1.894100000000000e-01 +-6.353600000000000e-02 + 3.453200000000000e-02 + 9.382900000000000e-02 + 1.140400000000000e-01 + 1.000200000000000e-01 + 5.722700000000000e-02 +-7.538000000000000e-03 +-8.124300000000000e-02 +-1.422100000000000e-01 +-1.656800000000000e-01 +-1.359800000000000e-01 +-5.679300000000000e-02 + 4.953200000000000e-02 + 1.548300000000000e-01 + 2.417800000000000e-01 + 3.120500000000000e-01 + 3.801900000000000e-01 + 4.583300000000000e-01 + 5.444000000000000e-01 + 6.225800000000000e-01 + 6.744599999999999e-01 + 6.900200000000000e-01 + 6.685200000000000e-01 + 6.097100000000000e-01 + 5.054300000000000e-01 + 3.424600000000000e-01 + 1.173600000000000e-01 +-1.487500000000000e-01 +-4.102300000000000e-01 +-6.165500000000000e-01 +-7.399800000000000e-01 +-7.911600000000000e-01 +-8.093700000000000e-01 +-8.330600000000000e-01 +-8.711600000000000e-01 +-8.964800000000001e-01 +-8.661900000000000e-01 +-7.544000000000000e-01 +-5.732100000000000e-01 +-3.674800000000000e-01 +-1.879600000000000e-01 +-6.246400000000000e-02 + 1.563400000000000e-02 + 7.645100000000001e-02 + 1.510100000000000e-01 + 2.539800000000000e-01 + 3.813000000000000e-01 + 5.195900000000000e-01 + 6.560400000000000e-01 + 7.804800000000000e-01 + 8.806100000000000e-01 + 9.381100000000000e-01 + 9.324000000000000e-01 + 8.511000000000000e-01 + 6.991800000000000e-01 + 4.990100000000000e-01 + 2.803200000000000e-01 + 6.698999999999999e-02 +-1.298200000000000e-01 +-3.079200000000000e-01 +-4.635800000000000e-01 +-5.831800000000000e-01 +-6.445500000000000e-01 +-6.281200000000000e-01 +-5.311600000000000e-01 +-3.753000000000000e-01 +-2.015500000000000e-01 +-5.424900000000000e-02 + 3.792800000000000e-02 + 7.338699999999999e-02 + 7.473100000000001e-02 + 7.277699999999999e-02 + 8.647100000000001e-02 + 1.107900000000000e-01 + 1.204900000000000e-01 + 8.792600000000000e-02 + 3.605300000000000e-03 +-1.142500000000000e-01 +-2.283500000000000e-01 +-3.038200000000000e-01 +-3.281300000000000e-01 +-3.155200000000000e-01 +-2.930800000000000e-01 +-2.789800000000000e-01 +-2.691700000000000e-01 +-2.423100000000000e-01 +-1.788200000000000e-01 +-7.901700000000000e-02 + 3.390100000000000e-02 + 1.283100000000000e-01 + 1.849900000000000e-01 + 2.084400000000000e-01 + 2.207500000000000e-01 + 2.432400000000000e-01 + 2.802600000000000e-01 + 3.166500000000000e-01 + 3.296200000000000e-01 + 3.052500000000000e-01 + 2.481700000000000e-01 + 1.792600000000000e-01 + 1.253100000000000e-01 + 1.080900000000000e-01 + 1.377600000000000e-01 + 2.104700000000000e-01 + 3.082200000000000e-01 + 4.010700000000000e-01 + 4.541900000000000e-01 + 4.402700000000000e-01 + 3.523300000000000e-01 + 2.081300000000000e-01 + 4.100400000000000e-02 +-1.188300000000000e-01 +-2.599100000000000e-01 +-3.901000000000000e-01 +-5.211200000000000e-01 +-6.490899999999999e-01 +-7.473400000000000e-01 +-7.792400000000000e-01 +-7.226100000000000e-01 +-5.874400000000000e-01 +-4.130600000000000e-01 +-2.463000000000000e-01 +-1.168600000000000e-01 +-2.750300000000000e-02 + 3.557700000000000e-02 + 8.339199999999999e-02 + 1.127700000000000e-01 + 1.119500000000000e-01 + 7.655900000000000e-02 + 2.036400000000000e-02 +-3.008900000000000e-02 +-5.316600000000000e-02 +-4.711700000000000e-02 +-2.892300000000000e-02 +-1.702400000000000e-02 +-1.179700000000000e-02 + 9.828500000000000e-03 + 8.009200000000000e-02 + 2.163800000000000e-01 + 4.048700000000000e-01 + 6.034500000000000e-01 + 7.612600000000000e-01 + 8.416300000000000e-01 + 8.345500000000000e-01 + 7.543200000000000e-01 + 6.276600000000000e-01 + 4.814300000000000e-01 + 3.354100000000000e-01 + 2.001100000000000e-01 + 7.708000000000000e-02 +-3.889200000000000e-02 +-1.548800000000000e-01 +-2.727200000000000e-01 +-3.837100000000000e-01 +-4.705100000000000e-01 +-5.172000000000000e-01 +-5.215700000000000e-01 +-5.000400000000000e-01 +-4.797400000000000e-01 +-4.822600000000000e-01 +-5.108000000000000e-01 +-5.507000000000000e-01 +-5.830000000000000e-01 +-5.999200000000000e-01 +-6.091600000000000e-01 +-6.232200000000000e-01 +-6.423600000000000e-01 +-6.458800000000000e-01 +-6.000900000000000e-01 +-4.777400000000000e-01 +-2.749400000000000e-01 +-1.315600000000000e-02 + 2.737900000000000e-01 + 5.566500000000000e-01 + 8.188100000000000e-01 + 1.051200000000000e+00 + 1.241400000000000e+00 + 1.368300000000000e+00 + 1.408100000000000e+00 + 1.347200000000000e+00 + 1.191200000000000e+00 + 9.628700000000000e-01 + 6.924500000000000e-01 + 4.062900000000000e-01 + 1.231100000000000e-01 +-1.432500000000000e-01 +-3.795900000000000e-01 +-5.732600000000000e-01 +-7.158400000000000e-01 +-8.061000000000000e-01 +-8.479900000000000e-01 +-8.452900000000000e-01 +-7.984800000000000e-01 +-7.082700000000000e-01 +-5.835500000000000e-01 +-4.462100000000000e-01 +-3.263700000000000e-01 +-2.486400000000000e-01 +-2.184100000000000e-01 +-2.181900000000000e-01 +-2.174700000000000e-01 +-1.898400000000000e-01 +-1.261600000000000e-01 +-3.582700000000000e-02 + 6.285499999999999e-02 + 1.552300000000000e-01 + 2.372500000000000e-01 + 3.138000000000000e-01 + 3.916500000000000e-01 + 4.725400000000000e-01 + 5.502200000000000e-01 + 6.113000000000000e-01 + 6.388800000000000e-01 + 6.176100000000000e-01 + 5.395700000000000e-01 + 4.091700000000000e-01 + 2.437600000000000e-01 + 6.791600000000000e-02 +-9.666700000000000e-02 +-2.394400000000000e-01 +-3.613200000000000e-01 +-4.662500000000000e-01 +-5.507500000000000e-01 +-6.006300000000000e-01 +-5.989300000000000e-01 +-5.398300000000000e-01 +-4.370900000000000e-01 +-3.190600000000000e-01 +-2.127100000000000e-01 +-1.280800000000000e-01 +-5.507400000000000e-02 + 2.564600000000000e-02 + 1.264200000000000e-01 + 2.437200000000000e-01 + 3.620500000000000e-01 + 4.649300000000000e-01 + 5.421899999999999e-01 + 5.879799999999999e-01 + 5.941100000000000e-01 + 5.488000000000000e-01 + 4.456600000000000e-01 + 2.961600000000000e-01 + 1.326000000000000e-01 +-5.657800000000000e-03 +-9.550400000000001e-02 +-1.450900000000000e-01 +-1.867600000000000e-01 +-2.508100000000000e-01 +-3.396000000000000e-01 +-4.232300000000000e-01 +-4.617000000000000e-01 +-4.373500000000000e-01 +-3.717100000000000e-01 +-3.122800000000000e-01 +-2.985100000000000e-01 +-3.329500000000000e-01 +-3.796500000000000e-01 +-3.907700000000000e-01 +-3.399100000000000e-01 +-2.364600000000000e-01 +-1.114600000000000e-01 + 1.132600000000000e-02 + 1.338500000000000e-01 + 2.765100000000000e-01 + 4.518400000000000e-01 + 6.419200000000000e-01 + 7.992100000000000e-01 + 8.714800000000000e-01 + 8.324600000000000e-01 + 6.957300000000000e-01 + 5.036600000000000e-01 + 3.015100000000000e-01 + 1.168200000000000e-01 +-4.349000000000000e-02 +-1.810100000000000e-01 +-2.927900000000000e-01 +-3.690300000000000e-01 +-4.016400000000000e-01 +-3.940800000000000e-01 +-3.624100000000000e-01 +-3.265600000000000e-01 +-2.994800000000000e-01 +-2.830900000000000e-01 +-2.730400000000000e-01 +-2.662400000000000e-01 +-2.636400000000000e-01 +-2.658000000000000e-01 +-2.662100000000000e-01 +-2.495200000000000e-01 +-1.975500000000000e-01 +-9.940400000000001e-02 + 4.072500000000000e-02 + 2.022500000000000e-01 + 3.527400000000000e-01 + 4.556000000000000e-01 + 4.794100000000000e-01 + 4.086500000000000e-01 + 2.541100000000000e-01 + 5.706500000000000e-02 +-1.198300000000000e-01 +-2.161100000000000e-01 +-2.021700000000000e-01 +-9.604200000000000e-02 + 4.493300000000000e-02 + 1.556200000000000e-01 + 1.995900000000000e-01 + 1.871200000000000e-01 + 1.626900000000000e-01 + 1.709000000000000e-01 + 2.246000000000000e-01 + 2.970500000000000e-01 + 3.421300000000000e-01 + 3.265200000000000e-01 + 2.506500000000000e-01 + 1.451600000000000e-01 + 4.814200000000000e-02 +-1.881800000000000e-02 +-5.983800000000000e-02 +-9.631099999999999e-02 +-1.509000000000000e-01 +-2.364900000000000e-01 +-3.547700000000000e-01 +-4.998500000000000e-01 +-6.592900000000000e-01 +-8.108700000000000e-01 +-9.208600000000000e-01 +-9.505800000000000e-01 +-8.714400000000000e-01 +-6.800300000000000e-01 +-4.024500000000000e-01 +-8.389800000000000e-02 + 2.296400000000000e-01 + 5.057500000000000e-01 + 7.278900000000000e-01 + 8.879800000000000e-01 + 9.785500000000000e-01 + 9.924900000000000e-01 + 9.298900000000000e-01 + 8.040800000000000e-01 + 6.392300000000000e-01 + 4.596900000000000e-01 + 2.793800000000000e-01 + 1.003200000000000e-01 +-7.771500000000001e-02 +-2.447900000000000e-01 +-3.768600000000000e-01 +-4.457200000000000e-01 +-4.368000000000000e-01 +-3.618300000000000e-01 +-2.559000000000000e-01 +-1.597500000000000e-01 +-9.869100000000000e-02 +-7.204500000000000e-02 +-5.959800000000000e-02 +-3.966500000000000e-02 +-5.913800000000000e-03 + 2.824800000000000e-02 + 3.982700000000000e-02 + 1.320500000000000e-02 +-4.780900000000000e-02 +-1.206600000000000e-01 +-1.767400000000000e-01 +-1.978000000000000e-01 +-1.858500000000000e-01 +-1.606100000000000e-01 +-1.462300000000000e-01 +-1.557500000000000e-01 +-1.828700000000000e-01 +-2.064800000000000e-01 +-2.049300000000000e-01 +-1.709700000000000e-01 +-1.170600000000000e-01 +-6.721100000000001e-02 +-4.026600000000000e-02 +-3.625000000000000e-02 +-3.539900000000000e-02 +-1.102700000000000e-02 + 5.266100000000000e-02 + 1.504300000000000e-01 + 2.606900000000000e-01 + 3.610000000000000e-01 + 4.422600000000000e-01 + 5.105300000000000e-01 + 5.750900000000000e-01 + 6.327400000000000e-01 + 6.618800000000000e-01 + 6.326300000000000e-01 + 5.272300000000000e-01 + 3.560200000000000e-01 + 1.568800000000000e-01 +-2.256400000000000e-02 +-1.488300000000000e-01 +-2.173800000000000e-01 +-2.499200000000000e-01 +-2.779700000000000e-01 +-3.244000000000000e-01 +-3.942600000000000e-01 +-4.776800000000000e-01 +-5.595100000000000e-01 +-6.271600000000001e-01 +-6.721600000000000e-01 +-6.872900000000000e-01 +-6.641500000000000e-01 +-5.952000000000000e-01 +-4.789400000000000e-01 +-3.243400000000000e-01 +-1.506200000000000e-01 + 1.807600000000000e-02 + 1.604900000000000e-01 + 2.646200000000000e-01 + 3.300700000000000e-01 + 3.658100000000000e-01 + 3.846900000000000e-01 + 3.970800000000000e-01 + 4.063200000000000e-01 + 4.085600000000000e-01 + 3.974000000000000e-01 + 3.710700000000000e-01 + 3.373100000000000e-01 + 3.116500000000000e-01 + 3.086300000000000e-01 + 3.311500000000000e-01 + 3.654100000000000e-01 + 3.864600000000000e-01 + 3.718500000000000e-01 + 3.145600000000000e-01 + 2.260100000000000e-01 + 1.265700000000000e-01 + 3.021700000000000e-02 +-6.518200000000000e-02 +-1.743900000000000e-01 +-3.101500000000000e-01 +-4.680200000000000e-01 +-6.221600000000000e-01 +-7.358600000000000e-01 +-7.801000000000000e-01 +-7.481400000000000e-01 +-6.570200000000000e-01 +-5.362900000000000e-01 +-4.123100000000000e-01 +-2.980200000000000e-01 +-1.930100000000000e-01 +-9.123299999999999e-02 + 1.043700000000000e-02 + 1.083600000000000e-01 + 1.941600000000000e-01 + 2.598800000000000e-01 + 3.028400000000000e-01 + 3.276900000000000e-01 + 3.451600000000000e-01 + 3.677500000000000e-01 + 4.033100000000000e-01 + 4.488300000000000e-01 + 4.882600000000000e-01 + 4.974900000000000e-01 + 4.563400000000000e-01 + 3.617600000000000e-01 + 2.339100000000000e-01 + 1.091100000000000e-01 + 2.195400000000000e-02 +-1.358500000000000e-02 +-1.185100000000000e-02 +-6.442400000000000e-03 +-2.955700000000000e-02 +-9.277199999999999e-02 +-1.813300000000000e-01 +-2.647900000000000e-01 +-3.161100000000000e-01 +-3.263700000000000e-01 +-3.065700000000000e-01 +-2.774800000000000e-01 +-2.560300000000000e-01 +-2.478000000000000e-01 +-2.487400000000000e-01 +-2.525600000000000e-01 +-2.567200000000000e-01 +-2.627800000000000e-01 +-2.716000000000000e-01 +-2.782300000000000e-01 +-2.703300000000000e-01 +-2.315900000000000e-01 +-1.481500000000000e-01 +-1.513800000000000e-02 + 1.590900000000000e-01 + 3.525100000000000e-01 + 5.334600000000000e-01 + 6.689200000000000e-01 + 7.348000000000000e-01 + 7.239500000000000e-01 + 6.473800000000000e-01 + 5.274200000000000e-01 + 3.864200000000000e-01 + 2.382500000000000e-01 + 8.793300000000000e-02 +-6.098600000000000e-02 +-1.983400000000000e-01 +-3.064100000000000e-01 +-3.685900000000000e-01 +-3.818200000000000e-01 +-3.623400000000000e-01 +-3.383900000000000e-01 +-3.330800000000000e-01 +-3.487600000000000e-01 +-3.647000000000000e-01 +-3.503600000000000e-01 +-2.857700000000000e-01 +-1.749500000000000e-01 +-4.348700000000000e-02 + 7.722700000000000e-02 + 1.674300000000000e-01 + 2.262600000000000e-01 + 2.653300000000000e-01 + 2.949800000000000e-01 + 3.138500000000000e-01 + 3.084300000000000e-01 + 2.612500000000000e-01 + 1.611000000000000e-01 + 9.526300000000000e-03 +-1.776500000000000e-01 +-3.717500000000000e-01 +-5.341399999999999e-01 +-6.221600000000000e-01 +-6.000700000000000e-01 +-4.532300000000000e-01 +-1.983700000000000e-01 + 1.182000000000000e-01 + 4.365200000000000e-01 + 7.050800000000000e-01 + 8.959500000000000e-01 + 1.003600000000000e+00 + 1.030100000000000e+00 + 9.710400000000000e-01 + 8.142100000000000e-01 + 5.548500000000000e-01 + 2.144900000000000e-01 +-1.539900000000000e-01 +-4.835800000000000e-01 +-7.240400000000000e-01 +-8.656900000000000e-01 +-9.387100000000000e-01 +-9.874700000000000e-01 +-1.037800000000000e+00 +-1.080000000000000e+00 +-1.078700000000000e+00 +-9.999500000000000e-01 +-8.352700000000000e-01 +-6.039000000000000e-01 +-3.353400000000000e-01 +-4.784700000000000e-02 + 2.582200000000000e-01 + 5.868900000000000e-01 + 9.249700000000000e-01 + 1.231700000000000e+00 + 1.450400000000000e+00 + 1.535200000000000e+00 + 1.474400000000000e+00 + 1.294000000000000e+00 + 1.040600000000000e+00 + 7.565400000000000e-01 + 4.658500000000000e-01 + 1.769700000000000e-01 +-1.037400000000000e-01 +-3.619600000000000e-01 +-5.774300000000000e-01 +-7.349500000000000e-01 +-8.334400000000000e-01 +-8.845400000000000e-01 +-9.018100000000000e-01 +-8.904800000000000e-01 +-8.463700000000000e-01 +-7.644100000000000e-01 +-6.483200000000000e-01 +-5.120100000000000e-01 +-3.708700000000000e-01 +-2.308200000000000e-01 +-8.523400000000000e-02 + 7.610200000000000e-02 + 2.527200000000000e-01 + 4.255700000000000e-01 + 5.627600000000000e-01 + 6.354500000000000e-01 + 6.325400000000000e-01 + 5.637500000000000e-01 + 4.502000000000000e-01 + 3.110000000000000e-01 + 1.567300000000000e-01 +-6.485200000000000e-03 +-1.677200000000000e-01 +-3.065700000000000e-01 +-3.985400000000000e-01 +-4.267200000000000e-01 +-3.904900000000000e-01 +-3.041000000000000e-01 +-1.864300000000000e-01 +-5.013800000000000e-02 + 1.011100000000000e-01 + 2.659300000000000e-01 + 4.352700000000000e-01 + 5.881400000000000e-01 + 6.971300000000000e-01 + 7.400099999999999e-01 + 7.091700000000000e-01 + 6.128000000000000e-01 + 4.683600000000000e-01 + 2.943000000000000e-01 + 1.059500000000000e-01 +-8.322100000000000e-02 +-2.587700000000000e-01 +-4.056800000000000e-01 +-5.132000000000000e-01 +-5.804200000000000e-01 +-6.175100000000000e-01 +-6.401600000000000e-01 +-6.602800000000000e-01 +-6.786900000000000e-01 +-6.844400000000000e-01 +-6.609600000000000e-01 +-5.947000000000000e-01 +-4.814900000000000e-01 +-3.278000000000000e-01 +-1.480300000000000e-01 + 3.950400000000000e-02 + 2.155300000000000e-01 + 3.619400000000000e-01 + 4.642100000000000e-01 + 5.148900000000000e-01 + 5.172500000000000e-01 + 4.868100000000000e-01 + 4.485100000000000e-01 + 4.292700000000000e-01 + 4.478000000000000e-01 + 5.056900000000000e-01 + 5.836800000000000e-01 + 6.460200000000000e-01 + 6.525000000000000e-01 + 5.743400000000000e-01 + 4.072200000000000e-01 + 1.751200000000000e-01 +-7.815200000000000e-02 +-3.066600000000000e-01 +-4.807800000000000e-01 +-5.968300000000000e-01 +-6.724200000000000e-01 +-7.301900000000000e-01 +-7.792500000000000e-01 +-8.058600000000000e-01 +-7.791300000000000e-01 +-6.692000000000000e-01 +-4.675400000000000e-01 +-1.976100000000000e-01 + 9.031900000000000e-02 + 3.375900000000000e-01 + 4.993700000000000e-01 + 5.596600000000000e-01 + 5.326300000000000e-01 + 4.518100000000000e-01 + 3.537500000000000e-01 + 2.649400000000000e-01 + 1.970400000000000e-01 + 1.502800000000000e-01 + 1.205900000000000e-01 + 1.050000000000000e-01 + 1.024400000000000e-01 + 1.104100000000000e-01 + 1.215000000000000e-01 + 1.230400000000000e-01 + 1.011600000000000e-01 + 4.695900000000000e-02 +-3.916400000000000e-02 +-1.477600000000000e-01 +-2.647900000000000e-01 +-3.769600000000000e-01 +-4.740700000000000e-01 +-5.474100000000000e-01 +-5.865200000000000e-01 +-5.788600000000000e-01 +-5.146900000000000e-01 +-3.951600000000000e-01 +-2.373700000000000e-01 +-7.101100000000000e-02 + 7.402300000000001e-02 + 1.826000000000000e-01 + 2.621700000000000e-01 + 3.370200000000000e-01 + 4.312500000000000e-01 + 5.507000000000000e-01 + 6.759900000000000e-01 + 7.719100000000000e-01 + 8.074700000000000e-01 + 7.732700000000000e-01 + 6.844600000000000e-01 + 5.676000000000000e-01 + 4.414200000000000e-01 + 3.057900000000000e-01 + 1.474200000000000e-01 +-4.258900000000000e-02 +-2.532500000000000e-01 +-4.536700000000000e-01 +-6.101400000000000e-01 +-7.081100000000000e-01 +-7.621599999999999e-01 +-8.044500000000000e-01 +-8.586300000000000e-01 +-9.176900000000000e-01 +-9.430800000000000e-01 +-8.876800000000000e-01 +-7.277100000000000e-01 +-4.816800000000000e-01 +-2.029300000000000e-01 + 4.900400000000000e-02 + 2.383500000000000e-01 + 3.645700000000000e-01 + 4.498900000000000e-01 + 5.147500000000000e-01 + 5.612400000000000e-01 + 5.760100000000000e-01 + 5.483900000000000e-01 + 4.869800000000000e-01 + 4.203600000000000e-01 + 3.806600000000000e-01 + 3.829400000000000e-01 + 4.163500000000000e-01 + 4.533600000000000e-01 + 4.689400000000000e-01 + 4.545300000000000e-01 + 4.171900000000000e-01 + 3.671800000000000e-01 + 3.064200000000000e-01 + 2.281300000000000e-01 + 1.272100000000000e-01 + 1.066800000000000e-02 +-1.025200000000000e-01 +-1.934300000000000e-01 +-2.575500000000000e-01 +-3.092800000000000e-01 +-3.723400000000000e-01 +-4.636400000000000e-01 +-5.829700000000000e-01 +-7.156100000000000e-01 +-8.431900000000000e-01 +-9.520000000000000e-01 +-1.031200000000000e+00 +-1.064600000000000e+00 +-1.027300000000000e+00 +-8.947100000000000e-01 +-6.607000000000000e-01 +-3.506600000000000e-01 +-1.629100000000000e-02 + 2.874100000000000e-01 + 5.284000000000000e-01 + 7.081900000000000e-01 + 8.492499999999999e-01 + 9.691700000000000e-01 + 1.062200000000000e+00 + 1.102400000000000e+00 + 1.066400000000000e+00 + 9.566800000000000e-01 + 8.063300000000000e-01 + 6.613100000000000e-01 + 5.525500000000000e-01 + 4.789200000000000e-01 + 4.128100000000000e-01 + 3.227400000000000e-01 + 1.951900000000000e-01 + 4.037000000000000e-02 +-1.196800000000000e-01 +-2.683700000000000e-01 +-4.028400000000000e-01 +-5.279900000000000e-01 +-6.440900000000001e-01 +-7.404100000000000e-01 +-8.010900000000000e-01 +-8.179500000000000e-01 +-7.985800000000000e-01 +-7.618300000000000e-01 +-7.237700000000000e-01 +-6.854800000000000e-01 +-6.324600000000000e-01 +-5.465600000000000e-01 +-4.211600000000000e-01 +-2.682900000000000e-01 +-1.126600000000000e-01 + 2.252500000000000e-02 + 1.277600000000000e-01 + 2.098700000000000e-01 + 2.848200000000000e-01 + 3.667700000000000e-01 + 4.605100000000000e-01 + 5.600900000000000e-01 + 6.524200000000000e-01 + 7.222300000000000e-01 + 7.563700000000000e-01 + 7.471700000000000e-01 + 6.951700000000000e-01 + 6.101500000000000e-01 + 5.090100000000000e-01 + 4.101800000000000e-01 + 3.266000000000000e-01 + 2.611200000000000e-01 + 2.067500000000000e-01 + 1.512400000000000e-01 + 8.275299999999999e-02 +-6.757000000000000e-03 +-1.213100000000000e-01 +-2.618300000000000e-01 +-4.254200000000000e-01 +-6.021200000000000e-01 +-7.712000000000000e-01 +-9.008800000000000e-01 +-9.544600000000000e-01 +-9.025100000000000e-01 +-7.369200000000000e-01 +-4.802600000000000e-01 +-1.845500000000000e-01 + 8.278300000000000e-02 + 2.619500000000000e-01 + 3.237000000000000e-01 + 2.806600000000000e-01 + 1.800300000000000e-01 + 7.948500000000000e-02 + 1.817600000000000e-02 +-1.017400000000000e-03 +-7.195200000000000e-03 +-3.714900000000000e-02 +-1.059800000000000e-01 +-1.914900000000000e-01 +-2.431200000000000e-01 +-2.102900000000000e-01 +-7.279400000000000e-02 + 1.456300000000000e-01 + 3.880800000000000e-01 + 5.919100000000000e-01 + 7.156700000000000e-01 + 7.512000000000000e-01 + 7.171400000000000e-01 + 6.418900000000000e-01 + 5.478400000000000e-01 + 4.445500000000000e-01 + 3.310500000000000e-01 + 2.025200000000000e-01 + 5.683100000000000e-02 +-1.012700000000000e-01 +-2.584400000000000e-01 +-3.943500000000000e-01 +-4.876300000000000e-01 +-5.253000000000000e-01 +-5.109200000000000e-01 +-4.651800000000000e-01 +-4.160000000000000e-01 +-3.829100000000000e-01 +-3.658400000000000e-01 +-3.473300000000000e-01 +-3.077000000000000e-01 +-2.426100000000000e-01 +-1.694400000000000e-01 +-1.163900000000000e-01 +-1.015100000000000e-01 +-1.172300000000000e-01 +-1.327000000000000e-01 +-1.132800000000000e-01 +-4.348500000000000e-02 + 6.301100000000000e-02 + 1.731100000000000e-01 + 2.559900000000000e-01 + 3.007100000000000e-01 + 3.178700000000000e-01 + 3.262400000000000e-01 + 3.363100000000000e-01 + 3.436700000000000e-01 + 3.359300000000000e-01 + 3.057000000000000e-01 + 2.580100000000000e-01 + 2.061800000000000e-01 + 1.608600000000000e-01 + 1.222800000000000e-01 + 8.325100000000001e-02 + 4.028800000000000e-02 + 2.980400000000000e-03 +-7.857599999999999e-03 + 2.595000000000000e-02 + 1.032300000000000e-01 + 1.965500000000000e-01 + 2.618400000000000e-01 + 2.601400000000000e-01 + 1.784400000000000e-01 + 3.650300000000000e-02 +-1.247400000000000e-01 +-2.663600000000000e-01 +-3.719100000000000e-01 +-4.529800000000000e-01 +-5.365900000000000e-01 +-6.425800000000000e-01 +-7.649000000000000e-01 +-8.689100000000000e-01 +-9.068800000000000e-01 +-8.430500000000000e-01 +-6.738600000000000e-01 +-4.317400000000000e-01 +-1.703900000000000e-01 + 5.967000000000000e-02 + 2.316800000000000e-01 + 3.489900000000000e-01 + 4.359700000000000e-01 + 5.206800000000000e-01 + 6.198000000000000e-01 + 7.323100000000000e-01 + 8.423500000000000e-01 + 9.268100000000000e-01 + 9.632700000000000e-01 + 9.360500000000000e-01 + 8.406000000000000e-01 + 6.857400000000000e-01 + 4.922600000000000e-01 + 2.868600000000000e-01 + 9.303699999999999e-02 +-7.596899999999999e-02 +-2.175700000000000e-01 +-3.332500000000000e-01 +-4.206200000000000e-01 +-4.714000000000000e-01 +-4.784900000000000e-01 +-4.469400000000000e-01 +-3.992200000000000e-01 +-3.681500000000000e-01 +-3.801900000000000e-01 +-4.401300000000000e-01 +-5.282600000000000e-01 +-6.123300000000000e-01 +-6.654099999999999e-01 +-6.767400000000000e-01 +-6.485700000000000e-01 +-5.842100000000000e-01 +-4.795300000000000e-01 +-3.270700000000000e-01 +-1.301500000000000e-01 + 8.549900000000001e-02 + 2.751200000000000e-01 + 3.947200000000000e-01 + 4.255500000000000e-01 + 3.865300000000000e-01 + 3.254400000000000e-01 + 2.940600000000000e-01 + 3.228000000000000e-01 + 4.094400000000000e-01 + 5.262500000000000e-01 + 6.378200000000001e-01 + 7.174100000000000e-01 + 7.538000000000000e-01 + 7.487800000000000e-01 + 7.104900000000000e-01 + 6.474000000000000e-01 + 5.644800000000000e-01 + 4.610000000000000e-01 + 3.302700000000000e-01 + 1.630100000000000e-01 +-4.501400000000000e-02 +-2.843500000000000e-01 +-5.283700000000000e-01 +-7.394600000000000e-01 +-8.830300000000000e-01 +-9.414100000000000e-01 +-9.189300000000000e-01 +-8.354600000000000e-01 +-7.138700000000000e-01 +-5.706800000000000e-01 +-4.156300000000000e-01 +-2.580000000000000e-01 +-1.122100000000000e-01 + 3.513800000000000e-03 + 7.490600000000000e-02 + 9.958500000000001e-02 + 8.861500000000000e-02 + 6.056200000000000e-02 + 3.261700000000000e-02 + 1.480400000000000e-02 + 9.644200000000000e-03 + 1.502800000000000e-02 + 2.660300000000000e-02 + 3.857000000000000e-02 + 4.486200000000000e-02 + 4.265600000000000e-02 + 3.680000000000000e-02 + 4.083200000000000e-02 + 7.153200000000000e-02 + 1.391300000000000e-01 + 2.398600000000000e-01 + 3.567300000000000e-01 + 4.682400000000000e-01 + 5.582700000000000e-01 + 6.196800000000000e-01 + 6.500600000000000e-01 + 6.453400000000000e-01 + 5.988300000000000e-01 + 5.076200000000000e-01 + 3.802300000000000e-01 + 2.366700000000000e-01 + 9.838900000000000e-02 +-2.461200000000000e-02 +-1.382400000000000e-01 +-2.549900000000000e-01 +-3.777800000000000e-01 +-4.911500000000000e-01 +-5.688400000000000e-01 +-5.930500000000000e-01 +-5.694500000000000e-01 +-5.241700000000000e-01 +-4.840900000000000e-01 +-4.563600000000000e-01 +-4.251500000000000e-01 +-3.695800000000000e-01 +-2.878000000000000e-01 +-2.057600000000000e-01 +-1.607500000000000e-01 +-1.715100000000000e-01 +-2.196900000000000e-01 +-2.595500000000000e-01 +-2.500000000000000e-01 +-1.836900000000000e-01 +-8.920200000000000e-02 +-4.131300000000000e-03 + 5.857300000000000e-02 + 1.221000000000000e-01 + 2.240000000000000e-01 + 3.783600000000000e-01 + 5.536700000000000e-01 + 6.873000000000000e-01 + 7.275199999999999e-01 + 6.711400000000000e-01 + 5.665300000000000e-01 + 4.784100000000000e-01 + 4.408400000000000e-01 + 4.344400000000000e-01 + 4.051500000000000e-01 + 3.099200000000000e-01 + 1.540600000000000e-01 +-8.077200000000000e-03 +-1.092300000000000e-01 +-1.154500000000000e-01 +-4.943100000000000e-02 + 2.398200000000000e-02 + 3.778700000000000e-02 +-3.954400000000000e-02 +-1.913700000000000e-01 +-3.681700000000000e-01 +-5.160900000000000e-01 +-5.999400000000000e-01 +-6.107800000000000e-01 +-5.605599999999999e-01 +-4.722000000000000e-01 +-3.711900000000000e-01 +-2.795400000000000e-01 +-2.106600000000000e-01 +-1.660100000000000e-01 +-1.362300000000000e-01 +-1.082000000000000e-01 +-7.451700000000000e-02 +-3.883300000000000e-02 +-1.277100000000000e-02 +-6.495000000000000e-03 +-2.025000000000000e-02 +-4.335500000000000e-02 +-6.090000000000000e-02 +-6.213000000000000e-02 +-4.373600000000000e-02 +-6.450300000000000e-03 + 5.037700000000000e-02 + 1.300000000000000e-01 + 2.334900000000000e-01 + 3.535100000000000e-01 + 4.730200000000000e-01 + 5.716800000000000e-01 + 6.355300000000000e-01 + 6.626400000000000e-01 + 6.604600000000000e-01 + 6.374400000000000e-01 + 5.958500000000000e-01 + 5.314000000000000e-01 + 4.391100000000000e-01 + 3.198100000000000e-01 + 1.818000000000000e-01 + 3.675400000000000e-02 +-1.060400000000000e-01 +-2.424400000000000e-01 +-3.718400000000000e-01 +-4.938200000000000e-01 +-6.065000000000000e-01 +-7.071600000000000e-01 +-7.930700000000001e-01 +-8.601700000000000e-01 +-9.004600000000000e-01 +-9.016400000000000e-01 +-8.516899999999999e-01 +-7.467000000000000e-01 +-5.963500000000000e-01 +-4.218700000000000e-01 +-2.468000000000000e-01 +-8.623699999999999e-02 + 5.782100000000000e-02 + 1.924400000000000e-01 + 3.248100000000000e-01 + 4.557300000000000e-01 + 5.798200000000000e-01 + 6.908000000000000e-01 + 7.855900000000000e-01 + 8.630500000000000e-01 + 9.183100000000000e-01 + 9.386400000000000e-01 + 9.058800000000000e-01 + 8.052200000000000e-01 + 6.347900000000000e-01 + 4.099800000000000e-01 + 1.602300000000000e-01 +-7.902500000000000e-02 +-2.745800000000000e-01 +-4.017800000000000e-01 +-4.496000000000000e-01 +-4.253600000000000e-01 +-3.566400000000000e-01 +-2.859800000000000e-01 +-2.562800000000000e-01 +-2.914800000000000e-01 +-3.833300000000000e-01 +-4.938200000000000e-01 +-5.740100000000000e-01 +-5.889799999999999e-01 +-5.335600000000000e-01 +-4.297100000000000e-01 +-3.088200000000000e-01 +-1.927000000000000e-01 +-8.631500000000000e-02 + 1.444600000000000e-02 + 1.088900000000000e-01 + 1.842900000000000e-01 + 2.218900000000000e-01 + 2.109700000000000e-01 + 1.592300000000000e-01 + 9.081900000000000e-02 + 3.358400000000000e-02 + 5.624800000000000e-03 + 1.118400000000000e-02 + 4.738700000000000e-02 + 1.140400000000000e-01 + 2.163300000000000e-01 + 3.569100000000000e-01 + 5.237100000000000e-01 + 6.846300000000000e-01 + 7.958100000000000e-01 + 8.199800000000000e-01 + 7.432400000000000e-01 + 5.793100000000000e-01 + 3.592500000000000e-01 + 1.145200000000000e-01 +-1.347100000000000e-01 +-3.789900000000000e-01 +-6.096800000000000e-01 +-8.093000000000000e-01 +-9.509000000000000e-01 +-1.007900000000000e+00 +-9.677100000000000e-01 +-8.391999999999999e-01 +-6.498000000000000e-01 +-4.339100000000000e-01 +-2.211100000000000e-01 +-3.081200000000000e-02 + 1.256300000000000e-01 + 2.402100000000000e-01 + 3.071200000000000e-01 + 3.269800000000000e-01 + 3.123000000000000e-01 + 2.875200000000000e-01 + 2.799600000000000e-01 + 3.055900000000000e-01 + 3.586000000000000e-01 + 4.128700000000000e-01 + 4.361000000000000e-01 + 4.083800000000000e-01 + 3.333300000000000e-01 + 2.346700000000000e-01 + 1.409500000000000e-01 + 6.929000000000000e-02 + 1.933500000000000e-02 +-1.942300000000000e-02 +-5.399700000000000e-02 +-7.963400000000000e-02 +-8.407500000000000e-02 +-6.122400000000000e-02 +-2.295000000000000e-02 + 1.654100000000000e-03 +-1.875700000000000e-02 +-9.772500000000001e-02 +-2.194300000000000e-01 +-3.440100000000000e-01 +-4.269800000000000e-01 +-4.411500000000000e-01 +-3.882700000000000e-01 +-2.953000000000000e-01 +-1.991100000000000e-01 +-1.293800000000000e-01 +-9.811200000000000e-02 +-9.854700000000000e-02 +-1.114300000000000e-01 +-1.142100000000000e-01 +-8.976300000000000e-02 +-3.255400000000000e-02 + 4.935900000000000e-02 + 1.375400000000000e-01 + 2.111400000000000e-01 + 2.565000000000000e-01 + 2.732300000000000e-01 + 2.730900000000000e-01 + 2.720000000000000e-01 + 2.802900000000000e-01 + 2.973400000000000e-01 + 3.137300000000000e-01 + 3.184700000000000e-01 + 3.060300000000000e-01 + 2.784200000000000e-01 + 2.422200000000000e-01 + 2.037300000000000e-01 + 1.657800000000000e-01 + 1.272500000000000e-01 + 8.377400000000000e-02 + 2.835500000000000e-02 +-4.755300000000000e-02 +-1.506500000000000e-01 +-2.799600000000000e-01 +-4.220500000000000e-01 +-5.521900000000000e-01 +-6.435200000000000e-01 +-6.801100000000000e-01 +-6.650300000000000e-01 +-6.169500000000000e-01 +-5.559100000000000e-01 +-4.879500000000000e-01 +-3.996500000000000e-01 +-2.677200000000000e-01 +-7.745800000000000e-02 + 1.625500000000000e-01 + 4.198100000000000e-01 + 6.520200000000000e-01 + 8.260600000000000e-01 + 9.295900000000000e-01 + 9.688200000000000e-01 + 9.563100000000000e-01 + 8.986200000000000e-01 + 7.926800000000001e-01 + 6.320000000000000e-01 + 4.171800000000000e-01 + 1.626700000000000e-01 +-1.047800000000000e-01 +-3.545000000000000e-01 +-5.622000000000000e-01 +-7.168099999999999e-01 +-8.209500000000000e-01 +-8.853300000000000e-01 +-9.200900000000000e-01 +-9.272300000000000e-01 +-8.985800000000000e-01 +-8.212100000000000e-01 +-6.880100000000000e-01 +-5.072100000000000e-01 +-3.036300000000000e-01 +-1.090000000000000e-01 + 5.379200000000000e-02 + 1.824200000000000e-01 + 2.939600000000000e-01 + 4.109200000000000e-01 + 5.437000000000000e-01 + 6.818800000000000e-01 + 8.004300000000000e-01 + 8.756200000000000e-01 + 8.982500000000000e-01 + 8.746000000000000e-01 + 8.160800000000000e-01 + 7.279800000000000e-01 + 6.081299999999999e-01 + 4.567500000000000e-01 + 2.876000000000000e-01 + 1.283400000000000e-01 + 6.373200000000000e-03 +-7.020400000000000e-02 +-1.208300000000000e-01 +-1.811900000000000e-01 +-2.787300000000000e-01 +-4.126900000000000e-01 +-5.537600000000000e-01 +-6.640100000000000e-01 +-7.224000000000000e-01 +-7.369200000000000e-01 +-7.351900000000000e-01 +-7.417800000000000e-01 +-7.598800000000000e-01 +-7.700600000000000e-01 +-7.450200000000000e-01 +-6.673200000000000e-01 +-5.371700000000000e-01 +-3.674700000000000e-01 +-1.736900000000000e-01 + 3.118900000000000e-02 + 2.341000000000000e-01 + 4.178000000000000e-01 + 5.631100000000000e-01 + 6.584100000000001e-01 + 7.080700000000000e-01 + 7.303200000000000e-01 + 7.430200000000000e-01 + 7.475900000000000e-01 + 7.252500000000000e-01 + 6.511400000000001e-01 + 5.174000000000000e-01 + 3.469900000000000e-01 + 1.857300000000000e-01 + 7.584000000000000e-02 + 2.972400000000000e-02 + 2.363800000000000e-02 + 1.668300000000000e-02 +-1.828400000000000e-02 +-7.446000000000000e-02 +-1.163400000000000e-01 +-1.062600000000000e-01 +-3.261700000000000e-02 + 8.021000000000000e-02 + 1.861500000000000e-01 + 2.439900000000000e-01 + 2.365300000000000e-01 + 1.700400000000000e-01 + 5.768400000000000e-02 +-9.743499999999999e-02 +-3.048200000000000e-01 +-5.719500000000000e-01 +-8.836500000000000e-01 +-1.192000000000000e+00 +-1.426000000000000e+00 +-1.517700000000000e+00 +-1.429300000000000e+00 +-1.169000000000000e+00 +-7.857400000000000e-01 +-3.504700000000000e-01 + 6.778400000000000e-02 + 4.192400000000000e-01 + 6.803200000000000e-01 + 8.512000000000000e-01 + 9.479300000000001e-01 + 9.925800000000000e-01 + 1.004000000000000e+00 + 9.910300000000000e-01 + 9.514800000000000e-01 + 8.767600000000000e-01 + 7.622700000000000e-01 + 6.170099999999999e-01 + 4.660700000000000e-01 + 3.421300000000000e-01 + 2.690700000000000e-01 + 2.469500000000000e-01 + 2.483500000000000e-01 + 2.300900000000000e-01 + 1.545900000000000e-01 + 8.605900000000000e-03 +-1.916600000000000e-01 +-4.112300000000000e-01 +-6.147400000000000e-01 +-7.802500000000000e-01 +-9.003800000000000e-01 +-9.732400000000000e-01 +-9.927700000000000e-01 +-9.479200000000000e-01 +-8.316800000000000e-01 +-6.523700000000000e-01 +-4.366800000000000e-01 +-2.207000000000000e-01 +-3.447300000000000e-02 + 1.091000000000000e-01 + 2.139200000000000e-01 + 2.910800000000000e-01 + 3.489700000000000e-01 + 3.910800000000000e-01 + 4.209400000000000e-01 + 4.464800000000000e-01 + 4.764300000000000e-01 + 5.096000000000001e-01 + 5.268200000000000e-01 + 4.960300000000000e-01 + 3.914500000000000e-01 + 2.153300000000000e-01 + 5.523100000000000e-03 +-1.794500000000000e-01 +-2.902600000000000e-01 +-3.123000000000000e-01 +-2.696700000000000e-01 +-2.058500000000000e-01 +-1.551300000000000e-01 +-1.250000000000000e-01 +-9.945500000000000e-02 +-5.740400000000000e-02 + 1.005000000000000e-02 + 9.602200000000000e-02 + 1.874400000000000e-01 + 2.763200000000000e-01 + 3.614200000000000e-01 + 4.394300000000000e-01 + 4.957100000000000e-01 + 5.057500000000000e-01 + 4.490300000000000e-01 + 3.249000000000000e-01 + 1.566700000000000e-01 +-2.118600000000000e-02 +-1.842900000000000e-01 +-3.316800000000000e-01 +-4.807000000000000e-01 +-6.468100000000000e-01 +-8.235300000000000e-01 +-9.778000000000000e-01 +-1.064100000000000e+00 +-1.047700000000000e+00 +-9.212200000000000e-01 +-7.053600000000000e-01 +-4.365700000000000e-01 +-1.514100000000000e-01 + 1.224100000000000e-01 + 3.668800000000000e-01 + 5.710499999999999e-01 + 7.299200000000000e-01 + 8.455400000000000e-01 + 9.263900000000000e-01 + 9.817399999999999e-01 + 1.012800000000000e+00 + 1.007000000000000e+00 + 9.405000000000000e-01 + 7.902300000000000e-01 + 5.484599999999999e-01 + 2.324700000000000e-01 +-1.160200000000000e-01 +-4.413000000000000e-01 +-6.892800000000000e-01 +-8.229700000000000e-01 +-8.331200000000000e-01 +-7.411500000000000e-01 +-5.922600000000000e-01 +-4.395400000000000e-01 +-3.237800000000000e-01 +-2.579400000000000e-01 +-2.245700000000000e-01 +-1.887900000000000e-01 +-1.199600000000000e-01 +-9.255500000000000e-03 + 1.270100000000000e-01 + 2.592400000000000e-01 + 3.619600000000000e-01 + 4.242900000000000e-01 + 4.475600000000000e-01 + 4.347700000000000e-01 + 3.829900000000000e-01 + 2.864200000000000e-01 + 1.476300000000000e-01 +-1.320600000000000e-02 +-1.611100000000000e-01 +-2.616400000000000e-01 +-2.990100000000000e-01 +-2.842900000000000e-01 +-2.477500000000000e-01 +-2.205900000000000e-01 +-2.182600000000000e-01 +-2.352200000000000e-01 +-2.522000000000000e-01 +-2.488400000000000e-01 +-2.128900000000000e-01 +-1.422800000000000e-01 +-4.262500000000000e-02 + 7.522600000000000e-02 + 1.955600000000000e-01 + 2.983400000000000e-01 + 3.629800000000000e-01 + 3.753000000000000e-01 + 3.336600000000000e-01 + 2.496100000000000e-01 + 1.421600000000000e-01 + 2.990100000000000e-02 +-7.351400000000000e-02 +-1.578400000000000e-01 +-2.118200000000000e-01 +-2.215800000000000e-01 +-1.753400000000000e-01 +-7.209300000000000e-02 + 7.196000000000000e-02 + 2.248000000000000e-01 + 3.481500000000000e-01 + 4.101600000000000e-01 + 3.947700000000000e-01 + 3.041500000000000e-01 + 1.553200000000000e-01 +-2.528100000000000e-02 +-2.065500000000000e-01 +-3.564800000000000e-01 +-4.463900000000000e-01 +-4.566000000000000e-01 +-3.821100000000000e-01 +-2.358300000000000e-01 +-4.714500000000000e-02 + 1.444100000000000e-01 + 2.987300000000000e-01 + 3.856500000000000e-01 + 3.932200000000000e-01 + 3.312300000000000e-01 + 2.275300000000000e-01 + 1.172800000000000e-01 + 2.861700000000000e-02 +-2.867900000000000e-02 +-6.516700000000000e-02 +-1.026800000000000e-01 +-1.593600000000000e-01 +-2.379900000000000e-01 +-3.251700000000000e-01 +-4.011000000000000e-01 +-4.525800000000000e-01 +-4.794100000000000e-01 +-4.900900000000000e-01 +-4.909600000000000e-01 +-4.783300000000000e-01 +-4.404600000000000e-01 +-3.677600000000000e-01 +-2.627800000000000e-01 +-1.410700000000000e-01 +-2.146300000000000e-02 + 8.697600000000000e-02 + 1.909500000000000e-01 + 3.067000000000000e-01 + 4.457600000000000e-01 + 6.032500000000000e-01 + 7.574400000000000e-01 + 8.806600000000000e-01 + 9.537500000000000e-01 + 9.737200000000000e-01 + 9.504700000000000e-01 + 8.959900000000000e-01 + 8.150600000000000e-01 + 7.037500000000000e-01 + 5.558999999999999e-01 + 3.717400000000000e-01 + 1.618700000000000e-01 +-5.602400000000000e-02 +-2.652000000000000e-01 +-4.569700000000000e-01 +-6.325800000000000e-01 +-7.990900000000000e-01 +-9.619799999999999e-01 +-1.118700000000000e+00 +-1.256200000000000e+00 +-1.353500000000000e+00 +-1.388300000000000e+00 +-1.344300000000000e+00 +-1.215900000000000e+00 +-1.009600000000000e+00 +-7.400500000000000e-01 +-4.261000000000000e-01 +-8.728900000000001e-02 + 2.560500000000000e-01 + 5.816900000000000e-01 + 8.660800000000000e-01 + 1.088600000000000e+00 + 1.237500000000000e+00 + 1.312500000000000e+00 + 1.322300000000000e+00 + 1.275500000000000e+00 + 1.174100000000000e+00 + 1.013600000000000e+00 + 7.912900000000000e-01 + 5.185400000000000e-01 + 2.250400000000000e-01 +-4.801700000000000e-02 +-2.642600000000000e-01 +-4.073800000000000e-01 +-4.857200000000000e-01 +-5.238100000000000e-01 +-5.471300000000000e-01 +-5.702300000000000e-01 +-5.940000000000000e-01 +-6.106600000000000e-01 +-6.100000000000000e-01 +-5.823500000000000e-01 +-5.191400000000000e-01 +-4.154600000000000e-01 +-2.760200000000000e-01 +-1.202400000000000e-01 + 2.093500000000000e-02 + 1.190300000000000e-01 + 1.658600000000000e-01 + 1.817900000000000e-01 + 2.048900000000000e-01 + 2.649000000000000e-01 + 3.586700000000000e-01 + 4.456900000000000e-01 + 4.696900000000000e-01 + 3.938900000000000e-01 + 2.265200000000000e-01 + 1.931500000000000e-02 +-1.598800000000000e-01 +-2.616500000000000e-01 +-2.740800000000000e-01 +-2.168400000000000e-01 +-1.191400000000000e-01 +-1.037400000000000e-03 + 1.284900000000000e-01 + 2.590400000000000e-01 + 3.667100000000000e-01 + 4.167700000000000e-01 + 3.816700000000000e-01 + 2.611500000000000e-01 + 8.794500000000000e-02 +-8.729099999999999e-02 +-2.221600000000000e-01 +-3.023400000000000e-01 +-3.424800000000000e-01 +-3.699000000000000e-01 +-4.041200000000000e-01 +-4.463200000000000e-01 +-4.830200000000000e-01 +-4.974500000000000e-01 +-4.782700000000000e-01 +-4.205100000000000e-01 +-3.219200000000000e-01 +-1.815900000000000e-01 +-4.123300000000000e-03 + 1.943600000000000e-01 + 3.855100000000000e-01 + 5.366300000000001e-01 + 6.235100000000000e-01 + 6.398300000000000e-01 + 5.970800000000001e-01 + 5.159700000000000e-01 + 4.158200000000000e-01 + 3.089500000000000e-01 + 2.015200000000000e-01 + 9.762300000000000e-02 + 2.004200000000000e-03 +-7.986400000000000e-02 +-1.421900000000000e-01 +-1.778400000000000e-01 +-1.771500000000000e-01 +-1.305800000000000e-01 +-3.676900000000000e-02 + 8.777100000000000e-02 + 2.060700000000000e-01 + 2.713200000000000e-01 + 2.479500000000000e-01 + 1.314900000000000e-01 +-4.670300000000000e-02 +-2.344700000000000e-01 +-3.853600000000000e-01 +-4.796000000000000e-01 +-5.263500000000000e-01 +-5.472900000000001e-01 +-5.548600000000000e-01 +-5.420300000000000e-01 +-4.907700000000000e-01 +-3.920500000000000e-01 +-2.607700000000000e-01 +-1.329300000000000e-01 +-4.534800000000000e-02 +-1.168300000000000e-02 +-1.162300000000000e-02 +-1.329400000000000e-03 + 6.114300000000000e-02 + 1.915300000000000e-01 + 3.709200000000000e-01 + 5.571400000000000e-01 + 7.075700000000000e-01 + 7.985300000000000e-01 + 8.306100000000000e-01 + 8.185400000000000e-01 + 7.745100000000000e-01 + 6.966000000000000e-01 + 5.700400000000000e-01 + 3.802700000000000e-01 + 1.293200000000000e-01 +-1.551000000000000e-01 +-4.243000000000000e-01 +-6.256800000000000e-01 +-7.235300000000000e-01 +-7.130400000000000e-01 +-6.205600000000000e-01 +-4.908100000000000e-01 +-3.683600000000000e-01 +-2.829000000000000e-01 +-2.440100000000000e-01 +-2.452400000000000e-01 +-2.722800000000000e-01 +-3.097000000000000e-01 +-3.438900000000000e-01 +-3.635300000000000e-01 +-3.601100000000000e-01 +-3.294500000000000e-01 +-2.725900000000000e-01 +-1.941100000000000e-01 +-9.818100000000000e-02 + 1.474300000000000e-02 + 1.474100000000000e-01 + 3.009200000000000e-01 + 4.687800000000000e-01 + 6.348500000000000e-01 + 7.771200000000000e-01 + 8.754999999999999e-01 + 9.183300000000000e-01 + 9.038400000000000e-01 + 8.366700000000000e-01 + 7.233200000000000e-01 + 5.700200000000000e-01 + 3.841100000000000e-01 + 1.760900000000000e-01 +-4.025500000000000e-02 +-2.500000000000000e-01 +-4.391900000000000e-01 +-5.947600000000000e-01 +-7.030100000000000e-01 +-7.502300000000000e-01 +-7.280400000000000e-01 +-6.413100000000000e-01 +-5.125400000000000e-01 +-3.770100000000000e-01 +-2.689700000000000e-01 +-2.065200000000000e-01 +-1.852200000000000e-01 +-1.850300000000000e-01 +-1.859200000000000e-01 +-1.807300000000000e-01 +-1.764600000000000e-01 +-1.838000000000000e-01 +-2.039300000000000e-01 +-2.233600000000000e-01 +-2.205700000000000e-01 +-1.790900000000000e-01 +-9.683500000000000e-02 + 1.465300000000000e-02 + 1.389100000000000e-01 + 2.633200000000000e-01 + 3.816000000000000e-01 + 4.900000000000000e-01 + 5.831700000000000e-01 + 6.545400000000000e-01 + 7.008400000000000e-01 + 7.251300000000001e-01 + 7.336700000000000e-01 + 7.280000000000000e-01 + 6.993600000000000e-01 + 6.319500000000000e-01 + 5.143700000000000e-01 + 3.510000000000000e-01 + 1.636000000000000e-01 +-1.946900000000000e-02 +-1.791400000000000e-01 +-3.147000000000000e-01 +-4.391600000000000e-01 +-5.645500000000000e-01 +-6.888400000000000e-01 +-7.946400000000000e-01 +-8.605800000000000e-01 +-8.761900000000000e-01 +-8.490600000000000e-01 +-7.991400000000000e-01 +-7.451600000000000e-01 +-6.931300000000000e-01 +-6.343000000000000e-01 +-5.524000000000000e-01 +-4.336000000000000e-01 +-2.729500000000000e-01 +-7.513700000000000e-02 + 1.482800000000000e-01 + 3.817400000000000e-01 + 6.078200000000000e-01 + 8.096800000000000e-01 + 9.741200000000000e-01 + 1.093700000000000e+00 + 1.165400000000000e+00 + 1.186300000000000e+00 + 1.150100000000000e+00 + 1.048000000000000e+00 + 8.764999999999999e-01 + 6.452300000000000e-01 + 3.791200000000000e-01 + 1.105400000000000e-01 +-1.340900000000000e-01 +-3.442700000000000e-01 +-5.250300000000000e-01 +-6.869200000000000e-01 +-8.345200000000000e-01 +-9.621800000000000e-01 +-1.059100000000000e+00 +-1.117800000000000e+00 +-1.138100000000000e+00 +-1.123400000000000e+00 +-1.072800000000000e+00 +-9.786400000000000e-01 +-8.310999999999999e-01 +-6.266400000000000e-01 +-3.722100000000000e-01 +-8.096299999999999e-02 + 2.360000000000000e-01 + 5.730000000000000e-01 + 9.230300000000000e-01 + 1.265300000000000e+00 + 1.559100000000000e+00 + 1.752600000000000e+00 + 1.804200000000000e+00 + 1.703900000000000e+00 + 1.478200000000000e+00 + 1.175400000000000e+00 + 8.405899999999999e-01 + 4.985900000000000e-01 + 1.539900000000000e-01 +-1.927500000000000e-01 +-5.285300000000001e-01 +-8.239700000000000e-01 +-1.045800000000000e+00 +-1.175600000000000e+00 +-1.220900000000000e+00 +-1.210000000000000e+00 +-1.175700000000000e+00 +-1.137800000000000e+00 +-1.096200000000000e+00 +-1.036100000000000e+00 +-9.405100000000000e-01 +-8.017700000000000e-01 +-6.263400000000000e-01 +-4.324700000000000e-01 +-2.425600000000000e-01 +-7.381400000000000e-02 + 6.924200000000000e-02 + 1.966600000000000e-01 + 3.271500000000000e-01 + 4.759200000000000e-01 + 6.428100000000000e-01 + 8.089000000000000e-01 + 9.456200000000000e-01 + 1.032000000000000e+00 + 1.068100000000000e+00 + 1.074600000000000e+00 + 1.077200000000000e+00 + 1.085700000000000e+00 + 1.084600000000000e+00 + 1.041100000000000e+00 + 9.273700000000000e-01 + 7.398200000000000e-01 + 5.035100000000000e-01 + 2.581500000000000e-01 + 3.691500000000000e-02 +-1.479500000000000e-01 +-3.047400000000000e-01 +-4.508800000000000e-01 +-6.005900000000000e-01 +-7.589900000000001e-01 +-9.228900000000000e-01 +-1.083000000000000e+00 +-1.224400000000000e+00 +-1.326900000000000e+00 +-1.369800000000000e+00 +-1.342000000000000e+00 +-1.250400000000000e+00 +-1.118600000000000e+00 +-9.752600000000000e-01 +-8.362200000000000e-01 +-6.968700000000000e-01 +-5.390900000000000e-01 +-3.487200000000000e-01 +-1.287700000000000e-01 + 1.031100000000000e-01 + 3.310600000000000e-01 + 5.568600000000000e-01 + 7.997800000000000e-01 + 1.078000000000000e+00 + 1.384900000000000e+00 + 1.680500000000000e+00 + 1.906100000000000e+00 + 2.014300000000000e+00 + 1.991500000000000e+00 + 1.858600000000000e+00 + 1.648600000000000e+00 + 1.382200000000000e+00 + 1.058500000000000e+00 + 6.684900000000000e-01 + 2.171500000000000e-01 +-2.643300000000000e-01 +-7.273300000000000e-01 +-1.128000000000000e+00 +-1.444900000000000e+00 +-1.678400000000000e+00 +-1.834800000000000e+00 +-1.909500000000000e+00 +-1.886600000000000e+00 +-1.753800000000000e+00 +-1.522700000000000e+00 +-1.233900000000000e+00 +-9.416600000000001e-01 +-6.873100000000000e-01 +-4.788400000000000e-01 +-2.917100000000000e-01 +-8.930200000000001e-02 + 1.511400000000000e-01 + 4.237000000000000e-01 + 6.978100000000000e-01 + 9.355000000000000e-01 + 1.109300000000000e+00 + 1.210300000000000e+00 + 1.244400000000000e+00 + 1.222900000000000e+00 + 1.155300000000000e+00 + 1.048200000000000e+00 + 9.092600000000000e-01 + 7.514700000000000e-01 + 5.927400000000000e-01 + 4.502400000000000e-01 + 3.319700000000000e-01 + 2.308900000000000e-01 + 1.261300000000000e-01 +-7.314100000000000e-03 +-1.842500000000000e-01 +-3.978600000000000e-01 +-6.185200000000000e-01 +-8.050900000000000e-01 +-9.230800000000000e-01 +-9.593000000000000e-01 +-9.242000000000000e-01 +-8.411999999999999e-01 +-7.311500000000000e-01 +-6.033600000000000e-01 +-4.589500000000000e-01 +-3.027300000000000e-01 +-1.523400000000000e-01 +-3.559700000000000e-02 + 2.408500000000000e-02 + 2.444300000000000e-02 +-9.180799999999999e-03 +-3.345100000000000e-02 +-7.825500000000001e-03 + 8.554100000000001e-02 + 2.336700000000000e-01 + 3.995500000000000e-01 + 5.385600000000000e-01 + 6.157000000000000e-01 + 6.166500000000000e-01 + 5.500500000000000e-01 + 4.419700000000000e-01 + 3.253900000000000e-01 + 2.282000000000000e-01 + 1.641100000000000e-01 + 1.308200000000000e-01 + 1.165600000000000e-01 + 1.111300000000000e-01 + 1.133100000000000e-01 + 1.286500000000000e-01 + 1.582600000000000e-01 + 1.879300000000000e-01 + 1.884300000000000e-01 + 1.303300000000000e-01 + 4.934600000000000e-03 +-1.643700000000000e-01 +-3.310700000000000e-01 +-4.516000000000000e-01 +-5.115000000000000e-01 +-5.333100000000000e-01 +-5.596500000000000e-01 +-6.222500000000000e-01 +-7.179400000000000e-01 +-8.073399999999999e-01 +-8.359700000000000e-01 +-7.633600000000000e-01 +-5.819500000000000e-01 +-3.172500000000000e-01 +-1.373000000000000e-02 + 2.821500000000000e-01 + 5.329600000000000e-01 + 7.147200000000000e-01 + 8.187300000000000e-01 + 8.532400000000000e-01 + 8.426399999999999e-01 + 8.197300000000000e-01 + 8.115300000000000e-01 + 8.254300000000000e-01 + 8.448900000000000e-01 + 8.383400000000000e-01 + 7.757800000000000e-01 + 6.420600000000000e-01 + 4.393400000000000e-01 + 1.801000000000000e-01 +-1.208200000000000e-01 +-4.476800000000000e-01 +-7.792000000000000e-01 +-1.085200000000000e+00 +-1.331100000000000e+00 +-1.489900000000000e+00 +-1.551700000000000e+00 +-1.522900000000000e+00 +-1.413600000000000e+00 +-1.224500000000000e+00 +-9.460400000000000e-01 +-5.717200000000000e-01 +-1.187900000000000e-01 + 3.621900000000000e-01 + 7.986200000000000e-01 + 1.124200000000000e+00 + 1.307100000000000e+00 + 1.359900000000000e+00 + 1.326000000000000e+00 + 1.251600000000000e+00 + 1.162200000000000e+00 + 1.055300000000000e+00 + 9.127600000000000e-01 + 7.196700000000000e-01 + 4.781600000000000e-01 + 2.090300000000000e-01 +-5.709100000000000e-02 +-2.920000000000000e-01 +-4.788200000000000e-01 +-6.146700000000000e-01 +-7.072400000000000e-01 +-7.675500000000000e-01 +-8.016700000000000e-01 +-8.054900000000000e-01 +-7.663300000000000e-01 +-6.724300000000000e-01 +-5.262600000000000e-01 +-3.529100000000000e-01 +-1.958900000000000e-01 +-9.960100000000000e-02 +-8.700900000000000e-02 +-1.462000000000000e-01 +-2.347800000000000e-01 +-3.002800000000000e-01 +-3.043400000000000e-01 +-2.364600000000000e-01 +-1.109400000000000e-01 + 4.781300000000000e-02 + 2.196100000000000e-01 + 3.930600000000000e-01 + 5.602200000000001e-01 + 7.090100000000000e-01 + 8.221300000000000e-01 + 8.843700000000000e-01 + 8.922400000000000e-01 + 8.570600000000000e-01 + 7.975500000000000e-01 + 7.261300000000001e-01 + 6.387600000000000e-01 + 5.161300000000000e-01 + 3.367300000000000e-01 + 9.396699999999999e-02 +-1.932300000000000e-01 +-4.832700000000000e-01 +-7.272600000000000e-01 +-8.886700000000000e-01 +-9.572400000000000e-01 +-9.499900000000000e-01 +-8.998100000000000e-01 +-8.383800000000000e-01 +-7.827000000000000e-01 +-7.322000000000000e-01 +-6.764900000000000e-01 +-6.071900000000000e-01 +-5.251700000000000e-01 +-4.376300000000000e-01 +-3.472600000000000e-01 +-2.422900000000000e-01 +-9.674500000000000e-02 + 1.162700000000000e-01 + 4.046400000000000e-01 + 7.433400000000000e-01 + 1.076700000000000e+00 + 1.337600000000000e+00 + 1.473800000000000e+00 + 1.467200000000000e+00 + 1.336200000000000e+00 + 1.121900000000000e+00 + 8.681100000000000e-01 + 6.059600000000001e-01 + 3.510000000000000e-01 + 1.095200000000000e-01 +-1.124100000000000e-01 +-3.044600000000000e-01 +-4.545000000000000e-01 +-5.550200000000000e-01 +-6.088300000000000e-01 +-6.303500000000000e-01 +-6.417000000000000e-01 +-6.655600000000000e-01 +-7.172700000000000e-01 +-7.988200000000000e-01 +-8.965200000000000e-01 +-9.833600000000000e-01 +-1.026000000000000e+00 +-9.946900000000000e-01 +-8.728800000000000e-01 +-6.636700000000000e-01 +-3.900800000000000e-01 +-8.943900000000000e-02 + 1.967500000000000e-01 + 4.337800000000000e-01 + 6.019500000000000e-01 + 6.990300000000000e-01 + 7.364100000000000e-01 + 7.315000000000000e-01 + 7.007100000000001e-01 + 6.571500000000000e-01 + 6.135800000000000e-01 + 5.864600000000000e-01 + 5.951700000000000e-01 + 6.530300000000000e-01 + 7.540400000000000e-01 + 8.649500000000000e-01 + 9.315700000000000e-01 + 9.001500000000000e-01 + 7.435800000000000e-01 + 4.764200000000000e-01 + 1.483400000000000e-01 +-1.809600000000000e-01 +-4.699000000000000e-01 +-7.084900000000000e-01 +-9.097300000000000e-01 +-1.087500000000000e+00 +-1.238500000000000e+00 +-1.340400000000000e+00 +-1.367900000000000e+00 +-1.310300000000000e+00 +-1.178500000000000e+00 +-9.946700000000001e-01 +-7.754400000000000e-01 +-5.220900000000001e-01 +-2.267800000000000e-01 + 1.103300000000000e-01 + 4.665900000000000e-01 + 7.969100000000000e-01 + 1.049000000000000e+00 + 1.183600000000000e+00 + 1.188300000000000e+00 + 1.077100000000000e+00 + 8.820500000000000e-01 + 6.423100000000000e-01 + 3.968500000000000e-01 + 1.802900000000000e-01 + 1.821900000000000e-02 +-7.811700000000001e-02 +-1.144500000000000e-01 +-1.092600000000000e-01 +-8.337000000000000e-02 +-4.968500000000000e-02 +-1.049900000000000e-02 + 3.579800000000000e-02 + 8.445100000000000e-02 + 1.196100000000000e-01 + 1.197700000000000e-01 + 6.956000000000000e-02 +-3.128800000000000e-02 +-1.682300000000000e-01 +-3.199200000000000e-01 +-4.663200000000000e-01 +-5.903800000000000e-01 +-6.743300000000000e-01 +-6.978900000000000e-01 +-6.443500000000000e-01 +-5.126800000000000e-01 +-3.254600000000000e-01 +-1.233400000000000e-01 + 5.378800000000000e-02 + 1.871600000000000e-01 + 2.858200000000000e-01 + 3.734000000000000e-01 + 4.637300000000000e-01 + 5.436800000000001e-01 + 5.771200000000000e-01 + 5.290100000000000e-01 + 3.933500000000000e-01 + 2.048500000000000e-01 + 2.537600000000000e-02 +-8.722199999999999e-02 +-1.083600000000000e-01 +-5.680900000000000e-02 + 1.906200000000000e-02 + 6.887900000000000e-02 + 6.509200000000000e-02 + 1.227100000000000e-02 +-6.144600000000000e-02 +-1.233300000000000e-01 +-1.540800000000000e-01 +-1.560100000000000e-01 +-1.484700000000000e-01 +-1.542200000000000e-01 +-1.843800000000000e-01 +-2.301700000000000e-01 +-2.663500000000000e-01 +-2.648500000000000e-01 +-2.114000000000000e-01 +-1.150100000000000e-01 +-4.513200000000000e-03 + 8.662100000000000e-02 + 1.378400000000000e-01 + 1.510800000000000e-01 + 1.469100000000000e-01 + 1.506100000000000e-01 + 1.773700000000000e-01 + 2.250200000000000e-01 + 2.768100000000000e-01 + 3.104100000000000e-01 + 3.070500000000000e-01 + 2.571200000000000e-01 + 1.621000000000000e-01 + 3.445100000000000e-02 +-1.041100000000000e-01 +-2.269300000000000e-01 +-3.094800000000000e-01 +-3.368200000000000e-01 +-3.076700000000000e-01 +-2.327400000000000e-01 +-1.294800000000000e-01 +-1.744800000000000e-02 + 8.297200000000000e-02 + 1.504300000000000e-01 + 1.658700000000000e-01 + 1.212200000000000e-01 + 2.877300000000000e-02 +-7.772200000000000e-02 +-1.558900000000000e-01 +-1.766600000000000e-01 +-1.413600000000000e-01 +-8.062300000000000e-02 +-3.380800000000000e-02 +-2.244500000000000e-02 +-3.712300000000000e-02 +-4.789100000000000e-02 +-3.029100000000000e-02 + 1.353700000000000e-02 + 5.583600000000000e-02 + 6.600800000000000e-02 + 3.712100000000000e-02 +-5.502800000000000e-03 +-2.138400000000000e-02 + 1.503000000000000e-02 + 9.444800000000000e-02 + 1.782100000000000e-01 + 2.245300000000000e-01 + 2.153200000000000e-01 + 1.639000000000000e-01 + 1.004100000000000e-01 + 4.853400000000000e-02 + 1.271900000000000e-02 +-1.608500000000000e-02 +-4.419900000000000e-02 +-6.453800000000000e-02 +-6.102000000000000e-02 +-2.333200000000000e-02 + 4.188400000000000e-02 + 1.136900000000000e-01 + 1.710500000000000e-01 + 2.059700000000000e-01 + 2.245500000000000e-01 + 2.354300000000000e-01 + 2.365400000000000e-01 + 2.120800000000000e-01 + 1.424800000000000e-01 + 1.934200000000000e-02 +-1.465400000000000e-01 +-3.295700000000000e-01 +-5.014300000000000e-01 +-6.411500000000000e-01 +-7.373800000000000e-01 +-7.845800000000001e-01 +-7.795800000000001e-01 +-7.221900000000000e-01 +-6.178300000000000e-01 +-4.771900000000000e-01 +-3.116100000000000e-01 +-1.284400000000000e-01 + 6.778900000000000e-02 + 2.679800000000000e-01 + 4.518900000000000e-01 + 5.913300000000000e-01 + 6.645000000000000e-01 + 6.724800000000000e-01 + 6.437200000000000e-01 + 6.199300000000000e-01 + 6.309700000000000e-01 + 6.763700000000000e-01 + 7.272300000000000e-01 + 7.471500000000000e-01 + 7.162600000000000e-01 + 6.402800000000000e-01 + 5.390800000000000e-01 + 4.261700000000000e-01 + 2.972900000000000e-01 + 1.376300000000000e-01 +-5.924700000000000e-02 +-2.782800000000000e-01 +-4.878000000000000e-01 +-6.592500000000000e-01 +-7.852700000000000e-01 +-8.809300000000000e-01 +-9.673100000000000e-01 +-1.051100000000000e+00 +-1.117300000000000e+00 +-1.140800000000000e+00 +-1.105400000000000e+00 +-1.014400000000000e+00 +-8.846400000000000e-01 +-7.290900000000000e-01 +-5.459300000000000e-01 +-3.232400000000000e-01 +-5.573800000000000e-02 + 2.414700000000000e-01 + 5.349000000000000e-01 + 7.894099999999999e-01 + 9.859700000000000e-01 + 1.126300000000000e+00 + 1.221200000000000e+00 + 1.275200000000000e+00 + 1.279900000000000e+00 + 1.224600000000000e+00 + 1.111500000000000e+00 + 9.626200000000000e-01 + 8.091699999999999e-01 + 6.704800000000000e-01 + 5.396100000000000e-01 + 3.877200000000000e-01 + 1.850600000000000e-01 +-7.683100000000000e-02 +-3.775100000000000e-01 +-6.788300000000000e-01 +-9.446500000000000e-01 +-1.154100000000000e+00 +-1.300500000000000e+00 +-1.380500000000000e+00 +-1.386100000000000e+00 +-1.306900000000000e+00 +-1.139800000000000e+00 +-8.978000000000000e-01 +-6.092700000000000e-01 +-3.083900000000000e-01 +-2.465100000000000e-02 + 2.219500000000000e-01 + 4.195500000000000e-01 + 5.621500000000000e-01 + 6.505900000000000e-01 + 6.951200000000000e-01 + 7.135000000000000e-01 + 7.212400000000000e-01 + 7.192300000000000e-01 + 6.895500000000000e-01 + 6.066400000000000e-01 + 4.591400000000000e-01 + 2.669500000000000e-01 + 7.845800000000000e-02 +-5.368300000000000e-02 +-1.032400000000000e-01 +-8.599200000000000e-02 +-4.842300000000000e-02 +-3.701200000000000e-02 +-7.005599999999999e-02 +-1.316200000000000e-01 +-1.901600000000000e-01 +-2.256700000000000e-01 +-2.438100000000000e-01 +-2.665800000000000e-01 +-3.087000000000000e-01 +-3.594400000000000e-01 +-3.849500000000000e-01 +-3.493900000000000e-01 +-2.383700000000000e-01 +-6.793600000000000e-02 + 1.255800000000000e-01 + 3.047000000000000e-01 + 4.436500000000000e-01 + 5.281100000000000e-01 + 5.475100000000001e-01 + 4.918900000000000e-01 + 3.593800000000000e-01 + 1.679800000000000e-01 +-4.127600000000000e-02 +-2.178300000000000e-01 +-3.257700000000000e-01 +-3.625200000000000e-01 +-3.577700000000000e-01 +-3.520300000000000e-01 +-3.691100000000000e-01 +-4.012200000000000e-01 +-4.156300000000000e-01 +-3.765800000000000e-01 +-2.663100000000000e-01 +-9.250300000000000e-02 + 1.188200000000000e-01 + 3.355600000000000e-01 + 5.270800000000000e-01 + 6.649900000000000e-01 + 7.234400000000000e-01 + 6.854300000000000e-01 + 5.538999999999999e-01 + 3.586100000000000e-01 + 1.493500000000000e-01 +-2.433800000000000e-02 +-1.359400000000000e-01 +-1.921000000000000e-01 +-2.233900000000000e-01 +-2.625300000000000e-01 +-3.253300000000000e-01 +-4.065500000000000e-01 +-4.903800000000000e-01 +-5.642900000000000e-01 +-6.240599999999999e-01 +-6.669900000000000e-01 +-6.817200000000000e-01 +-6.460300000000000e-01 +-5.369200000000000e-01 +-3.462600000000000e-01 +-8.963000000000000e-02 + 1.988200000000000e-01 + 4.814400000000000e-01 + 7.307200000000000e-01 + 9.323000000000000e-01 + 1.078200000000000e+00 + 1.159100000000000e+00 + 1.164600000000000e+00 + 1.091600000000000e+00 + 9.518000000000000e-01 + 7.697600000000000e-01 + 5.697000000000000e-01 + 3.609900000000000e-01 + 1.345700000000000e-01 +-1.252400000000000e-01 +-4.214600000000000e-01 +-7.323499999999999e-01 +-1.016600000000000e+00 +-1.232600000000000e+00 +-1.358600000000000e+00 +-1.397900000000000e+00 +-1.368700000000000e+00 +-1.284200000000000e+00 +-1.141700000000000e+00 +-9.257800000000000e-01 +-6.240500000000000e-01 +-2.431900000000000e-01 + 1.860100000000000e-01 + 6.165900000000000e-01 + 1.000200000000000e+00 + 1.299200000000000e+00 + 1.491300000000000e+00 + 1.567900000000000e+00 + 1.529800000000000e+00 + 1.385900000000000e+00 + 1.152700000000000e+00 + 8.538000000000000e-01 + 5.177100000000000e-01 + 1.744100000000000e-01 +-1.486900000000000e-01 +-4.303200000000000e-01 +-6.584500000000000e-01 +-8.317500000000000e-01 +-9.575600000000000e-01 +-1.045500000000000e+00 +-1.098900000000000e+00 +-1.110000000000000e+00 +-1.063400000000000e+00 +-9.486400000000000e-01 +-7.730600000000000e-01 +-5.660500000000001e-01 +-3.681400000000000e-01 +-2.103100000000000e-01 +-9.655600000000000e-02 +-1.710900000000000e-03 + 1.129800000000000e-01 + 2.764200000000000e-01 + 4.911400000000000e-01 + 7.329300000000000e-01 + 9.643200000000000e-01 + 1.151100000000000e+00 + 1.271600000000000e+00 + 1.316100000000000e+00 + 1.282500000000000e+00 + 1.173500000000000e+00 + 9.984300000000000e-01 + 7.740100000000000e-01 + 5.209600000000000e-01 + 2.565200000000000e-01 +-1.047200000000000e-02 +-2.768800000000000e-01 +-5.363599999999999e-01 +-7.724700000000000e-01 +-9.615000000000000e-01 +-1.084600000000000e+00 +-1.139600000000000e+00 +-1.141500000000000e+00 +-1.110000000000000e+00 +-1.052800000000000e+00 +-9.594500000000000e-01 +-8.131900000000000e-01 +-6.107300000000000e-01 +-3.751500000000000e-01 +-1.490000000000000e-01 + 2.860700000000000e-02 + 1.439800000000000e-01 + 2.128500000000000e-01 + 2.636100000000000e-01 + 3.136000000000000e-01 + 3.579100000000000e-01 + 3.794000000000000e-01 + 3.706900000000000e-01 + 3.485800000000000e-01 + 3.475500000000000e-01 + 3.960700000000000e-01 + 4.942700000000000e-01 + 6.106000000000000e-01 + 7.003000000000000e-01 + 7.317100000000000e-01 + 7.010999999999999e-01 + 6.267900000000000e-01 + 5.298400000000000e-01 + 4.178400000000000e-01 + 2.839700000000000e-01 + 1.196700000000000e-01 +-7.105400000000001e-02 +-2.677500000000000e-01 +-4.418900000000000e-01 +-5.697600000000000e-01 +-6.399100000000000e-01 +-6.519100000000000e-01 +-6.106800000000000e-01 +-5.233100000000001e-01 +-4.002600000000000e-01 +-2.574300000000000e-01 +-1.143200000000000e-01 + 1.187900000000000e-02 + 1.112600000000000e-01 + 1.804200000000000e-01 + 2.163700000000000e-01 + 2.116500000000000e-01 + 1.569000000000000e-01 + 5.065600000000000e-02 +-9.135000000000000e-02 +-2.364300000000000e-01 +-3.470300000000000e-01 +-3.976100000000000e-01 +-3.849800000000000e-01 +-3.257700000000000e-01 +-2.441000000000000e-01 +-1.588900000000000e-01 +-7.867300000000001e-02 +-4.318500000000000e-03 + 6.583700000000001e-02 + 1.336000000000000e-01 + 2.011800000000000e-01 + 2.700100000000000e-01 + 3.361100000000000e-01 + 3.855700000000000e-01 + 3.968300000000000e-01 + 3.525700000000000e-01 + 2.548300000000000e-01 + 1.316200000000000e-01 + 2.720300000000000e-02 +-1.998400000000000e-02 + 2.367200000000000e-03 + 7.581700000000000e-02 + 1.648000000000000e-01 + 2.376500000000000e-01 + 2.797300000000000e-01 + 2.912200000000000e-01 + 2.755700000000000e-01 + 2.313200000000000e-01 + 1.549900000000000e-01 + 5.089100000000000e-02 +-6.393000000000000e-02 +-1.669900000000000e-01 +-2.450600000000000e-01 +-3.029800000000000e-01 +-3.569500000000000e-01 +-4.166200000000000e-01 +-4.711000000000000e-01 +-4.930600000000000e-01 +-4.595600000000000e-01 +-3.737400000000000e-01 +-2.683400000000000e-01 +-1.861800000000000e-01 +-1.513200000000000e-01 +-1.529700000000000e-01 +-1.548000000000000e-01 +-1.220500000000000e-01 +-4.544300000000000e-02 + 5.570200000000000e-02 + 1.511300000000000e-01 + 2.218400000000000e-01 + 2.686900000000000e-01 + 3.028300000000000e-01 + 3.295600000000000e-01 + 3.418100000000000e-01 + 3.290400000000000e-01 + 2.921500000000000e-01 + 2.486100000000000e-01 + 2.210600000000000e-01 + 2.184200000000000e-01 + 2.265100000000000e-01 + 2.180000000000000e-01 + 1.747100000000000e-01 + 1.038500000000000e-01 + 3.372300000000000e-02 +-8.462200000000000e-03 +-1.913900000000000e-02 +-2.265400000000000e-02 +-5.313800000000000e-02 +-1.275100000000000e-01 +-2.298800000000000e-01 +-3.183700000000000e-01 +-3.487000000000000e-01 +-2.979900000000000e-01 +-1.747600000000000e-01 +-1.286200000000000e-02 + 1.428000000000000e-01 + 2.496200000000000e-01 + 2.763700000000000e-01 + 2.099800000000000e-01 + 6.092600000000000e-02 +-1.366400000000000e-01 +-3.348300000000000e-01 +-4.910500000000000e-01 +-5.858900000000000e-01 +-6.269100000000000e-01 +-6.338100000000000e-01 +-6.151600000000000e-01 +-5.552100000000000e-01 +-4.233200000000000e-01 +-2.009300000000000e-01 + 9.404500000000000e-02 + 4.053900000000000e-01 + 6.630700000000000e-01 + 8.177200000000000e-01 + 8.612000000000000e-01 + 8.203900000000000e-01 + 7.316900000000000e-01 + 6.173100000000000e-01 + 4.805100000000000e-01 + 3.199200000000000e-01 + 1.473000000000000e-01 +-8.319200000000001e-03 +-1.140700000000000e-01 +-1.530900000000000e-01 +-1.347000000000000e-01 +-8.765600000000000e-02 +-4.329200000000000e-02 +-2.201700000000000e-02 +-3.104100000000000e-02 +-7.003000000000000e-02 +-1.351600000000000e-01 +-2.163400000000000e-01 +-2.921400000000000e-01 +-3.320900000000000e-01 +-3.105500000000000e-01 +-2.247200000000000e-01 +-1.030000000000000e-01 + 5.523800000000000e-03 + 5.592400000000000e-02 + 3.073000000000000e-02 +-5.317000000000000e-02 +-1.573100000000000e-01 +-2.437800000000000e-01 +-2.917800000000000e-01 +-3.006800000000000e-01 +-2.824800000000000e-01 +-2.525900000000000e-01 +-2.248400000000000e-01 +-2.092600000000000e-01 +-2.087300000000000e-01 +-2.139900000000000e-01 +-2.026200000000000e-01 +-1.478300000000000e-01 +-3.544400000000000e-02 + 1.220200000000000e-01 + 2.864900000000000e-01 + 4.135800000000000e-01 + 4.784100000000000e-01 + 4.899000000000000e-01 + 4.824600000000000e-01 + 4.908700000000000e-01 + 5.269300000000000e-01 + 5.747400000000000e-01 + 6.063800000000000e-01 + 6.037600000000000e-01 + 5.684600000000000e-01 + 5.124600000000000e-01 + 4.398700000000000e-01 + 3.371200000000000e-01 + 1.820100000000000e-01 +-3.482400000000000e-02 +-2.935800000000000e-01 +-5.483900000000000e-01 +-7.489400000000001e-01 +-8.653000000000000e-01 +-8.988100000000000e-01 +-8.729800000000000e-01 +-8.136600000000000e-01 +-7.339100000000000e-01 +-6.331400000000000e-01 +-5.071600000000001e-01 +-3.584300000000000e-01 +-1.977400000000000e-01 +-3.813000000000000e-02 + 1.115400000000000e-01 + 2.468900000000000e-01 + 3.632300000000000e-01 + 4.521900000000000e-01 + 5.050800000000000e-01 + 5.208100000000000e-01 + 5.105400000000000e-01 + 4.925600000000000e-01 + 4.788800000000000e-01 + 4.633100000000000e-01 + 4.208500000000000e-01 + 3.211400000000000e-01 + 1.481500000000000e-01 +-8.636099999999999e-02 +-3.438900000000000e-01 +-5.736500000000000e-01 +-7.315300000000000e-01 +-7.935000000000000e-01 +-7.585900000000000e-01 +-6.429100000000000e-01 +-4.701700000000000e-01 +-2.633600000000000e-01 +-4.039600000000000e-02 + 1.862200000000000e-01 + 4.063500000000000e-01 + 6.080300000000000e-01 + 7.748100000000000e-01 + 8.873100000000000e-01 + 9.294200000000000e-01 + 8.957000000000001e-01 + 7.950900000000000e-01 + 6.474700000000000e-01 + 4.750800000000000e-01 + 2.947200000000000e-01 + 1.161100000000000e-01 +-5.350400000000000e-02 +-2.041700000000000e-01 +-3.239100000000000e-01 +-4.062400000000000e-01 +-4.581700000000000e-01 +-5.003100000000000e-01 +-5.561300000000000e-01 +-6.364600000000000e-01 +-7.309000000000000e-01 +-8.129800000000000e-01 +-8.556600000000000e-01 +-8.453600000000000e-01 +-7.840100000000000e-01 +-6.792600000000000e-01 +-5.329400000000000e-01 +-3.399400000000000e-01 +-9.977900000000001e-02 + 1.690500000000000e-01 + 4.261600000000000e-01 + 6.238400000000000e-01 + 7.304300000000000e-01 + 7.455000000000001e-01 + 6.950499999999999e-01 + 6.105900000000000e-01 + 5.087100000000000e-01 + 3.873800000000000e-01 + 2.411000000000000e-01 + 8.094200000000000e-02 +-5.918000000000000e-02 +-1.373400000000000e-01 +-1.293600000000000e-01 +-4.529600000000000e-02 + 7.675400000000000e-02 + 1.950800000000000e-01 + 2.881800000000000e-01 + 3.597200000000000e-01 + 4.223700000000000e-01 + 4.753400000000000e-01 + 4.961700000000000e-01 + 4.551800000000000e-01 + 3.420400000000000e-01 + 1.827300000000000e-01 + 3.099700000000000e-02 +-6.251200000000000e-02 +-8.294300000000000e-02 +-6.289800000000000e-02 +-6.419800000000001e-02 +-1.413100000000000e-01 +-3.098500000000000e-01 +-5.390900000000000e-01 +-7.708900000000000e-01 +-9.505200000000000e-01 +-1.049700000000000e+00 +-1.070100000000000e+00 +-1.028800000000000e+00 +-9.404800000000000e-01 +-8.077800000000001e-01 +-6.262600000000000e-01 +-3.973000000000000e-01 +-1.385000000000000e-01 + 1.169700000000000e-01 + 3.322900000000000e-01 + 4.831400000000000e-01 + 5.679500000000000e-01 + 6.066100000000000e-01 + 6.286000000000000e-01 + 6.576200000000000e-01 + 7.013800000000000e-01 + 7.508500000000000e-01 + 7.877000000000000e-01 + 7.942500000000000e-01 + 7.604600000000000e-01 + 6.857400000000000e-01 + 5.775000000000000e-01 + 4.491200000000000e-01 + 3.179900000000000e-01 + 2.021600000000000e-01 + 1.139700000000000e-01 + 5.278400000000000e-02 + 2.006200000000000e-03 +-6.473500000000000e-02 +-1.689800000000000e-01 +-3.123300000000000e-01 +-4.712400000000000e-01 +-6.071900000000000e-01 +-6.870000000000001e-01 +-7.005000000000000e-01 +-6.637500000000000e-01 +-6.059300000000000e-01 +-5.499000000000001e-01 +-5.005400000000000e-01 +-4.483900000000000e-01 +-3.835100000000000e-01 +-3.068200000000000e-01 +-2.291200000000000e-01 +-1.592300000000000e-01 +-9.324100000000000e-02 +-1.613300000000000e-02 + 8.343700000000000e-02 + 1.972200000000000e-01 + 2.952700000000000e-01 + 3.427500000000000e-01 + 3.251600000000000e-01 + 2.629800000000000e-01 + 2.029700000000000e-01 + 1.903100000000000e-01 + 2.404900000000000e-01 + 3.306000000000000e-01 + 4.158400000000000e-01 + 4.587200000000000e-01 + 4.499300000000000e-01 + 4.074900000000000e-01 + 3.574600000000000e-01 + 3.127900000000000e-01 + 2.664000000000000e-01 + 2.018000000000000e-01 + 1.103700000000000e-01 + 2.812100000000000e-04 +-1.099800000000000e-01 +-2.068800000000000e-01 +-2.924000000000000e-01 +-3.804500000000000e-01 +-4.818100000000000e-01 +-5.897200000000000e-01 +-6.778900000000000e-01 +-7.128500000000000e-01 +-6.720100000000000e-01 +-5.548600000000000e-01 +-3.806500000000000e-01 +-1.760700000000000e-01 + 3.697900000000000e-02 + 2.450500000000000e-01 + 4.376800000000000e-01 + 5.994699999999999e-01 + 7.078400000000000e-01 + 7.398800000000000e-01 + 6.840800000000000e-01 + 5.489600000000000e-01 + 3.624400000000000e-01 + 1.617800000000000e-01 +-2.020500000000000e-02 +-1.648700000000000e-01 +-2.687700000000000e-01 +-3.368100000000000e-01 +-3.730400000000000e-01 +-3.754300000000000e-01 +-3.380700000000000e-01 +-2.589100000000000e-01 +-1.471900000000000e-01 +-2.493400000000000e-02 + 7.984600000000000e-02 + 1.444100000000000e-01 + 1.604600000000000e-01 + 1.354300000000000e-01 + 8.566600000000001e-02 + 2.631400000000000e-02 +-3.490200000000000e-02 +-9.641200000000000e-02 +-1.561700000000000e-01 +-2.058400000000000e-01 +-2.311000000000000e-01 +-2.182500000000000e-01 +-1.622500000000000e-01 +-7.044200000000000e-02 + 4.025900000000000e-02 + 1.498400000000000e-01 + 2.404900000000000e-01 + 2.982800000000000e-01 + 3.132100000000000e-01 + 2.809600000000000e-01 + 2.072300000000000e-01 + 1.106400000000000e-01 + 1.883100000000000e-02 +-4.353700000000000e-02 +-6.880799999999999e-02 +-7.215600000000000e-02 +-8.286200000000001e-02 +-1.246600000000000e-01 +-1.977100000000000e-01 +-2.753100000000000e-01 +-3.185800000000000e-01 +-2.999000000000000e-01 +-2.190000000000000e-01 +-1.009600000000000e-01 + 2.151500000000000e-02 + 1.282800000000000e-01 + 2.199000000000000e-01 + 3.094500000000000e-01 + 4.057500000000000e-01 + 5.015700000000000e-01 + 5.748700000000000e-01 + 6.007100000000000e-01 + 5.636800000000000e-01 + 4.624400000000000e-01 + 3.058700000000000e-01 + 1.074700000000000e-01 +-1.159800000000000e-01 +-3.412700000000000e-01 +-5.377999999999999e-01 +-6.743700000000000e-01 +-7.322800000000000e-01 +-7.156100000000000e-01 +-6.496900000000000e-01 +-5.663700000000000e-01 +-4.856100000000000e-01 +-4.063400000000000e-01 +-3.130900000000000e-01 +-1.927700000000000e-01 +-4.829800000000000e-02 + 1.012200000000000e-01 + 2.325900000000000e-01 + 3.317500000000000e-01 + 3.965500000000000e-01 + 4.278900000000000e-01 + 4.190200000000000e-01 + 3.555200000000000e-01 + 2.295300000000000e-01 + 5.773300000000000e-02 +-1.132100000000000e-01 +-2.229400000000000e-01 +-2.278300000000000e-01 +-1.256200000000000e-01 + 4.359600000000000e-02 + 2.217300000000000e-01 + 3.658600000000000e-01 + 4.674200000000000e-01 + 5.450700000000001e-01 + 6.188900000000001e-01 + 6.865800000000000e-01 + 7.201100000000000e-01 + 6.841699999999999e-01 + 5.612500000000000e-01 + 3.637700000000000e-01 + 1.249200000000000e-01 +-1.227700000000000e-01 +-3.631700000000000e-01 +-5.945300000000000e-01 +-8.134800000000000e-01 +-1.000700000000000e+00 +-1.122800000000000e+00 +-1.150400000000000e+00 +-1.079000000000000e+00 +-9.353000000000000e-01 +-7.624500000000000e-01 +-5.946600000000000e-01 +-4.396300000000000e-01 +-2.814000000000000e-01 +-1.000900000000000e-01 + 1.073700000000000e-01 + 3.216200000000000e-01 + 5.132200000000000e-01 + 6.619100000000000e-01 + 7.665000000000000e-01 + 8.381200000000000e-01 + 8.837800000000000e-01 + 8.952800000000000e-01 + 8.541000000000000e-01 + 7.490599999999999e-01 + 5.924400000000000e-01 + 4.208900000000000e-01 + 2.784700000000000e-01 + 1.931500000000000e-01 + 1.625100000000000e-01 + 1.574000000000000e-01 + 1.392600000000000e-01 + 7.850000000000000e-02 +-3.684000000000000e-02 +-2.033100000000000e-01 +-4.081900000000000e-01 +-6.320400000000000e-01 +-8.468200000000000e-01 +-1.015900000000000e+00 +-1.101700000000000e+00 +-1.080500000000000e+00 +-9.553100000000000e-01 +-7.566400000000000e-01 +-5.291700000000000e-01 +-3.115600000000000e-01 +-1.225200000000000e-01 + 3.906100000000000e-02 + 1.824900000000000e-01 + 3.128200000000000e-01 + 4.270500000000000e-01 + 5.197600000000000e-01 + 5.908600000000001e-01 + 6.466800000000000e-01 + 6.928299999999999e-01 + 7.259600000000000e-01 + 7.331800000000001e-01 + 7.017300000000000e-01 + 6.314900000000000e-01 + 5.392600000000000e-01 + 4.493200000000000e-01 + 3.761800000000000e-01 + 3.129900000000000e-01 + 2.357600000000000e-01 + 1.215300000000000e-01 +-3.256200000000000e-02 +-2.038000000000000e-01 +-3.565400000000000e-01 +-4.636300000000000e-01 +-5.211800000000000e-01 +-5.465500000000000e-01 +-5.629300000000000e-01 +-5.835399999999999e-01 +-6.072200000000000e-01 +-6.265900000000000e-01 +-6.389600000000000e-01 +-6.483800000000000e-01 +-6.565400000000000e-01 +-6.511200000000000e-01 +-6.051000000000000e-01 +-4.917100000000000e-01 +-3.065900000000000e-01 +-8.014800000000000e-02 + 1.322500000000000e-01 + 2.787100000000000e-01 + 3.404400000000000e-01 + 3.423300000000000e-01 + 3.368100000000000e-01 + 3.715900000000000e-01 + 4.625800000000000e-01 + 5.893900000000000e-01 + 7.142900000000000e-01 + 8.096300000000000e-01 + 8.735000000000001e-01 + 9.235100000000001e-01 + 9.743700000000000e-01 + 1.016800000000000e+00 + 1.013900000000000e+00 + 9.177600000000000e-01 + 6.971700000000000e-01 + 3.578000000000000e-01 +-5.616800000000000e-02 +-4.792900000000000e-01 +-8.497300000000000e-01 +-1.127800000000000e+00 +-1.299700000000000e+00 +-1.368100000000000e+00 +-1.339400000000000e+00 +-1.216600000000000e+00 +-1.003700000000000e+00 +-7.166600000000000e-01 +-3.922000000000000e-01 +-8.553900000000000e-02 + 1.448200000000000e-01 + 2.594400000000000e-01 + 2.554700000000000e-01 + 1.693100000000000e-01 + 6.144500000000000e-02 +-9.172600000000000e-03 +-8.342900000000000e-03 + 6.400100000000000e-02 + 1.812100000000000e-01 + 3.075200000000000e-01 + 4.143900000000000e-01 + 4.871600000000000e-01 + 5.216300000000000e-01 + 5.169300000000000e-01 + 4.723300000000000e-01 + 3.905000000000000e-01 + 2.829800000000000e-01 + 1.712300000000000e-01 + 7.987700000000000e-02 + 2.523300000000000e-02 + 6.871100000000000e-03 + 7.980400000000000e-03 + 4.550300000000000e-03 +-2.252000000000000e-02 +-7.947400000000000e-02 +-1.592100000000000e-01 +-2.462900000000000e-01 +-3.228700000000000e-01 +-3.725100000000000e-01 +-3.821200000000000e-01 +-3.438400000000000e-01 +-2.578000000000000e-01 +-1.338700000000000e-01 + 9.861500000000000e-03 + 1.516500000000000e-01 + 2.713400000000000e-01 + 3.528600000000000e-01 + 3.839900000000000e-01 + 3.564000000000000e-01 + 2.693800000000000e-01 + 1.362500000000000e-01 +-1.246600000000000e-02 +-1.357000000000000e-01 +-1.988100000000000e-01 +-1.923100000000000e-01 +-1.394900000000000e-01 +-8.540000000000000e-02 +-7.179000000000001e-02 +-1.135400000000000e-01 +-1.917900000000000e-01 +-2.678700000000000e-01 +-3.075700000000000e-01 +-2.983800000000000e-01 +-2.491800000000000e-01 +-1.759800000000000e-01 +-8.790400000000000e-02 + 1.428300000000000e-02 + 1.271500000000000e-01 + 2.332900000000000e-01 + 3.030500000000000e-01 + 3.112100000000000e-01 + 2.567300000000000e-01 + 1.687800000000000e-01 + 9.181800000000000e-02 + 5.910800000000000e-02 + 7.356900000000000e-02 + 1.098200000000000e-01 + 1.349600000000000e-01 + 1.314400000000000e-01 + 1.049500000000000e-01 + 7.311900000000000e-02 + 4.687500000000000e-02 + 2.111500000000000e-02 +-1.776200000000000e-02 +-7.530199999999999e-02 +-1.391100000000000e-01 +-1.852100000000000e-01 +-1.954200000000000e-01 +-1.707100000000000e-01 +-1.284700000000000e-01 +-8.614900000000000e-02 +-4.562800000000000e-02 + 7.247900000000000e-03 + 8.665700000000000e-02 + 1.874400000000000e-01 + 2.792300000000000e-01 + 3.204000000000000e-01 + 2.822800000000000e-01 + 1.660900000000000e-01 + 1.268400000000000e-03 +-1.715000000000000e-01 +-3.184200000000000e-01 +-4.199800000000000e-01 +-4.669400000000000e-01 +-4.544300000000000e-01 +-3.831000000000000e-01 +-2.664200000000000e-01 +-1.341300000000000e-01 +-2.280200000000000e-02 + 4.379300000000000e-02 + 7.056300000000000e-02 + 8.883800000000000e-02 + 1.344000000000000e-01 + 2.203500000000000e-01 + 3.250700000000000e-01 + 4.052300000000000e-01 + 4.248000000000000e-01 + 3.790200000000000e-01 + 2.960300000000000e-01 + 2.162400000000000e-01 + 1.657900000000000e-01 + 1.432300000000000e-01 + 1.266500000000000e-01 + 9.261500000000000e-02 + 3.111400000000000e-02 +-5.277100000000000e-02 +-1.472400000000000e-01 +-2.415300000000000e-01 +-3.261700000000000e-01 +-3.885800000000000e-01 +-4.127400000000000e-01 +-3.870400000000000e-01 +-3.153100000000000e-01 +-2.199000000000000e-01 +-1.312800000000000e-01 +-7.013500000000000e-02 +-3.570300000000000e-02 +-1.016200000000000e-02 + 2.439300000000000e-02 + 7.065600000000000e-02 + 1.155700000000000e-01 + 1.446400000000000e-01 + 1.576500000000000e-01 + 1.705900000000000e-01 + 2.003900000000000e-01 + 2.453200000000000e-01 + 2.790900000000000e-01 + 2.665800000000000e-01 + 1.905100000000000e-01 + 6.814300000000000e-02 +-5.660700000000000e-02 +-1.409000000000000e-01 +-1.696500000000000e-01 +-1.608900000000000e-01 +-1.465200000000000e-01 +-1.445100000000000e-01 +-1.451800000000000e-01 +-1.219000000000000e-01 +-5.648400000000000e-02 + 4.203400000000000e-02 + 1.405400000000000e-01 + 2.039900000000000e-01 + 2.183000000000000e-01 + 1.963500000000000e-01 + 1.635300000000000e-01 + 1.360200000000000e-01 + 1.095400000000000e-01 + 6.629400000000001e-02 +-7.480700000000000e-03 +-1.087900000000000e-01 +-2.196200000000000e-01 +-3.196200000000000e-01 +-3.972300000000000e-01 +-4.493200000000000e-01 +-4.712600000000000e-01 +-4.482700000000000e-01 +-3.589400000000000e-01 +-1.908000000000000e-01 + 4.300800000000000e-02 + 2.995600000000000e-01 + 5.197700000000000e-01 + 6.525100000000000e-01 + 6.750400000000000e-01 + 5.985200000000001e-01 + 4.576200000000000e-01 + 2.924200000000000e-01 + 1.331100000000000e-01 +-6.184200000000000e-03 +-1.248400000000000e-01 +-2.286300000000000e-01 +-3.221400000000000e-01 +-4.031700000000000e-01 +-4.604200000000000e-01 +-4.759700000000000e-01 +-4.325300000000000e-01 +-3.236000000000000e-01 +-1.610300000000000e-01 + 2.513600000000000e-02 + 1.961500000000000e-01 + 3.191600000000000e-01 + 3.790400000000000e-01 + 3.812300000000000e-01 + 3.448800000000000e-01 + 2.913300000000000e-01 + 2.349600000000000e-01 + 1.800900000000000e-01 + 1.235000000000000e-01 + 5.887900000000000e-02 +-1.935300000000000e-02 +-1.134100000000000e-01 +-2.198200000000000e-01 +-3.276900000000000e-01 +-4.193200000000000e-01 +-4.746900000000000e-01 +-4.790300000000000e-01 +-4.291700000000000e-01 +-3.345400000000000e-01 +-2.116500000000000e-01 +-7.578000000000000e-02 + 6.439599999999999e-02 + 2.053400000000000e-01 + 3.420700000000000e-01 + 4.620300000000000e-01 + 5.453200000000000e-01 + 5.719600000000000e-01 + 5.322300000000000e-01 + 4.331800000000000e-01 + 2.969800000000000e-01 + 1.519300000000000e-01 + 2.113200000000000e-02 +-8.520400000000000e-02 +-1.704700000000000e-01 +-2.460300000000000e-01 +-3.226800000000000e-01 +-4.032100000000000e-01 +-4.791700000000000e-01 +-5.326500000000000e-01 +-5.424600000000001e-01 +-4.921900000000000e-01 +-3.771000000000000e-01 +-2.072300000000000e-01 +-5.477600000000000e-03 + 1.984700000000000e-01 + 3.758500000000000e-01 + 5.053400000000000e-01 + 5.765000000000000e-01 + 5.898700000000000e-01 + 5.543800000000000e-01 + 4.833900000000000e-01 + 3.907000000000000e-01 + 2.875400000000000e-01 + 1.816600000000000e-01 + 7.815900000000001e-02 +-1.875900000000000e-02 +-1.052000000000000e-01 +-1.788600000000000e-01 +-2.411500000000000e-01 +-2.975900000000000e-01 +-3.546500000000000e-01 +-4.139100000000000e-01 +-4.678700000000000e-01 +-5.014999999999999e-01 +-5.001400000000000e-01 +-4.588300000000000e-01 +-3.862800000000000e-01 +-2.993100000000000e-01 +-2.112900000000000e-01 +-1.232200000000000e-01 +-2.514100000000000e-02 + 9.206000000000000e-02 + 2.232300000000000e-01 + 3.450000000000000e-01 + 4.261600000000000e-01 + 4.463800000000000e-01 + 4.101200000000000e-01 + 3.453100000000000e-01 + 2.872500000000000e-01 + 2.585900000000000e-01 + 2.589800000000000e-01 + 2.700100000000000e-01 + 2.702200000000000e-01 + 2.482700000000000e-01 + 2.057400000000000e-01 + 1.504000000000000e-01 + 8.794600000000000e-02 + 1.987000000000000e-02 +-5.193000000000000e-02 +-1.198100000000000e-01 +-1.709600000000000e-01 +-1.945200000000000e-01 +-1.894700000000000e-01 +-1.663100000000000e-01 +-1.408100000000000e-01 +-1.253200000000000e-01 +-1.244800000000000e-01 +-1.380400000000000e-01 +-1.662600000000000e-01 +-2.109600000000000e-01 +-2.700100000000000e-01 +-3.305300000000000e-01 +-3.689800000000000e-01 +-3.618700000000000e-01 +-3.009200000000000e-01 +-2.012700000000000e-01 +-9.488400000000000e-02 +-1.226700000000000e-02 + 3.475400000000000e-02 + 5.689600000000000e-02 + 7.548800000000000e-02 + 1.046100000000000e-01 + 1.414300000000000e-01 + 1.718100000000000e-01 + 1.854600000000000e-01 + 1.872600000000000e-01 + 1.949100000000000e-01 + 2.245200000000000e-01 + 2.764800000000000e-01 + 3.334100000000000e-01 + 3.723600000000000e-01 + 3.811800000000000e-01 + 3.657500000000000e-01 + 3.417400000000000e-01 + 3.177900000000000e-01 + 2.839900000000000e-01 + 2.161900000000000e-01 + 9.429300000000000e-02 +-7.853800000000000e-02 +-2.699500000000000e-01 +-4.311200000000000e-01 +-5.205000000000000e-01 +-5.237200000000000e-01 +-4.579800000000000e-01 +-3.594800000000000e-01 +-2.631600000000000e-01 +-1.870300000000000e-01 +-1.292800000000000e-01 +-7.728000000000000e-02 +-2.123400000000000e-02 + 3.652500000000000e-02 + 8.151000000000000e-02 + 9.555000000000000e-02 + 6.828400000000000e-02 + 4.999600000000000e-03 +-7.364700000000000e-02 +-1.401500000000000e-01 +-1.725500000000000e-01 +-1.641100000000000e-01 +-1.248300000000000e-01 +-7.391499999999999e-02 +-2.739600000000000e-02 + 1.169800000000000e-02 + 5.472600000000000e-02 + 1.195100000000000e-01 + 2.178200000000000e-01 + 3.456500000000000e-01 + 4.814800000000000e-01 + 5.932200000000000e-01 + 6.494500000000000e-01 + 6.297400000000000e-01 + 5.301500000000000e-01 + 3.632800000000000e-01 + 1.541800000000000e-01 +-6.617800000000000e-02 +-2.684300000000000e-01 +-4.320000000000000e-01 +-5.495100000000001e-01 +-6.262500000000000e-01 +-6.740500000000000e-01 +-7.020600000000000e-01 +-7.095000000000000e-01 +-6.847100000000000e-01 +-6.117500000000000e-01 +-4.806800000000000e-01 +-2.955500000000000e-01 +-7.524699999999999e-02 + 1.531300000000000e-01 + 3.643100000000000e-01 + 5.423500000000000e-01 + 6.820400000000000e-01 + 7.843700000000000e-01 + 8.498200000000000e-01 + 8.740900000000000e-01 + 8.485900000000000e-01 + 7.649500000000000e-01 + 6.208500000000000e-01 + 4.236700000000000e-01 + 1.904200000000000e-01 +-5.578500000000000e-02 +-2.909000000000000e-01 +-4.946300000000000e-01 +-6.532100000000000e-01 +-7.600500000000000e-01 +-8.146700000000000e-01 +-8.205800000000000e-01 +-7.827800000000000e-01 +-7.053300000000000e-01 +-5.900900000000000e-01 +-4.373600000000000e-01 +-2.488000000000000e-01 +-3.163900000000000e-02 + 1.982400000000000e-01 + 4.166900000000000e-01 + 5.958900000000000e-01 + 7.113100000000000e-01 + 7.474000000000000e-01 + 6.997400000000000e-01 + 5.736300000000000e-01 + 3.822000000000000e-01 + 1.464600000000000e-01 +-1.033200000000000e-01 +-3.288200000000000e-01 +-4.912700000000000e-01 +-5.647100000000000e-01 +-5.478600000000000e-01 +-4.657300000000000e-01 +-3.569100000000000e-01 +-2.526100000000000e-01 +-1.606500000000000e-01 +-6.598600000000000e-02 + 5.149100000000000e-02 + 1.945500000000000e-01 + 3.386900000000000e-01 + 4.437300000000000e-01 + 4.800200000000000e-01 + 4.502800000000000e-01 + 3.901800000000000e-01 + 3.459500000000000e-01 + 3.443200000000000e-01 + 3.765400000000000e-01 + 4.077700000000000e-01 + 4.040200000000000e-01 + 3.558600000000000e-01 + 2.808100000000000e-01 + 2.038200000000000e-01 + 1.321100000000000e-01 + 4.567600000000000e-02 +-8.827900000000000e-02 +-2.872500000000000e-01 +-5.332200000000000e-01 +-7.759800000000000e-01 +-9.579400000000000e-01 +-1.043000000000000e+00 +-1.030400000000000e+00 +-9.456100000000000e-01 +-8.200600000000000e-01 +-6.734400000000000e-01 +-5.117699999999999e-01 +-3.371100000000000e-01 +-1.576000000000000e-01 + 1.204400000000000e-02 + 1.595300000000000e-01 + 2.841500000000000e-01 + 3.972400000000000e-01 + 5.126500000000001e-01 + 6.349399999999999e-01 + 7.545400000000000e-01 + 8.529200000000000e-01 + 9.125400000000000e-01 + 9.235400000000000e-01 + 8.831400000000000e-01 + 7.914500000000000e-01 + 6.501600000000000e-01 + 4.670900000000000e-01 + 2.622900000000000e-01 + 6.827400000000000e-02 +-7.984500000000000e-02 +-1.598700000000000e-01 +-1.740800000000000e-01 +-1.486900000000000e-01 +-1.213800000000000e-01 +-1.247900000000000e-01 +-1.755300000000000e-01 +-2.729800000000000e-01 +-4.048300000000000e-01 +-5.530100000000000e-01 +-6.962900000000000e-01 +-8.112500000000000e-01 +-8.754700000000000e-01 +-8.741500000000000e-01 +-8.065600000000001e-01 +-6.865500000000000e-01 +-5.352200000000000e-01 +-3.698600000000000e-01 +-1.973700000000000e-01 +-1.699000000000000e-02 + 1.699300000000000e-01 + 3.515600000000000e-01 + 5.062300000000000e-01 + 6.125300000000000e-01 + 6.617800000000000e-01 + 6.633400000000000e-01 + 6.387699999999999e-01 + 6.091200000000000e-01 + 5.845600000000000e-01 + 5.627200000000000e-01 + 5.349500000000000e-01 + 4.935000000000000e-01 + 4.334700000000000e-01 + 3.493500000000000e-01 + 2.322000000000000e-01 + 7.369400000000000e-02 +-1.232300000000000e-01 +-3.348900000000000e-01 +-5.185400000000000e-01 +-6.287000000000000e-01 +-6.406100000000000e-01 +-5.663500000000000e-01 +-4.514700000000000e-01 +-3.522800000000000e-01 +-3.061700000000000e-01 +-3.129400000000000e-01 +-3.382800000000000e-01 +-3.364700000000000e-01 +-2.774000000000000e-01 +-1.614200000000000e-01 +-1.425800000000000e-02 + 1.317800000000000e-01 + 2.562100000000000e-01 + 3.559100000000000e-01 + 4.363100000000000e-01 + 4.971400000000000e-01 + 5.255200000000000e-01 + 5.023900000000000e-01 + 4.177000000000000e-01 + 2.824200000000000e-01 + 1.274700000000000e-01 +-1.080700000000000e-02 +-1.089100000000000e-01 +-1.654500000000000e-01 +-1.955600000000000e-01 +-2.151300000000000e-01 +-2.274200000000000e-01 +-2.220400000000000e-01 +-1.869400000000000e-01 +-1.234600000000000e-01 +-5.208700000000000e-02 +-3.241100000000000e-03 + 1.164000000000000e-03 +-3.774700000000000e-02 +-9.579500000000001e-02 +-1.405500000000000e-01 +-1.506500000000000e-01 +-1.264400000000000e-01 +-8.550900000000000e-02 +-4.761100000000000e-02 +-2.083900000000000e-02 + 1.360000000000000e-03 + 3.158600000000000e-02 + 7.633500000000000e-02 + 1.301600000000000e-01 + 1.799600000000000e-01 + 2.146700000000000e-01 + 2.315800000000000e-01 + 2.339500000000000e-01 + 2.227800000000000e-01 + 1.908500000000000e-01 + 1.259100000000000e-01 + 2.207700000000000e-02 +-1.085600000000000e-01 +-2.339900000000000e-01 +-3.134100000000000e-01 +-3.161000000000000e-01 +-2.370700000000000e-01 +-1.003700000000000e-01 + 5.124300000000000e-02 + 1.741200000000000e-01 + 2.393700000000000e-01 + 2.398800000000000e-01 + 1.878000000000000e-01 + 1.061400000000000e-01 + 1.941900000000000e-02 +-5.346500000000000e-02 +-1.028200000000000e-01 +-1.280800000000000e-01 +-1.346100000000000e-01 +-1.286800000000000e-01 +-1.132600000000000e-01 +-8.746900000000001e-02 +-5.025300000000000e-02 +-5.901500000000000e-03 + 3.350400000000000e-02 + 5.203400000000000e-02 + 3.895700000000000e-02 +-3.026400000000000e-03 +-5.686500000000000e-02 +-9.938600000000000e-02 +-1.137600000000000e-01 +-9.761700000000000e-02 +-6.124800000000000e-02 +-1.750000000000000e-02 + 2.831400000000000e-02 + 8.038400000000000e-02 + 1.446800000000000e-01 + 2.180800000000000e-01 + 2.838600000000000e-01 + 3.183400000000000e-01 + 3.045700000000000e-01 + 2.430000000000000e-01 + 1.512300000000000e-01 + 5.301900000000000e-02 +-3.524600000000000e-02 +-1.110200000000000e-01 +-1.816800000000000e-01 +-2.548600000000000e-01 +-3.313600000000000e-01 +-4.050800000000000e-01 +-4.676500000000000e-01 +-5.113799999999999e-01 +-5.274500000000000e-01 +-5.022300000000000e-01 +-4.188400000000000e-01 +-2.667400000000000e-01 +-5.452700000000000e-02 + 1.849700000000000e-01 + 4.044400000000000e-01 + 5.633600000000000e-01 + 6.472400000000000e-01 + 6.712300000000000e-01 + 6.647100000000000e-01 + 6.479300000000000e-01 + 6.180300000000000e-01 + 5.546900000000000e-01 + 4.407200000000000e-01 + 2.812300000000000e-01 + 1.061300000000000e-01 +-4.598300000000000e-02 +-1.501600000000000e-01 +-2.069300000000000e-01 +-2.360100000000000e-01 +-2.588600000000000e-01 +-2.851500000000000e-01 +-3.132800000000000e-01 +-3.416900000000000e-01 +-3.782300000000000e-01 +-4.364100000000000e-01 +-5.202400000000000e-01 +-6.107500000000000e-01 +-6.682200000000000e-01 +-6.523700000000000e-01 +-5.477600000000000e-01 +-3.758900000000000e-01 +-1.841800000000000e-01 +-1.868200000000000e-02 + 1.009400000000000e-01 + 1.873600000000000e-01 + 2.696600000000000e-01 + 3.682700000000000e-01 + 4.781400000000000e-01 + 5.708400000000000e-01 + 6.117400000000000e-01 + 5.800500000000000e-01 + 4.793300000000000e-01 + 3.349600000000000e-01 + 1.829000000000000e-01 + 5.718700000000000e-02 +-1.930800000000000e-02 +-3.961600000000000e-02 +-1.348200000000000e-02 + 3.626600000000000e-02 + 8.210099999999999e-02 + 1.027800000000000e-01 + 9.161999999999999e-02 + 5.690500000000000e-02 + 1.382400000000000e-02 +-2.624300000000000e-02 +-6.108300000000000e-02 +-9.388400000000000e-02 +-1.244900000000000e-01 +-1.444800000000000e-01 +-1.418200000000000e-01 +-1.120800000000000e-01 +-6.610700000000000e-02 +-2.586900000000000e-02 +-9.366100000000000e-03 +-1.580400000000000e-02 +-2.366400000000000e-02 +-5.316200000000000e-03 + 5.128400000000000e-02 + 1.298500000000000e-01 + 1.923600000000000e-01 + 2.013400000000000e-01 + 1.426600000000000e-01 + 3.340300000000000e-02 +-8.987900000000000e-02 +-1.932300000000000e-01 +-2.626800000000000e-01 +-3.069600000000000e-01 +-3.469400000000000e-01 +-4.015300000000000e-01 +-4.791200000000000e-01 +-5.769000000000000e-01 +-6.837200000000000e-01 +-7.814600000000000e-01 +-8.445800000000000e-01 +-8.419300000000000e-01 +-7.447000000000000e-01 +-5.389600000000000e-01 +-2.362400000000000e-01 + 1.251500000000000e-01 + 4.902000000000000e-01 + 8.042100000000000e-01 + 1.028900000000000e+00 + 1.151500000000000e+00 + 1.185000000000000e+00 + 1.161000000000000e+00 + 1.118400000000000e+00 + 1.090400000000000e+00 + 1.092500000000000e+00 + 1.116700000000000e+00 + 1.134900000000000e+00 + 1.112200000000000e+00 + 1.022800000000000e+00 + 8.597700000000000e-01 + 6.337600000000000e-01 + 3.608800000000000e-01 + 5.125300000000000e-02 +-2.930800000000000e-01 +-6.687200000000000e-01 +-1.058200000000000e+00 +-1.425500000000000e+00 +-1.726400000000000e+00 +-1.926500000000000e+00 +-2.016200000000000e+00 +-2.009600000000000e+00 +-1.930500000000000e+00 +-1.795400000000000e+00 +-1.607000000000000e+00 +-1.361100000000000e+00 +-1.060800000000000e+00 +-7.241000000000000e-01 +-3.785800000000000e-01 +-4.793500000000000e-02 + 2.591600000000000e-01 + 5.485700000000000e-01 + 8.297400000000000e-01 + 1.103500000000000e+00 + 1.357800000000000e+00 + 1.573500000000000e+00 + 1.733200000000000e+00 + 1.826100000000000e+00 + 1.845900000000000e+00 + 1.786600000000000e+00 + 1.643400000000000e+00 + 1.419000000000000e+00 + 1.131300000000000e+00 + 8.125599999999999e-01 + 4.994700000000000e-01 + 2.192400000000000e-01 +-1.804900000000000e-02 +-2.155500000000000e-01 +-3.781200000000000e-01 +-5.033900000000000e-01 +-5.833500000000000e-01 +-6.149700000000000e-01 +-6.104200000000000e-01 +-5.974100000000000e-01 +-6.077700000000000e-01 +-6.621800000000000e-01 +-7.614300000000001e-01 +-8.893000000000000e-01 +-1.022600000000000e+00 +-1.139800000000000e+00 +-1.221800000000000e+00 +-1.249300000000000e+00 +-1.201400000000000e+00 +-1.063100000000000e+00 +-8.365700000000000e-01 +-5.483700000000000e-01 +-2.437300000000000e-01 + 3.039000000000000e-02 + 2.444200000000000e-01 + 3.956900000000000e-01 + 5.033800000000000e-01 + 5.935200000000000e-01 + 6.844200000000000e-01 + 7.807100000000000e-01 + 8.763900000000000e-01 + 9.614400000000000e-01 + 1.025900000000000e+00 + 1.059600000000000e+00 + 1.051900000000000e+00 + 9.930300000000000e-01 + 8.797199999999999e-01 + 7.196500000000000e-01 + 5.309300000000000e-01 + 3.362500000000000e-01 + 1.553200000000000e-01 + 4.701900000000000e-04 +-1.228400000000000e-01 +-2.132200000000000e-01 +-2.724500000000000e-01 +-3.077600000000000e-01 +-3.345000000000000e-01 +-3.741200000000000e-01 +-4.456800000000000e-01 +-5.544100000000000e-01 +-6.847400000000000e-01 +-8.036700000000000e-01 +-8.739100000000000e-01 +-8.701400000000000e-01 +-7.894400000000000e-01 +-6.504799999999999e-01 +-4.831300000000000e-01 +-3.150400000000000e-01 +-1.624100000000000e-01 +-2.842600000000000e-02 + 9.183400000000000e-02 + 2.042600000000000e-01 + 3.103400000000000e-01 + 4.052900000000000e-01 + 4.795400000000000e-01 + 5.222000000000000e-01 + 5.252000000000000e-01 + 4.870600000000000e-01 + 4.148100000000000e-01 + 3.232300000000000e-01 + 2.308200000000000e-01 + 1.538300000000000e-01 + 1.006100000000000e-01 + 6.929600000000000e-02 + 5.005800000000000e-02 + 3.124100000000000e-02 + 6.427300000000000e-03 +-2.126300000000000e-02 +-4.026300000000000e-02 +-3.700100000000000e-02 +-4.727800000000000e-03 + 5.005200000000000e-02 + 1.076800000000000e-01 + 1.429500000000000e-01 + 1.368500000000000e-01 + 8.611500000000000e-02 + 4.730700000000000e-03 +-8.403600000000000e-02 +-1.607300000000000e-01 +-2.198500000000000e-01 +-2.703000000000000e-01 +-3.257300000000000e-01 +-3.908100000000000e-01 +-4.531500000000000e-01 +-4.866200000000000e-01 +-4.647800000000000e-01 +-3.759800000000000e-01 +-2.306500000000000e-01 +-5.675800000000000e-02 + 1.128800000000000e-01 + 2.528600000000000e-01 + 3.501600000000000e-01 + 4.014700000000000e-01 + 4.082400000000000e-01 + 3.753700000000000e-01 + 3.144000000000000e-01 + 2.462700000000000e-01 + 1.973400000000000e-01 + 1.874300000000000e-01 + 2.163000000000000e-01 + 2.589200000000000e-01 + 2.755400000000000e-01 + 2.325300000000000e-01 + 1.218200000000000e-01 +-3.392300000000000e-02 +-1.935700000000000e-01 +-3.193200000000000e-01 +-3.935600000000000e-01 +-4.208700000000000e-01 +-4.167400000000000e-01 +-3.935800000000000e-01 +-3.550800000000000e-01 +-3.013800000000000e-01 +-2.375200000000000e-01 +-1.751300000000000e-01 +-1.239300000000000e-01 +-8.051100000000000e-02 +-2.617600000000000e-02 + 6.082800000000000e-02 + 1.857200000000000e-01 + 3.259100000000000e-01 + 4.395200000000000e-01 + 4.907600000000000e-01 + 4.745900000000000e-01 + 4.218000000000000e-01 + 3.782200000000000e-01 + 3.714500000000000e-01 + 3.887100000000000e-01 + 3.824600000000000e-01 + 3.008700000000000e-01 + 1.224700000000000e-01 +-1.285500000000000e-01 +-3.953900000000000e-01 +-6.190099999999999e-01 +-7.644700000000000e-01 +-8.273100000000000e-01 +-8.208800000000001e-01 +-7.587100000000000e-01 +-6.465600000000000e-01 +-4.873000000000000e-01 +-2.903100000000000e-01 +-7.404800000000000e-02 + 1.408500000000000e-01 + 3.407600000000000e-01 + 5.207700000000000e-01 + 6.767700000000000e-01 + 7.961700000000000e-01 + 8.578900000000000e-01 + 8.440500000000000e-01 + 7.542100000000000e-01 + 6.084500000000000e-01 + 4.345400000000000e-01 + 2.486500000000000e-01 + 4.685300000000000e-02 +-1.829700000000000e-01 +-4.366900000000000e-01 +-6.776700000000000e-01 +-8.458599999999999e-01 +-8.898700000000000e-01 +-8.003900000000000e-01 +-6.192800000000001e-01 +-4.157600000000000e-01 +-2.455300000000000e-01 +-1.220900000000000e-01 +-2.013300000000000e-02 + 9.372500000000000e-02 + 2.279500000000000e-01 + 3.563800000000000e-01 + 4.376600000000000e-01 + 4.461900000000000e-01 + 3.894800000000000e-01 + 2.991700000000000e-01 + 2.058500000000000e-01 + 1.202300000000000e-01 + 3.612500000000000e-02 +-4.942600000000000e-02 +-1.192300000000000e-01 +-1.397900000000000e-01 +-8.508599999999999e-02 + 3.879100000000000e-02 + 1.896800000000000e-01 + 3.113200000000000e-01 + 3.657300000000000e-01 + 3.516700000000000e-01 + 2.961900000000000e-01 + 2.276600000000000e-01 + 1.528200000000000e-01 + 5.632700000000000e-02 +-7.824600000000000e-02 +-2.446100000000000e-01 +-4.079400000000000e-01 +-5.229100000000000e-01 +-5.623300000000000e-01 +-5.343400000000000e-01 +-4.754600000000000e-01 +-4.248300000000000e-01 +-3.986500000000000e-01 +-3.820600000000000e-01 +-3.421900000000000e-01 +-2.512200000000000e-01 +-1.036600000000000e-01 + 8.148600000000000e-02 + 2.710400000000000e-01 + 4.312300000000000e-01 + 5.365600000000000e-01 + 5.725200000000000e-01 + 5.355200000000000e-01 + 4.333400000000000e-01 + 2.857000000000000e-01 + 1.220900000000000e-01 +-2.469000000000000e-02 +-1.274200000000000e-01 +-1.717300000000000e-01 +-1.585500000000000e-01 +-1.018700000000000e-01 +-2.375400000000000e-02 + 5.142200000000000e-02 + 1.032000000000000e-01 + 1.214800000000000e-01 + 1.113800000000000e-01 + 9.289799999999999e-02 + 9.301300000000000e-02 + 1.321500000000000e-01 + 2.115400000000000e-01 + 3.089700000000000e-01 + 3.862800000000000e-01 + 4.050800000000000e-01 + 3.425700000000000e-01 + 1.998900000000000e-01 + 6.577100000000000e-04 +-2.176100000000000e-01 +-4.143800000000000e-01 +-5.558600000000000e-01 +-6.222400000000000e-01 +-6.119100000000000e-01 +-5.410000000000000e-01 +-4.370800000000000e-01 +-3.281300000000000e-01 +-2.320900000000000e-01 +-1.527700000000000e-01 +-8.482900000000000e-02 +-2.378300000000000e-02 + 2.696400000000000e-02 + 5.804300000000000e-02 + 6.337200000000000e-02 + 4.844900000000000e-02 + 2.927800000000000e-02 + 2.099700000000000e-02 + 2.453200000000000e-02 + 2.286800000000000e-02 +-7.722800000000000e-03 +-7.760200000000000e-02 +-1.687900000000000e-01 +-2.368300000000000e-01 +-2.302700000000000e-01 +-1.168100000000000e-01 + 9.888100000000000e-02 + 3.748400000000000e-01 + 6.471000000000000e-01 + 8.513800000000000e-01 + 9.414500000000000e-01 + 8.995500000000000e-01 + 7.391500000000000e-01 + 5.012500000000000e-01 + 2.440200000000000e-01 + 2.580000000000000e-02 +-1.146000000000000e-01 +-1.714700000000000e-01 +-1.711100000000000e-01 +-1.543700000000000e-01 +-1.522000000000000e-01 +-1.692700000000000e-01 +-1.864600000000000e-01 +-1.802500000000000e-01 +-1.446200000000000e-01 +-9.938600000000000e-02 +-7.846599999999999e-02 +-1.069000000000000e-01 +-1.834600000000000e-01 +-2.817200000000000e-01 +-3.683700000000000e-01 +-4.251000000000000e-01 +-4.581600000000000e-01 +-4.896100000000000e-01 +-5.374800000000000e-01 +-5.998900000000000e-01 +-6.538700000000000e-01 +-6.685200000000000e-01 +-6.220599999999999e-01 +-5.111300000000000e-01 +-3.476600000000000e-01 +-1.483000000000000e-01 + 7.438900000000000e-02 + 3.124400000000000e-01 + 5.556800000000000e-01 + 7.845200000000000e-01 + 9.694300000000000e-01 + 1.079100000000000e+00 + 1.093500000000000e+00 + 1.013200000000000e+00 + 8.609800000000000e-01 + 6.716900000000000e-01 + 4.780200000000000e-01 + 2.978000000000000e-01 + 1.308200000000000e-01 +-3.319500000000000e-02 +-1.999700000000000e-01 +-3.584800000000000e-01 +-4.796800000000000e-01 +-5.288000000000000e-01 +-4.850800000000000e-01 +-3.573100000000000e-01 +-1.847000000000000e-01 +-2.142200000000000e-02 + 8.687300000000001e-02 + 1.208400000000000e-01 + 8.990800000000000e-02 + 1.990800000000000e-02 +-6.407200000000000e-02 +-1.478300000000000e-01 +-2.260800000000000e-01 +-2.932900000000000e-01 +-3.371900000000000e-01 +-3.419400000000000e-01 +-2.988600000000000e-01 +-2.159300000000000e-01 +-1.177100000000000e-01 +-3.457100000000000e-02 + 1.170000000000000e-02 + 1.658600000000000e-02 +-8.867300000000000e-03 +-4.701700000000000e-02 +-8.252800000000000e-02 +-1.059100000000000e-01 +-1.120800000000000e-01 +-9.839500000000000e-02 +-6.524199999999999e-02 +-1.816000000000000e-02 + 3.274600000000000e-02 + 7.818300000000000e-02 + 1.167700000000000e-01 + 1.573200000000000e-01 + 2.122600000000000e-01 + 2.852300000000000e-01 + 3.619500000000000e-01 + 4.128000000000000e-01 + 4.076200000000000e-01 + 3.339300000000000e-01 + 2.062500000000000e-01 + 5.981100000000000e-02 +-6.747100000000000e-02 +-1.530600000000000e-01 +-1.968800000000000e-01 +-2.147600000000000e-01 +-2.247000000000000e-01 +-2.359600000000000e-01 +-2.466800000000000e-01 +-2.484900000000000e-01 +-2.320600000000000e-01 +-1.893200000000000e-01 +-1.130500000000000e-01 + 2.399500000000000e-03 + 1.566800000000000e-01 + 3.378300000000000e-01 + 5.204600000000000e-01 + 6.710700000000001e-01 + 7.584200000000000e-01 + 7.625100000000000e-01 + 6.772000000000000e-01 + 5.066200000000000e-01 + 2.611500000000000e-01 +-4.184700000000000e-02 +-3.723100000000000e-01 +-6.835500000000000e-01 +-9.178300000000000e-01 +-1.023600000000000e+00 +-9.768600000000000e-01 +-7.947800000000000e-01 +-5.312400000000000e-01 +-2.561000000000000e-01 +-2.868600000000000e-02 + 1.202900000000000e-01 + 1.902500000000000e-01 + 1.983700000000000e-01 + 1.639100000000000e-01 + 9.945400000000000e-02 + 1.279500000000000e-02 +-8.549800000000000e-02 +-1.771300000000000e-01 +-2.391400000000000e-01 +-2.534900000000000e-01 +-2.164800000000000e-01 +-1.411100000000000e-01 +-5.036300000000000e-02 + 3.453100000000000e-02 + 1.038500000000000e-01 + 1.614900000000000e-01 + 2.190900000000000e-01 + 2.863000000000000e-01 + 3.635700000000000e-01 + 4.413700000000000e-01 + 5.053700000000000e-01 + 5.437800000000000e-01 + 5.520500000000000e-01 + 5.329500000000000e-01 + 4.933700000000000e-01 + 4.411700000000000e-01 + 3.844800000000000e-01 + 3.324600000000000e-01 + 2.947800000000000e-01 + 2.772000000000000e-01 + 2.748200000000000e-01 + 2.678300000000000e-01 + 2.251100000000000e-01 + 1.166700000000000e-01 +-7.054900000000000e-02 +-3.225400000000000e-01 +-6.008800000000000e-01 +-8.576500000000000e-01 +-1.054300000000000e+00 +-1.173700000000000e+00 +-1.219400000000000e+00 +-1.204300000000000e+00 +-1.138000000000000e+00 +-1.020600000000000e+00 +-8.480700000000000e-01 +-6.216600000000000e-01 +-3.557700000000000e-01 +-7.781000000000000e-02 + 1.794600000000000e-01 + 3.884100000000000e-01 + 5.348800000000000e-01 + 6.215500000000000e-01 + 6.662200000000000e-01 + 6.955600000000000e-01 + 7.355300000000000e-01 + 8.001400000000000e-01 + 8.830900000000000e-01 + 9.575399999999999e-01 + 9.868100000000000e-01 + 9.423500000000000e-01 + 8.194300000000000e-01 + 6.408000000000000e-01 + 4.450800000000000e-01 + 2.670200000000000e-01 + 1.220800000000000e-01 + 4.782000000000000e-03 +-9.998700000000001e-02 +-2.026800000000000e-01 +-3.026500000000000e-01 +-3.927100000000000e-01 +-4.681200000000000e-01 +-5.302100000000000e-01 +-5.811300000000000e-01 +-6.157500000000000e-01 +-6.212000000000000e-01 +-5.881999999999999e-01 +-5.266500000000000e-01 +-4.711300000000000e-01 +-4.670300000000000e-01 +-5.427000000000000e-01 +-6.855400000000000e-01 +-8.399100000000000e-01 +-9.305099999999999e-01 +-8.974200000000000e-01 +-7.210000000000000e-01 +-4.236000000000000e-01 +-5.154900000000000e-02 + 3.460100000000000e-01 + 7.271700000000000e-01 + 1.055000000000000e+00 + 1.293500000000000e+00 + 1.414100000000000e+00 + 1.409800000000000e+00 + 1.306500000000000e+00 + 1.155200000000000e+00 + 1.005000000000000e+00 + 8.736400000000000e-01 + 7.364800000000000e-01 + 5.461500000000000e-01 + 2.698200000000000e-01 +-8.074199999999999e-02 +-4.483500000000000e-01 +-7.594700000000000e-01 +-9.626900000000000e-01 +-1.050400000000000e+00 +-1.050900000000000e+00 +-1.001500000000000e+00 +-9.229200000000000e-01 +-8.151400000000000e-01 +-6.718499999999999e-01 +-4.990600000000000e-01 +-3.205600000000000e-01 +-1.659100000000000e-01 +-5.198100000000000e-02 + 2.669300000000000e-02 + 9.130099999999999e-02 + 1.623700000000000e-01 + 2.469400000000000e-01 + 3.381900000000000e-01 + 4.250400000000000e-01 + 5.015100000000000e-01 + 5.672400000000000e-01 + 6.198700000000000e-01 + 6.476100000000000e-01 + 6.302900000000000e-01 + 5.497100000000000e-01 + 4.021300000000000e-01 + 2.038900000000000e-01 +-1.322400000000000e-02 +-2.133100000000000e-01 +-3.671900000000000e-01 +-4.582700000000000e-01 +-4.836100000000000e-01 +-4.529900000000000e-01 +-3.867600000000000e-01 +-3.112700000000000e-01 +-2.504900000000000e-01 +-2.163700000000000e-01 +-2.036800000000000e-01 +-1.941300000000000e-01 +-1.685000000000000e-01 +-1.193800000000000e-01 +-5.564900000000000e-02 + 4.192700000000000e-03 + 4.464100000000000e-02 + 6.229000000000000e-02 + 6.537300000000000e-02 + 6.562500000000000e-02 + 7.017600000000000e-02 + 7.999000000000001e-02 + 9.467299999999999e-02 + 1.174700000000000e-01 + 1.543900000000000e-01 + 2.076000000000000e-01 + 2.691500000000000e-01 + 3.222200000000000e-01 + 3.502800000000000e-01 + 3.479100000000000e-01 + 3.245500000000000e-01 + 2.978200000000000e-01 + 2.815400000000000e-01 + 2.773800000000000e-01 + 2.757600000000000e-01 + 2.636800000000000e-01 + 2.318900000000000e-01 + 1.757100000000000e-01 + 9.113800000000000e-02 +-2.712800000000000e-02 +-1.807300000000000e-01 +-3.583400000000000e-01 +-5.312700000000000e-01 +-6.615400000000000e-01 +-7.207800000000000e-01 +-7.081499999999999e-01 +-6.534000000000000e-01 +-6.003900000000000e-01 +-5.801600000000000e-01 +-5.910700000000000e-01 +-5.992200000000000e-01 +-5.589200000000000e-01 +-4.393200000000000e-01 +-2.404100000000000e-01 + 9.689700000000001e-03 + 2.711000000000000e-01 + 5.088000000000000e-01 + 6.994100000000000e-01 + 8.277200000000000e-01 + 8.811800000000000e-01 + 8.507300000000000e-01 + 7.388200000000000e-01 + 5.670700000000000e-01 + 3.748000000000000e-01 + 2.058500000000000e-01 + 9.051200000000000e-02 + 3.412300000000000e-02 + 1.966000000000000e-02 + 2.194500000000000e-02 + 2.332800000000000e-02 + 2.031300000000000e-02 + 1.793300000000000e-02 + 1.786800000000000e-02 + 1.053800000000000e-02 +-2.207200000000000e-02 +-9.448300000000000e-02 +-2.051300000000000e-01 +-3.321600000000000e-01 +-4.407800000000000e-01 +-4.978400000000000e-01 +-4.847200000000000e-01 +-4.019700000000000e-01 +-2.646300000000000e-01 +-9.349200000000001e-02 + 9.145800000000000e-02 + 2.720100000000000e-01 + 4.288900000000000e-01 + 5.400700000000001e-01 + 5.837200000000000e-01 + 5.457000000000000e-01 + 4.269700000000000e-01 + 2.459800000000000e-01 + 3.378500000000000e-02 +-1.757900000000000e-01 +-3.559200000000000e-01 +-4.918700000000000e-01 +-5.804800000000000e-01 +-6.259200000000000e-01 +-6.356000000000001e-01 +-6.178200000000000e-01 +-5.810600000000000e-01 +-5.330900000000000e-01 +-4.788200000000000e-01 +-4.179000000000000e-01 +-3.440700000000000e-01 +-2.476800000000000e-01 +-1.205700000000000e-01 + 3.903300000000000e-02 + 2.242100000000000e-01 + 4.205700000000000e-01 + 6.098700000000000e-01 + 7.738600000000000e-01 + 8.969800000000000e-01 + 9.674600000000000e-01 + 9.779500000000000e-01 + 9.264300000000000e-01 + 8.174900000000000e-01 + 6.634900000000000e-01 + 4.840300000000000e-01 + 3.030300000000000e-01 + 1.430800000000000e-01 + 1.850000000000000e-02 +-7.023400000000000e-02 +-1.372100000000000e-01 +-2.048100000000000e-01 +-2.919000000000000e-01 +-4.020600000000000e-01 +-5.190399999999999e-01 +-6.137800000000000e-01 +-6.605799999999999e-01 +-6.527100000000000e-01 +-6.071900000000000e-01 +-5.540300000000000e-01 +-5.161600000000000e-01 +-4.938900000000000e-01 +-4.655400000000000e-01 +-4.054200000000000e-01 +-3.070400000000000e-01 +-1.942100000000000e-01 +-1.100100000000000e-01 +-8.872099999999999e-02 +-1.290500000000000e-01 +-1.873800000000000e-01 +-1.974200000000000e-01 +-1.051600000000000e-01 + 1.022400000000000e-01 + 3.903400000000000e-01 + 6.958600000000000e-01 + 9.561600000000000e-01 + 1.131200000000000e+00 + 1.207600000000000e+00 + 1.187900000000000e+00 + 1.076800000000000e+00 + 8.768400000000000e-01 + 5.939500000000000e-01 + 2.464100000000000e-01 +-1.317800000000000e-01 +-4.973900000000000e-01 +-8.096600000000000e-01 +-1.039500000000000e+00 +-1.170800000000000e+00 +-1.196300000000000e+00 +-1.112200000000000e+00 +-9.195800000000000e-01 +-6.294100000000000e-01 +-2.692900000000000e-01 + 1.161200000000000e-01 + 4.727500000000000e-01 + 7.501300000000000e-01 + 9.139699999999999e-01 + 9.527200000000000e-01 + 8.761900000000000e-01 + 7.085399999999999e-01 + 4.799700000000000e-01 + 2.212100000000000e-01 +-3.814400000000000e-02 +-2.693300000000000e-01 +-4.455600000000000e-01 +-5.470200000000000e-01 +-5.684500000000000e-01 +-5.246000000000000e-01 +-4.478400000000000e-01 +-3.760900000000000e-01 +-3.354300000000000e-01 +-3.271000000000000e-01 +-3.274800000000000e-01 +-3.026100000000000e-01 +-2.290600000000000e-01 +-1.078300000000000e-01 + 3.767600000000000e-02 + 1.779000000000000e-01 + 2.954700000000000e-01 + 3.920400000000000e-01 + 4.790100000000000e-01 + 5.601699999999999e-01 + 6.210800000000000e-01 + 6.349700000000000e-01 + 5.815700000000000e-01 + 4.643200000000000e-01 + 3.117700000000000e-01 + 1.606900000000000e-01 + 3.335500000000000e-02 +-7.367200000000000e-02 +-1.802100000000000e-01 +-2.998700000000000e-01 +-4.222100000000000e-01 +-5.145300000000000e-01 +-5.430800000000000e-01 +-4.980300000000000e-01 +-4.031600000000000e-01 +-3.024600000000000e-01 +-2.331400000000000e-01 +-2.043100000000000e-01 +-1.957000000000000e-01 +-1.755300000000000e-01 +-1.224900000000000e-01 +-3.574200000000000e-02 + 7.240400000000000e-02 + 1.918700000000000e-01 + 3.233400000000000e-01 + 4.717000000000000e-01 + 6.300500000000000e-01 + 7.686900000000000e-01 + 8.409900000000000e-01 + 8.050300000000000e-01 + 6.476200000000000e-01 + 3.944000000000000e-01 + 9.898600000000000e-02 +-1.822200000000000e-01 +-4.135400000000000e-01 +-5.883300000000000e-01 +-7.190100000000000e-01 +-8.179900000000000e-01 +-8.829700000000000e-01 +-8.959600000000000e-01 +-8.355100000000000e-01 +-6.935200000000000e-01 +-4.856400000000000e-01 +-2.489400000000000e-01 +-2.793900000000000e-02 + 1.436400000000000e-01 + 2.560300000000000e-01 + 3.249100000000000e-01 + 3.804300000000000e-01 + 4.493600000000000e-01 + 5.392700000000000e-01 + 6.330300000000000e-01 + 6.967100000000001e-01 + 6.970200000000000e-01 + 6.190400000000000e-01 + 4.750100000000000e-01 + 2.995000000000000e-01 + 1.340100000000000e-01 + 9.203700000000000e-03 +-6.603800000000000e-02 +-1.042200000000000e-01 +-1.291300000000000e-01 +-1.621800000000000e-01 +-2.120100000000000e-01 +-2.713700000000000e-01 +-3.212500000000000e-01 +-3.395000000000000e-01 +-3.103500000000000e-01 +-2.313800000000000e-01 +-1.159700000000000e-01 + 9.538100000000001e-03 + 1.131800000000000e-01 + 1.667500000000000e-01 + 1.540600000000000e-01 + 7.519300000000000e-02 +-5.417000000000000e-02 +-2.073600000000000e-01 +-3.532100000000000e-01 +-4.625500000000000e-01 +-5.136700000000000e-01 +-4.966800000000000e-01 +-4.158600000000000e-01 +-2.890700000000000e-01 +-1.429900000000000e-01 +-4.954800000000000e-03 + 1.060900000000000e-01 + 1.855400000000000e-01 + 2.430300000000000e-01 + 2.960700000000000e-01 + 3.600800000000000e-01 + 4.393600000000000e-01 + 5.232100000000000e-01 + 5.890900000000000e-01 + 6.119000000000000e-01 + 5.754500000000000e-01 + 4.808900000000000e-01 + 3.471700000000000e-01 + 2.021700000000000e-01 + 6.823799999999999e-02 +-4.998100000000000e-02 +-1.667400000000000e-01 +-3.026000000000000e-01 +-4.640000000000000e-01 +-6.282300000000000e-01 +-7.459700000000000e-01 +-7.638800000000000e-01 +-6.558400000000000e-01 +-4.435700000000000e-01 +-1.914600000000000e-01 + 2.391200000000000e-02 + 1.524700000000000e-01 + 1.940600000000000e-01 + 1.920400000000000e-01 + 2.020300000000000e-01 + 2.563500000000000e-01 + 3.467300000000000e-01 + 4.342800000000000e-01 + 4.769900000000000e-01 + 4.543800000000000e-01 + 3.736500000000000e-01 + 2.568300000000000e-01 + 1.225400000000000e-01 +-2.241000000000000e-02 +-1.762600000000000e-01 +-3.286800000000000e-01 +-4.543800000000000e-01 +-5.213300000000000e-01 +-5.087400000000000e-01 +-4.210700000000000e-01 +-2.873600000000000e-01 +-1.459500000000000e-01 +-2.568600000000000e-02 + 6.393000000000000e-02 + 1.289100000000000e-01 + 1.791200000000000e-01 + 2.193800000000000e-01 + 2.493900000000000e-01 + 2.696500000000000e-01 + 2.851000000000000e-01 + 3.008200000000000e-01 + 3.123600000000000e-01 + 2.998200000000000e-01 + 2.334300000000000e-01 + 9.016399999999999e-02 +-1.279200000000000e-01 +-3.859200000000000e-01 +-6.249500000000000e-01 +-7.838000000000001e-01 +-8.218299999999999e-01 +-7.318600000000000e-01 +-5.383200000000000e-01 +-2.841100000000000e-01 +-1.432400000000000e-02 + 2.357100000000000e-01 + 4.449700000000000e-01 + 6.050700000000000e-01 + 7.157700000000000e-01 + 7.804100000000000e-01 + 8.030800000000000e-01 + 7.872600000000000e-01 + 7.354500000000000e-01 + 6.491700000000000e-01 + 5.290000000000000e-01 + 3.754600000000000e-01 + 1.912500000000000e-01 +-1.538800000000000e-02 +-2.281300000000000e-01 +-4.239400000000000e-01 +-5.797900000000000e-01 +-6.826800000000000e-01 +-7.367700000000000e-01 +-7.615000000000000e-01 +-7.791700000000000e-01 +-7.983800000000000e-01 +-8.046400000000000e-01 +-7.664700000000000e-01 +-6.556999999999999e-01 +-4.696500000000000e-01 +-2.398800000000000e-01 +-1.955300000000000e-02 + 1.440300000000000e-01 + 2.347000000000000e-01 + 2.739100000000000e-01 + 3.042600000000000e-01 + 3.612200000000000e-01 + 4.515700000000000e-01 + 5.519300000000000e-01 + 6.266500000000000e-01 + 6.517400000000000e-01 + 6.293900000000000e-01 + 5.852300000000000e-01 + 5.522700000000000e-01 + 5.525099999999999e-01 + 5.860800000000000e-01 + 6.311900000000000e-01 + 6.526200000000000e-01 + 6.141300000000000e-01 + 4.911800000000000e-01 + 2.810500000000000e-01 + 6.891200000000000e-03 +-2.876900000000000e-01 +-5.538400000000000e-01 +-7.565800000000000e-01 +-8.877500000000000e-01 +-9.643500000000000e-01 +-1.012700000000000e+00 +-1.048500000000000e+00 +-1.066200000000000e+00 +-1.045300000000000e+00 +-9.676300000000000e-01 +-8.329900000000000e-01 +-6.607900000000000e-01 +-4.771100000000000e-01 +-2.975400000000000e-01 +-1.191900000000000e-01 + 7.237100000000000e-02 + 2.873400000000000e-01 + 5.197500000000000e-01 + 7.480500000000000e-01 + 9.466500000000000e-01 + 1.098600000000000e+00 + 1.199900000000000e+00 + 1.253700000000000e+00 + 1.261200000000000e+00 + 1.216300000000000e+00 + 1.110000000000000e+00 + 9.365900000000000e-01 + 6.996500000000000e-01 + 4.112500000000000e-01 + 8.897800000000000e-02 +-2.456400000000000e-01 +-5.660400000000000e-01 +-8.403500000000000e-01 +-1.036300000000000e+00 +-1.131700000000000e+00 +-1.123900000000000e+00 +-1.031700000000000e+00 +-8.866000000000001e-01 +-7.183100000000000e-01 +-5.448800000000000e-01 +-3.725100000000000e-01 +-2.035300000000000e-01 +-4.428600000000000e-02 + 9.392399999999999e-02 + 2.009200000000000e-01 + 2.741000000000000e-01 + 3.188400000000000e-01 + 3.420400000000000e-01 + 3.452300000000000e-01 + 3.240100000000000e-01 + 2.751300000000000e-01 + 2.049800000000000e-01 + 1.313300000000000e-01 + 7.529300000000000e-02 + 4.900700000000000e-02 + 4.842500000000000e-02 + 5.678000000000000e-02 + 5.572500000000000e-02 + 3.540800000000000e-02 +-3.478000000000000e-03 +-5.519400000000000e-02 +-1.151500000000000e-01 +-1.803500000000000e-01 +-2.441700000000000e-01 +-2.918600000000000e-01 +-3.033300000000000e-01 +-2.630300000000000e-01 +-1.697800000000000e-01 +-3.775200000000000e-02 + 1.130200000000000e-01 + 2.695500000000000e-01 + 4.313400000000000e-01 + 6.030000000000000e-01 + 7.790500000000000e-01 + 9.332600000000000e-01 + 1.022000000000000e+00 + 1.001900000000000e+00 + 8.506200000000000e-01 + 5.789100000000000e-01 + 2.266300000000000e-01 +-1.529200000000000e-01 +-5.102900000000000e-01 +-8.100000000000001e-01 +-1.031600000000000e+00 +-1.165600000000000e+00 +-1.211100000000000e+00 +-1.175100000000000e+00 +-1.074200000000000e+00 +-9.327200000000000e-01 +-7.761600000000000e-01 +-6.230100000000000e-01 +-4.782400000000000e-01 +-3.326500000000000e-01 +-1.690100000000000e-01 + 2.738400000000000e-02 + 2.582600000000000e-01 + 5.070900000000000e-01 + 7.421400000000000e-01 + 9.273500000000000e-01 + 1.036200000000000e+00 + 1.061200000000000e+00 + 1.014000000000000e+00 + 9.159000000000000e-01 + 7.849200000000000e-01 + 6.291700000000000e-01 + 4.498600000000000e-01 + 2.513800000000000e-01 + 4.908700000000000e-02 +-1.324000000000000e-01 +-2.704400000000000e-01 +-3.565400000000000e-01 +-3.998700000000000e-01 +-4.188600000000000e-01 +-4.273500000000000e-01 +-4.262300000000000e-01 +-4.068200000000000e-01 +-3.622300000000000e-01 +-2.965400000000000e-01 +-2.235900000000000e-01 +-1.571100000000000e-01 +-1.017000000000000e-01 +-5.362700000000000e-02 +-1.101800000000000e-02 + 1.660100000000000e-02 + 1.022100000000000e-02 +-4.393600000000000e-02 +-1.378700000000000e-01 +-2.382600000000000e-01 +-3.018100000000000e-01 +-2.999900000000000e-01 +-2.350000000000000e-01 +-1.339500000000000e-01 +-2.542700000000000e-02 + 8.321500000000000e-02 + 2.090300000000000e-01 + 3.732600000000000e-01 + 5.727300000000000e-01 + 7.657200000000000e-01 + 8.855300000000000e-01 + 8.747700000000000e-01 + 7.182200000000000e-01 + 4.524600000000000e-01 + 1.469200000000000e-01 +-1.307100000000000e-01 +-3.425300000000000e-01 +-4.870400000000000e-01 +-5.847200000000000e-01 +-6.560500000000000e-01 +-7.069100000000000e-01 +-7.282300000000000e-01 +-7.061100000000000e-01 +-6.330700000000000e-01 +-5.134900000000000e-01 +-3.619500000000000e-01 +-1.980100000000000e-01 +-4.113200000000000e-02 + 9.246699999999999e-02 + 1.918300000000000e-01 + 2.531000000000000e-01 + 2.810300000000000e-01 + 2.889700000000000e-01 + 2.962000000000000e-01 + 3.222800000000000e-01 + 3.801100000000000e-01 + 4.698600000000000e-01 + 5.769000000000000e-01 + 6.756400000000000e-01 + 7.386400000000000e-01 + 7.474900000000000e-01 + 6.995300000000000e-01 + 6.065000000000000e-01 + 4.855000000000000e-01 + 3.483800000000000e-01 + 1.969600000000000e-01 + 2.759800000000000e-02 +-1.588300000000000e-01 +-3.500300000000000e-01 +-5.252500000000000e-01 +-6.668700000000000e-01 +-7.720200000000000e-01 +-8.543600000000000e-01 +-9.334900000000000e-01 +-1.018600000000000e+00 +-1.098300000000000e+00 +-1.143600000000000e+00 +-1.122200000000000e+00 +-1.013700000000000e+00 +-8.175800000000000e-01 +-5.509800000000000e-01 +-2.415800000000000e-01 + 7.817700000000000e-02 + 3.744400000000000e-01 + 6.159900000000000e-01 + 7.818200000000000e-01 + 8.696400000000000e-01 + 8.979500000000000e-01 + 8.970100000000000e-01 + 8.920700000000000e-01 + 8.903600000000000e-01 + 8.817199999999999e-01 + 8.527700000000000e-01 + 8.026100000000000e-01 + 7.461500000000000e-01 + 7.008799999999999e-01 + 6.675900000000000e-01 + 6.226200000000000e-01 + 5.306800000000000e-01 + 3.709200000000000e-01 + 1.559800000000000e-01 +-7.189100000000000e-02 +-2.666100000000000e-01 +-4.073900000000000e-01 +-5.093700000000000e-01 +-6.081600000000000e-01 +-7.305600000000000e-01 +-8.740200000000000e-01 +-1.009500000000000e+00 +-1.103300000000000e+00 +-1.139700000000000e+00 +-1.126600000000000e+00 +-1.081800000000000e+00 +-1.013500000000000e+00 +-9.110600000000000e-01 +-7.541600000000001e-01 +-5.317300000000000e-01 +-2.566200000000000e-01 + 3.471600000000000e-02 + 2.961800000000000e-01 + 4.900100000000000e-01 + 5.991600000000000e-01 + 6.304400000000000e-01 + 6.103000000000000e-01 + 5.761100000000000e-01 + 5.645800000000000e-01 + 5.988300000000000e-01 + 6.785800000000000e-01 + 7.794600000000000e-01 + 8.642400000000000e-01 + 9.009500000000000e-01 + 8.768700000000000e-01 + 7.991100000000000e-01 + 6.830500000000000e-01 + 5.394000000000000e-01 + 3.717200000000000e-01 + 1.861300000000000e-01 + 2.555000000000000e-03 +-1.462800000000000e-01 +-2.319000000000000e-01 +-2.513100000000000e-01 +-2.340100000000000e-01 +-2.257300000000000e-01 +-2.591400000000000e-01 +-3.336100000000000e-01 +-4.205600000000000e-01 +-4.900500000000000e-01 +-5.363800000000000e-01 +-5.806400000000000e-01 +-6.475600000000000e-01 +-7.366000000000000e-01 +-8.131300000000000e-01 +-8.293199999999999e-01 +-7.592200000000000e-01 +-6.194100000000000e-01 +-4.580200000000000e-01 +-3.207800000000000e-01 +-2.218800000000000e-01 +-1.425400000000000e-01 +-5.659600000000000e-02 + 4.110700000000000e-02 + 1.293800000000000e-01 + 1.836400000000000e-01 + 2.066800000000000e-01 + 2.385000000000000e-01 + 3.330500000000000e-01 + 5.175600000000000e-01 + 7.655300000000000e-01 + 1.004900000000000e+00 + 1.156600000000000e+00 + 1.175000000000000e+00 + 1.065900000000000e+00 + 8.709700000000000e-01 + 6.385800000000000e-01 + 4.014500000000000e-01 + 1.745000000000000e-01 +-3.410000000000000e-02 +-2.135100000000000e-01 +-3.512200000000000e-01 +-4.404100000000000e-01 +-4.832400000000000e-01 +-4.858900000000000e-01 +-4.512300000000000e-01 +-3.789000000000000e-01 +-2.749400000000000e-01 +-1.615500000000000e-01 +-7.481699999999999e-02 +-4.776600000000000e-02 +-9.010700000000001e-02 +-1.813700000000000e-01 +-2.842600000000000e-01 +-3.681700000000000e-01 +-4.240100000000000e-01 +-4.590200000000000e-01 +-4.783000000000000e-01 +-4.717900000000000e-01 +-4.204000000000000e-01 +-3.164700000000000e-01 +-1.794700000000000e-01 +-4.966300000000000e-02 + 3.792000000000000e-02 + 7.889900000000000e-02 + 1.020500000000000e-01 + 1.451000000000000e-01 + 2.227700000000000e-01 + 3.134200000000000e-01 + 3.760700000000000e-01 + 3.841400000000000e-01 + 3.481200000000000e-01 + 3.082400000000000e-01 + 3.031400000000000e-01 + 3.397000000000000e-01 + 3.879300000000000e-01 + 4.039700000000000e-01 + 3.615600000000000e-01 + 2.678900000000000e-01 + 1.537400000000000e-01 + 4.966300000000000e-02 +-3.139200000000000e-02 +-9.302100000000001e-02 +-1.418500000000000e-01 +-1.771000000000000e-01 +-1.931000000000000e-01 +-1.901800000000000e-01 +-1.805600000000000e-01 +-1.811300000000000e-01 +-1.986700000000000e-01 +-2.217700000000000e-01 +-2.282200000000000e-01 +-2.027000000000000e-01 +-1.490400000000000e-01 +-8.588200000000000e-02 +-2.920900000000000e-02 + 2.219000000000000e-02 + 8.438200000000000e-02 + 1.700000000000000e-01 + 2.696700000000000e-01 + 3.502200000000000e-01 + 3.729400000000000e-01 + 3.184400000000000e-01 + 1.991200000000000e-01 + 5.046700000000000e-02 +-9.070499999999999e-02 +-2.038600000000000e-01 +-2.870900000000000e-01 +-3.471300000000000e-01 +-3.891900000000000e-01 +-4.159000000000000e-01 +-4.327800000000000e-01 +-4.505200000000000e-01 +-4.775600000000000e-01 +-5.078700000000000e-01 +-5.161300000000000e-01 +-4.678200000000000e-01 +-3.393400000000000e-01 +-1.331900000000000e-01 + 1.228500000000000e-01 + 3.909800000000000e-01 + 6.394100000000000e-01 + 8.467800000000000e-01 + 9.949300000000000e-01 + 1.062100000000000e+00 + 1.028500000000000e+00 + 8.922200000000000e-01 + 6.823300000000000e-01 + 4.515800000000000e-01 + 2.500700000000000e-01 + 9.711500000000001e-02 +-2.604700000000000e-02 +-1.548400000000000e-01 +-3.068500000000000e-01 +-4.618300000000000e-01 +-5.732699999999999e-01 +-6.035800000000000e-01 +-5.548999999999999e-01 +-4.707500000000000e-01 +-4.063800000000000e-01 +-3.908400000000000e-01 +-4.102200000000000e-01 +-4.237900000000000e-01 +-3.986200000000000e-01 +-3.345000000000000e-01 +-2.601400000000000e-01 +-2.059300000000000e-01 +-1.771000000000000e-01 +-1.493200000000000e-01 +-8.951199999999999e-02 + 1.587900000000000e-02 + 1.479600000000000e-01 + 2.673200000000000e-01 + 3.407400000000000e-01 + 3.621700000000000e-01 + 3.539000000000000e-01 + 3.495000000000000e-01 + 3.722800000000000e-01 + 4.237500000000000e-01 + 4.865600000000000e-01 + 5.362600000000000e-01 + 5.526700000000000e-01 + 5.252000000000000e-01 + 4.523900000000000e-01 + 3.385400000000000e-01 + 1.903600000000000e-01 + 1.491500000000000e-02 +-1.800000000000000e-01 +-3.822200000000000e-01 +-5.699300000000000e-01 +-7.097700000000000e-01 +-7.642900000000000e-01 +-7.090100000000000e-01 +-5.509700000000000e-01 +-3.347800000000000e-01 +-1.274200000000000e-01 + 1.317200000000000e-02 + 6.718000000000000e-02 + 5.994800000000000e-02 + 4.113500000000000e-02 + 4.982200000000000e-02 + 9.005500000000000e-02 + 1.336600000000000e-01 + 1.466700000000000e-01 + 1.180100000000000e-01 + 6.819500000000001e-02 + 3.224200000000000e-02 + 3.129400000000000e-02 + 5.579200000000000e-02 + 7.284400000000001e-02 + 5.098600000000000e-02 +-1.737700000000000e-02 +-1.120100000000000e-01 +-1.997700000000000e-01 +-2.543200000000000e-01 +-2.654500000000000e-01 +-2.337400000000000e-01 +-1.597300000000000e-01 +-4.031900000000000e-02 + 1.236400000000000e-01 + 3.160700000000000e-01 + 5.031500000000000e-01 + 6.447900000000000e-01 + 7.132400000000000e-01 + 7.053600000000000e-01 + 6.397100000000000e-01 + 5.409900000000000e-01 + 4.236500000000000e-01 + 2.863900000000000e-01 + 1.198500000000000e-01 +-7.924800000000000e-02 +-2.979800000000000e-01 +-5.073200000000000e-01 +-6.714400000000000e-01 +-7.604700000000000e-01 +-7.611500000000000e-01 +-6.820500000000000e-01 +-5.518500000000000e-01 +-4.106500000000000e-01 +-2.957600000000000e-01 +-2.272100000000000e-01 +-2.001800000000000e-01 +-1.901600000000000e-01 +-1.691000000000000e-01 +-1.233000000000000e-01 +-6.099100000000000e-02 +-4.303500000000000e-03 + 2.886600000000000e-02 + 3.951600000000000e-02 + 4.788600000000000e-02 + 7.944300000000000e-02 + 1.474800000000000e-01 + 2.453700000000000e-01 + 3.532600000000000e-01 + 4.521800000000000e-01 + 5.333599999999999e-01 + 5.958200000000000e-01 + 6.364300000000001e-01 + 6.433300000000000e-01 + 6.007600000000000e-01 + 5.022799999999999e-01 + 3.612400000000000e-01 + 2.082000000000000e-01 + 7.528100000000000e-02 +-2.198200000000000e-02 +-9.191000000000001e-02 +-1.579400000000000e-01 +-2.404000000000000e-01 +-3.417200000000000e-01 +-4.445900000000000e-01 +-5.225300000000000e-01 +-5.543400000000001e-01 +-5.332800000000000e-01 +-4.674600000000000e-01 +-3.746300000000000e-01 +-2.761900000000000e-01 +-1.924400000000000e-01 +-1.379100000000000e-01 +-1.159900000000000e-01 +-1.150500000000000e-01 +-1.109700000000000e-01 +-7.807699999999999e-02 +-4.456100000000000e-03 + 9.758900000000000e-02 + 1.940100000000000e-01 + 2.448600000000000e-01 + 2.251800000000000e-01 + 1.387500000000000e-01 + 1.705600000000000e-02 +-9.499800000000000e-02 +-1.580200000000000e-01 +-1.516700000000000e-01 +-7.809900000000000e-02 + 4.310000000000000e-02 + 1.834300000000000e-01 + 3.135200000000000e-01 + 4.095100000000000e-01 + 4.580300000000000e-01 + 4.591900000000000e-01 + 4.256400000000000e-01 + 3.762600000000000e-01 + 3.262200000000000e-01 + 2.783900000000000e-01 + 2.217200000000000e-01 + 1.385400000000000e-01 + 1.714600000000000e-02 +-1.378100000000000e-01 +-3.037200000000000e-01 +-4.485700000000000e-01 +-5.445500000000000e-01 +-5.786900000000000e-01 +-5.545200000000000e-01 +-4.849200000000000e-01 +-3.822300000000000e-01 +-2.531700000000000e-01 +-1.020200000000000e-01 + 6.104500000000000e-02 + 2.147000000000000e-01 + 3.305900000000000e-01 + 3.863600000000000e-01 + 3.791600000000000e-01 + 3.288800000000000e-01 + 2.665800000000000e-01 + 2.142700000000000e-01 + 1.700800000000000e-01 + 1.106400000000000e-01 + 1.078700000000000e-02 +-1.328000000000000e-01 +-2.919500000000000e-01 +-4.203700000000000e-01 +-4.821800000000000e-01 +-4.753700000000000e-01 +-4.321200000000000e-01 +-3.941200000000000e-01 +-3.800500000000000e-01 +-3.692800000000000e-01 +-3.149500000000000e-01 +-1.783700000000000e-01 + 3.931800000000000e-02 + 2.911100000000000e-01 + 5.084000000000000e-01 + 6.391300000000000e-01 + 6.740500000000000e-01 + 6.449800000000000e-01 + 5.984100000000000e-01 + 5.641400000000000e-01 + 5.394800000000000e-01 + 4.968300000000000e-01 + 4.062400000000000e-01 + 2.566900000000000e-01 + 6.364599999999999e-02 +-1.384500000000000e-01 +-3.115000000000000e-01 +-4.275300000000000e-01 +-4.756400000000000e-01 +-4.615900000000000e-01 +-4.021000000000000e-01 +-3.167600000000000e-01 +-2.206200000000000e-01 +-1.210600000000000e-01 +-2.120100000000000e-02 + 7.197099999999999e-02 + 1.411700000000000e-01 + 1.612300000000000e-01 + 1.119000000000000e-01 +-6.713100000000000e-03 +-1.678600000000000e-01 +-3.285800000000000e-01 +-4.515000000000000e-01 +-5.228300000000000e-01 +-5.525600000000001e-01 +-5.565200000000000e-01 +-5.348900000000000e-01 +-4.667300000000000e-01 +-3.274100000000000e-01 +-1.168200000000000e-01 + 1.256200000000000e-01 + 3.350800000000000e-01 + 4.587700000000000e-01 + 4.909700000000000e-01 + 4.791300000000000e-01 + 4.939800000000000e-01 + 5.828700000000000e-01 + 7.378100000000000e-01 + 8.992599999999999e-01 + 9.911900000000000e-01 + 9.622000000000001e-01 + 8.066000000000000e-01 + 5.566700000000000e-01 + 2.585300000000000e-01 +-4.765200000000000e-02 +-3.318800000000000e-01 +-5.677900000000000e-01 +-7.293800000000000e-01 +-7.989700000000000e-01 +-7.811000000000000e-01 +-7.083900000000000e-01 +-6.300200000000000e-01 +-5.875800000000000e-01 +-5.934600000000000e-01 +-6.261900000000000e-01 +-6.445900000000000e-01 +-6.101100000000000e-01 +-5.034500000000000e-01 +-3.282900000000000e-01 +-1.053100000000000e-01 + 1.358200000000000e-01 + 3.626300000000000e-01 + 5.455500000000000e-01 + 6.657700000000000e-01 + 7.231400000000000e-01 + 7.369500000000000e-01 + 7.348900000000000e-01 + 7.342200000000000e-01 + 7.279500000000000e-01 + 6.880100000000000e-01 + 5.857300000000000e-01 + 4.160500000000000e-01 + 2.070300000000000e-01 + 6.489300000000000e-03 +-1.457600000000000e-01 +-2.399900000000000e-01 +-2.975800000000000e-01 +-3.515900000000000e-01 +-4.227100000000000e-01 +-5.082100000000001e-01 +-5.895000000000000e-01 +-6.484700000000000e-01 +-6.775300000000000e-01 +-6.762100000000000e-01 +-6.410600000000000e-01 +-5.620200000000000e-01 +-4.315600000000000e-01 +-2.591700000000000e-01 +-7.610100000000000e-02 + 7.810499999999999e-02 + 1.802200000000000e-01 + 2.400600000000000e-01 + 2.941500000000000e-01 + 3.780900000000000e-01 + 4.971500000000000e-01 + 6.175600000000000e-01 + 6.865500000000000e-01 + 6.679300000000000e-01 + 5.678000000000000e-01 + 4.320900000000000e-01 + 3.177300000000000e-01 + 2.575200000000000e-01 + 2.422700000000000e-01 + 2.303300000000000e-01 + 1.760600000000000e-01 + 5.773700000000000e-02 +-1.113300000000000e-01 +-2.920300000000000e-01 +-4.403100000000000e-01 +-5.270000000000000e-01 +-5.477500000000000e-01 +-5.211800000000000e-01 +-4.778000000000000e-01 +-4.444500000000000e-01 +-4.294900000000000e-01 +-4.155700000000000e-01 +-3.654600000000000e-01 +-2.414400000000000e-01 +-3.043800000000000e-02 + 2.396600000000000e-01 + 5.045800000000000e-01 + 6.898300000000001e-01 + 7.450200000000000e-01 + 6.662900000000000e-01 + 4.935200000000000e-01 + 2.852600000000000e-01 + 8.855700000000000e-02 +-7.710000000000000e-02 +-2.143100000000000e-01 +-3.290300000000000e-01 +-4.156500000000000e-01 +-4.575200000000000e-01 +-4.413000000000000e-01 +-3.720800000000000e-01 +-2.764100000000000e-01 +-1.901700000000000e-01 +-1.399800000000000e-01 +-1.307600000000000e-01 +-1.462700000000000e-01 +-1.599400000000000e-01 +-1.476000000000000e-01 +-9.535000000000000e-02 +-1.953800000000000e-03 + 1.216800000000000e-01 + 2.541900000000000e-01 + 3.684700000000000e-01 + 4.413600000000000e-01 + 4.656100000000000e-01 + 4.561100000000000e-01 + 4.427100000000000e-01 + 4.508000000000000e-01 + 4.812000000000000e-01 + 5.049500000000000e-01 + 4.798800000000000e-01 + 3.798200000000000e-01 + 2.159600000000000e-01 + 3.341700000000000e-02 +-1.165400000000000e-01 +-2.095500000000000e-01 +-2.620100000000000e-01 +-3.148000000000000e-01 +-3.985500000000000e-01 +-5.067199999999999e-01 +-5.973800000000000e-01 +-6.228200000000000e-01 +-5.649100000000000e-01 +-4.491400000000000e-01 +-3.269700000000000e-01 +-2.401100000000000e-01 +-1.942100000000000e-01 +-1.613300000000000e-01 +-1.080700000000000e-01 +-2.609100000000000e-02 + 5.920500000000000e-02 + 1.083700000000000e-01 + 1.001600000000000e-01 + 5.087300000000000e-02 + 6.030900000000000e-03 + 1.097600000000000e-02 + 8.249099999999999e-02 + 2.011000000000000e-01 + 3.268000000000000e-01 + 4.236500000000000e-01 + 4.746000000000000e-01 + 4.787900000000000e-01 + 4.390500000000000e-01 + 3.541800000000000e-01 + 2.237200000000000e-01 + 5.943500000000000e-02 +-1.094300000000000e-01 +-2.452100000000000e-01 +-3.200200000000000e-01 +-3.290700000000000e-01 +-2.881000000000000e-01 +-2.173900000000000e-01 +-1.259500000000000e-01 +-9.750800000000000e-03 + 1.344900000000000e-01 + 2.923100000000000e-01 + 4.273500000000000e-01 + 4.963500000000000e-01 + 4.733900000000000e-01 + 3.654300000000000e-01 + 2.068900000000000e-01 + 3.737300000000000e-02 +-1.210200000000000e-01 +-2.700200000000000e-01 +-4.219600000000000e-01 +-5.787800000000000e-01 +-7.201900000000000e-01 +-8.099300000000000e-01 +-8.147500000000000e-01 +-7.215200000000001e-01 +-5.414000000000000e-01 +-3.009400000000000e-01 +-2.962400000000000e-02 + 2.461300000000000e-01 + 5.008700000000000e-01 + 7.063400000000000e-01 + 8.340700000000000e-01 + 8.653500000000000e-01 + 8.016600000000000e-01 + 6.664099999999999e-01 + 4.950300000000000e-01 + 3.193600000000000e-01 + 1.564400000000000e-01 + 8.138800000000000e-03 +-1.307000000000000e-01 +-2.632900000000000e-01 +-3.874300000000000e-01 +-4.976900000000000e-01 +-5.880100000000000e-01 +-6.509000000000000e-01 +-6.746700000000000e-01 +-6.444600000000000e-01 +-5.502899999999999e-01 +-3.986300000000000e-01 +-2.177600000000000e-01 +-4.957500000000000e-02 + 7.031100000000000e-02 + 1.320700000000000e-01 + 1.569600000000000e-01 + 1.834300000000000e-01 + 2.422900000000000e-01 + 3.377000000000000e-01 + 4.462300000000000e-01 + 5.337900000000000e-01 + 5.772500000000000e-01 + 5.755900000000000e-01 + 5.442100000000000e-01 + 4.991300000000000e-01 + 4.444600000000000e-01 + 3.725200000000000e-01 + 2.749600000000000e-01 + 1.543700000000000e-01 + 2.659500000000000e-02 +-8.779600000000000e-02 +-1.753500000000000e-01 +-2.351700000000000e-01 +-2.746000000000000e-01 +-3.002600000000000e-01 +-3.131700000000000e-01 +-3.123000000000000e-01 +-3.027100000000000e-01 +-2.993400000000000e-01 +-3.211700000000000e-01 +-3.785400000000000e-01 +-4.631300000000000e-01 +-5.490600000000000e-01 +-6.053600000000000e-01 +-6.113900000000000e-01 +-5.647700000000000e-01 +-4.775000000000000e-01 +-3.648200000000000e-01 +-2.364400000000000e-01 +-9.607499999999999e-02 + 5.267700000000000e-02 + 2.017300000000000e-01 + 3.409800000000000e-01 + 4.659900000000000e-01 + 5.829900000000000e-01 + 7.039000000000000e-01 + 8.329400000000000e-01 + 9.545000000000000e-01 + 1.033600000000000e+00 + 1.031700000000000e+00 + 9.282400000000000e-01 + 7.340600000000000e-01 + 4.853400000000000e-01 + 2.236400000000000e-01 +-2.428400000000000e-02 +-2.522200000000000e-01 +-4.630800000000000e-01 +-6.515700000000000e-01 +-7.968100000000000e-01 +-8.725600000000000e-01 +-8.673600000000000e-01 +-7.975500000000000e-01 +-7.002800000000000e-01 +-6.092400000000000e-01 +-5.304600000000000e-01 +-4.374800000000000e-01 +-2.916400000000000e-01 +-7.454500000000000e-02 + 1.907300000000000e-01 + 4.456900000000000e-01 + 6.267200000000001e-01 + 6.991900000000000e-01 + 6.722700000000000e-01 + 5.856000000000000e-01 + 4.791500000000000e-01 + 3.688300000000000e-01 + 2.442900000000000e-01 + 8.834699999999999e-02 +-9.921500000000000e-02 +-2.924300000000000e-01 +-4.515500000000000e-01 +-5.468700000000000e-01 +-5.757100000000001e-01 +-5.597100000000000e-01 +-5.256500000000000e-01 +-4.845800000000000e-01 +-4.250800000000000e-01 +-3.246800000000000e-01 +-1.696500000000000e-01 + 3.186700000000000e-02 + 2.526000000000000e-01 + 4.610500000000000e-01 + 6.359900000000001e-01 + 7.700000000000000e-01 + 8.609599999999999e-01 + 9.012400000000000e-01 + 8.754000000000000e-01 + 7.701300000000000e-01 + 5.890600000000000e-01 + 3.596700000000000e-01 + 1.249600000000000e-01 +-7.652600000000000e-02 +-2.289400000000000e-01 +-3.432500000000000e-01 +-4.441200000000000e-01 +-5.488499999999999e-01 +-6.531100000000000e-01 +-7.329700000000000e-01 +-7.608400000000000e-01 +-7.233700000000000e-01 +-6.287700000000001e-01 +-4.997800000000000e-01 +-3.592100000000000e-01 +-2.197200000000000e-01 +-8.494200000000000e-02 + 4.092400000000000e-02 + 1.449500000000000e-01 + 2.071500000000000e-01 + 2.119900000000000e-01 + 1.610400000000000e-01 + 7.676400000000000e-02 +-6.220000000000000e-03 +-5.623900000000000e-02 +-5.551600000000000e-02 +-5.743400000000000e-04 + 1.051600000000000e-01 + 2.574400000000000e-01 + 4.487900000000000e-01 + 6.593400000000000e-01 + 8.505200000000001e-01 + 9.714800000000000e-01 + 9.785900000000000e-01 + 8.573600000000000e-01 + 6.316400000000000e-01 + 3.522500000000000e-01 + 7.113400000000000e-02 +-1.823800000000000e-01 +-4.078000000000000e-01 +-6.189000000000000e-01 +-8.199400000000000e-01 +-9.904400000000000e-01 +-1.090100000000000e+00 +-1.080600000000000e+00 +-9.504100000000000e-01 +-7.245500000000000e-01 +-4.552200000000000e-01 +-1.979200000000000e-01 + 1.126700000000000e-02 + 1.650400000000000e-01 + 2.778500000000000e-01 + 3.693200000000000e-01 + 4.491400000000000e-01 + 5.118500000000000e-01 + 5.425200000000000e-01 + 5.281500000000000e-01 + 4.670700000000000e-01 + 3.709500000000000e-01 + 2.592500000000000e-01 + 1.501400000000000e-01 + 5.404500000000000e-02 +-2.630600000000000e-02 +-9.037100000000001e-02 +-1.339800000000000e-01 +-1.490500000000000e-01 +-1.305100000000000e-01 +-8.538300000000000e-02 +-3.578600000000000e-02 +-1.023100000000000e-02 +-2.653300000000000e-02 +-7.745700000000000e-02 +-1.308700000000000e-01 +-1.471100000000000e-01 +-1.034900000000000e-01 +-9.363700000000001e-03 + 9.955300000000000e-02 + 1.837600000000000e-01 + 2.230200000000000e-01 + 2.227300000000000e-01 + 1.998600000000000e-01 + 1.613200000000000e-01 + 9.436500000000000e-02 +-2.110000000000000e-02 +-1.872300000000000e-01 +-3.716300000000000e-01 +-5.161800000000000e-01 +-5.684000000000000e-01 +-5.137699999999999e-01 +-3.844700000000000e-01 +-2.371100000000000e-01 +-1.156600000000000e-01 +-2.700200000000000e-02 + 5.323500000000000e-02 + 1.510300000000000e-01 + 2.654400000000000e-01 + 3.645900000000000e-01 + 4.089800000000000e-01 + 3.827100000000000e-01 + 3.069700000000000e-01 + 2.251200000000000e-01 + 1.718800000000000e-01 + 1.518600000000000e-01 + 1.437400000000000e-01 + 1.248600000000000e-01 + 9.389800000000000e-02 + 7.189400000000000e-02 + 8.093400000000001e-02 + 1.196300000000000e-01 + 1.578100000000000e-01 + 1.569500000000000e-01 + 1.009100000000000e-01 + 1.176700000000000e-02 +-6.351200000000000e-02 +-8.704400000000000e-02 +-5.958100000000000e-02 +-2.330500000000000e-02 +-3.535600000000000e-02 +-1.307600000000000e-01 +-3.001700000000000e-01 +-4.959400000000000e-01 +-6.597200000000000e-01 +-7.514600000000000e-01 +-7.619800000000000e-01 +-7.053900000000000e-01 +-6.014300000000000e-01 +-4.620400000000000e-01 +-2.897100000000000e-01 +-8.501499999999999e-02 + 1.447200000000000e-01 + 3.820300000000000e-01 + 6.020600000000000e-01 + 7.784400000000000e-01 + 8.891600000000000e-01 + 9.211900000000000e-01 + 8.738500000000000e-01 + 7.597800000000000e-01 + 6.023400000000000e-01 + 4.290700000000000e-01 + 2.638600000000000e-01 + 1.215100000000000e-01 + 6.933700000000000e-03 +-8.248999999999999e-02 +-1.545700000000000e-01 +-2.216000000000000e-01 +-2.989400000000000e-01 +-3.994500000000000e-01 +-5.233400000000000e-01 +-6.497300000000000e-01 +-7.383100000000000e-01 +-7.453400000000000e-01 +-6.474299999999999e-01 +-4.585000000000000e-01 +-2.269300000000000e-01 +-1.230600000000000e-02 + 1.447400000000000e-01 + 2.399000000000000e-01 + 2.985600000000000e-01 + 3.505700000000000e-01 + 4.052600000000000e-01 + 4.446000000000000e-01 + 4.387300000000000e-01 + 3.714700000000000e-01 + 2.562900000000000e-01 + 1.311600000000000e-01 + 3.665100000000000e-02 +-6.435000000000000e-03 +-4.745200000000000e-03 + 1.791800000000000e-02 + 3.889200000000000e-02 + 4.880800000000000e-02 + 5.045100000000000e-02 + 4.862000000000000e-02 + 4.166500000000000e-02 + 2.200300000000000e-02 +-1.623000000000000e-02 +-7.086400000000000e-02 +-1.335600000000000e-01 +-1.985200000000000e-01 +-2.695300000000000e-01 +-3.571700000000000e-01 +-4.662300000000000e-01 +-5.825900000000001e-01 +-6.713800000000000e-01 +-6.908000000000000e-01 +-6.146600000000000e-01 +-4.489100000000000e-01 +-2.307300000000000e-01 +-9.763500000000000e-03 + 1.765500000000000e-01 + 3.181400000000000e-01 + 4.293900000000000e-01 + 5.320100000000000e-01 + 6.366300000000000e-01 + 7.353900000000000e-01 + 8.089300000000000e-01 + 8.404800000000000e-01 + 8.260999999999999e-01 + 7.738400000000000e-01 + 6.945000000000000e-01 + 5.923400000000000e-01 + 4.636800000000000e-01 + 3.039800000000000e-01 + 1.170500000000000e-01 +-8.162700000000001e-02 +-2.703400000000000e-01 +-4.313000000000000e-01 +-5.577600000000000e-01 +-6.530100000000000e-01 +-7.229500000000000e-01 +-7.685100000000000e-01 +-7.839500000000000e-01 +-7.617200000000000e-01 +-6.994800000000000e-01 +-6.036899999999999e-01 +-4.876400000000000e-01 +-3.665000000000000e-01 +-2.534000000000000e-01 +-1.585700000000000e-01 +-8.978100000000000e-02 +-5.116100000000000e-02 +-4.005000000000000e-02 +-4.478200000000000e-02 +-4.706000000000000e-02 +-2.918200000000000e-02 + 1.816500000000000e-02 + 9.314799999999999e-02 + 1.869500000000000e-01 + 2.908100000000000e-01 + 3.993800000000000e-01 + 5.072300000000000e-01 + 6.025100000000000e-01 + 6.659200000000000e-01 + 6.794500000000000e-01 + 6.408900000000000e-01 + 5.724300000000000e-01 + 5.138000000000000e-01 + 5.011500000000000e-01 + 5.441100000000000e-01 + 6.172600000000000e-01 + 6.725700000000000e-01 + 6.648500000000001e-01 + 5.729200000000000e-01 + 4.028100000000000e-01 + 1.737400000000000e-01 +-9.954900000000000e-02 +-4.124600000000000e-01 +-7.598100000000000e-01 +-1.118600000000000e+00 +-1.440500000000000e+00 +-1.663800000000000e+00 +-1.738200000000000e+00 +-1.647500000000000e+00 +-1.414800000000000e+00 +-1.088700000000000e+00 +-7.206000000000000e-01 +-3.488100000000000e-01 + 4.364200000000000e-03 + 3.243600000000000e-01 + 5.953200000000000e-01 + 7.977400000000000e-01 + 9.134900000000000e-01 + 9.334300000000000e-01 + 8.629599999999999e-01 + 7.237100000000000e-01 + 5.519500000000001e-01 + 3.937700000000000e-01 + 2.952400000000000e-01 + 2.878300000000000e-01 + 3.740200000000000e-01 + 5.217300000000000e-01 + 6.739900000000000e-01 + 7.716700000000000e-01 + 7.773700000000000e-01 + 6.868600000000000e-01 + 5.224100000000000e-01 + 3.147600000000000e-01 + 8.774500000000000e-02 +-1.447500000000000e-01 +-3.712200000000000e-01 +-5.754899999999999e-01 +-7.396400000000000e-01 +-8.553900000000000e-01 +-9.322800000000000e-01 +-9.914900000000000e-01 +-1.046200000000000e+00 +-1.082600000000000e+00 +-1.060200000000000e+00 +-9.337299999999999e-01 +-6.873200000000000e-01 +-3.536900000000000e-01 +-5.204500000000000e-03 + 2.801500000000000e-01 + 4.558000000000000e-01 + 5.233900000000000e-01 + 5.213400000000000e-01 + 4.966900000000000e-01 + 4.813500000000000e-01 + 4.860100000000000e-01 + 5.092800000000000e-01 + 5.485000000000000e-01 + 6.010000000000000e-01 + 6.568300000000000e-01 + 6.940200000000000e-01 + 6.851600000000000e-01 + 6.134800000000000e-01 + 4.854800000000000e-01 + 3.284400000000000e-01 + 1.725500000000000e-01 + 3.098400000000000e-02 +-1.060500000000000e-01 +-2.578700000000000e-01 +-4.308200000000000e-01 +-6.046500000000000e-01 +-7.394100000000000e-01 +-7.984200000000000e-01 +-7.703900000000000e-01 +-6.746400000000000e-01 +-5.465100000000001e-01 +-4.148600000000000e-01 +-2.884200000000000e-01 +-1.598400000000000e-01 +-2.213700000000000e-02 + 1.165500000000000e-01 + 2.314800000000000e-01 + 2.937700000000000e-01 + 2.870100000000000e-01 + 2.166200000000000e-01 + 1.066000000000000e-01 +-1.216600000000000e-02 +-1.138100000000000e-01 +-1.830100000000000e-01 +-2.138300000000000e-01 +-2.054300000000000e-01 +-1.589200000000000e-01 +-7.639799999999999e-02 + 3.852200000000000e-02 + 1.798400000000000e-01 + 3.378100000000000e-01 + 4.967400000000000e-01 + 6.333500000000000e-01 + 7.182600000000000e-01 + 7.229900000000000e-01 + 6.311900000000000e-01 + 4.490100000000000e-01 + 2.081700000000000e-01 +-4.146900000000000e-02 +-2.475600000000000e-01 +-3.720600000000000e-01 +-4.017800000000000e-01 +-3.493000000000000e-01 +-2.455500000000000e-01 +-1.291800000000000e-01 +-3.667300000000000e-02 + 4.677400000000000e-03 +-1.856600000000000e-02 +-1.031500000000000e-01 +-2.289600000000000e-01 +-3.631100000000000e-01 +-4.688500000000000e-01 +-5.170300000000000e-01 +-4.955400000000000e-01 +-4.120900000000000e-01 +-2.889100000000000e-01 +-1.519600000000000e-01 +-2.053500000000000e-02 + 9.774099999999999e-02 + 2.044700000000000e-01 + 3.034400000000000e-01 + 3.937900000000000e-01 + 4.675400000000000e-01 + 5.122000000000000e-01 + 5.160000000000000e-01 + 4.722900000000000e-01 + 3.814600000000000e-01 + 2.509300000000000e-01 + 9.514900000000000e-02 +-6.414300000000001e-02 +-1.992900000000000e-01 +-2.821700000000000e-01 +-2.938900000000000e-01 +-2.349900000000000e-01 +-1.295200000000000e-01 +-1.870800000000000e-02 + 5.484700000000000e-02 + 6.494800000000001e-02 + 1.225700000000000e-02 +-7.810900000000000e-02 +-1.699300000000000e-01 +-2.322900000000000e-01 +-2.503900000000000e-01 +-2.267300000000000e-01 +-1.747800000000000e-01 +-1.108900000000000e-01 +-4.906700000000000e-02 + 4.536600000000000e-04 + 3.076100000000000e-02 + 3.830100000000000e-02 + 2.372200000000000e-02 +-7.638000000000000e-03 +-4.661100000000000e-02 +-8.204800000000000e-02 +-1.025200000000000e-01 +-9.747000000000000e-02 +-5.876500000000000e-02 + 1.665000000000000e-02 + 1.237300000000000e-01 + 2.487600000000000e-01 + 3.732800000000000e-01 + 4.813800000000000e-01 + 5.655200000000000e-01 + 6.260800000000000e-01 + 6.640700000000000e-01 + 6.724599999999999e-01 + 6.342200000000000e-01 + 5.306100000000000e-01 + 3.552100000000000e-01 + 1.234300000000000e-01 +-1.308000000000000e-01 +-3.705500000000000e-01 +-5.730499999999999e-01 +-7.364600000000000e-01 +-8.714100000000000e-01 +-9.840500000000000e-01 +-1.064100000000000e+00 +-1.087200000000000e+00 +-1.029500000000000e+00 +-8.840300000000000e-01 +-6.660900000000000e-01 +-4.057100000000000e-01 +-1.338200000000000e-01 + 1.267100000000000e-01 + 3.602000000000000e-01 + 5.519300000000000e-01 + 6.855100000000000e-01 + 7.484000000000000e-01 + 7.412700000000000e-01 + 6.817299999999999e-01 + 5.963300000000000e-01 + 5.051200000000000e-01 + 4.102600000000000e-01 + 2.987200000000000e-01 + 1.581900000000000e-01 +-5.275100000000000e-03 +-1.619500000000000e-01 +-2.708000000000000e-01 +-3.015900000000000e-01 +-2.514400000000000e-01 +-1.443100000000000e-01 +-1.436900000000000e-02 + 1.144100000000000e-01 + 2.382200000000000e-01 + 3.667100000000000e-01 + 5.055400000000000e-01 + 6.413200000000000e-01 + 7.398000000000000e-01 + 7.589500000000000e-01 + 6.691300000000000e-01 + 4.686200000000000e-01 + 1.863600000000000e-01 +-1.289100000000000e-01 +-4.268500000000000e-01 +-6.719100000000000e-01 +-8.505900000000000e-01 +-9.677400000000000e-01 +-1.035500000000000e+00 +-1.062100000000000e+00 +-1.047700000000000e+00 +-9.877300000000000e-01 +-8.816600000000000e-01 +-7.385699999999999e-01 +-5.749200000000000e-01 +-4.057100000000000e-01 +-2.360000000000000e-01 +-6.062700000000000e-02 + 1.266100000000000e-01 + 3.208700000000000e-01 + 5.019100000000000e-01 + 6.431700000000000e-01 + 7.293500000000001e-01 + 7.695800000000000e-01 + 7.944000000000000e-01 + 8.360400000000000e-01 + 9.042100000000000e-01 + 9.744800000000000e-01 + 9.988200000000000e-01 + 9.325500000000000e-01 + 7.608400000000000e-01 + 5.078100000000000e-01 + 2.237600000000000e-01 +-4.002300000000000e-02 +-2.524600000000000e-01 +-4.083500000000000e-01 +-5.189700000000000e-01 +-5.972700000000000e-01 +-6.482500000000000e-01 +-6.686700000000000e-01 +-6.527300000000000e-01 +-5.977800000000000e-01 +-5.067500000000000e-01 +-3.884000000000000e-01 +-2.574200000000000e-01 +-1.341800000000000e-01 +-4.151000000000000e-02 + 3.419100000000000e-03 +-9.167800000000000e-04 +-3.509300000000000e-02 +-6.422000000000000e-02 +-5.391300000000000e-02 + 1.106600000000000e-02 + 1.164600000000000e-01 + 2.233400000000000e-01 + 2.861500000000000e-01 + 2.742800000000000e-01 + 1.859100000000000e-01 + 4.771400000000000e-02 +-9.800600000000000e-02 +-2.112000000000000e-01 +-2.681800000000000e-01 +-2.665400000000000e-01 +-2.204300000000000e-01 +-1.501900000000000e-01 +-7.206200000000000e-02 + 7.078400000000000e-03 + 8.796700000000000e-02 + 1.720600000000000e-01 + 2.543800000000000e-01 + 3.211500000000000e-01 + 3.544900000000000e-01 + 3.418000000000000e-01 + 2.842700000000000e-01 + 1.989600000000000e-01 + 1.129500000000000e-01 + 5.250400000000000e-02 + 3.281500000000000e-02 + 5.305100000000000e-02 + 9.787999999999999e-02 + 1.439300000000000e-01 + 1.684200000000000e-01 + 1.574300000000000e-01 + 1.115300000000000e-01 + 4.629300000000000e-02 +-1.418100000000000e-02 +-4.960100000000000e-02 +-5.620500000000000e-02 +-5.192100000000000e-02 +-6.858800000000000e-02 +-1.335700000000000e-01 +-2.509900000000000e-01 +-3.947700000000000e-01 +-5.192200000000000e-01 +-5.815000000000000e-01 +-5.622800000000000e-01 +-4.723300000000000e-01 +-3.426400000000000e-01 +-2.064900000000000e-01 +-8.562200000000000e-02 + 1.250400000000000e-02 + 8.925700000000000e-02 + 1.489900000000000e-01 + 1.980400000000000e-01 + 2.464000000000000e-01 + 3.056600000000000e-01 + 3.803000000000000e-01 + 4.574500000000000e-01 + 5.051900000000000e-01 + 4.852900000000000e-01 + 3.751900000000000e-01 + 1.853000000000000e-01 +-4.142700000000000e-02 +-2.487900000000000e-01 +-3.933000000000000e-01 +-4.599600000000000e-01 +-4.588600000000000e-01 +-4.079800000000000e-01 +-3.168900000000000e-01 +-1.838400000000000e-01 +-6.711500000000000e-03 + 2.027400000000000e-01 + 4.139200000000000e-01 + 5.861100000000000e-01 + 6.846600000000000e-01 + 6.936400000000000e-01 + 6.179500000000000e-01 + 4.765900000000000e-01 + 2.937400000000000e-01 + 9.332699999999999e-02 +-1.026200000000000e-01 +-2.748000000000000e-01 +-4.089300000000000e-01 +-4.978200000000000e-01 +-5.407600000000000e-01 +-5.397500000000000e-01 +-4.964200000000000e-01 +-4.136100000000000e-01 +-3.012400000000000e-01 +-1.808600000000000e-01 +-8.215100000000000e-02 +-3.058300000000000e-02 +-3.342700000000000e-02 +-7.475000000000000e-02 +-1.243700000000000e-01 +-1.554000000000000e-01 +-1.579400000000000e-01 +-1.393700000000000e-01 +-1.122100000000000e-01 +-8.036000000000000e-02 +-3.543500000000000e-02 + 3.403300000000000e-02 + 1.287500000000000e-01 + 2.324500000000000e-01 + 3.191500000000000e-01 + 3.687500000000000e-01 + 3.789900000000000e-01 + 3.654900000000000e-01 + 3.509100000000000e-01 + 3.521700000000000e-01 + 3.742400000000000e-01 + 4.121400000000000e-01 + 4.558100000000000e-01 + 4.924200000000000e-01 + 5.054400000000000e-01 + 4.748100000000000e-01 + 3.823100000000000e-01 + 2.202900000000000e-01 +-2.405200000000000e-03 +-2.620900000000000e-01 +-5.281300000000000e-01 +-7.702100000000000e-01 +-9.597700000000000e-01 +-1.067900000000000e+00 +-1.067300000000000e+00 +-9.442600000000000e-01 +-7.143100000000000e-01 +-4.295000000000000e-01 +-1.639100000000000e-01 + 1.892700000000000e-02 + 9.857700000000000e-02 + 1.075300000000000e-01 + 1.091200000000000e-01 + 1.566700000000000e-01 + 2.611000000000000e-01 + 3.885200000000000e-01 + 4.873900000000000e-01 + 5.237100000000000e-01 + 4.985800000000000e-01 + 4.380800000000000e-01 + 3.677100000000000e-01 + 2.944700000000000e-01 + 2.104900000000000e-01 + 1.121700000000000e-01 + 1.497200000000000e-02 +-5.130600000000000e-02 +-6.397400000000000e-02 +-2.686900000000000e-02 + 2.999900000000000e-02 + 7.161800000000000e-02 + 8.279499999999999e-02 + 7.591400000000000e-02 + 7.541200000000001e-02 + 9.287100000000000e-02 + 1.148600000000000e-01 + 1.145000000000000e-01 + 7.649800000000000e-02 + 1.285600000000000e-02 +-4.641100000000000e-02 +-8.123100000000000e-02 +-1.040300000000000e-01 +-1.549200000000000e-01 +-2.692400000000000e-01 +-4.411400000000000e-01 +-6.133400000000000e-01 +-7.051300000000000e-01 +-6.620100000000000e-01 +-4.924300000000000e-01 +-2.654600000000000e-01 +-7.025200000000000e-02 + 3.455100000000000e-02 + 4.786200000000000e-02 + 1.445800000000000e-02 +-1.261700000000000e-02 +-6.289400000000000e-03 + 2.655700000000000e-02 + 6.394600000000000e-02 + 9.503499999999999e-02 + 1.313600000000000e-01 + 1.954700000000000e-01 + 2.986100000000000e-01 + 4.271100000000000e-01 + 5.489000000000001e-01 + 6.344000000000000e-01 + 6.742800000000000e-01 + 6.799500000000001e-01 + 6.668300000000000e-01 + 6.346200000000000e-01 + 5.615100000000000e-01 + 4.182000000000000e-01 + 1.926500000000000e-01 +-9.240200000000000e-02 +-3.823400000000000e-01 +-6.132500000000000e-01 +-7.404700000000000e-01 +-7.559500000000000e-01 +-6.855300000000000e-01 +-5.704300000000000e-01 +-4.461800000000000e-01 +-3.315400000000000e-01 +-2.313800000000000e-01 +-1.474200000000000e-01 +-8.640500000000000e-02 +-5.911000000000000e-02 +-7.152799999999999e-02 +-1.160800000000000e-01 +-1.707000000000000e-01 +-2.077700000000000e-01 +-2.075100000000000e-01 +-1.672100000000000e-01 +-1.002700000000000e-01 +-2.636700000000000e-02 + 4.038500000000000e-02 + 9.717199999999999e-02 + 1.492300000000000e-01 + 2.011800000000000e-01 + 2.501900000000000e-01 + 2.866400000000000e-01 + 3.016500000000000e-01 + 2.956300000000000e-01 + 2.811100000000000e-01 + 2.766200000000000e-01 + 2.954700000000000e-01 + 3.363000000000000e-01 + 3.817300000000000e-01 + 4.063300000000000e-01 + 3.892200000000000e-01 + 3.245400000000000e-01 + 2.242300000000000e-01 + 1.123600000000000e-01 + 1.401600000000000e-02 +-5.563600000000000e-02 +-9.740900000000000e-02 +-1.266500000000000e-01 +-1.648800000000000e-01 +-2.278800000000000e-01 +-3.156400000000000e-01 +-4.092200000000000e-01 +-4.774400000000000e-01 +-4.910300000000000e-01 +-4.380300000000000e-01 +-3.320600000000000e-01 +-2.086100000000000e-01 +-1.101900000000000e-01 +-6.799300000000000e-02 +-8.888500000000001e-02 +-1.540600000000000e-01 +-2.285500000000000e-01 +-2.759000000000000e-01 +-2.708100000000000e-01 +-2.055900000000000e-01 +-9.048900000000000e-02 + 5.005900000000000e-02 + 1.834100000000000e-01 + 2.768100000000000e-01 + 3.074600000000000e-01 + 2.720100000000000e-01 + 1.908800000000000e-01 + 1.030000000000000e-01 + 5.112500000000000e-02 + 6.372800000000001e-02 + 1.426600000000000e-01 + 2.633700000000000e-01 + 3.875200000000000e-01 + 4.806500000000000e-01 + 5.253500000000000e-01 + 5.238400000000000e-01 + 4.909300000000000e-01 + 4.430400000000000e-01 + 3.900700000000000e-01 + 3.325300000000000e-01 + 2.633800000000000e-01 + 1.716800000000000e-01 + 4.726300000000000e-02 +-1.137900000000000e-01 +-3.034000000000000e-01 +-4.986500000000000e-01 +-6.659100000000000e-01 +-7.727700000000000e-01 +-8.033300000000000e-01 +-7.673200000000000e-01 +-6.958800000000001e-01 +-6.242100000000000e-01 +-5.710800000000000e-01 +-5.282600000000000e-01 +-4.676400000000000e-01 +-3.616400000000000e-01 +-2.034200000000000e-01 +-1.325700000000000e-02 + 1.727500000000000e-01 + 3.231100000000000e-01 + 4.259000000000000e-01 + 4.888800000000000e-01 + 5.264799999999999e-01 + 5.455400000000000e-01 + 5.408500000000001e-01 + 5.034200000000000e-01 + 4.334900000000000e-01 + 3.469400000000000e-01 + 2.693700000000000e-01 + 2.223000000000000e-01 + 2.117100000000000e-01 + 2.271600000000000e-01 + 2.508000000000000e-01 + 2.685500000000000e-01 + 2.750300000000000e-01 + 2.702500000000000e-01 + 2.528700000000000e-01 + 2.166900000000000e-01 + 1.531800000000000e-01 + 5.655900000000000e-02 +-7.345800000000000e-02 +-2.330900000000000e-01 +-4.167000000000000e-01 +-6.153600000000000e-01 +-8.113300000000000e-01 +-9.743600000000000e-01 +-1.066500000000000e+00 +-1.056900000000000e+00 +-9.382900000000000e-01 +-7.336200000000000e-01 +-4.860900000000000e-01 +-2.372100000000000e-01 +-7.813300000000000e-03 + 2.048600000000000e-01 + 4.119700000000000e-01 + 6.117700000000000e-01 + 7.790500000000000e-01 + 8.747300000000000e-01 + 8.697600000000000e-01 + 7.668300000000000e-01 + 6.041900000000000e-01 + 4.389400000000000e-01 + 3.203700000000000e-01 + 2.699900000000000e-01 + 2.781600000000000e-01 + 3.156000000000000e-01 + 3.495300000000000e-01 + 3.546400000000000e-01 + 3.163600000000000e-01 + 2.301500000000000e-01 + 1.012500000000000e-01 +-5.499900000000000e-02 +-2.160400000000000e-01 +-3.602600000000000e-01 +-4.772100000000000e-01 +-5.722800000000000e-01 +-6.605300000000000e-01 +-7.523700000000000e-01 +-8.411400000000000e-01 +-9.027900000000000e-01 +-9.096200000000000e-01 +-8.489600000000000e-01 +-7.332000000000000e-01 +-5.930000000000000e-01 +-4.577800000000000e-01 +-3.371000000000000e-01 +-2.160100000000000e-01 +-6.779499999999999e-02 + 1.252800000000000e-01 + 3.574500000000000e-01 + 6.005200000000001e-01 + 8.184000000000000e-01 + 9.840900000000000e-01 + 1.087800000000000e+00 + 1.132500000000000e+00 + 1.123800000000000e+00 + 1.062200000000000e+00 + 9.456200000000000e-01 + 7.782000000000000e-01 + 5.782400000000000e-01 + 3.768500000000000e-01 + 2.069200000000000e-01 + 8.871700000000000e-02 + 2.112000000000000e-02 +-1.585900000000000e-02 +-4.924700000000000e-02 +-9.959800000000001e-02 +-1.739200000000000e-01 +-2.682000000000000e-01 +-3.758400000000000e-01 +-4.946000000000000e-01 +-6.261800000000000e-01 +-7.688000000000000e-01 +-9.092500000000000e-01 +-1.022000000000000e+00 +-1.078600000000000e+00 +-1.062500000000000e+00 +-9.803100000000000e-01 +-8.593300000000000e-01 +-7.326900000000000e-01 +-6.197700000000000e-01 +-5.153000000000000e-01 +-3.949000000000000e-01 +-2.343900000000000e-01 +-3.021700000000000e-02 + 1.929300000000000e-01 + 3.931600000000000e-01 + 5.345500000000000e-01 + 6.076500000000000e-01 + 6.344300000000000e-01 + 6.548200000000000e-01 + 7.035900000000000e-01 + 7.917500000000000e-01 + 9.023600000000001e-01 + 1.001400000000000e+00 + 1.055700000000000e+00 + 1.047700000000000e+00 + 9.807800000000000e-01 + 8.757200000000001e-01 + 7.604900000000000e-01 + 6.592200000000000e-01 + 5.825600000000000e-01 + 5.218800000000000e-01 + 4.501100000000000e-01 + 3.307400000000000e-01 + 1.335600000000000e-01 +-1.489000000000000e-01 +-4.928700000000000e-01 +-8.486100000000000e-01 +-1.158400000000000e+00 +-1.378300000000000e+00 +-1.492000000000000e+00 +-1.510200000000000e+00 +-1.457700000000000e+00 +-1.356700000000000e+00 +-1.217000000000000e+00 +-1.037600000000000e+00 +-8.162300000000000e-01 +-5.591100000000000e-01 +-2.838000000000000e-01 +-1.484200000000000e-02 + 2.244500000000000e-01 + 4.184100000000000e-01 + 5.609100000000000e-01 + 6.535100000000000e-01 + 7.027600000000001e-01 + 7.188000000000000e-01 + 7.147000000000000e-01 + 7.047600000000001e-01 + 7.006900000000000e-01 + 7.064500000000000e-01 + 7.147700000000000e-01 + 7.082300000000000e-01 + 6.654099999999999e-01 + 5.700100000000000e-01 + 4.186900000000000e-01 + 2.237500000000000e-01 + 9.310000000000001e-03 +-1.969600000000000e-01 +-3.723600000000000e-01 +-5.035600000000000e-01 +-5.854600000000000e-01 +-6.163500000000000e-01 +-5.935300000000000e-01 +-5.130900000000000e-01 +-3.742800000000000e-01 +-1.853800000000000e-01 + 3.321800000000000e-02 + 2.514700000000000e-01 + 4.366400000000000e-01 + 5.612200000000001e-01 + 6.083499999999999e-01 + 5.739000000000000e-01 + 4.664200000000000e-01 + 3.063400000000000e-01 + 1.239100000000000e-01 +-4.657500000000000e-02 +-1.769300000000000e-01 +-2.561000000000000e-01 +-2.953400000000000e-01 +-3.218700000000000e-01 +-3.623900000000000e-01 +-4.254000000000000e-01 +-4.944500000000000e-01 +-5.383200000000000e-01 +-5.325800000000001e-01 +-4.779500000000000e-01 +-4.018600000000000e-01 +-3.405600000000000e-01 +-3.137200000000000e-01 +-3.097100000000000e-01 +-2.931100000000000e-01 +-2.303200000000000e-01 +-1.154600000000000e-01 + 2.246800000000000e-02 + 1.373600000000000e-01 + 1.973800000000000e-01 + 2.084800000000000e-01 + 2.134500000000000e-01 + 2.664700000000000e-01 + 3.992600000000000e-01 + 5.999700000000000e-01 + 8.171300000000000e-01 + 9.842100000000000e-01 + 1.049200000000000e+00 + 9.927200000000000e-01 + 8.281300000000000e-01 + 5.894400000000000e-01 + 3.174200000000000e-01 + 5.148500000000000e-02 +-1.729600000000000e-01 +-3.273100000000000e-01 +-3.964200000000000e-01 +-3.870200000000000e-01 +-3.306900000000000e-01 +-2.754600000000000e-01 +-2.669200000000000e-01 +-3.274300000000000e-01 +-4.450300000000000e-01 +-5.786400000000000e-01 +-6.773300000000000e-01 +-7.030999999999999e-01 +-6.455600000000000e-01 +-5.220200000000000e-01 +-3.656800000000000e-01 +-2.103300000000000e-01 +-8.033200000000000e-02 + 1.087900000000000e-02 + 5.697600000000000e-02 + 5.577000000000000e-02 + 1.082200000000000e-02 +-6.400400000000001e-02 +-1.426800000000000e-01 +-1.924800000000000e-01 +-1.859600000000000e-01 +-1.129600000000000e-01 + 1.539800000000000e-02 + 1.739700000000000e-01 + 3.378500000000000e-01 + 4.940600000000000e-01 + 6.425700000000000e-01 + 7.864800000000000e-01 + 9.190000000000000e-01 + 1.017900000000000e+00 + 1.052700000000000e+00 + 1.001200000000000e+00 + 8.637300000000000e-01 + 6.655900000000000e-01 + 4.452400000000000e-01 + 2.359800000000000e-01 + 5.206000000000000e-02 +-1.130000000000000e-01 +-2.767700000000000e-01 +-4.545400000000000e-01 +-6.503100000000001e-01 +-8.553300000000000e-01 +-1.051700000000000e+00 +-1.216700000000000e+00 +-1.326700000000000e+00 +-1.360500000000000e+00 +-1.305300000000000e+00 +-1.163600000000000e+00 +-9.548100000000000e-01 +-7.093000000000000e-01 +-4.552900000000000e-01 +-2.064700000000000e-01 + 4.064800000000000e-02 + 2.965400000000000e-01 + 5.620800000000000e-01 + 8.174600000000000e-01 + 1.025800000000000e+00 + 1.150100000000000e+00 + 1.172900000000000e+00 + 1.104500000000000e+00 + 9.752500000000000e-01 + 8.172199999999999e-01 + 6.484200000000000e-01 + 4.706600000000000e-01 + 2.803900000000000e-01 + 8.335700000000000e-02 +-9.883500000000001e-02 +-2.352100000000000e-01 +-3.001900000000000e-01 +-2.865100000000000e-01 +-2.085600000000000e-01 +-9.569200000000000e-02 + 1.862500000000000e-02 + 1.056900000000000e-01 + 1.459800000000000e-01 + 1.309900000000000e-01 + 6.458000000000000e-02 +-3.657600000000000e-02 +-1.462800000000000e-01 +-2.373400000000000e-01 +-2.925000000000000e-01 +-3.114900000000000e-01 +-3.092700000000000e-01 +-3.062100000000000e-01 +-3.163500000000000e-01 +-3.415600000000000e-01 +-3.740800000000000e-01 +-4.041500000000000e-01 +-4.259300000000000e-01 +-4.378800000000000e-01 +-4.390800000000000e-01 +-4.264400000000000e-01 +-3.958000000000000e-01 +-3.452600000000000e-01 +-2.761200000000000e-01 +-1.894700000000000e-01 +-8.168000000000000e-02 + 5.488900000000000e-02 + 2.233200000000000e-01 + 4.110200000000000e-01 + 5.864200000000001e-01 + 7.103000000000000e-01 + 7.575600000000000e-01 + 7.348200000000000e-01 + 6.791000000000000e-01 + 6.352300000000000e-01 + 6.255800000000000e-01 + 6.334800000000000e-01 + 6.135100000000000e-01 + 5.227500000000000e-01 + 3.513900000000000e-01 + 1.306700000000000e-01 +-8.717500000000000e-02 +-2.620300000000000e-01 +-3.874600000000000e-01 +-4.857100000000000e-01 +-5.817000000000000e-01 +-6.774900000000000e-01 +-7.474200000000000e-01 +-7.571500000000000e-01 +-6.908700000000000e-01 +-5.649800000000000e-01 +-4.177100000000000e-01 +-2.833400000000000e-01 +-1.713100000000000e-01 +-6.559300000000000e-02 + 5.687100000000000e-02 + 2.043400000000000e-01 + 3.620300000000000e-01 + 5.022500000000000e-01 + 6.026300000000000e-01 + 6.571100000000000e-01 + 6.720300000000000e-01 + 6.528700000000000e-01 + 5.949800000000000e-01 + 4.866600000000000e-01 + 3.217200000000000e-01 + 1.098900000000000e-01 +-1.241200000000000e-01 +-3.519600000000000e-01 +-5.535000000000000e-01 +-7.194199999999999e-01 +-8.437200000000000e-01 +-9.149600000000000e-01 +-9.161800000000000e-01 +-8.353800000000000e-01 +-6.779900000000000e-01 +-4.694700000000000e-01 +-2.441300000000000e-01 +-2.754900000000000e-02 + 1.734300000000000e-01 + 3.649900000000000e-01 + 5.494000000000000e-01 + 7.111900000000000e-01 + 8.186300000000000e-01 + 8.410300000000001e-01 + 7.690100000000000e-01 + 6.226300000000000e-01 + 4.409300000000000e-01 + 2.611600000000000e-01 + 1.027900000000000e-01 +-3.273900000000000e-02 +-1.489800000000000e-01 +-2.406700000000000e-01 +-2.915300000000000e-01 +-2.857300000000000e-01 +-2.232900000000000e-01 +-1.262900000000000e-01 +-2.988700000000000e-02 + 3.620400000000000e-02 + 6.289500000000001e-02 + 6.368000000000000e-02 + 6.324800000000000e-02 + 8.160700000000000e-02 + 1.240500000000000e-01 + 1.813800000000000e-01 + 2.368000000000000e-01 + 2.728900000000000e-01 + 2.744100000000000e-01 + 2.282600000000000e-01 + 1.249300000000000e-01 +-3.694300000000000e-02 +-2.452600000000000e-01 +-4.734900000000000e-01 +-6.867200000000000e-01 +-8.521800000000000e-01 +-9.482100000000000e-01 +-9.666100000000000e-01 +-9.083400000000000e-01 +-7.775900000000000e-01 +-5.795700000000000e-01 +-3.240100000000000e-01 +-3.093800000000000e-02 + 2.673400000000000e-01 + 5.314100000000000e-01 + 7.257300000000000e-01 + 8.299200000000000e-01 + 8.442700000000000e-01 + 7.872200000000000e-01 + 6.864600000000000e-01 + 5.685800000000000e-01 + 4.515500000000000e-01 + 3.423800000000000e-01 + 2.398700000000000e-01 + 1.405500000000000e-01 + 4.506900000000000e-02 +-3.818300000000000e-02 +-9.447300000000000e-02 +-1.095000000000000e-01 +-7.866600000000000e-02 +-1.352600000000000e-02 + 5.947600000000000e-02 + 1.089200000000000e-01 + 1.123900000000000e-01 + 6.659400000000000e-02 +-1.257700000000000e-02 +-1.001100000000000e-01 +-1.754700000000000e-01 +-2.312100000000000e-01 +-2.718000000000000e-01 +-3.055000000000000e-01 +-3.366000000000000e-01 +-3.642400000000000e-01 +-3.872600000000000e-01 +-4.089100000000000e-01 +-4.346500000000000e-01 +-4.630000000000000e-01 +-4.769400000000000e-01 +-4.454500000000000e-01 +-3.386900000000000e-01 +-1.489600000000000e-01 + 9.667800000000000e-02 + 3.429400000000000e-01 + 5.305100000000000e-01 + 6.236900000000000e-01 + 6.244700000000000e-01 + 5.648600000000000e-01 + 4.842500000000000e-01 + 4.079000000000000e-01 + 3.402200000000000e-01 + 2.739200000000000e-01 + 2.043400000000000e-01 + 1.360600000000000e-01 + 7.727100000000001e-02 + 2.899300000000000e-02 +-1.920400000000000e-02 +-8.174200000000000e-02 +-1.637800000000000e-01 +-2.542500000000000e-01 +-3.323900000000000e-01 +-3.831800000000000e-01 +-4.084900000000000e-01 +-4.236600000000000e-01 +-4.413500000000000e-01 +-4.564800000000000e-01 +-4.458100000000000e-01 +-3.844600000000000e-01 +-2.667200000000000e-01 +-1.137800000000000e-01 + 3.933100000000000e-02 + 1.681100000000000e-01 + 2.750200000000000e-01 + 3.840500000000000e-01 + 5.167900000000000e-01 + 6.685600000000000e-01 + 8.036400000000000e-01 + 8.740300000000000e-01 + 8.478400000000000e-01 + 7.265800000000000e-01 + 5.399600000000000e-01 + 3.247500000000000e-01 + 1.057300000000000e-01 +-1.073500000000000e-01 +-3.080400000000000e-01 +-4.808300000000000e-01 +-6.019000000000000e-01 +-6.539500000000000e-01 +-6.418700000000001e-01 +-5.942000000000000e-01 +-5.466500000000000e-01 +-5.196100000000000e-01 +-5.072700000000000e-01 +-4.872200000000000e-01 +-4.422100000000000e-01 +-3.759200000000000e-01 +-3.094000000000000e-01 +-2.613600000000000e-01 +-2.289500000000000e-01 +-1.859800000000000e-01 +-1.011000000000000e-01 + 3.758400000000000e-02 + 2.108400000000000e-01 + 3.788000000000000e-01 + 5.057100000000000e-01 + 5.806800000000000e-01 + 6.195500000000000e-01 + 6.479700000000000e-01 + 6.792500000000000e-01 + 7.034000000000000e-01 + 6.941500000000000e-01 + 6.277800000000000e-01 + 5.000900000000000e-01 + 3.310700000000000e-01 + 1.556800000000000e-01 + 7.901900000000000e-03 +-9.311100000000000e-02 +-1.486000000000000e-01 +-1.767000000000000e-01 +-2.024000000000000e-01 +-2.451500000000000e-01 +-3.090700000000000e-01 +-3.803100000000000e-01 +-4.340200000000000e-01 +-4.483400000000000e-01 +-4.180500000000000e-01 +-3.592500000000000e-01 +-3.011400000000000e-01 +-2.695500000000000e-01 +-2.725800000000000e-01 +-2.974000000000000e-01 +-3.191800000000000e-01 +-3.147100000000000e-01 +-2.710800000000000e-01 +-1.856500000000000e-01 +-6.157500000000000e-02 + 9.348099999999999e-02 + 2.630400000000000e-01 + 4.173100000000000e-01 + 5.172200000000000e-01 + 5.301900000000001e-01 + 4.495200000000000e-01 + 3.035200000000000e-01 + 1.450100000000000e-01 + 2.548200000000000e-02 +-3.012800000000000e-02 +-3.172400000000000e-02 +-1.099300000000000e-02 + 2.195700000000000e-03 +-3.276300000000000e-03 +-1.991900000000000e-02 +-3.503800000000000e-02 +-4.394200000000000e-02 +-5.179400000000000e-02 +-6.433400000000000e-02 +-7.786200000000000e-02 +-7.902300000000000e-02 +-5.546200000000000e-02 +-8.020100000000000e-03 + 4.675300000000000e-02 + 8.683500000000000e-02 + 9.976599999999999e-02 + 9.035700000000001e-02 + 7.515900000000000e-02 + 6.879500000000000e-02 + 7.366600000000000e-02 + 8.090899999999999e-02 + 8.056600000000000e-02 + 7.138700000000001e-02 + 6.187600000000000e-02 + 6.242600000000000e-02 + 7.605900000000000e-02 + 9.566000000000000e-02 + 1.090300000000000e-01 + 1.060700000000000e-01 + 8.140699999999999e-02 + 3.160000000000000e-02 +-4.789700000000000e-02 +-1.600000000000000e-01 +-2.979300000000000e-01 +-4.392500000000000e-01 +-5.500400000000000e-01 +-5.999900000000000e-01 +-5.790500000000000e-01 +-5.033100000000000e-01 +-4.042000000000000e-01 +-3.076900000000000e-01 +-2.180600000000000e-01 +-1.178800000000000e-01 + 1.610900000000000e-02 + 1.928600000000000e-01 + 3.969300000000000e-01 + 5.943300000000000e-01 + 7.489700000000000e-01 + 8.374000000000000e-01 + 8.535800000000000e-01 + 8.036000000000000e-01 + 6.976500000000000e-01 + 5.461800000000000e-01 + 3.612300000000000e-01 + 1.591400000000000e-01 +-4.033800000000000e-02 +-2.187500000000000e-01 +-3.639100000000000e-01 +-4.713300000000000e-01 +-5.419900000000000e-01 +-5.794899999999999e-01 +-5.895899999999999e-01 +-5.813700000000001e-01 +-5.664000000000000e-01 +-5.532500000000000e-01 +-5.395900000000000e-01 +-5.084100000000000e-01 +-4.337800000000000e-01 +-2.952500000000000e-01 +-9.304500000000000e-02 + 1.462200000000000e-01 + 3.778700000000000e-01 + 5.575599999999999e-01 + 6.590100000000000e-01 + 6.816100000000000e-01 + 6.451100000000000e-01 + 5.768600000000000e-01 + 4.996100000000000e-01 + 4.260500000000000e-01 + 3.597200000000000e-01 + 2.986900000000000e-01 + 2.382300000000000e-01 + 1.716000000000000e-01 + 9.069800000000000e-02 +-1.147500000000000e-02 +-1.369000000000000e-01 +-2.791200000000000e-01 +-4.227100000000000e-01 +-5.465400000000000e-01 +-6.297000000000000e-01 +-6.578000000000001e-01 +-6.275100000000000e-01 +-5.477300000000001e-01 +-4.367900000000000e-01 +-3.163400000000000e-01 +-2.040100000000000e-01 +-1.077800000000000e-01 +-2.479500000000000e-02 + 5.480600000000000e-02 + 1.412800000000000e-01 + 2.395300000000000e-01 + 3.469900000000000e-01 + 4.549900000000000e-01 + 5.512700000000000e-01 + 6.212299999999999e-01 + 6.479000000000000e-01 + 6.132300000000001e-01 + 5.029400000000001e-01 + 3.146800000000000e-01 + 6.517900000000000e-02 +-2.086900000000000e-01 +-4.576100000000000e-01 +-6.337200000000000e-01 +-7.046800000000000e-01 +-6.619600000000000e-01 +-5.209400000000000e-01 +-3.146700000000000e-01 +-8.487599999999999e-02 + 1.271300000000000e-01 + 2.884700000000000e-01 + 3.812600000000000e-01 + 4.061000000000000e-01 + 3.800500000000000e-01 + 3.285700000000000e-01 + 2.738700000000000e-01 + 2.257700000000000e-01 + 1.802000000000000e-01 + 1.262800000000000e-01 + 5.697300000000000e-02 +-2.396000000000000e-02 +-1.036400000000000e-01 +-1.687400000000000e-01 +-2.145100000000000e-01 +-2.472100000000000e-01 +-2.781000000000000e-01 +-3.133700000000000e-01 +-3.477100000000000e-01 +-3.663800000000000e-01 +-3.546700000000000e-01 +-3.083500000000000e-01 +-2.376500000000000e-01 +-1.619700000000000e-01 +-9.860700000000000e-02 +-5.273600000000000e-02 +-1.514100000000000e-02 + 3.087300000000000e-02 + 9.775800000000000e-02 + 1.846700000000000e-01 + 2.769400000000000e-01 + 3.545500000000000e-01 + 4.043700000000000e-01 + 4.279800000000000e-01 + 4.396200000000000e-01 + 4.547000000000000e-01 + 4.762000000000000e-01 + 4.881700000000000e-01 + 4.621400000000000e-01 + 3.735400000000000e-01 + 2.188900000000000e-01 + 2.242000000000000e-02 +-1.725900000000000e-01 +-3.233900000000000e-01 +-4.069700000000000e-01 +-4.278500000000000e-01 +-4.112200000000000e-01 +-3.867500000000000e-01 +-3.736900000000000e-01 +-3.751600000000000e-01 +-3.825900000000000e-01 +-3.847900000000000e-01 +-3.749100000000000e-01 +-3.517700000000000e-01 +-3.171100000000000e-01 +-2.725100000000000e-01 +-2.183200000000000e-01 +-1.541400000000000e-01 +-7.905200000000000e-02 + 8.896100000000001e-03 + 1.125200000000000e-01 + 2.328700000000000e-01 + 3.646700000000000e-01 + 4.931400000000000e-01 + 5.957700000000000e-01 + 6.498500000000000e-01 + 6.421600000000000e-01 + 5.754000000000000e-01 + 4.674800000000000e-01 + 3.444400000000000e-01 + 2.311300000000000e-01 + 1.438600000000000e-01 + 8.702799999999999e-02 + 5.308500000000000e-02 + 2.486100000000000e-02 +-1.939700000000000e-02 +-9.769899999999999e-02 +-2.142900000000000e-01 +-3.528800000000000e-01 +-4.790500000000000e-01 +-5.535400000000000e-01 +-5.511500000000000e-01 +-4.744400000000000e-01 +-3.533400000000000e-01 +-2.300900000000000e-01 +-1.386600000000000e-01 +-9.157000000000000e-02 +-8.114100000000000e-02 +-9.190800000000000e-02 +-1.130500000000000e-01 +-1.411200000000000e-01 +-1.725000000000000e-01 +-1.943600000000000e-01 +-1.845200000000000e-01 +-1.234000000000000e-01 +-1.003000000000000e-02 + 1.306900000000000e-01 + 2.570800000000000e-01 + 3.322200000000000e-01 + 3.440800000000000e-01 + 3.112600000000000e-01 + 2.704700000000000e-01 + 2.546600000000000e-01 + 2.759400000000000e-01 + 3.228800000000000e-01 + 3.716500000000000e-01 + 4.015300000000000e-01 + 4.047600000000000e-01 + 3.864300000000000e-01 + 3.574300000000000e-01 + 3.268500000000000e-01 + 2.981300000000000e-01 + 2.689400000000000e-01 + 2.327400000000000e-01 + 1.805700000000000e-01 + 1.032500000000000e-01 +-5.100300000000000e-03 +-1.436700000000000e-01 +-3.042300000000000e-01 +-4.746100000000000e-01 +-6.441600000000000e-01 +-8.062600000000000e-01 +-9.544300000000000e-01 +-1.074100000000000e+00 +-1.137900000000000e+00 +-1.111100000000000e+00 +-9.690200000000000e-01 +-7.154400000000000e-01 +-3.908400000000000e-01 +-6.038700000000000e-02 + 2.128600000000000e-01 + 3.951900000000000e-01 + 4.933600000000000e-01 + 5.432800000000000e-01 + 5.841000000000000e-01 + 6.343900000000000e-01 + 6.846700000000000e-01 + 7.087300000000000e-01 + 6.840300000000000e-01 + 6.072600000000000e-01 + 4.963800000000000e-01 + 3.806300000000000e-01 + 2.866000000000000e-01 + 2.286700000000000e-01 + 2.064900000000000e-01 + 2.074100000000000e-01 + 2.108400000000000e-01 + 1.938400000000000e-01 + 1.387900000000000e-01 + 4.229800000000000e-02 +-7.924900000000000e-02 +-1.929800000000000e-01 +-2.632200000000000e-01 +-2.692800000000000e-01 +-2.168400000000000e-01 +-1.346900000000000e-01 +-5.864700000000000e-02 +-1.314500000000000e-02 +-2.962400000000000e-03 +-1.949600000000000e-02 +-5.468000000000000e-02 +-1.098100000000000e-01 +-1.913900000000000e-01 +-2.977900000000000e-01 +-4.096000000000000e-01 +-4.946700000000000e-01 +-5.269700000000000e-01 +-5.059500000000000e-01 +-4.601600000000000e-01 +-4.296300000000000e-01 +-4.377400000000000e-01 +-4.725400000000000e-01 +-4.921500000000000e-01 +-4.516100000000000e-01 +-3.327600000000000e-01 +-1.561600000000000e-01 + 3.290400000000000e-02 + 1.937300000000000e-01 + 3.133400000000000e-01 + 4.079700000000000e-01 + 5.040100000000000e-01 + 6.148000000000000e-01 + 7.311800000000001e-01 + 8.313000000000000e-01 + 8.993000000000000e-01 + 9.357100000000000e-01 + 9.501900000000000e-01 + 9.433600000000000e-01 + 8.946300000000000e-01 + 7.696600000000000e-01 + 5.453800000000000e-01 + 2.353900000000000e-01 +-1.047900000000000e-01 +-3.997400000000000e-01 +-5.917600000000000e-01 +-6.703400000000000e-01 +-6.740200000000000e-01 +-6.638500000000001e-01 +-6.855400000000000e-01 +-7.446900000000000e-01 +-8.091900000000000e-01 +-8.344500000000000e-01 +-7.927300000000000e-01 +-6.874400000000001e-01 +-5.454100000000000e-01 +-3.958300000000000e-01 +-2.525100000000000e-01 +-1.114600000000000e-01 + 3.681100000000000e-02 + 1.915300000000000e-01 + 3.353800000000000e-01 + 4.425600000000000e-01 + 4.950300000000000e-01 + 4.947800000000000e-01 + 4.633500000000000e-01 + 4.285400000000000e-01 + 4.074000000000000e-01 + 3.964300000000000e-01 + 3.747600000000000e-01 + 3.178600000000000e-01 + 2.134000000000000e-01 + 7.045700000000001e-02 +-8.198800000000001e-02 +-2.057600000000000e-01 +-2.679000000000000e-01 +-2.527800000000000e-01 +-1.676100000000000e-01 +-3.954400000000000e-02 + 9.440100000000000e-02 + 2.009900000000000e-01 + 2.620900000000000e-01 + 2.782800000000000e-01 + 2.627900000000000e-01 + 2.293000000000000e-01 + 1.814800000000000e-01 + 1.115800000000000e-01 + 9.818199999999999e-03 +-1.221400000000000e-01 +-2.638500000000000e-01 +-3.818500000000000e-01 +-4.463000000000000e-01 +-4.475700000000000e-01 +-4.012000000000000e-01 +-3.373100000000000e-01 +-2.821300000000000e-01 +-2.448000000000000e-01 +-2.185700000000000e-01 +-1.940000000000000e-01 +-1.722800000000000e-01 +-1.664400000000000e-01 +-1.884900000000000e-01 +-2.322500000000000e-01 +-2.666700000000000e-01 +-2.471900000000000e-01 +-1.395400000000000e-01 + 5.946100000000000e-02 + 3.176300000000000e-01 + 5.820400000000000e-01 + 8.023000000000000e-01 + 9.478600000000000e-01 + 1.011100000000000e+00 + 9.985700000000000e-01 + 9.203200000000000e-01 + 7.845900000000000e-01 + 5.997300000000000e-01 + 3.778900000000000e-01 + 1.357800000000000e-01 +-1.080500000000000e-01 +-3.360800000000000e-01 +-5.323700000000000e-01 +-6.820400000000000e-01 +-7.733200000000000e-01 +-8.032000000000000e-01 +-7.827200000000000e-01 +-7.351900000000000e-01 +-6.852300000000000e-01 +-6.443400000000000e-01 +-6.038900000000000e-01 +-5.423500000000000e-01 +-4.430400000000000e-01 +-3.091800000000000e-01 +-1.641000000000000e-01 +-3.525800000000000e-02 + 6.560600000000000e-02 + 1.503500000000000e-01 + 2.433500000000000e-01 + 3.600700000000000e-01 + 4.925400000000000e-01 + 6.137000000000000e-01 + 6.970000000000000e-01 + 7.345699999999999e-01 + 7.386700000000000e-01 + 7.252700000000000e-01 + 6.944500000000000e-01 + 6.257900000000000e-01 + 4.946900000000000e-01 + 2.975200000000000e-01 + 6.455800000000000e-02 +-1.516800000000000e-01 +-3.059600000000000e-01 +-3.862000000000000e-01 +-4.168500000000000e-01 +-4.377800000000000e-01 +-4.755800000000000e-01 +-5.283700000000000e-01 +-5.734600000000000e-01 +-5.884900000000000e-01 +-5.671800000000000e-01 +-5.175999999999999e-01 +-4.472900000000000e-01 +-3.510500000000000e-01 +-2.144700000000000e-01 +-3.142300000000000e-02 + 1.796700000000000e-01 + 3.761300000000000e-01 + 5.107500000000000e-01 + 5.575100000000000e-01 + 5.251400000000001e-01 + 4.489600000000000e-01 + 3.678200000000000e-01 + 3.030100000000000e-01 + 2.524900000000000e-01 + 2.012700000000000e-01 + 1.374600000000000e-01 + 6.140900000000000e-02 +-1.610700000000000e-02 +-8.195400000000000e-02 +-1.269800000000000e-01 +-1.472500000000000e-01 +-1.429900000000000e-01 +-1.191700000000000e-01 +-8.764100000000000e-02 +-6.604000000000000e-02 +-6.984300000000000e-02 +-1.008600000000000e-01 +-1.416600000000000e-01 +-1.640600000000000e-01 +-1.493300000000000e-01 +-1.067400000000000e-01 +-7.443600000000000e-02 +-9.740900000000000e-02 +-1.944500000000000e-01 +-3.366100000000000e-01 +-4.546100000000000e-01 +-4.741800000000000e-01 +-3.587300000000000e-01 +-1.325500000000000e-01 + 1.302000000000000e-01 + 3.439100000000000e-01 + 4.535600000000000e-01 + 4.560600000000000e-01 + 3.914600000000000e-01 + 3.138700000000000e-01 + 2.626200000000000e-01 + 2.498400000000000e-01 + 2.671400000000000e-01 + 3.008300000000000e-01 + 3.422400000000000e-01 + 3.866800000000000e-01 + 4.251500000000000e-01 + 4.387400000000000e-01 + 4.029800000000000e-01 + 3.004700000000000e-01 + 1.332800000000000e-01 +-7.430900000000000e-02 +-2.854600000000000e-01 +-4.673300000000000e-01 +-6.040000000000000e-01 +-6.980800000000000e-01 +-7.609900000000001e-01 +-7.994500000000000e-01 +-8.084100000000000e-01 +-7.753500000000000e-01 +-6.930100000000000e-01 +-5.705000000000000e-01 +-4.336900000000000e-01 +-3.122400000000000e-01 +-2.207300000000000e-01 +-1.463500000000000e-01 +-5.267100000000000e-02 + 1.005100000000000e-01 + 3.320500000000000e-01 + 6.238300000000000e-01 + 9.246200000000000e-01 + 1.171500000000000e+00 + 1.316600000000000e+00 + 1.344300000000000e+00 + 1.270300000000000e+00 + 1.125100000000000e+00 + 9.350500000000000e-01 + 7.118600000000000e-01 + 4.564700000000000e-01 + 1.710900000000000e-01 +-1.308500000000000e-01 +-4.248200000000000e-01 +-6.850300000000000e-01 +-8.958500000000000e-01 +-1.055600000000000e+00 +-1.169500000000000e+00 +-1.237900000000000e+00 +-1.249000000000000e+00 +-1.184000000000000e+00 +-1.032000000000000e+00 +-8.037700000000000e-01 +-5.352200000000000e-01 +-2.740700000000000e-01 +-5.914100000000000e-02 + 9.576600000000000e-02 + 2.032600000000000e-01 + 2.890100000000000e-01 + 3.738300000000000e-01 + 4.631600000000000e-01 + 5.497500000000000e-01 + 6.243200000000000e-01 + 6.842000000000000e-01 + 7.324400000000000e-01 + 7.694200000000000e-01 + 7.858800000000000e-01 + 7.652500000000000e-01 + 6.947500000000000e-01 + 5.762699999999999e-01 + 4.271500000000000e-01 + 2.689700000000000e-01 + 1.130000000000000e-01 +-4.526400000000000e-02 +-2.165100000000000e-01 +-3.999300000000000e-01 +-5.720100000000000e-01 +-6.928800000000001e-01 +-7.279900000000000e-01 +-6.703900000000000e-01 +-5.471700000000000e-01 +-4.048100000000000e-01 +-2.832700000000000e-01 +-1.967000000000000e-01 +-1.330000000000000e-01 +-7.030400000000001e-02 + 3.343400000000000e-03 + 8.102700000000000e-02 + 1.430100000000000e-01 + 1.705400000000000e-01 + 1.562000000000000e-01 + 1.052500000000000e-01 + 3.056600000000000e-02 +-5.203700000000000e-02 +-1.251800000000000e-01 +-1.707000000000000e-01 +-1.743600000000000e-01 +-1.338900000000000e-01 +-6.365100000000000e-02 + 1.107000000000000e-02 + 6.940300000000001e-02 + 1.096400000000000e-01 + 1.507300000000000e-01 + 2.167200000000000e-01 + 3.144300000000000e-01 + 4.215400000000000e-01 + 4.962700000000000e-01 + 5.028899999999999e-01 + 4.347400000000000e-01 + 3.171000000000000e-01 + 1.878300000000000e-01 + 7.111199999999999e-02 +-3.510100000000000e-02 +-1.488300000000000e-01 +-2.804700000000000e-01 +-4.160400000000000e-01 +-5.215900000000000e-01 +-5.649999999999999e-01 +-5.373200000000000e-01 +-4.564300000000000e-01 +-3.508900000000000e-01 +-2.382000000000000e-01 +-1.160000000000000e-01 + 2.698900000000000e-02 + 1.903600000000000e-01 + 3.500900000000000e-01 + 4.663900000000000e-01 + 5.061000000000000e-01 + 4.626200000000000e-01 + 3.586000000000000e-01 + 2.304900000000000e-01 + 1.075700000000000e-01 + 9.073300000000000e-04 +-9.192300000000000e-02 +-1.732300000000000e-01 +-2.356500000000000e-01 +-2.643500000000000e-01 +-2.481400000000000e-01 +-1.899600000000000e-01 +-1.085700000000000e-01 +-3.088400000000000e-02 + 1.929900000000000e-02 + 2.955000000000000e-02 + 1.274100000000000e-03 +-5.244700000000000e-02 +-1.115700000000000e-01 +-1.554000000000000e-01 +-1.699300000000000e-01 +-1.535000000000000e-01 +-1.172300000000000e-01 +-7.780500000000000e-02 +-4.636200000000000e-02 +-2.097700000000000e-02 + 1.078800000000000e-02 + 6.047500000000000e-02 + 1.274300000000000e-01 + 1.975500000000000e-01 + 2.540600000000000e-01 + 2.918100000000000e-01 + 3.220300000000000e-01 + 3.619400000000000e-01 + 4.164500000000000e-01 + 4.675200000000000e-01 + 4.818600000000000e-01 + 4.332200000000000e-01 + 3.224100000000000e-01 + 1.786700000000000e-01 + 3.988600000000000e-02 +-7.380600000000000e-02 +-1.725700000000000e-01 +-2.855400000000000e-01 +-4.341100000000000e-01 +-6.101600000000000e-01 +-7.755500000000000e-01 +-8.823500000000000e-01 +-8.985400000000000e-01 +-8.213100000000000e-01 +-6.721100000000000e-01 +-4.817400000000000e-01 +-2.791300000000000e-01 +-8.982700000000000e-02 + 6.142600000000000e-02 + 1.540900000000000e-01 + 1.842100000000000e-01 + 1.765400000000000e-01 + 1.823700000000000e-01 + 2.572600000000000e-01 + 4.289100000000000e-01 + 6.757000000000000e-01 + 9.319400000000000e-01 + 1.118400000000000e+00 + 1.179500000000000e+00 + 1.105400000000000e+00 + 9.264100000000000e-01 + 6.888900000000000e-01 + 4.296400000000000e-01 + 1.648000000000000e-01 +-1.037600000000000e-01 +-3.741700000000000e-01 +-6.342800000000000e-01 +-8.611900000000000e-01 +-1.028300000000000e+00 +-1.113400000000000e+00 +-1.104400000000000e+00 +-1.002300000000000e+00 +-8.233200000000001e-01 +-5.978100000000000e-01 +-3.650200000000000e-01 +-1.611700000000000e-01 +-6.526000000000000e-03 + 1.007900000000000e-01 + 1.790100000000000e-01 + 2.476500000000000e-01 + 3.130500000000000e-01 + 3.650000000000000e-01 + 3.869100000000000e-01 + 3.720900000000000e-01 + 3.338000000000000e-01 + 3.011500000000000e-01 + 3.029600000000000e-01 + 3.503400000000000e-01 + 4.291000000000000e-01 + 5.062200000000000e-01 + 5.456700000000000e-01 + 5.237700000000000e-01 + 4.365000000000000e-01 + 2.970400000000000e-01 + 1.272700000000000e-01 +-5.127400000000000e-02 +-2.232500000000000e-01 +-3.811000000000000e-01 +-5.231600000000000e-01 +-6.493500000000000e-01 +-7.563200000000000e-01 +-8.337700000000000e-01 +-8.643100000000000e-01 +-8.279500000000000e-01 +-7.102400000000000e-01 +-5.108500000000000e-01 +-2.487100000000000e-01 + 3.928800000000000e-02 + 3.066400000000000e-01 + 5.105900000000000e-01 + 6.261300000000000e-01 + 6.550900000000000e-01 + 6.252600000000000e-01 + 5.778700000000000e-01 + 5.474800000000000e-01 + 5.439600000000000e-01 + 5.473500000000000e-01 + 5.206700000000000e-01 + 4.350900000000000e-01 + 2.928200000000000e-01 + 1.317900000000000e-01 + 7.037800000000000e-03 +-4.188400000000000e-02 +-1.711600000000000e-02 + 3.489700000000000e-02 + 4.737500000000000e-02 +-3.038700000000000e-02 +-2.060300000000000e-01 +-4.417100000000000e-01 +-6.752400000000000e-01 +-8.497100000000000e-01 +-9.339499999999999e-01 +-9.253500000000000e-01 +-8.396100000000000e-01 +-6.987700000000000e-01 +-5.257800000000000e-01 +-3.451700000000000e-01 +-1.828600000000000e-01 +-6.010700000000000e-02 + 1.665000000000000e-02 + 6.215200000000000e-02 + 1.077300000000000e-01 + 1.859900000000000e-01 + 3.128800000000000e-01 + 4.778000000000000e-01 + 6.476400000000000e-01 + 7.821900000000001e-01 + 8.521600000000000e-01 + 8.506400000000000e-01 + 7.936000000000000e-01 + 7.105399999999999e-01 + 6.308600000000000e-01 + 5.717400000000000e-01 + 5.320500000000000e-01 + 4.943100000000000e-01 + 4.338100000000000e-01 + 3.308800000000000e-01 + 1.806600000000000e-01 +-4.687900000000000e-03 +-2.025200000000000e-01 +-3.912400000000000e-01 +-5.596400000000000e-01 +-7.083300000000000e-01 +-8.428500000000000e-01 +-9.638400000000000e-01 +-1.061300000000000e+00 +-1.117100000000000e+00 +-1.113500000000000e+00 +-1.042100000000000e+00 +-9.075400000000000e-01 +-7.246899999999999e-01 +-5.124500000000000e-01 +-2.886200000000000e-01 +-6.816100000000000e-02 + 1.361400000000000e-01 + 3.130500000000000e-01 + 4.537700000000000e-01 + 5.539600000000000e-01 + 6.152700000000000e-01 + 6.456300000000000e-01 + 6.579500000000000e-01 + 6.678700000000000e-01 + 6.901300000000000e-01 + 7.332800000000000e-01 + 7.941200000000000e-01 + 8.545000000000000e-01 + 8.843700000000000e-01 + 8.517400000000001e-01 + 7.362900000000000e-01 + 5.398400000000000e-01 + 2.876100000000000e-01 + 1.924200000000000e-02 +-2.257100000000000e-01 +-4.202600000000000e-01 +-5.549800000000000e-01 +-6.349300000000000e-01 +-6.726100000000000e-01 +-6.814500000000000e-01 +-6.722800000000000e-01 +-6.521900000000000e-01 +-6.240400000000000e-01 +-5.859900000000000e-01 +-5.319900000000000e-01 +-4.542300000000000e-01 +-3.472500000000000e-01 +-2.120500000000000e-01 +-5.840400000000000e-02 + 9.528499999999999e-02 + 2.246600000000000e-01 + 3.041800000000000e-01 + 3.140400000000000e-01 + 2.483500000000000e-01 + 1.214100000000000e-01 +-3.236900000000000e-02 +-1.679300000000000e-01 +-2.462500000000000e-01 +-2.501800000000000e-01 +-1.901600000000000e-01 +-9.553900000000000e-02 + 3.596300000000000e-03 + 9.240300000000000e-02 + 1.747400000000000e-01 + 2.626900000000000e-01 + 3.610500000000000e-01 + 4.591000000000000e-01 + 5.361399999999999e-01 + 5.761600000000000e-01 + 5.795300000000000e-01 + 5.620200000000000e-01 + 5.416400000000000e-01 + 5.232000000000000e-01 + 4.929200000000000e-01 + 4.271900000000000e-01 + 3.089500000000000e-01 + 1.398600000000000e-01 +-6.004200000000000e-02 +-2.635000000000000e-01 +-4.490300000000000e-01 +-6.067399999999999e-01 +-7.348100000000000e-01 +-8.317099999999999e-01 +-8.911800000000000e-01 +-9.033800000000000e-01 +-8.596700000000000e-01 +-7.567800000000000e-01 +-5.981600000000000e-01 +-3.938700000000000e-01 +-1.613000000000000e-01 + 7.396700000000000e-02 + 2.805100000000000e-01 + 4.291900000000000e-01 + 5.046800000000000e-01 + 5.128500000000000e-01 + 4.775200000000000e-01 + 4.264900000000000e-01 + 3.754400000000000e-01 + 3.212100000000000e-01 + 2.498000000000000e-01 + 1.535200000000000e-01 + 4.419000000000000e-02 +-4.850500000000000e-02 +-9.324499999999999e-02 +-7.657600000000001e-02 +-1.144600000000000e-02 + 7.136400000000000e-02 + 1.423200000000000e-01 + 1.886100000000000e-01 + 2.152100000000000e-01 + 2.323200000000000e-01 + 2.402300000000000e-01 + 2.244100000000000e-01 + 1.649700000000000e-01 + 5.350600000000000e-02 +-9.542700000000000e-02 +-2.469300000000000e-01 +-3.608800000000000e-01 +-4.097100000000000e-01 +-3.883100000000000e-01 +-3.118700000000000e-01 +-2.056800000000000e-01 +-9.451400000000000e-02 + 3.243800000000000e-03 + 7.648400000000000e-02 + 1.206100000000000e-01 + 1.372900000000000e-01 + 1.340900000000000e-01 + 1.217100000000000e-01 + 1.084800000000000e-01 + 9.524199999999999e-02 + 7.483200000000000e-02 + 3.774000000000000e-02 +-1.956400000000000e-02 +-9.012500000000000e-02 +-1.600600000000000e-01 +-2.181600000000000e-01 +-2.641700000000000e-01 +-3.082700000000000e-01 +-3.608400000000000e-01 +-4.193300000000000e-01 +-4.627100000000000e-01 +-4.592200000000000e-01 +-3.840400000000000e-01 +-2.354800000000000e-01 +-3.848900000000000e-02 + 1.673200000000000e-01 + 3.476900000000000e-01 + 4.888100000000000e-01 + 5.984100000000000e-01 + 6.935600000000000e-01 + 7.847200000000000e-01 + 8.666900000000000e-01 + 9.208800000000000e-01 + 9.249500000000000e-01 + 8.615600000000000e-01 + 7.215200000000001e-01 + 5.026400000000000e-01 + 2.101600000000000e-01 +-1.384400000000000e-01 +-5.075700000000000e-01 +-8.442900000000000e-01 +-1.090900000000000e+00 +-1.205900000000000e+00 +-1.181800000000000e+00 +-1.048800000000000e+00 +-8.593100000000000e-01 +-6.638500000000001e-01 +-4.911800000000000e-01 +-3.443200000000000e-01 +-2.118400000000000e-01 +-8.391899999999999e-02 + 3.900600000000000e-02 + 1.498400000000000e-01 + 2.453500000000000e-01 + 3.330500000000000e-01 + 4.277100000000000e-01 + 5.394200000000000e-01 + 6.622100000000000e-01 + 7.719100000000000e-01 + 8.352400000000000e-01 + 8.248200000000000e-01 + 7.313700000000000e-01 + 5.673899999999999e-01 + 3.619200000000000e-01 + 1.498800000000000e-01 +-3.939300000000000e-02 +-1.909600000000000e-01 +-3.079400000000000e-01 +-4.079400000000000e-01 +-5.119400000000000e-01 +-6.292800000000000e-01 +-7.465200000000000e-01 +-8.281400000000000e-01 +-8.317000000000000e-01 +-7.306100000000000e-01 +-5.312900000000000e-01 +-2.734200000000000e-01 +-1.226500000000000e-02 + 2.061100000000000e-01 + 3.613800000000000e-01 + 4.581000000000000e-01 + 5.110500000000000e-01 + 5.294500000000000e-01 + 5.119300000000000e-01 + 4.542800000000000e-01 + 3.613400000000000e-01 + 2.518900000000000e-01 + 1.522000000000000e-01 + 8.378200000000000e-02 + 5.543100000000000e-02 + 6.468100000000000e-02 + 1.051300000000000e-01 + 1.708300000000000e-01 + 2.529200000000000e-01 + 3.324000000000000e-01 + 3.787000000000000e-01 + 3.600200000000000e-01 + 2.608200000000000e-01 + 9.398700000000000e-02 +-1.031500000000000e-01 +-2.879400000000000e-01 +-4.339000000000000e-01 +-5.392200000000000e-01 +-6.172200000000000e-01 +-6.777000000000000e-01 +-7.154800000000000e-01 +-7.157400000000000e-01 +-6.711800000000000e-01 +-5.953300000000000e-01 +-5.185200000000000e-01 +-4.676500000000000e-01 +-4.447400000000000e-01 +-4.218500000000000e-01 +-3.578800000000000e-01 +-2.258500000000000e-01 +-3.085000000000000e-02 + 1.943100000000000e-01 + 4.116800000000000e-01 + 6.013200000000000e-01 + 7.675900000000000e-01 + 9.249900000000000e-01 + 1.075800000000000e+00 + 1.197800000000000e+00 + 1.251700000000000e+00 + 1.203900000000000e+00 + 1.046600000000000e+00 + 8.034100000000000e-01 + 5.168900000000000e-01 + 2.278100000000000e-01 +-3.900900000000000e-02 +-2.759400000000000e-01 +-4.831600000000000e-01 +-6.577499999999999e-01 +-7.890100000000000e-01 +-8.613100000000000e-01 +-8.610500000000000e-01 +-7.830700000000000e-01 +-6.344400000000000e-01 +-4.356600000000000e-01 +-2.194200000000000e-01 +-2.569300000000000e-02 + 1.074600000000000e-01 + 1.551300000000000e-01 + 1.137000000000000e-01 + 9.478000000000001e-04 +-1.524500000000000e-01 +-3.149900000000000e-01 +-4.625700000000000e-01 +-5.788800000000000e-01 +-6.505400000000000e-01 +-6.635200000000000e-01 +-6.060100000000000e-01 +-4.760800000000000e-01 +-2.875200000000000e-01 +-6.742800000000000e-02 + 1.543000000000000e-01 + 3.567800000000000e-01 + 5.328100000000000e-01 + 6.837100000000000e-01 + 8.095599999999999e-01 + 9.039600000000000e-01 + 9.577900000000000e-01 + 9.685100000000000e-01 + 9.452300000000000e-01 + 9.033300000000000e-01 + 8.509500000000000e-01 + 7.782100000000000e-01 + 6.597300000000000e-01 + 4.712700000000000e-01 + 2.102400000000000e-01 +-9.488000000000001e-02 +-3.942400000000000e-01 +-6.398700000000000e-01 +-8.074900000000000e-01 +-9.026600000000000e-01 +-9.487300000000000e-01 +-9.665500000000000e-01 +-9.608900000000000e-01 +-9.220100000000000e-01 +-8.387400000000000e-01 +-7.115800000000000e-01 +-5.555000000000000e-01 +-3.915000000000000e-01 +-2.348400000000000e-01 +-8.932000000000000e-02 + 4.846700000000000e-02 + 1.799900000000000e-01 + 2.987900000000000e-01 + 3.925800000000000e-01 + 4.511000000000000e-01 + 4.728800000000000e-01 + 4.657400000000000e-01 + 4.412300000000000e-01 + 4.082100000000000e-01 + 3.704900000000000e-01 + 3.294300000000000e-01 + 2.881800000000000e-01 + 2.531700000000000e-01 + 2.317600000000000e-01 + 2.281500000000000e-01 + 2.408900000000000e-01 + 2.632200000000000e-01 + 2.850500000000000e-01 + 2.947100000000000e-01 + 2.804700000000000e-01 + 2.331600000000000e-01 + 1.505100000000000e-01 + 4.086600000000000e-02 +-7.777500000000000e-02 +-1.853900000000000e-01 +-2.709900000000000e-01 +-3.396200000000000e-01 +-4.088300000000000e-01 +-4.950700000000000e-01 +-5.981500000000000e-01 +-6.947500000000000e-01 +-7.467100000000000e-01 +-7.196600000000000e-01 +-6.010300000000000e-01 +-4.066600000000000e-01 +-1.735600000000000e-01 + 5.503000000000000e-02 + 2.429800000000000e-01 + 3.677200000000000e-01 + 4.206100000000000e-01 + 4.057500000000000e-01 + 3.391000000000000e-01 + 2.460800000000000e-01 + 1.546800000000000e-01 + 8.497499999999999e-02 + 4.131200000000000e-02 + 1.394900000000000e-02 +-9.315000000000000e-03 +-2.953500000000000e-02 +-3.239700000000000e-02 + 1.468700000000000e-03 + 7.823600000000000e-02 + 1.792200000000000e-01 + 2.669200000000000e-01 + 3.065900000000000e-01 + 2.886000000000000e-01 + 2.346200000000000e-01 + 1.825600000000000e-01 + 1.612000000000000e-01 + 1.735900000000000e-01 + 2.008800000000000e-01 + 2.220500000000000e-01 + 2.317900000000000e-01 + 2.410200000000000e-01 + 2.595300000000000e-01 + 2.761600000000000e-01 + 2.554600000000000e-01 + 1.572900000000000e-01 +-3.322700000000000e-02 +-2.874900000000000e-01 +-5.418900000000000e-01 +-7.287700000000000e-01 +-8.096000000000000e-01 +-7.892200000000000e-01 +-7.046800000000000e-01 +-5.998900000000000e-01 +-5.049900000000000e-01 +-4.320100000000000e-01 +-3.834100000000000e-01 +-3.606900000000000e-01 +-3.634100000000000e-01 +-3.808100000000000e-01 +-3.867800000000000e-01 +-3.473700000000000e-01 +-2.384100000000000e-01 +-6.045000000000000e-02 + 1.611600000000000e-01 + 3.923700000000000e-01 + 6.105600000000000e-01 + 8.129400000000000e-01 + 1.006700000000000e+00 + 1.189000000000000e+00 + 1.334300000000000e+00 + 1.399800000000000e+00 + 1.348000000000000e+00 + 1.169900000000000e+00 + 8.928600000000000e-01 + 5.684100000000000e-01 + 2.489500000000000e-01 +-3.085300000000000e-02 +-2.582300000000000e-01 +-4.342200000000000e-01 +-5.639500000000000e-01 +-6.541300000000000e-01 +-7.172700000000000e-01 +-7.743000000000000e-01 +-8.480000000000000e-01 +-9.481500000000000e-01 +-1.059000000000000e+00 +-1.140500000000000e+00 +-1.146500000000000e+00 +-1.050300000000000e+00 +-8.624400000000000e-01 +-6.271300000000000e-01 +-4.012000000000000e-01 +-2.263100000000000e-01 +-1.116100000000000e-01 +-3.491800000000000e-02 + 4.093700000000000e-02 + 1.483600000000000e-01 + 3.027000000000000e-01 + 5.011100000000001e-01 + 7.284800000000000e-01 + 9.633500000000000e-01 + 1.180400000000000e+00 + 1.350800000000000e+00 + 1.445200000000000e+00 + 1.440500000000000e+00 + 1.329300000000000e+00 + 1.124800000000000e+00 + 8.581299999999999e-01 + 5.676700000000000e-01 + 2.856600000000000e-01 + 2.840700000000000e-02 +-2.053800000000000e-01 +-4.283400000000000e-01 +-6.538200000000000e-01 +-8.858700000000000e-01 +-1.113600000000000e+00 +-1.311700000000000e+00 +-1.447000000000000e+00 +-1.489200000000000e+00 +-1.421800000000000e+00 +-1.249400000000000e+00 +-9.981000000000000e-01 +-7.073700000000001e-01 +-4.170900000000000e-01 +-1.554700000000000e-01 + 6.689100000000001e-02 + 2.547900000000000e-01 + 4.203000000000000e-01 + 5.737800000000000e-01 + 7.182400000000000e-01 + 8.480900000000000e-01 + 9.510700000000000e-01 + 1.011400000000000e+00 + 1.014100000000000e+00 + 9.508400000000000e-01 + 8.263700000000000e-01 + 6.626500000000000e-01 + 4.950200000000000e-01 + 3.593100000000000e-01 + 2.743000000000000e-01 + 2.294900000000000e-01 + 1.874500000000000e-01 + 1.020800000000000e-01 +-5.615700000000000e-02 +-2.827500000000000e-01 +-5.400300000000000e-01 +-7.756200000000000e-01 +-9.463400000000000e-01 +-1.032400000000000e+00 +-1.035200000000000e+00 +-9.634500000000000e-01 +-8.215200000000000e-01 +-6.103200000000000e-01 +-3.393900000000000e-01 +-3.927800000000000e-02 + 2.388800000000000e-01 + 4.401600000000000e-01 + 5.302000000000000e-01 + 5.114800000000000e-01 + 4.210500000000000e-01 + 3.114500000000000e-01 + 2.271400000000000e-01 + 1.900100000000000e-01 + 1.993300000000000e-01 + 2.409600000000000e-01 + 2.962000000000000e-01 + 3.444700000000000e-01 + 3.624600000000000e-01 + 3.266600000000000e-01 + 2.228000000000000e-01 + 5.788300000000000e-02 +-1.348800000000000e-01 +-3.053100000000000e-01 +-4.071700000000000e-01 +-4.192200000000000e-01 +-3.538200000000000e-01 +-2.480800000000000e-01 +-1.439300000000000e-01 +-6.979000000000000e-02 +-3.384100000000000e-02 +-2.942200000000000e-02 +-4.522800000000000e-02 +-7.154199999999999e-02 +-9.965900000000000e-02 +-1.187400000000000e-01 +-1.164700000000000e-01 +-8.554900000000000e-02 +-3.102400000000000e-02 + 2.908100000000000e-02 + 7.328500000000000e-02 + 9.132800000000001e-02 + 9.350100000000000e-02 + 1.064100000000000e-01 + 1.560900000000000e-01 + 2.490100000000000e-01 + 3.638500000000000e-01 + 4.605000000000000e-01 + 5.010200000000000e-01 + 4.693800000000000e-01 + 3.777800000000000e-01 + 2.565500000000000e-01 + 1.356400000000000e-01 + 3.021500000000000e-02 +-6.128500000000000e-02 +-1.479300000000000e-01 +-2.345300000000000e-01 +-3.164200000000000e-01 +-3.832700000000000e-01 +-4.271500000000000e-01 +-4.471800000000000e-01 +-4.471900000000000e-01 +-4.294500000000000e-01 +-3.913000000000000e-01 +-3.287000000000000e-01 +-2.442500000000000e-01 +-1.522300000000000e-01 +-7.462700000000000e-02 +-2.909400000000000e-02 +-1.665500000000000e-02 +-1.871400000000000e-02 +-6.752700000000000e-03 + 4.076700000000000e-02 + 1.251000000000000e-01 + 2.259800000000000e-01 + 3.125600000000000e-01 + 3.589700000000000e-01 + 3.547000000000000e-01 + 3.051200000000000e-01 + 2.247200000000000e-01 + 1.293900000000000e-01 + 3.281900000000000e-02 +-5.305100000000000e-02 +-1.170800000000000e-01 +-1.503100000000000e-01 +-1.491100000000000e-01 +-1.171500000000000e-01 +-6.383700000000000e-02 +-3.701900000000000e-04 + 6.342200000000001e-02 + 1.195200000000000e-01 + 1.608200000000000e-01 + 1.822400000000000e-01 + 1.850000000000000e-01 + 1.810200000000000e-01 + 1.916600000000000e-01 + 2.379900000000000e-01 + 3.267200000000000e-01 + 4.409000000000000e-01 + 5.433700000000000e-01 + 5.925600000000000e-01 + 5.613000000000000e-01 + 4.469300000000000e-01 + 2.671100000000000e-01 + 4.626600000000000e-02 +-1.961600000000000e-01 +-4.471600000000000e-01 +-6.927100000000000e-01 +-9.103000000000000e-01 +-1.070500000000000e+00 +-1.148300000000000e+00 +-1.135300000000000e+00 +-1.044200000000000e+00 +-9.005200000000000e-01 +-7.297800000000000e-01 +-5.496200000000000e-01 +-3.718100000000000e-01 +-2.091400000000000e-01 +-7.749600000000000e-02 + 1.227700000000000e-02 + 6.708000000000000e-02 + 1.162400000000000e-01 + 1.995300000000000e-01 + 3.429500000000000e-01 + 5.381100000000000e-01 + 7.416000000000000e-01 + 8.975900000000000e-01 + 9.700400000000000e-01 + 9.631000000000000e-01 + 9.159900000000000e-01 + 8.763600000000000e-01 + 8.707200000000000e-01 + 8.917100000000000e-01 + 9.083400000000000e-01 + 8.892000000000000e-01 + 8.205600000000000e-01 + 7.076000000000000e-01 + 5.613800000000000e-01 + 3.847500000000000e-01 + 1.698000000000000e-01 +-9.136300000000000e-02 +-3.921600000000000e-01 +-7.063800000000000e-01 +-9.976200000000000e-01 +-1.237100000000000e+00 +-1.416400000000000e+00 +-1.545900000000000e+00 +-1.639200000000000e+00 +-1.694600000000000e+00 +-1.689400000000000e+00 +-1.589600000000000e+00 +-1.372900000000000e+00 +-1.047400000000000e+00 +-6.541700000000000e-01 +-2.498400000000000e-01 + 1.205700000000000e-01 + 4.440200000000000e-01 + 7.393600000000000e-01 + 1.035900000000000e+00 + 1.344100000000000e+00 + 1.637300000000000e+00 + 1.857200000000000e+00 + 1.940600000000000e+00 + 1.852100000000000e+00 + 1.601600000000000e+00 + 1.237500000000000e+00 + 8.222699999999999e-01 + 4.065800000000000e-01 + 1.860000000000000e-02 +-3.296000000000000e-01 +-6.277400000000000e-01 +-8.595900000000000e-01 +-1.007900000000000e+00 +-1.066000000000000e+00 +-1.044100000000000e+00 +-9.635600000000000e-01 +-8.438900000000000e-01 +-6.951100000000000e-01 +-5.222800000000000e-01 +-3.384200000000000e-01 +-1.716100000000000e-01 +-5.556600000000000e-02 +-7.152900000000000e-03 +-7.953300000000000e-03 +-7.601500000000000e-03 + 4.832500000000000e-02 + 1.826600000000000e-01 + 3.683900000000000e-01 + 5.422900000000000e-01 + 6.423100000000000e-01 + 6.434700000000000e-01 + 5.685200000000000e-01 + 4.680800000000000e-01 + 3.871000000000000e-01 + 3.411800000000000e-01 + 3.163600000000000e-01 + 2.863700000000000e-01 + 2.302100000000000e-01 + 1.373700000000000e-01 + 2.366600000000000e-03 +-1.792500000000000e-01 +-4.046800000000000e-01 +-6.516000000000000e-01 +-8.737600000000000e-01 +-1.015000000000000e+00 +-1.036700000000000e+00 +-9.404500000000000e-01 +-7.675800000000000e-01 +-5.742900000000000e-01 +-3.986900000000000e-01 +-2.430800000000000e-01 +-8.309800000000001e-02 + 1.054500000000000e-01 + 3.233400000000000e-01 + 5.452900000000001e-01 + 7.369400000000000e-01 + 8.756900000000000e-01 + 9.584400000000000e-01 + 9.925000000000000e-01 + 9.806200000000000e-01 + 9.151000000000000e-01 + 7.860800000000000e-01 + 5.957100000000000e-01 + 3.644600000000000e-01 + 1.235000000000000e-01 +-1.003100000000000e-01 +-2.937700000000000e-01 +-4.541400000000000e-01 +-5.783400000000000e-01 +-6.571700000000000e-01 +-6.815099999999999e-01 +-6.553900000000000e-01 +-6.019900000000000e-01 +-5.532400000000000e-01 +-5.278200000000000e-01 +-5.142500000000000e-01 +-4.743500000000000e-01 +-3.677400000000000e-01 +-1.811700000000000e-01 + 5.794300000000000e-02 + 2.934900000000000e-01 + 4.693100000000000e-01 + 5.545800000000000e-01 + 5.505200000000000e-01 + 4.783200000000000e-01 + 3.617700000000000e-01 + 2.189500000000000e-01 + 6.644600000000001e-02 +-7.248900000000000e-02 +-1.678200000000000e-01 +-1.941400000000000e-01 +-1.456000000000000e-01 +-4.220300000000000e-02 + 7.862600000000000e-02 + 1.793400000000000e-01 + 2.365400000000000e-01 + 2.439000000000000e-01 + 2.057100000000000e-01 + 1.298300000000000e-01 + 2.715100000000000e-02 +-8.403099999999999e-02 +-1.769300000000000e-01 +-2.247000000000000e-01 +-2.153200000000000e-01 +-1.619000000000000e-01 +-9.816300000000000e-02 +-5.938900000000000e-02 +-6.086700000000000e-02 +-8.920500000000001e-02 +-1.130700000000000e-01 +-1.058000000000000e-01 +-6.338199999999999e-02 +-5.153300000000000e-03 + 4.236100000000000e-02 + 6.545600000000000e-02 + 7.181899999999999e-02 + 8.182600000000000e-02 + 1.101600000000000e-01 + 1.523800000000000e-01 + 1.866000000000000e-01 + 1.886700000000000e-01 + 1.490400000000000e-01 + 7.891300000000000e-02 + 2.068500000000000e-03 +-6.072600000000000e-02 +-1.026100000000000e-01 +-1.294200000000000e-01 +-1.486100000000000e-01 +-1.581200000000000e-01 +-1.444900000000000e-01 +-9.267700000000000e-02 +-4.313200000000000e-04 + 1.129900000000000e-01 + 2.108500000000000e-01 + 2.540700000000000e-01 + 2.189700000000000e-01 + 1.076400000000000e-01 +-5.384500000000000e-02 +-2.270700000000000e-01 +-3.752000000000000e-01 +-4.722700000000000e-01 +-5.051800000000000e-01 +-4.708900000000000e-01 +-3.734800000000000e-01 +-2.238600000000000e-01 +-4.107600000000000e-02 + 1.480200000000000e-01 + 3.136300000000000e-01 + 4.315700000000000e-01 + 4.913400000000000e-01 + 4.989000000000000e-01 + 4.719600000000000e-01 + 4.299400000000000e-01 + 3.841400000000000e-01 + 3.335200000000000e-01 + 2.682300000000000e-01 + 1.786500000000000e-01 + 6.486599999999999e-02 +-5.880300000000000e-02 +-1.668300000000000e-01 +-2.319700000000000e-01 +-2.370700000000000e-01 +-1.839100000000000e-01 +-9.478200000000001e-02 +-5.345500000000000e-03 + 4.869100000000000e-02 + 4.558700000000000e-02 +-1.416200000000000e-02 +-1.094400000000000e-01 +-2.093800000000000e-01 +-2.879700000000000e-01 +-3.347800000000000e-01 +-3.563000000000000e-01 +-3.679300000000000e-01 +-3.822400000000000e-01 +-4.008700000000000e-01 +-4.147100000000000e-01 +-4.111500000000000e-01 +-3.825600000000000e-01 +-3.296900000000000e-01 +-2.581000000000000e-01 +-1.709800000000000e-01 +-6.468500000000001e-02 + 6.893100000000001e-02 + 2.344700000000000e-01 + 4.251000000000000e-01 + 6.207600000000000e-01 + 7.941900000000000e-01 + 9.209100000000000e-01 + 9.862300000000001e-01 + 9.853600000000000e-01 + 9.179600000000000e-01 + 7.831399999999999e-01 + 5.806100000000000e-01 + 3.181600000000000e-01 + 1.942200000000000e-02 +-2.757000000000000e-01 +-5.212400000000000e-01 +-6.814300000000000e-01 +-7.431400000000000e-01 +-7.164500000000000e-01 +-6.236900000000000e-01 +-4.855800000000000e-01 +-3.151500000000000e-01 +-1.236500000000000e-01 + 6.777800000000000e-02 + 2.226400000000000e-01 + 2.982200000000000e-01 + 2.662600000000000e-01 + 1.316800000000000e-01 +-6.468800000000000e-02 +-2.636100000000000e-01 +-4.149800000000000e-01 +-4.980600000000000e-01 +-5.222500000000000e-01 +-5.102900000000000e-01 +-4.779000000000000e-01 +-4.247600000000000e-01 +-3.415300000000000e-01 +-2.241700000000000e-01 +-8.215699999999999e-02 + 6.644200000000000e-02 + 2.073700000000000e-01 + 3.376200000000000e-01 + 4.601600000000000e-01 + 5.703800000000000e-01 + 6.477200000000000e-01 + 6.628900000000000e-01 + 5.980300000000000e-01 + 4.646700000000000e-01 + 3.037700000000000e-01 + 1.649400000000000e-01 + 7.835499999999999e-02 + 3.957100000000000e-02 + 1.832400000000000e-02 +-1.573500000000000e-02 +-7.002200000000000e-02 +-1.255400000000000e-01 +-1.540000000000000e-01 +-1.406800000000000e-01 +-9.497200000000000e-02 +-4.178600000000000e-02 +-2.903200000000000e-03 + 1.556300000000000e-02 + 2.048500000000000e-02 + 1.882500000000000e-02 + 8.189900000000000e-03 +-1.978900000000000e-02 +-6.679200000000000e-02 +-1.189500000000000e-01 +-1.522500000000000e-01 +-1.497300000000000e-01 +-1.167100000000000e-01 +-8.000300000000000e-02 +-7.013000000000000e-02 +-9.932700000000000e-02 +-1.525500000000000e-01 +-1.985100000000000e-01 +-2.120100000000000e-01 +-1.904400000000000e-01 +-1.527100000000000e-01 +-1.233000000000000e-01 +-1.154100000000000e-01 +-1.257000000000000e-01 +-1.420900000000000e-01 +-1.543800000000000e-01 +-1.571800000000000e-01 +-1.436400000000000e-01 +-9.930200000000000e-02 +-6.696600000000000e-03 + 1.385700000000000e-01 + 3.121700000000000e-01 + 4.613500000000000e-01 + 5.270400000000000e-01 + 4.766600000000000e-01 + 3.266200000000000e-01 + 1.383200000000000e-01 +-1.149200000000000e-02 +-6.841999999999999e-02 +-2.372800000000000e-02 + 8.833100000000001e-02 + 2.139400000000000e-01 + 3.070500000000000e-01 + 3.450000000000000e-01 + 3.275400000000000e-01 + 2.660900000000000e-01 + 1.737300000000000e-01 + 6.216100000000000e-02 +-5.605100000000000e-02 +-1.657600000000000e-01 +-2.522200000000000e-01 +-3.074600000000000e-01 +-3.350400000000000e-01 +-3.486000000000000e-01 +-3.639200000000000e-01 +-3.890500000000000e-01 +-4.185000000000000e-01 +-4.353900000000000e-01 +-4.207300000000000e-01 +-3.643000000000000e-01 +-2.705700000000000e-01 +-1.556300000000000e-01 +-3.693700000000000e-02 + 7.728800000000000e-02 + 1.911500000000000e-01 + 3.135400000000000e-01 + 4.446000000000000e-01 + 5.665500000000000e-01 + 6.472700000000000e-01 + 6.565700000000000e-01 + 5.847800000000000e-01 + 4.500400000000000e-01 + 2.875900000000000e-01 + 1.276700000000000e-01 +-2.196600000000000e-02 +-1.751900000000000e-01 +-3.478600000000000e-01 +-5.339400000000000e-01 +-6.962600000000000e-01 +-7.811800000000000e-01 +-7.487400000000000e-01 +-5.982600000000000e-01 +-3.719700000000000e-01 +-1.344900000000000e-01 + 5.782000000000000e-02 + 1.788100000000000e-01 + 2.349600000000000e-01 + 2.520200000000000e-01 + 2.581400000000000e-01 + 2.737000000000000e-01 + 3.089100000000000e-01 + 3.639600000000000e-01 + 4.276100000000000e-01 + 4.762400000000000e-01 + 4.793900000000000e-01 + 4.133800000000000e-01 + 2.768800000000000e-01 + 9.712300000000000e-02 +-7.978700000000000e-02 +-2.098800000000000e-01 +-2.706400000000000e-01 +-2.667800000000000e-01 +-2.209100000000000e-01 +-1.583700000000000e-01 +-9.770600000000000e-02 +-5.080400000000000e-02 +-2.722000000000000e-02 +-3.415500000000000e-02 +-6.997600000000000e-02 +-1.180700000000000e-01 +-1.502700000000000e-01 +-1.415900000000000e-01 +-8.714300000000000e-02 +-7.972500000000000e-03 + 6.016300000000000e-02 + 8.742200000000000e-02 + 6.477400000000000e-02 + 2.891100000000000e-03 +-8.146200000000001e-02 +-1.776800000000000e-01 +-2.806900000000000e-01 +-3.792400000000000e-01 +-4.468800000000000e-01 +-4.488500000000000e-01 +-3.640500000000000e-01 +-2.054900000000000e-01 +-2.047300000000000e-02 + 1.345400000000000e-01 + 2.285600000000000e-01 + 2.745900000000000e-01 + 3.168200000000000e-01 + 3.943900000000000e-01 + 5.081900000000000e-01 + 6.158300000000000e-01 + 6.591800000000000e-01 + 6.050000000000000e-01 + 4.692100000000000e-01 + 3.078400000000000e-01 + 1.814000000000000e-01 + 1.175200000000000e-01 + 9.659700000000000e-02 + 6.781800000000000e-02 +-1.674100000000000e-02 +-1.723200000000000e-01 +-3.726200000000000e-01 +-5.640400000000000e-01 +-6.924000000000000e-01 +-7.271200000000000e-01 +-6.718900000000000e-01 +-5.589900000000000e-01 +-4.316400000000000e-01 +-3.232000000000000e-01 +-2.431800000000000e-01 +-1.769500000000000e-01 +-9.928900000000000e-02 + 6.089400000000000e-03 + 1.335400000000000e-01 + 2.581500000000000e-01 + 3.526100000000000e-01 + 4.061200000000000e-01 + 4.306200000000000e-01 + 4.488500000000000e-01 + 4.730100000000000e-01 + 4.915100000000000e-01 + 4.758200000000000e-01 + 4.038700000000000e-01 + 2.821200000000000e-01 + 1.476800000000000e-01 + 4.669500000000000e-02 + 3.253000000000000e-03 + 1.895900000000000e-03 +-2.808000000000000e-03 +-5.577200000000000e-02 +-1.713500000000000e-01 +-3.241600000000000e-01 +-4.655400000000000e-01 +-5.521400000000000e-01 +-5.666900000000000e-01 +-5.190100000000000e-01 +-4.313900000000000e-01 +-3.223700000000000e-01 +-2.010500000000000e-01 +-7.334800000000000e-02 + 4.859400000000000e-02 + 1.436100000000000e-01 + 1.886400000000000e-01 + 1.708100000000000e-01 + 9.626700000000001e-02 +-9.423600000000001e-03 +-1.090600000000000e-01 +-1.660600000000000e-01 +-1.569100000000000e-01 +-8.004300000000000e-02 + 4.227700000000000e-02 + 1.718700000000000e-01 + 2.713300000000000e-01 + 3.227600000000000e-01 + 3.375400000000000e-01 + 3.492900000000000e-01 + 3.915900000000000e-01 + 4.737500000000000e-01 + 5.706300000000000e-01 + 6.345400000000000e-01 + 6.221200000000000e-01 + 5.185600000000000e-01 + 3.436300000000000e-01 + 1.373900000000000e-01 +-6.231800000000000e-02 +-2.345600000000000e-01 +-3.744000000000000e-01 +-4.821200000000000e-01 +-5.550400000000000e-01 +-5.891500000000000e-01 +-5.872300000000000e-01 +-5.628900000000000e-01 +-5.342400000000000e-01 +-5.114500000000000e-01 +-4.894700000000000e-01 +-4.536900000000000e-01 +-3.944600000000000e-01 +-3.173300000000000e-01 +-2.385500000000000e-01 +-1.683400000000000e-01 +-9.661000000000000e-02 + 3.737300000000000e-03 + 1.547500000000000e-01 + 3.481100000000000e-01 + 5.378200000000000e-01 + 6.606300000000001e-01 + 6.728900000000000e-01 + 5.787000000000000e-01 + 4.285200000000000e-01 + 2.878200000000000e-01 + 1.969000000000000e-01 + 1.491800000000000e-01 + 1.024300000000000e-01 + 1.418000000000000e-02 +-1.236900000000000e-01 +-2.744600000000000e-01 +-3.766000000000000e-01 +-3.802300000000000e-01 +-2.764300000000000e-01 +-1.020500000000000e-01 + 8.108600000000001e-02 + 2.184800000000000e-01 + 2.871600000000000e-01 + 2.992600000000000e-01 + 2.853200000000000e-01 + 2.695500000000000e-01 + 2.530300000000000e-01 + 2.150600000000000e-01 + 1.314300000000000e-01 +-2.316100000000000e-03 +-1.587200000000000e-01 +-2.866200000000000e-01 +-3.366500000000000e-01 +-2.887300000000000e-01 +-1.641100000000000e-01 +-1.360900000000000e-02 + 1.104400000000000e-01 + 1.803800000000000e-01 + 2.005400000000000e-01 + 1.925900000000000e-01 + 1.715000000000000e-01 + 1.310400000000000e-01 + 4.995700000000000e-02 +-8.637499999999999e-02 +-2.660700000000000e-01 +-4.485900000000000e-01 +-5.830100000000000e-01 +-6.344200000000000e-01 +-6.007700000000000e-01 +-5.105200000000000e-01 +-4.047600000000000e-01 +-3.173000000000000e-01 +-2.638100000000000e-01 +-2.426100000000000e-01 +-2.407900000000000e-01 +-2.391100000000000e-01 +-2.144300000000000e-01 +-1.436500000000000e-01 +-1.226000000000000e-02 + 1.756300000000000e-01 + 3.937400000000000e-01 + 6.022900000000000e-01 + 7.660100000000000e-01 + 8.702700000000000e-01 + 9.240800000000000e-01 + 9.476900000000000e-01 + 9.536300000000000e-01 + 9.353200000000000e-01 + 8.712700000000000e-01 + 7.413999999999999e-01 + 5.432500000000000e-01 + 2.967900000000000e-01 + 3.554900000000000e-02 +-2.081200000000000e-01 +-4.132900000000000e-01 +-5.709100000000000e-01 +-6.776000000000000e-01 +-7.304600000000000e-01 +-7.280400000000000e-01 +-6.760200000000000e-01 +-5.916200000000000e-01 +-5.013900000000000e-01 +-4.321300000000000e-01 +-3.999500000000000e-01 +-4.036600000000000e-01 +-4.257300000000000e-01 +-4.398900000000000e-01 +-4.212200000000000e-01 +-3.546500000000000e-01 +-2.392000000000000e-01 +-8.754199999999999e-02 + 7.837800000000000e-02 + 2.336400000000000e-01 + 3.564500000000000e-01 + 4.322300000000000e-01 + 4.553200000000000e-01 + 4.291500000000000e-01 + 3.657700000000000e-01 + 2.844400000000000e-01 + 2.074500000000000e-01 + 1.523500000000000e-01 + 1.228600000000000e-01 + 1.042100000000000e-01 + 6.894000000000000e-02 +-7.034300000000000e-03 +-1.257600000000000e-01 +-2.585300000000000e-01 +-3.553900000000000e-01 +-3.699700000000000e-01 +-2.855000000000000e-01 +-1.255200000000000e-01 + 5.813300000000000e-02 + 2.125800000000000e-01 + 3.090800000000000e-01 + 3.511000000000000e-01 + 3.627400000000000e-01 + 3.685100000000000e-01 + 3.795000000000000e-01 + 3.936700000000000e-01 + 4.057900000000000e-01 + 4.156300000000000e-01 + 4.264700000000000e-01 + 4.361400000000000e-01 + 4.303100000000000e-01 + 3.862900000000000e-01 + 2.865200000000000e-01 + 1.320600000000000e-01 +-5.438200000000000e-02 +-2.386700000000000e-01 +-3.916200000000000e-01 +-5.006800000000000e-01 +-5.703600000000000e-01 +-6.139500000000000e-01 +-6.444299999999999e-01 +-6.706000000000000e-01 +-6.981300000000000e-01 +-7.307300000000000e-01 +-7.674200000000000e-01 +-7.980300000000000e-01 +-8.026200000000000e-01 +-7.589000000000000e-01 +-6.550500000000000e-01 +-4.993500000000000e-01 +-3.189200000000000e-01 +-1.465700000000000e-01 +-3.593100000000000e-03 + 1.108200000000000e-01 + 2.170400000000000e-01 + 3.416300000000000e-01 + 5.018800000000000e-01 + 6.970700000000000e-01 + 9.097100000000000e-01 + 1.113700000000000e+00 + 1.283200000000000e+00 + 1.398600000000000e+00 + 1.447900000000000e+00 + 1.426500000000000e+00 + 1.335400000000000e+00 + 1.180500000000000e+00 + 9.704500000000000e-01 + 7.144300000000000e-01 + 4.207700000000000e-01 + 9.706600000000000e-02 +-2.479000000000000e-01 +-6.017700000000000e-01 +-9.469300000000000e-01 +-1.260400000000000e+00 +-1.515500000000000e+00 +-1.684900000000000e+00 +-1.746500000000000e+00 +-1.690600000000000e+00 +-1.525800000000000e+00 +-1.280300000000000e+00 +-9.956700000000001e-01 +-7.129000000000000e-01 +-4.581500000000000e-01 +-2.344100000000000e-01 +-2.460900000000000e-02 + 1.954500000000000e-01 + 4.413400000000000e-01 + 7.096700000000000e-01 + 9.775900000000000e-01 + 1.210700000000000e+00 + 1.374300000000000e+00 + 1.442900000000000e+00 + 1.405700000000000e+00 + 1.267600000000000e+00 + 1.047000000000000e+00 + 7.694200000000000e-01 + 4.604800000000000e-01 + 1.385700000000000e-01 +-1.860500000000000e-01 +-5.049300000000000e-01 +-8.007100000000000e-01 +-1.040500000000000e+00 +-1.181100000000000e+00 +-1.186500000000000e+00 +-1.049900000000000e+00 +-8.041100000000000e-01 +-5.130500000000000e-01 +-2.461600000000000e-01 +-4.936700000000000e-02 + 7.010000000000000e-02 + 1.376100000000000e-01 + 1.894000000000000e-01 + 2.502100000000000e-01 + 3.236100000000000e-01 + 3.977700000000000e-01 + 4.588100000000000e-01 + 5.002100000000000e-01 + 5.227000000000001e-01 + 5.277200000000000e-01 + 5.125600000000000e-01 + 4.723300000000000e-01 + 4.065900000000000e-01 + 3.240800000000000e-01 + 2.401200000000000e-01 + 1.681200000000000e-01 + 1.116700000000000e-01 + 6.339800000000000e-02 + 1.096400000000000e-02 +-5.512200000000000e-02 +-1.379600000000000e-01 +-2.365500000000000e-01 +-3.497500000000000e-01 +-4.764400000000000e-01 +-6.107900000000001e-01 +-7.374700000000000e-01 +-8.333300000000000e-01 +-8.775600000000000e-01 +-8.642200000000000e-01 +-8.071800000000000e-01 +-7.316100000000000e-01 +-6.558800000000000e-01 +-5.760700000000000e-01 +-4.650500000000000e-01 +-2.885800000000000e-01 +-2.889500000000000e-02 + 2.996300000000000e-01 + 6.528300000000000e-01 + 9.754200000000000e-01 + 1.223400000000000e+00 + 1.377000000000000e+00 + 1.438000000000000e+00 + 1.417700000000000e+00 + 1.326000000000000e+00 + 1.168800000000000e+00 + 9.530999999999999e-01 + 6.923899999999999e-01 + 4.050000000000000e-01 + 1.073800000000000e-01 +-1.915800000000000e-01 +-4.883900000000000e-01 +-7.750700000000000e-01 +-1.029600000000000e+00 +-1.216500000000000e+00 +-1.299700000000000e+00 +-1.261900000000000e+00 +-1.116600000000000e+00 +-9.049500000000000e-01 +-6.774600000000000e-01 +-4.732900000000000e-01 +-3.084700000000000e-01 +-1.786100000000000e-01 +-7.105100000000000e-02 + 2.432400000000000e-02 + 1.125200000000000e-01 + 1.981900000000000e-01 + 2.902700000000000e-01 + 4.001100000000000e-01 + 5.333300000000000e-01 + 6.820500000000000e-01 + 8.240900000000000e-01 + 9.304400000000000e-01 + 9.752999999999999e-01 + 9.420200000000000e-01 + 8.228400000000000e-01 + 6.167500000000000e-01 + 3.314800000000000e-01 +-9.696000000000000e-03 +-3.629100000000000e-01 +-6.693600000000000e-01 +-8.738899999999999e-01 +-9.482600000000000e-01 +-9.038500000000000e-01 +-7.838400000000000e-01 +-6.381599999999999e-01 +-4.973400000000000e-01 +-3.627700000000000e-01 +-2.193100000000000e-01 +-5.928200000000000e-02 + 1.013300000000000e-01 + 2.280600000000000e-01 + 2.908800000000000e-01 + 2.873000000000000e-01 + 2.473400000000000e-01 + 2.152800000000000e-01 + 2.210300000000000e-01 + 2.616900000000000e-01 + 3.062300000000000e-01 + 3.193000000000000e-01 + 2.864000000000000e-01 + 2.227200000000000e-01 + 1.604700000000000e-01 + 1.255500000000000e-01 + 1.205800000000000e-01 + 1.256000000000000e-01 + 1.137300000000000e-01 + 6.977700000000001e-02 +-1.068000000000000e-03 +-7.797000000000000e-02 +-1.372000000000000e-01 +-1.634900000000000e-01 +-1.542800000000000e-01 +-1.174600000000000e-01 +-6.662400000000000e-02 +-1.710500000000000e-02 + 1.707900000000000e-02 + 2.656100000000000e-02 + 9.851900000000000e-03 +-2.591300000000000e-02 +-6.872700000000000e-02 +-1.087900000000000e-01 +-1.443700000000000e-01 +-1.820700000000000e-01 +-2.308800000000000e-01 +-2.942700000000000e-01 +-3.661200000000000e-01 +-4.331000000000000e-01 +-4.807900000000000e-01 +-4.983900000000000e-01 +-4.786800000000000e-01 +-4.151700000000000e-01 +-3.008300000000000e-01 +-1.318400000000000e-01 + 8.586800000000000e-02 + 3.325800000000000e-01 + 5.778500000000000e-01 + 7.895000000000000e-01 + 9.426099999999999e-01 + 1.023000000000000e+00 + 1.024300000000000e+00 + 9.440100000000000e-01 + 7.838100000000000e-01 + 5.555300000000000e-01 + 2.865100000000000e-01 + 1.691300000000000e-02 +-2.131900000000000e-01 +-3.804900000000000e-01 +-4.873100000000000e-01 +-5.555700000000000e-01 +-6.088700000000000e-01 +-6.549000000000000e-01 +-6.805000000000000e-01 +-6.625200000000000e-01 +-5.859200000000000e-01 +-4.556300000000000e-01 +-2.941900000000000e-01 +-1.283200000000000e-01 + 2.423800000000000e-02 + 1.577200000000000e-01 + 2.707800000000000e-01 + 3.568900000000000e-01 + 4.026600000000000e-01 + 3.963500000000000e-01 + 3.392200000000000e-01 + 2.491500000000000e-01 + 1.516800000000000e-01 + 6.462800000000000e-02 +-1.194900000000000e-02 +-9.195000000000000e-02 +-1.879600000000000e-01 +-2.959300000000000e-01 +-3.915100000000000e-01 +-4.408000000000000e-01 +-4.178700000000000e-01 +-3.168900000000000e-01 +-1.522800000000000e-01 + 5.007700000000000e-02 + 2.618100000000000e-01 + 4.548500000000000e-01 + 5.995700000000000e-01 + 6.657800000000000e-01 + 6.316600000000000e-01 + 4.972600000000000e-01 + 2.921200000000000e-01 + 6.773800000000001e-02 +-1.243300000000000e-01 +-2.563100000000000e-01 +-3.342300000000000e-01 +-3.866000000000000e-01 +-4.390200000000000e-01 +-4.922900000000000e-01 +-5.195600000000000e-01 +-4.847700000000000e-01 +-3.694200000000000e-01 +-1.889000000000000e-01 + 1.297300000000000e-02 + 1.875600000000000e-01 + 3.070400000000000e-01 + 3.754200000000000e-01 + 4.188100000000000e-01 + 4.628900000000000e-01 + 5.133200000000000e-01 + 5.516799999999999e-01 + 5.482800000000000e-01 + 4.822400000000000e-01 + 3.554500000000000e-01 + 1.919300000000000e-01 + 2.433100000000000e-02 +-1.229600000000000e-01 +-2.434200000000000e-01 +-3.453300000000000e-01 +-4.394200000000000e-01 +-5.259600000000000e-01 +-5.904199999999999e-01 +-6.106900000000000e-01 +-5.714200000000000e-01 +-4.760900000000000e-01 +-3.484500000000000e-01 +-2.216700000000000e-01 +-1.216600000000000e-01 +-5.467500000000000e-02 +-7.262500000000000e-03 + 4.173200000000000e-02 + 1.053200000000000e-01 + 1.792100000000000e-01 + 2.452200000000000e-01 + 2.840200000000000e-01 + 2.879800000000000e-01 + 2.649700000000000e-01 + 2.313100000000000e-01 + 1.997300000000000e-01 + 1.717200000000000e-01 + 1.393100000000000e-01 + 9.430900000000000e-02 + 3.755700000000000e-02 +-1.851600000000000e-02 +-5.503600000000000e-02 +-5.532900000000000e-02 +-1.154100000000000e-02 + 7.314600000000000e-02 + 1.852500000000000e-01 + 3.023500000000000e-01 + 3.951500000000000e-01 + 4.327600000000000e-01 + 3.925800000000000e-01 + 2.718700000000000e-01 + 9.381500000000000e-02 +-9.820100000000000e-02 +-2.576000000000000e-01 +-3.544800000000000e-01 +-3.867800000000000e-01 +-3.761900000000000e-01 +-3.518100000000000e-01 +-3.327000000000000e-01 +-3.197700000000000e-01 +-3.006100000000000e-01 +-2.617700000000000e-01 +-1.996100000000000e-01 +-1.234000000000000e-01 +-5.115000000000000e-02 +-2.340900000000000e-03 + 8.790800000000000e-03 +-2.139400000000000e-02 +-8.155999999999999e-02 +-1.437000000000000e-01 +-1.681000000000000e-01 +-1.173500000000000e-01 + 2.460600000000000e-02 + 2.388100000000000e-01 + 4.735600000000000e-01 + 6.644700000000000e-01 + 7.621000000000000e-01 + 7.506400000000000e-01 + 6.461600000000000e-01 + 4.777400000000000e-01 + 2.668200000000000e-01 + 2.115200000000000e-02 +-2.527800000000000e-01 +-5.305299999999999e-01 +-7.625400000000000e-01 +-8.893600000000000e-01 +-8.720500000000000e-01 +-7.174000000000000e-01 +-4.790000000000000e-01 +-2.314000000000000e-01 +-3.316900000000000e-02 + 9.804400000000001e-02 + 1.835400000000000e-01 + 2.585600000000000e-01 + 3.426600000000000e-01 + 4.249500000000000e-01 + 4.724300000000000e-01 + 4.534600000000000e-01 + 3.603900000000000e-01 + 2.176900000000000e-01 + 7.206100000000000e-02 +-2.844400000000000e-02 +-5.500000000000000e-02 +-9.019599999999999e-03 + 8.024400000000000e-02 + 1.694100000000000e-01 + 2.198500000000000e-01 + 2.135300000000000e-01 + 1.587000000000000e-01 + 8.265400000000001e-02 + 1.521100000000000e-02 +-2.774000000000000e-02 +-5.096200000000000e-02 +-7.326600000000000e-02 +-1.128300000000000e-01 +-1.751000000000000e-01 +-2.514000000000000e-01 +-3.278500000000000e-01 +-3.958400000000000e-01 +-4.549100000000000e-01 +-5.057600000000000e-01 +-5.408300000000000e-01 +-5.423300000000000e-01 +-4.917000000000000e-01 +-3.839000000000000e-01 +-2.344800000000000e-01 +-7.242300000000000e-02 + 7.700000000000000e-02 + 2.058600000000000e-01 + 3.228800000000000e-01 + 4.389100000000000e-01 + 5.510300000000000e-01 + 6.392200000000000e-01 + 6.792700000000000e-01 + 6.613100000000000e-01 + 5.979500000000000e-01 + 5.140300000000000e-01 + 4.255500000000000e-01 + 3.257700000000000e-01 + 1.916900000000000e-01 + 8.143400000000000e-03 +-2.087900000000000e-01 +-4.086100000000000e-01 +-5.289700000000001e-01 +-5.302400000000000e-01 +-4.187300000000000e-01 +-2.431600000000000e-01 +-6.780500000000000e-02 + 5.879200000000000e-02 + 1.195900000000000e-01 + 1.231100000000000e-01 + 8.564900000000000e-02 + 1.823200000000000e-02 +-7.265099999999999e-02 +-1.751700000000000e-01 +-2.659900000000000e-01 +-3.168000000000000e-01 +-3.104200000000000e-01 +-2.539100000000000e-01 +-1.770600000000000e-01 +-1.156500000000000e-01 +-9.050300000000000e-02 +-9.640100000000000e-02 +-1.076600000000000e-01 +-9.524900000000000e-02 +-4.342500000000000e-02 + 4.372300000000000e-02 + 1.470400000000000e-01 + 2.422400000000000e-01 + 3.083000000000000e-01 + 3.317400000000000e-01 + 3.091400000000000e-01 + 2.495900000000000e-01 + 1.752600000000000e-01 + 1.158500000000000e-01 + 9.570200000000000e-02 + 1.192000000000000e-01 + 1.647900000000000e-01 + 1.948500000000000e-01 + 1.781100000000000e-01 + 1.107500000000000e-01 + 2.088600000000000e-02 +-4.902300000000000e-02 +-7.127600000000001e-02 +-5.370200000000000e-02 +-3.629600000000000e-02 +-6.431000000000001e-02 +-1.553900000000000e-01 +-2.836000000000000e-01 +-3.922000000000000e-01 +-4.276100000000000e-01 +-3.719700000000000e-01 +-2.530700000000000e-01 +-1.258200000000000e-01 +-3.860200000000000e-02 +-7.096700000000000e-03 +-1.122200000000000e-02 +-1.422500000000000e-02 + 1.171100000000000e-02 + 7.089100000000000e-02 + 1.477200000000000e-01 + 2.216100000000000e-01 + 2.796800000000000e-01 + 3.182500000000000e-01 + 3.355500000000000e-01 + 3.253000000000000e-01 + 2.794000000000000e-01 + 1.980200000000000e-01 + 9.760400000000000e-02 + 7.148200000000000e-03 +-4.742700000000000e-02 +-6.047300000000000e-02 +-5.190100000000000e-02 +-5.478600000000000e-02 +-9.261500000000000e-02 +-1.619700000000000e-01 +-2.334800000000000e-01 +-2.713000000000000e-01 +-2.581000000000000e-01 +-2.084800000000000e-01 +-1.614300000000000e-01 +-1.566000000000000e-01 +-2.094700000000000e-01 +-3.007400000000000e-01 +-3.856000000000000e-01 +-4.165400000000000e-01 +-3.662200000000000e-01 +-2.389000000000000e-01 +-6.647599999999999e-02 + 1.066600000000000e-01 + 2.417600000000000e-01 + 3.191700000000000e-01 + 3.430500000000000e-01 + 3.368000000000000e-01 + 3.317700000000000e-01 + 3.536300000000000e-01 + 4.120100000000000e-01 + 4.976400000000000e-01 + 5.883400000000000e-01 + 6.604200000000000e-01 + 6.988700000000000e-01 + 7.007300000000000e-01 + 6.700400000000000e-01 + 6.086500000000000e-01 + 5.097600000000000e-01 + 3.592200000000000e-01 + 1.440600000000000e-01 +-1.367500000000000e-01 +-4.660400000000000e-01 +-8.098300000000000e-01 +-1.125600000000000e+00 +-1.372700000000000e+00 +-1.521300000000000e+00 +-1.556800000000000e+00 +-1.479800000000000e+00 +-1.304400000000000e+00 +-1.052500000000000e+00 +-7.491000000000000e-01 +-4.170100000000000e-01 +-7.521400000000000e-02 + 2.597800000000000e-01 + 5.700700000000000e-01 + 8.333600000000000e-01 + 1.024300000000000e+00 + 1.121100000000000e+00 + 1.114100000000000e+00 + 1.013400000000000e+00 + 8.485100000000000e-01 + 6.619300000000000e-01 + 4.970300000000000e-01 + 3.859300000000000e-01 + 3.415100000000000e-01 + 3.560000000000000e-01 + 4.061100000000000e-01 + 4.622700000000000e-01 + 4.982400000000000e-01 + 4.972900000000000e-01 + 4.525900000000000e-01 + 3.627800000000000e-01 + 2.265000000000000e-01 + 4.072300000000000e-02 +-1.946100000000000e-01 +-4.682000000000000e-01 +-7.519200000000000e-01 +-1.004200000000000e+00 +-1.183500000000000e+00 +-1.264900000000000e+00 +-1.250600000000000e+00 +-1.166700000000000e+00 +-1.047600000000000e+00 +-9.176100000000000e-01 +-7.808700000000000e-01 +-6.247100000000000e-01 +-4.331600000000000e-01 +-2.006700000000000e-01 + 6.245000000000000e-02 + 3.344100000000000e-01 + 5.908500000000000e-01 + 8.113000000000000e-01 + 9.801100000000000e-01 + 1.085000000000000e+00 + 1.117900000000000e+00 + 1.080000000000000e+00 + 9.872000000000000e-01 + 8.686600000000000e-01 + 7.567500000000000e-01 + 6.715200000000000e-01 + 6.099400000000000e-01 + 5.475800000000000e-01 + 4.531400000000000e-01 + 3.070500000000000e-01 + 1.125300000000000e-01 +-1.076900000000000e-01 +-3.259800000000000e-01 +-5.250500000000000e-01 +-7.031800000000000e-01 +-8.665800000000000e-01 +-1.015200000000000e+00 +-1.133900000000000e+00 +-1.196100000000000e+00 +-1.179500000000000e+00 +-1.081900000000000e+00 +-9.273800000000000e-01 +-7.550900000000000e-01 +-5.982100000000000e-01 +-4.652000000000000e-01 +-3.358700000000000e-01 +-1.753300000000000e-01 + 4.274800000000000e-02 + 3.177000000000000e-01 + 6.196800000000000e-01 + 9.039600000000000e-01 + 1.132000000000000e+00 + 1.285700000000000e+00 + 1.367700000000000e+00 + 1.389700000000000e+00 + 1.359900000000000e+00 + 1.278400000000000e+00 + 1.142200000000000e+00 + 9.538200000000000e-01 + 7.242700000000000e-01 + 4.682700000000000e-01 + 1.958400000000000e-01 +-9.087600000000000e-02 +-3.912300000000000e-01 +-6.946400000000000e-01 +-9.741400000000000e-01 +-1.192100000000000e+00 +-1.316900000000000e+00 +-1.338600000000000e+00 +-1.274300000000000e+00 +-1.157700000000000e+00 +-1.021100000000000e+00 +-8.831300000000000e-01 +-7.482000000000000e-01 +-6.168300000000000e-01 +-4.952600000000000e-01 +-3.957100000000000e-01 +-3.269000000000000e-01 +-2.828600000000000e-01 +-2.401200000000000e-01 +-1.661500000000000e-01 +-3.355700000000000e-02 + 1.695300000000000e-01 + 4.379500000000000e-01 + 7.543100000000000e-01 + 1.093400000000000e+00 + 1.422700000000000e+00 + 1.701300000000000e+00 + 1.884700000000000e+00 + 1.937100000000000e+00 + 1.846400000000000e+00 + 1.630400000000000e+00 + 1.328700000000000e+00 + 9.828300000000000e-01 + 6.182100000000000e-01 + 2.403100000000000e-01 +-1.533600000000000e-01 +-5.555500000000000e-01 +-9.405400000000000e-01 +-1.272100000000000e+00 +-1.522000000000000e+00 +-1.683700000000000e+00 +-1.770400000000000e+00 +-1.797900000000000e+00 +-1.766400000000000e+00 +-1.656100000000000e+00 +-1.441900000000000e+00 +-1.118400000000000e+00 +-7.160900000000000e-01 +-2.985900000000000e-01 + 6.065400000000000e-02 + 3.077500000000000e-01 + 4.280000000000000e-01 + 4.469700000000000e-01 + 4.150600000000000e-01 + 3.858500000000000e-01 + 3.984800000000000e-01 + 4.692800000000000e-01 + 5.923800000000000e-01 + 7.461300000000000e-01 + 9.022800000000000e-01 + 1.035500000000000e+00 + 1.130700000000000e+00 + 1.185000000000000e+00 + 1.203500000000000e+00 + 1.191200000000000e+00 + 1.145000000000000e+00 + 1.052400000000000e+00 + 8.985100000000000e-01 + 6.760900000000000e-01 + 3.940400000000000e-01 + 7.686900000000001e-02 +-2.441300000000000e-01 +-5.433500000000000e-01 +-8.096100000000001e-01 +-1.046200000000000e+00 +-1.262100000000000e+00 +-1.460100000000000e+00 +-1.628000000000000e+00 +-1.738400000000000e+00 +-1.758900000000000e+00 +-1.667100000000000e+00 +-1.462600000000000e+00 +-1.169700000000000e+00 +-8.285900000000000e-01 +-4.777800000000000e-01 +-1.403100000000000e-01 + 1.795000000000000e-01 + 4.857700000000000e-01 + 7.751000000000000e-01 + 1.027000000000000e+00 + 1.209600000000000e+00 + 1.298800000000000e+00 + 1.296800000000000e+00 + 1.238000000000000e+00 + 1.172600000000000e+00 + 1.140100000000000e+00 + 1.146200000000000e+00 + 1.160800000000000e+00 + 1.136800000000000e+00 + 1.037100000000000e+00 + 8.519099999999999e-01 + 5.979900000000000e-01 + 3.019600000000000e-01 +-1.584300000000000e-02 +-3.457600000000000e-01 +-6.802200000000000e-01 +-1.002200000000000e+00 +-1.283200000000000e+00 +-1.493200000000000e+00 +-1.616300000000000e+00 +-1.658200000000000e+00 +-1.638100000000000e+00 +-1.572500000000000e+00 +-1.461200000000000e+00 +-1.287900000000000e+00 +-1.034800000000000e+00 +-7.002600000000000e-01 +-3.077600000000000e-01 + 1.019200000000000e-01 + 4.877900000000000e-01 + 8.241000000000001e-01 + 1.104500000000000e+00 + 1.334300000000000e+00 + 1.518000000000000e+00 + 1.651200000000000e+00 + 1.720500000000000e+00 + 1.709700000000000e+00 + 1.606900000000000e+00 + 1.408500000000000e+00 + 1.121300000000000e+00 + 7.631700000000000e-01 + 3.630600000000000e-01 +-4.111900000000000e-02 +-4.094300000000000e-01 +-7.101900000000000e-01 +-9.291500000000000e-01 +-1.072000000000000e+00 +-1.157600000000000e+00 +-1.206500000000000e+00 +-1.229100000000000e+00 +-1.223100000000000e+00 +-1.177400000000000e+00 +-1.081400000000000e+00 +-9.325800000000000e-01 +-7.382300000000001e-01 +-5.124300000000001e-01 +-2.711400000000000e-01 +-2.891200000000000e-02 + 2.019000000000000e-01 + 4.104800000000000e-01 + 5.873200000000000e-01 + 7.250900000000000e-01 + 8.197600000000000e-01 + 8.708500000000000e-01 + 8.805700000000000e-01 + 8.525000000000000e-01 + 7.908700000000000e-01 + 7.008200000000000e-01 + 5.890600000000000e-01 + 4.638700000000000e-01 + 3.340600000000000e-01 + 2.070100000000000e-01 + 8.702400000000000e-02 +-2.514200000000000e-02 +-1.310200000000000e-01 +-2.318000000000000e-01 +-3.254700000000000e-01 +-4.053100000000000e-01 +-4.611600000000000e-01 +-4.838800000000000e-01 +-4.711900000000000e-01 +-4.318400000000000e-01 +-3.847000000000000e-01 +-3.518300000000000e-01 +-3.479100000000000e-01 +-3.716500000000000e-01 +-4.041400000000000e-01 +-4.159500000000000e-01 +-3.796000000000000e-01 +-2.810500000000000e-01 +-1.246800000000000e-01 + 6.962400000000001e-02 + 2.741000000000000e-01 + 4.607500000000000e-01 + 6.060300000000000e-01 + 6.930300000000000e-01 + 7.132100000000000e-01 + 6.686600000000000e-01 + 5.729800000000000e-01 + 4.480300000000000e-01 + 3.157900000000000e-01 + 1.894000000000000e-01 + 6.921800000000000e-02 +-5.218400000000000e-02 +-1.787400000000000e-01 +-3.014500000000000e-01 +-3.987000000000000e-01 +-4.479200000000000e-01 +-4.410700000000000e-01 +-3.925900000000000e-01 +-3.326800000000000e-01 +-2.893100000000000e-01 +-2.710100000000000e-01 +-2.629300000000000e-01 +-2.396400000000000e-01 +-1.857200000000000e-01 +-1.093400000000000e-01 +-3.832700000000000e-02 +-1.153800000000000e-03 +-5.884400000000000e-03 +-3.215800000000000e-02 +-4.188600000000000e-02 +-1.379900000000000e-03 + 9.989300000000000e-02 + 2.455500000000000e-01 + 4.041100000000000e-01 + 5.465700000000000e-01 + 6.574900000000000e-01 + 7.338000000000000e-01 + 7.753100000000001e-01 + 7.761800000000000e-01 + 7.244600000000000e-01 + 6.093800000000000e-01 + 4.299600000000000e-01 + 1.981900000000000e-01 +-6.488300000000000e-02 +-3.365300000000000e-01 +-5.974300000000000e-01 +-8.317200000000000e-01 +-1.024200000000000e+00 +-1.158600000000000e+00 +-1.220100000000000e+00 +-1.201300000000000e+00 +-1.106100000000000e+00 +-9.506900000000000e-01 +-7.579800000000000e-01 +-5.493700000000000e-01 +-3.373700000000000e-01 +-1.222300000000000e-01 + 1.057800000000000e-01 + 3.589600000000000e-01 + 6.421800000000000e-01 + 9.443800000000000e-01 + 1.236000000000000e+00 + 1.474700000000000e+00 + 1.618300000000000e+00 + 1.638600000000000e+00 + 1.530200000000000e+00 + 1.309000000000000e+00 + 1.002700000000000e+00 + 6.398400000000000e-01 + 2.450100000000000e-01 +-1.590100000000000e-01 +-5.453400000000000e-01 +-8.810000000000000e-01 +-1.132700000000000e+00 +-1.277800000000000e+00 +-1.314000000000000e+00 +-1.259400000000000e+00 +-1.144800000000000e+00 +-1.000900000000000e+00 +-8.492700000000000e-01 +-7.006300000000000e-01 +-5.569200000000000e-01 +-4.148900000000000e-01 +-2.676300000000000e-01 +-1.057700000000000e-01 + 7.842100000000000e-02 + 2.839900000000000e-01 + 4.950800000000000e-01 + 6.814200000000000e-01 + 8.079400000000000e-01 + 8.494000000000000e-01 + 8.018700000000000e-01 + 6.844500000000000e-01 + 5.308200000000000e-01 + 3.763600000000000e-01 + 2.480000000000000e-01 + 1.601800000000000e-01 + 1.155100000000000e-01 + 1.065000000000000e-01 + 1.174400000000000e-01 + 1.281000000000000e-01 + 1.211900000000000e-01 + 9.118000000000000e-02 + 4.855200000000000e-02 + 1.401800000000000e-02 + 4.032300000000000e-03 + 1.642400000000000e-02 + 2.710100000000000e-02 + 2.254400000000000e-03 +-8.052600000000000e-02 +-2.160400000000000e-01 +-3.714300000000000e-01 +-5.027100000000000e-01 +-5.768700000000000e-01 +-5.854800000000000e-01 +-5.426200000000000e-01 +-4.710700000000000e-01 +-3.880500000000000e-01 +-2.993700000000000e-01 +-2.032700000000000e-01 +-9.771299999999999e-02 + 1.535500000000000e-02 + 1.304600000000000e-01 + 2.402000000000000e-01 + 3.345000000000000e-01 + 3.982000000000000e-01 + 4.118700000000000e-01 + 3.594300000000000e-01 + 2.400100000000000e-01 + 7.599100000000000e-02 +-9.075900000000001e-02 +-2.145300000000000e-01 +-2.649000000000000e-01 +-2.374200000000000e-01 +-1.497600000000000e-01 +-2.722100000000000e-02 + 1.109100000000000e-01 + 2.547800000000000e-01 + 3.962000000000000e-01 + 5.181500000000000e-01 + 5.920000000000000e-01 + 5.869900000000000e-01 + 4.866500000000000e-01 + 3.013400000000000e-01 + 6.802200000000000e-02 +-1.632600000000000e-01 +-3.484100000000000e-01 +-4.633400000000000e-01 +-5.064600000000000e-01 +-4.901800000000000e-01 +-4.288700000000000e-01 +-3.310700000000000e-01 +-2.009200000000000e-01 +-4.657500000000000e-02 + 1.111700000000000e-01 + 2.381000000000000e-01 + 2.969900000000000e-01 + 2.654500000000000e-01 + 1.510400000000000e-01 +-6.896400000000000e-03 +-1.522700000000000e-01 +-2.375400000000000e-01 +-2.448700000000000e-01 +-1.904000000000000e-01 +-1.091400000000000e-01 +-3.125800000000000e-02 + 3.395500000000000e-02 + 9.558200000000000e-02 + 1.633000000000000e-01 + 2.293300000000000e-01 + 2.656200000000000e-01 + 2.399900000000000e-01 + 1.401300000000000e-01 +-1.268100000000000e-02 +-1.710800000000000e-01 +-2.861700000000000e-01 +-3.325200000000000e-01 +-3.171600000000000e-01 +-2.686600000000000e-01 +-2.157300000000000e-01 +-1.711300000000000e-01 +-1.300400000000000e-01 +-8.030400000000000e-02 +-1.438800000000000e-02 + 6.555700000000000e-02 + 1.503100000000000e-01 + 2.283600000000000e-01 + 2.880700000000000e-01 + 3.176300000000000e-01 + 3.074100000000000e-01 + 2.565900000000000e-01 + 1.798800000000000e-01 + 1.066600000000000e-01 + 6.856700000000000e-02 + 8.136500000000001e-02 + 1.333000000000000e-01 + 1.898500000000000e-01 + 2.135500000000000e-01 + 1.861900000000000e-01 + 1.185000000000000e-01 + 4.121500000000000e-02 +-1.518000000000000e-02 +-3.755000000000000e-02 +-3.349500000000000e-02 +-2.160500000000000e-02 +-1.838700000000000e-02 +-3.168700000000000e-02 +-6.284500000000000e-02 +-1.118600000000000e-01 +-1.787100000000000e-01 +-2.596200000000000e-01 +-3.434300000000000e-01 +-4.139000000000000e-01 +-4.580500000000000e-01 +-4.739900000000000e-01 +-4.709900000000000e-01 +-4.605100000000000e-01 +-4.449400000000000e-01 +-4.131900000000000e-01 +-3.469600000000000e-01 +-2.330900000000000e-01 +-7.278200000000000e-02 + 1.181800000000000e-01 + 3.165600000000000e-01 + 4.992400000000000e-01 + 6.461700000000000e-01 + 7.396100000000000e-01 + 7.649200000000000e-01 + 7.160300000000001e-01 + 6.025500000000000e-01 + 4.511100000000000e-01 + 2.967300000000000e-01 + 1.679000000000000e-01 + 7.539500000000000e-02 + 1.289500000000000e-02 +-3.152200000000000e-02 +-6.279899999999999e-02 +-7.577900000000000e-02 +-6.384400000000000e-02 +-3.117800000000000e-02 + 3.000600000000000e-03 + 1.323600000000000e-02 +-1.658500000000000e-02 +-8.329200000000000e-02 +-1.681600000000000e-01 +-2.510600000000000e-01 +-3.232400000000000e-01 +-3.882900000000000e-01 +-4.514100000000000e-01 +-5.069000000000000e-01 +-5.357200000000000e-01 +-5.164100000000000e-01 +-4.413400000000000e-01 +-3.255700000000000e-01 +-2.008900000000000e-01 +-9.872900000000000e-02 +-3.317200000000000e-02 + 5.344700000000000e-03 + 4.306100000000000e-02 + 1.080100000000000e-01 + 2.156000000000000e-01 + 3.605800000000000e-01 + 5.169800000000000e-01 + 6.455400000000000e-01 + 7.069900000000000e-01 + 6.782300000000000e-01 + 5.652000000000000e-01 + 4.043800000000000e-01 + 2.481800000000000e-01 + 1.390400000000000e-01 + 8.622500000000000e-02 + 6.089800000000000e-02 + 1.515700000000000e-02 +-8.533499999999999e-02 +-2.361700000000000e-01 +-3.939000000000000e-01 +-5.015400000000000e-01 +-5.229700000000000e-01 +-4.632400000000000e-01 +-3.619600000000000e-01 +-2.661600000000000e-01 +-2.024500000000000e-01 +-1.669400000000000e-01 +-1.368500000000000e-01 +-9.228100000000000e-02 +-3.109100000000000e-02 + 3.256100000000000e-02 + 8.189100000000001e-02 + 1.111000000000000e-01 + 1.287100000000000e-01 + 1.496300000000000e-01 + 1.833700000000000e-01 + 2.266300000000000e-01 + 2.642400000000000e-01 + 2.761100000000000e-01 + 2.459300000000000e-01 + 1.685800000000000e-01 + 5.495200000000000e-02 +-6.759100000000000e-02 +-1.615900000000000e-01 +-1.935100000000000e-01 +-1.509600000000000e-01 +-5.340000000000000e-02 + 5.265100000000000e-02 + 1.148400000000000e-01 + 1.021600000000000e-01 + 2.167800000000000e-02 +-8.626900000000000e-02 +-1.718000000000000e-01 +-2.029400000000000e-01 +-1.793800000000000e-01 +-1.254400000000000e-01 +-6.965300000000001e-02 +-2.694600000000000e-02 + 4.899500000000000e-03 + 3.502600000000000e-02 + 6.662200000000000e-02 + 9.302600000000000e-02 + 1.054200000000000e-01 + 1.041400000000000e-01 + 1.024700000000000e-01 + 1.184400000000000e-01 + 1.603300000000000e-01 + 2.175700000000000e-01 + 2.645800000000000e-01 + 2.751900000000000e-01 + 2.372900000000000e-01 + 1.575000000000000e-01 + 5.359700000000000e-02 +-5.865700000000000e-02 +-1.738200000000000e-01 +-2.945000000000000e-01 +-4.210600000000000e-01 +-5.417800000000000e-01 +-6.314800000000000e-01 +-6.603800000000000e-01 +-6.081700000000000e-01 +-4.749600000000000e-01 +-2.832400000000000e-01 +-6.984000000000000e-02 + 1.273500000000000e-01 + 2.817200000000000e-01 + 3.838000000000000e-01 + 4.391300000000000e-01 + 4.601400000000000e-01 + 4.570200000000000e-01 + 4.326100000000000e-01 + 3.839200000000000e-01 + 3.092600000000000e-01 + 2.161700000000000e-01 + 1.245700000000000e-01 + 6.196300000000000e-02 + 5.213300000000000e-02 + 1.029800000000000e-01 + 2.002000000000000e-01 + 3.105800000000000e-01 + 3.934800000000000e-01 + 4.151700000000000e-01 + 3.595300000000000e-01 + 2.310500000000000e-01 + 5.051500000000000e-02 +-1.535100000000000e-01 +-3.528500000000000e-01 +-5.248200000000000e-01 +-6.538100000000000e-01 +-7.307100000000000e-01 +-7.519900000000000e-01 +-7.195700000000000e-01 +-6.411500000000000e-01 +-5.299400000000000e-01 +-4.028700000000000e-01 +-2.775200000000000e-01 +-1.687700000000000e-01 +-8.639400000000000e-02 +-3.408800000000000e-02 +-9.126799999999999e-03 +-1.830700000000000e-03 + 4.787100000000000e-03 + 3.323100000000000e-02 + 1.054500000000000e-01 + 2.327800000000000e-01 + 4.061800000000000e-01 + 5.933300000000000e-01 + 7.473700000000000e-01 + 8.254300000000000e-01 + 8.082600000000000e-01 + 7.095000000000000e-01 + 5.683400000000000e-01 + 4.288600000000000e-01 + 3.179200000000000e-01 + 2.345600000000000e-01 + 1.562800000000000e-01 + 5.720200000000000e-02 +-7.418500000000000e-02 +-2.278400000000000e-01 +-3.780000000000000e-01 +-4.960300000000000e-01 +-5.618900000000000e-01 +-5.690499999999999e-01 +-5.237800000000000e-01 +-4.419500000000000e-01 +-3.453800000000000e-01 +-2.566700000000000e-01 +-1.915500000000000e-01 +-1.512700000000000e-01 +-1.206500000000000e-01 +-7.621500000000000e-02 +-2.034900000000000e-03 + 9.638099999999999e-02 + 1.908500000000000e-01 + 2.450700000000000e-01 + 2.366300000000000e-01 + 1.715400000000000e-01 + 8.062400000000000e-02 +-1.173600000000000e-04 +-5.140900000000000e-02 +-7.935900000000000e-02 +-1.054900000000000e-01 +-1.466300000000000e-01 +-2.002900000000000e-01 +-2.458400000000000e-01 +-2.594300000000000e-01 +-2.301100000000000e-01 +-1.651400000000000e-01 +-8.224200000000000e-02 + 3.358900000000000e-03 + 8.610100000000000e-02 + 1.672300000000000e-01 + 2.467400000000000e-01 + 3.187100000000000e-01 + 3.741200000000000e-01 + 4.073200000000000e-01 + 4.188600000000000e-01 + 4.116400000000000e-01 + 3.848000000000000e-01 + 3.332000000000000e-01 + 2.553200000000000e-01 + 1.631300000000000e-01 + 8.301900000000000e-02 + 4.259200000000000e-02 + 5.029600000000000e-02 + 8.337300000000000e-02 + 9.622000000000000e-02 + 4.670400000000000e-02 +-7.643300000000000e-02 +-2.444400000000000e-01 +-4.047000000000000e-01 +-5.107300000000000e-01 +-5.450500000000000e-01 +-5.201400000000000e-01 +-4.603000000000000e-01 +-3.816000000000000e-01 +-2.867600000000000e-01 +-1.771900000000000e-01 +-6.841600000000000e-02 + 8.430900000000000e-03 + 2.449000000000000e-02 +-2.235000000000000e-02 +-9.742199999999999e-02 +-1.454700000000000e-01 +-1.245500000000000e-01 +-3.391900000000000e-02 + 8.505600000000001e-02 + 1.766400000000000e-01 + 2.075200000000000e-01 + 1.864900000000000e-01 + 1.538300000000000e-01 + 1.499100000000000e-01 + 1.873300000000000e-01 + 2.462900000000000e-01 + 2.940700000000000e-01 + 3.110200000000000e-01 + 3.018300000000000e-01 + 2.847600000000000e-01 + 2.696900000000000e-01 + 2.448700000000000e-01 + 1.842900000000000e-01 + 7.023699999999999e-02 +-8.703300000000000e-02 +-2.483400000000000e-01 +-3.644300000000000e-01 +-4.008700000000000e-01 +-3.518900000000000e-01 +-2.359700000000000e-01 +-8.049800000000000e-02 + 9.048200000000001e-02 + 2.569600000000000e-01 + 3.958800000000000e-01 + 4.778000000000000e-01 + 4.751700000000000e-01 + 3.785000000000000e-01 + 2.072700000000000e-01 + 4.604700000000000e-03 +-1.833900000000000e-01 +-3.300900000000000e-01 +-4.366000000000000e-01 +-5.202200000000000e-01 +-5.926600000000000e-01 +-6.456300000000000e-01 +-6.555400000000000e-01 +-6.037500000000000e-01 +-4.959300000000000e-01 +-3.642700000000000e-01 +-2.489900000000000e-01 +-1.717100000000000e-01 +-1.201800000000000e-01 +-5.603800000000000e-02 + 5.912300000000000e-02 + 2.368400000000000e-01 + 4.520700000000000e-01 + 6.562900000000000e-01 + 8.032600000000000e-01 + 8.703300000000000e-01 + 8.621799999999999e-01 + 7.977600000000000e-01 + 6.920100000000000e-01 + 5.463500000000000e-01 + 3.541200000000000e-01 + 1.160500000000000e-01 +-1.461300000000000e-01 +-3.882400000000000e-01 +-5.567900000000000e-01 +-6.101900000000000e-01 +-5.370100000000000e-01 +-3.624100000000000e-01 +-1.397000000000000e-01 + 6.889199999999999e-02 + 2.135400000000000e-01 + 2.716400000000000e-01 + 2.505100000000000e-01 + 1.781700000000000e-01 + 8.744100000000000e-02 + 1.218900000000000e-03 +-7.437199999999999e-02 +-1.469800000000000e-01 +-2.283600000000000e-01 +-3.242400000000000e-01 +-4.293600000000000e-01 +-5.291600000000000e-01 +-6.058200000000000e-01 +-6.443700000000000e-01 +-6.360900000000000e-01 +-5.790200000000000e-01 +-4.772000000000000e-01 +-3.399700000000000e-01 +-1.811100000000000e-01 +-1.645900000000000e-02 + 1.400500000000000e-01 + 2.803400000000000e-01 + 4.031800000000000e-01 + 5.108100000000000e-01 + 6.028400000000000e-01 + 6.715200000000000e-01 + 7.025500000000000e-01 + 6.822000000000000e-01 + 6.073700000000000e-01 + 4.924900000000000e-01 + 3.682700000000000e-01 + 2.715200000000000e-01 + 2.297400000000000e-01 + 2.476300000000000e-01 + 3.022900000000000e-01 + 3.501700000000000e-01 + 3.440300000000000e-01 + 2.529100000000000e-01 + 7.633600000000000e-02 +-1.543900000000000e-01 +-3.889300000000000e-01 +-5.789299999999999e-01 +-6.967900000000000e-01 +-7.424800000000000e-01 +-7.353800000000000e-01 +-6.970100000000000e-01 +-6.360500000000000e-01 +-5.452000000000000e-01 +-4.117100000000000e-01 +-2.336900000000000e-01 +-3.078300000000000e-02 + 1.588300000000000e-01 + 2.933700000000000e-01 + 3.452100000000000e-01 + 3.110500000000000e-01 + 2.097400000000000e-01 + 7.160700000000000e-02 +-7.289400000000000e-02 +-1.988900000000000e-01 +-2.872200000000000e-01 +-3.232100000000000e-01 +-2.985100000000000e-01 +-2.155300000000000e-01 +-9.021200000000000e-02 + 5.116300000000000e-02 + 1.812800000000000e-01 + 2.822500000000000e-01 + 3.509500000000000e-01 + 3.964300000000000e-01 + 4.317900000000000e-01 + 4.663800000000000e-01 + 5.023400000000000e-01 + 5.357200000000000e-01 + 5.588200000000000e-01 + 5.612400000000000e-01 + 5.298100000000000e-01 + 4.506400000000000e-01 + 3.149400000000000e-01 + 1.268000000000000e-01 +-9.248700000000000e-02 +-3.085200000000000e-01 +-4.859100000000000e-01 +-6.025700000000001e-01 +-6.579100000000000e-01 +-6.699400000000000e-01 +-6.631800000000000e-01 +-6.545600000000000e-01 +-6.453500000000000e-01 +-6.224800000000000e-01 +-5.671500000000000e-01 +-4.649600000000000e-01 +-3.126800000000000e-01 +-1.198900000000000e-01 + 9.334600000000000e-02 + 3.008400000000000e-01 + 4.756400000000000e-01 + 5.961000000000000e-01 + 6.518800000000000e-01 + 6.476700000000000e-01 + 6.020700000000000e-01 + 5.406100000000000e-01 + 4.853900000000000e-01 + 4.457700000000000e-01 + 4.151400000000000e-01 + 3.754200000000000e-01 + 3.074400000000000e-01 + 2.017600000000000e-01 + 6.476500000000000e-02 +-8.310300000000000e-02 +-2.160400000000000e-01 +-3.143900000000000e-01 +-3.733200000000000e-01 +-4.042300000000000e-01 +-4.279600000000000e-01 +-4.630700000000000e-01 +-5.153200000000000e-01 +-5.742200000000000e-01 +-6.187100000000000e-01 +-6.287000000000000e-01 +-5.953100000000000e-01 +-5.236100000000000e-01 +-4.265200000000000e-01 +-3.149600000000000e-01 +-1.916400000000000e-01 +-5.355900000000000e-02 + 9.919100000000000e-02 + 2.556300000000000e-01 + 3.947100000000000e-01 + 4.957900000000000e-01 + 5.517400000000000e-01 + 5.746500000000000e-01 + 5.884100000000000e-01 + 6.121000000000000e-01 + 6.457500000000000e-01 + 6.693300000000000e-01 + 6.570500000000000e-01 + 5.975900000000000e-01 + 5.059300000000000e-01 + 4.172000000000000e-01 + 3.654000000000000e-01 + 3.603000000000000e-01 + 3.780000000000000e-01 + 3.714900000000000e-01 + 2.951100000000000e-01 + 1.281900000000000e-01 +-1.155500000000000e-01 +-3.964400000000000e-01 +-6.681300000000000e-01 +-8.956800000000000e-01 +-1.063500000000000e+00 +-1.172100000000000e+00 +-1.228300000000000e+00 +-1.237500000000000e+00 +-1.199900000000000e+00 +-1.112600000000000e+00 +-9.725100000000000e-01 +-7.808300000000000e-01 +-5.442700000000000e-01 +-2.755100000000000e-01 + 8.642199999999999e-03 + 2.903800000000000e-01 + 5.541700000000001e-01 + 7.880500000000000e-01 + 9.820000000000000e-01 + 1.124800000000000e+00 + 1.203200000000000e+00 + 1.205500000000000e+00 + 1.130200000000000e+00 + 9.926800000000000e-01 + 8.246800000000000e-01 + 6.636800000000000e-01 + 5.367300000000000e-01 + 4.481600000000000e-01 + 3.789900000000000e-01 + 2.984100000000000e-01 + 1.801400000000000e-01 + 1.368800000000000e-02 +-1.946900000000000e-01 +-4.287200000000000e-01 +-6.691800000000000e-01 +-8.960700000000000e-01 +-1.086600000000000e+00 +-1.215000000000000e+00 +-1.258300000000000e+00 +-1.206100000000000e+00 +-1.067500000000000e+00 +-8.680500000000000e-01 +-6.380600000000000e-01 +-3.997700000000000e-01 +-1.626200000000000e-01 + 7.101700000000000e-02 + 2.960500000000000e-01 + 5.007000000000000e-01 + 6.726799999999999e-01 + 8.097500000000000e-01 + 9.237100000000000e-01 + 1.031000000000000e+00 + 1.135000000000000e+00 + 1.213800000000000e+00 + 1.225500000000000e+00 + 1.130500000000000e+00 + 9.173700000000000e-01 + 6.135699999999999e-01 + 2.732300000000000e-01 +-5.034800000000000e-02 +-3.291100000000000e-01 +-5.659700000000000e-01 +-7.804500000000000e-01 +-9.862800000000000e-01 +-1.177200000000000e+00 +-1.328700000000000e+00 +-1.411600000000000e+00 +-1.405800000000000e+00 +-1.306300000000000e+00 +-1.120600000000000e+00 +-8.649800000000000e-01 +-5.619800000000000e-01 +-2.408200000000000e-01 + 6.586599999999999e-02 + 3.297900000000000e-01 + 5.359900000000000e-01 + 6.862300000000000e-01 + 7.933300000000000e-01 + 8.701900000000000e-01 + 9.221000000000000e-01 + 9.479100000000000e-01 + 9.479000000000000e-01 + 9.299800000000000e-01 + 9.073500000000000e-01 + 8.888400000000000e-01 + 8.702900000000000e-01 + 8.352200000000000e-01 + 7.651200000000000e-01 + 6.510899999999999e-01 + 4.973900000000000e-01 + 3.144800000000000e-01 + 1.089300000000000e-01 +-1.195500000000000e-01 +-3.709200000000000e-01 +-6.341800000000000e-01 +-8.848500000000000e-01 +-1.095200000000000e+00 +-1.249600000000000e+00 +-1.352300000000000e+00 +-1.417300000000000e+00 +-1.449500000000000e+00 +-1.431000000000000e+00 +-1.327600000000000e+00 +-1.112800000000000e+00 +-7.927800000000000e-01 +-4.117700000000000e-01 +-3.336200000000000e-02 + 2.904100000000000e-01 + 5.398600000000000e-01 + 7.253900000000000e-01 + 8.673800000000000e-01 + 9.765900000000000e-01 + 1.050100000000000e+00 + 1.082700000000000e+00 + 1.079500000000000e+00 + 1.055200000000000e+00 + 1.019200000000000e+00 + 9.618900000000000e-01 + 8.559099999999999e-01 + 6.773000000000000e-01 + 4.295800000000000e-01 + 1.509800000000000e-01 +-1.040700000000000e-01 +-2.967400000000000e-01 +-4.247300000000000e-01 +-5.158199999999999e-01 +-5.991200000000000e-01 +-6.772500000000000e-01 +-7.220900000000000e-01 +-6.976300000000000e-01 +-5.916000000000000e-01 +-4.304200000000000e-01 +-2.656000000000000e-01 +-1.421400000000000e-01 +-7.330200000000001e-02 +-3.962000000000000e-02 +-1.017900000000000e-02 + 3.266200000000000e-02 + 8.431300000000000e-02 + 1.287800000000000e-01 + 1.563500000000000e-01 + 1.708800000000000e-01 + 1.808000000000000e-01 + 1.839100000000000e-01 + 1.625600000000000e-01 + 9.650499999999999e-02 +-1.569500000000000e-02 +-1.455100000000000e-01 +-2.457400000000000e-01 +-2.789200000000000e-01 +-2.427400000000000e-01 +-1.731700000000000e-01 +-1.218300000000000e-01 +-1.227800000000000e-01 +-1.718400000000000e-01 +-2.319000000000000e-01 +-2.590400000000000e-01 +-2.304500000000000e-01 +-1.553400000000000e-01 +-6.373800000000000e-02 + 1.674200000000000e-02 + 7.886600000000001e-02 + 1.374800000000000e-01 + 2.162400000000000e-01 + 3.303900000000000e-01 + 4.772600000000000e-01 + 6.385300000000000e-01 + 7.899000000000000e-01 + 9.100800000000000e-01 + 9.837200000000000e-01 + 9.993800000000000e-01 + 9.474500000000000e-01 + 8.218400000000000e-01 + 6.250599999999999e-01 + 3.717900000000000e-01 + 8.636400000000000e-02 +-2.063400000000000e-01 +-4.913300000000000e-01 +-7.675900000000000e-01 +-1.041400000000000e+00 +-1.312000000000000e+00 +-1.558300000000000e+00 +-1.738600000000000e+00 +-1.803900000000000e+00 +-1.721600000000000e+00 +-1.492800000000000e+00 +-1.153800000000000e+00 +-7.598000000000000e-01 +-3.598300000000000e-01 + 1.987600000000000e-02 + 3.757300000000000e-01 + 7.114700000000000e-01 + 1.020800000000000e+00 + 1.281200000000000e+00 + 1.463800000000000e+00 + 1.550800000000000e+00 + 1.547800000000000e+00 + 1.481000000000000e+00 + 1.382200000000000e+00 + 1.270600000000000e+00 + 1.145400000000000e+00 + 9.902100000000000e-01 + 7.869699999999999e-01 + 5.273200000000000e-01 + 2.177800000000000e-01 +-1.221800000000000e-01 +-4.649000000000000e-01 +-7.793500000000000e-01 +-1.036500000000000e+00 +-1.216100000000000e+00 +-1.313200000000000e+00 +-1.340000000000000e+00 +-1.318400000000000e+00 +-1.266800000000000e+00 +-1.188600000000000e+00 +-1.072400000000000e+00 +-9.053600000000001e-01 +-6.908500000000000e-01 +-4.563100000000000e-01 +-2.431500000000000e-01 +-8.345100000000000e-02 + 2.085300000000000e-02 + 1.008400000000000e-01 + 2.021000000000000e-01 + 3.564900000000000e-01 + 5.629999999999999e-01 + 7.896800000000000e-01 + 9.939900000000000e-01 + 1.146400000000000e+00 + 1.241400000000000e+00 + 1.290100000000000e+00 + 1.302900000000000e+00 + 1.275900000000000e+00 + 1.191000000000000e+00 + 1.028700000000000e+00 + 7.836100000000000e-01 + 4.724200000000000e-01 + 1.298500000000000e-01 +-2.036500000000000e-01 +-4.948400000000000e-01 +-7.251400000000000e-01 +-8.911900000000000e-01 +-1.000800000000000e+00 +-1.067100000000000e+00 +-1.103300000000000e+00 +-1.117800000000000e+00 +-1.112400000000000e+00 +-1.081800000000000e+00 +-1.016800000000000e+00 +-9.098500000000000e-01 +-7.599900000000001e-01 +-5.761700000000000e-01 +-3.758500000000000e-01 +-1.796300000000000e-01 +-3.547600000000000e-03 + 1.479600000000000e-01 + 2.845400000000000e-01 + 4.254200000000000e-01 + 5.884000000000000e-01 + 7.769400000000000e-01 + 9.727600000000000e-01 + 1.139600000000000e+00 + 1.238200000000000e+00 + 1.244400000000000e+00 + 1.159900000000000e+00 + 1.008200000000000e+00 + 8.185800000000000e-01 + 6.088900000000000e-01 + 3.800600000000000e-01 + 1.259800000000000e-01 +-1.488900000000000e-01 +-4.184100000000000e-01 +-6.403000000000000e-01 +-7.762100000000000e-01 +-8.134300000000000e-01 +-7.731200000000000e-01 +-6.995000000000000e-01 +-6.367400000000000e-01 +-6.081900000000000e-01 +-6.090600000000000e-01 +-6.140900000000000e-01 +-5.925600000000000e-01 +-5.213800000000000e-01 +-3.916500000000000e-01 +-2.102200000000000e-01 + 1.185400000000000e-03 + 2.091000000000000e-01 + 3.763200000000000e-01 + 4.753400000000000e-01 + 5.019900000000000e-01 + 4.800100000000000e-01 + 4.502600000000000e-01 + 4.478900000000000e-01 + 4.804600000000000e-01 + 5.214800000000001e-01 + 5.247000000000001e-01 + 4.508700000000000e-01 + 2.902600000000000e-01 + 6.731600000000000e-02 +-1.736900000000000e-01 +-3.906300000000000e-01 +-5.583700000000000e-01 +-6.689600000000000e-01 +-7.213500000000000e-01 +-7.117100000000000e-01 +-6.330200000000000e-01 +-4.834700000000000e-01 +-2.756900000000000e-01 +-3.778700000000000e-02 + 1.955800000000000e-01 + 3.965500000000000e-01 + 5.526000000000000e-01 + 6.653600000000000e-01 + 7.414800000000000e-01 + 7.828300000000000e-01 + 7.828400000000000e-01 + 7.305199999999999e-01 + 6.190000000000000e-01 + 4.525200000000000e-01 + 2.482400000000000e-01 + 3.232500000000000e-02 +-1.670700000000000e-01 +-3.270300000000000e-01 +-4.355100000000000e-01 +-4.944600000000000e-01 +-5.197700000000000e-01 +-5.369400000000000e-01 +-5.721700000000000e-01 +-6.405100000000000e-01 +-7.355300000000000e-01 +-8.267600000000001e-01 +-8.683700000000000e-01 +-8.178700000000000e-01 +-6.569400000000000e-01 +-4.034000000000000e-01 +-1.067100000000000e-01 + 1.724000000000000e-01 + 3.877700000000000e-01 + 5.251300000000000e-01 + 6.011000000000000e-01 + 6.456200000000000e-01 + 6.795200000000000e-01 + 7.022200000000000e-01 + 6.964800000000000e-01 + 6.455700000000000e-01 + 5.493200000000000e-01 + 4.275100000000000e-01 + 3.090800000000000e-01 + 2.159300000000000e-01 + 1.535400000000000e-01 + 1.138100000000000e-01 + 8.564200000000000e-02 + 6.322800000000001e-02 + 4.572900000000000e-02 + 3.075800000000000e-02 + 9.912499999999999e-03 +-2.786300000000000e-02 +-8.764700000000000e-02 +-1.633700000000000e-01 +-2.424800000000000e-01 +-3.176500000000000e-01 +-3.945100000000000e-01 +-4.863900000000000e-01 +-5.976399999999999e-01 +-7.087300000000000e-01 +-7.777700000000000e-01 +-7.615700000000000e-01 +-6.432500000000000e-01 +-4.461500000000000e-01 +-2.224400000000000e-01 +-2.312700000000000e-02 + 1.292600000000000e-01 + 2.458600000000000e-01 + 3.521000000000000e-01 + 4.599400000000000e-01 + 5.540500000000000e-01 + 6.024300000000000e-01 + 5.821200000000000e-01 + 4.989500000000000e-01 + 3.851800000000000e-01 + 2.773000000000000e-01 + 1.916300000000000e-01 + 1.170700000000000e-01 + 3.040200000000000e-02 +-7.844900000000000e-02 +-1.909500000000000e-01 +-2.667500000000000e-01 +-2.682800000000000e-01 +-1.861500000000000e-01 +-4.842200000000000e-02 + 9.181000000000000e-02 + 1.824800000000000e-01 + 1.970200000000000e-01 + 1.449700000000000e-01 + 6.493800000000000e-02 + 4.976200000000000e-03 +-2.046800000000000e-04 + 5.471400000000000e-02 + 1.431200000000000e-01 + 2.189300000000000e-01 + 2.389000000000000e-01 + 1.838800000000000e-01 + 6.744000000000000e-02 +-7.351500000000000e-02 +-2.006600000000000e-01 +-2.947900000000000e-01 +-3.615800000000000e-01 +-4.195700000000000e-01 +-4.803300000000000e-01 +-5.363599999999999e-01 +-5.660500000000001e-01 +-5.511000000000000e-01 +-4.916600000000000e-01 +-4.064100000000000e-01 +-3.172100000000000e-01 +-2.308100000000000e-01 +-1.330700000000000e-01 +-9.062299999999999e-04 + 1.769800000000000e-01 + 3.865200000000000e-01 + 5.921500000000000e-01 + 7.547300000000000e-01 + 8.501900000000000e-01 + 8.763600000000000e-01 + 8.461600000000000e-01 + 7.754000000000000e-01 + 6.755700000000000e-01 + 5.548900000000000e-01 + 4.226600000000000e-01 + 2.892800000000000e-01 + 1.605900000000000e-01 + 3.183500000000000e-02 +-1.109600000000000e-01 +-2.806700000000000e-01 +-4.761900000000000e-01 +-6.768600000000000e-01 +-8.484400000000000e-01 +-9.570800000000000e-01 +-9.818200000000000e-01 +-9.195000000000000e-01 +-7.822300000000000e-01 +-5.926300000000000e-01 +-3.806100000000000e-01 +-1.801400000000000e-01 +-2.234800000000000e-02 + 7.579700000000000e-02 + 1.212600000000000e-01 + 1.445300000000000e-01 + 1.854200000000000e-01 + 2.712200000000000e-01 + 4.002500000000000e-01 + 5.412200000000000e-01 + 6.487800000000000e-01 + 6.849400000000000e-01 + 6.340200000000000e-01 + 5.050100000000000e-01 + 3.244500000000000e-01 + 1.273500000000000e-01 +-4.940500000000000e-02 +-1.724300000000000e-01 +-2.192400000000000e-01 +-1.868300000000000e-01 +-9.547600000000001e-02 + 1.825100000000000e-02 + 1.179700000000000e-01 + 1.839000000000000e-01 + 2.175100000000000e-01 + 2.310400000000000e-01 + 2.302900000000000e-01 + 2.051700000000000e-01 + 1.366600000000000e-01 + 1.505700000000000e-02 +-1.453300000000000e-01 +-3.081400000000000e-01 +-4.334700000000000e-01 +-4.996400000000000e-01 +-5.122700000000000e-01 +-4.946000000000000e-01 +-4.676600000000000e-01 +-4.356400000000000e-01 +-3.866700000000000e-01 +-3.060700000000000e-01 +-1.905600000000000e-01 +-5.259900000000000e-02 + 8.592700000000000e-02 + 2.033900000000000e-01 + 2.836600000000000e-01 + 3.156100000000000e-01 + 2.922000000000000e-01 + 2.140900000000000e-01 + 9.619300000000000e-02 +-3.015900000000000e-02 +-1.258000000000000e-01 +-1.608000000000000e-01 +-1.296600000000000e-01 +-5.356800000000000e-02 + 3.294100000000000e-02 + 1.023800000000000e-01 + 1.484400000000000e-01 + 1.852900000000000e-01 + 2.341800000000000e-01 + 3.073900000000000e-01 + 3.994700000000000e-01 + 4.892200000000000e-01 + 5.490000000000000e-01 + 5.552900000000000e-01 + 4.966400000000000e-01 + 3.777200000000000e-01 + 2.193300000000000e-01 + 5.315800000000000e-02 +-8.861800000000000e-02 +-1.856600000000000e-01 +-2.370900000000000e-01 +-2.590900000000000e-01 +-2.731400000000000e-01 +-2.928500000000000e-01 +-3.186600000000000e-01 +-3.439100000000000e-01 +-3.658700000000000e-01 +-3.914000000000000e-01 +-4.310800000000000e-01 +-4.865100000000000e-01 +-5.423900000000000e-01 +-5.717300000000000e-01 +-5.517700000000000e-01 +-4.783300000000000e-01 +-3.667900000000000e-01 +-2.389400000000000e-01 +-1.066800000000000e-01 + 3.339700000000000e-02 + 1.899000000000000e-01 + 3.597800000000000e-01 + 5.197700000000000e-01 + 6.345000000000000e-01 + 6.762000000000000e-01 + 6.412400000000000e-01 + 5.517600000000000e-01 + 4.426200000000000e-01 + 3.443800000000000e-01 + 2.736600000000000e-01 + 2.338800000000000e-01 + 2.203300000000000e-01 + 2.223100000000000e-01 + 2.222600000000000e-01 + 1.980300000000000e-01 + 1.330100000000000e-01 + 2.993500000000000e-02 +-8.405200000000000e-02 +-1.698500000000000e-01 +-2.022500000000000e-01 +-1.912300000000000e-01 +-1.805900000000000e-01 +-2.207400000000000e-01 +-3.327700000000000e-01 +-4.893400000000000e-01 +-6.274800000000000e-01 +-6.852300000000000e-01 +-6.366500000000000e-01 +-5.018700000000000e-01 +-3.278200000000000e-01 +-1.567000000000000e-01 +-6.110200000000000e-03 + 1.275900000000000e-01 + 2.502400000000000e-01 + 3.544100000000000e-01 + 4.206900000000000e-01 + 4.334600000000000e-01 + 3.963200000000000e-01 + 3.337300000000000e-01 + 2.775100000000000e-01 + 2.490200000000000e-01 + 2.495100000000000e-01 + 2.634400000000000e-01 + 2.693400000000000e-01 + 2.498100000000000e-01 + 1.960400000000000e-01 + 1.086500000000000e-01 +-2.277900000000000e-03 +-1.183200000000000e-01 +-2.178900000000000e-01 +-2.860500000000000e-01 +-3.231500000000000e-01 +-3.441200000000000e-01 +-3.656800000000000e-01 +-3.894200000000000e-01 +-3.951300000000000e-01 +-3.529100000000000e-01 +-2.477200000000000e-01 +-9.808699999999999e-02 + 4.798200000000000e-02 + 1.398500000000000e-01 + 1.560400000000000e-01 + 1.174600000000000e-01 + 7.205000000000000e-02 + 6.211400000000000e-02 + 9.859800000000001e-02 + 1.598800000000000e-01 + 2.129100000000000e-01 + 2.375700000000000e-01 + 2.350500000000000e-01 + 2.167600000000000e-01 + 1.873100000000000e-01 + 1.388200000000000e-01 + 6.191600000000000e-02 +-3.811700000000000e-02 +-1.367500000000000e-01 +-2.037000000000000e-01 +-2.241300000000000e-01 +-2.090600000000000e-01 +-1.855800000000000e-01 +-1.743300000000000e-01 +-1.732300000000000e-01 +-1.609600000000000e-01 +-1.163700000000000e-01 +-3.682100000000000e-02 + 6.004400000000000e-02 + 1.513400000000000e-01 + 2.258400000000000e-01 + 2.869100000000000e-01 + 3.393200000000000e-01 + 3.736600000000000e-01 + 3.654900000000000e-01 + 2.932700000000000e-01 + 1.614500000000000e-01 + 7.909599999999999e-03 +-1.134600000000000e-01 +-1.642500000000000e-01 +-1.436800000000000e-01 +-8.494300000000000e-02 +-2.901700000000000e-02 + 2.790500000000000e-03 + 1.683400000000000e-02 + 3.143900000000000e-02 + 5.289900000000000e-02 + 6.445200000000000e-02 + 3.761200000000000e-02 +-4.392100000000000e-02 +-1.677900000000000e-01 +-2.973200000000000e-01 +-3.927800000000000e-01 +-4.328300000000000e-01 +-4.206300000000000e-01 +-3.730500000000000e-01 +-3.048400000000000e-01 +-2.217800000000000e-01 +-1.271300000000000e-01 +-3.301400000000000e-02 + 3.642800000000000e-02 + 5.537900000000000e-02 + 1.387500000000000e-02 +-7.095700000000001e-02 +-1.592900000000000e-01 +-2.068300000000000e-01 +-1.858200000000000e-01 +-9.660000000000001e-02 + 3.542200000000000e-02 + 1.735500000000000e-01 + 2.857300000000000e-01 + 3.551100000000000e-01 + 3.822600000000000e-01 + 3.805400000000000e-01 + 3.681500000000000e-01 + 3.607300000000000e-01 + 3.673300000000000e-01 + 3.911100000000000e-01 + 4.330200000000000e-01 + 4.945400000000000e-01 + 5.758700000000000e-01 + 6.692300000000000e-01 + 7.522700000000000e-01 + 7.888100000000000e-01 + 7.403000000000000e-01 + 5.838600000000000e-01 + 3.261600000000000e-01 + 3.471200000000000e-03 +-3.331600000000000e-01 +-6.385200000000000e-01 +-8.867500000000000e-01 +-1.070600000000000e+00 +-1.190200000000000e+00 +-1.243300000000000e+00 +-1.223800000000000e+00 +-1.131900000000000e+00 +-9.820700000000000e-01 +-8.035099999999999e-01 +-6.291000000000000e-01 +-4.817100000000000e-01 +-3.678500000000000e-01 +-2.821500000000000e-01 +-2.170400000000000e-01 +-1.678700000000000e-01 +-1.290600000000000e-01 +-8.619599999999999e-02 +-1.419800000000000e-02 + 1.127800000000000e-01 + 3.043400000000000e-01 + 5.419200000000000e-01 + 7.823500000000000e-01 + 9.764500000000000e-01 + 1.091800000000000e+00 + 1.125700000000000e+00 + 1.101500000000000e+00 + 1.052900000000000e+00 + 1.006500000000000e+00 + 9.723900000000000e-01 + 9.441800000000000e-01 + 9.049400000000000e-01 + 8.340400000000000e-01 + 7.130600000000000e-01 + 5.314100000000000e-01 + 2.917500000000000e-01 + 1.220400000000000e-02 +-2.774200000000000e-01 +-5.455900000000000e-01 +-7.699700000000000e-01 +-9.427500000000000e-01 +-1.067800000000000e+00 +-1.152700000000000e+00 +-1.203300000000000e+00 +-1.223900000000000e+00 +-1.220300000000000e+00 +-1.200200000000000e+00 +-1.166600000000000e+00 +-1.108700000000000e+00 +-1.000400000000000e+00 +-8.122900000000000e-01 +-5.326600000000000e-01 +-1.849900000000000e-01 + 1.736200000000000e-01 + 4.751200000000000e-01 + 6.722600000000000e-01 + 7.599000000000000e-01 + 7.725000000000000e-01 + 7.602400000000000e-01 + 7.601200000000000e-01 + 7.806700000000000e-01 + 8.074200000000000e-01 + 8.215400000000000e-01 + 8.157400000000000e-01 + 7.958000000000000e-01 + 7.688800000000000e-01 + 7.299800000000000e-01 + 6.591800000000000e-01 + 5.330800000000000e-01 + 3.428600000000000e-01 + 1.060700000000000e-01 +-1.364900000000000e-01 +-3.377000000000000e-01 +-4.648300000000000e-01 +-5.127699999999999e-01 +-5.031800000000000e-01 +-4.718600000000000e-01 +-4.520000000000000e-01 +-4.620400000000000e-01 +-5.027900000000000e-01 +-5.627100000000000e-01 +-6.261600000000000e-01 +-6.788500000000000e-01 +-7.079000000000000e-01 +-6.983400000000000e-01 +-6.312900000000000e-01 +-4.884100000000000e-01 +-2.628500000000000e-01 + 2.917400000000000e-02 + 3.445700000000000e-01 + 6.231600000000000e-01 + 8.089000000000000e-01 + 8.723400000000000e-01 + 8.219100000000000e-01 + 6.970300000000000e-01 + 5.470200000000000e-01 + 4.078900000000000e-01 + 2.907000000000000e-01 + 1.865300000000000e-01 + 8.279599999999999e-02 +-2.163900000000000e-02 +-1.127400000000000e-01 +-1.706100000000000e-01 +-1.840900000000000e-01 +-1.600800000000000e-01 +-1.213900000000000e-01 +-9.531100000000001e-02 +-1.010000000000000e-01 +-1.433500000000000e-01 +-2.152800000000000e-01 +-3.044800000000000e-01 +-3.985900000000000e-01 +-4.855100000000000e-01 +-5.507800000000000e-01 +-5.765800000000000e-01 +-5.454599999999999e-01 +-4.477000000000000e-01 +-2.875300000000000e-01 +-8.341700000000001e-02 + 1.381500000000000e-01 + 3.519200000000000e-01 + 5.404800000000000e-01 + 6.946900000000000e-01 + 8.095200000000000e-01 + 8.797000000000000e-01 + 8.994200000000000e-01 + 8.663300000000000e-01 + 7.855000000000000e-01 + 6.685300000000000e-01 + 5.265900000000000e-01 + 3.619700000000000e-01 + 1.656600000000000e-01 +-7.432600000000000e-02 +-3.572100000000000e-01 +-6.562100000000000e-01 +-9.189300000000000e-01 +-1.084700000000000e+00 +-1.111500000000000e+00 +-9.977500000000000e-01 +-7.850900000000000e-01 +-5.408200000000000e-01 +-3.290000000000000e-01 +-1.866100000000000e-01 +-1.163400000000000e-01 +-9.674300000000000e-02 +-1.000700000000000e-01 +-1.057500000000000e-01 +-1.032200000000000e-01 +-8.664500000000000e-02 +-4.920300000000000e-02 + 1.702600000000000e-02 + 1.158900000000000e-01 + 2.418500000000000e-01 + 3.797300000000000e-01 + 5.101599999999999e-01 + 6.168000000000000e-01 + 6.905100000000000e-01 + 7.283800000000000e-01 + 7.302900000000000e-01 + 6.965400000000000e-01 + 6.288000000000000e-01 + 5.328000000000001e-01 + 4.199500000000000e-01 + 3.058700000000000e-01 + 2.065100000000000e-01 + 1.340900000000000e-01 + 9.400200000000000e-02 + 8.261900000000000e-02 + 8.556400000000000e-02 + 7.749800000000000e-02 + 2.616900000000000e-02 +-9.748999999999999e-02 +-3.054100000000000e-01 +-5.812000000000000e-01 +-8.792800000000000e-01 +-1.137700000000000e+00 +-1.300000000000000e+00 +-1.336100000000000e+00 +-1.251000000000000e+00 +-1.078500000000000e+00 +-8.639700000000000e-01 +-6.459600000000000e-01 +-4.463600000000000e-01 +-2.705900000000000e-01 +-1.142700000000000e-01 + 3.018900000000000e-02 + 1.712600000000000e-01 + 3.190600000000000e-01 + 4.852400000000000e-01 + 6.787000000000000e-01 + 8.979700000000000e-01 + 1.125100000000000e+00 + 1.326300000000000e+00 + 1.461500000000000e+00 + 1.498900000000000e+00 + 1.427800000000000e+00 + 1.261900000000000e+00 + 1.031400000000000e+00 + 7.693600000000000e-01 + 4.983000000000000e-01 + 2.265900000000000e-01 +-4.573700000000000e-02 +-3.164300000000000e-01 +-5.739700000000000e-01 +-7.992700000000000e-01 +-9.746800000000000e-01 +-1.093300000000000e+00 +-1.161000000000000e+00 +-1.190200000000000e+00 +-1.188700000000000e+00 +-1.153500000000000e+00 +-1.073400000000000e+00 +-9.382300000000000e-01 +-7.487400000000000e-01 +-5.188700000000001e-01 +-2.708700000000000e-01 +-2.733600000000000e-02 + 1.935200000000000e-01 + 3.775800000000000e-01 + 5.130000000000000e-01 + 5.917500000000000e-01 + 6.152400000000000e-01 + 5.989300000000000e-01 + 5.694000000000000e-01 + 5.520500000000000e-01 + 5.560300000000000e-01 + 5.672400000000000e-01 + 5.557500000000000e-01 + 4.945300000000000e-01 + 3.771900000000000e-01 + 2.231000000000000e-01 + 6.684300000000000e-02 +-5.993200000000000e-02 +-1.417500000000000e-01 +-1.801600000000000e-01 +-1.846300000000000e-01 +-1.627300000000000e-01 +-1.171700000000000e-01 +-5.005900000000000e-02 + 3.180700000000000e-02 + 1.162600000000000e-01 + 1.898100000000000e-01 + 2.413900000000000e-01 + 2.615800000000000e-01 + 2.390200000000000e-01 + 1.602800000000000e-01 + 1.783100000000000e-02 +-1.774800000000000e-01 +-3.896800000000000e-01 +-5.657900000000000e-01 +-6.578700000000000e-01 +-6.463900000000000e-01 +-5.495200000000000e-01 +-4.115100000000000e-01 +-2.778800000000000e-01 +-1.740800000000000e-01 +-1.009400000000000e-01 +-4.655100000000000e-02 +-2.888000000000000e-03 + 2.667900000000000e-02 + 3.299100000000000e-02 + 1.244600000000000e-02 +-2.728000000000000e-02 +-7.188500000000000e-02 +-1.098100000000000e-01 +-1.362500000000000e-01 +-1.473600000000000e-01 +-1.307800000000000e-01 +-6.360399999999999e-02 + 7.613399999999999e-02 + 2.907300000000000e-01 + 5.509700000000000e-01 + 8.021800000000000e-01 + 9.864000000000001e-01 + 1.066800000000000e+00 + 1.038900000000000e+00 + 9.237300000000001e-01 + 7.498200000000000e-01 + 5.395900000000000e-01 + 3.068400000000000e-01 + 6.347400000000000e-02 +-1.745800000000000e-01 +-3.892200000000000e-01 +-5.675500000000000e-01 +-7.067600000000001e-01 +-8.106900000000000e-01 +-8.811000000000000e-01 +-9.124200000000000e-01 +-8.963600000000000e-01 +-8.330500000000000e-01 +-7.377600000000000e-01 +-6.347500000000000e-01 +-5.406800000000000e-01 +-4.509200000000000e-01 +-3.418800000000000e-01 +-1.909900000000000e-01 +-1.557500000000000e-04 + 1.960800000000000e-01 + 3.471900000000000e-01 + 4.184300000000000e-01 + 4.155600000000000e-01 + 3.838400000000000e-01 + 3.805700000000000e-01 + 4.396600000000000e-01 + 5.524500000000000e-01 + 6.767000000000000e-01 + 7.655999999999999e-01 + 7.947900000000000e-01 + 7.689900000000000e-01 + 7.064800000000000e-01 + 6.167899999999999e-01 + 4.908200000000000e-01 + 3.116900000000000e-01 + 7.719400000000000e-02 +-1.851500000000000e-01 +-4.241900000000000e-01 +-5.903800000000000e-01 +-6.633800000000000e-01 +-6.626300000000001e-01 +-6.331900000000000e-01 +-6.160200000000000e-01 +-6.223500000000000e-01 +-6.291600000000001e-01 +-5.979300000000000e-01 +-5.037100000000000e-01 +-3.548400000000000e-01 +-1.906200000000000e-01 +-5.887600000000000e-02 + 1.169000000000000e-02 + 2.677400000000000e-02 + 2.066900000000000e-02 + 3.435000000000000e-02 + 9.213200000000001e-02 + 1.910000000000000e-01 + 3.070700000000000e-01 + 4.123200000000000e-01 + 4.889000000000000e-01 + 5.324700000000000e-01 + 5.450300000000000e-01 + 5.256900000000000e-01 + 4.683200000000000e-01 + 3.682400000000000e-01 + 2.322700000000000e-01 + 8.285300000000000e-02 +-4.856000000000000e-02 +-1.357200000000000e-01 +-1.701800000000000e-01 +-1.640600000000000e-01 +-1.416600000000000e-01 +-1.257200000000000e-01 +-1.271000000000000e-01 +-1.429200000000000e-01 +-1.619400000000000e-01 +-1.719300000000000e-01 +-1.641300000000000e-01 +-1.341600000000000e-01 +-8.163100000000000e-02 +-1.119900000000000e-02 + 6.529699999999999e-02 + 1.284000000000000e-01 + 1.549700000000000e-01 + 1.260400000000000e-01 + 3.528000000000000e-02 +-1.067000000000000e-01 +-2.740700000000000e-01 +-4.326900000000000e-01 +-5.487300000000001e-01 +-5.961500000000000e-01 +-5.615300000000000e-01 +-4.465200000000000e-01 +-2.680700000000000e-01 +-5.625700000000000e-02 + 1.509000000000000e-01 + 3.155500000000000e-01 + 4.095700000000000e-01 + 4.231300000000000e-01 + 3.693400000000000e-01 + 2.823700000000000e-01 + 2.080800000000000e-01 + 1.883900000000000e-01 + 2.441000000000000e-01 + 3.635200000000000e-01 + 5.037900000000000e-01 + 6.070400000000000e-01 + 6.256900000000000e-01 + 5.443500000000000e-01 + 3.864500000000000e-01 + 2.007600000000000e-01 + 3.537500000000000e-02 +-8.573300000000000e-02 +-1.699200000000000e-01 +-2.436800000000000e-01 +-3.305100000000000e-01 +-4.336900000000000e-01 +-5.346000000000000e-01 +-6.056400000000000e-01 +-6.272600000000000e-01 +-5.979000000000000e-01 +-5.320500000000000e-01 +-4.505600000000000e-01 +-3.708300000000000e-01 +-3.020500000000000e-01 +-2.448000000000000e-01 +-1.920100000000000e-01 +-1.302100000000000e-01 +-4.319400000000000e-02 + 7.975900000000000e-02 + 2.336300000000000e-01 + 3.927400000000000e-01 + 5.180500000000000e-01 + 5.755900000000000e-01 + 5.557900000000000e-01 + 4.800500000000000e-01 + 3.881700000000000e-01 + 3.141200000000000e-01 + 2.664700000000000e-01 + 2.274500000000000e-01 + 1.708100000000000e-01 + 8.461000000000000e-02 +-1.864400000000000e-02 +-1.117600000000000e-01 +-1.740600000000000e-01 +-2.063700000000000e-01 +-2.274700000000000e-01 +-2.550200000000000e-01 +-2.871100000000000e-01 +-3.003500000000000e-01 +-2.673100000000000e-01 +-1.801700000000000e-01 +-6.194700000000000e-02 + 4.451800000000000e-02 + 1.026500000000000e-01 + 1.047000000000000e-01 + 7.493000000000000e-02 + 5.194600000000000e-02 + 6.328000000000000e-02 + 1.097800000000000e-01 + 1.687100000000000e-01 + 2.106700000000000e-01 + 2.169800000000000e-01 + 1.865100000000000e-01 + 1.304400000000000e-01 + 6.216000000000000e-02 +-9.505000000000000e-03 +-8.086100000000000e-02 +-1.508200000000000e-01 +-2.196900000000000e-01 +-2.897600000000000e-01 +-3.643700000000000e-01 +-4.423600000000000e-01 +-5.100500000000000e-01 +-5.379000000000000e-01 +-4.881800000000000e-01 +-3.330200000000000e-01 +-7.374100000000000e-02 + 2.508700000000000e-01 + 5.742300000000000e-01 + 8.255700000000000e-01 + 9.548900000000000e-01 + 9.466500000000000e-01 + 8.170500000000001e-01 + 6.002000000000000e-01 + 3.334600000000000e-01 + 4.988700000000000e-02 +-2.214100000000000e-01 +-4.525300000000000e-01 +-6.174500000000001e-01 +-6.975700000000000e-01 +-6.886600000000000e-01 +-6.038200000000000e-01 +-4.699800000000000e-01 +-3.198000000000000e-01 +-1.831200000000000e-01 +-8.128199999999999e-02 +-2.484100000000000e-02 +-1.296600000000000e-02 +-3.366400000000000e-02 +-6.550300000000001e-02 +-8.247200000000000e-02 +-6.200500000000000e-02 + 6.609000000000000e-03 + 1.177700000000000e-01 + 2.519200000000000e-01 + 3.836800000000000e-01 + 4.912000000000000e-01 + 5.616200000000000e-01 + 5.905500000000000e-01 + 5.777400000000000e-01 + 5.231900000000000e-01 + 4.272900000000000e-01 + 2.947200000000000e-01 + 1.388200000000000e-01 +-1.778500000000000e-02 +-1.479700000000000e-01 +-2.289800000000000e-01 +-2.512800000000000e-01 +-2.231500000000000e-01 +-1.687300000000000e-01 +-1.198400000000000e-01 +-1.046700000000000e-01 +-1.377100000000000e-01 +-2.153100000000000e-01 +-3.189100000000000e-01 +-4.242900000000000e-01 +-5.118400000000000e-01 +-5.718500000000000e-01 +-6.018200000000000e-01 +-5.985500000000000e-01 +-5.520400000000000e-01 +-4.480300000000000e-01 +-2.795300000000000e-01 +-6.024000000000000e-02 + 1.712800000000000e-01 + 3.630000000000000e-01 + 4.724700000000000e-01 + 4.881900000000000e-01 + 4.352300000000000e-01 + 3.606700000000000e-01 + 3.074000000000000e-01 + 2.932600000000000e-01 + 3.078800000000000e-01 + 3.275400000000000e-01 + 3.356000000000000e-01 + 3.335100000000000e-01 + 3.356500000000000e-01 + 3.543200000000000e-01 + 3.874200000000000e-01 + 4.180400000000000e-01 + 4.244600000000000e-01 + 3.908200000000000e-01 + 3.104400000000000e-01 + 1.815400000000000e-01 + 3.419400000000000e-03 +-2.200200000000000e-01 +-4.704700000000000e-01 +-7.091700000000000e-01 +-8.844300000000000e-01 +-9.525800000000000e-01 +-9.002800000000000e-01 +-7.524100000000000e-01 +-5.584400000000000e-01 +-3.660900000000000e-01 +-2.000300000000000e-01 +-5.974100000000000e-02 + 6.469300000000000e-02 + 1.734700000000000e-01 + 2.510000000000000e-01 + 2.773800000000000e-01 + 2.468800000000000e-01 + 1.770700000000000e-01 + 1.002400000000000e-01 + 4.386400000000000e-02 + 1.593600000000000e-02 + 6.791300000000000e-03 + 5.004600000000000e-03 + 1.315600000000000e-02 + 4.949300000000000e-02 + 1.334200000000000e-01 + 2.662600000000000e-01 + 4.226900000000000e-01 + 5.597600000000000e-01 + 6.370500000000000e-01 + 6.339700000000000e-01 + 5.540500000000000e-01 + 4.168300000000000e-01 + 2.463600000000000e-01 + 6.463000000000001e-02 +-1.089400000000000e-01 +-2.568700000000000e-01 +-3.664600000000000e-01 +-4.348600000000000e-01 +-4.703200000000000e-01 +-4.860100000000000e-01 +-4.896700000000000e-01 +-4.777300000000000e-01 +-4.398000000000000e-01 +-3.705700000000000e-01 +-2.786700000000000e-01 +-1.834700000000000e-01 +-1.010500000000000e-01 +-3.084100000000000e-02 + 4.437900000000000e-02 + 1.426200000000000e-01 + 2.623200000000000e-01 + 3.742400000000000e-01 + 4.344000000000000e-01 + 4.107200000000000e-01 + 3.048700000000000e-01 + 1.533300000000000e-01 + 6.718100000000000e-03 +-9.806200000000000e-02 +-1.542500000000000e-01 +-1.807700000000000e-01 +-2.030400000000000e-01 +-2.340600000000000e-01 +-2.680700000000000e-01 +-2.874900000000000e-01 +-2.749400000000000e-01 +-2.207500000000000e-01 +-1.235600000000000e-01 + 1.203800000000000e-02 + 1.757000000000000e-01 + 3.491400000000000e-01 + 5.058600000000000e-01 + 6.168400000000001e-01 + 6.603900000000000e-01 + 6.299400000000001e-01 + 5.340200000000001e-01 + 3.889000000000000e-01 + 2.103800000000000e-01 + 1.136200000000000e-02 +-1.938000000000000e-01 +-3.842800000000000e-01 +-5.341200000000000e-01 +-6.212400000000000e-01 +-6.380500000000000e-01 +-5.950000000000000e-01 +-5.132200000000000e-01 +-4.115900000000000e-01 +-2.976300000000000e-01 +-1.686300000000000e-01 +-2.102300000000000e-02 + 1.403900000000000e-01 + 3.007100000000000e-01 + 4.411200000000000e-01 + 5.468100000000000e-01 + 6.098100000000000e-01 + 6.259500000000000e-01 + 5.904300000000000e-01 + 4.982900000000000e-01 + 3.501500000000000e-01 + 1.582300000000000e-01 +-5.403700000000000e-02 +-2.600500000000000e-01 +-4.403000000000000e-01 +-5.869900000000000e-01 +-6.994600000000000e-01 +-7.750800000000000e-01 +-8.037300000000001e-01 +-7.715800000000000e-01 +-6.714400000000000e-01 +-5.117000000000000e-01 +-3.162900000000000e-01 +-1.151500000000000e-01 + 6.838900000000001e-02 + 2.251800000000000e-01 + 3.589500000000000e-01 + 4.784300000000000e-01 + 5.884300000000000e-01 + 6.846100000000001e-01 + 7.527700000000001e-01 + 7.721900000000000e-01 + 7.224400000000000e-01 + 5.932600000000000e-01 + 3.952900000000000e-01 + 1.656900000000000e-01 +-3.796400000000000e-02 +-1.575900000000000e-01 +-1.609200000000000e-01 +-6.035900000000000e-02 + 8.857700000000000e-02 + 2.111300000000000e-01 + 2.478500000000000e-01 + 1.808000000000000e-01 + 3.729900000000000e-02 +-1.295100000000000e-01 +-2.702500000000000e-01 +-3.617000000000000e-01 +-4.109000000000000e-01 +-4.422500000000000e-01 +-4.779800000000000e-01 +-5.239600000000000e-01 +-5.671400000000000e-01 +-5.836700000000000e-01 +-5.516700000000000e-01 +-4.620800000000000e-01 +-3.231600000000000e-01 +-1.572800000000000e-01 + 8.316300000000000e-03 + 1.520300000000000e-01 + 2.642400000000000e-01 + 3.454400000000000e-01 + 3.976500000000000e-01 + 4.156100000000000e-01 + 3.860000000000000e-01 + 2.975200000000000e-01 + 1.558100000000000e-01 +-8.544200000000000e-03 +-1.479600000000000e-01 +-2.197900000000000e-01 +-2.089500000000000e-01 +-1.353200000000000e-01 +-3.965900000000000e-02 + 4.297100000000000e-02 + 1.037700000000000e-01 + 1.601800000000000e-01 + 2.358400000000000e-01 + 3.364100000000000e-01 + 4.399400000000000e-01 + 5.094900000000000e-01 + 5.184200000000000e-01 + 4.690000000000000e-01 + 3.899000000000000e-01 + 3.145400000000000e-01 + 2.562500000000000e-01 + 1.988800000000000e-01 + 1.098000000000000e-01 +-3.414400000000000e-02 +-2.258700000000000e-01 +-4.267400000000000e-01 +-5.850600000000000e-01 +-6.619400000000000e-01 +-6.488600000000000e-01 +-5.676300000000000e-01 +-4.554800000000000e-01 +-3.460900000000000e-01 +-2.574700000000000e-01 +-1.917900000000000e-01 +-1.439700000000000e-01 +-1.115300000000000e-01 +-9.820400000000000e-02 +-1.093200000000000e-01 +-1.423900000000000e-01 +-1.805400000000000e-01 +-1.951100000000000e-01 +-1.584700000000000e-01 +-6.035400000000000e-02 + 8.277400000000000e-02 + 2.335200000000000e-01 + 3.533600000000000e-01 + 4.250900000000000e-01 + 4.630500000000000e-01 + 5.024999999999999e-01 + 5.735800000000000e-01 + 6.762700000000000e-01 + 7.736700000000000e-01 + 8.091200000000000e-01 + 7.368300000000000e-01 + 5.465800000000000e-01 + 2.679600000000000e-01 +-4.663500000000000e-02 +-3.468600000000000e-01 +-6.011200000000000e-01 +-7.974800000000000e-01 +-9.336000000000000e-01 +-1.006600000000000e+00 +-1.010900000000000e+00 +-9.419500000000000e-01 +-8.011100000000000e-01 +-5.958000000000000e-01 +-3.377200000000000e-01 +-4.385500000000000e-02 + 2.585300000000000e-01 + 5.287100000000000e-01 + 7.194199999999999e-01 + 7.954300000000000e-01 + 7.538600000000000e-01 + 6.307700000000001e-01 + 4.849700000000000e-01 + 3.665200000000000e-01 + 2.902100000000000e-01 + 2.331100000000000e-01 + 1.587200000000000e-01 + 4.998600000000000e-02 +-7.360899999999999e-02 +-1.684200000000000e-01 +-1.992500000000000e-01 +-1.669700000000000e-01 +-1.096600000000000e-01 +-7.560000000000000e-02 +-8.859200000000000e-02 +-1.317800000000000e-01 +-1.620200000000000e-01 +-1.437200000000000e-01 +-7.685400000000001e-02 + 1.112400000000000e-03 + 3.952400000000000e-02 + 6.789900000000000e-03 +-9.185500000000001e-02 +-2.209200000000000e-01 +-3.375700000000000e-01 +-4.131900000000000e-01 +-4.408700000000000e-01 +-4.283200000000000e-01 +-3.863700000000000e-01 +-3.224300000000000e-01 +-2.412600000000000e-01 +-1.478300000000000e-01 +-4.698400000000000e-02 + 5.985200000000000e-02 + 1.761100000000000e-01 + 3.058800000000000e-01 + 4.463600000000000e-01 + 5.838000000000000e-01 + 6.979500000000000e-01 + 7.724100000000000e-01 + 8.023700000000000e-01 + 7.924099999999999e-01 + 7.457200000000000e-01 + 6.546100000000000e-01 + 5.025800000000000e-01 + 2.791100000000000e-01 +-3.093900000000000e-03 +-3.032100000000000e-01 +-5.665000000000000e-01 +-7.500800000000000e-01 +-8.428700000000000e-01 +-8.654500000000001e-01 +-8.500100000000000e-01 +-8.149900000000000e-01 +-7.529200000000000e-01 +-6.398700000000000e-01 +-4.584400000000000e-01 +-2.168300000000000e-01 + 4.977000000000000e-02 + 2.952200000000000e-01 + 4.829600000000000e-01 + 5.964000000000000e-01 + 6.343600000000000e-01 + 5.995000000000000e-01 + 4.926600000000000e-01 + 3.192100000000000e-01 + 1.014600000000000e-01 +-1.165000000000000e-01 +-2.804800000000000e-01 +-3.503200000000000e-01 +-3.210200000000000e-01 +-2.254400000000000e-01 +-1.149100000000000e-01 +-2.987200000000000e-02 + 2.043400000000000e-02 + 5.613400000000000e-02 + 1.056000000000000e-01 + 1.809900000000000e-01 + 2.678000000000000e-01 + 3.349700000000000e-01 + 3.567200000000000e-01 + 3.298400000000000e-01 + 2.742800000000000e-01 + 2.179200000000000e-01 + 1.775000000000000e-01 + 1.496400000000000e-01 + 1.168200000000000e-01 + 6.252300000000000e-02 +-1.651200000000000e-02 +-1.090600000000000e-01 +-1.980400000000000e-01 +-2.706800000000000e-01 +-3.222800000000000e-01 +-3.521400000000000e-01 +-3.575000000000000e-01 +-3.328300000000000e-01 +-2.762700000000000e-01 +-1.979600000000000e-01 +-1.219300000000000e-01 +-7.719900000000000e-02 +-8.224700000000000e-02 +-1.328200000000000e-01 +-2.019400000000000e-01 +-2.531000000000000e-01 +-2.588800000000000e-01 +-2.136600000000000e-01 +-1.330800000000000e-01 +-4.186600000000000e-02 + 4.134500000000000e-02 + 1.124300000000000e-01 + 1.791100000000000e-01 + 2.503900000000000e-01 + 3.261600000000000e-01 + 3.940000000000000e-01 + 4.351200000000000e-01 + 4.355200000000000e-01 + 3.951600000000000e-01 + 3.295900000000000e-01 + 2.628500000000000e-01 + 2.152900000000000e-01 + 1.931100000000000e-01 + 1.853500000000000e-01 + 1.705100000000000e-01 + 1.295700000000000e-01 + 5.864100000000000e-02 +-2.614000000000000e-02 +-9.490600000000000e-02 +-1.190600000000000e-01 +-8.747099999999999e-02 +-1.536300000000000e-02 + 5.922100000000000e-02 + 8.986700000000000e-02 + 4.049200000000000e-02 +-1.000100000000000e-01 +-3.129100000000000e-01 +-5.553700000000000e-01 +-7.736400000000000e-01 +-9.184300000000000e-01 +-9.577500000000000e-01 +-8.837699999999999e-01 +-7.121800000000000e-01 +-4.747900000000000e-01 +-2.081700000000000e-01 + 5.677300000000000e-02 + 2.997900000000000e-01 + 5.095200000000000e-01 + 6.777400000000000e-01 + 7.951500000000000e-01 + 8.529000000000000e-01 + 8.489700000000000e-01 + 7.936100000000000e-01 + 7.075399999999999e-01 + 6.113800000000000e-01 + 5.124800000000000e-01 + 3.987400000000000e-01 + 2.459200000000000e-01 + 3.565100000000000e-02 +-2.268000000000000e-01 +-5.071300000000000e-01 +-7.534999999999999e-01 +-9.184600000000001e-01 +-9.779300000000000e-01 +-9.365500000000000e-01 +-8.180900000000000e-01 +-6.496900000000000e-01 +-4.508800000000000e-01 +-2.331700000000000e-01 +-6.877800000000000e-03 + 2.130600000000000e-01 + 4.083000000000000e-01 + 5.643000000000000e-01 + 6.768900000000000e-01 + 7.519200000000000e-01 + 7.976799999999999e-01 + 8.157300000000000e-01 + 7.974300000000000e-01 + 7.288500000000000e-01 + 6.008000000000000e-01 + 4.169700000000000e-01 + 1.951400000000000e-01 +-3.854700000000000e-02 +-2.580400000000000e-01 +-4.438500000000000e-01 +-5.856400000000000e-01 +-6.816100000000000e-01 +-7.365100000000000e-01 +-7.587800000000000e-01 +-7.567500000000000e-01 +-7.343200000000000e-01 +-6.884000000000000e-01 +-6.106900000000000e-01 +-4.940400000000000e-01 +-3.400200000000000e-01 +-1.622900000000000e-01 + 1.751400000000000e-02 + 1.796000000000000e-01 + 3.151900000000000e-01 + 4.285600000000000e-01 + 5.303300000000000e-01 + 6.264100000000000e-01 + 7.103699999999999e-01 + 7.644600000000000e-01 + 7.684500000000000e-01 + 7.102900000000000e-01 + 5.918000000000000e-01 + 4.268300000000000e-01 + 2.345800000000000e-01 + 3.305800000000000e-02 +-1.633000000000000e-01 +-3.422800000000000e-01 +-4.917000000000000e-01 +-5.992200000000000e-01 +-6.547700000000000e-01 +-6.537400000000000e-01 +-5.987700000000000e-01 +-4.994100000000000e-01 +-3.702900000000000e-01 +-2.288400000000000e-01 +-9.261200000000000e-02 + 2.422600000000000e-02 + 1.147500000000000e-01 + 1.816200000000000e-01 + 2.353500000000000e-01 + 2.880200000000000e-01 + 3.448700000000000e-01 + 3.991000000000000e-01 + 4.339100000000000e-01 + 4.316600000000000e-01 + 3.851600000000000e-01 + 3.038600000000000e-01 + 2.105400000000000e-01 + 1.298700000000000e-01 + 7.582400000000000e-02 + 4.543900000000000e-02 + 2.275800000000000e-02 +-1.004500000000000e-02 +-6.163700000000000e-02 +-1.274100000000000e-01 +-1.941000000000000e-01 +-2.490900000000000e-01 +-2.876800000000000e-01 +-3.136200000000000e-01 +-3.335400000000000e-01 +-3.502300000000000e-01 +-3.600200000000000e-01 +-3.560900000000000e-01 +-3.345500000000000e-01 +-2.980100000000000e-01 +-2.536900000000000e-01 +-2.075300000000000e-01 +-1.593900000000000e-01 +-1.035500000000000e-01 +-3.438700000000000e-02 + 4.741000000000000e-02 + 1.334500000000000e-01 + 2.124900000000000e-01 + 2.775400000000000e-01 + 3.287900000000000e-01 + 3.694400000000000e-01 + 3.976500000000000e-01 + 4.022200000000000e-01 + 3.676400000000000e-01 + 2.864900000000000e-01 + 1.701100000000000e-01 + 4.823300000000000e-02 +-4.443600000000000e-02 +-8.638400000000000e-02 +-7.936900000000000e-02 +-4.279400000000000e-02 + 3.388400000000000e-03 + 5.385000000000000e-02 + 1.188400000000000e-01 + 2.098000000000000e-01 + 3.210900000000000e-01 + 4.235000000000000e-01 + 4.762800000000000e-01 + 4.502200000000000e-01 + 3.448600000000000e-01 + 1.871300000000000e-01 + 1.265300000000000e-02 +-1.554400000000000e-01 +-3.141400000000000e-01 +-4.698300000000000e-01 +-6.196800000000000e-01 +-7.421200000000000e-01 +-8.058300000000000e-01 +-7.909500000000000e-01 +-7.057000000000000e-01 +-5.844400000000000e-01 +-4.677600000000000e-01 +-3.789900000000000e-01 +-3.141100000000000e-01 +-2.509100000000000e-01 +-1.684800000000000e-01 +-6.134000000000000e-02 + 6.118500000000000e-02 + 1.863400000000000e-01 + 3.075100000000000e-01 + 4.228300000000000e-01 + 5.252500000000000e-01 + 5.960100000000000e-01 + 6.110300000000000e-01 + 5.583700000000000e-01 + 4.533000000000000e-01 + 3.369700000000000e-01 + 2.565800000000000e-01 + 2.392200000000000e-01 + 2.773600000000000e-01 + 3.357900000000000e-01 + 3.743100000000000e-01 + 3.697200000000000e-01 + 3.233100000000000e-01 + 2.520900000000000e-01 + 1.739100000000000e-01 + 9.862100000000000e-02 + 2.919100000000000e-02 +-3.284300000000000e-02 +-8.579100000000001e-02 +-1.320700000000000e-01 +-1.820900000000000e-01 +-2.503300000000000e-01 +-3.433000000000000e-01 +-4.487500000000000e-01 +-5.370800000000000e-01 +-5.776800000000000e-01 +-5.596900000000000e-01 +-5.015600000000000e-01 +-4.405100000000000e-01 +-4.086400000000000e-01 +-4.128900000000000e-01 +-4.335000000000000e-01 +-4.410900000000000e-01 +-4.179500000000000e-01 +-3.666500000000000e-01 +-3.004100000000000e-01 +-2.253200000000000e-01 +-1.311400000000000e-01 + 6.297800000000000e-04 + 1.778900000000000e-01 + 3.847700000000000e-01 + 5.861300000000000e-01 + 7.469000000000000e-01 + 8.509100000000001e-01 + 9.044100000000000e-01 + 9.225100000000001e-01 + 9.110600000000000e-01 + 8.602600000000000e-01 + 7.553500000000000e-01 + 5.946399999999999e-01 + 3.984500000000000e-01 + 1.996400000000000e-01 + 2.276500000000000e-02 +-1.310800000000000e-01 +-2.804800000000000e-01 +-4.431500000000000e-01 +-6.148900000000000e-01 +-7.650300000000000e-01 +-8.527900000000000e-01 +-8.520799999999999e-01 +-7.661200000000000e-01 +-6.217700000000000e-01 +-4.495800000000000e-01 +-2.663600000000000e-01 +-7.368900000000000e-02 + 1.281800000000000e-01 + 3.247700000000000e-01 + 4.848000000000000e-01 + 5.742400000000000e-01 + 5.765200000000000e-01 + 5.029200000000000e-01 + 3.846700000000000e-01 + 2.527000000000000e-01 + 1.201300000000000e-01 +-1.949300000000000e-02 +-1.777700000000000e-01 +-3.529200000000000e-01 +-5.218300000000000e-01 +-6.493900000000000e-01 +-7.086400000000000e-01 +-6.970900000000000e-01 +-6.374500000000000e-01 +-5.615500000000000e-01 +-4.882200000000000e-01 +-4.096400000000000e-01 +-2.957200000000000e-01 +-1.143700000000000e-01 + 1.441000000000000e-01 + 4.531100000000000e-01 + 7.553100000000000e-01 + 9.852900000000000e-01 + 1.097900000000000e+00 + 1.086800000000000e+00 + 9.840400000000000e-01 + 8.408900000000000e-01 + 7.011700000000000e-01 + 5.824500000000000e-01 + 4.746400000000000e-01 + 3.550200000000000e-01 + 2.090300000000000e-01 + 4.291900000000000e-02 +-1.190500000000000e-01 +-2.497300000000000e-01 +-3.355200000000000e-01 +-3.831100000000000e-01 +-4.131100000000000e-01 +-4.462300000000000e-01 +-4.918400000000000e-01 +-5.459300000000000e-01 +-5.975500000000000e-01 +-6.375000000000000e-01 +-6.627400000000000e-01 +-6.744300000000000e-01 +-6.732300000000000e-01 +-6.565299999999999e-01 +-6.197300000000000e-01 +-5.597600000000000e-01 +-4.770100000000000e-01 +-3.742300000000000e-01 +-2.536800000000000e-01 +-1.158700000000000e-01 + 3.870200000000000e-02 + 2.061400000000000e-01 + 3.771600000000000e-01 + 5.383100000000000e-01 + 6.756300000000000e-01 + 7.781500000000000e-01 + 8.393900000000000e-01 + 8.572700000000000e-01 + 8.340800000000000e-01 + 7.771100000000000e-01 + 6.987900000000000e-01 + 6.139500000000000e-01 + 5.342000000000000e-01 + 4.621200000000000e-01 + 3.899200000000000e-01 + 3.047600000000000e-01 + 1.980700000000000e-01 + 7.286700000000000e-02 +-5.654400000000000e-02 +-1.728900000000000e-01 +-2.669000000000000e-01 +-3.432900000000000e-01 +-4.177900000000000e-01 +-5.068000000000000e-01 +-6.164800000000000e-01 +-7.375699999999999e-01 +-8.481800000000000e-01 +-9.219000000000001e-01 +-9.367200000000000e-01 +-8.813200000000000e-01 +-7.581599999999999e-01 +-5.836700000000000e-01 +-3.853800000000000e-01 +-1.951700000000000e-01 +-3.905100000000000e-02 + 7.277300000000000e-02 + 1.500600000000000e-01 + 2.167000000000000e-01 + 2.966000000000000e-01 + 3.987600000000000e-01 + 5.109200000000000e-01 + 6.065900000000000e-01 + 6.614400000000000e-01 + 6.688900000000000e-01 + 6.445000000000000e-01 + 6.161600000000000e-01 + 6.062100000000000e-01 + 6.168000000000000e-01 + 6.277500000000000e-01 + 6.077399999999999e-01 + 5.319199999999999e-01 + 3.955600000000000e-01 + 2.168400000000000e-01 + 2.833100000000000e-02 +-1.371400000000000e-01 +-2.591300000000000e-01 +-3.355200000000000e-01 +-3.806800000000000e-01 +-4.176800000000000e-01 +-4.680700000000000e-01 +-5.427300000000000e-01 +-6.372000000000000e-01 +-7.334000000000001e-01 +-8.074800000000000e-01 +-8.404800000000000e-01 +-8.262800000000000e-01 +-7.723500000000000e-01 +-6.924600000000000e-01 +-5.961100000000000e-01 +-4.817500000000000e-01 +-3.390800000000000e-01 +-1.592900000000000e-01 + 5.376000000000000e-02 + 2.797900000000000e-01 + 4.896600000000000e-01 + 6.599300000000000e-01 + 7.844800000000000e-01 + 8.750000000000000e-01 + 9.490600000000000e-01 + 1.014000000000000e+00 + 1.057900000000000e+00 + 1.055000000000000e+00 + 9.829500000000000e-01 + 8.398500000000000e-01 + 6.507600000000000e-01 + 4.572600000000000e-01 + 2.966200000000000e-01 + 1.829600000000000e-01 + 1.013800000000000e-01 + 1.796000000000000e-02 +-1.011900000000000e-01 +-2.728600000000000e-01 +-4.901200000000000e-01 +-7.274300000000000e-01 +-9.520999999999999e-01 +-1.135000000000000e+00 +-1.256300000000000e+00 +-1.305400000000000e+00 +-1.279800000000000e+00 +-1.183300000000000e+00 +-1.026100000000000e+00 +-8.246900000000000e-01 +-6.003900000000000e-01 +-3.756200000000000e-01 +-1.690800000000000e-01 + 8.997900000000000e-03 + 1.596600000000000e-01 + 2.947400000000000e-01 + 4.320500000000000e-01 + 5.869900000000000e-01 + 7.634200000000000e-01 + 9.480800000000000e-01 + 1.112500000000000e+00 + 1.222500000000000e+00 + 1.252400000000000e+00 + 1.195400000000000e+00 + 1.065600000000000e+00 + 8.910300000000000e-01 + 7.005500000000000e-01 + 5.129000000000000e-01 + 3.331700000000000e-01 + 1.569100000000000e-01 +-2.171300000000000e-02 +-2.031500000000000e-01 +-3.802400000000000e-01 +-5.404400000000000e-01 +-6.700400000000000e-01 +-7.578600000000000e-01 +-7.971400000000000e-01 +-7.860000000000000e-01 +-7.271900000000000e-01 +-6.277500000000000e-01 +-4.991200000000000e-01 +-3.575300000000000e-01 +-2.241200000000000e-01 +-1.230900000000000e-01 +-7.663300000000001e-02 +-9.686699999999999e-02 +-1.781800000000000e-01 +-2.951900000000000e-01 +-4.098600000000000e-01 +-4.859600000000000e-01 +-5.034300000000000e-01 +-4.638000000000000e-01 +-3.827600000000000e-01 +-2.750600000000000e-01 +-1.427700000000000e-01 + 2.384500000000000e-02 + 2.328000000000000e-01 + 4.746300000000000e-01 + 7.171600000000000e-01 + 9.167400000000000e-01 + 1.039200000000000e+00 + 1.076300000000000e+00 + 1.046400000000000e+00 + 9.793400000000000e-01 + 8.970800000000000e-01 + 8.040400000000000e-01 + 6.914600000000000e-01 + 5.500600000000000e-01 + 3.790800000000000e-01 + 1.853300000000000e-01 +-2.441700000000000e-02 +-2.480100000000000e-01 +-4.833700000000000e-01 +-7.186399999999999e-01 +-9.270200000000000e-01 +-1.074100000000000e+00 +-1.133800000000000e+00 +-1.102300000000000e+00 +-9.967100000000000e-01 +-8.414199999999999e-01 +-6.516700000000000e-01 +-4.293200000000000e-01 +-1.742300000000000e-01 + 9.891600000000000e-02 + 3.544000000000000e-01 + 5.476300000000000e-01 + 6.483100000000001e-01 + 6.566600000000000e-01 + 5.995100000000000e-01 + 5.088300000000000e-01 + 3.994100000000000e-01 + 2.636000000000000e-01 + 8.691599999999999e-02 +-1.286400000000000e-01 +-3.531400000000000e-01 +-5.391200000000000e-01 +-6.463100000000001e-01 +-6.619300000000000e-01 +-6.018500000000000e-01 +-4.938600000000000e-01 +-3.574600000000000e-01 +-1.962500000000000e-01 +-6.692200000000000e-03 + 2.067700000000000e-01 + 4.243600000000000e-01 + 6.176600000000000e-01 + 7.637600000000000e-01 + 8.544800000000000e-01 + 8.938300000000000e-01 + 8.882100000000001e-01 + 8.396700000000000e-01 + 7.488000000000000e-01 + 6.229800000000000e-01 + 4.798100000000000e-01 + 3.395500000000000e-01 + 2.114000000000000e-01 + 8.622100000000001e-02 +-5.577100000000000e-02 +-2.263800000000000e-01 +-4.146900000000000e-01 +-5.897500000000000e-01 +-7.205600000000000e-01 +-7.984400000000000e-01 +-8.430900000000000e-01 +-8.859100000000000e-01 +-9.422500000000000e-01 +-9.940300000000000e-01 +-9.976800000000000e-01 +-9.127700000000000e-01 +-7.312400000000000e-01 +-4.860400000000000e-01 +-2.333300000000000e-01 +-2.129600000000000e-02 + 1.328900000000000e-01 + 2.439100000000000e-01 + 3.401300000000000e-01 + 4.418100000000000e-01 + 5.510100000000000e-01 + 6.567700000000000e-01 + 7.471800000000000e-01 + 8.167300000000000e-01 + 8.638200000000000e-01 + 8.836000000000001e-01 + 8.646500000000000e-01 + 7.943700000000000e-01 + 6.691100000000000e-01 + 5.008300000000000e-01 + 3.146200000000000e-01 + 1.385900000000000e-01 +-6.988800000000000e-03 +-1.149600000000000e-01 +-1.896900000000000e-01 +-2.423800000000000e-01 +-2.873700000000000e-01 +-3.403600000000000e-01 +-4.161100000000000e-01 +-5.232599999999999e-01 +-6.572700000000000e-01 +-7.962600000000000e-01 +-9.041000000000000e-01 +-9.414200000000000e-01 +-8.800600000000000e-01 +-7.141500000000000e-01 +-4.627200000000000e-01 +-1.634500000000000e-01 + 1.390400000000000e-01 + 4.052700000000000e-01 + 6.091900000000000e-01 + 7.407700000000000e-01 + 8.029200000000000e-01 + 8.047400000000000e-01 + 7.543600000000000e-01 + 6.552200000000000e-01 + 5.079399999999999e-01 + 3.167800000000000e-01 + 9.615100000000000e-02 +-1.279900000000000e-01 +-3.242400000000000e-01 +-4.663500000000000e-01 +-5.419700000000000e-01 +-5.538600000000000e-01 +-5.135999999999999e-01 +-4.328000000000000e-01 +-3.188800000000000e-01 +-1.781300000000000e-01 +-2.262800000000000e-02 + 1.259800000000000e-01 + 2.407200000000000e-01 + 3.001600000000000e-01 + 2.989700000000000e-01 + 2.508700000000000e-01 + 1.820300000000000e-01 + 1.190800000000000e-01 + 7.927500000000000e-02 + 6.754800000000000e-02 + 7.973300000000000e-02 + 1.074600000000000e-01 + 1.407100000000000e-01 + 1.676700000000000e-01 + 1.750200000000000e-01 + 1.511200000000000e-01 + 9.139100000000000e-02 + 2.000500000000000e-03 +-1.018100000000000e-01 +-2.024200000000000e-01 +-2.871400000000000e-01 +-3.507900000000000e-01 +-3.919800000000000e-01 +-4.065500000000000e-01 +-3.846600000000000e-01 +-3.149000000000000e-01 +-1.937500000000000e-01 +-3.339600000000000e-02 + 1.384000000000000e-01 + 2.876700000000000e-01 + 3.875000000000000e-01 + 4.273500000000000e-01 + 4.129600000000000e-01 + 3.582300000000000e-01 + 2.753500000000000e-01 + 1.700900000000000e-01 + 4.452400000000000e-02 +-9.597600000000001e-02 +-2.375500000000000e-01 +-3.586300000000000e-01 +-4.361400000000000e-01 +-4.528300000000000e-01 +-4.015100000000000e-01 +-2.852100000000000e-01 +-1.155500000000000e-01 + 8.786700000000000e-02 + 2.969100000000000e-01 + 4.761600000000000e-01 + 5.895000000000000e-01 + 6.117200000000000e-01 + 5.398300000000000e-01 + 3.964200000000000e-01 + 2.209400000000000e-01 + 5.223500000000000e-02 +-8.763600000000001e-02 +-1.983000000000000e-01 +-2.916200000000000e-01 +-3.750000000000000e-01 +-4.401000000000000e-01 +-4.661100000000000e-01 +-4.362400000000000e-01 +-3.554700000000000e-01 +-2.554600000000000e-01 +-1.803600000000000e-01 +-1.611900000000000e-01 +-1.951600000000000e-01 +-2.447400000000000e-01 +-2.588000000000000e-01 +-2.032100000000000e-01 +-8.176600000000001e-02 + 6.586200000000000e-02 + 1.878700000000000e-01 + 2.507100000000000e-01 + 2.575300000000000e-01 + 2.442000000000000e-01 + 2.570200000000000e-01 + 3.261800000000000e-01 + 4.506000000000000e-01 + 6.002800000000000e-01 + 7.321600000000000e-01 + 8.084100000000000e-01 + 8.077400000000000e-01 + 7.271400000000000e-01 + 5.770900000000000e-01 + 3.759100000000000e-01 + 1.457500000000000e-01 +-9.031400000000001e-02 +-3.118900000000000e-01 +-5.053200000000000e-01 +-6.656700000000000e-01 +-7.938700000000000e-01 +-8.896800000000000e-01 +-9.450900000000000e-01 +-9.440600000000000e-01 +-8.709600000000000e-01 +-7.237800000000000e-01 +-5.234900000000000e-01 +-3.119400000000000e-01 +-1.372200000000000e-01 +-3.362400000000000e-02 +-7.057200000000000e-03 +-3.413000000000000e-02 +-7.458500000000000e-02 +-8.931500000000001e-02 +-5.406200000000000e-02 + 3.660200000000000e-02 + 1.731900000000000e-01 + 3.371100000000000e-01 + 5.037100000000000e-01 + 6.434100000000000e-01 + 7.255200000000001e-01 + 7.277300000000000e-01 + 6.487500000000000e-01 + 5.157200000000000e-01 + 3.786600000000000e-01 + 2.914800000000000e-01 + 2.881100000000000e-01 + 3.666600000000000e-01 + 4.907200000000000e-01 + 6.062900000000000e-01 + 6.641700000000000e-01 + 6.358500000000000e-01 + 5.166900000000000e-01 + 3.195000000000000e-01 + 6.610199999999999e-02 +-2.171400000000000e-01 +-5.002000000000000e-01 +-7.510500000000000e-01 +-9.416099999999999e-01 +-1.056200000000000e+00 +-1.096700000000000e+00 +-1.079900000000000e+00 +-1.027400000000000e+00 +-9.539800000000001e-01 +-8.630000000000000e-01 +-7.495900000000000e-01 +-6.096200000000001e-01 +-4.469400000000000e-01 +-2.744400000000000e-01 +-1.092900000000000e-01 + 3.372100000000000e-02 + 1.468900000000000e-01 + 2.312000000000000e-01 + 2.957200000000000e-01 + 3.558500000000000e-01 + 4.295100000000000e-01 + 5.308100000000000e-01 + 6.625500000000000e-01 + 8.119000000000000e-01 + 9.533000000000000e-01 + 1.058600000000000e+00 + 1.108700000000000e+00 + 1.099700000000000e+00 + 1.039200000000000e+00 + 9.359700000000000e-01 + 7.921899999999999e-01 + 6.036100000000000e-01 + 3.675600000000000e-01 + 9.158200000000000e-02 +-2.046900000000000e-01 +-4.959400000000000e-01 +-7.599700000000000e-01 +-9.810900000000000e-01 +-1.146100000000000e+00 +-1.238000000000000e+00 +-1.236500000000000e+00 +-1.128400000000000e+00 +-9.222200000000000e-01 +-6.544400000000000e-01 +-3.811100000000000e-01 +-1.559800000000000e-01 +-8.608100000000000e-03 + 6.459600000000000e-02 + 9.162500000000000e-02 + 1.054600000000000e-01 + 1.266000000000000e-01 + 1.568300000000000e-01 + 1.843800000000000e-01 + 1.942200000000000e-01 + 1.767000000000000e-01 + 1.321800000000000e-01 + 7.277200000000000e-02 + 2.189400000000000e-02 + 9.668000000000000e-03 + 6.201400000000000e-02 + 1.861200000000000e-01 + 3.607000000000000e-01 + 5.401899999999999e-01 + 6.741700000000000e-01 + 7.320000000000000e-01 + 7.166400000000001e-01 + 6.572200000000000e-01 + 5.849299999999999e-01 + 5.093800000000001e-01 + 4.129700000000000e-01 + 2.680100000000000e-01 + 6.353300000000001e-02 +-1.784300000000000e-01 +-4.100800000000000e-01 +-5.837900000000000e-01 +-6.784500000000000e-01 +-7.080400000000000e-01 +-7.080600000000000e-01 +-7.113000000000000e-01 +-7.300800000000000e-01 +-7.552800000000000e-01 +-7.683300000000000e-01 +-7.541400000000000e-01 +-7.049900000000000e-01 +-6.157800000000000e-01 +-4.785700000000000e-01 +-2.844400000000000e-01 +-3.270900000000000e-02 + 2.600000000000000e-01 + 5.592000000000000e-01 + 8.226700000000000e-01 + 1.015500000000000e+00 + 1.121000000000000e+00 + 1.143100000000000e+00 + 1.100300000000000e+00 + 1.017000000000000e+00 + 9.161300000000000e-01 + 8.138700000000000e-01 + 7.152700000000000e-01 + 6.118000000000000e-01 + 4.830500000000000e-01 + 3.048000000000000e-01 + 6.161800000000000e-02 +-2.422000000000000e-01 +-5.796900000000000e-01 +-9.086400000000000e-01 +-1.185200000000000e+00 +-1.376400000000000e+00 +-1.465700000000000e+00 +-1.451400000000000e+00 +-1.342100000000000e+00 +-1.153300000000000e+00 +-9.056900000000000e-01 +-6.243600000000000e-01 +-3.354900000000000e-01 +-6.203300000000000e-02 + 1.799200000000000e-01 + 3.819700000000000e-01 + 5.416500000000000e-01 + 6.602100000000000e-01 + 7.416800000000000e-01 + 7.924300000000000e-01 + 8.198400000000000e-01 + 8.294100000000000e-01 + 8.222200000000000e-01 + 7.954500000000000e-01 + 7.462299999999999e-01 + 6.757300000000001e-01 + 5.892400000000000e-01 + 4.911700000000000e-01 + 3.791200000000000e-01 + 2.433900000000000e-01 + 7.491000000000000e-02 +-1.228400000000000e-01 +-3.273300000000000e-01 +-5.030000000000000e-01 +-6.180600000000001e-01 +-6.616200000000000e-01 +-6.492599999999999e-01 +-6.127200000000000e-01 +-5.802600000000000e-01 +-5.607600000000000e-01 +-5.411400000000000e-01 +-4.970600000000000e-01 +-4.084300000000000e-01 +-2.700000000000000e-01 +-9.270500000000000e-02 + 1.012700000000000e-01 + 2.848200000000000e-01 + 4.310500000000000e-01 + 5.182900000000000e-01 + 5.363300000000000e-01 + 4.916700000000000e-01 + 4.071700000000000e-01 + 3.131500000000000e-01 + 2.334500000000000e-01 + 1.745200000000000e-01 + 1.249100000000000e-01 + 6.520400000000000e-02 +-1.917200000000000e-02 +-1.309100000000000e-01 +-2.626700000000000e-01 +-4.028600000000000e-01 +-5.382200000000000e-01 +-6.506800000000000e-01 +-7.141500000000000e-01 +-6.988799999999999e-01 +-5.853600000000000e-01 +-3.798200000000000e-01 +-1.190400000000000e-01 + 1.418100000000000e-01 + 3.525300000000000e-01 + 4.876900000000000e-01 + 5.512000000000000e-01 + 5.652800000000000e-01 + 5.546800000000000e-01 + 5.379699999999999e-01 + 5.285700000000000e-01 + 5.376900000000000e-01 + 5.705000000000000e-01 + 6.155500000000000e-01 + 6.387200000000000e-01 + 5.934700000000001e-01 + 4.471900000000000e-01 + 2.074000000000000e-01 +-7.329600000000000e-02 +-3.221200000000000e-01 +-4.870400000000000e-01 +-5.657900000000000e-01 +-6.013200000000000e-01 +-6.461300000000000e-01 +-7.209700000000000e-01 +-7.981200000000001e-01 +-8.211800000000000e-01 +-7.462900000000000e-01 +-5.743800000000000e-01 +-3.524700000000000e-01 +-1.454800000000000e-01 +-9.234500000000000e-04 + 6.937200000000000e-02 + 8.239400000000000e-02 + 6.367500000000000e-02 + 3.249600000000000e-02 + 2.048000000000000e-03 +-1.188000000000000e-02 + 1.226500000000000e-02 + 9.221200000000000e-02 + 2.264400000000000e-01 + 3.877300000000000e-01 + 5.345600000000000e-01 + 6.340700000000000e-01 + 6.796900000000000e-01 + 6.896200000000000e-01 + 6.871900000000000e-01 + 6.784800000000000e-01 + 6.448700000000001e-01 + 5.562800000000000e-01 + 3.951100000000000e-01 + 1.727700000000000e-01 +-7.271100000000000e-02 +-2.954500000000000e-01 +-4.632800000000000e-01 +-5.683500000000000e-01 +-6.224900000000000e-01 +-6.440600000000000e-01 +-6.465000000000000e-01 +-6.351100000000000e-01 +-6.106500000000000e-01 +-5.742699999999999e-01 +-5.290500000000000e-01 +-4.780500000000000e-01 +-4.214600000000000e-01 +-3.557400000000000e-01 +-2.751600000000000e-01 +-1.743800000000000e-01 +-5.076000000000000e-02 + 9.443200000000000e-02 + 2.556700000000000e-01 + 4.237400000000000e-01 + 5.870800000000000e-01 + 7.332000000000000e-01 + 8.491800000000000e-01 + 9.212399999999999e-01 + 9.348200000000000e-01 + 8.777800000000000e-01 + 7.469900000000000e-01 + 5.549900000000000e-01 + 3.307900000000000e-01 + 1.109100000000000e-01 +-7.607400000000000e-02 +-2.223900000000000e-01 +-3.414300000000000e-01 +-4.540900000000000e-01 +-5.696099999999999e-01 +-6.752500000000000e-01 +-7.432200000000000e-01 +-7.506400000000000e-01 +-6.976200000000000e-01 +-6.091900000000000e-01 +-5.186100000000000e-01 +-4.443100000000000e-01 +-3.781300000000000e-01 +-2.943200000000000e-01 +-1.727100000000000e-01 +-1.835000000000000e-02 + 1.376700000000000e-01 + 2.571900000000000e-01 + 3.197600000000000e-01 + 3.349900000000000e-01 + 3.338000000000000e-01 + 3.456600000000000e-01 + 3.786500000000000e-01 + 4.161200000000000e-01 + 4.310500000000000e-01 + 4.065700000000000e-01 + 3.479100000000000e-01 + 2.784500000000000e-01 + 2.241300000000000e-01 + 1.977500000000000e-01 + 1.931800000000000e-01 + 1.917700000000000e-01 + 1.751800000000000e-01 + 1.358600000000000e-01 + 7.929500000000000e-02 + 1.800700000000000e-02 +-3.776300000000000e-02 +-8.636900000000000e-02 +-1.342400000000000e-01 +-1.892100000000000e-01 +-2.523900000000000e-01 +-3.146700000000000e-01 +-3.611600000000000e-01 +-3.812100000000000e-01 +-3.772000000000000e-01 +-3.646300000000000e-01 +-3.618200000000000e-01 +-3.752900000000000e-01 +-3.917900000000000e-01 +-3.842400000000000e-01 +-3.292100000000000e-01 +-2.237700000000000e-01 +-8.913500000000001e-02 + 4.283500000000000e-02 + 1.505900000000000e-01 + 2.352700000000000e-01 + 3.143900000000000e-01 + 4.012500000000000e-01 + 4.866400000000000e-01 + 5.386200000000000e-01 + 5.223100000000001e-01 + 4.258700000000000e-01 + 2.727500000000000e-01 + 1.106000000000000e-01 +-1.537600000000000e-02 +-8.497399999999999e-02 +-1.059000000000000e-01 +-9.743900000000000e-02 +-7.061099999999999e-02 +-2.219000000000000e-02 + 5.284700000000000e-02 + 1.426600000000000e-01 + 2.122400000000000e-01 + 2.185100000000000e-01 + 1.380400000000000e-01 +-1.300900000000000e-02 +-1.829100000000000e-01 +-3.112500000000000e-01 +-3.611200000000000e-01 +-3.351600000000000e-01 +-2.663700000000000e-01 +-1.924900000000000e-01 +-1.330600000000000e-01 +-8.442100000000000e-02 +-3.325100000000000e-02 + 2.422900000000000e-02 + 7.285100000000000e-02 + 8.593500000000000e-02 + 4.390500000000000e-02 +-4.906400000000000e-02 +-1.615600000000000e-01 +-2.470300000000000e-01 +-2.646300000000000e-01 +-1.979100000000000e-01 +-6.214600000000000e-02 + 1.027500000000000e-01 + 2.500400000000000e-01 + 3.461700000000000e-01 + 3.836400000000000e-01 + 3.801700000000000e-01 + 3.649700000000000e-01 + 3.594300000000000e-01 + 3.637300000000000e-01 + 3.572900000000000e-01 + 3.127000000000000e-01 + 2.138800000000000e-01 + 6.630600000000000e-02 +-1.071100000000000e-01 +-2.806500000000000e-01 +-4.395500000000000e-01 +-5.824500000000000e-01 +-7.110500000000000e-01 +-8.157700000000000e-01 +-8.696300000000000e-01 +-8.370800000000000e-01 +-6.933700000000000e-01 +-4.423700000000000e-01 +-1.213700000000000e-01 + 2.103700000000000e-01 + 4.927500000000000e-01 + 6.843000000000000e-01 + 7.715600000000000e-01 + 7.665500000000000e-01 + 6.968200000000000e-01 + 5.939800000000000e-01 + 4.848800000000000e-01 + 3.866800000000000e-01 + 3.056200000000000e-01 + 2.389200000000000e-01 + 1.795900000000000e-01 + 1.221900000000000e-01 + 6.729100000000000e-02 + 2.181500000000000e-02 +-4.965500000000000e-03 +-7.676500000000000e-03 + 1.033500000000000e-02 + 3.630900000000000e-02 + 5.174500000000000e-02 + 3.838000000000000e-02 +-1.634300000000000e-02 +-1.162600000000000e-01 +-2.564300000000000e-01 +-4.252200000000000e-01 +-6.072100000000000e-01 +-7.855400000000000e-01 +-9.425100000000000e-01 +-1.058900000000000e+00 +-1.113800000000000e+00 +-1.086900000000000e+00 +-9.651600000000000e-01 +-7.506500000000000e-01 +-4.653700000000000e-01 +-1.477200000000000e-01 + 1.596200000000000e-01 + 4.251900000000000e-01 + 6.386600000000000e-01 + 8.093100000000000e-01 + 9.541400000000000e-01 + 1.083900000000000e+00 + 1.196100000000000e+00 + 1.278700000000000e+00 + 1.320200000000000e+00 + 1.315800000000000e+00 + 1.266300000000000e+00 + 1.170000000000000e+00 + 1.016900000000000e+00 + 7.921000000000000e-01 + 4.876000000000000e-01 + 1.150700000000000e-01 +-2.907400000000000e-01 +-6.811400000000000e-01 +-1.009800000000000e+00 +-1.246800000000000e+00 +-1.382800000000000e+00 +-1.424200000000000e+00 +-1.385700000000000e+00 +-1.284600000000000e+00 +-1.140400000000000e+00 +-9.727300000000000e-01 +-7.984900000000000e-01 +-6.260200000000000e-01 +-4.532400000000000e-01 +-2.722400000000000e-01 +-7.870900000000000e-02 + 1.205300000000000e-01 + 3.079000000000000e-01 + 4.633300000000000e-01 + 5.739800000000000e-01 + 6.379600000000000e-01 + 6.597600000000000e-01 + 6.427800000000000e-01 + 5.866900000000000e-01 + 4.930200000000000e-01 + 3.744100000000000e-01 + 2.582400000000000e-01 + 1.791200000000000e-01 + 1.634900000000000e-01 + 2.164400000000000e-01 + 3.200000000000000e-01 + 4.437000000000000e-01 + 5.590400000000000e-01 + 6.473800000000000e-01 + 6.970900000000000e-01 + 6.951900000000000e-01 + 6.239300000000000e-01 + 4.681100000000000e-01 + 2.292600000000000e-01 +-6.447200000000000e-02 +-3.627600000000000e-01 +-6.120900000000000e-01 +-7.787800000000000e-01 +-8.618100000000000e-01 +-8.872600000000000e-01 +-8.880900000000000e-01 +-8.823400000000000e-01 +-8.636300000000000e-01 +-8.094900000000000e-01 +-7.014200000000000e-01 +-5.431200000000000e-01 +-3.645400000000000e-01 +-2.078500000000000e-01 +-1.033600000000000e-01 +-4.978100000000000e-02 +-1.205300000000000e-02 + 6.008700000000000e-02 + 2.020300000000000e-01 + 4.099800000000000e-01 + 6.376400000000000e-01 + 8.175200000000000e-01 + 8.953700000000000e-01 + 8.578000000000000e-01 + 7.365600000000000e-01 + 5.875700000000000e-01 + 4.583400000000000e-01 + 3.648100000000000e-01 + 2.910300000000000e-01 + 2.092800000000000e-01 + 1.044400000000000e-01 +-1.478300000000000e-02 +-1.243400000000000e-01 +-2.041800000000000e-01 +-2.522500000000000e-01 +-2.826300000000000e-01 +-3.108000000000000e-01 +-3.393500000000000e-01 +-3.565300000000000e-01 +-3.486000000000000e-01 +-3.151400000000000e-01 +-2.739300000000000e-01 +-2.504300000000000e-01 +-2.602000000000000e-01 +-2.981700000000000e-01 +-3.433000000000000e-01 +-3.742800000000000e-01 +-3.830300000000000e-01 +-3.747700000000000e-01 +-3.551400000000000e-01 +-3.162700000000000e-01 +-2.351200000000000e-01 +-8.756300000000000e-02 + 1.315100000000000e-01 + 3.978500000000000e-01 + 6.661600000000000e-01 + 8.919700000000000e-01 + 1.051700000000000e+00 + 1.147200000000000e+00 + 1.192400000000000e+00 + 1.194900000000000e+00 + 1.145400000000000e+00 + 1.024800000000000e+00 + 8.210400000000000e-01 + 5.424400000000000e-01 + 2.166200000000000e-01 +-1.237000000000000e-01 +-4.567400000000000e-01 +-7.769600000000000e-01 +-1.086400000000000e+00 +-1.379900000000000e+00 +-1.636400000000000e+00 +-1.824100000000000e+00 +-1.914500000000000e+00 +-1.894400000000000e+00 +-1.768000000000000e+00 +-1.547900000000000e+00 +-1.245500000000000e+00 +-8.701300000000000e-01 +-4.372600000000000e-01 + 2.189700000000000e-02 + 4.611800000000000e-01 + 8.347700000000000e-01 + 1.118400000000000e+00 + 1.321100000000000e+00 + 1.477500000000000e+00 + 1.622500000000000e+00 + 1.765800000000000e+00 + 1.883100000000000e+00 + 1.931100000000000e+00 + 1.875400000000000e+00 + 1.713400000000000e+00 + 1.474200000000000e+00 + 1.199900000000000e+00 + 9.193300000000000e-01 + 6.353600000000000e-01 + 3.320100000000000e-01 +-5.370000000000000e-03 +-3.731100000000000e-01 +-7.474499999999999e-01 +-1.097200000000000e+00 +-1.399600000000000e+00 +-1.646600000000000e+00 +-1.838900000000000e+00 +-1.974500000000000e+00 +-2.043000000000000e+00 +-2.030000000000000e+00 +-1.927400000000000e+00 +-1.740000000000000e+00 +-1.482800000000000e+00 +-1.172900000000000e+00 +-8.235200000000000e-01 +-4.458300000000000e-01 +-5.608300000000000e-02 + 3.205600000000000e-01 + 6.553900000000000e-01 + 9.282400000000000e-01 + 1.136400000000000e+00 + 1.292300000000000e+00 + 1.409500000000000e+00 + 1.489100000000000e+00 + 1.516400000000000e+00 + 1.473500000000000e+00 + 1.357700000000000e+00 + 1.190900000000000e+00 + 1.012400000000000e+00 + 8.582100000000000e-01 + 7.403900000000000e-01 + 6.423800000000000e-01 + 5.314100000000000e-01 + 3.797500000000000e-01 + 1.807400000000000e-01 +-4.935500000000000e-02 +-2.814600000000000e-01 +-4.872800000000000e-01 +-6.481500000000000e-01 +-7.572800000000000e-01 +-8.184399999999999e-01 +-8.440700000000000e-01 +-8.524500000000000e-01 +-8.616100000000000e-01 +-8.802500000000000e-01 +-9.007200000000000e-01 +-9.009500000000000e-01 +-8.570700000000000e-01 +-7.603400000000000e-01 +-6.267000000000000e-01 +-4.907200000000000e-01 +-3.862000000000000e-01 +-3.257100000000000e-01 +-2.926200000000000e-01 +-2.510100000000000e-01 +-1.665700000000000e-01 +-2.449100000000000e-02 + 1.661100000000000e-01 + 3.815300000000000e-01 + 5.976399999999999e-01 + 7.985300000000000e-01 + 9.752600000000000e-01 + 1.119000000000000e+00 + 1.216100000000000e+00 + 1.249800000000000e+00 + 1.207500000000000e+00 + 1.086700000000000e+00 + 8.970700000000000e-01 + 6.559700000000001e-01 + 3.837300000000000e-01 + 1.002300000000000e-01 +-1.751300000000000e-01 +-4.224500000000000e-01 +-6.219600000000000e-01 +-7.570300000000000e-01 +-8.183500000000000e-01 +-8.068200000000000e-01 +-7.339100000000000e-01 +-6.190300000000000e-01 +-4.851700000000000e-01 +-3.540600000000000e-01 +-2.424200000000000e-01 +-1.602800000000000e-01 +-1.114600000000000e-01 +-9.492299999999999e-02 +-1.048700000000000e-01 +-1.292200000000000e-01 +-1.484500000000000e-01 +-1.387200000000000e-01 +-8.164500000000000e-02 + 2.276700000000000e-02 + 1.482000000000000e-01 + 2.478500000000000e-01 + 2.750400000000000e-01 + 2.090200000000000e-01 + 6.989900000000000e-02 +-8.839700000000000e-02 +-2.051400000000000e-01 +-2.435000000000000e-01 +-2.056100000000000e-01 +-1.232400000000000e-01 +-3.215800000000000e-02 + 5.033500000000000e-02 + 1.292500000000000e-01 + 2.166800000000000e-01 + 3.122300000000000e-01 + 3.966400000000000e-01 + 4.442200000000000e-01 + 4.437700000000000e-01 + 4.098100000000000e-01 + 3.736100000000000e-01 + 3.597800000000000e-01 + 3.667600000000000e-01 + 3.667400000000000e-01 + 3.259000000000000e-01 + 2.301800000000000e-01 + 9.729500000000001e-02 +-3.357200000000000e-02 +-1.265500000000000e-01 +-1.705800000000000e-01 +-1.833000000000000e-01 +-1.966900000000000e-01 +-2.359500000000000e-01 +-3.060800000000000e-01 +-3.928800000000000e-01 +-4.741900000000000e-01 +-5.319199999999999e-01 +-5.575300000000000e-01 +-5.507100000000000e-01 +-5.154700000000000e-01 +-4.580400000000000e-01 +-3.869600000000000e-01 +-3.132700000000000e-01 +-2.483200000000000e-01 +-1.995700000000000e-01 +-1.666600000000000e-01 +-1.400700000000000e-01 +-1.035100000000000e-01 +-3.940700000000000e-02 + 6.375200000000000e-02 + 2.045000000000000e-01 + 3.649900000000000e-01 + 5.143300000000000e-01 + 6.195800000000000e-01 + 6.603400000000000e-01 + 6.391000000000000e-01 + 5.799000000000000e-01 + 5.146100000000000e-01 + 4.648900000000000e-01 + 4.316100000000000e-01 + 3.993600000000000e-01 + 3.523900000000000e-01 + 2.894300000000000e-01 + 2.256400000000000e-01 + 1.796400000000000e-01 + 1.561900000000000e-01 + 1.388100000000000e-01 + 9.935700000000000e-02 + 1.778500000000000e-02 +-1.030500000000000e-01 +-2.389700000000000e-01 +-3.610400000000000e-01 +-4.541500000000000e-01 +-5.233700000000000e-01 +-5.842800000000000e-01 +-6.460500000000000e-01 +-7.010300000000000e-01 +-7.282300000000000e-01 +-7.069700000000000e-01 +-6.294800000000000e-01 +-5.043700000000000e-01 +-3.511200000000000e-01 +-1.921400000000000e-01 +-4.786700000000000e-02 + 6.543400000000001e-02 + 1.392900000000000e-01 + 1.788700000000000e-01 + 2.056300000000000e-01 + 2.494600000000000e-01 + 3.297100000000000e-01 + 4.360400000000000e-01 + 5.252400000000000e-01 + 5.420700000000001e-01 + 4.547000000000000e-01 + 2.813900000000000e-01 + 8.723100000000000e-02 +-5.059700000000000e-02 +-8.785000000000000e-02 +-3.812100000000000e-02 + 3.999600000000000e-02 + 8.485700000000000e-02 + 7.371300000000000e-02 + 3.599200000000000e-02 + 3.000500000000000e-02 + 1.007600000000000e-01 + 2.482700000000000e-01 + 4.263300000000000e-01 + 5.693900000000000e-01 + 6.273400000000000e-01 + 5.858500000000000e-01 + 4.636700000000000e-01 + 2.944100000000000e-01 + 1.083400000000000e-01 +-7.532300000000000e-02 +-2.458000000000000e-01 +-3.951500000000000e-01 +-5.162000000000000e-01 +-6.048200000000000e-01 +-6.622700000000000e-01 +-6.943400000000000e-01 +-7.077700000000000e-01 +-7.071000000000000e-01 +-6.943800000000000e-01 +-6.708300000000000e-01 +-6.374000000000000e-01 +-5.931500000000000e-01 +-5.329800000000000e-01 +-4.480200000000000e-01 +-3.298000000000000e-01 +-1.757400000000000e-01 + 8.162400000000000e-03 + 2.095800000000000e-01 + 4.152100000000000e-01 + 6.148900000000000e-01 + 8.014900000000000e-01 + 9.673200000000000e-01 + 1.100600000000000e+00 + 1.185600000000000e+00 + 1.206100000000000e+00 + 1.151400000000000e+00 + 1.020100000000000e+00 + 8.216900000000000e-01 + 5.762500000000000e-01 + 3.109400000000000e-01 + 5.468900000000000e-02 +-1.693500000000000e-01 +-3.506300000000000e-01 +-4.932800000000000e-01 +-6.108000000000000e-01 +-7.155400000000000e-01 +-8.098900000000000e-01 +-8.854800000000000e-01 +-9.313700000000000e-01 +-9.442900000000000e-01 +-9.319800000000000e-01 +-9.053099999999999e-01 +-8.651100000000000e-01 +-7.952800000000000e-01 +-6.703500000000000e-01 +-4.745100000000000e-01 +-2.187700000000000e-01 + 5.761000000000000e-02 + 3.046100000000000e-01 + 4.871100000000000e-01 + 6.016600000000000e-01 + 6.732399999999999e-01 + 7.357000000000000e-01 + 8.102600000000000e-01 + 8.962200000000000e-01 + 9.772400000000000e-01 + 1.034600000000000e+00 + 1.055600000000000e+00 + 1.031800000000000e+00 + 9.524000000000000e-01 + 8.031700000000001e-01 + 5.742500000000000e-01 + 2.726400000000000e-01 +-7.189100000000000e-02 +-4.142000000000000e-01 +-7.110100000000000e-01 +-9.367500000000000e-01 +-1.088100000000000e+00 +-1.175500000000000e+00 +-1.210200000000000e+00 +-1.195800000000000e+00 +-1.129800000000000e+00 +-1.010300000000000e+00 +-8.415600000000000e-01 +-6.327000000000000e-01 +-3.937800000000000e-01 +-1.334900000000000e-01 + 1.378200000000000e-01 + 4.025200000000000e-01 + 6.335800000000000e-01 + 8.001100000000000e-01 + 8.787000000000000e-01 + 8.640800000000000e-01 + 7.725700000000000e-01 + 6.364300000000001e-01 + 4.921200000000000e-01 + 3.685700000000000e-01 + 2.799000000000000e-01 + 2.246000000000000e-01 + 1.906000000000000e-01 + 1.634400000000000e-01 + 1.341800000000000e-01 + 1.027300000000000e-01 + 7.426900000000000e-02 + 5.051100000000000e-02 + 2.198000000000000e-02 +-3.111400000000000e-02 +-1.269900000000000e-01 +-2.657400000000000e-01 +-4.204100000000000e-01 +-5.454200000000000e-01 +-6.002000000000000e-01 +-5.735400000000000e-01 +-4.911300000000000e-01 +-3.987700000000000e-01 +-3.315400000000000e-01 +-2.902400000000000e-01 +-2.426700000000000e-01 +-1.495300000000000e-01 + 3.462900000000000e-03 + 1.904700000000000e-01 + 3.583400000000000e-01 + 4.577900000000000e-01 + 4.707200000000000e-01 + 4.158700000000000e-01 + 3.316400000000000e-01 + 2.512700000000000e-01 + 1.885300000000000e-01 + 1.408700000000000e-01 + 1.028000000000000e-01 + 7.552300000000001e-02 + 6.531800000000000e-02 + 7.447300000000000e-02 + 9.496900000000000e-02 + 1.112700000000000e-01 + 1.092400000000000e-01 + 8.255200000000000e-02 + 3.154800000000000e-02 +-4.232300000000000e-02 +-1.382300000000000e-01 +-2.500000000000000e-01 +-3.578300000000000e-01 +-4.284800000000000e-01 +-4.293400000000000e-01 +-3.498400000000000e-01 +-2.142700000000000e-01 +-7.398800000000000e-02 + 1.917900000000000e-02 + 4.156700000000000e-02 + 9.217899999999999e-03 +-3.525100000000000e-02 +-5.057400000000000e-02 +-2.021500000000000e-02 + 4.308000000000000e-02 + 1.109600000000000e-01 + 1.584800000000000e-01 + 1.747400000000000e-01 + 1.609700000000000e-01 + 1.228900000000000e-01 + 6.623700000000000e-02 +-1.273200000000000e-03 +-6.665200000000000e-02 +-1.136500000000000e-01 +-1.307800000000000e-01 +-1.188900000000000e-01 +-9.048299999999999e-02 +-6.004400000000000e-02 +-3.279600000000000e-02 +-1.521800000000000e-03 + 4.555700000000000e-02 + 1.126200000000000e-01 + 1.905400000000000e-01 + 2.627500000000000e-01 + 3.174500000000000e-01 + 3.551000000000000e-01 + 3.843100000000000e-01 + 4.097200000000000e-01 + 4.231900000000000e-01 + 4.069800000000000e-01 + 3.473200000000000e-01 + 2.471100000000000e-01 + 1.266600000000000e-01 + 1.095800000000000e-02 +-8.664900000000000e-02 +-1.714900000000000e-01 +-2.600100000000000e-01 +-3.638800000000000e-01 +-4.783100000000000e-01 +-5.827700000000000e-01 +-6.522800000000000e-01 +-6.699300000000000e-01 +-6.323900000000000e-01 +-5.476000000000000e-01 +-4.297800000000000e-01 +-2.969800000000000e-01 +-1.706700000000000e-01 +-7.312200000000001e-02 +-1.999200000000000e-02 +-1.192000000000000e-02 +-3.241900000000000e-02 +-5.611600000000000e-02 +-6.274200000000001e-02 +-4.639600000000000e-02 +-1.261300000000000e-02 + 3.397500000000000e-02 + 9.966700000000001e-02 + 1.987100000000000e-01 + 3.376200000000000e-01 + 4.994000000000000e-01 + 6.424900000000000e-01 + 7.191800000000000e-01 + 7.024100000000000e-01 + 6.023700000000000e-01 + 4.606200000000000e-01 + 3.258100000000000e-01 + 2.279000000000000e-01 + 1.677800000000000e-01 + 1.263200000000000e-01 + 8.314199999999999e-02 + 3.019200000000000e-02 +-2.716100000000000e-02 +-7.785599999999999e-02 +-1.122800000000000e-01 +-1.236700000000000e-01 +-1.067000000000000e-01 +-5.941100000000000e-02 + 1.006900000000000e-02 + 7.867100000000000e-02 + 1.135600000000000e-01 + 8.822300000000000e-02 +-5.013500000000000e-04 +-1.283400000000000e-01 +-2.577700000000000e-01 +-3.615300000000000e-01 +-4.375500000000000e-01 +-5.037300000000000e-01 +-5.765400000000001e-01 +-6.515900000000000e-01 +-7.027200000000000e-01 +-7.013100000000000e-01 +-6.401800000000000e-01 +-5.421000000000000e-01 +-4.450300000000000e-01 +-3.751200000000000e-01 +-3.284900000000000e-01 +-2.753200000000000e-01 +-1.820500000000000e-01 +-3.363300000000000e-02 + 1.602500000000000e-01 + 3.760600000000000e-01 + 5.914500000000000e-01 + 7.898700000000000e-01 + 9.527700000000000e-01 + 1.051300000000000e+00 + 1.051600000000000e+00 + 9.357600000000000e-01 + 7.236900000000001e-01 + 4.759100000000000e-01 + 2.694300000000000e-01 + 1.591400000000000e-01 + 1.498200000000000e-01 + 1.980800000000000e-01 + 2.423500000000000e-01 + 2.395900000000000e-01 + 1.842400000000000e-01 + 9.934999999999999e-02 + 1.063700000000000e-02 +-7.482300000000000e-02 +-1.701800000000000e-01 +-2.922300000000000e-01 +-4.417800000000000e-01 +-5.964200000000000e-01 +-7.201600000000000e-01 +-7.817000000000000e-01 +-7.688100000000000e-01 +-6.912900000000000e-01 +-5.738000000000000e-01 +-4.447600000000000e-01 +-3.268900000000000e-01 +-2.311200000000000e-01 +-1.543300000000000e-01 +-8.177700000000000e-02 + 4.609000000000000e-03 + 1.138900000000000e-01 + 2.360400000000000e-01 + 3.419700000000000e-01 + 3.962400000000000e-01 + 3.765300000000000e-01 + 2.876400000000000e-01 + 1.607100000000000e-01 + 3.798100000000000e-02 +-4.680300000000000e-02 +-8.023500000000000e-02 +-6.824600000000000e-02 +-2.685100000000000e-02 + 2.654400000000000e-02 + 7.645100000000001e-02 + 1.096800000000000e-01 + 1.181900000000000e-01 + 1.053700000000000e-01 + 8.974900000000000e-02 + 9.846500000000000e-02 + 1.504100000000000e-01 + 2.392800000000000e-01 + 3.308500000000000e-01 + 3.801500000000000e-01 + 3.591800000000000e-01 + 2.757400000000000e-01 + 1.687300000000000e-01 + 8.263500000000000e-02 + 3.962300000000000e-02 + 2.989000000000000e-02 + 2.622100000000000e-02 + 9.494400000000000e-03 +-1.651200000000000e-02 +-3.312500000000000e-02 +-3.011900000000000e-02 +-2.360800000000000e-02 +-5.177100000000000e-02 +-1.497800000000000e-01 +-3.224800000000000e-01 +-5.353900000000000e-01 +-7.307300000000000e-01 +-8.561299999999999e-01 +-8.861000000000000e-01 +-8.242500000000000e-01 +-6.901500000000000e-01 +-5.052600000000000e-01 +-2.883800000000000e-01 +-5.956400000000000e-02 + 1.576300000000000e-01 + 3.424300000000000e-01 + 4.880000000000000e-01 + 6.056500000000000e-01 + 7.144400000000000e-01 + 8.214500000000000e-01 + 9.086200000000000e-01 + 9.393300000000000e-01 + 8.828200000000000e-01 + 7.391700000000000e-01 + 5.449600000000000e-01 + 3.535400000000000e-01 + 2.031000000000000e-01 + 9.540100000000000e-02 + 3.348600000000000e-04 +-1.179600000000000e-01 +-2.730500000000000e-01 +-4.457900000000000e-01 +-5.969800000000000e-01 +-6.917000000000000e-01 +-7.177200000000000e-01 +-6.877100000000000e-01 +-6.278700000000000e-01 +-5.637000000000000e-01 +-5.113200000000000e-01 +-4.754000000000000e-01 +-4.497500000000000e-01 +-4.180900000000000e-01 +-3.574000000000000e-01 +-2.467500000000000e-01 +-7.986799999999999e-02 + 1.267900000000000e-01 + 3.385300000000000e-01 + 5.192000000000000e-01 + 6.496600000000000e-01 + 7.338200000000000e-01 + 7.872100000000000e-01 + 8.169400000000000e-01 + 8.099400000000000e-01 + 7.406400000000000e-01 + 5.931300000000000e-01 + 3.800200000000000e-01 + 1.416700000000000e-01 +-7.553100000000000e-02 +-2.458100000000000e-01 +-3.751000000000000e-01 +-4.879900000000000e-01 +-6.010900000000000e-01 +-7.041900000000000e-01 +-7.639000000000000e-01 +-7.465300000000000e-01 +-6.418199999999999e-01 +-4.693300000000000e-01 +-2.642600000000000e-01 +-5.573000000000000e-02 + 1.443600000000000e-01 + 3.344000000000000e-01 + 5.065700000000000e-01 + 6.373300000000000e-01 + 6.954000000000000e-01 + 6.621200000000000e-01 + 5.483300000000000e-01 + 3.939600000000000e-01 + 2.493200000000000e-01 + 1.503400000000000e-01 + 1.034400000000000e-01 + 8.752300000000000e-02 + 6.890800000000000e-02 + 1.857700000000000e-02 +-7.686000000000000e-02 +-2.122300000000000e-01 +-3.662800000000000e-01 +-5.073700000000000e-01 +-6.026400000000000e-01 +-6.302700000000000e-01 +-5.905400000000000e-01 +-5.082100000000001e-01 +-4.211700000000000e-01 +-3.596500000000000e-01 +-3.285800000000000e-01 +-3.058400000000000e-01 +-2.591900000000000e-01 +-1.707000000000000e-01 +-5.100300000000000e-02 + 6.759500000000000e-02 + 1.544500000000000e-01 + 2.032400000000000e-01 + 2.369500000000000e-01 + 2.913800000000000e-01 + 3.893500000000000e-01 + 5.238300000000000e-01 + 6.609500000000000e-01 + 7.589399999999999e-01 + 7.884200000000000e-01 + 7.414700000000000e-01 + 6.273400000000000e-01 + 4.634600000000000e-01 + 2.711700000000000e-01 + 7.811200000000000e-02 +-7.994600000000000e-02 +-1.662500000000000e-01 +-1.598000000000000e-01 +-7.165100000000001e-02 + 5.255600000000000e-02 + 1.499000000000000e-01 + 1.694100000000000e-01 + 9.611200000000000e-02 +-4.516700000000000e-02 +-2.083000000000000e-01 +-3.544600000000000e-01 +-4.722100000000000e-01 +-5.771800000000000e-01 +-6.927000000000000e-01 +-8.256700000000000e-01 +-9.538900000000000e-01 +-1.033400000000000e+00 +-1.021300000000000e+00 +-9.003000000000000e-01 +-6.897500000000000e-01 +-4.366500000000000e-01 +-1.922600000000000e-01 + 1.231300000000000e-02 + 1.771800000000000e-01 + 3.257800000000000e-01 + 4.834600000000000e-01 + 6.565400000000000e-01 + 8.247900000000000e-01 + 9.516100000000000e-01 + 1.004600000000000e+00 + 9.729900000000000e-01 + 8.710400000000000e-01 + 7.276100000000000e-01 + 5.703600000000000e-01 + 4.162500000000000e-01 + 2.729800000000000e-01 + 1.464100000000000e-01 + 4.470700000000000e-02 +-2.585200000000000e-02 +-6.957099999999999e-02 +-1.047100000000000e-01 +-1.552700000000000e-01 +-2.348600000000000e-01 +-3.346100000000000e-01 +-4.255600000000000e-01 +-4.755800000000000e-01 +-4.687600000000000e-01 +-4.128900000000000e-01 +-3.297900000000000e-01 +-2.373300000000000e-01 +-1.387600000000000e-01 +-2.852500000000000e-02 + 9.093000000000000e-02 + 1.974600000000000e-01 + 2.554000000000000e-01 + 2.374800000000000e-01 + 1.456100000000000e-01 + 1.300600000000000e-02 +-1.162100000000000e-01 +-2.147600000000000e-01 +-2.857100000000000e-01 +-3.504900000000000e-01 +-4.214700000000000e-01 +-4.824900000000000e-01 +-4.953000000000000e-01 +-4.293000000000000e-01 +-2.915100000000000e-01 +-1.319400000000000e-01 +-1.714700000000000e-02 + 1.088800000000000e-02 +-3.871500000000000e-02 +-1.124500000000000e-01 +-1.468600000000000e-01 +-1.056500000000000e-01 + 5.639800000000000e-03 + 1.538700000000000e-01 + 3.063700000000000e-01 + 4.499700000000000e-01 + 5.884900000000000e-01 + 7.252000000000000e-01 + 8.481900000000000e-01 + 9.315600000000001e-01 + 9.507300000000000e-01 + 8.980399999999999e-01 + 7.857800000000000e-01 + 6.361100000000000e-01 + 4.678300000000000e-01 + 2.915400000000000e-01 + 1.146900000000000e-01 +-5.184500000000000e-02 +-1.950300000000000e-01 +-3.094000000000000e-01 +-4.054700000000000e-01 +-5.062200000000000e-01 +-6.308000000000000e-01 +-7.771000000000000e-01 +-9.182800000000000e-01 +-1.017900000000000e+00 +-1.053100000000000e+00 +-1.027100000000000e+00 +-9.613600000000000e-01 +-8.718800000000000e-01 +-7.522799999999999e-01 +-5.774400000000000e-01 +-3.278200000000000e-01 +-1.558100000000000e-02 + 3.092700000000000e-01 + 5.796400000000000e-01 + 7.454100000000000e-01 + 7.968600000000000e-01 + 7.616900000000000e-01 + 6.804600000000000e-01 + 5.803600000000000e-01 + 4.666300000000000e-01 + 3.344400000000000e-01 + 1.875700000000000e-01 + 4.595100000000000e-02 +-6.415500000000000e-02 +-1.273300000000000e-01 +-1.468500000000000e-01 +-1.354000000000000e-01 +-9.703199999999999e-02 +-1.776600000000000e-02 + 1.238400000000000e-01 + 3.324200000000000e-01 + 5.770300000000000e-01 + 7.954000000000000e-01 + 9.216000000000000e-01 + 9.194300000000000e-01 + 7.984900000000000e-01 + 6.020700000000000e-01 + 3.764800000000000e-01 + 1.443700000000000e-01 +-9.992300000000000e-02 +-3.717200000000000e-01 +-6.702100000000000e-01 +-9.654199999999999e-01 +-1.207100000000000e+00 +-1.348600000000000e+00 +-1.367700000000000e+00 +-1.273400000000000e+00 +-1.094300000000000e+00 +-8.615800000000000e-01 +-5.975400000000000e-01 +-3.149400000000000e-01 +-2.488200000000000e-02 + 2.556900000000000e-01 + 5.025800000000000e-01 + 6.892600000000000e-01 + 7.944900000000000e-01 + 8.083300000000000e-01 + 7.351500000000000e-01 + 5.939300000000000e-01 + 4.161900000000000e-01 + 2.410600000000000e-01 + 1.065900000000000e-01 + 3.891900000000000e-02 + 4.328100000000000e-02 + 1.017600000000000e-01 + 1.800900000000000e-01 + 2.413700000000000e-01 + 2.605700000000000e-01 + 2.329700000000000e-01 + 1.727900000000000e-01 + 1.032700000000000e-01 + 4.368600000000000e-02 + 5.758800000000000e-04 +-3.260300000000000e-02 +-6.773300000000000e-02 +-1.117400000000000e-01 +-1.609000000000000e-01 +-2.039800000000000e-01 +-2.322200000000000e-01 +-2.484900000000000e-01 +-2.675800000000000e-01 +-3.052100000000000e-01 +-3.622000000000000e-01 +-4.157000000000000e-01 +-4.262300000000000e-01 +-3.591000000000000e-01 +-2.074400000000000e-01 +-1.393300000000000e-03 + 2.041800000000000e-01 + 3.566400000000000e-01 + 4.302500000000000e-01 + 4.331200000000000e-01 + 3.939100000000000e-01 + 3.395100000000000e-01 + 2.808800000000000e-01 + 2.157800000000000e-01 + 1.435200000000000e-01 + 7.693700000000001e-02 + 3.987700000000000e-02 + 5.087400000000000e-02 + 1.056300000000000e-01 + 1.726500000000000e-01 + 2.066800000000000e-01 + 1.713900000000000e-01 + 5.639500000000000e-02 +-1.208400000000000e-01 +-3.265900000000000e-01 +-5.255600000000000e-01 +-6.890700000000000e-01 +-7.953900000000000e-01 +-8.276300000000000e-01 +-7.756800000000000e-01 +-6.419200000000000e-01 +-4.452400000000000e-01 +-2.175700000000000e-01 + 6.623100000000000e-03 + 2.010800000000000e-01 + 3.517800000000000e-01 + 4.532500000000000e-01 + 5.029400000000001e-01 + 5.006400000000000e-01 + 4.537300000000000e-01 + 3.820400000000000e-01 + 3.145300000000000e-01 + 2.768800000000000e-01 + 2.778400000000000e-01 + 3.051600000000000e-01 + 3.354000000000000e-01 + 3.503000000000000e-01 + 3.468900000000000e-01 + 3.330900000000000e-01 + 3.133700000000000e-01 + 2.780800000000000e-01 + 2.077200000000000e-01 + 9.057700000000000e-02 +-6.047300000000000e-02 +-2.073700000000000e-01 +-3.059700000000000e-01 +-3.323900000000000e-01 +-2.973800000000000e-01 +-2.383300000000000e-01 +-1.950100000000000e-01 +-1.873400000000000e-01 +-2.104900000000000e-01 +-2.477700000000000e-01 +-2.877800000000000e-01 +-3.305300000000000e-01 +-3.785500000000000e-01 +-4.233500000000000e-01 +-4.423100000000000e-01 +-4.114000000000000e-01 +-3.246000000000000e-01 +-2.033400000000000e-01 +-8.615800000000000e-02 +-4.930800000000000e-03 + 3.492800000000000e-02 + 5.520500000000000e-02 + 8.638000000000000e-02 + 1.443400000000000e-01 + 2.197300000000000e-01 + 2.864200000000000e-01 + 3.207200000000000e-01 + 3.155900000000000e-01 + 2.803500000000000e-01 + 2.295700000000000e-01 + 1.728600000000000e-01 + 1.148300000000000e-01 + 6.312100000000000e-02 + 3.418700000000000e-02 + 4.834200000000000e-02 + 1.155700000000000e-01 + 2.234200000000000e-01 + 3.380500000000000e-01 + 4.197800000000000e-01 + 4.426800000000000e-01 + 4.049700000000000e-01 + 3.240300000000000e-01 + 2.222100000000000e-01 + 1.151500000000000e-01 + 1.034700000000000e-02 +-8.694800000000000e-02 +-1.696700000000000e-01 +-2.329900000000000e-01 +-2.828300000000000e-01 +-3.384600000000000e-01 +-4.218700000000000e-01 +-5.381300000000000e-01 +-6.614800000000000e-01 +-7.406400000000000e-01 +-7.246100000000000e-01 +-5.937600000000000e-01 +-3.755800000000000e-01 +-1.329500000000000e-01 + 6.837900000000000e-02 + 1.924500000000000e-01 + 2.455000000000000e-01 + 2.620000000000000e-01 + 2.764500000000000e-01 + 3.009500000000000e-01 + 3.226700000000000e-01 + 3.197100000000000e-01 + 2.815600000000000e-01 + 2.190600000000000e-01 + 1.583600000000000e-01 + 1.251900000000000e-01 + 1.310700000000000e-01 + 1.693300000000000e-01 + 2.204400000000000e-01 + 2.604700000000000e-01 + 2.672500000000000e-01 + 2.239900000000000e-01 + 1.231300000000000e-01 +-2.787900000000000e-02 +-2.021700000000000e-01 +-3.564200000000000e-01 +-4.441000000000000e-01 +-4.348900000000000e-01 +-3.299200000000000e-01 +-1.634700000000000e-01 + 1.100600000000000e-02 + 1.428900000000000e-01 + 2.025400000000000e-01 + 1.872200000000000e-01 + 1.147800000000000e-01 + 1.234600000000000e-02 +-9.242599999999999e-02 +-1.750000000000000e-01 +-2.156600000000000e-01 +-2.034700000000000e-01 +-1.424200000000000e-01 +-5.446500000000000e-02 + 2.626600000000000e-02 + 6.847900000000000e-02 + 6.030000000000000e-02 + 1.673800000000000e-02 +-2.799800000000000e-02 +-3.947400000000000e-02 +-1.620100000000000e-03 + 7.634000000000001e-02 + 1.676000000000000e-01 + 2.431700000000000e-01 + 2.841800000000000e-01 + 2.845100000000000e-01 + 2.461600000000000e-01 + 1.746500000000000e-01 + 7.967200000000001e-02 +-2.112200000000000e-02 +-1.024200000000000e-01 +-1.406100000000000e-01 +-1.286000000000000e-01 +-8.550099999999999e-02 +-5.119000000000000e-02 +-6.582900000000000e-02 +-1.455800000000000e-01 +-2.702600000000000e-01 +-3.916400000000000e-01 +-4.577600000000000e-01 +-4.382200000000000e-01 +-3.358800000000000e-01 +-1.800200000000000e-01 +-8.280600000000001e-03 + 1.501400000000000e-01 + 2.811600000000000e-01 + 3.822100000000000e-01 + 4.545000000000000e-01 + 4.973800000000000e-01 + 5.072400000000000e-01 + 4.791300000000000e-01 + 4.093500000000000e-01 + 2.986300000000000e-01 + 1.562100000000000e-01 + 3.063900000000000e-03 +-1.297300000000000e-01 +-2.102900000000000e-01 +-2.204000000000000e-01 +-1.668500000000000e-01 +-8.140799999999999e-02 +-7.352900000000000e-03 + 1.991300000000000e-02 +-1.369400000000000e-02 +-1.007600000000000e-01 +-2.228100000000000e-01 +-3.612100000000000e-01 +-5.001200000000000e-01 +-6.219400000000000e-01 +-7.035300000000000e-01 +-7.211600000000000e-01 +-6.629500000000000e-01 +-5.384200000000000e-01 +-3.749700000000000e-01 +-2.010200000000000e-01 +-2.841300000000000e-02 + 1.513000000000000e-01 + 3.520500000000000e-01 + 5.717100000000001e-01 + 7.826400000000000e-01 + 9.447100000000000e-01 + 1.031900000000000e+00 + 1.050900000000000e+00 + 1.034800000000000e+00 + 1.013800000000000e+00 + 9.868000000000000e-01 + 9.170300000000000e-01 + 7.578900000000000e-01 + 4.907600000000000e-01 + 1.452500000000000e-01 +-2.145000000000000e-01 +-5.274100000000000e-01 +-7.683800000000000e-01 +-9.522400000000000e-01 +-1.107900000000000e+00 +-1.245900000000000e+00 +-1.345500000000000e+00 +-1.371200000000000e+00 +-1.301800000000000e+00 +-1.147300000000000e+00 +-9.394100000000000e-01 +-7.063700000000001e-01 +-4.558800000000000e-01 +-1.813800000000000e-01 + 1.147400000000000e-01 + 4.044600000000000e-01 + 6.422200000000000e-01 + 7.941700000000000e-01 + 8.641300000000000e-01 + 8.920400000000001e-01 + 9.228800000000000e-01 + 9.697700000000000e-01 + 1.001800000000000e+00 + 9.685500000000000e-01 + 8.435000000000000e-01 + 6.506400000000000e-01 + 4.523400000000000e-01 + 3.057800000000000e-01 + 2.215300000000000e-01 + 1.570700000000000e-01 + 5.062600000000000e-02 +-1.299900000000000e-01 +-3.606600000000000e-01 +-5.753200000000001e-01 +-7.092100000000000e-01 +-7.381300000000000e-01 +-6.864300000000000e-01 +-6.023400000000000e-01 +-5.230800000000000e-01 +-4.565600000000000e-01 +-3.894900000000000e-01 +-3.095500000000000e-01 +-2.201600000000000e-01 +-1.365200000000000e-01 +-6.961700000000000e-02 +-1.529200000000000e-02 + 4.067300000000000e-02 + 1.061100000000000e-01 + 1.701800000000000e-01 + 2.074100000000000e-01 + 1.956500000000000e-01 + 1.337700000000000e-01 + 4.451900000000000e-02 +-3.938000000000000e-02 +-9.469800000000000e-02 +-1.177700000000000e-01 +-1.190100000000000e-01 +-1.084700000000000e-01 +-8.544200000000000e-02 +-4.020600000000000e-02 + 3.463300000000000e-02 + 1.335000000000000e-01 + 2.365500000000000e-01 + 3.183200000000000e-01 + 3.596800000000000e-01 + 3.553400000000000e-01 + 3.141300000000000e-01 + 2.543300000000000e-01 + 1.980500000000000e-01 + 1.661900000000000e-01 + 1.729100000000000e-01 + 2.200100000000000e-01 + 2.935100000000000e-01 + 3.668600000000000e-01 + 4.111100000000000e-01 + 4.075200000000000e-01 + 3.546000000000000e-01 + 2.648200000000000e-01 + 1.535400000000000e-01 + 2.851300000000000e-02 +-1.121100000000000e-01 +-2.722800000000000e-01 +-4.476700000000000e-01 +-6.211900000000000e-01 +-7.682099999999999e-01 +-8.678600000000000e-01 +-9.119900000000000e-01 +-9.062100000000000e-01 +-8.633500000000000e-01 +-7.948100000000000e-01 +-7.052700000000000e-01 +-5.925000000000000e-01 +-4.502500000000000e-01 +-2.722600000000000e-01 +-5.688400000000000e-02 + 1.870400000000000e-01 + 4.350400000000000e-01 + 6.472800000000000e-01 + 7.789199999999999e-01 + 7.993300000000000e-01 + 7.109200000000000e-01 + 5.549200000000000e-01 + 3.972900000000000e-01 + 2.996500000000000e-01 + 2.912200000000000e-01 + 3.580700000000000e-01 + 4.555700000000000e-01 + 5.351100000000000e-01 + 5.677300000000000e-01 + 5.510500000000000e-01 + 4.985400000000000e-01 + 4.224400000000000e-01 + 3.241000000000000e-01 + 1.979700000000000e-01 + 4.371700000000000e-02 +-1.247700000000000e-01 +-2.819200000000000e-01 +-4.030500000000000e-01 +-4.780000000000000e-01 +-5.161600000000000e-01 +-5.395700000000000e-01 +-5.689700000000000e-01 +-6.114200000000000e-01 +-6.560200000000000e-01 +-6.790100000000000e-01 +-6.545400000000000e-01 +-5.659999999999999e-01 +-4.139600000000000e-01 +-2.183300000000000e-01 +-1.405200000000000e-02 + 1.590300000000000e-01 + 2.692300000000000e-01 + 3.040500000000000e-01 + 2.742000000000000e-01 + 2.081500000000000e-01 + 1.397700000000000e-01 + 9.532000000000000e-02 + 8.599500000000000e-02 + 1.085600000000000e-01 + 1.516700000000000e-01 + 2.029000000000000e-01 + 2.525500000000000e-01 + 2.938300000000000e-01 + 3.215000000000000e-01 + 3.311100000000000e-01 + 3.192600000000000e-01 + 2.839800000000000e-01 + 2.246100000000000e-01 + 1.420700000000000e-01 + 4.044800000000000e-02 +-7.062400000000001e-02 +-1.756600000000000e-01 +-2.575600000000000e-01 +-3.058700000000000e-01 +-3.240100000000000e-01 +-3.291900000000000e-01 +-3.425100000000000e-01 +-3.738000000000000e-01 +-4.110500000000000e-01 +-4.226200000000000e-01 +-3.727000000000000e-01 +-2.413100000000000e-01 +-3.687200000000000e-02 + 2.059600000000000e-01 + 4.407800000000000e-01 + 6.265500000000001e-01 + 7.380100000000001e-01 + 7.665900000000000e-01 + 7.163300000000000e-01 + 6.009100000000001e-01 + 4.434700000000000e-01 + 2.751500000000000e-01 + 1.274000000000000e-01 + 1.878700000000000e-02 +-5.559600000000000e-02 +-1.223900000000000e-01 +-2.130300000000000e-01 +-3.404000000000000e-01 +-4.849400000000000e-01 +-6.015300000000000e-01 +-6.450300000000000e-01 +-5.984800000000000e-01 +-4.849800000000000e-01 +-3.548200000000000e-01 +-2.560700000000000e-01 +-2.082900000000000e-01 +-1.960500000000000e-01 +-1.849500000000000e-01 +-1.474500000000000e-01 +-8.031199999999999e-02 +-3.340900000000000e-03 + 5.715900000000000e-02 + 8.656300000000000e-02 + 8.940400000000000e-02 + 8.327900000000001e-02 + 8.634900000000000e-02 + 1.084500000000000e-01 + 1.506800000000000e-01 + 2.104300000000000e-01 + 2.854600000000000e-01 + 3.728900000000000e-01 + 4.651400000000000e-01 + 5.478600000000000e-01 + 6.028100000000000e-01 + 6.143500000000000e-01 + 5.745900000000000e-01 + 4.842400000000000e-01 + 3.497900000000000e-01 + 1.807800000000000e-01 +-1.022500000000000e-02 +-2.063300000000000e-01 +-3.867900000000000e-01 +-5.314400000000000e-01 +-6.268800000000000e-01 +-6.699200000000000e-01 +-6.654600000000001e-01 +-6.207700000000000e-01 +-5.414200000000000e-01 +-4.327400000000000e-01 +-3.050700000000000e-01 +-1.765200000000000e-01 +-6.820900000000001e-02 + 7.153800000000000e-03 + 5.516400000000000e-02 + 9.957600000000000e-02 + 1.696900000000000e-01 + 2.822400000000000e-01 + 4.292500000000000e-01 + 5.797500000000000e-01 + 6.936400000000000e-01 + 7.385000000000000e-01 + 6.996700000000000e-01 + 5.805200000000000e-01 + 3.970700000000000e-01 + 1.731300000000000e-01 +-6.190700000000000e-02 +-2.756300000000000e-01 +-4.394600000000000e-01 +-5.385500000000000e-01 +-5.782800000000000e-01 +-5.803199999999999e-01 +-5.685100000000000e-01 +-5.533000000000000e-01 +-5.265900000000000e-01 +-4.715300000000000e-01 +-3.802700000000000e-01 +-2.654800000000000e-01 +-1.551800000000000e-01 +-7.368600000000000e-02 +-2.283700000000000e-02 + 2.106600000000000e-02 + 9.081500000000001e-02 + 2.033700000000000e-01 + 3.445600000000000e-01 + 4.747600000000000e-01 + 5.518400000000000e-01 + 5.554100000000000e-01 + 4.966700000000000e-01 + 4.092400000000000e-01 + 3.297700000000000e-01 + 2.822000000000000e-01 + 2.736400000000000e-01 + 2.992800000000000e-01 + 3.475400000000000e-01 + 3.999100000000000e-01 + 4.281700000000000e-01 + 3.970500000000000e-01 + 2.770900000000000e-01 + 6.308700000000000e-02 +-2.140700000000000e-01 +-4.929700000000000e-01 +-7.049100000000000e-01 +-8.032700000000000e-01 +-7.824400000000000e-01 +-6.758900000000000e-01 +-5.355200000000000e-01 +-4.053900000000000e-01 +-3.046700000000000e-01 +-2.278400000000000e-01 +-1.587700000000000e-01 +-8.795300000000000e-02 +-2.151300000000000e-02 + 2.294400000000000e-02 + 3.020200000000000e-02 + 1.550400000000000e-03 +-4.053000000000000e-02 +-6.146100000000000e-02 +-3.345300000000000e-02 + 4.648000000000000e-02 + 1.510600000000000e-01 + 2.352300000000000e-01 + 2.612900000000000e-01 + 2.222800000000000e-01 + 1.486100000000000e-01 + 9.193900000000001e-02 + 9.479300000000000e-02 + 1.643600000000000e-01 + 2.674300000000000e-01 + 3.503300000000000e-01 + 3.713300000000000e-01 + 3.246500000000000e-01 + 2.409100000000000e-01 + 1.649900000000000e-01 + 1.270900000000000e-01 + 1.265500000000000e-01 + 1.381500000000000e-01 + 1.343000000000000e-01 + 1.059400000000000e-01 + 6.754700000000000e-02 + 4.372500000000000e-02 + 4.837600000000000e-02 + 7.200300000000000e-02 + 8.585100000000000e-02 + 5.934600000000000e-02 +-2.151200000000000e-02 +-1.466700000000000e-01 +-2.889500000000000e-01 +-4.193500000000000e-01 +-5.200900000000001e-01 +-5.884400000000000e-01 +-6.309700000000000e-01 +-6.542700000000000e-01 +-6.587600000000000e-01 +-6.388900000000000e-01 +-5.877300000000000e-01 +-5.018600000000000e-01 +-3.828200000000000e-01 +-2.350100000000000e-01 +-6.271500000000001e-02 + 1.305700000000000e-01 + 3.391800000000000e-01 + 5.504900000000000e-01 + 7.421700000000000e-01 + 8.846500000000000e-01 + 9.493500000000000e-01 + 9.194300000000000e-01 + 7.978900000000000e-01 + 6.088100000000000e-01 + 3.905900000000000e-01 + 1.842500000000000e-01 + 2.150800000000000e-02 +-8.300600000000000e-02 +-1.335500000000000e-01 +-1.494200000000000e-01 +-1.571500000000000e-01 +-1.805500000000000e-01 +-2.309200000000000e-01 +-3.008000000000000e-01 +-3.647800000000000e-01 +-3.892000000000000e-01 +-3.482000000000000e-01 +-2.386600000000000e-01 +-8.566900000000000e-02 + 6.629300000000000e-02 + 1.726900000000000e-01 + 2.086300000000000e-01 + 1.776200000000000e-01 + 1.049000000000000e-01 + 2.035000000000000e-02 +-5.744800000000000e-02 +-1.260100000000000e-01 +-1.908800000000000e-01 +-2.522500000000000e-01 +-2.972400000000000e-01 +-3.044200000000000e-01 +-2.579800000000000e-01 +-1.615600000000000e-01 +-4.159500000000000e-02 + 6.349900000000000e-02 + 1.223900000000000e-01 + 1.268300000000000e-01 + 9.472500000000000e-02 + 5.825100000000000e-02 + 4.401000000000000e-02 + 5.742500000000000e-02 + 8.112600000000000e-02 + 8.867999999999999e-02 + 6.514800000000000e-02 + 2.088300000000000e-02 +-1.166400000000000e-02 + 2.234300000000000e-03 + 7.495400000000001e-02 + 1.836200000000000e-01 + 2.791700000000000e-01 + 3.134300000000000e-01 + 2.675900000000000e-01 + 1.632000000000000e-01 + 4.778600000000000e-02 +-3.551000000000000e-02 +-7.364999999999999e-02 +-8.728500000000000e-02 +-1.105500000000000e-01 +-1.624100000000000e-01 +-2.306300000000000e-01 +-2.794100000000000e-01 +-2.740700000000000e-01 +-2.039500000000000e-01 +-8.761099999999999e-02 + 4.108600000000000e-02 + 1.531700000000000e-01 + 2.351100000000000e-01 + 2.842600000000000e-01 + 2.971900000000000e-01 + 2.646400000000000e-01 + 1.789800000000000e-01 + 4.766700000000000e-02 +-1.011000000000000e-01 +-2.282200000000000e-01 +-3.031700000000000e-01 +-3.182900000000000e-01 +-2.864400000000000e-01 +-2.245900000000000e-01 +-1.378500000000000e-01 +-1.847400000000000e-02 + 1.386800000000000e-01 + 3.173900000000000e-01 + 4.751800000000000e-01 + 5.587800000000001e-01 + 5.304800000000000e-01 + 3.865800000000000e-01 + 1.559300000000000e-01 +-1.182100000000000e-01 +-3.974800000000000e-01 +-6.549500000000000e-01 +-8.674800000000000e-01 +-1.005700000000000e+00 +-1.034800000000000e+00 +-9.293400000000001e-01 +-6.914800000000000e-01 +-3.580700000000000e-01 + 1.056500000000000e-02 + 3.533500000000000e-01 + 6.284200000000000e-01 + 8.192600000000000e-01 + 9.275300000000000e-01 + 9.615899999999999e-01 + 9.302700000000000e-01 + 8.436800000000000e-01 + 7.162700000000000e-01 + 5.665800000000000e-01 + 4.133000000000000e-01 + 2.716100000000000e-01 + 1.530700000000000e-01 + 6.709100000000000e-02 + 1.896600000000000e-02 + 2.850200000000000e-03 +-5.017900000000000e-03 +-4.355100000000000e-02 +-1.504000000000000e-01 +-3.390200000000000e-01 +-5.845600000000000e-01 +-8.304900000000000e-01 +-1.014200000000000e+00 +-1.096000000000000e+00 +-1.072100000000000e+00 +-9.660700000000000e-01 +-8.062200000000000e-01 +-6.089700000000000e-01 +-3.797400000000000e-01 +-1.275600000000000e-01 + 1.218700000000000e-01 + 3.290200000000000e-01 + 4.592700000000000e-01 + 5.040200000000000e-01 + 4.877800000000000e-01 + 4.552900000000000e-01 + 4.476900000000000e-01 + 4.834000000000000e-01 + 5.541600000000000e-01 + 6.345000000000000e-01 + 6.948400000000000e-01 + 7.101900000000000e-01 + 6.636200000000000e-01 + 5.494599999999999e-01 + 3.785100000000000e-01 + 1.809200000000000e-01 +-3.283200000000000e-04 +-1.271100000000000e-01 +-1.860800000000000e-01 +-1.968500000000000e-01 +-1.998200000000000e-01 +-2.296600000000000e-01 +-2.918700000000000e-01 +-3.588500000000000e-01 +-3.887100000000000e-01 +-3.536500000000000e-01 +-2.583300000000000e-01 +-1.368500000000000e-01 +-3.257300000000000e-02 + 2.402100000000000e-02 + 2.507500000000000e-02 +-2.020100000000000e-02 +-9.804200000000000e-02 +-1.984200000000000e-01 +-3.143200000000000e-01 +-4.359100000000000e-01 +-5.472700000000000e-01 +-6.294800000000000e-01 +-6.672500000000000e-01 +-6.535700000000000e-01 +-5.890900000000000e-01 +-4.781300000000000e-01 +-3.256300000000000e-01 +-1.374100000000000e-01 + 7.793000000000000e-02 + 3.082900000000000e-01 + 5.397600000000000e-01 + 7.584000000000000e-01 + 9.496500000000000e-01 + 1.096000000000000e+00 + 1.176600000000000e+00 + 1.172600000000000e+00 + 1.076700000000000e+00 + 9.014700000000000e-01 + 6.786200000000000e-01 + 4.477500000000000e-01 + 2.406500000000000e-01 + 7.023100000000000e-02 +-6.974700000000000e-02 +-1.952600000000000e-01 +-3.198800000000000e-01 +-4.469900000000000e-01 +-5.686800000000000e-01 +-6.694099999999999e-01 +-7.312300000000000e-01 +-7.397600000000000e-01 +-6.909700000000000e-01 +-5.973000000000001e-01 +-4.880900000000000e-01 +-3.998800000000000e-01 +-3.580300000000000e-01 +-3.595600000000000e-01 +-3.700900000000000e-01 +-3.411000000000000e-01 +-2.400100000000000e-01 +-7.428899999999999e-02 + 1.075100000000000e-01 + 2.410200000000000e-01 + 2.826500000000000e-01 + 2.344900000000000e-01 + 1.417000000000000e-01 + 6.508300000000000e-02 + 4.753700000000000e-02 + 9.519100000000000e-02 + 1.824100000000000e-01 + 2.730700000000000e-01 + 3.413500000000000e-01 + 3.792800000000000e-01 + 3.901800000000000e-01 + 3.775000000000000e-01 + 3.398300000000000e-01 + 2.752100000000000e-01 + 1.894400000000000e-01 + 9.950800000000000e-02 + 2.791500000000000e-02 +-8.989000000000000e-03 +-1.086200000000000e-02 + 5.395100000000000e-03 + 1.419800000000000e-02 +-4.998400000000000e-03 +-5.618800000000000e-02 +-1.235300000000000e-01 +-1.782100000000000e-01 +-1.924300000000000e-01 +-1.539400000000000e-01 +-7.378300000000000e-02 + 1.749100000000000e-02 + 8.363100000000000e-02 + 9.960400000000000e-02 + 6.227100000000000e-02 +-1.085000000000000e-02 +-9.295600000000000e-02 +-1.613600000000000e-01 +-2.043300000000000e-01 +-2.186700000000000e-01 +-2.029200000000000e-01 +-1.542300000000000e-01 +-7.279800000000000e-02 + 3.000400000000000e-02 + 1.283200000000000e-01 + 1.891800000000000e-01 + 1.878200000000000e-01 + 1.211000000000000e-01 + 9.430300000000001e-03 +-1.142100000000000e-01 +-2.204700000000000e-01 +-2.940700000000000e-01 +-3.328200000000000e-01 +-3.390800000000000e-01 +-3.126100000000000e-01 +-2.512200000000000e-01 +-1.579300000000000e-01 +-4.689000000000000e-02 + 5.866600000000000e-02 + 1.362000000000000e-01 + 1.745700000000000e-01 + 1.780100000000000e-01 + 1.610200000000000e-01 + 1.389600000000000e-01 + 1.214000000000000e-01 + 1.122000000000000e-01 + 1.138800000000000e-01 + 1.312300000000000e-01 + 1.701900000000000e-01 + 2.331100000000000e-01 + 3.142400000000000e-01 + 3.989200000000000e-01 + 4.670100000000000e-01 + 4.986400000000000e-01 + 4.801700000000000e-01 + 4.092400000000000e-01 + 2.973400000000000e-01 + 1.680400000000000e-01 + 4.899300000000000e-02 +-4.091700000000000e-02 +-1.027600000000000e-01 +-1.589600000000000e-01 +-2.409100000000000e-01 +-3.680200000000000e-01 +-5.312200000000000e-01 +-6.928000000000000e-01 +-8.044600000000000e-01 +-8.325500000000000e-01 +-7.740100000000000e-01 +-6.528500000000000e-01 +-5.013300000000001e-01 +-3.406700000000000e-01 +-1.751600000000000e-01 +-2.431200000000000e-03 + 1.710900000000000e-01 + 3.234200000000000e-01 + 4.255000000000000e-01 + 4.581400000000000e-01 + 4.241600000000000e-01 + 3.467600000000000e-01 + 2.563400000000000e-01 + 1.767900000000000e-01 + 1.204800000000000e-01 + 9.272000000000000e-02 + 9.775800000000000e-02 + 1.384500000000000e-01 + 2.093200000000000e-01 + 2.907400000000000e-01 + 3.524800000000000e-01 + 3.675800000000000e-01 + 3.278700000000000e-01 + 2.496100000000000e-01 + 1.644500000000000e-01 + 1.013000000000000e-01 + 7.119499999999999e-02 + 6.453700000000000e-02 + 6.070500000000000e-02 + 4.196700000000000e-02 + 2.304100000000000e-03 +-5.289200000000000e-02 +-1.134700000000000e-01 +-1.717000000000000e-01 +-2.260300000000000e-01 +-2.809300000000000e-01 +-3.443200000000000e-01 +-4.236700000000000e-01 +-5.210700000000000e-01 +-6.286100000000000e-01 +-7.267600000000000e-01 +-7.884900000000000e-01 +-7.884300000000000e-01 +-7.123100000000000e-01 +-5.608500000000000e-01 +-3.461700000000000e-01 +-8.459400000000000e-02 + 2.073200000000000e-01 + 5.100200000000000e-01 + 7.952700000000000e-01 + 1.025600000000000e+00 + 1.163700000000000e+00 + 1.188400000000000e+00 + 1.105700000000000e+00 + 9.463500000000000e-01 + 7.497500000000000e-01 + 5.442500000000000e-01 + 3.382600000000000e-01 + 1.268900000000000e-01 +-9.236400000000000e-02 +-3.081000000000000e-01 +-4.967000000000000e-01 +-6.348500000000000e-01 +-7.119000000000000e-01 +-7.321800000000001e-01 +-7.067600000000001e-01 +-6.431900000000000e-01 +-5.426400000000000e-01 +-4.064700000000000e-01 +-2.449500000000000e-01 +-7.906400000000000e-02 + 6.727700000000000e-02 + 1.779400000000000e-01 + 2.488300000000000e-01 + 2.820600000000000e-01 + 2.761800000000000e-01 + 2.228800000000000e-01 + 1.155200000000000e-01 +-3.623500000000000e-02 +-1.982900000000000e-01 +-3.201700000000000e-01 +-3.572500000000000e-01 +-2.942700000000000e-01 +-1.554000000000000e-01 + 5.740300000000000e-03 + 1.305900000000000e-01 + 1.812700000000000e-01 + 1.552300000000000e-01 + 8.386000000000000e-02 + 1.786300000000000e-02 + 6.367900000000000e-03 + 7.747500000000000e-02 + 2.267500000000000e-01 + 4.181300000000000e-01 + 5.977400000000000e-01 + 7.153000000000000e-01 + 7.429200000000000e-01 + 6.811500000000000e-01 + 5.497200000000000e-01 + 3.707000000000000e-01 + 1.573200000000000e-01 +-8.294000000000000e-02 +-3.349100000000000e-01 +-5.657300000000000e-01 +-7.309200000000000e-01 +-7.963000000000000e-01 +-7.604800000000000e-01 +-6.594200000000000e-01 +-5.463100000000000e-01 +-4.591600000000000e-01 +-3.995000000000000e-01 +-3.383600000000000e-01 +-2.451500000000000e-01 +-1.170700000000000e-01 + 1.409800000000000e-02 + 1.036500000000000e-01 + 1.274500000000000e-01 + 1.013600000000000e-01 + 7.159699999999999e-02 + 8.329000000000000e-02 + 1.504800000000000e-01 + 2.488100000000000e-01 + 3.342200000000000e-01 + 3.723500000000000e-01 + 3.578200000000000e-01 + 3.128200000000000e-01 + 2.704500000000000e-01 + 2.569700000000000e-01 + 2.831500000000000e-01 + 3.446100000000000e-01 + 4.247300000000000e-01 + 4.961200000000000e-01 + 5.236100000000000e-01 + 4.741400000000000e-01 + 3.331500000000000e-01 + 1.179200000000000e-01 +-1.242800000000000e-01 +-3.368500000000000e-01 +-4.824900000000000e-01 +-5.609499999999999e-01 +-6.029300000000000e-01 +-6.438199999999999e-01 +-6.958800000000001e-01 +-7.388000000000000e-01 +-7.345699999999999e-01 +-6.548900000000000e-01 +-5.009300000000000e-01 +-3.022900000000000e-01 +-9.828199999999999e-02 + 8.295900000000000e-02 + 2.329300000000000e-01 + 3.557900000000000e-01 + 4.552200000000000e-01 + 5.274799999999999e-01 + 5.653200000000000e-01 + 5.672300000000000e-01 + 5.418800000000000e-01 + 5.027199999999999e-01 + 4.573100000000000e-01 + 4.005900000000000e-01 + 3.186600000000000e-01 + 2.006300000000000e-01 + 4.985300000000000e-02 +-1.138300000000000e-01 +-2.621800000000000e-01 +-3.712800000000000e-01 +-4.306600000000000e-01 +-4.445500000000000e-01 +-4.263000000000000e-01 +-3.910500000000000e-01 +-3.504800000000000e-01 +-3.107900000000000e-01 +-2.728200000000000e-01 +-2.332400000000000e-01 +-1.865600000000000e-01 +-1.284800000000000e-01 +-5.918400000000000e-02 + 1.513200000000000e-02 + 8.457700000000000e-02 + 1.408200000000000e-01 + 1.823400000000000e-01 + 2.159900000000000e-01 + 2.536200000000000e-01 + 3.053800000000000e-01 + 3.735200000000000e-01 + 4.500300000000000e-01 + 5.188800000000000e-01 + 5.616200000000000e-01 + 5.635700000000000e-01 + 5.185100000000000e-01 + 4.304500000000000e-01 + 3.121900000000000e-01 + 1.810100000000000e-01 + 5.306300000000000e-02 +-6.146700000000000e-02 +-1.602000000000000e-01 +-2.467200000000000e-01 +-3.263800000000000e-01 +-4.025600000000000e-01 +-4.756000000000000e-01 +-5.446700000000000e-01 +-6.101100000000000e-01 +-6.735700000000000e-01 +-7.348300000000000e-01 +-7.872300000000000e-01 +-8.152100000000000e-01 +-7.972500000000000e-01 +-7.140100000000000e-01 +-5.585200000000000e-01 +-3.431700000000000e-01 +-9.926800000000000e-02 + 1.315500000000000e-01 + 3.113600000000000e-01 + 4.195700000000000e-01 + 4.601200000000000e-01 + 4.592200000000000e-01 + 4.544800000000000e-01 + 4.803400000000000e-01 + 5.562700000000000e-01 + 6.819300000000000e-01 + 8.395600000000000e-01 + 1.000500000000000e+00 + 1.132000000000000e+00 + 1.202000000000000e+00 + 1.183900000000000e+00 + 1.062400000000000e+00 + 8.398300000000000e-01 + 5.393200000000000e-01 + 2.007400000000000e-01 +-1.315400000000000e-01 +-4.235800000000000e-01 +-6.612200000000000e-01 +-8.483400000000000e-01 +-9.957100000000000e-01 +-1.108800000000000e+00 +-1.183500000000000e+00 +-1.211300000000000e+00 +-1.189900000000000e+00 +-1.128000000000000e+00 +-1.040300000000000e+00 +-9.367300000000000e-01 +-8.140100000000000e-01 +-6.583500000000000e-01 +-4.570700000000000e-01 +-2.110200000000000e-01 + 6.172200000000000e-02 + 3.331800000000000e-01 + 5.774300000000000e-01 + 7.779900000000000e-01 + 9.262400000000000e-01 + 1.015100000000000e+00 + 1.036200000000000e+00 + 9.856700000000000e-01 + 8.734499999999999e-01 + 7.275300000000000e-01 + 5.855800000000000e-01 + 4.771600000000000e-01 + 4.078400000000000e-01 + 3.570200000000000e-01 + 2.918900000000000e-01 + 1.886500000000000e-01 + 4.694200000000000e-02 +-1.117800000000000e-01 +-2.595600000000000e-01 +-3.795300000000000e-01 +-4.735300000000000e-01 +-5.554700000000000e-01 +-6.360000000000000e-01 +-7.093400000000000e-01 +-7.512300000000000e-01 +-7.295700000000001e-01 +-6.219000000000000e-01 +-4.303800000000000e-01 +-1.864900000000000e-01 + 5.788400000000000e-02 + 2.495000000000000e-01 + 3.547300000000000e-01 + 3.722500000000000e-01 + 3.304700000000000e-01 + 2.706200000000000e-01 + 2.245000000000000e-01 + 2.001100000000000e-01 + 1.837400000000000e-01 + 1.561600000000000e-01 + 1.108400000000000e-01 + 6.040500000000000e-02 + 2.620200000000000e-02 + 1.944000000000000e-02 + 2.935600000000000e-02 + 2.930700000000000e-02 +-2.343500000000000e-03 +-6.214000000000000e-02 +-1.187200000000000e-01 +-1.316500000000000e-01 +-7.986799999999999e-02 + 2.006500000000000e-02 + 1.196600000000000e-01 + 1.650600000000000e-01 + 1.277300000000000e-01 + 2.009700000000000e-02 +-1.118800000000000e-01 +-2.128800000000000e-01 +-2.439500000000000e-01 +-1.968600000000000e-01 +-9.320400000000000e-02 + 2.725600000000000e-02 + 1.218300000000000e-01 + 1.586100000000000e-01 + 1.261300000000000e-01 + 3.719000000000000e-02 +-7.532300000000000e-02 +-1.708100000000000e-01 +-2.176700000000000e-01 +-2.063000000000000e-01 +-1.514200000000000e-01 +-8.228600000000000e-02 +-2.693700000000000e-02 + 7.610000000000001e-05 + 8.332700000000000e-04 +-1.102400000000000e-02 +-1.796400000000000e-02 +-4.270200000000000e-03 + 4.041800000000000e-02 + 1.173500000000000e-01 + 2.144300000000000e-01 + 3.055800000000000e-01 + 3.586700000000000e-01 + 3.513800000000000e-01 + 2.865900000000000e-01 + 1.952500000000000e-01 + 1.214200000000000e-01 + 9.674500000000000e-02 + 1.207500000000000e-01 + 1.611800000000000e-01 + 1.746500000000000e-01 + 1.337400000000000e-01 + 4.190900000000000e-02 +-7.241499999999999e-02 +-1.761700000000000e-01 +-2.501100000000000e-01 +-2.930900000000000e-01 +-3.130400000000000e-01 +-3.154700000000000e-01 +-3.007100000000000e-01 +-2.706800000000000e-01 +-2.362400000000000e-01 +-2.157300000000000e-01 +-2.239000000000000e-01 +-2.604700000000000e-01 +-3.086700000000000e-01 +-3.456700000000000e-01 +-3.560600000000000e-01 +-3.367400000000000e-01 +-2.899500000000000e-01 +-2.126300000000000e-01 +-9.438100000000001e-02 + 7.122000000000001e-02 + 2.708700000000000e-01 + 4.664500000000000e-01 + 6.089800000000000e-01 + 6.642800000000000e-01 + 6.322300000000000e-01 + 5.449600000000000e-01 + 4.453800000000000e-01 + 3.625100000000000e-01 + 3.018100000000000e-01 + 2.556200000000000e-01 + 2.214600000000000e-01 + 2.099500000000000e-01 + 2.338300000000000e-01 + 2.874300000000000e-01 + 3.358900000000000e-01 + 3.270300000000000e-01 + 2.206900000000000e-01 + 1.562500000000000e-02 +-2.455300000000000e-01 +-4.968100000000000e-01 +-6.808500000000000e-01 +-7.714299999999999e-01 +-7.750500000000000e-01 +-7.161100000000000e-01 +-6.203800000000000e-01 +-5.080900000000000e-01 +-3.966700000000000e-01 +-3.041600000000000e-01 +-2.457100000000000e-01 +-2.244200000000000e-01 +-2.254900000000000e-01 +-2.210100000000000e-01 +-1.839800000000000e-01 +-1.017000000000000e-01 + 2.088900000000000e-02 + 1.691100000000000e-01 + 3.293800000000000e-01 + 4.931700000000000e-01 + 6.515200000000000e-01 + 7.869000000000000e-01 + 8.724400000000000e-01 + 8.822000000000000e-01 + 8.058700000000000e-01 + 6.565200000000000e-01 + 4.644700000000000e-01 + 2.613500000000000e-01 + 6.587200000000000e-02 +-1.188600000000000e-01 +-2.960100000000000e-01 +-4.625500000000000e-01 +-6.040700000000000e-01 +-7.002800000000000e-01 +-7.356700000000000e-01 +-7.063300000000000e-01 +-6.183600000000000e-01 +-4.812900000000000e-01 +-3.039400000000000e-01 +-9.705800000000001e-02 + 1.202800000000000e-01 + 3.180700000000000e-01 + 4.620500000000000e-01 + 5.272900000000000e-01 + 5.101200000000000e-01 + 4.299400000000000e-01 + 3.192300000000000e-01 + 2.082800000000000e-01 + 1.144400000000000e-01 + 4.143700000000000e-02 +-1.332200000000000e-02 +-5.078300000000000e-02 +-6.846500000000000e-02 +-6.565200000000000e-02 +-5.037800000000000e-02 +-4.137000000000000e-02 +-6.173500000000000e-02 +-1.272300000000000e-01 +-2.360400000000000e-01 +-3.663300000000000e-01 +-4.834700000000000e-01 +-5.534600000000000e-01 +-5.559600000000000e-01 +-4.909400000000000e-01 +-3.763000000000000e-01 +-2.385200000000000e-01 +-1.010100000000000e-01 + 2.399400000000000e-02 + 1.365900000000000e-01 + 2.434100000000000e-01 + 3.487400000000000e-01 + 4.481300000000000e-01 + 5.284900000000000e-01 + 5.750700000000000e-01 + 5.810500000000000e-01 + 5.534500000000000e-01 + 5.104400000000000e-01 + 4.707500000000000e-01 + 4.408000000000000e-01 + 4.080900000000000e-01 + 3.463500000000000e-01 + 2.311000000000000e-01 + 5.732700000000000e-02 +-1.514600000000000e-01 +-3.494000000000000e-01 +-4.875400000000000e-01 +-5.358300000000000e-01 +-4.955600000000000e-01 +-3.956600000000000e-01 +-2.762400000000000e-01 +-1.700000000000000e-01 +-9.284700000000000e-02 +-4.715900000000000e-02 +-3.240900000000000e-02 +-5.293300000000000e-02 +-1.161700000000000e-01 +-2.231900000000000e-01 +-3.598900000000000e-01 +-4.972500000000000e-01 +-6.015200000000001e-01 +-6.477900000000000e-01 +-6.274800000000000e-01 +-5.457600000000000e-01 +-4.129400000000000e-01 +-2.379700000000000e-01 +-2.951100000000000e-02 + 1.981800000000000e-01 + 4.222600000000000e-01 + 6.169400000000000e-01 + 7.654700000000000e-01 + 8.688900000000001e-01 + 9.431200000000000e-01 + 1.004300000000000e+00 + 1.052100000000000e+00 + 1.065000000000000e+00 + 1.010700000000000e+00 + 8.673900000000000e-01 + 6.393100000000000e-01 + 3.563700000000000e-01 + 5.865400000000000e-02 +-2.230300000000000e-01 +-4.768800000000000e-01 +-7.050800000000000e-01 +-9.103000000000000e-01 +-1.085300000000000e+00 +-1.212700000000000e+00 +-1.273700000000000e+00 +-1.256200000000000e+00 +-1.156600000000000e+00 +-9.765100000000000e-01 +-7.201200000000000e-01 +-3.985800000000000e-01 +-3.855300000000000e-02 + 3.135400000000000e-01 + 5.998100000000000e-01 + 7.712400000000000e-01 + 8.099800000000000e-01 + 7.396300000000000e-01 + 6.161500000000000e-01 + 5.030900000000000e-01 + 4.443700000000000e-01 + 4.483200000000000e-01 + 4.894100000000000e-01 + 5.243300000000000e-01 + 5.125500000000000e-01 + 4.319000000000000e-01 + 2.839000000000000e-01 + 8.940400000000000e-02 +-1.211900000000000e-01 +-3.181300000000000e-01 +-4.791000000000000e-01 +-5.910200000000000e-01 +-6.482000000000000e-01 +-6.498600000000000e-01 +-5.998200000000000e-01 +-5.083100000000000e-01 +-3.931700000000000e-01 +-2.764300000000000e-01 +-1.757200000000000e-01 +-9.503499999999999e-02 +-2.187600000000000e-02 + 6.491200000000000e-02 + 1.801400000000000e-01 + 3.199400000000000e-01 + 4.612900000000000e-01 + 5.744200000000000e-01 + 6.388900000000000e-01 + 6.511100000000000e-01 + 6.177800000000000e-01 + 5.422000000000000e-01 + 4.172800000000000e-01 + 2.341500000000000e-01 + 1.283300000000000e-03 +-2.426800000000000e-01 +-4.374800000000000e-01 +-5.309400000000000e-01 +-5.116600000000000e-01 +-4.203000000000000e-01 +-3.283000000000000e-01 +-2.952200000000000e-01 +-3.322800000000000e-01 +-3.967000000000000e-01 +-4.201500000000000e-01 +-3.518200000000000e-01 +-1.878400000000000e-01 + 2.967600000000000e-02 + 2.388600000000000e-01 + 3.888100000000000e-01 + 4.555500000000000e-01 + 4.388000000000000e-01 + 3.502000000000000e-01 + 2.066100000000000e-01 + 3.294600000000000e-02 +-1.333400000000000e-01 +-2.471600000000000e-01 +-2.727300000000000e-01 +-2.029800000000000e-01 +-6.682600000000000e-02 + 8.330200000000000e-02 + 1.970300000000000e-01 + 2.490500000000000e-01 + 2.458500000000000e-01 + 2.144400000000000e-01 + 1.826200000000000e-01 + 1.641300000000000e-01 + 1.551800000000000e-01 + 1.405600000000000e-01 + 1.023700000000000e-01 + 2.681400000000000e-02 +-9.086900000000001e-02 +-2.418100000000000e-01 +-4.003600000000000e-01 +-5.268699999999999e-01 +-5.796600000000000e-01 +-5.330600000000000e-01 +-3.917700000000000e-01 +-1.914800000000000e-01 + 1.666300000000000e-02 + 1.892200000000000e-01 + 3.071900000000000e-01 + 3.766500000000000e-01 + 4.151000000000000e-01 + 4.349400000000000e-01 + 4.363900000000000e-01 + 4.136100000000000e-01 + 3.669300000000000e-01 + 3.094400000000000e-01 + 2.612700000000000e-01 + 2.351600000000000e-01 + 2.245100000000000e-01 + 2.040100000000000e-01 + 1.437800000000000e-01 + 2.848300000000000e-02 +-1.312600000000000e-01 +-3.028600000000000e-01 +-4.487000000000000e-01 +-5.455300000000000e-01 +-5.944400000000000e-01 +-6.156900000000000e-01 +-6.321500000000000e-01 +-6.519700000000000e-01 +-6.612500000000000e-01 +-6.315600000000000e-01 +-5.377999999999999e-01 +-3.756800000000000e-01 +-1.678700000000000e-01 + 4.534900000000000e-02 + 2.256800000000000e-01 + 3.548700000000000e-01 + 4.403100000000000e-01 + 5.049200000000000e-01 + 5.682600000000000e-01 + 6.311200000000000e-01 + 6.737500000000000e-01 + 6.683600000000000e-01 + 5.977100000000000e-01 + 4.677900000000000e-01 + 3.073800000000000e-01 + 1.555300000000000e-01 + 4.509600000000000e-02 +-8.799200000000000e-03 +-1.119900000000000e-02 + 1.793900000000000e-02 + 5.223600000000000e-02 + 6.697300000000000e-02 + 4.541300000000000e-02 +-1.696300000000000e-02 +-1.111400000000000e-01 +-2.175400000000000e-01 +-3.130600000000000e-01 +-3.793700000000000e-01 +-4.078200000000000e-01 +-3.983700000000000e-01 +-3.542400000000000e-01 +-2.776200000000000e-01 +-1.706700000000000e-01 +-4.130600000000000e-02 + 9.189000000000000e-02 + 2.016600000000000e-01 + 2.618300000000000e-01 + 2.589200000000000e-01 + 1.973900000000000e-01 + 9.460100000000000e-02 +-3.038500000000000e-02 +-1.650600000000000e-01 +-3.023500000000000e-01 +-4.322600000000000e-01 +-5.354300000000000e-01 +-5.869500000000000e-01 +-5.703300000000000e-01 +-4.913500000000000e-01 +-3.795300000000000e-01 +-2.725900000000000e-01 +-1.925600000000000e-01 +-1.297500000000000e-01 +-4.720500000000000e-02 + 9.559100000000000e-02 + 3.142300000000000e-01 + 5.846400000000000e-01 + 8.514300000000000e-01 + 1.053900000000000e+00 + 1.153200000000000e+00 + 1.145900000000000e+00 + 1.057100000000000e+00 + 9.213300000000000e-01 + 7.640300000000000e-01 + 5.922900000000000e-01 + 3.983400000000000e-01 + 1.701100000000000e-01 +-9.754200000000000e-02 +-3.955700000000000e-01 +-6.987900000000000e-01 +-9.692100000000000e-01 +-1.164100000000000e+00 +-1.247800000000000e+00 +-1.204200000000000e+00 +-1.045200000000000e+00 +-8.088800000000000e-01 +-5.483500000000000e-01 +-3.142500000000000e-01 +-1.385400000000000e-01 +-2.689700000000000e-02 + 3.797500000000000e-02 + 8.470000000000000e-02 + 1.391500000000000e-01 + 2.136800000000000e-01 + 3.033100000000000e-01 + 3.895600000000000e-01 + 4.502300000000000e-01 + 4.712500000000000e-01 + 4.549600000000000e-01 + 4.202200000000000e-01 + 3.925000000000000e-01 + 3.883600000000000e-01 + 4.030400000000000e-01 + 4.102800000000000e-01 + 3.766100000000000e-01 + 2.830500000000000e-01 + 1.406600000000000e-01 +-1.119800000000000e-02 +-1.249400000000000e-01 +-1.716800000000000e-01 +-1.583300000000000e-01 +-1.237800000000000e-01 +-1.164900000000000e-01 +-1.673600000000000e-01 +-2.744600000000000e-01 +-4.070900000000000e-01 +-5.241300000000000e-01 +-5.932300000000000e-01 +-6.001800000000000e-01 +-5.462500000000000e-01 +-4.408100000000000e-01 +-2.971000000000000e-01 +-1.335500000000000e-01 + 2.452500000000000e-02 + 1.494000000000000e-01 + 2.223200000000000e-01 + 2.448900000000000e-01 + 2.406600000000000e-01 + 2.431400000000000e-01 + 2.766400000000000e-01 + 3.426500000000000e-01 + 4.213200000000000e-01 + 4.866200000000000e-01 + 5.235100000000000e-01 + 5.343100000000000e-01 + 5.299100000000000e-01 + 5.140700000000000e-01 + 4.745100000000000e-01 + 3.891000000000000e-01 + 2.434600000000000e-01 + 4.603700000000000e-02 +-1.715600000000000e-01 +-3.705000000000000e-01 +-5.256900000000000e-01 +-6.365300000000000e-01 +-7.195800000000000e-01 +-7.890600000000000e-01 +-8.401100000000000e-01 +-8.476700000000000e-01 +-7.823400000000000e-01 +-6.321000000000000e-01 +-4.147400000000000e-01 +-1.724100000000000e-01 + 4.819900000000000e-02 + 2.175900000000000e-01 + 3.344700000000000e-01 + 4.208900000000000e-01 + 5.057800000000000e-01 + 6.066300000000000e-01 + 7.184000000000000e-01 + 8.140600000000000e-01 + 8.555500000000000e-01 + 8.102900000000000e-01 + 6.665400000000000e-01 + 4.409700000000000e-01 + 1.747300000000000e-01 +-8.141700000000000e-02 +-2.864000000000000e-01 +-4.229800000000000e-01 +-4.992500000000000e-01 +-5.371600000000000e-01 +-5.558200000000000e-01 +-5.605200000000000e-01 +-5.441700000000000e-01 +-4.984900000000000e-01 +-4.250400000000000e-01 +-3.368300000000000e-01 +-2.487800000000000e-01 +-1.649500000000000e-01 +-7.356600000000001e-02 + 4.451300000000000e-02 + 1.988200000000000e-01 + 3.754800000000000e-01 + 5.368200000000000e-01 + 6.357600000000000e-01 + 6.364700000000000e-01 + 5.296900000000000e-01 + 3.355200000000000e-01 + 9.482500000000001e-02 +-1.441300000000000e-01 +-3.374400000000000e-01 +-4.532500000000000e-01 +-4.766800000000000e-01 +-4.125700000000000e-01 +-2.847000000000000e-01 +-1.289800000000000e-01 + 1.906200000000000e-02 + 1.374100000000000e-01 + 2.240000000000000e-01 + 2.921200000000000e-01 + 3.571300000000000e-01 + 4.231000000000000e-01 + 4.778000000000000e-01 + 4.991300000000000e-01 + 4.683200000000000e-01 + 3.811800000000000e-01 + 2.507700000000000e-01 + 1.008100000000000e-01 +-4.523500000000000e-02 +-1.728300000000000e-01 +-2.788600000000000e-01 +-3.682700000000000e-01 +-4.481000000000000e-01 +-5.225000000000000e-01 +-5.906600000000000e-01 +-6.477900000000000e-01 +-6.875400000000000e-01 +-7.038400000000000e-01 +-6.906500000000000e-01 +-6.398500000000000e-01 +-5.397400000000000e-01 +-3.777100000000000e-01 +-1.486500000000000e-01 + 1.335900000000000e-01 + 4.294500000000000e-01 + 6.792100000000000e-01 + 8.230200000000000e-01 + 8.276000000000000e-01 + 7.053700000000001e-01 + 5.134200000000000e-01 + 3.305500000000000e-01 + 2.235700000000000e-01 + 2.206900000000000e-01 + 3.050300000000000e-01 + 4.286500000000000e-01 + 5.360400000000000e-01 + 5.829800000000001e-01 + 5.440700000000001e-01 + 4.119100000000000e-01 + 1.954500000000000e-01 +-7.851600000000000e-02 +-3.644800000000000e-01 +-6.052800000000000e-01 +-7.496200000000000e-01 +-7.730900000000001e-01 +-6.902100000000000e-01 +-5.480000000000000e-01 +-4.033300000000000e-01 +-2.964800000000000e-01 +-2.359500000000000e-01 +-2.015200000000000e-01 +-1.607800000000000e-01 +-8.776299999999999e-02 + 2.632000000000000e-02 + 1.721800000000000e-01 + 3.271100000000000e-01 + 4.603200000000000e-01 + 5.381000000000000e-01 + 5.310800000000000e-01 + 4.247000000000000e-01 + 2.287200000000000e-01 +-2.097500000000000e-02 +-2.725600000000000e-01 +-4.769800000000000e-01 +-6.053600000000000e-01 +-6.551600000000000e-01 +-6.425000000000000e-01 +-5.869500000000000e-01 +-4.995100000000000e-01 +-3.807600000000000e-01 +-2.285300000000000e-01 +-4.772200000000000e-02 + 1.451300000000000e-01 + 3.256100000000000e-01 + 4.702600000000000e-01 + 5.651700000000000e-01 + 6.100600000000000e-01 + 6.169400000000000e-01 + 6.047300000000000e-01 + 5.917500000000000e-01 + 5.884300000000000e-01 + 5.928000000000000e-01 + 5.913200000000000e-01 + 5.656400000000000e-01 + 5.025200000000000e-01 + 4.010200000000000e-01 + 2.720400000000000e-01 + 1.300400000000000e-01 +-1.716300000000000e-02 +-1.727600000000000e-01 +-3.453400000000000e-01 +-5.370700000000000e-01 +-7.342400000000000e-01 +-9.075200000000000e-01 +-1.022300000000000e+00 +-1.052200000000000e+00 +-9.883400000000000e-01 +-8.391900000000000e-01 +-6.261500000000000e-01 +-3.787100000000000e-01 +-1.320800000000000e-01 + 7.564600000000000e-02 + 2.114000000000000e-01 + 2.595000000000000e-01 + 2.316300000000000e-01 + 1.652700000000000e-01 + 1.077100000000000e-01 + 9.293999999999999e-02 + 1.257200000000000e-01 + 1.832700000000000e-01 + 2.335500000000000e-01 + 2.574700000000000e-01 + 2.597300000000000e-01 + 2.618900000000000e-01 + 2.840200000000000e-01 + 3.290800000000000e-01 + 3.808000000000000e-01 + 4.148700000000000e-01 + 4.140200000000000e-01 + 3.759600000000000e-01 + 3.106100000000000e-01 + 2.313400000000000e-01 + 1.485800000000000e-01 + 6.980100000000000e-02 + 3.292800000000000e-03 +-4.014300000000000e-02 +-5.087300000000000e-02 +-2.706000000000000e-02 + 2.128300000000000e-02 + 7.436900000000000e-02 + 1.094400000000000e-01 + 1.076000000000000e-01 + 5.728000000000000e-02 +-4.510000000000000e-02 +-1.942300000000000e-01 +-3.732300000000000e-01 +-5.519100000000000e-01 +-6.908700000000000e-01 +-7.535600000000000e-01 +-7.218700000000000e-01 +-6.063100000000000e-01 +-4.431100000000000e-01 +-2.779600000000000e-01 +-1.449100000000000e-01 +-5.213400000000000e-02 + 1.749900000000000e-02 + 9.221200000000000e-02 + 1.921300000000000e-01 + 3.158900000000000e-01 + 4.394200000000000e-01 + 5.265900000000000e-01 + 5.454300000000000e-01 + 4.823200000000000e-01 + 3.482400000000000e-01 + 1.748400000000000e-01 + 2.480500000000000e-03 +-1.346900000000000e-01 +-2.201800000000000e-01 +-2.580800000000000e-01 +-2.664500000000000e-01 +-2.649800000000000e-01 +-2.636700000000000e-01 +-2.583600000000000e-01 +-2.343400000000000e-01 +-1.750900000000000e-01 +-7.063400000000000e-02 + 7.774700000000000e-02 + 2.567400000000000e-01 + 4.424500000000000e-01 + 6.035000000000000e-01 + 7.068000000000000e-01 + 7.270400000000000e-01 + 6.574800000000000e-01 + 5.160200000000000e-01 + 3.408300000000000e-01 + 1.749100000000000e-01 + 4.717600000000000e-02 +-3.870500000000000e-02 +-1.002600000000000e-01 +-1.595800000000000e-01 +-2.257500000000000e-01 +-2.885700000000000e-01 +-3.278900000000000e-01 +-3.308000000000000e-01 +-3.035300000000000e-01 +-2.688100000000000e-01 +-2.510000000000000e-01 +-2.604700000000000e-01 +-2.888200000000000e-01 +-3.179200000000000e-01 +-3.349900000000000e-01 +-3.419800000000000e-01 +-3.523700000000000e-01 +-3.786600000000000e-01 +-4.203800000000000e-01 +-4.612000000000000e-01 +-4.763200000000000e-01 +-4.441300000000000e-01 +-3.545500000000000e-01 +-2.107800000000000e-01 +-2.643600000000000e-02 + 1.778900000000000e-01 + 3.770600000000000e-01 + 5.445100000000000e-01 + 6.580300000000000e-01 + 7.073800000000000e-01 + 6.987400000000000e-01 + 6.519800000000000e-01 + 5.906700000000000e-01 + 5.304900000000000e-01 + 4.734300000000000e-01 + 4.111000000000000e-01 + 3.340400000000000e-01 + 2.400000000000000e-01 + 1.359200000000000e-01 + 3.379400000000000e-02 +-5.486500000000000e-02 +-1.216700000000000e-01 +-1.607500000000000e-01 +-1.684900000000000e-01 +-1.464700000000000e-01 +-1.060600000000000e-01 +-6.927200000000000e-02 +-6.152400000000000e-02 +-9.801100000000000e-02 +-1.722100000000000e-01 +-2.556000000000000e-01 +-3.112900000000000e-01 +-3.141300000000000e-01 +-2.647500000000000e-01 +-1.882900000000000e-01 +-1.188400000000000e-01 +-8.037500000000000e-02 +-7.633800000000000e-02 +-9.328300000000000e-02 +-1.133500000000000e-01 +-1.253100000000000e-01 +-1.268700000000000e-01 +-1.195900000000000e-01 +-1.037600000000000e-01 +-7.969999999999999e-02 +-5.427700000000000e-02 +-4.513300000000000e-02 +-7.500900000000001e-02 +-1.566400000000000e-01 +-2.778500000000000e-01 +-3.991900000000000e-01 +-4.693200000000000e-01 +-4.507400000000000e-01 +-3.402400000000000e-01 +-1.700600000000000e-01 + 1.145400000000000e-02 + 1.677200000000000e-01 + 2.923000000000000e-01 + 4.064800000000000e-01 + 5.385100000000000e-01 + 6.991500000000000e-01 + 8.695700000000000e-01 + 1.008600000000000e+00 + 1.074100000000000e+00 + 1.043500000000000e+00 + 9.231100000000000e-01 + 7.405500000000000e-01 + 5.291100000000000e-01 + 3.128300000000000e-01 + 1.009300000000000e-01 +-1.077400000000000e-01 +-3.150500000000000e-01 +-5.153000000000000e-01 +-6.925400000000000e-01 +-8.247600000000000e-01 +-8.927000000000000e-01 +-8.895100000000000e-01 +-8.268300000000000e-01 +-7.335800000000000e-01 +-6.461500000000000e-01 +-5.930200000000000e-01 +-5.808800000000000e-01 +-5.900200000000000e-01 +-5.830400000000000e-01 +-5.232700000000000e-01 +-3.933500000000000e-01 +-2.034500000000000e-01 + 1.531800000000000e-02 + 2.277900000000000e-01 + 4.111900000000000e-01 + 5.614400000000001e-01 + 6.869600000000000e-01 + 7.956800000000001e-01 + 8.846500000000000e-01 + 9.389000000000000e-01 + 9.392000000000000e-01 + 8.728800000000000e-01 + 7.411900000000000e-01 + 5.598900000000000e-01 + 3.540100000000000e-01 + 1.501900000000000e-01 +-3.046100000000000e-02 +-1.770800000000000e-01 +-2.904200000000000e-01 +-3.797100000000000e-01 +-4.556400000000000e-01 +-5.218300000000000e-01 +-5.701200000000000e-01 +-5.835700000000000e-01 +-5.471900000000000e-01 +-4.603200000000000e-01 +-3.422900000000000e-01 +-2.263300000000000e-01 +-1.443100000000000e-01 +-1.114300000000000e-01 +-1.200000000000000e-01 +-1.454500000000000e-01 +-1.595500000000000e-01 +-1.421800000000000e-01 +-8.594400000000001e-02 + 5.344900000000000e-03 + 1.195400000000000e-01 + 2.371100000000000e-01 + 3.321600000000000e-01 + 3.780400000000000e-01 + 3.590200000000000e-01 + 2.822900000000000e-01 + 1.803900000000000e-01 + 9.838100000000000e-02 + 7.078400000000000e-02 + 1.022100000000000e-01 + 1.655600000000000e-01 + 2.201400000000000e-01 + 2.379600000000000e-01 + 2.199800000000000e-01 + 1.912300000000000e-01 + 1.791400000000000e-01 + 1.914200000000000e-01 + 2.097300000000000e-01 + 2.026200000000000e-01 + 1.468900000000000e-01 + 4.145000000000000e-02 +-9.524500000000000e-02 +-2.391000000000000e-01 +-3.729000000000000e-01 +-4.878400000000000e-01 +-5.756800000000000e-01 +-6.219900000000000e-01 +-6.096000000000000e-01 +-5.311000000000000e-01 +-3.997900000000000e-01 +-2.477900000000000e-01 +-1.099700000000000e-01 +-4.450000000000000e-03 + 7.558200000000000e-02 + 1.519600000000000e-01 + 2.404600000000000e-01 + 3.343000000000000e-01 + 4.048500000000000e-01 + 4.191200000000000e-01 + 3.615300000000000e-01 + 2.447900000000000e-01 + 1.033100000000000e-01 +-2.496500000000000e-02 +-1.153600000000000e-01 +-1.622700000000000e-01 +-1.734100000000000e-01 +-1.597700000000000e-01 +-1.294400000000000e-01 +-8.739300000000000e-02 +-3.828100000000000e-02 + 1.270100000000000e-02 + 6.177200000000000e-02 + 1.085000000000000e-01 + 1.544700000000000e-01 + 1.992500000000000e-01 + 2.376700000000000e-01 + 2.624300000000000e-01 + 2.710600000000000e-01 + 2.711600000000000e-01 + 2.776000000000000e-01 + 3.010200000000000e-01 + 3.345300000000000e-01 + 3.493200000000000e-01 + 3.051500000000000e-01 + 1.719100000000000e-01 +-5.002300000000000e-02 +-3.237200000000000e-01 +-5.885800000000000e-01 +-7.854700000000000e-01 +-8.798100000000000e-01 +-8.701700000000000e-01 +-7.796300000000000e-01 +-6.373799999999999e-01 +-4.632700000000000e-01 +-2.641200000000000e-01 +-4.183600000000000e-02 + 1.947400000000000e-01 + 4.237700000000000e-01 + 6.150200000000000e-01 + 7.417500000000000e-01 + 7.920400000000000e-01 + 7.719200000000001e-01 + 6.991400000000000e-01 + 5.921200000000000e-01 + 4.614200000000000e-01 + 3.086200000000000e-01 + 1.318500000000000e-01 +-6.670400000000000e-02 +-2.764400000000000e-01 +-4.792000000000000e-01 +-6.536700000000000e-01 +-7.803400000000000e-01 +-8.449100000000000e-01 +-8.404500000000000e-01 +-7.691300000000000e-01 +-6.432200000000000e-01 +-4.835700000000000e-01 +-3.143400000000000e-01 +-1.550800000000000e-01 +-1.441200000000000e-02 + 1.106400000000000e-01 + 2.287100000000000e-01 + 3.456900000000000e-01 + 4.596000000000000e-01 + 5.625500000000000e-01 + 6.474200000000000e-01 + 7.132900000000000e-01 + 7.645500000000000e-01 + 8.040300000000000e-01 + 8.260000000000000e-01 + 8.156200000000000e-01 + 7.562400000000000e-01 + 6.399000000000000e-01 + 4.731000000000000e-01 + 2.742100000000000e-01 + 6.498800000000000e-02 +-1.368700000000000e-01 +-3.193900000000000e-01 +-4.735500000000000e-01 +-5.917600000000000e-01 +-6.711900000000000e-01 +-7.194000000000000e-01 +-7.547199999999999e-01 +-7.967500000000000e-01 +-8.504699999999999e-01 +-8.959300000000000e-01 +-8.941200000000000e-01 +-8.090900000000000e-01 +-6.330500000000000e-01 +-3.967600000000000e-01 +-1.559200000000000e-01 + 3.878600000000000e-02 + 1.681400000000000e-01 + 2.495000000000000e-01 + 3.177400000000000e-01 + 3.966600000000000e-01 + 4.812400000000000e-01 + 5.425500000000000e-01 + 5.495800000000000e-01 + 4.912100000000000e-01 + 3.832800000000000e-01 + 2.586500000000000e-01 + 1.503100000000000e-01 + 8.030100000000000e-02 + 5.900200000000000e-02 + 8.922500000000000e-02 + 1.667600000000000e-01 + 2.754200000000000e-01 + 3.834100000000000e-01 + 4.500600000000000e-01 + 4.441100000000000e-01 + 3.631700000000000e-01 + 2.397600000000000e-01 + 1.262700000000000e-01 + 6.629500000000001e-02 + 7.011900000000000e-02 + 1.103600000000000e-01 + 1.398500000000000e-01 + 1.191900000000000e-01 + 3.591600000000000e-02 +-9.482500000000001e-02 +-2.445500000000000e-01 +-3.880600000000000e-01 +-5.113200000000000e-01 +-6.092400000000000e-01 +-6.797900000000000e-01 +-7.221900000000000e-01 +-7.395900000000000e-01 +-7.409500000000000e-01 +-7.363000000000000e-01 +-7.262900000000000e-01 +-6.942400000000000e-01 +-6.094600000000000e-01 +-4.432100000000000e-01 +-1.885300000000000e-01 + 1.294400000000000e-01 + 4.608700000000000e-01 + 7.529000000000000e-01 + 9.722000000000000e-01 + 1.114200000000000e+00 + 1.193600000000000e+00 + 1.223900000000000e+00 + 1.200100000000000e+00 + 1.097700000000000e+00 + 8.898400000000000e-01 + 5.719900000000000e-01 + 1.778300000000000e-01 +-2.251500000000000e-01 +-5.604900000000000e-01 +-7.754100000000000e-01 +-8.627700000000000e-01 +-8.596200000000001e-01 +-8.224200000000000e-01 +-7.935300000000000e-01 +-7.785500000000000e-01 +-7.480700000000000e-01 +-6.619200000000000e-01 +-4.998500000000000e-01 +-2.788800000000000e-01 +-4.629100000000000e-02 + 1.463200000000000e-01 + 2.705900000000000e-01 + 3.333700000000000e-01 + 3.672200000000000e-01 + 4.081400000000000e-01 + 4.760500000000000e-01 + 5.689300000000000e-01 + 6.699700000000000e-01 + 7.588600000000000e-01 + 8.177700000000000e-01 + 8.307700000000000e-01 + 7.818300000000000e-01 + 6.576300000000000e-01 + 4.552000000000000e-01 + 1.880600000000000e-01 +-1.154400000000000e-01 +-4.213800000000000e-01 +-7.003700000000000e-01 +-9.305400000000000e-01 +-1.092700000000000e+00 +-1.165200000000000e+00 +-1.126700000000000e+00 +-9.695900000000000e-01 +-7.137000000000000e-01 +-4.077800000000000e-01 +-1.132700000000000e-01 + 1.215100000000000e-01 + 2.798200000000000e-01 + 3.745900000000000e-01 + 4.284400000000000e-01 + 4.516600000000000e-01 + 4.356100000000000e-01 + 3.660500000000000e-01 + 2.444600000000000e-01 + 9.828099999999999e-02 +-3.002200000000000e-02 +-1.076900000000000e-01 +-1.309800000000000e-01 +-1.236000000000000e-01 +-1.152600000000000e-01 +-1.170600000000000e-01 +-1.128300000000000e-01 +-7.274700000000001e-02 + 2.210500000000000e-02 + 1.635400000000000e-01 + 3.203600000000000e-01 + 4.582200000000000e-01 + 5.588700000000000e-01 + 6.242000000000000e-01 + 6.638800000000000e-01 + 6.786300000000000e-01 + 6.541000000000000e-01 + 5.708299999999999e-01 + 4.221900000000000e-01 + 2.258700000000000e-01 + 1.955600000000000e-02 +-1.569400000000000e-01 +-2.811600000000000e-01 +-3.570300000000000e-01 +-4.091200000000000e-01 +-4.670100000000000e-01 +-5.491700000000000e-01 +-6.543099999999999e-01 +-7.626500000000001e-01 +-8.454400000000000e-01 +-8.781300000000000e-01 +-8.519900000000000e-01 +-7.789199999999999e-01 +-6.860300000000000e-01 +-6.013100000000000e-01 +-5.370400000000000e-01 +-4.810200000000000e-01 +-4.021700000000000e-01 +-2.684300000000000e-01 +-6.605000000000000e-02 + 1.924700000000000e-01 + 4.766100000000000e-01 + 7.553800000000001e-01 + 1.010300000000000e+00 + 1.234100000000000e+00 + 1.416500000000000e+00 + 1.532100000000000e+00 + 1.541600000000000e+00 + 1.410900000000000e+00 + 1.134800000000000e+00 + 7.500100000000000e-01 + 3.250000000000000e-01 +-6.585600000000000e-02 +-3.694000000000000e-01 +-5.659300000000000e-01 +-6.630000000000000e-01 +-6.798900000000000e-01 +-6.356300000000000e-01 +-5.475400000000000e-01 +-4.365300000000000e-01 +-3.300000000000000e-01 +-2.568400000000000e-01 +-2.371500000000000e-01 +-2.747600000000000e-01 +-3.581200000000000e-01 +-4.679600000000000e-01 +-5.846600000000000e-01 +-6.899300000000000e-01 +-7.638900000000000e-01 +-7.838500000000000e-01 +-7.299300000000000e-01 +-5.956000000000000e-01 +-3.952300000000000e-01 +-1.611400000000000e-01 + 6.997600000000000e-02 + 2.727600000000000e-01 + 4.407000000000000e-01 + 5.806900000000000e-01 + 6.999200000000000e-01 + 7.955100000000001e-01 + 8.546800000000000e-01 + 8.645800000000000e-01 + 8.232900000000000e-01 + 7.431800000000000e-01 + 6.439900000000000e-01 + 5.407600000000000e-01 + 4.351800000000000e-01 + 3.160200000000000e-01 + 1.681500000000000e-01 +-1.551700000000000e-02 +-2.254500000000000e-01 +-4.345000000000000e-01 +-6.047900000000000e-01 +-7.003200000000001e-01 +-7.010100000000000e-01 +-6.125200000000000e-01 +-4.665700000000000e-01 +-3.095400000000000e-01 +-1.830000000000000e-01 +-1.059900000000000e-01 +-6.926700000000000e-02 +-4.595900000000000e-02 +-1.237800000000000e-02 + 3.444200000000000e-02 + 7.464200000000000e-02 + 8.062700000000000e-02 + 3.892200000000000e-02 +-3.670700000000000e-02 +-1.103200000000000e-01 +-1.435600000000000e-01 +-1.165600000000000e-01 +-3.632400000000000e-02 + 7.121500000000000e-02 + 1.776800000000000e-01 + 2.648600000000000e-01 + 3.263300000000000e-01 + 3.605600000000000e-01 + 3.645100000000000e-01 + 3.343900000000000e-01 + 2.722700000000000e-01 + 1.912200000000000e-01 + 1.123000000000000e-01 + 5.403100000000000e-02 + 2.147900000000000e-02 + 3.386600000000000e-03 +-2.059400000000000e-02 +-6.771800000000000e-02 +-1.431700000000000e-01 +-2.388300000000000e-01 +-3.378900000000000e-01 +-4.202500000000000e-01 +-4.655800000000000e-01 +-4.555100000000000e-01 +-3.787700000000000e-01 +-2.393400000000000e-01 +-6.241600000000000e-02 + 1.091100000000000e-01 + 2.300600000000000e-01 + 2.735200000000000e-01 + 2.440100000000000e-01 + 1.735600000000000e-01 + 1.019200000000000e-01 + 5.339800000000000e-02 + 2.543400000000000e-02 +-3.530500000000000e-03 +-5.327900000000000e-02 +-1.232200000000000e-01 +-1.892500000000000e-01 +-2.181100000000000e-01 +-1.887500000000000e-01 +-1.061100000000000e-01 + 1.502500000000000e-03 + 9.861700000000000e-02 + 1.609900000000000e-01 + 1.849800000000000e-01 + 1.840000000000000e-01 + 1.770800000000000e-01 + 1.783700000000000e-01 + 1.934500000000000e-01 + 2.224000000000000e-01 + 2.645100000000000e-01 + 3.198000000000000e-01 + 3.861700000000000e-01 + 4.549400000000000e-01 + 5.091500000000000e-01 + 5.268800000000000e-01 + 4.887400000000000e-01 + 3.857500000000000e-01 + 2.235900000000000e-01 + 2.088000000000000e-02 +-1.977900000000000e-01 +-4.105800000000000e-01 +-6.042400000000000e-01 +-7.735900000000000e-01 +-9.150000000000000e-01 +-1.018300000000000e+00 +-1.064100000000000e+00 +-1.029600000000000e+00 +-9.035700000000000e-01 +-6.994600000000000e-01 +-4.580400000000000e-01 +-2.343800000000000e-01 +-7.372300000000000e-02 + 1.021500000000000e-02 + 4.111000000000000e-02 + 6.538500000000000e-02 + 1.254200000000000e-01 + 2.369900000000000e-01 + 3.844800000000000e-01 + 5.357100000000000e-01 + 6.646500000000000e-01 + 7.659500000000000e-01 + 8.516600000000000e-01 + 9.339800000000000e-01 + 1.008300000000000e+00 + 1.049800000000000e+00 + 1.026800000000000e+00 + 9.211200000000000e-01 + 7.407100000000000e-01 + 5.151000000000000e-01 + 2.778600000000000e-01 + 4.856300000000000e-02 +-1.726200000000000e-01 +-3.948200000000000e-01 +-6.190400000000000e-01 +-8.271300000000000e-01 +-9.858000000000000e-01 +-1.063200000000000e+00 +-1.047400000000000e+00 +-9.540400000000000e-01 +-8.191300000000000e-01 +-6.812800000000000e-01 +-5.642800000000000e-01 +-4.694200000000000e-01 +-3.800900000000000e-01 +-2.746700000000000e-01 +-1.399000000000000e-01 + 2.152100000000000e-02 + 1.917200000000000e-01 + 3.452000000000000e-01 + 4.593800000000000e-01 + 5.233600000000000e-01 + 5.411500000000000e-01 + 5.278400000000000e-01 + 5.001300000000000e-01 + 4.662100000000000e-01 + 4.207400000000000e-01 + 3.491100000000000e-01 + 2.396600000000000e-01 + 9.733899999999999e-02 +-4.982700000000000e-02 +-1.574200000000000e-01 +-1.830500000000000e-01 +-1.082100000000000e-01 + 4.785400000000000e-02 + 2.305800000000000e-01 + 3.693400000000000e-01 + 4.055300000000000e-01 + 3.170300000000000e-01 + 1.275400000000000e-01 +-1.036200000000000e-01 +-3.067900000000000e-01 +-4.305500000000000e-01 +-4.602700000000000e-01 +-4.184000000000000e-01 +-3.472500000000000e-01 +-2.847700000000000e-01 +-2.466100000000000e-01 +-2.238900000000000e-01 +-1.959000000000000e-01 +-1.479100000000000e-01 +-8.158600000000001e-02 +-1.181800000000000e-02 + 4.629000000000000e-02 + 8.927499999999999e-02 + 1.265500000000000e-01 + 1.702900000000000e-01 + 2.226300000000000e-01 + 2.708800000000000e-01 + 2.953400000000000e-01 + 2.835400000000000e-01 + 2.395200000000000e-01 + 1.802700000000000e-01 + 1.221600000000000e-01 + 6.848799999999999e-02 + 8.763399999999999e-03 +-6.894699999999999e-02 +-1.624300000000000e-01 +-2.493700000000000e-01 +-2.969800000000000e-01 +-2.809200000000000e-01 +-2.002400000000000e-01 +-7.801900000000001e-02 + 5.178200000000000e-02 + 1.608400000000000e-01 + 2.352300000000000e-01 + 2.729400000000000e-01 + 2.760900000000000e-01 + 2.466800000000000e-01 + 1.893400000000000e-01 + 1.163000000000000e-01 + 4.672400000000000e-02 +-2.481100000000000e-03 +-2.831700000000000e-02 +-4.597300000000000e-02 +-8.041500000000000e-02 +-1.501600000000000e-01 +-2.547700000000000e-01 +-3.749800000000000e-01 +-4.842900000000000e-01 +-5.621200000000000e-01 +-5.982600000000000e-01 +-5.873300000000000e-01 +-5.213300000000000e-01 +-3.904700000000000e-01 +-1.940900000000000e-01 + 4.688200000000000e-02 + 2.888600000000000e-01 + 4.807100000000000e-01 + 5.873400000000000e-01 + 6.057500000000000e-01 + 5.623500000000000e-01 + 4.939300000000000e-01 + 4.266000000000000e-01 + 3.673600000000000e-01 + 3.119500000000000e-01 + 2.593400000000000e-01 + 2.185500000000000e-01 + 2.016900000000000e-01 + 2.098800000000000e-01 + 2.257000000000000e-01 + 2.205700000000000e-01 + 1.725400000000000e-01 + 8.099400000000000e-02 +-3.323500000000000e-02 +-1.418800000000000e-01 +-2.259500000000000e-01 +-2.823000000000000e-01 +-3.169200000000000e-01 +-3.332500000000000e-01 +-3.277100000000000e-01 +-2.969500000000000e-01 +-2.498500000000000e-01 +-2.115300000000000e-01 +-2.126600000000000e-01 +-2.700500000000000e-01 +-3.728200000000000e-01 +-4.855200000000000e-01 +-5.668100000000000e-01 +-5.904199999999999e-01 +-5.537800000000000e-01 +-4.695900000000000e-01 +-3.492500000000000e-01 +-1.925400000000000e-01 + 7.729300000000000e-03 + 2.504600000000000e-01 + 5.135600000000000e-01 + 7.553500000000000e-01 + 9.303200000000000e-01 + 1.008900000000000e+00 + 9.878600000000000e-01 + 8.856300000000000e-01 + 7.272200000000000e-01 + 5.308200000000000e-01 + 3.046100000000000e-01 + 5.427200000000000e-02 +-2.063700000000000e-01 +-4.505000000000000e-01 +-6.432300000000000e-01 +-7.530800000000000e-01 +-7.629600000000000e-01 +-6.749400000000000e-01 +-5.075400000000000e-01 +-2.887200000000000e-01 +-4.900500000000000e-02 + 1.823200000000000e-01 + 3.782200000000000e-01 + 5.141100000000000e-01 + 5.698400000000000e-01 + 5.342000000000000e-01 + 4.104200000000000e-01 + 2.193700000000000e-01 +-2.751000000000000e-03 +-2.129700000000000e-01 +-3.738100000000000e-01 +-4.637200000000000e-01 +-4.807500000000000e-01 +-4.380000000000000e-01 +-3.540400000000000e-01 +-2.444500000000000e-01 +-1.190500000000000e-01 + 1.505600000000000e-02 + 1.486200000000000e-01 + 2.684000000000000e-01 + 3.601100000000000e-01 + 4.138100000000000e-01 + 4.272800000000000e-01 + 4.050700000000000e-01 + 3.544200000000000e-01 + 2.815500000000000e-01 + 1.908000000000000e-01 + 8.593400000000000e-02 +-2.874400000000000e-02 +-1.491900000000000e-01 +-2.728500000000000e-01 +-3.977200000000000e-01 +-5.183200000000000e-01 +-6.214000000000000e-01 +-6.863400000000000e-01 +-6.924600000000000e-01 +-6.300800000000000e-01 +-5.080100000000000e-01 +-3.514300000000000e-01 +-1.908700000000000e-01 +-4.920000000000000e-02 + 6.452200000000000e-02 + 1.513700000000000e-01 + 2.138100000000000e-01 + 2.504800000000000e-01 + 2.597100000000000e-01 + 2.484300000000000e-01 + 2.377300000000000e-01 + 2.574600000000000e-01 + 3.309600000000000e-01 + 4.592200000000000e-01 + 6.157200000000000e-01 + 7.566200000000000e-01 + 8.407400000000000e-01 + 8.478500000000000e-01 + 7.851000000000000e-01 + 6.796300000000000e-01 + 5.631500000000000e-01 + 4.575400000000000e-01 + 3.676900000000000e-01 + 2.829000000000000e-01 + 1.842000000000000e-01 + 5.394000000000000e-02 +-1.156000000000000e-01 +-3.172800000000000e-01 +-5.302800000000000e-01 +-7.276100000000000e-01 +-8.871400000000000e-01 +-1.000100000000000e+00 +-1.071900000000000e+00 +-1.114000000000000e+00 +-1.133800000000000e+00 +-1.128300000000000e+00 +-1.088100000000000e+00 +-1.006600000000000e+00 +-8.870700000000000e-01 +-7.417200000000000e-01 +-5.820600000000000e-01 +-4.107000000000000e-01 +-2.217000000000000e-01 +-1.080200000000000e-02 + 2.131700000000000e-01 + 4.265600000000000e-01 + 6.029000000000000e-01 + 7.309900000000000e-01 + 8.249800000000000e-01 + 9.170000000000000e-01 + 1.035600000000000e+00 + 1.184500000000000e+00 + 1.337200000000000e+00 + 1.450800000000000e+00 + 1.489300000000000e+00 + 1.440700000000000e+00 + 1.316300000000000e+00 + 1.137400000000000e+00 + 9.205700000000000e-01 + 6.730500000000000e-01 + 4.000400000000000e-01 + 1.131900000000000e-01 +-1.694000000000000e-01 +-4.335900000000000e-01 +-6.807900000000000e-01 +-9.285700000000000e-01 +-1.195700000000000e+00 +-1.480000000000000e+00 +-1.745700000000000e+00 +-1.930600000000000e+00 +-1.972400000000000e+00 +-1.839700000000000e+00 +-1.547300000000000e+00 +-1.150700000000000e+00 +-7.213700000000000e-01 +-3.207200000000000e-01 + 1.581100000000000e-02 + 2.783000000000000e-01 + 4.720300000000000e-01 + 6.068700000000000e-01 + 6.925700000000000e-01 + 7.397400000000000e-01 + 7.611599999999999e-01 + 7.697000000000001e-01 + 7.731600000000000e-01 + 7.704900000000000e-01 + 7.534800000000000e-01 + 7.139300000000000e-01 + 6.516999999999999e-01 + 5.777200000000000e-01 + 5.091200000000000e-01 + 4.592400000000000e-01 + 4.289300000000000e-01 + 4.053600000000000e-01 + 3.695600000000000e-01 + 3.078100000000000e-01 + 2.195900000000000e-01 + 1.165800000000000e-01 + 1.358500000000000e-02 +-8.223700000000000e-02 +-1.761200000000000e-01 +-2.810100000000000e-01 +-4.067500000000000e-01 +-5.508000000000000e-01 +-6.968700000000000e-01 +-8.219600000000000e-01 +-9.060000000000000e-01 +-9.373400000000000e-01 +-9.111200000000000e-01 +-8.243800000000000e-01 +-6.746300000000000e-01 +-4.651000000000000e-01 +-2.135200000000000e-01 + 4.426500000000000e-02 + 2.618300000000000e-01 + 3.996600000000000e-01 + 4.428200000000000e-01 + 4.077700000000000e-01 + 3.335800000000000e-01 + 2.626900000000000e-01 + 2.228500000000000e-01 + 2.197200000000000e-01 + 2.417900000000000e-01 + 2.714300000000000e-01 + 2.941100000000000e-01 + 3.018100000000000e-01 + 2.927000000000000e-01 + 2.705500000000000e-01 + 2.451200000000000e-01 + 2.306500000000000e-01 + 2.396700000000000e-01 + 2.737700000000000e-01 + 3.178000000000000e-01 + 3.438000000000000e-01 + 3.249200000000000e-01 + 2.510500000000000e-01 + 1.352500000000000e-01 + 5.627400000000000e-03 +-1.119300000000000e-01 +-2.077500000000000e-01 +-2.887800000000000e-01 +-3.658100000000000e-01 +-4.383800000000000e-01 +-4.902600000000000e-01 +-4.998300000000000e-01 +-4.579000000000000e-01 +-3.787500000000000e-01 +-2.952900000000000e-01 +-2.408800000000000e-01 +-2.305300000000000e-01 +-2.539800000000000e-01 +-2.844600000000000e-01 +-2.953300000000000e-01 +-2.728200000000000e-01 +-2.174700000000000e-01 +-1.365800000000000e-01 +-3.612900000000000e-02 + 8.065000000000000e-02 + 2.077500000000000e-01 + 3.300100000000000e-01 + 4.226400000000000e-01 + 4.588300000000000e-01 + 4.217200000000000e-01 + 3.141600000000000e-01 + 1.614000000000000e-01 + 5.298200000000000e-03 +-1.081000000000000e-01 +-1.439400000000000e-01 +-9.219100000000000e-02 + 2.633200000000000e-02 + 1.665600000000000e-01 + 2.786400000000000e-01 + 3.329000000000000e-01 + 3.368400000000000e-01 + 3.316800000000000e-01 + 3.671200000000000e-01 + 4.670500000000000e-01 + 6.077300000000000e-01 + 7.243200000000000e-01 + 7.443400000000000e-01 + 6.283100000000000e-01 + 3.919000000000000e-01 + 9.562200000000000e-02 +-1.904800000000000e-01 +-4.231800000000000e-01 +-6.000200000000000e-01 +-7.444300000000000e-01 +-8.761600000000000e-01 +-9.903000000000000e-01 +-1.059600000000000e+00 +-1.056300000000000e+00 +-9.747100000000000e-01 +-8.367800000000000e-01 +-6.780600000000000e-01 +-5.256300000000000e-01 +-3.861000000000000e-01 +-2.515900000000000e-01 +-1.166100000000000e-01 + 9.928400000000000e-03 + 1.084400000000000e-01 + 1.652300000000000e-01 + 1.880000000000000e-01 + 2.070200000000000e-01 + 2.597900000000000e-01 + 3.701000000000000e-01 + 5.358900000000000e-01 + 7.327800000000000e-01 + 9.280800000000000e-01 + 1.093300000000000e+00 + 1.207500000000000e+00 + 1.252600000000000e+00 + 1.211100000000000e+00 + 1.071600000000000e+00 + 8.403400000000000e-01 + 5.479600000000000e-01 + 2.423900000000000e-01 +-3.067800000000000e-02 +-2.477600000000000e-01 +-4.140500000000000e-01 +-5.513200000000000e-01 +-6.763800000000000e-01 +-7.863300000000000e-01 +-8.619300000000000e-01 +-8.862300000000000e-01 +-8.635699999999999e-01 +-8.233100000000000e-01 +-8.039400000000000e-01 +-8.280300000000000e-01 +-8.853900000000000e-01 +-9.363600000000000e-01 +-9.327500000000000e-01 +-8.424600000000000e-01 +-6.625000000000000e-01 +-4.142800000000000e-01 +-1.273200000000000e-01 + 1.759300000000000e-01 + 4.843400000000000e-01 + 7.909900000000000e-01 + 1.082000000000000e+00 + 1.330400000000000e+00 + 1.500300000000000e+00 + 1.559000000000000e+00 + 1.490500000000000e+00 + 1.304700000000000e+00 + 1.035500000000000e+00 + 7.309000000000000e-01 + 4.359900000000000e-01 + 1.772100000000000e-01 +-4.442800000000000e-02 +-2.471400000000000e-01 +-4.508300000000000e-01 +-6.580200000000000e-01 +-8.453500000000000e-01 +-9.730700000000000e-01 +-1.008400000000000e+00 +-9.484600000000000e-01 +-8.273300000000000e-01 +-7.001300000000000e-01 +-6.135200000000000e-01 +-5.807400000000000e-01 +-5.771800000000000e-01 +-5.587700000000000e-01 +-4.900800000000000e-01 +-3.635100000000000e-01 +-1.984600000000000e-01 +-2.406100000000000e-02 + 1.399600000000000e-01 + 2.908000000000000e-01 + 4.355300000000000e-01 + 5.777800000000000e-01 + 7.100800000000000e-01 + 8.168600000000000e-01 + 8.839600000000000e-01 + 9.052500000000000e-01 + 8.815800000000000e-01 + 8.148700000000000e-01 + 7.049900000000000e-01 + 5.539400000000000e-01 + 3.739000000000000e-01 + 1.905200000000000e-01 + 3.543700000000000e-02 +-6.943299999999999e-02 +-1.254100000000000e-01 +-1.581300000000000e-01 +-2.039000000000000e-01 +-2.893000000000000e-01 +-4.162900000000000e-01 +-5.613700000000000e-01 +-6.878400000000000e-01 +-7.632400000000000e-01 +-7.723900000000000e-01 +-7.211400000000000e-01 +-6.311300000000000e-01 +-5.294600000000000e-01 +-4.371200000000000e-01 +-3.603100000000000e-01 +-2.877800000000000e-01 +-1.971400000000000e-01 +-6.888700000000000e-02 + 9.817600000000000e-02 + 2.800100000000000e-01 + 4.355500000000000e-01 + 5.276200000000000e-01 + 5.439900000000000e-01 + 5.040900000000000e-01 + 4.451100000000000e-01 + 3.964400000000000e-01 + 3.604500000000000e-01 + 3.144300000000000e-01 + 2.330700000000000e-01 + 1.146200000000000e-01 +-9.860400000000000e-03 +-9.292900000000000e-02 +-1.020400000000000e-01 +-4.256100000000000e-02 + 4.521800000000000e-02 + 1.136100000000000e-01 + 1.394700000000000e-01 + 1.366000000000000e-01 + 1.395000000000000e-01 + 1.711900000000000e-01 + 2.203400000000000e-01 + 2.462100000000000e-01 + 2.085000000000000e-01 + 9.972700000000000e-02 +-4.476100000000000e-02 +-1.681100000000000e-01 +-2.301800000000000e-01 +-2.354600000000000e-01 +-2.303100000000000e-01 +-2.711800000000000e-01 +-3.857200000000000e-01 +-5.532000000000000e-01 +-7.166700000000000e-01 +-8.166600000000001e-01 +-8.225500000000000e-01 +-7.412400000000000e-01 +-6.006100000000000e-01 +-4.236600000000000e-01 +-2.142100000000000e-01 + 3.540300000000000e-02 + 3.226400000000000e-01 + 6.181800000000000e-01 + 8.699500000000000e-01 + 1.027400000000000e+00 + 1.069100000000000e+00 + 1.014500000000000e+00 + 9.093500000000000e-01 + 7.963700000000000e-01 + 6.898500000000000e-01 + 5.727300000000000e-01 + 4.165200000000000e-01 + 2.089500000000000e-01 +-3.121500000000000e-02 +-2.623500000000000e-01 +-4.447600000000000e-01 +-5.636700000000000e-01 +-6.347300000000000e-01 +-6.892400000000000e-01 +-7.508300000000000e-01 +-8.199300000000000e-01 +-8.747400000000000e-01 +-8.854100000000000e-01 +-8.298900000000000e-01 +-7.020100000000000e-01 +-5.104500000000000e-01 +-2.739600000000000e-01 +-1.797600000000000e-02 + 2.273100000000000e-01 + 4.317800000000000e-01 + 5.750999999999999e-01 + 6.566200000000000e-01 + 6.969500000000000e-01 + 7.258200000000000e-01 + 7.615200000000000e-01 + 7.954200000000000e-01 + 7.941600000000000e-01 + 7.202400000000000e-01 + 5.579800000000000e-01 + 3.268300000000000e-01 + 7.247199999999999e-02 +-1.579900000000000e-01 +-3.389000000000000e-01 +-4.717300000000000e-01 +-5.717800000000000e-01 +-6.485300000000001e-01 +-6.956900000000000e-01 +-6.974100000000000e-01 +-6.435600000000000e-01 +-5.397100000000000e-01 +-4.034700000000000e-01 +-2.512900000000000e-01 +-8.847200000000000e-02 + 8.817600000000000e-02 + 2.770200000000000e-01 + 4.600300000000000e-01 + 6.046600000000000e-01 + 6.800600000000000e-01 + 6.759800000000000e-01 + 6.095699999999999e-01 + 5.140600000000000e-01 + 4.170900000000000e-01 + 3.243600000000000e-01 + 2.198800000000000e-01 + 8.167800000000000e-02 +-9.949800000000000e-02 +-3.117300000000000e-01 +-5.282100000000000e-01 +-7.214600000000000e-01 +-8.738500000000000e-01 +-9.776600000000000e-01 +-1.026900000000000e+00 +-1.010200000000000e+00 +-9.108600000000000e-01 +-7.168500000000000e-01 +-4.315900000000000e-01 +-7.957200000000000e-02 + 2.977500000000000e-01 + 6.533500000000000e-01 + 9.469900000000000e-01 + 1.153000000000000e+00 + 1.261200000000000e+00 + 1.273200000000000e+00 + 1.196200000000000e+00 + 1.039300000000000e+00 + 8.128300000000001e-01 + 5.310100000000000e-01 + 2.151900000000000e-01 +-1.050000000000000e-01 +-3.951500000000000e-01 +-6.236300000000000e-01 +-7.697400000000000e-01 +-8.282200000000000e-01 +-8.076500000000000e-01 +-7.244400000000000e-01 +-5.966300000000000e-01 +-4.412000000000000e-01 +-2.750000000000000e-01 +-1.160400000000000e-01 + 1.855800000000000e-02 + 1.178600000000000e-01 + 1.819400000000000e-01 + 2.213400000000000e-01 + 2.500200000000000e-01 + 2.757500000000000e-01 + 2.943400000000000e-01 + 2.917600000000000e-01 + 2.525700000000000e-01 + 1.690300000000000e-01 + 4.542200000000000e-02 +-1.036300000000000e-01 +-2.581500000000000e-01 +-3.975800000000000e-01 +-5.038899999999999e-01 +-5.642300000000000e-01 +-5.735200000000000e-01 +-5.357100000000000e-01 +-4.610500000000000e-01 +-3.592800000000000e-01 +-2.332800000000000e-01 +-7.891700000000000e-02 + 1.063500000000000e-01 + 3.118600000000000e-01 + 5.090900000000000e-01 + 6.609200000000000e-01 + 7.411500000000000e-01 + 7.509600000000000e-01 + 7.189600000000000e-01 + 6.823600000000000e-01 + 6.614300000000000e-01 + 6.460200000000000e-01 + 6.047100000000000e-01 + 5.105499999999999e-01 + 3.639000000000000e-01 + 1.946600000000000e-01 + 4.161000000000000e-02 +-7.560000000000000e-02 +-1.703400000000000e-01 +-2.779300000000000e-01 +-4.275700000000000e-01 +-6.180200000000000e-01 +-8.143800000000000e-01 +-9.673700000000000e-01 +-1.040400000000000e+00 +-1.026000000000000e+00 +-9.423400000000000e-01 +-8.164700000000000e-01 +-6.680500000000000e-01 +-5.046000000000000e-01 +-3.279900000000000e-01 +-1.434400000000000e-01 + 3.715900000000000e-02 + 1.994400000000000e-01 + 3.329500000000000e-01 + 4.339400000000000e-01 + 5.034100000000000e-01 + 5.440100000000000e-01 + 5.596500000000000e-01 + 5.578700000000000e-01 + 5.512300000000000e-01 + 5.541500000000000e-01 + 5.761700000000000e-01 + 6.160700000000000e-01 + 6.612300000000000e-01 + 6.926900000000000e-01 + 6.918400000000000e-01 + 6.448000000000000e-01 + 5.434900000000000e-01 + 3.860600000000000e-01 + 1.789200000000000e-01 +-6.070400000000000e-02 +-3.057900000000000e-01 +-5.265800000000000e-01 +-7.013300000000000e-01 +-8.235600000000000e-01 +-9.001700000000000e-01 +-9.409200000000000e-01 +-9.471700000000000e-01 +-9.089900000000000e-01 +-8.133800000000000e-01 +-6.577900000000000e-01 +-4.583500000000000e-01 +-2.461600000000000e-01 +-5.409700000000000e-02 + 9.678800000000000e-02 + 2.023800000000000e-01 + 2.704100000000000e-01 + 3.110400000000000e-01 + 3.309000000000000e-01 + 3.341200000000000e-01 + 3.272800000000000e-01 + 3.225500000000000e-01 + 3.353000000000000e-01 + 3.774800000000000e-01 + 4.511400000000000e-01 + 5.454300000000000e-01 + 6.381300000000000e-01 + 7.006700000000000e-01 + 7.058800000000000e-01 + 6.375100000000000e-01 + 4.989200000000000e-01 + 3.156800000000000e-01 + 1.274000000000000e-01 +-3.034300000000000e-02 +-1.451400000000000e-01 +-2.350100000000000e-01 +-3.362800000000000e-01 +-4.771600000000000e-01 +-6.539199999999999e-01 +-8.267800000000000e-01 +-9.405300000000000e-01 +-9.571100000000000e-01 +-8.783300000000001e-01 +-7.434500000000001e-01 +-6.039700000000000e-01 +-4.939800000000000e-01 +-4.162600000000000e-01 +-3.508900000000000e-01 +-2.761500000000000e-01 +-1.832400000000000e-01 +-7.433600000000000e-02 + 5.111600000000000e-02 + 2.061400000000000e-01 + 4.099100000000000e-01 + 6.677100000000000e-01 + 9.527000000000000e-01 + 1.206100000000000e+00 + 1.359700000000000e+00 + 1.368100000000000e+00 + 1.231900000000000e+00 + 9.967400000000000e-01 + 7.304500000000000e-01 + 4.925600000000000e-01 + 3.120900000000000e-01 + 1.831500000000000e-01 + 7.631000000000000e-02 +-4.260500000000000e-02 +-1.956000000000000e-01 +-3.832600000000000e-01 +-5.853300000000000e-01 +-7.702400000000000e-01 +-9.099900000000000e-01 +-9.935400000000000e-01 +-1.031100000000000e+00 +-1.045400000000000e+00 +-1.053900000000000e+00 +-1.053000000000000e+00 +-1.016300000000000e+00 +-9.099400000000000e-01 +-7.162100000000000e-01 +-4.490200000000000e-01 +-1.500300000000000e-01 + 1.329100000000000e-01 + 3.703500000000000e-01 + 5.614600000000000e-01 + 7.234800000000000e-01 + 8.689100000000000e-01 + 9.884400000000000e-01 + 1.052500000000000e+00 + 1.030600000000000e+00 + 9.134100000000001e-01 + 7.222100000000000e-01 + 4.986900000000000e-01 + 2.833400000000000e-01 + 9.821600000000000e-02 +-5.486100000000000e-02 +-1.817400000000000e-01 +-2.807700000000000e-01 +-3.378300000000000e-01 +-3.356000000000000e-01 +-2.698000000000000e-01 +-1.594000000000000e-01 +-4.203600000000000e-02 + 4.365000000000000e-02 + 7.782500000000001e-02 + 6.861399999999999e-02 + 4.478700000000000e-02 + 3.653700000000000e-02 + 5.629600000000000e-02 + 9.111300000000000e-02 + 1.106900000000000e-01 + 8.559000000000000e-02 + 4.390300000000000e-03 +-1.199700000000000e-01 +-2.572000000000000e-01 +-3.743600000000000e-01 +-4.488700000000000e-01 +-4.729500000000000e-01 +-4.494000000000000e-01 +-3.844600000000000e-01 +-2.844300000000000e-01 +-1.581600000000000e-01 +-2.203400000000000e-02 + 9.893700000000000e-02 + 1.773900000000000e-01 + 1.948900000000000e-01 + 1.514900000000000e-01 + 6.718700000000000e-02 +-2.614700000000000e-02 +-9.783900000000000e-02 +-1.296200000000000e-01 +-1.199500000000000e-01 +-8.087600000000000e-02 +-3.047800000000000e-02 + 1.516900000000000e-02 + 4.791200000000000e-02 + 6.996500000000000e-02 + 9.234700000000000e-02 + 1.293800000000000e-01 + 1.908400000000000e-01 + 2.754000000000000e-01 + 3.691400000000000e-01 + 4.508700000000000e-01 + 5.011400000000000e-01 + 5.091100000000000e-01 + 4.729700000000000e-01 + 3.946100000000000e-01 + 2.747100000000000e-01 + 1.140600000000000e-01 +-7.853499999999999e-02 +-2.785900000000000e-01 +-4.472700000000000e-01 +-5.449000000000001e-01 +-5.501400000000000e-01 +-4.722200000000000e-01 +-3.472000000000000e-01 +-2.196400000000000e-01 +-1.214500000000000e-01 +-6.104500000000000e-02 +-2.818500000000000e-02 +-8.038800000000000e-03 + 7.405600000000000e-03 + 1.846800000000000e-02 + 2.534400000000000e-02 + 3.486600000000000e-02 + 5.868800000000000e-02 + 1.034500000000000e-01 + 1.613100000000000e-01 + 2.096700000000000e-01 + 2.219200000000000e-01 + 1.824000000000000e-01 + 9.557599999999999e-02 +-1.592000000000000e-02 +-1.222600000000000e-01 +-1.989300000000000e-01 +-2.343500000000000e-01 +-2.305100000000000e-01 +-1.987900000000000e-01 +-1.537400000000000e-01 +-1.069300000000000e-01 +-6.250100000000000e-02 +-1.646300000000000e-02 + 3.810400000000000e-02 + 1.017300000000000e-01 + 1.612300000000000e-01 + 1.919500000000000e-01 + 1.716700000000000e-01 + 9.882800000000000e-02 + 9.919700000000000e-04 +-7.575600000000000e-02 +-9.304300000000000e-02 +-4.505200000000000e-02 + 3.643300000000000e-02 + 1.022000000000000e-01 + 1.176700000000000e-01 + 8.377800000000001e-02 + 3.166200000000000e-02 +-3.735300000000000e-03 +-9.853300000000001e-03 +-1.889300000000000e-03 +-4.500500000000000e-03 +-2.670700000000000e-02 +-5.221800000000000e-02 +-5.367300000000000e-02 +-1.816600000000000e-02 + 3.883000000000000e-02 + 8.432400000000000e-02 + 9.498300000000000e-02 + 7.731000000000000e-02 + 6.267900000000000e-02 + 8.034800000000000e-02 + 1.308800000000000e-01 + 1.829200000000000e-01 + 1.967800000000000e-01 + 1.556400000000000e-01 + 7.795100000000001e-02 + 5.076700000000000e-04 +-5.347100000000000e-02 +-9.366099999999999e-02 +-1.518700000000000e-01 +-2.491600000000000e-01 +-3.682500000000000e-01 +-4.554400000000000e-01 +-4.529200000000000e-01 +-3.379600000000000e-01 +-1.395600000000000e-01 + 7.890400000000000e-02 + 2.567500000000000e-01 + 3.649100000000000e-01 + 4.077400000000000e-01 + 4.021300000000000e-01 + 3.550000000000000e-01 + 2.590200000000000e-01 + 1.079300000000000e-01 +-8.454500000000000e-02 +-2.806900000000000e-01 +-4.349100000000000e-01 +-5.175700000000000e-01 +-5.282300000000000e-01 +-4.892400000000000e-01 +-4.267900000000000e-01 +-3.548200000000000e-01 +-2.727400000000000e-01 +-1.748600000000000e-01 +-6.069900000000000e-02 + 6.279300000000000e-02 + 1.865100000000000e-01 + 3.043700000000000e-01 + 4.122500000000000e-01 + 5.028899999999999e-01 + 5.640900000000000e-01 + 5.850600000000000e-01 + 5.666000000000000e-01 + 5.250300000000000e-01 + 4.833700000000000e-01 + 4.543900000000000e-01 + 4.288000000000000e-01 + 3.796600000000000e-01 + 2.816400000000000e-01 + 1.312300000000000e-01 +-4.763900000000000e-02 +-2.172400000000000e-01 +-3.482500000000000e-01 +-4.335600000000000e-01 +-4.840400000000000e-01 +-5.117800000000000e-01 +-5.166500000000001e-01 +-4.880700000000000e-01 +-4.205000000000000e-01 +-3.281600000000000e-01 +-2.443700000000000e-01 +-2.032300000000000e-01 +-2.161200000000000e-01 +-2.606900000000000e-01 +-2.915300000000000e-01 +-2.657200000000000e-01 +-1.664200000000000e-01 +-9.938799999999999e-03 + 1.656600000000000e-01 + 3.202500000000000e-01 + 4.261000000000000e-01 + 4.707600000000000e-01 + 4.519400000000000e-01 + 3.727100000000000e-01 + 2.418700000000000e-01 + 7.715200000000000e-02 +-9.511600000000001e-02 +-2.471100000000000e-01 +-3.598800000000000e-01 +-4.291700000000000e-01 +-4.614300000000000e-01 +-4.622200000000000e-01 +-4.258500000000000e-01 +-3.349700000000000e-01 +-1.719400000000000e-01 + 6.497100000000000e-02 + 3.515400000000000e-01 + 6.413400000000000e-01 + 8.817300000000000e-01 + 1.033300000000000e+00 + 1.081500000000000e+00 + 1.035500000000000e+00 + 9.164600000000001e-01 + 7.446000000000000e-01 + 5.325200000000000e-01 + 2.883200000000000e-01 + 2.353700000000000e-02 +-2.412800000000000e-01 +-4.786800000000000e-01 +-6.633800000000000e-01 +-7.820200000000000e-01 +-8.370400000000000e-01 +-8.419700000000000e-01 +-8.119600000000000e-01 +-7.563400000000000e-01 +-6.783000000000000e-01 +-5.809600000000000e-01 +-4.738400000000000e-01 +-3.735100000000000e-01 +-2.966800000000000e-01 +-2.502700000000000e-01 +-2.259700000000000e-01 +-2.038800000000000e-01 +-1.632900000000000e-01 +-9.348400000000000e-02 + 2.387600000000000e-03 + 1.122000000000000e-01 + 2.239800000000000e-01 + 3.322600000000000e-01 + 4.373800000000000e-01 + 5.394600000000001e-01 + 6.326200000000000e-01 + 7.045800000000000e-01 + 7.422600000000000e-01 + 7.394300000000000e-01 + 7.009700000000000e-01 + 6.407500000000000e-01 + 5.744899999999999e-01 + 5.117300000000000e-01 + 4.512100000000000e-01 + 3.817700000000000e-01 + 2.879400000000000e-01 + 1.577700000000000e-01 +-1.037300000000000e-02 +-2.050200000000000e-01 +-4.040400000000000e-01 +-5.817300000000000e-01 +-7.170200000000000e-01 +-7.989400000000000e-01 +-8.264200000000000e-01 +-8.037800000000000e-01 +-7.360300000000000e-01 +-6.284000000000000e-01 +-4.906200000000000e-01 +-3.416500000000000e-01 +-2.087800000000000e-01 +-1.186100000000000e-01 +-8.370100000000000e-02 +-9.406399999999999e-02 +-1.202800000000000e-01 +-1.282100000000000e-01 +-9.651300000000000e-02 +-2.604800000000000e-02 + 6.479000000000000e-02 + 1.548300000000000e-01 + 2.343400000000000e-01 + 3.089800000000000e-01 + 3.916000000000000e-01 + 4.886900000000000e-01 + 5.915800000000000e-01 + 6.782700000000000e-01 + 7.242100000000000e-01 + 7.143500000000000e-01 + 6.492800000000000e-01 + 5.431800000000000e-01 + 4.161500000000000e-01 + 2.865400000000000e-01 + 1.663200000000000e-01 + 6.044300000000000e-02 +-3.157300000000000e-02 +-1.133700000000000e-01 +-1.897000000000000e-01 +-2.649400000000000e-01 +-3.425200000000000e-01 +-4.251200000000000e-01 +-5.147100000000000e-01 +-6.111100000000000e-01 +-7.086300000000000e-01 +-7.928100000000000e-01 +-8.406700000000000e-01 +-8.268900000000000e-01 +-7.344200000000000e-01 +-5.642000000000000e-01 +-3.379500000000000e-01 +-9.160900000000000e-02 + 1.372000000000000e-01 + 3.209300000000000e-01 + 4.475900000000000e-01 + 5.194200000000000e-01 + 5.479800000000000e-01 + 5.498200000000000e-01 + 5.430700000000001e-01 + 5.434400000000000e-01 + 5.580500000000000e-01 + 5.800400000000000e-01 + 5.890300000000001e-01 + 5.607799999999999e-01 + 4.823600000000000e-01 + 3.633500000000000e-01 + 2.338600000000000e-01 + 1.281700000000000e-01 + 6.331299999999999e-02 + 2.670300000000000e-02 +-1.809900000000000e-02 +-1.103200000000000e-01 +-2.687700000000000e-01 +-4.807200000000000e-01 +-7.086400000000000e-01 +-9.086900000000000e-01 +-1.048300000000000e+00 +-1.113000000000000e+00 +-1.101600000000000e+00 +-1.016400000000000e+00 +-8.574200000000000e-01 +-6.248700000000000e-01 +-3.264000000000000e-01 + 1.575200000000000e-02 + 3.639200000000000e-01 + 6.717500000000000e-01 + 8.967800000000000e-01 + 1.014300000000000e+00 + 1.026900000000000e+00 + 9.649799999999999e-01 + 8.750700000000000e-01 + 7.994300000000000e-01 + 7.561800000000000e-01 + 7.310800000000000e-01 + 6.875599999999999e-01 + 5.904500000000000e-01 + 4.294300000000000e-01 + 2.267800000000000e-01 + 2.386900000000000e-02 +-1.444600000000000e-01 +-2.696600000000000e-01 +-3.697200000000000e-01 +-4.707200000000000e-01 +-5.845500000000000e-01 +-6.998900000000000e-01 +-7.927600000000000e-01 +-8.466900000000001e-01 +-8.653600000000000e-01 +-8.670600000000001e-01 +-8.658500000000000e-01 +-8.557300000000000e-01 +-8.117600000000000e-01 +-7.081600000000000e-01 +-5.390900000000000e-01 +-3.255600000000000e-01 +-1.031900000000000e-01 + 9.922100000000000e-02 + 2.732200000000000e-01 + 4.268100000000000e-01 + 5.684800000000000e-01 + 6.942000000000000e-01 + 7.891899999999999e-01 + 8.422800000000000e-01 + 8.594200000000000e-01 + 8.627600000000000e-01 + 8.744100000000000e-01 + 8.973300000000000e-01 + 9.092100000000000e-01 + 8.751800000000000e-01 + 7.702400000000000e-01 + 5.947000000000000e-01 + 3.718100000000000e-01 + 1.313600000000000e-01 +-1.064500000000000e-01 +-3.343900000000000e-01 +-5.482100000000000e-01 +-7.348300000000000e-01 +-8.712400000000000e-01 +-9.368500000000000e-01 +-9.291800000000000e-01 +-8.687400000000000e-01 +-7.872000000000000e-01 +-7.069299999999999e-01 +-6.274999999999999e-01 +-5.300400000000000e-01 +-3.962600000000000e-01 +-2.272800000000000e-01 +-4.774300000000000e-02 + 1.080300000000000e-01 + 2.168800000000000e-01 + 2.789300000000000e-01 + 3.125400000000000e-01 + 3.373900000000000e-01 + 3.598100000000000e-01 + 3.712600000000000e-01 + 3.599900000000000e-01 + 3.247200000000000e-01 + 2.782700000000000e-01 + 2.380900000000000e-01 + 2.116000000000000e-01 + 1.891500000000000e-01 + 1.510700000000000e-01 + 8.413800000000000e-02 +-5.400900000000000e-03 +-9.239799999999999e-02 +-1.472200000000000e-01 +-1.536100000000000e-01 +-1.172800000000000e-01 +-5.986600000000000e-02 +-3.700900000000000e-03 + 4.054600000000000e-02 + 7.471000000000000e-02 + 1.033500000000000e-01 + 1.228500000000000e-01 + 1.195000000000000e-01 + 7.915800000000001e-02 + 1.233600000000000e-03 +-9.441800000000000e-02 +-1.743600000000000e-01 +-2.087000000000000e-01 +-1.870400000000000e-01 +-1.224100000000000e-01 +-4.050500000000000e-02 + 3.772600000000000e-02 + 1.078800000000000e-01 + 1.801600000000000e-01 + 2.656300000000000e-01 + 3.612200000000000e-01 + 4.444700000000000e-01 + 4.822100000000000e-01 + 4.477600000000000e-01 + 3.354600000000000e-01 + 1.637200000000000e-01 +-3.437600000000000e-02 +-2.263700000000000e-01 +-3.920900000000000e-01 +-5.258000000000000e-01 +-6.298400000000000e-01 +-7.054700000000000e-01 +-7.477900000000000e-01 +-7.471700000000000e-01 +-6.956300000000000e-01 +-5.929500000000000e-01 +-4.486400000000000e-01 +-2.787700000000000e-01 +-1.002600000000000e-01 + 7.322900000000000e-02 + 2.312600000000000e-01 + 3.631100000000000e-01 + 4.546100000000000e-01 + 4.895900000000000e-01 + 4.575800000000000e-01 + 3.640400000000000e-01 + 2.361600000000000e-01 + 1.175200000000000e-01 + 5.122500000000000e-02 + 5.916400000000000e-02 + 1.295600000000000e-01 + 2.222700000000000e-01 + 2.909400000000000e-01 + 3.097700000000000e-01 + 2.884700000000000e-01 + 2.651600000000000e-01 + 2.809900000000000e-01 + 3.525600000000000e-01 + 4.600400000000000e-01 + 5.583500000000000e-01 + 6.032700000000000e-01 + 5.746700000000000e-01 + 4.820100000000000e-01 + 3.506800000000000e-01 + 2.013600000000000e-01 + 3.826300000000000e-02 +-1.460600000000000e-01 +-3.555600000000000e-01 +-5.790500000000000e-01 +-7.921300000000000e-01 +-9.708000000000000e-01 +-1.104300000000000e+00 +-1.195700000000000e+00 +-1.248500000000000e+00 +-1.251200000000000e+00 +-1.174200000000000e+00 +-9.862100000000000e-01 +-6.798700000000000e-01 +-2.903100000000000e-01 + 1.096100000000000e-01 + 4.369100000000000e-01 + 6.336700000000000e-01 + 6.896500000000000e-01 + 6.404700000000000e-01 + 5.451600000000000e-01 + 4.585300000000000e-01 + 4.137500000000000e-01 + 4.205600000000000e-01 + 4.733300000000000e-01 + 5.586300000000000e-01 + 6.568400000000000e-01 + 7.407800000000000e-01 + 7.786800000000000e-01 + 7.448000000000000e-01 + 6.333400000000000e-01 + 4.651700000000000e-01 + 2.802900000000000e-01 + 1.183400000000000e-01 +-1.286200000000000e-03 +-8.656100000000000e-02 +-1.622500000000000e-01 +-2.490900000000000e-01 +-3.474300000000000e-01 +-4.369100000000000e-01 +-4.923300000000000e-01 +-5.038800000000000e-01 +-4.867200000000000e-01 +-4.721300000000000e-01 +-4.857900000000000e-01 +-5.279400000000000e-01 +-5.692300000000000e-01 +-5.656200000000000e-01 +-4.830100000000000e-01 +-3.166600000000000e-01 +-9.441099999999999e-02 + 1.362700000000000e-01 + 3.281400000000000e-01 + 4.494300000000000e-01 + 4.886300000000000e-01 + 4.509300000000000e-01 + 3.524000000000000e-01 + 2.162200000000000e-01 + 7.047800000000000e-02 +-5.594300000000000e-02 +-1.409700000000000e-01 +-1.773200000000000e-01 +-1.749000000000000e-01 +-1.542500000000000e-01 +-1.334700000000000e-01 +-1.167500000000000e-01 +-9.203500000000001e-02 +-3.976800000000000e-02 + 5.304900000000000e-02 + 1.825500000000000e-01 + 3.275800000000000e-01 + 4.583200000000000e-01 + 5.478900000000000e-01 + 5.799000000000000e-01 + 5.496200000000000e-01 + 4.607800000000000e-01 + 3.222500000000000e-01 + 1.467500000000000e-01 +-4.946600000000000e-02 +-2.476700000000000e-01 +-4.294200000000000e-01 +-5.790400000000000e-01 +-6.842300000000000e-01 +-7.347000000000000e-01 +-7.217000000000000e-01 +-6.407900000000000e-01 +-4.973000000000000e-01 +-3.103400000000000e-01 +-1.107400000000000e-01 + 6.817400000000000e-02 + 2.023500000000000e-01 + 2.842900000000000e-01 + 3.214100000000000e-01 + 3.271600000000000e-01 + 3.119000000000000e-01 + 2.801300000000000e-01 + 2.353200000000000e-01 + 1.869300000000000e-01 + 1.524100000000000e-01 + 1.507100000000000e-01 + 1.909000000000000e-01 + 2.640900000000000e-01 + 3.453700000000000e-01 + 4.055000000000000e-01 + 4.256100000000000e-01 + 4.055300000000000e-01 + 3.611600000000000e-01 + 3.126300000000000e-01 + 2.711800000000000e-01 + 2.324100000000000e-01 + 1.793000000000000e-01 + 9.243600000000000e-02 +-3.866800000000000e-02 +-2.093200000000000e-01 +-4.009400000000000e-01 +-5.884700000000000e-01 +-7.497500000000000e-01 +-8.722000000000000e-01 +-9.541800000000000e-01 +-1.001000000000000e+00 +-1.018400000000000e+00 +-1.007000000000000e+00 +-9.608000000000000e-01 +-8.702500000000000e-01 +-7.285100000000000e-01 +-5.367499999999999e-01 +-3.065300000000000e-01 +-5.743500000000000e-02 + 1.887300000000000e-01 + 4.153000000000000e-01 + 6.164500000000001e-01 + 7.987500000000000e-01 + 9.766400000000000e-01 + 1.162500000000000e+00 + 1.354800000000000e+00 + 1.530300000000000e+00 + 1.646500000000000e+00 + 1.656100000000000e+00 + 1.527200000000000e+00 + 1.260200000000000e+00 + 8.905500000000000e-01 + 4.755800000000000e-01 + 7.175200000000000e-02 +-2.831700000000000e-01 +-5.740900000000000e-01 +-7.984700000000000e-01 +-9.525500000000000e-01 +-1.026300000000000e+00 +-1.011700000000000e+00 +-9.183800000000000e-01 +-7.807400000000000e-01 +-6.501000000000000e-01 +-5.721800000000000e-01 +-5.651500000000000e-01 +-6.123800000000000e-01 +-6.750000000000000e-01 +-7.149600000000000e-01 +-7.130600000000000e-01 +-6.709300000000000e-01 +-5.987800000000000e-01 +-5.011000000000000e-01 +-3.724600000000000e-01 +-2.061500000000000e-01 +-7.212700000000000e-03 + 2.022400000000000e-01 + 3.913500000000000e-01 + 5.369400000000000e-01 + 6.358300000000000e-01 + 7.037700000000000e-01 + 7.614200000000000e-01 + 8.174600000000000e-01 + 8.606100000000000e-01 + 8.657400000000000e-01 + 8.095800000000000e-01 + 6.857799999999999e-01 + 5.102100000000001e-01 + 3.145000000000000e-01 + 1.324200000000000e-01 +-1.299200000000000e-02 +-1.156400000000000e-01 +-1.837700000000000e-01 +-2.311600000000000e-01 +-2.668800000000000e-01 +-2.892400000000000e-01 +-2.872000000000000e-01 +-2.490600000000000e-01 +-1.734300000000000e-01 +-7.543900000000001e-02 + 1.733900000000000e-02 + 7.784400000000000e-02 + 9.369300000000000e-02 + 7.248700000000000e-02 + 3.373100000000000e-02 +-7.317400000000000e-03 +-5.152900000000000e-02 +-1.132000000000000e-01 +-2.032100000000000e-01 +-3.106500000000000e-01 +-3.987400000000000e-01 +-4.222500000000000e-01 +-3.571800000000000e-01 +-2.227100000000000e-01 +-7.798099999999999e-02 + 7.277700000000000e-03 +-8.836600000000000e-03 +-1.172600000000000e-01 +-2.646200000000000e-01 +-3.845200000000000e-01 +-4.321300000000000e-01 +-4.006100000000000e-01 +-3.116700000000000e-01 +-1.915500000000000e-01 +-5.198300000000000e-02 + 1.103400000000000e-01 + 2.983300000000000e-01 + 4.980300000000000e-01 + 6.760100000000000e-01 + 7.939300000000000e-01 + 8.291400000000000e-01 + 7.859600000000000e-01 + 6.891900000000000e-01 + 5.653200000000000e-01 + 4.260100000000000e-01 + 2.660700000000000e-01 + 7.683700000000000e-02 +-1.362100000000000e-01 +-3.455800000000000e-01 +-5.106400000000000e-01 +-5.975300000000000e-01 +-5.969900000000000e-01 +-5.282100000000000e-01 +-4.268800000000000e-01 +-3.253400000000000e-01 +-2.375200000000000e-01 +-1.567800000000000e-01 +-6.642500000000000e-02 + 4.453900000000000e-02 + 1.700200000000000e-01 + 2.855900000000000e-01 + 3.575800000000000e-01 + 3.577700000000000e-01 + 2.770600000000000e-01 + 1.320000000000000e-01 +-3.914100000000000e-02 +-1.898200000000000e-01 +-2.830600000000000e-01 +-3.054300000000000e-01 +-2.699500000000000e-01 +-2.060200000000000e-01 +-1.419400000000000e-01 +-9.048800000000000e-02 +-4.617800000000000e-02 + 4.906800000000000e-03 + 7.075600000000000e-02 + 1.457700000000000e-01 + 2.155100000000000e-01 + 2.693400000000000e-01 + 3.093700000000000e-01 + 3.466500000000000e-01 + 3.864500000000000e-01 + 4.148900000000000e-01 + 4.003400000000000e-01 + 3.125100000000000e-01 + 1.470400000000000e-01 +-6.328000000000000e-02 +-2.618800000000000e-01 +-3.997000000000000e-01 +-4.631400000000000e-01 +-4.782700000000000e-01 +-4.874300000000000e-01 +-5.151300000000000e-01 +-5.485100000000001e-01 +-5.471600000000000e-01 +-4.747100000000000e-01 +-3.284000000000000e-01 +-1.442900000000000e-01 + 2.517200000000000e-02 + 1.436800000000000e-01 + 2.093400000000000e-01 + 2.467500000000000e-01 + 2.816000000000000e-01 + 3.195100000000000e-01 + 3.450500000000000e-01 + 3.395200000000000e-01 + 3.004100000000000e-01 + 2.460400000000000e-01 + 2.025000000000000e-01 + 1.858200000000000e-01 + 1.953000000000000e-01 + 2.223800000000000e-01 + 2.644300000000000e-01 + 3.278300000000000e-01 + 4.150400000000000e-01 + 5.070000000000000e-01 + 5.596800000000000e-01 + 5.238300000000000e-01 + 3.775000000000000e-01 + 1.472400000000000e-01 +-1.006000000000000e-01 +-2.957700000000000e-01 +-4.038500000000000e-01 +-4.424100000000000e-01 +-4.632200000000000e-01 +-5.142600000000001e-01 +-6.089200000000000e-01 +-7.221400000000000e-01 +-8.122200000000001e-01 +-8.489400000000000e-01 +-8.272699999999999e-01 +-7.604200000000000e-01 +-6.626400000000000e-01 +-5.381300000000000e-01 +-3.837000000000000e-01 +-1.997000000000000e-01 + 2.922800000000000e-03 + 2.057800000000000e-01 + 3.922700000000000e-01 + 5.531400000000000e-01 + 6.837299999999999e-01 + 7.776400000000000e-01 + 8.259600000000000e-01 + 8.254899999999999e-01 + 7.886700000000000e-01 + 7.430800000000000e-01 + 7.156500000000000e-01 + 7.107300000000000e-01 + 6.998000000000000e-01 + 6.349200000000000e-01 + 4.802200000000000e-01 + 2.406300000000000e-01 +-3.377500000000000e-02 +-2.729600000000000e-01 +-4.256200000000000e-01 +-4.856100000000000e-01 +-4.892600000000000e-01 +-4.875600000000000e-01 +-5.139000000000000e-01 +-5.686000000000000e-01 +-6.270300000000000e-01 +-6.610000000000000e-01 +-6.559700000000001e-01 +-6.140400000000000e-01 +-5.458700000000000e-01 +-4.620600000000000e-01 +-3.719400000000000e-01 +-2.875000000000000e-01 +-2.243400000000000e-01 +-1.942900000000000e-01 +-1.933100000000000e-01 +-1.949200000000000e-01 +-1.572200000000000e-01 +-4.178600000000000e-02 + 1.664300000000000e-01 + 4.501900000000000e-01 + 7.664100000000000e-01 + 1.062500000000000e+00 + 1.291700000000000e+00 + 1.421300000000000e+00 + 1.433200000000000e+00 + 1.322200000000000e+00 + 1.097300000000000e+00 + 7.839400000000000e-01 + 4.215300000000000e-01 + 5.546000000000000e-02 +-2.761600000000000e-01 +-5.528000000000000e-01 +-7.728100000000000e-01 +-9.450700000000000e-01 +-1.077000000000000e+00 +-1.167000000000000e+00 +-1.206100000000000e+00 +-1.186700000000000e+00 +-1.111600000000000e+00 +-9.961400000000000e-01 +-8.607700000000000e-01 +-7.194500000000000e-01 +-5.703700000000000e-01 +-3.966000000000000e-01 +-1.777500000000000e-01 + 9.291500000000000e-02 + 3.958900000000000e-01 + 6.861800000000000e-01 + 9.094100000000001e-01 + 1.026100000000000e+00 + 1.031100000000000e+00 + 9.560400000000000e-01 + 8.525900000000000e-01 + 7.653600000000000e-01 + 7.101600000000000e-01 + 6.705600000000000e-01 + 6.139700000000000e-01 + 5.159700000000000e-01 + 3.770500000000000e-01 + 2.217100000000000e-01 + 8.217900000000000e-02 +-2.095600000000000e-02 +-8.855900000000000e-02 +-1.384400000000000e-01 +-1.922500000000000e-01 +-2.641500000000000e-01 +-3.577300000000000e-01 +-4.702900000000000e-01 +-5.977000000000000e-01 +-7.345800000000000e-01 +-8.702100000000000e-01 +-9.852700000000000e-01 +-1.054000000000000e+00 +-1.052300000000000e+00 +-9.661400000000000e-01 +-7.964900000000000e-01 +-5.575100000000000e-01 +-2.718600000000000e-01 + 3.384200000000000e-02 + 3.319800000000000e-01 + 5.966700000000000e-01 + 8.079800000000000e-01 + 9.563000000000000e-01 + 1.043200000000000e+00 + 1.076500000000000e+00 + 1.061200000000000e+00 + 9.926900000000000e-01 + 8.596300000000000e-01 + 6.540000000000000e-01 + 3.841000000000000e-01 + 7.969800000000000e-02 +-2.147600000000000e-01 +-4.556000000000000e-01 +-6.145800000000000e-01 +-6.845500000000000e-01 +-6.749400000000000e-01 +-6.024400000000000e-01 +-4.843000000000000e-01 +-3.372300000000000e-01 +-1.794700000000000e-01 +-3.111900000000000e-02 + 8.946200000000000e-02 + 1.707900000000000e-01 + 2.106500000000000e-01 + 2.137400000000000e-01 + 1.869900000000000e-01 + 1.367600000000000e-01 + 6.993800000000000e-02 +-3.290600000000000e-03 +-6.931800000000000e-02 +-1.156400000000000e-01 +-1.373000000000000e-01 +-1.400400000000000e-01 +-1.369500000000000e-01 +-1.408400000000000e-01 +-1.577900000000000e-01 +-1.864000000000000e-01 +-2.215400000000000e-01 +-2.580300000000000e-01 +-2.897800000000000e-01 +-3.056500000000000e-01 +-2.877200000000000e-01 +-2.168100000000000e-01 +-8.400199999999999e-02 + 9.984100000000000e-02 + 3.048700000000000e-01 + 4.950900000000000e-01 + 6.453300000000000e-01 + 7.506699999999999e-01 + 8.213100000000000e-01 + 8.671800000000000e-01 + 8.839900000000001e-01 + 8.516300000000000e-01 + 7.460100000000000e-01 + 5.550800000000000e-01 + 2.875300000000000e-01 +-3.108500000000000e-02 +-3.692600000000000e-01 +-6.977100000000001e-01 +-9.888400000000001e-01 +-1.211500000000000e+00 +-1.330500000000000e+00 +-1.317500000000000e+00 +-1.167600000000000e+00 +-9.113000000000000e-01 +-6.074400000000000e-01 +-3.204300000000000e-01 +-9.287600000000000e-02 + 6.820500000000000e-02 + 1.835700000000000e-01 + 2.791500000000000e-01 + 3.657200000000000e-01 + 4.352400000000000e-01 + 4.745400000000000e-01 + 4.835100000000000e-01 + 4.814400000000000e-01 + 4.951900000000000e-01 + 5.377900000000000e-01 + 5.942700000000000e-01 + 6.269100000000000e-01 + 5.975100000000000e-01 + 4.913800000000000e-01 + 3.265500000000000e-01 + 1.422300000000000e-01 +-2.427900000000000e-02 +-1.556000000000000e-01 +-2.554300000000000e-01 +-3.344800000000000e-01 +-3.938300000000000e-01 +-4.193800000000000e-01 +-3.913900000000000e-01 +-3.013200000000000e-01 +-1.627500000000000e-01 +-8.185500000000000e-03 + 1.254700000000000e-01 + 2.125800000000000e-01 + 2.455300000000000e-01 + 2.307500000000000e-01 + 1.800200000000000e-01 + 1.049300000000000e-01 + 1.751300000000000e-02 +-6.700800000000000e-02 +-1.316000000000000e-01 +-1.650500000000000e-01 +-1.707600000000000e-01 +-1.687100000000000e-01 +-1.861700000000000e-01 +-2.417400000000000e-01 +-3.330000000000000e-01 +-4.364300000000000e-01 +-5.200000000000000e-01 +-5.596500000000000e-01 +-5.486799999999999e-01 +-4.948700000000000e-01 +-4.096000000000000e-01 +-2.986900000000000e-01 +-1.619100000000000e-01 +-1.103300000000000e-04 + 1.777000000000000e-01 + 3.544900000000000e-01 + 5.131100000000000e-01 + 6.448800000000000e-01 + 7.511800000000000e-01 + 8.358700000000000e-01 + 8.947500000000000e-01 + 9.117600000000000e-01 + 8.663200000000000e-01 + 7.477000000000000e-01 + 5.658100000000000e-01 + 3.499100000000000e-01 + 1.358100000000000e-01 +-4.962500000000000e-02 +-1.962100000000000e-01 +-3.064400000000000e-01 +-3.849000000000000e-01 +-4.308400000000000e-01 +-4.397000000000000e-01 +-4.115300000000000e-01 +-3.580500000000000e-01 +-3.011500000000000e-01 +-2.631400000000000e-01 +-2.555200000000000e-01 +-2.746800000000000e-01 +-3.069900000000000e-01 +-3.390000000000000e-01 +-3.648500000000000e-01 +-3.865000000000000e-01 +-4.081100000000000e-01 +-4.305800000000000e-01 +-4.502100000000000e-01 +-4.613100000000000e-01 +-4.584800000000000e-01 +-4.355600000000000e-01 +-3.825100000000000e-01 +-2.851100000000000e-01 +-1.308200000000000e-01 + 8.089499999999999e-02 + 3.309400000000000e-01 + 5.822900000000000e-01 + 7.921100000000000e-01 + 9.279700000000000e-01 + 9.787500000000000e-01 + 9.545700000000000e-01 + 8.777100000000000e-01 + 7.720100000000000e-01 + 6.573300000000000e-01 + 5.498800000000000e-01 + 4.634100000000000e-01 + 4.063100000000000e-01 + 3.746000000000000e-01 + 3.474500000000000e-01 + 2.922000000000000e-01 + 1.799800000000000e-01 + 4.070900000000000e-03 +-2.117500000000000e-01 +-4.224400000000000e-01 +-5.850200000000000e-01 +-6.821500000000000e-01 +-7.306200000000000e-01 +-7.690000000000000e-01 +-8.322300000000000e-01 +-9.292300000000000e-01 +-1.037700000000000e+00 +-1.117900000000000e+00 +-1.134800000000000e+00 +-1.074100000000000e+00 +-9.423600000000000e-01 +-7.559800000000000e-01 +-5.278400000000000e-01 +-2.639600000000000e-01 + 2.938100000000000e-02 + 3.357300000000000e-01 + 6.260500000000000e-01 + 8.679500000000000e-01 + 1.040900000000000e+00 + 1.146000000000000e+00 + 1.202900000000000e+00 + 1.234600000000000e+00 + 1.251400000000000e+00 + 1.244800000000000e+00 + 1.194700000000000e+00 + 1.085000000000000e+00 + 9.156900000000000e-01 + 7.032300000000000e-01 + 4.708000000000000e-01 + 2.362600000000000e-01 + 6.869700000000000e-03 +-2.167700000000000e-01 +-4.326000000000000e-01 +-6.326300000000000e-01 +-8.058700000000000e-01 +-9.455000000000000e-01 +-1.053000000000000e+00 +-1.134600000000000e+00 +-1.191800000000000e+00 +-1.214500000000000e+00 +-1.183100000000000e+00 +-1.080200000000000e+00 +-9.043099999999999e-01 +-6.754300000000000e-01 +-4.283500000000000e-01 +-1.967100000000000e-01 + 1.492400000000000e-03 + 1.680000000000000e-01 + 3.161600000000000e-01 + 4.568600000000000e-01 + 5.885000000000000e-01 + 6.970700000000000e-01 + 7.654500000000000e-01 + 7.847200000000000e-01 + 7.598300000000000e-01 + 7.067700000000000e-01 + 6.437100000000000e-01 + 5.823000000000000e-01 + 5.239900000000000e-01 + 4.624600000000000e-01 + 3.898800000000000e-01 + 3.032200000000000e-01 + 2.077900000000000e-01 + 1.170900000000000e-01 + 4.908900000000000e-02 + 1.970900000000000e-02 + 3.511300000000000e-02 + 8.526400000000001e-02 + 1.421800000000000e-01 + 1.656000000000000e-01 + 1.158700000000000e-01 +-2.987600000000000e-02 +-2.655200000000000e-01 +-5.539700000000000e-01 +-8.378400000000000e-01 +-1.058800000000000e+00 +-1.176800000000000e+00 +-1.181500000000000e+00 +-1.089400000000000e+00 +-9.321700000000001e-01 +-7.407899999999999e-01 +-5.359500000000000e-01 +-3.268500000000000e-01 +-1.170600000000000e-01 + 8.862399999999999e-02 + 2.814700000000000e-01 + 4.514600000000000e-01 + 5.918600000000001e-01 + 7.014000000000000e-01 + 7.819100000000000e-01 + 8.337800000000000e-01 + 8.535000000000000e-01 + 8.359100000000000e-01 + 7.799500000000000e-01 + 6.930900000000000e-01 + 5.905600000000000e-01 + 4.889100000000000e-01 + 3.982000000000000e-01 + 3.179400000000000e-01 + 2.395500000000000e-01 + 1.531800000000000e-01 + 5.415100000000000e-02 +-5.471700000000000e-02 +-1.650600000000000e-01 +-2.665100000000000e-01 +-3.490800000000000e-01 +-4.044400000000000e-01 +-4.276900000000000e-01 +-4.209200000000000e-01 +-3.966800000000000e-01 +-3.773400000000000e-01 +-3.879700000000000e-01 +-4.448500000000000e-01 +-5.461400000000000e-01 +-6.707600000000000e-01 +-7.868900000000000e-01 +-8.645900000000000e-01 +-8.849100000000000e-01 +-8.407000000000000e-01 +-7.314400000000000e-01 +-5.585500000000000e-01 +-3.263900000000000e-01 +-4.786600000000000e-02 + 2.516700000000000e-01 + 5.380800000000000e-01 + 7.797700000000000e-01 + 9.596500000000000e-01 + 1.079400000000000e+00 + 1.153100000000000e+00 + 1.194300000000000e+00 + 1.206900000000000e+00 + 1.184100000000000e+00 + 1.116700000000000e+00 + 1.000400000000000e+00 + 8.389100000000000e-01 + 6.397400000000000e-01 + 4.089600000000000e-01 + 1.508000000000000e-01 +-1.275400000000000e-01 +-4.103300000000000e-01 +-6.734100000000000e-01 +-8.910900000000000e-01 +-1.045300000000000e+00 +-1.129900000000000e+00 +-1.147900000000000e+00 +-1.104800000000000e+00 +-1.005600000000000e+00 +-8.576900000000000e-01 +-6.777000000000000e-01 +-4.927900000000000e-01 +-3.329400000000000e-01 +-2.169700000000000e-01 +-1.421600000000000e-01 +-8.573000000000000e-02 +-1.813900000000000e-02 + 8.028600000000000e-02 + 2.101700000000000e-01 + 3.558200000000000e-01 + 4.953400000000000e-01 + 6.092100000000000e-01 + 6.819800000000000e-01 + 6.994600000000000e-01 + 6.485000000000000e-01 + 5.234200000000000e-01 + 3.354600000000000e-01 + 1.165100000000000e-01 +-8.899500000000000e-02 +-2.412800000000000e-01 +-3.204700000000000e-01 +-3.297900000000000e-01 +-2.849400000000000e-01 +-1.987600000000000e-01 +-7.330200000000001e-02 + 9.477099999999999e-02 + 3.008100000000000e-01 + 5.228100000000000e-01 + 7.246100000000000e-01 + 8.701900000000000e-01 + 9.386100000000001e-01 + 9.289500000000001e-01 + 8.526200000000000e-01 + 7.200900000000000e-01 + 5.325500000000000e-01 + 2.842800000000000e-01 +-2.721000000000000e-02 +-3.913200000000000e-01 +-7.814000000000000e-01 +-1.159400000000000e+00 +-1.484200000000000e+00 +-1.719000000000000e+00 +-1.836900000000000e+00 +-1.825600000000000e+00 +-1.691100000000000e+00 +-1.457700000000000e+00 +-1.161400000000000e+00 +-8.366500000000000e-01 +-5.043000000000000e-01 +-1.669300000000000e-01 + 1.832200000000000e-01 + 5.492400000000000e-01 + 9.176400000000000e-01 + 1.258300000000000e+00 + 1.536400000000000e+00 + 1.727200000000000e+00 + 1.824100000000000e+00 + 1.835100000000000e+00 + 1.772600000000000e+00 + 1.645900000000000e+00 + 1.461100000000000e+00 + 1.226700000000000e+00 + 9.559900000000000e-01 + 6.637900000000000e-01 + 3.576700000000000e-01 + 3.408100000000000e-02 +-3.153600000000000e-01 +-6.896900000000000e-01 +-1.066800000000000e+00 +-1.404300000000000e+00 +-1.655300000000000e+00 +-1.789600000000000e+00 +-1.806100000000000e+00 +-1.728800000000000e+00 +-1.590100000000000e+00 +-1.411600000000000e+00 +-1.196800000000000e+00 +-9.375800000000000e-01 +-6.281900000000000e-01 +-2.773800000000000e-01 + 8.950100000000000e-02 + 4.373500000000000e-01 + 7.314700000000000e-01 + 9.457800000000000e-01 + 1.067100000000000e+00 + 1.096900000000000e+00 + 1.050700000000000e+00 + 9.559700000000000e-01 + 8.454199999999999e-01 + 7.474400000000000e-01 + 6.776200000000000e-01 + 6.357800000000000e-01 + 6.101200000000000e-01 + 5.854300000000000e-01 + 5.494800000000000e-01 + 4.942200000000000e-01 + 4.131300000000000e-01 + 2.997300000000000e-01 + 1.503400000000000e-01 +-3.016700000000000e-02 +-2.254600000000000e-01 +-4.121000000000000e-01 +-5.701500000000000e-01 +-6.928200000000000e-01 +-7.876100000000000e-01 +-8.669900000000000e-01 +-9.348500000000000e-01 +-9.789200000000000e-01 +-9.756000000000000e-01 +-9.048600000000000e-01 +-7.651100000000000e-01 +-5.774000000000000e-01 +-3.758800000000000e-01 +-1.904500000000000e-01 +-3.322200000000000e-02 + 1.027900000000000e-01 + 2.327000000000000e-01 + 3.646200000000000e-01 + 4.907200000000000e-01 + 5.905300000000000e-01 + 6.439900000000000e-01 + 6.456900000000000e-01 + 6.109500000000000e-01 + 5.695800000000000e-01 + 5.501800000000000e-01 + 5.641300000000000e-01 + 5.983500000000000e-01 + 6.215800000000000e-01 + 6.010200000000000e-01 + 5.200000000000000e-01 + 3.863200000000000e-01 + 2.260800000000000e-01 + 6.714900000000000e-02 +-7.717000000000000e-02 +-2.129200000000000e-01 +-3.553300000000000e-01 +-5.105700000000000e-01 +-6.627200000000000e-01 +-7.763700000000000e-01 +-8.144900000000000e-01 +-7.604000000000000e-01 +-6.288200000000000e-01 +-4.584500000000000e-01 +-2.914100000000000e-01 +-1.537300000000000e-01 +-4.991300000000000e-02 + 2.675500000000000e-02 + 7.829200000000000e-02 + 9.469000000000000e-02 + 6.171100000000000e-02 +-2.244200000000000e-02 +-1.358600000000000e-01 +-2.379500000000000e-01 +-2.890600000000000e-01 +-2.714700000000000e-01 +-1.963500000000000e-01 +-9.175800000000001e-02 + 1.944200000000000e-02 + 1.347700000000000e-01 + 2.687900000000000e-01 + 4.335300000000000e-01 + 6.176800000000000e-01 + 7.812900000000000e-01 + 8.719000000000000e-01 + 8.529000000000000e-01 + 7.259900000000000e-01 + 5.329300000000000e-01 + 3.356000000000000e-01 + 1.866100000000000e-01 + 1.077400000000000e-01 + 8.708700000000000e-02 + 9.303200000000000e-02 + 9.384000000000001e-02 + 7.037300000000000e-02 + 1.680700000000000e-02 +-6.659800000000000e-02 +-1.799800000000000e-01 +-3.233700000000000e-01 +-4.901800000000000e-01 +-6.611200000000000e-01 +-8.055800000000000e-01 +-8.919600000000000e-01 +-9.016300000000000e-01 +-8.378100000000001e-01 +-7.233900000000000e-01 +-5.885899999999999e-01 +-4.558300000000000e-01 +-3.308900000000000e-01 +-2.052200000000000e-01 +-6.690300000000000e-02 + 8.755900000000000e-02 + 2.482700000000000e-01 + 3.964200000000000e-01 + 5.141800000000000e-01 + 5.927600000000000e-01 + 6.336200000000000e-01 + 6.431600000000000e-01 + 6.258800000000000e-01 + 5.816800000000000e-01 + 5.087000000000000e-01 + 4.088800000000000e-01 + 2.911400000000000e-01 + 1.696700000000000e-01 + 5.885500000000000e-02 +-3.082700000000000e-02 +-9.330800000000000e-02 +-1.245900000000000e-01 +-1.213900000000000e-01 +-8.341000000000000e-02 +-1.827600000000000e-02 + 5.581400000000000e-02 + 1.137900000000000e-01 + 1.336600000000000e-01 + 1.070700000000000e-01 + 4.346600000000000e-02 +-3.576200000000000e-02 +-1.096100000000000e-01 +-1.684300000000000e-01 +-2.163600000000000e-01 +-2.642100000000000e-01 +-3.182700000000000e-01 +-3.731200000000000e-01 +-4.131500000000000e-01 +-4.212400000000000e-01 +-3.883100000000000e-01 +-3.174300000000000e-01 +-2.208600000000000e-01 +-1.129400000000000e-01 +-4.571100000000000e-03 + 9.756500000000000e-02 + 1.875400000000000e-01 + 2.564200000000000e-01 + 2.920700000000000e-01 + 2.839300000000000e-01 + 2.300300000000000e-01 + 1.419100000000000e-01 + 4.365300000000000e-02 +-3.584700000000000e-02 +-7.417799999999999e-02 +-6.487100000000000e-02 +-2.001500000000000e-02 + 3.563000000000000e-02 + 7.612500000000000e-02 + 8.541200000000000e-02 + 6.230300000000000e-02 + 1.761800000000000e-02 +-3.338600000000000e-02 +-7.768000000000000e-02 +-1.063900000000000e-01 +-1.127200000000000e-01 +-9.033500000000000e-02 +-3.583500000000000e-02 + 4.532300000000000e-02 + 1.350600000000000e-01 + 2.067200000000000e-01 + 2.373000000000000e-01 + 2.210400000000000e-01 + 1.746500000000000e-01 + 1.289700000000000e-01 + 1.113200000000000e-01 + 1.301200000000000e-01 + 1.719600000000000e-01 + 2.129100000000000e-01 + 2.348300000000000e-01 + 2.346500000000000e-01 + 2.201700000000000e-01 + 1.971700000000000e-01 + 1.595500000000000e-01 + 9.118700000000000e-02 +-2.164100000000000e-02 +-1.773500000000000e-01 +-3.563200000000000e-01 +-5.302900000000000e-01 +-6.760300000000000e-01 +-7.821600000000000e-01 +-8.446600000000000e-01 +-8.566400000000000e-01 +-8.036500000000000e-01 +-6.706800000000001e-01 +-4.567300000000000e-01 +-1.850400000000000e-01 + 1.006900000000000e-01 + 3.531900000000000e-01 + 5.406300000000001e-01 + 6.550600000000000e-01 + 7.062400000000000e-01 + 7.076600000000000e-01 + 6.669600000000000e-01 + 5.873600000000000e-01 + 4.765400000000000e-01 + 3.526700000000000e-01 + 2.400700000000000e-01 + 1.562300000000000e-01 + 1.003300000000000e-01 + 5.293900000000000e-02 +-1.165600000000000e-02 +-1.085000000000000e-01 +-2.316700000000000e-01 +-3.564600000000000e-01 +-4.512600000000000e-01 +-4.905500000000000e-01 +-4.620000000000000e-01 +-3.668000000000000e-01 +-2.166200000000000e-01 +-3.114100000000000e-02 + 1.635400000000000e-01 + 3.378700000000000e-01 + 4.646500000000000e-01 + 5.257600000000000e-01 + 5.160800000000000e-01 + 4.425000000000000e-01 + 3.193800000000000e-01 + 1.645300000000000e-01 +-2.045300000000000e-03 +-1.579700000000000e-01 +-2.803700000000000e-01 +-3.513500000000000e-01 +-3.646100000000000e-01 +-3.280200000000000e-01 +-2.596400000000000e-01 +-1.794400000000000e-01 +-1.030100000000000e-01 +-4.111800000000000e-02 +-3.621500000000000e-03 +-1.584900000000000e-03 +-4.317500000000000e-02 +-1.252800000000000e-01 +-2.285800000000000e-01 +-3.227300000000000e-01 +-3.806600000000000e-01 +-3.926400000000000e-01 +-3.694800000000000e-01 +-3.319400000000000e-01 +-2.941400000000000e-01 +-2.535400000000000e-01 +-1.949000000000000e-01 +-1.038000000000000e-01 + 2.182300000000000e-02 + 1.715600000000000e-01 + 3.321700000000000e-01 + 4.965800000000000e-01 + 6.624300000000000e-01 + 8.210700000000000e-01 + 9.481000000000001e-01 + 1.007800000000000e+00 + 9.723200000000000e-01 + 8.429000000000000e-01 + 6.551800000000000e-01 + 4.615200000000000e-01 + 3.002200000000000e-01 + 1.736400000000000e-01 + 5.149600000000000e-02 +-1.021100000000000e-01 +-2.975800000000000e-01 +-5.073700000000000e-01 +-6.812800000000000e-01 +-7.780500000000000e-01 +-7.907100000000000e-01 +-7.484700000000000e-01 +-6.958700000000000e-01 +-6.654700000000000e-01 +-6.626600000000000e-01 +-6.698700000000000e-01 +-6.627999999999999e-01 +-6.246600000000000e-01 +-5.493300000000000e-01 +-4.356800000000000e-01 +-2.821900000000000e-01 +-8.867000000000000e-02 + 1.363400000000000e-01 + 3.705600000000000e-01 + 5.819400000000000e-01 + 7.406900000000000e-01 + 8.312900000000000e-01 + 8.560100000000000e-01 + 8.275600000000000e-01 + 7.572300000000000e-01 + 6.476300000000000e-01 + 4.957800000000000e-01 + 3.039100000000000e-01 + 8.961400000000000e-02 +-1.132200000000000e-01 +-2.650100000000000e-01 +-3.375400000000000e-01 +-3.276900000000000e-01 +-2.594200000000000e-01 +-1.721100000000000e-01 +-1.007700000000000e-01 +-5.927300000000000e-02 +-3.607000000000000e-02 +-5.425300000000000e-03 + 5.244200000000000e-02 + 1.349000000000000e-01 + 2.152400000000000e-01 + 2.576000000000000e-01 + 2.392500000000000e-01 + 1.651800000000000e-01 + 6.467199999999999e-02 +-2.781100000000000e-02 +-9.419700000000000e-02 +-1.412600000000000e-01 +-1.903400000000000e-01 +-2.564900000000000e-01 +-3.334700000000000e-01 +-3.959900000000000e-01 +-4.176100000000000e-01 +-3.902200000000000e-01 +-3.302400000000000e-01 +-2.669000000000000e-01 +-2.218600000000000e-01 +-1.956500000000000e-01 +-1.704800000000000e-01 +-1.262400000000000e-01 +-5.704100000000000e-02 + 2.338300000000000e-02 + 8.991600000000000e-02 + 1.207700000000000e-01 + 1.086200000000000e-01 + 6.293799999999999e-02 + 5.399300000000000e-03 +-3.703700000000000e-02 +-3.874500000000000e-02 + 1.770100000000000e-02 + 1.341100000000000e-01 + 2.919400000000000e-01 + 4.556800000000000e-01 + 5.861600000000000e-01 + 6.581399999999999e-01 + 6.706200000000000e-01 + 6.418100000000000e-01 + 5.913400000000000e-01 + 5.230200000000000e-01 + 4.221300000000000e-01 + 2.706800000000000e-01 + 6.917300000000000e-02 +-1.527800000000000e-01 +-3.469700000000000e-01 +-4.719200000000000e-01 +-5.148100000000000e-01 +-4.943100000000000e-01 +-4.434100000000000e-01 +-3.866200000000000e-01 +-3.292800000000000e-01 +-2.651500000000000e-01 +-1.932600000000000e-01 +-1.274700000000000e-01 +-8.975700000000000e-02 +-9.322200000000000e-02 +-1.303200000000000e-01 +-1.777000000000000e-01 +-2.144500000000000e-01 +-2.387900000000000e-01 +-2.685300000000000e-01 +-3.239400000000000e-01 +-4.060700000000000e-01 +-4.876300000000000e-01 +-5.243100000000001e-01 +-4.788900000000000e-01 +-3.419900000000000e-01 +-1.363300000000000e-01 + 9.583700000000001e-02 + 3.122000000000000e-01 + 4.847900000000000e-01 + 6.038000000000000e-01 + 6.734800000000000e-01 + 7.054700000000000e-01 + 7.131400000000000e-01 + 7.067700000000000e-01 + 6.894700000000000e-01 + 6.558700000000000e-01 + 5.961800000000000e-01 + 5.054200000000000e-01 + 3.918100000000000e-01 + 2.770300000000000e-01 + 1.857800000000000e-01 + 1.307100000000000e-01 + 1.039700000000000e-01 + 8.251300000000000e-02 + 4.401600000000000e-02 +-1.881100000000000e-02 +-9.674600000000000e-02 +-1.764600000000000e-01 +-2.560900000000000e-01 +-3.502700000000000e-01 +-4.793000000000000e-01 +-6.503000000000000e-01 +-8.453300000000000e-01 +-1.026200000000000e+00 +-1.152500000000000e+00 +-1.199900000000000e+00 +-1.165700000000000e+00 +-1.060000000000000e+00 +-8.922900000000000e-01 +-6.656700000000000e-01 +-3.822200000000000e-01 +-5.421400000000000e-02 + 2.903800000000000e-01 + 6.137600000000000e-01 + 8.815200000000000e-01 + 1.073600000000000e+00 + 1.185900000000000e+00 + 1.223800000000000e+00 + 1.194700000000000e+00 + 1.105700000000000e+00 + 9.661200000000000e-01 + 7.897500000000000e-01 + 5.934000000000000e-01 + 3.916100000000000e-01 + 1.936600000000000e-01 + 6.155100000000000e-03 +-1.610200000000000e-01 +-2.920200000000000e-01 +-3.705500000000000e-01 +-3.911000000000000e-01 +-3.673100000000000e-01 +-3.293000000000000e-01 +-3.097500000000000e-01 +-3.270300000000000e-01 +-3.767300000000000e-01 +-4.368100000000000e-01 +-4.822200000000000e-01 +-4.985600000000000e-01 +-4.865500000000000e-01 +-4.562500000000000e-01 +-4.171400000000000e-01 +-3.711100000000000e-01 +-3.120600000000000e-01 +-2.303100000000000e-01 +-1.184900000000000e-01 + 2.393600000000000e-02 + 1.880900000000000e-01 + 3.556900000000000e-01 + 5.026300000000000e-01 + 6.062300000000000e-01 + 6.537700000000000e-01 + 6.470200000000000e-01 + 5.990400000000000e-01 + 5.243700000000000e-01 + 4.295000000000000e-01 + 3.114600000000000e-01 + 1.662400000000000e-01 + 3.362600000000000e-04 +-1.647000000000000e-01 +-3.004200000000000e-01 +-3.873500000000000e-01 +-4.266900000000000e-01 +-4.382100000000000e-01 +-4.454600000000000e-01 +-4.592600000000000e-01 +-4.717600000000000e-01 +-4.645100000000000e-01 +-4.225300000000000e-01 +-3.428000000000000e-01 +-2.317400000000000e-01 +-9.713600000000000e-02 + 5.569400000000000e-02 + 2.187400000000000e-01 + 3.734300000000000e-01 + 4.909700000000000e-01 + 5.456400000000000e-01 + 5.328100000000000e-01 + 4.762200000000000e-01 + 4.149900000000000e-01 + 3.774000000000000e-01 + 3.608300000000000e-01 + 3.350400000000000e-01 + 2.678900000000000e-01 + 1.543700000000000e-01 + 2.511500000000000e-02 +-7.367500000000000e-02 +-1.144800000000000e-01 +-1.101900000000000e-01 +-1.057300000000000e-01 +-1.456600000000000e-01 +-2.425600000000000e-01 +-3.702200000000000e-01 +-4.853200000000000e-01 +-5.590300000000000e-01 +-5.927800000000000e-01 +-6.068100000000000e-01 +-6.130900000000000e-01 +-5.968200000000000e-01 +-5.232000000000000e-01 +-3.646700000000000e-01 +-1.270500000000000e-01 + 1.462100000000000e-01 + 3.950400000000000e-01 + 5.732100000000000e-01 + 6.667400000000000e-01 + 6.897900000000000e-01 + 6.656400000000000e-01 + 6.095900000000000e-01 + 5.260300000000000e-01 + 4.177600000000000e-01 + 2.958700000000000e-01 + 1.798800000000000e-01 + 8.810300000000000e-02 + 2.733500000000000e-02 +-9.182500000000000e-03 +-3.442500000000000e-02 +-5.809100000000000e-02 +-8.307100000000001e-02 +-1.095800000000000e-01 +-1.413600000000000e-01 +-1.866700000000000e-01 +-2.522700000000000e-01 +-3.349600000000000e-01 +-4.179200000000000e-01 +-4.748100000000000e-01 +-4.793600000000000e-01 +-4.150900000000000e-01 +-2.817700000000000e-01 +-9.835199999999999e-02 + 9.778400000000000e-02 + 2.571300000000000e-01 + 3.321800000000000e-01 + 2.973800000000000e-01 + 1.655800000000000e-01 +-1.108000000000000e-02 +-1.618500000000000e-01 +-2.315700000000000e-01 +-2.087400000000000e-01 +-1.289600000000000e-01 +-4.983800000000000e-02 +-1.332100000000000e-02 +-2.029000000000000e-02 +-3.429700000000000e-02 +-1.058000000000000e-02 + 7.103300000000000e-02 + 1.924100000000000e-01 + 3.106400000000000e-01 + 3.869900000000000e-01 + 4.098500000000000e-01 + 3.970300000000000e-01 + 3.791300000000000e-01 + 3.784900000000000e-01 + 3.983400000000000e-01 + 4.258800000000000e-01 + 4.420500000000000e-01 + 4.283900000000000e-01 + 3.679700000000000e-01 + 2.451400000000000e-01 + 5.045800000000000e-02 +-2.094700000000000e-01 +-5.048800000000000e-01 +-7.869000000000000e-01 +-1.003600000000000e+00 +-1.119200000000000e+00 +-1.124900000000000e+00 +-1.034600000000000e+00 +-8.717300000000000e-01 +-6.576300000000000e-01 +-4.088400000000000e-01 +-1.429500000000000e-01 + 1.164800000000000e-01 + 3.427100000000000e-01 + 5.155100000000000e-01 + 6.292900000000000e-01 + 6.918600000000000e-01 + 7.138800000000000e-01 + 6.976300000000000e-01 + 6.352600000000000e-01 + 5.192600000000001e-01 + 3.570100000000000e-01 + 1.772000000000000e-01 + 2.085700000000000e-02 +-7.839300000000000e-02 +-1.117000000000000e-01 +-9.781800000000000e-02 +-6.936500000000000e-02 +-5.188900000000000e-02 +-4.986500000000000e-02 +-4.826600000000000e-02 +-2.742400000000000e-02 + 1.989300000000000e-02 + 8.093800000000000e-02 + 1.296300000000000e-01 + 1.424700000000000e-01 + 1.130800000000000e-01 + 5.605300000000000e-02 +-1.911200000000000e-03 +-3.808800000000000e-02 +-4.685200000000000e-02 +-4.192700000000000e-02 +-4.644600000000000e-02 +-7.714699999999999e-02 +-1.328400000000000e-01 +-1.948200000000000e-01 +-2.392500000000000e-01 +-2.535100000000000e-01 +-2.451800000000000e-01 +-2.372300000000000e-01 +-2.520300000000000e-01 +-2.953200000000000e-01 +-3.512100000000000e-01 +-3.921600000000000e-01 +-3.964400000000000e-01 +-3.603800000000000e-01 +-2.965700000000000e-01 +-2.199700000000000e-01 +-1.336600000000000e-01 +-2.617600000000000e-02 + 1.164100000000000e-01 + 2.927500000000000e-01 + 4.769600000000000e-01 + 6.267100000000000e-01 + 7.045800000000000e-01 + 6.989200000000000e-01 + 6.301200000000000e-01 + 5.383200000000000e-01 + 4.611200000000000e-01 + 4.155400000000000e-01 + 3.943100000000000e-01 + 3.759700000000000e-01 + 3.396600000000000e-01 + 2.745600000000000e-01 + 1.802600000000000e-01 + 6.134500000000000e-02 +-7.708900000000000e-02 +-2.291600000000000e-01 +-3.848100000000000e-01 +-5.277200000000000e-01 +-6.379500000000000e-01 +-6.985400000000000e-01 +-7.022800000000000e-01 +-6.547600000000000e-01 +-5.720200000000000e-01 +-4.744500000000000e-01 +-3.796300000000000e-01 +-2.971600000000000e-01 +-2.273400000000000e-01 +-1.640600000000000e-01 +-1.007200000000000e-01 +-3.624300000000000e-02 + 2.277200000000000e-02 + 6.584000000000000e-02 + 8.689800000000000e-02 + 9.168300000000000e-02 + 9.816100000000000e-02 + 1.279500000000000e-01 + 1.932900000000000e-01 + 2.882100000000000e-01 + 3.909200000000000e-01 + 4.764900000000000e-01 + 5.315000000000000e-01 + 5.601000000000000e-01 + 5.767099999999999e-01 + 5.908099999999999e-01 + 5.951600000000000e-01 + 5.669900000000000e-01 + 4.822000000000000e-01 + 3.328400000000000e-01 + 1.358600000000000e-01 +-7.301000000000001e-02 +-2.561300000000000e-01 +-3.904100000000000e-01 +-4.737500000000000e-01 +-5.191300000000000e-01 +-5.424400000000000e-01 +-5.525700000000000e-01 +-5.491900000000000e-01 +-5.274200000000000e-01 +-4.845500000000000e-01 +-4.240800000000000e-01 +-3.553400000000000e-01 +-2.896500000000000e-01 +-2.353000000000000e-01 +-1.931700000000000e-01 +-1.548600000000000e-01 +-1.050000000000000e-01 +-2.840000000000000e-02 + 8.005400000000000e-02 + 2.081800000000000e-01 + 3.277600000000000e-01 + 4.063100000000000e-01 + 4.242700000000000e-01 + 3.874200000000000e-01 + 3.255800000000000e-01 + 2.768200000000000e-01 + 2.659400000000000e-01 + 2.907300000000000e-01 + 3.247600000000000e-01 + 3.347900000000000e-01 + 3.011600000000000e-01 + 2.283000000000000e-01 + 1.396100000000000e-01 + 6.183300000000000e-02 + 1.011900000000000e-02 +-1.705300000000000e-02 +-3.192400000000000e-02 +-4.691600000000000e-02 +-6.769500000000001e-02 +-9.367800000000000e-02 +-1.235800000000000e-01 +-1.602700000000000e-01 +-2.108100000000000e-01 +-2.817300000000000e-01 +-3.728400000000000e-01 +-4.736300000000000e-01 +-5.638500000000000e-01 +-6.181300000000000e-01 +-6.132100000000000e-01 +-5.357100000000000e-01 +-3.882000000000000e-01 +-1.905600000000000e-01 + 2.513200000000000e-02 + 2.252400000000000e-01 + 3.858100000000000e-01 + 4.983000000000000e-01 + 5.665400000000000e-01 + 5.974100000000000e-01 + 5.927600000000000e-01 + 5.489400000000000e-01 + 4.647000000000000e-01 + 3.503500000000000e-01 + 2.293300000000000e-01 + 1.285000000000000e-01 + 6.255800000000000e-02 + 2.413700000000000e-02 +-1.198500000000000e-02 +-7.185700000000000e-02 +-1.636900000000000e-01 +-2.706100000000000e-01 +-3.600500000000000e-01 +-4.032300000000000e-01 +-3.911800000000000e-01 +-3.368600000000000e-01 +-2.633700000000000e-01 +-1.878700000000000e-01 +-1.128200000000000e-01 +-2.946500000000000e-02 + 7.073699999999999e-02 + 1.856100000000000e-01 + 2.991900000000000e-01 + 3.861100000000000e-01 + 4.191100000000000e-01 + 3.759300000000000e-01 + 2.451300000000000e-01 + 3.205300000000000e-02 +-2.361800000000000e-01 +-5.111300000000000e-01 +-7.333600000000000e-01 +-8.512999999999999e-01 +-8.398800000000000e-01 +-7.075800000000000e-01 +-4.870400000000000e-01 +-2.153800000000000e-01 + 8.148200000000000e-02 + 3.894500000000000e-01 + 6.929200000000000e-01 + 9.607599999999999e-01 + 1.146800000000000e+00 + 1.208800000000000e+00 + 1.133800000000000e+00 + 9.510500000000000e-01 + 7.190100000000000e-01 + 4.940900000000000e-01 + 3.009100000000000e-01 + 1.248100000000000e-01 +-6.876500000000001e-02 +-3.029700000000000e-01 +-5.692700000000001e-01 +-8.317800000000000e-01 +-1.050500000000000e+00 +-1.204000000000000e+00 +-1.293600000000000e+00 +-1.328200000000000e+00 +-1.304000000000000e+00 +-1.198800000000000e+00 +-9.863200000000000e-01 +-6.614000000000000e-01 +-2.550300000000000e-01 + 1.725500000000000e-01 + 5.571000000000000e-01 + 8.564200000000000e-01 + 1.060300000000000e+00 + 1.180700000000000e+00 + 1.232600000000000e+00 + 1.221900000000000e+00 + 1.147100000000000e+00 + 1.011500000000000e+00 + 8.300400000000000e-01 + 6.272500000000000e-01 + 4.249000000000000e-01 + 2.326600000000000e-01 + 4.874400000000000e-02 +-1.303600000000000e-01 +-3.002600000000000e-01 +-4.480500000000000e-01 +-5.610800000000000e-01 +-6.367900000000000e-01 +-6.839000000000000e-01 +-7.129500000000000e-01 +-7.240400000000000e-01 +-7.027400000000000e-01 +-6.289300000000000e-01 +-4.927600000000000e-01 +-3.055600000000000e-01 +-9.732399999999999e-02 + 9.741500000000000e-02 + 2.545800000000000e-01 + 3.659600000000000e-01 + 4.329000000000000e-01 + 4.557700000000000e-01 + 4.291400000000000e-01 + 3.470400000000000e-01 + 2.130500000000000e-01 + 4.579600000000000e-02 +-1.260100000000000e-01 +-2.757300000000000e-01 +-3.889900000000000e-01 +-4.644300000000000e-01 +-5.052600000000000e-01 +-5.094100000000000e-01 +-4.669000000000000e-01 +-3.667800000000000e-01 +-2.080600000000000e-01 +-5.879200000000000e-03 + 2.119000000000000e-01 + 4.150800000000000e-01 + 5.812000000000000e-01 + 6.989800000000000e-01 + 7.652300000000000e-01 + 7.798300000000000e-01 + 7.440500000000000e-01 + 6.632000000000000e-01 + 5.496799999999999e-01 + 4.218300000000000e-01 + 2.975100000000000e-01 + 1.860100000000000e-01 + 8.415300000000001e-02 +-2.032100000000000e-02 +-1.399100000000000e-01 +-2.786200000000000e-01 +-4.283000000000000e-01 +-5.715700000000000e-01 +-6.883500000000000e-01 +-7.621700000000000e-01 +-7.833900000000000e-01 +-7.498899999999999e-01 +-6.666100000000000e-01 +-5.455400000000000e-01 +-4.052800000000000e-01 +-2.687300000000000e-01 +-1.579600000000000e-01 +-8.704400000000000e-02 +-5.573500000000000e-02 +-4.727100000000000e-02 +-3.242600000000000e-02 + 2.047300000000000e-02 + 1.325800000000000e-01 + 3.036300000000000e-01 + 5.083299999999999e-01 + 7.029200000000000e-01 + 8.405800000000000e-01 + 8.894700000000000e-01 + 8.449400000000000e-01 + 7.294600000000000e-01 + 5.794700000000000e-01 + 4.261200000000000e-01 + 2.803800000000000e-01 + 1.312700000000000e-01 +-4.164500000000000e-02 +-2.488300000000000e-01 +-4.761300000000000e-01 +-6.841300000000000e-01 +-8.227900000000000e-01 +-8.535800000000000e-01 +-7.675300000000000e-01 +-5.897000000000000e-01 +-3.686200000000000e-01 +-1.567400000000000e-01 + 7.988400000000000e-03 + 1.113300000000000e-01 + 1.603300000000000e-01 + 1.730800000000000e-01 + 1.676600000000000e-01 + 1.558100000000000e-01 + 1.432400000000000e-01 + 1.337700000000000e-01 + 1.330400000000000e-01 + 1.482800000000000e-01 + 1.843800000000000e-01 + 2.391600000000000e-01 + 3.016300000000000e-01 + 3.551100000000000e-01 + 3.834000000000000e-01 + 3.763700000000000e-01 + 3.315300000000000e-01 + 2.514000000000000e-01 + 1.396400000000000e-01 +-1.082700000000000e-05 +-1.607400000000000e-01 +-3.280100000000000e-01 +-4.785900000000000e-01 +-5.866000000000000e-01 +-6.349399999999999e-01 +-6.252200000000000e-01 +-5.784600000000000e-01 +-5.240500000000000e-01 +-4.822800000000000e-01 +-4.513700000000000e-01 +-4.081600000000000e-01 +-3.231100000000000e-01 +-1.804900000000000e-01 + 9.487600000000001e-03 + 2.151600000000000e-01 + 4.013000000000000e-01 + 5.482000000000000e-01 + 6.584000000000000e-01 + 7.468000000000000e-01 + 8.223100000000000e-01 + 8.755700000000000e-01 + 8.830800000000000e-01 + 8.252900000000000e-01 + 7.046700000000000e-01 + 5.487900000000000e-01 + 3.940800000000000e-01 + 2.611500000000000e-01 + 1.399900000000000e-01 +-2.270800000000000e-03 +-1.948500000000000e-01 +-4.361400000000000e-01 +-6.859200000000000e-01 +-8.836700000000000e-01 +-9.814900000000000e-01 +-9.695000000000000e-01 +-8.768899999999999e-01 +-7.498500000000000e-01 +-6.229800000000000e-01 +-5.047900000000000e-01 +-3.852400000000000e-01 +-2.563700000000000e-01 +-1.277200000000000e-01 +-2.361400000000000e-02 + 3.472000000000000e-02 + 4.725300000000000e-02 + 3.819700000000000e-02 + 4.137200000000000e-02 + 7.923400000000000e-02 + 1.513800000000000e-01 + 2.400100000000000e-01 + 3.260200000000000e-01 + 4.017200000000000e-01 + 4.705500000000000e-01 + 5.362400000000000e-01 + 5.928900000000000e-01 + 6.260700000000000e-01 + 6.245200000000000e-01 + 5.917800000000000e-01 + 5.468400000000000e-01 + 5.118700000000000e-01 + 4.963300000000000e-01 + 4.899800000000000e-01 + 4.699000000000000e-01 + 4.148400000000000e-01 + 3.152000000000000e-01 + 1.717100000000000e-01 +-1.292500000000000e-02 +-2.385100000000000e-01 +-5.013200000000000e-01 +-7.821500000000000e-01 +-1.040900000000000e+00 +-1.227300000000000e+00 +-1.304200000000000e+00 +-1.267100000000000e+00 +-1.145900000000000e+00 +-9.845400000000000e-01 +-8.139100000000000e-01 +-6.371800000000000e-01 +-4.385400000000000e-01 +-2.073900000000000e-01 + 4.198800000000000e-02 + 2.718300000000000e-01 + 4.429100000000000e-01 + 5.404300000000000e-01 + 5.836500000000000e-01 + 6.119300000000000e-01 + 6.579300000000000e-01 + 7.277200000000000e-01 + 8.012200000000000e-01 + 8.502200000000000e-01 + 8.583100000000000e-01 + 8.278700000000000e-01 + 7.713600000000000e-01 + 6.970400000000000e-01 + 6.024100000000000e-01 + 4.804900000000000e-01 + 3.319200000000000e-01 + 1.708400000000000e-01 + 1.847700000000000e-02 +-1.107600000000000e-01 +-2.187600000000000e-01 +-3.206000000000000e-01 +-4.306700000000000e-01 +-5.491000000000000e-01 +-6.588900000000000e-01 +-7.361100000000000e-01 +-7.653000000000000e-01 +-7.489500000000000e-01 +-7.050400000000000e-01 +-6.553200000000000e-01 +-6.129500000000000e-01 +-5.771900000000000e-01 +-5.365700000000000e-01 +-4.768100000000000e-01 +-3.879400000000000e-01 +-2.679000000000000e-01 +-1.228500000000000e-01 + 3.421900000000000e-02 + 1.861100000000000e-01 + 3.154500000000000e-01 + 4.100900000000000e-01 + 4.676200000000000e-01 + 4.963400000000000e-01 + 5.113700000000000e-01 + 5.277400000000000e-01 + 5.542000000000000e-01 + 5.910600000000000e-01 + 6.320400000000000e-01 + 6.675900000000000e-01 + 6.867100000000000e-01 + 6.765600000000001e-01 + 6.218100000000000e-01 + 5.069800000000000e-01 + 3.229300000000000e-01 + 7.549200000000000e-02 +-2.083800000000000e-01 +-4.819000000000000e-01 +-6.891800000000000e-01 +-7.833900000000000e-01 +-7.454100000000000e-01 +-5.944900000000000e-01 +-3.841600000000000e-01 +-1.825400000000000e-01 +-4.481000000000000e-02 + 9.098900000000000e-03 +-7.922900000000000e-04 +-3.102900000000000e-02 +-4.376900000000000e-02 +-3.121200000000000e-02 +-2.003100000000000e-02 +-5.241000000000000e-02 +-1.552800000000000e-01 +-3.173900000000000e-01 +-4.891900000000000e-01 +-6.058900000000000e-01 +-6.194200000000000e-01 +-5.202599999999999e-01 +-3.376700000000000e-01 +-1.209300000000000e-01 + 8.496800000000000e-02 + 2.552200000000000e-01 + 3.865900000000000e-01 + 4.880700000000000e-01 + 5.693100000000000e-01 + 6.334300000000000e-01 + 6.755900000000000e-01 + 6.857200000000000e-01 + 6.531300000000000e-01 + 5.723900000000000e-01 + 4.490200000000000e-01 + 3.019300000000000e-01 + 1.589800000000000e-01 + 4.576600000000000e-02 +-2.715200000000000e-02 +-6.949900000000001e-02 +-1.039500000000000e-01 +-1.496200000000000e-01 +-2.076800000000000e-01 +-2.603300000000000e-01 +-2.848900000000000e-01 +-2.732500000000000e-01 +-2.415800000000000e-01 +-2.218100000000000e-01 +-2.400100000000000e-01 +-2.971700000000000e-01 +-3.668000000000000e-01 +-4.114700000000000e-01 +-4.063700000000000e-01 +-3.532000000000000e-01 +-2.753700000000000e-01 +-1.996600000000000e-01 +-1.388300000000000e-01 +-8.763400000000000e-02 +-3.311800000000000e-02 + 3.091600000000000e-02 + 9.747100000000000e-02 + 1.522900000000000e-01 + 1.857600000000000e-01 + 1.999200000000000e-01 + 2.045000000000000e-01 + 2.060700000000000e-01 + 2.005700000000000e-01 + 1.768300000000000e-01 + 1.293500000000000e-01 + 7.023500000000001e-02 + 2.939300000000000e-02 + 4.029200000000000e-02 + 1.194000000000000e-01 + 2.528500000000000e-01 + 4.000200000000000e-01 + 5.129600000000000e-01 + 5.603100000000000e-01 + 5.413600000000000e-01 + 4.817800000000000e-01 + 4.141600000000000e-01 + 3.554300000000000e-01 + 2.953300000000000e-01 + 2.031000000000000e-01 + 4.859100000000000e-02 +-1.749000000000000e-01 +-4.400300000000000e-01 +-6.938600000000000e-01 +-8.808700000000000e-01 +-9.678200000000000e-01 +-9.566300000000000e-01 +-8.791600000000001e-01 +-7.782400000000000e-01 +-6.863700000000000e-01 +-6.135100000000000e-01 +-5.481500000000000e-01 +-4.680800000000000e-01 +-3.532800000000000e-01 +-1.945300000000000e-01 + 3.840600000000000e-03 + 2.255000000000000e-01 + 4.458200000000000e-01 + 6.374200000000000e-01 + 7.771500000000000e-01 + 8.530700000000000e-01 + 8.675400000000000e-01 + 8.339299999999999e-01 + 7.681200000000000e-01 + 6.805500000000000e-01 + 5.748700000000000e-01 + 4.542900000000000e-01 + 3.299800000000000e-01 + 2.229700000000000e-01 + 1.554800000000000e-01 + 1.364300000000000e-01 + 1.520300000000000e-01 + 1.698400000000000e-01 + 1.552400000000000e-01 + 8.942100000000000e-02 +-2.345300000000000e-02 +-1.639200000000000e-01 +-3.123400000000000e-01 +-4.585200000000000e-01 +-5.985700000000000e-01 +-7.232000000000000e-01 +-8.100900000000000e-01 +-8.302500000000000e-01 +-7.663900000000000e-01 +-6.302600000000000e-01 +-4.643500000000000e-01 +-3.239800000000000e-01 +-2.496900000000000e-01 +-2.472700000000000e-01 +-2.875400000000000e-01 +-3.244700000000000e-01 +-3.191800000000000e-01 +-2.555100000000000e-01 +-1.406900000000000e-01 + 4.860000000000000e-03 + 1.598200000000000e-01 + 3.094400000000000e-01 + 4.471200000000000e-01 + 5.725600000000000e-01 + 6.886400000000000e-01 + 7.971500000000000e-01 + 8.936400000000000e-01 + 9.635300000000000e-01 + 9.836200000000000e-01 + 9.309500000000001e-01 + 7.953600000000000e-01 + 5.881999999999999e-01 + 3.405300000000000e-01 + 9.099200000000000e-02 +-1.291500000000000e-01 +-3.043400000000000e-01 +-4.324300000000000e-01 +-5.157000000000000e-01 +-5.539100000000000e-01 +-5.448900000000000e-01 +-4.912700000000000e-01 +-4.060600000000000e-01 +-3.113100000000000e-01 +-2.298300000000000e-01 +-1.759600000000000e-01 +-1.515800000000000e-01 +-1.492000000000000e-01 +-1.582800000000000e-01 +-1.700300000000000e-01 +-1.787600000000000e-01 +-1.817000000000000e-01 +-1.797800000000000e-01 +-1.789200000000000e-01 +-1.889700000000000e-01 +-2.181400000000000e-01 +-2.656200000000000e-01 +-3.179200000000000e-01 +-3.532200000000000e-01 +-3.518300000000000e-01 +-3.056000000000000e-01 +-2.194900000000000e-01 +-1.050800000000000e-01 + 2.762000000000000e-02 + 1.725900000000000e-01 + 3.230300000000000e-01 + 4.656200000000000e-01 + 5.813600000000000e-01 + 6.546800000000000e-01 + 6.835000000000000e-01 + 6.804800000000000e-01 + 6.624400000000000e-01 + 6.357300000000000e-01 + 5.905600000000000e-01 + 5.104600000000000e-01 + 3.900000000000000e-01 + 2.455900000000000e-01 + 1.084700000000000e-01 + 4.225600000000000e-03 +-6.453299999999999e-02 +-1.171100000000000e-01 +-1.751600000000000e-01 +-2.409600000000000e-01 +-2.931900000000000e-01 +-3.054100000000000e-01 +-2.726500000000000e-01 +-2.228700000000000e-01 +-2.011300000000000e-01 +-2.373800000000000e-01 +-3.234700000000000e-01 +-4.190000000000000e-01 +-4.823800000000000e-01 +-5.019100000000000e-01 +-5.009400000000001e-01 +-5.123200000000000e-01 +-5.434300000000000e-01 +-5.621800000000000e-01 +-5.182400000000000e-01 +-3.839600000000000e-01 +-1.822100000000000e-01 + 2.303100000000000e-02 + 1.684300000000000e-01 + 2.339300000000000e-01 + 2.534600000000000e-01 + 2.850500000000000e-01 + 3.634700000000000e-01 + 4.716900000000000e-01 + 5.531300000000000e-01 + 5.548800000000000e-01 + 4.693900000000000e-01 + 3.436500000000000e-01 + 2.501100000000000e-01 + 2.407500000000000e-01 + 3.162500000000000e-01 + 4.285600000000000e-01 + 5.115499999999999e-01 + 5.168500000000000e-01 + 4.335300000000000e-01 + 2.847500000000000e-01 + 1.100500000000000e-01 +-5.294500000000000e-02 +-1.787800000000000e-01 +-2.566600000000000e-01 +-2.890400000000000e-01 +-2.888600000000000e-01 +-2.744800000000000e-01 +-2.621300000000000e-01 +-2.585200000000000e-01 +-2.588100000000000e-01 +-2.523200000000000e-01 +-2.323700000000000e-01 +-2.031800000000000e-01 +-1.781700000000000e-01 +-1.713300000000000e-01 +-1.884900000000000e-01 +-2.252000000000000e-01 +-2.717900000000000e-01 +-3.202500000000000e-01 +-3.664500000000000e-01 +-4.064100000000000e-01 +-4.313800000000000e-01 +-4.277700000000000e-01 +-3.836600000000000e-01 +-2.969300000000000e-01 +-1.780400000000000e-01 +-4.471000000000000e-02 + 8.786099999999999e-02 + 2.135700000000000e-01 + 3.341600000000000e-01 + 4.520800000000000e-01 + 5.639200000000000e-01 + 6.598600000000000e-01 + 7.290000000000000e-01 + 7.655200000000000e-01 + 7.707400000000000e-01 + 7.500300000000000e-01 + 7.081100000000000e-01 + 6.467400000000000e-01 + 5.657500000000000e-01 + 4.649900000000000e-01 + 3.446500000000000e-01 + 2.040400000000000e-01 + 4.175400000000000e-02 +-1.409800000000000e-01 +-3.353000000000000e-01 +-5.228600000000000e-01 +-6.805500000000000e-01 +-7.902500000000000e-01 +-8.472499999999999e-01 +-8.611200000000000e-01 +-8.481900000000000e-01 +-8.209600000000000e-01 +-7.822000000000000e-01 +-7.269000000000000e-01 +-6.493300000000000e-01 +-5.482600000000000e-01 +-4.263200000000000e-01 +-2.851800000000000e-01 +-1.223700000000000e-01 + 6.579599999999999e-02 + 2.766800000000000e-01 + 4.950300000000000e-01 + 6.935500000000000e-01 + 8.409200000000000e-01 + 9.125600000000000e-01 + 8.983800000000000e-01 + 8.048800000000000e-01 + 6.532100000000000e-01 + 4.755500000000000e-01 + 3.099500000000000e-01 + 1.918800000000000e-01 + 1.421800000000000e-01 + 1.561100000000000e-01 + 2.012800000000000e-01 + 2.296200000000000e-01 + 1.998500000000000e-01 + 9.830100000000000e-02 +-5.465400000000000e-02 +-2.171900000000000e-01 +-3.493700000000000e-01 +-4.319000000000000e-01 +-4.690600000000000e-01 +-4.761200000000000e-01 +-4.631800000000000e-01 +-4.284400000000000e-01 +-3.651900000000000e-01 +-2.751400000000000e-01 +-1.758100000000000e-01 +-9.482100000000000e-02 +-5.525200000000000e-02 +-6.336500000000000e-02 +-1.078000000000000e-01 +-1.696600000000000e-01 +-2.342200000000000e-01 +-2.944200000000000e-01 +-3.442400000000000e-01 +-3.692900000000000e-01 +-3.451500000000000e-01 +-2.476300000000000e-01 +-6.897100000000000e-02 + 1.719100000000000e-01 + 4.334300000000000e-01 + 6.681200000000000e-01 + 8.414000000000000e-01 + 9.405500000000000e-01 + 9.697500000000000e-01 + 9.370100000000000e-01 + 8.440500000000000e-01 + 6.868000000000000e-01 + 4.653500000000000e-01 + 1.946000000000000e-01 +-9.328100000000000e-02 +-3.575300000000000e-01 +-5.631800000000000e-01 +-6.920400000000000e-01 +-7.444100000000000e-01 +-7.323100000000000e-01 +-6.708800000000000e-01 +-5.743300000000000e-01 +-4.576700000000000e-01 +-3.399100000000000e-01 +-2.425100000000000e-01 +-1.814900000000000e-01 +-1.575500000000000e-01 +-1.523100000000000e-01 +-1.359200000000000e-01 +-8.319500000000001e-02 + 1.109300000000000e-02 + 1.280900000000000e-01 + 2.352500000000000e-01 + 3.047500000000000e-01 + 3.279800000000000e-01 + 3.166800000000000e-01 + 2.912500000000000e-01 + 2.655600000000000e-01 + 2.399800000000000e-01 + 2.072200000000000e-01 + 1.653700000000000e-01 + 1.265400000000000e-01 + 1.125100000000000e-01 + 1.394500000000000e-01 + 2.023300000000000e-01 + 2.716000000000000e-01 + 3.060600000000000e-01 + 2.748400000000000e-01 + 1.748700000000000e-01 + 3.307000000000000e-02 +-1.074400000000000e-01 +-2.083300000000000e-01 +-2.522000000000000e-01 +-2.464600000000000e-01 +-2.155500000000000e-01 +-1.877300000000000e-01 +-1.834100000000000e-01 +-2.089100000000000e-01 +-2.561100000000000e-01 +-3.066800000000000e-01 +-3.395800000000000e-01 +-3.395300000000000e-01 +-3.036800000000000e-01 +-2.428000000000000e-01 +-1.757700000000000e-01 +-1.196300000000000e-01 +-8.100300000000001e-02 +-5.406000000000000e-02 +-2.603600000000000e-02 + 1.365500000000000e-02 + 6.699800000000000e-02 + 1.274300000000000e-01 + 1.852600000000000e-01 + 2.337700000000000e-01 + 2.720800000000000e-01 + 3.037600000000000e-01 + 3.338300000000000e-01 + 3.664000000000000e-01 + 4.032700000000000e-01 + 4.423000000000000e-01 + 4.751600000000000e-01 + 4.865000000000000e-01 + 4.579000000000000e-01 + 3.765000000000000e-01 + 2.441500000000000e-01 + 7.987400000000000e-02 +-8.808299999999999e-02 +-2.369800000000000e-01 +-3.614800000000000e-01 +-4.736000000000000e-01 +-5.897200000000000e-01 +-7.132300000000000e-01 +-8.253800000000000e-01 +-8.916500000000001e-01 +-8.798600000000000e-01 +-7.779199999999999e-01 +-5.997900000000000e-01 +-3.762900000000000e-01 +-1.383900000000000e-01 + 9.535700000000000e-02 + 3.199300000000000e-01 + 5.348100000000000e-01 + 7.331700000000000e-01 + 8.976300000000000e-01 + 1.005300000000000e+00 + 1.038000000000000e+00 + 9.914100000000000e-01 + 8.767900000000000e-01 + 7.164700000000001e-01 + 5.345000000000000e-01 + 3.479800000000000e-01 + 1.627500000000000e-01 +-2.452500000000000e-02 +-2.188200000000000e-01 +-4.175000000000000e-01 +-6.051900000000000e-01 +-7.571800000000000e-01 +-8.508300000000000e-01 +-8.786500000000000e-01 +-8.539600000000001e-01 +-8.039300000000000e-01 +-7.532000000000000e-01 +-7.088400000000000e-01 +-6.571200000000000e-01 +-5.748400000000000e-01 +-4.469400000000000e-01 +-2.775300000000000e-01 +-8.693400000000000e-02 + 1.019100000000000e-01 + 2.757600000000000e-01 + 4.323700000000000e-01 + 5.710100000000000e-01 + 6.826600000000000e-01 + 7.506300000000000e-01 + 7.631800000000000e-01 + 7.276500000000000e-01 + 6.724700000000000e-01 + 6.320600000000000e-01 + 6.241100000000001e-01 + 6.362700000000000e-01 + 6.337400000000000e-01 + 5.832600000000000e-01 + 4.762900000000000e-01 + 3.342900000000000e-01 + 1.925300000000000e-01 + 7.514200000000000e-02 +-1.982300000000000e-02 +-1.152000000000000e-01 +-2.349800000000000e-01 +-3.858500000000000e-01 +-5.529800000000000e-01 +-7.103900000000000e-01 +-8.354900000000000e-01 +-9.161700000000000e-01 +-9.480600000000000e-01 +-9.285200000000000e-01 +-8.560300000000000e-01 +-7.358300000000000e-01 +-5.848000000000000e-01 +-4.273900000000000e-01 +-2.828200000000000e-01 +-1.531000000000000e-01 +-2.374200000000000e-02 + 1.210000000000000e-01 + 2.788000000000000e-01 + 4.223400000000000e-01 + 5.127900000000000e-01 + 5.258600000000000e-01 + 4.710200000000000e-01 + 3.884200000000000e-01 + 3.237200000000000e-01 + 2.987400000000000e-01 + 2.991200000000000e-01 + 2.885000000000000e-01 + 2.385700000000000e-01 + 1.530300000000000e-01 + 6.818500000000000e-02 + 3.040100000000000e-02 + 6.733599999999999e-02 + 1.732700000000000e-01 + 3.170700000000000e-01 + 4.642700000000000e-01 + 5.951300000000000e-01 + 7.056000000000000e-01 + 7.924099999999999e-01 + 8.365100000000000e-01 + 8.000500000000000e-01 + 6.421000000000000e-01 + 3.439500000000000e-01 +-7.217999999999999e-02 +-5.433200000000000e-01 +-9.853700000000000e-01 +-1.321600000000000e+00 +-1.505900000000000e+00 +-1.531400000000000e+00 +-1.423900000000000e+00 +-1.227600000000000e+00 +-9.887600000000000e-01 +-7.441400000000000e-01 +-5.153300000000000e-01 +-3.083800000000000e-01 +-1.182400000000000e-01 + 6.295000000000001e-02 + 2.368000000000000e-01 + 3.932700000000000e-01 + 5.131000000000000e-01 + 5.783600000000000e-01 + 5.859300000000000e-01 + 5.550900000000000e-01 + 5.227200000000000e-01 + 5.264900000000000e-01 + 5.849400000000000e-01 + 6.862900000000000e-01 + 7.933300000000000e-01 + 8.618500000000000e-01 + 8.612800000000000e-01 + 7.853400000000000e-01 + 6.477500000000000e-01 + 4.684200000000000e-01 + 2.617400000000000e-01 + 3.519000000000000e-02 +-2.023900000000000e-01 +-4.320600000000000e-01 +-6.249200000000000e-01 +-7.528300000000000e-01 +-8.025700000000000e-01 +-7.824700000000000e-01 +-7.166400000000001e-01 +-6.310900000000000e-01 +-5.423000000000000e-01 +-4.553700000000000e-01 +-3.705800000000000e-01 +-2.897100000000000e-01 +-2.153100000000000e-01 +-1.438700000000000e-01 +-6.165700000000000e-02 + 4.883000000000000e-02 + 1.930600000000000e-01 + 3.509300000000000e-01 + 4.785900000000000e-01 + 5.289300000000000e-01 + 4.791800000000000e-01 + 3.468600000000000e-01 + 1.818600000000000e-01 + 3.885400000000000e-02 +-5.157300000000000e-02 +-9.405100000000000e-02 +-1.162500000000000e-01 +-1.445200000000000e-01 +-1.859000000000000e-01 +-2.278300000000000e-01 +-2.520100000000000e-01 +-2.484300000000000e-01 +-2.179400000000000e-01 +-1.638200000000000e-01 +-8.287700000000001e-02 + 3.329600000000000e-02 + 1.866600000000000e-01 + 3.613500000000000e-01 + 5.245900000000000e-01 + 6.419899999999999e-01 + 6.967200000000000e-01 + 6.974300000000000e-01 + 6.678400000000000e-01 + 6.252500000000000e-01 + 5.646200000000000e-01 + 4.605100000000000e-01 + 2.861500000000000e-01 + 3.570000000000000e-02 +-2.657900000000000e-01 +-5.710499999999999e-01 +-8.307000000000000e-01 +-1.011300000000000e+00 +-1.101700000000000e+00 +-1.107900000000000e+00 +-1.043900000000000e+00 +-9.256300000000000e-01 +-7.698600000000000e-01 +-5.929500000000000e-01 +-4.076700000000000e-01 +-2.180700000000000e-01 +-1.807300000000000e-02 + 2.025800000000000e-01 + 4.468000000000000e-01 + 6.999200000000000e-01 + 9.278800000000000e-01 + 1.086200000000000e+00 + 1.135800000000000e+00 + 1.057800000000000e+00 + 8.618600000000000e-01 + 5.851100000000000e-01 + 2.826000000000000e-01 + 1.221400000000000e-02 +-1.824900000000000e-01 +-2.858100000000000e-01 +-3.139200000000000e-01 +-3.058600000000000e-01 +-3.037500000000000e-01 +-3.317400000000000e-01 +-3.852100000000000e-01 +-4.364100000000000e-01 +-4.528300000000000e-01 +-4.160400000000000e-01 +-3.292700000000000e-01 +-2.104600000000000e-01 +-7.836799999999999e-02 + 5.650600000000000e-02 + 1.895500000000000e-01 + 3.123100000000000e-01 + 4.060600000000000e-01 + 4.467000000000000e-01 + 4.191900000000000e-01 + 3.306700000000000e-01 + 2.111900000000000e-01 + 9.981700000000000e-02 + 2.459800000000000e-02 +-1.045900000000000e-02 +-2.351100000000000e-02 +-4.083200000000000e-02 +-8.088700000000000e-02 +-1.462200000000000e-01 +-2.256700000000000e-01 +-3.021600000000000e-01 +-3.592000000000000e-01 +-3.835300000000000e-01 +-3.655300000000000e-01 +-3.010800000000000e-01 +-1.952200000000000e-01 +-6.406700000000000e-02 + 6.811000000000000e-02 + 1.768800000000000e-01 + 2.458400000000000e-01 + 2.698800000000000e-01 + 2.519500000000000e-01 + 1.972700000000000e-01 + 1.105200000000000e-01 +-1.200200000000000e-03 +-1.228500000000000e-01 +-2.293100000000000e-01 +-2.906900000000000e-01 +-2.835100000000000e-01 +-2.013200000000000e-01 +-5.856400000000000e-02 + 1.141900000000000e-01 + 2.802000000000000e-01 + 4.063100000000000e-01 + 4.688100000000000e-01 + 4.555700000000000e-01 + 3.666800000000000e-01 + 2.149000000000000e-01 + 2.544400000000000e-02 +-1.668200000000000e-01 +-3.238500000000000e-01 +-4.132800000000000e-01 +-4.169200000000000e-01 +-3.360400000000000e-01 +-1.916900000000000e-01 +-1.939800000000000e-02 + 1.407300000000000e-01 + 2.563600000000000e-01 + 3.134100000000000e-01 + 3.199200000000000e-01 + 3.002300000000000e-01 + 2.813900000000000e-01 + 2.785500000000000e-01 + 2.878100000000000e-01 + 2.908200000000000e-01 + 2.681200000000000e-01 + 2.118700000000000e-01 + 1.294800000000000e-01 + 3.627300000000000e-02 +-5.648700000000000e-02 +-1.484000000000000e-01 +-2.464500000000000e-01 +-3.544700000000000e-01 +-4.650600000000000e-01 +-5.610500000000000e-01 +-6.261800000000000e-01 +-6.564000000000000e-01 +-6.623300000000000e-01 +-6.602900000000000e-01 +-6.582500000000000e-01 +-6.476700000000000e-01 +-6.075600000000000e-01 +-5.182300000000000e-01 +-3.747200000000000e-01 +-1.904700000000000e-01 + 1.066600000000000e-02 + 2.076300000000000e-01 + 3.909900000000000e-01 + 5.619000000000000e-01 + 7.236200000000000e-01 + 8.728000000000000e-01 + 9.974000000000000e-01 + 1.082200000000000e+00 + 1.117100000000000e+00 + 1.103000000000000e+00 + 1.049900000000000e+00 + 9.702900000000000e-01 + 8.715000000000001e-01 + 7.516800000000000e-01 + 6.011500000000000e-01 + 4.084000000000000e-01 + 1.675200000000000e-01 +-1.163900000000000e-01 +-4.261400000000000e-01 +-7.360200000000000e-01 +-1.018300000000000e+00 +-1.249200000000000e+00 +-1.412500000000000e+00 +-1.498100000000000e+00 +-1.500800000000000e+00 +-1.419000000000000e+00 +-1.256900000000000e+00 +-1.027300000000000e+00 +-7.516000000000000e-01 +-4.548300000000000e-01 +-1.578000000000000e-01 + 1.281000000000000e-01 + 3.988900000000000e-01 + 6.495700000000000e-01 + 8.657000000000000e-01 + 1.022600000000000e+00 + 1.095100000000000e+00 + 1.072100000000000e+00 + 9.665400000000000e-01 + 8.117600000000000e-01 + 6.474400000000000e-01 + 5.022700000000000e-01 + 3.848100000000000e-01 + 2.863700000000000e-01 + 1.916700000000000e-01 + 8.898399999999999e-02 +-2.599000000000000e-02 +-1.512400000000000e-01 +-2.799500000000000e-01 +-3.995500000000000e-01 +-4.911800000000000e-01 +-5.344900000000000e-01 +-5.186800000000000e-01 +-4.534200000000000e-01 +-3.691000000000000e-01 +-3.018500000000000e-01 +-2.704200000000000e-01 +-2.609000000000000e-01 +-2.327700000000000e-01 +-1.456900000000000e-01 + 9.641400000000000e-03 + 1.981200000000000e-01 + 3.553300000000000e-01 + 4.224100000000000e-01 + 3.779400000000000e-01 + 2.465700000000000e-01 + 8.067900000000000e-02 +-6.981800000000001e-02 +-1.780000000000000e-01 +-2.393700000000000e-01 +-2.562800000000000e-01 +-2.243100000000000e-01 +-1.339700000000000e-01 + 1.439300000000000e-02 + 1.966400000000000e-01 + 3.668100000000000e-01 + 4.768500000000000e-01 + 5.014200000000000e-01 + 4.502400000000000e-01 + 3.592500000000000e-01 + 2.672600000000000e-01 + 1.945200000000000e-01 + 1.366700000000000e-01 + 7.497100000000000e-02 +-7.216500000000000e-03 +-1.142300000000000e-01 +-2.388400000000000e-01 +-3.691900000000000e-01 +-4.936600000000000e-01 +-5.998700000000000e-01 +-6.714599999999999e-01 +-6.889700000000000e-01 +-6.375600000000000e-01 +-5.168500000000000e-01 +-3.451800000000000e-01 +-1.539000000000000e-01 + 2.512600000000000e-02 + 1.708600000000000e-01 + 2.766300000000000e-01 + 3.455700000000000e-01 + 3.832900000000000e-01 + 3.934200000000000e-01 + 3.776300000000000e-01 + 3.376300000000000e-01 + 2.759500000000000e-01 + 1.957700000000000e-01 + 1.022100000000000e-01 + 6.509900000000000e-03 +-7.021300000000000e-02 +-9.942700000000000e-02 +-5.693100000000000e-02 + 6.087800000000000e-02 + 2.271300000000000e-01 + 3.905100000000000e-01 + 4.969300000000000e-01 + 5.149899999999999e-01 + 4.492800000000000e-01 + 3.328000000000000e-01 + 2.038600000000000e-01 + 8.382600000000000e-02 +-2.929300000000000e-02 +-1.483400000000000e-01 +-2.768100000000000e-01 +-3.977700000000000e-01 +-4.814300000000000e-01 +-5.060800000000000e-01 +-4.768400000000000e-01 +-4.272000000000000e-01 +-4.008200000000000e-01 +-4.249900000000000e-01 +-4.930300000000000e-01 +-5.670600000000000e-01 +-5.988599999999999e-01 +-5.555600000000001e-01 +-4.344500000000000e-01 +-2.596100000000000e-01 +-6.453100000000001e-02 + 1.266500000000000e-01 + 3.077500000000000e-01 + 4.847000000000000e-01 + 6.607000000000000e-01 + 8.231400000000000e-01 + 9.415600000000000e-01 + 9.790500000000000e-01 + 9.108700000000000e-01 + 7.400500000000000e-01 + 5.007400000000000e-01 + 2.470800000000000e-01 + 3.295000000000000e-02 +-1.070700000000000e-01 +-1.667700000000000e-01 +-1.644900000000000e-01 +-1.306000000000000e-01 +-9.414100000000000e-02 +-7.483600000000000e-02 +-8.205700000000000e-02 +-1.176200000000000e-01 +-1.786000000000000e-01 +-2.584200000000000e-01 +-3.475000000000000e-01 +-4.352800000000000e-01 +-5.134400000000000e-01 +-5.781700000000000e-01 +-6.288100000000000e-01 +-6.635000000000000e-01 +-6.749700000000000e-01 +-6.505900000000000e-01 +-5.777200000000000e-01 +-4.510900000000000e-01 +-2.771200000000000e-01 +-7.224500000000000e-02 + 1.434100000000000e-01 + 3.523200000000000e-01 + 5.419800000000000e-01 + 7.031200000000000e-01 + 8.270200000000000e-01 + 9.049199999999999e-01 + 9.301700000000001e-01 + 9.004300000000000e-01 + 8.178800000000001e-01 + 6.876000000000000e-01 + 5.170000000000000e-01 + 3.181800000000000e-01 + 1.114600000000000e-01 +-7.473600000000000e-02 +-2.111800000000000e-01 +-2.801000000000000e-01 +-2.849600000000000e-01 +-2.498800000000000e-01 +-2.073200000000000e-01 +-1.812900000000000e-01 +-1.771900000000000e-01 +-1.848600000000000e-01 +-1.918800000000000e-01 +-1.964200000000000e-01 +-2.098100000000000e-01 +-2.472800000000000e-01 +-3.147000000000000e-01 +-4.019100000000000e-01 +-4.873500000000000e-01 +-5.498499999999999e-01 +-5.781800000000000e-01 +-5.722100000000000e-01 +-5.369200000000000e-01 +-4.761000000000000e-01 +-3.912900000000000e-01 +-2.853900000000000e-01 +-1.655100000000000e-01 +-4.055700000000000e-02 + 8.491400000000000e-02 + 2.142300000000000e-01 + 3.545000000000000e-01 + 5.066600000000000e-01 + 6.577700000000000e-01 + 7.833500000000000e-01 + 8.598500000000000e-01 + 8.785700000000000e-01 + 8.504500000000000e-01 + 7.971100000000000e-01 + 7.350100000000001e-01 + 6.645100000000000e-01 + 5.723400000000000e-01 + 4.452000000000000e-01 + 2.835600000000000e-01 + 1.049200000000000e-01 +-6.584100000000000e-02 +-2.113500000000000e-01 +-3.309000000000000e-01 +-4.378400000000000e-01 +-5.483000000000000e-01 +-6.697200000000000e-01 +-7.964300000000000e-01 +-9.130800000000000e-01 +-1.001500000000000e+00 +-1.046300000000000e+00 +-1.037200000000000e+00 +-9.696500000000000e-01 +-8.456000000000000e-01 +-6.730200000000000e-01 +-4.637400000000000e-01 +-2.293200000000000e-01 + 2.191400000000000e-02 + 2.835200000000000e-01 + 5.454400000000000e-01 + 7.891000000000000e-01 + 9.886400000000000e-01 + 1.120000000000000e+00 + 1.172300000000000e+00 + 1.153400000000000e+00 + 1.084600000000000e+00 + 9.880400000000000e-01 + 8.747400000000000e-01 + 7.430500000000000e-01 + 5.860200000000000e-01 + 4.014400000000000e-01 + 1.957100000000000e-01 +-2.060700000000000e-02 +-2.403300000000000e-01 +-4.624900000000000e-01 +-6.875300000000000e-01 +-9.095800000000001e-01 +-1.113500000000000e+00 +-1.280000000000000e+00 +-1.394100000000000e+00 +-1.449200000000000e+00 +-1.441300000000000e+00 +-1.360700000000000e+00 +-1.188900000000000e+00 +-9.089900000000000e-01 +-5.227800000000000e-01 +-6.343699999999999e-02 + 4.097400000000000e-01 + 8.328200000000000e-01 + 1.162500000000000e+00 + 1.388100000000000e+00 + 1.524100000000000e+00 + 1.588600000000000e+00 + 1.586800000000000e+00 + 1.509900000000000e+00 + 1.349100000000000e+00 + 1.112500000000000e+00 + 8.308700000000000e-01 + 5.463100000000000e-01 + 2.931900000000000e-01 + 8.359000000000000e-02 +-9.326900000000000e-02 +-2.587700000000000e-01 +-4.289900000000000e-01 +-6.048600000000000e-01 +-7.724500000000000e-01 +-9.111200000000000e-01 +-1.003900000000000e+00 +-1.045400000000000e+00 +-1.043800000000000e+00 +-1.017600000000000e+00 +-9.863400000000000e-01 +-9.599700000000000e-01 +-9.323700000000000e-01 +-8.835900000000000e-01 +-7.919900000000000e-01 +-6.494000000000000e-01 +-4.690500000000000e-01 +-2.792100000000000e-01 +-1.055800000000000e-01 + 4.575700000000000e-02 + 1.918400000000000e-01 + 3.589600000000000e-01 + 5.606400000000000e-01 + 7.833500000000000e-01 + 9.904800000000000e-01 + 1.142200000000000e+00 + 1.217100000000000e+00 + 1.221600000000000e+00 + 1.181700000000000e+00 + 1.125300000000000e+00 + 1.068100000000000e+00 + 1.009900000000000e+00 + 9.401900000000000e-01 + 8.464000000000000e-01 + 7.176200000000000e-01 + 5.460600000000000e-01 + 3.295200000000000e-01 + 7.622400000000000e-02 +-1.922400000000000e-01 +-4.458200000000000e-01 +-6.588700000000000e-01 +-8.234200000000000e-01 +-9.520900000000000e-01 +-1.066900000000000e+00 +-1.181200000000000e+00 +-1.289500000000000e+00 +-1.372400000000000e+00 +-1.413800000000000e+00 +-1.414400000000000e+00 +-1.389400000000000e+00 +-1.349900000000000e+00 +-1.285200000000000e+00 +-1.161200000000000e+00 +-9.393000000000000e-01 +-6.051600000000000e-01 +-1.831100000000000e-01 + 2.733400000000000e-01 + 7.093699999999999e-01 + 1.093800000000000e+00 + 1.423500000000000e+00 + 1.706300000000000e+00 + 1.937600000000000e+00 + 2.092100000000000e+00 + 2.136300000000000e+00 + 2.051000000000000e+00 + 1.845700000000000e+00 + 1.552700000000000e+00 + 1.207400000000000e+00 + 8.305900000000001e-01 + 4.290800000000000e-01 + 1.058700000000000e-02 +-4.002600000000000e-01 +-7.614400000000000e-01 +-1.031500000000000e+00 +-1.193400000000000e+00 +-1.265600000000000e+00 +-1.291500000000000e+00 +-1.312900000000000e+00 +-1.345700000000000e+00 +-1.373300000000000e+00 +-1.360600000000000e+00 +-1.276900000000000e+00 +-1.113400000000000e+00 +-8.858400000000000e-01 +-6.232300000000000e-01 +-3.537200000000000e-01 +-9.593699999999999e-02 + 1.406600000000000e-01 + 3.501100000000000e-01 + 5.252200000000000e-01 + 6.579100000000000e-01 + 7.440900000000000e-01 + 7.891300000000000e-01 + 8.091500000000000e-01 + 8.257100000000001e-01 + 8.552500000000000e-01 + 8.986100000000000e-01 + 9.369400000000000e-01 + 9.381100000000000e-01 + 8.718700000000000e-01 + 7.261400000000000e-01 + 5.149100000000000e-01 + 2.725400000000000e-01 + 3.758900000000000e-02 +-1.637400000000000e-01 +-3.239700000000000e-01 +-4.477400000000000e-01 +-5.387100000000000e-01 +-5.913500000000000e-01 +-5.948000000000000e-01 +-5.460800000000000e-01 +-4.615200000000000e-01 +-3.760900000000000e-01 +-3.285100000000000e-01 +-3.406600000000000e-01 +-4.044700000000000e-01 +-4.844400000000000e-01 +-5.342400000000000e-01 +-5.177400000000000e-01 +-4.235400000000000e-01 +-2.673800000000000e-01 +-8.394500000000001e-02 + 8.686300000000000e-02 + 2.132200000000000e-01 + 2.804600000000000e-01 + 2.935000000000000e-01 + 2.719600000000000e-01 + 2.395500000000000e-01 + 2.129600000000000e-01 + 1.965200000000000e-01 + 1.864100000000000e-01 + 1.811200000000000e-01 + 1.895100000000000e-01 + 2.281400000000000e-01 + 3.075000000000000e-01 + 4.171000000000000e-01 + 5.223300000000000e-01 + 5.793600000000000e-01 + 5.603100000000000e-01 + 4.716400000000000e-01 + 3.513300000000000e-01 + 2.446100000000000e-01 + 1.741300000000000e-01 + 1.247400000000000e-01 + 5.379000000000000e-02 +-8.021100000000000e-02 +-2.895700000000000e-01 +-5.476500000000000e-01 +-8.013200000000000e-01 +-9.952800000000001e-01 +-1.092700000000000e+00 +-1.083000000000000e+00 +-9.778600000000000e-01 +-8.031199999999999e-01 +-5.922900000000000e-01 +-3.806500000000000e-01 +-1.975600000000000e-01 +-5.669100000000000e-02 + 5.022800000000000e-02 + 1.498300000000000e-01 + 2.729600000000000e-01 + 4.374200000000000e-01 + 6.383400000000000e-01 + 8.516000000000000e-01 + 1.046600000000000e+00 + 1.197800000000000e+00 + 1.288300000000000e+00 + 1.305500000000000e+00 + 1.237200000000000e+00 + 1.074300000000000e+00 + 8.194200000000000e-01 + 4.923400000000000e-01 + 1.253700000000000e-01 +-2.495400000000000e-01 +-6.125699999999999e-01 +-9.557600000000001e-01 +-1.270200000000000e+00 +-1.531100000000000e+00 +-1.695300000000000e+00 +-1.717600000000000e+00 +-1.576400000000000e+00 +-1.292300000000000e+00 +-9.242300000000000e-01 +-5.444600000000001e-01 +-2.075200000000000e-01 + 6.829600000000000e-02 + 2.970300000000000e-01 + 5.041900000000000e-01 + 7.040999999999999e-01 + 8.892900000000000e-01 + 1.035900000000000e+00 + 1.118300000000000e+00 + 1.123100000000000e+00 + 1.054300000000000e+00 + 9.302100000000000e-01 + 7.747800000000000e-01 + 6.083400000000000e-01 + 4.417200000000000e-01 + 2.753200000000000e-01 + 1.040600000000000e-01 +-7.330100000000001e-02 +-2.454200000000000e-01 +-3.866700000000000e-01 +-4.662500000000000e-01 +-4.653600000000000e-01 +-3.924800000000000e-01 +-2.859200000000000e-01 +-1.995000000000000e-01 +-1.779600000000000e-01 +-2.363800000000000e-01 +-3.555800000000000e-01 +-4.952700000000000e-01 +-6.154800000000000e-01 +-6.922300000000000e-01 +-7.196800000000000e-01 +-7.010400000000000e-01 +-6.384800000000000e-01 +-5.306300000000000e-01 +-3.785800000000000e-01 +-1.932100000000000e-01 + 4.409700000000000e-03 + 1.916900000000000e-01 + 3.565000000000000e-01 + 5.029100000000000e-01 + 6.454700000000000e-01 + 7.947200000000000e-01 + 9.437300000000000e-01 + 1.064900000000000e+00 + 1.120400000000000e+00 + 1.080500000000000e+00 + 9.398200000000000e-01 + 7.220800000000001e-01 + 4.710600000000000e-01 + 2.323500000000000e-01 + 3.577600000000000e-02 +-1.128600000000000e-01 +-2.274500000000000e-01 +-3.283600000000000e-01 +-4.289700000000000e-01 +-5.301000000000000e-01 +-6.248700000000000e-01 +-7.092600000000000e-01 +-7.893900000000000e-01 +-8.784200000000000e-01 +-9.836400000000000e-01 +-1.092300000000000e+00 +-1.167200000000000e+00 +-1.158400000000000e+00 +-1.025700000000000e+00 +-7.608400000000000e-01 +-3.950800000000000e-01 + 1.164600000000000e-02 + 3.943200000000000e-01 + 7.056700000000000e-01 + 9.268700000000000e-01 + 1.063100000000000e+00 + 1.130000000000000e+00 + 1.141200000000000e+00 + 1.103500000000000e+00 + 1.020800000000000e+00 + 9.006500000000000e-01 + 7.581400000000000e-01 + 6.141900000000000e-01 + 4.890100000000000e-01 + 3.947200000000000e-01 + 3.305400000000000e-01 + 2.822400000000000e-01 + 2.261600000000000e-01 + 1.364800000000000e-01 +-6.012400000000000e-03 +-2.062800000000000e-01 +-4.510100000000000e-01 +-7.101800000000000e-01 +-9.440900000000000e-01 +-1.114000000000000e+00 +-1.193000000000000e+00 +-1.172700000000000e+00 +-1.065400000000000e+00 +-8.985500000000000e-01 +-7.056400000000000e-01 +-5.162300000000000e-01 +-3.495600000000000e-01 +-2.140400000000000e-01 +-1.116600000000000e-01 +-4.285700000000000e-02 +-6.831800000000000e-03 + 3.799100000000000e-03 + 9.826600000000000e-03 + 4.588000000000000e-02 + 1.493400000000000e-01 + 3.407000000000000e-01 + 6.065400000000000e-01 + 8.977100000000000e-01 + 1.147300000000000e+00 + 1.299700000000000e+00 + 1.334400000000000e+00 + 1.268900000000000e+00 + 1.140700000000000e+00 + 9.808800000000000e-01 + 7.977400000000000e-01 + 5.805000000000000e-01 + 3.181100000000000e-01 + 1.692300000000000e-02 +-2.965100000000000e-01 +-5.888300000000000e-01 +-8.377300000000000e-01 +-1.039400000000000e+00 +-1.199800000000000e+00 +-1.318400000000000e+00 +-1.377400000000000e+00 +-1.346800000000000e+00 +-1.203200000000000e+00 +-9.473400000000000e-01 +-6.099400000000000e-01 +-2.422200000000000e-01 + 1.015800000000000e-01 + 3.789400000000000e-01 + 5.653300000000000e-01 + 6.534799999999999e-01 + 6.508600000000000e-01 + 5.777500000000000e-01 + 4.642000000000000e-01 + 3.430700000000000e-01 + 2.400700000000000e-01 + 1.663800000000000e-01 + 1.194500000000000e-01 + 9.190000000000000e-02 + 8.171000000000000e-02 + 9.549500000000000e-02 + 1.419100000000000e-01 + 2.206600000000000e-01 + 3.165000000000000e-01 + 4.033300000000000e-01 + 4.554300000000000e-01 + 4.570100000000000e-01 + 4.037900000000000e-01 + 2.980500000000000e-01 + 1.443900000000000e-01 +-4.809300000000000e-02 +-2.592900000000000e-01 +-4.557500000000000e-01 +-5.993500000000000e-01 +-6.645300000000000e-01 +-6.523099999999999e-01 +-5.892700000000000e-01 +-5.095200000000000e-01 +-4.316900000000000e-01 +-3.477600000000000e-01 +-2.334200000000000e-01 +-7.308900000000000e-02 + 1.185400000000000e-01 + 2.954800000000000e-01 + 4.027200000000000e-01 + 4.078300000000000e-01 + 3.212700000000000e-01 + 1.922000000000000e-01 + 8.260000000000001e-02 + 3.593900000000000e-02 + 5.844900000000000e-02 + 1.219400000000000e-01 + 1.836600000000000e-01 + 2.102300000000000e-01 + 1.925200000000000e-01 + 1.455800000000000e-01 + 9.599400000000000e-02 + 6.500200000000000e-02 + 5.631800000000000e-02 + 5.474700000000000e-02 + 3.591600000000000e-02 +-1.815900000000000e-02 +-1.063800000000000e-01 +-2.063800000000000e-01 +-2.850000000000000e-01 +-3.157400000000000e-01 +-2.930700000000000e-01 +-2.348100000000000e-01 +-1.711100000000000e-01 +-1.271800000000000e-01 +-1.102500000000000e-01 +-1.080400000000000e-01 +-9.807399999999999e-02 +-6.087900000000000e-02 + 1.070900000000000e-02 + 1.096000000000000e-01 + 2.182000000000000e-01 + 3.140700000000000e-01 + 3.752700000000000e-01 + 3.853000000000000e-01 + 3.378500000000000e-01 + 2.400800000000000e-01 + 1.116700000000000e-01 +-2.097300000000000e-02 +-1.328100000000000e-01 +-2.061400000000000e-01 +-2.318700000000000e-01 +-2.077600000000000e-01 +-1.382000000000000e-01 +-3.701500000000000e-02 + 6.978900000000000e-02 + 1.480800000000000e-01 + 1.688600000000000e-01 + 1.247300000000000e-01 + 3.775600000000000e-02 +-5.019200000000000e-02 +-1.010700000000000e-01 +-1.033700000000000e-01 +-7.724499999999999e-02 +-5.746600000000000e-02 +-6.633600000000001e-02 +-9.716000000000000e-02 +-1.212800000000000e-01 +-1.132000000000000e-01 +-7.367100000000000e-02 +-3.149700000000000e-02 +-2.186700000000000e-02 +-5.783700000000000e-02 +-1.176600000000000e-01 +-1.584500000000000e-01 +-1.460100000000000e-01 +-7.821599999999999e-02 + 1.508300000000000e-02 + 9.407400000000000e-02 + 1.347700000000000e-01 + 1.393900000000000e-01 + 1.259800000000000e-01 + 1.090100000000000e-01 + 8.825700000000000e-02 + 5.433000000000000e-02 + 3.631800000000000e-03 +-5.202000000000000e-02 +-9.035500000000000e-02 +-9.377900000000000e-02 +-6.124500000000000e-02 +-6.595800000000000e-03 + 5.466300000000000e-02 + 1.181600000000000e-01 + 1.917900000000000e-01 + 2.843300000000000e-01 + 3.917900000000000e-01 + 4.930900000000000e-01 + 5.588800000000000e-01 + 5.662300000000000e-01 + 5.082700000000000e-01 + 3.932700000000000e-01 + 2.366100000000000e-01 + 5.360100000000000e-02 +-1.420000000000000e-01 +-3.358800000000000e-01 +-5.127000000000000e-01 +-6.594500000000000e-01 +-7.692200000000000e-01 +-8.403800000000000e-01 +-8.709300000000000e-01 +-8.538200000000000e-01 +-7.800500000000000e-01 +-6.497600000000000e-01 +-4.822200000000000e-01 +-3.139200000000000e-01 +-1.817900000000000e-01 +-1.014000000000000e-01 +-5.645500000000000e-02 +-8.995800000000000e-03 + 7.551099999999999e-02 + 2.061500000000000e-01 + 3.634600000000000e-01 + 5.164100000000000e-01 + 6.449300000000000e-01 + 7.497800000000000e-01 + 8.429200000000000e-01 + 9.284300000000000e-01 + 9.917000000000000e-01 + 1.007000000000000e+00 + 9.574100000000000e-01 + 8.493900000000000e-01 + 7.094600000000000e-01 + 5.649100000000000e-01 + 4.246000000000000e-01 + 2.757400000000000e-01 + 9.867700000000000e-02 +-1.131600000000000e-01 +-3.450200000000000e-01 +-5.705500000000000e-01 +-7.699500000000000e-01 +-9.402900000000000e-01 +-1.089200000000000e+00 +-1.218600000000000e+00 +-1.313400000000000e+00 +-1.346500000000000e+00 +-1.297200000000000e+00 +-1.165900000000000e+00 +-9.750700000000000e-01 +-7.537700000000001e-01 +-5.206000000000000e-01 +-2.787300000000000e-01 +-2.621900000000000e-02 + 2.290800000000000e-01 + 4.651100000000000e-01 + 6.570400000000000e-01 + 7.955400000000000e-01 + 8.956000000000000e-01 + 9.866700000000000e-01 + 1.090200000000000e+00 + 1.201300000000000e+00 + 1.289000000000000e+00 + 1.313900000000000e+00 + 1.250600000000000e+00 + 1.099000000000000e+00 + 8.778700000000000e-01 + 6.098800000000000e-01 + 3.109400000000000e-01 +-8.494700000000001e-03 +-3.341000000000000e-01 +-6.410900000000000e-01 +-8.976499999999999e-01 +-1.076200000000000e+00 +-1.163900000000000e+00 +-1.164300000000000e+00 +-1.092200000000000e+00 +-9.658800000000000e-01 +-8.044900000000000e-01 +-6.279700000000000e-01 +-4.557000000000000e-01 +-3.002800000000000e-01 +-1.606600000000000e-01 +-2.266100000000000e-02 + 1.289100000000000e-01 + 2.930100000000000e-01 + 4.435200000000000e-01 + 5.390400000000000e-01 + 5.480699999999999e-01 + 4.729200000000000e-01 + 3.538200000000000e-01 + 2.479500000000000e-01 + 1.964100000000000e-01 + 2.019000000000000e-01 + 2.325600000000000e-01 + 2.480800000000000e-01 + 2.281400000000000e-01 + 1.820100000000000e-01 + 1.341800000000000e-01 + 9.917900000000000e-02 + 6.694799999999999e-02 + 1.040700000000000e-02 +-9.116100000000001e-02 +-2.317900000000000e-01 +-3.772800000000000e-01 +-4.829900000000000e-01 +-5.167800000000000e-01 +-4.710800000000000e-01 +-3.582500000000000e-01 +-1.976300000000000e-01 +-7.336800000000000e-03 + 1.931200000000000e-01 + 3.757700000000000e-01 + 5.044300000000000e-01 + 5.479000000000001e-01 + 4.985500000000000e-01 + 3.814900000000000e-01 + 2.441200000000000e-01 + 1.304600000000000e-01 + 5.684300000000000e-02 + 5.875300000000000e-03 +-5.759000000000000e-02 +-1.600200000000000e-01 +-3.005200000000000e-01 +-4.510100000000000e-01 +-5.719800000000000e-01 +-6.308600000000000e-01 +-6.112500000000000e-01 +-5.115499999999999e-01 +-3.401700000000000e-01 +-1.147800000000000e-01 + 1.343400000000000e-01 + 3.644400000000000e-01 + 5.305900000000000e-01 + 6.039500000000000e-01 + 5.867700000000000e-01 + 5.121800000000000e-01 + 4.264500000000000e-01 + 3.643500000000000e-01 + 3.333500000000000e-01 + 3.162800000000000e-01 + 2.880600000000000e-01 + 2.327400000000000e-01 + 1.487000000000000e-01 + 4.092400000000000e-02 +-8.963100000000000e-02 +-2.483000000000000e-01 +-4.376500000000000e-01 +-6.453000000000000e-01 +-8.403600000000000e-01 +-9.834000000000001e-01 +-1.043700000000000e+00 +-1.011100000000000e+00 +-8.954100000000000e-01 +-7.151100000000000e-01 +-4.864800000000000e-01 +-2.217300000000000e-01 + 6.465300000000000e-02 + 3.500500000000000e-01 + 6.067700000000000e-01 + 8.136500000000000e-01 + 9.666100000000000e-01 + 1.078000000000000e+00 + 1.162900000000000e+00 + 1.222000000000000e+00 + 1.235400000000000e+00 + 1.172500000000000e+00 + 1.013200000000000e+00 + 7.632900000000000e-01 + 4.537000000000000e-01 + 1.239600000000000e-01 +-1.978900000000000e-01 +-5.040600000000000e-01 +-7.990200000000000e-01 +-1.082200000000000e+00 +-1.335100000000000e+00 +-1.522200000000000e+00 +-1.604700000000000e+00 +-1.557700000000000e+00 +-1.379800000000000e+00 +-1.090900000000000e+00 +-7.238800000000000e-01 +-3.149200000000000e-01 + 1.014000000000000e-01 + 4.934200000000000e-01 + 8.328400000000000e-01 + 1.096400000000000e+00 + 1.268700000000000e+00 + 1.344100000000000e+00 + 1.327300000000000e+00 + 1.232000000000000e+00 + 1.078600000000000e+00 + 8.893300000000000e-01 + 6.830100000000000e-01 + 4.692100000000000e-01 + 2.474400000000000e-01 + 1.300400000000000e-02 +-2.323100000000000e-01 +-4.719700000000000e-01 +-6.763700000000000e-01 +-8.162199999999999e-01 +-8.801900000000000e-01 +-8.845600000000000e-01 +-8.664700000000000e-01 +-8.632400000000000e-01 +-8.903900000000000e-01 +-9.326000000000000e-01 +-9.529200000000000e-01 +-9.133000000000000e-01 +-7.930000000000000e-01 +-5.944199999999999e-01 +-3.365400000000000e-01 +-4.399700000000000e-02 + 2.597000000000000e-01 + 5.527700000000000e-01 + 8.140900000000000e-01 + 1.025200000000000e+00 + 1.175400000000000e+00 + 1.264300000000000e+00 + 1.298100000000000e+00 + 1.281400000000000e+00 + 1.211400000000000e+00 + 1.081800000000000e+00 + 8.924800000000001e-01 + 6.587300000000000e-01 + 4.081900000000000e-01 + 1.675400000000000e-01 +-5.169500000000000e-02 +-2.555100000000000e-01 +-4.546900000000000e-01 +-6.467400000000000e-01 +-8.083399999999999e-01 +-9.062700000000000e-01 +-9.201400000000000e-01 +-8.590100000000001e-01 +-7.581000000000000e-01 +-6.572100000000000e-01 +-5.770999999999999e-01 +-5.122900000000000e-01 +-4.449100000000000e-01 +-3.670400000000000e-01 +-2.921600000000000e-01 +-2.453700000000000e-01 +-2.402400000000000e-01 +-2.619800000000000e-01 +-2.715300000000000e-01 +-2.290000000000000e-01 +-1.188500000000000e-01 + 4.167100000000000e-02 + 2.160500000000000e-01 + 3.723500000000000e-01 + 4.990100000000000e-01 + 6.023500000000001e-01 + 6.907600000000000e-01 + 7.603000000000000e-01 + 7.934000000000000e-01 + 7.703600000000000e-01 + 6.832200000000000e-01 + 5.411100000000000e-01 + 3.649100000000000e-01 + 1.774300000000000e-01 +-2.785100000000000e-03 +-1.611300000000000e-01 +-2.844400000000000e-01 +-3.613900000000000e-01 +-3.865000000000000e-01 +-3.634100000000000e-01 +-3.030000000000000e-01 +-2.170200000000000e-01 +-1.131000000000000e-01 + 3.522800000000000e-03 + 1.227600000000000e-01 + 2.241100000000000e-01 + 2.802000000000000e-01 + 2.694000000000000e-01 + 1.892700000000000e-01 + 6.065900000000000e-02 +-8.152700000000000e-02 +-2.048100000000000e-01 +-2.919200000000000e-01 +-3.427000000000000e-01 +-3.665400000000000e-01 +-3.731300000000000e-01 +-3.680400000000000e-01 +-3.534300000000000e-01 +-3.295800000000000e-01 +-2.938200000000000e-01 +-2.391800000000000e-01 +-1.573400000000000e-01 +-4.749700000000000e-02 + 7.478600000000001e-02 + 1.776900000000000e-01 + 2.266000000000000e-01 + 2.042100000000000e-01 + 1.236700000000000e-01 + 2.395300000000000e-02 +-5.042800000000000e-02 +-7.196800000000000e-02 +-3.979300000000000e-02 + 2.821900000000000e-02 + 1.119700000000000e-01 + 2.000900000000000e-01 + 2.881100000000000e-01 + 3.691200000000000e-01 + 4.287900000000000e-01 + 4.516300000000000e-01 + 4.331000000000000e-01 + 3.852500000000000e-01 + 3.285000000000000e-01 + 2.748900000000000e-01 + 2.177600000000000e-01 + 1.384000000000000e-01 + 2.595900000000000e-02 +-1.061100000000000e-01 +-2.225800000000000e-01 +-2.886700000000000e-01 +-2.954300000000000e-01 +-2.678700000000000e-01 +-2.481800000000000e-01 +-2.662200000000000e-01 +-3.196900000000000e-01 +-3.784200000000000e-01 +-4.081000000000000e-01 +-3.937400000000000e-01 +-3.453700000000000e-01 +-2.841500000000000e-01 +-2.235600000000000e-01 +-1.621900000000000e-01 +-9.300700000000001e-02 +-1.775400000000000e-02 + 4.876100000000000e-02 + 8.975500000000000e-02 + 1.028600000000000e-01 + 1.057200000000000e-01 + 1.236300000000000e-01 + 1.686400000000000e-01 + 2.278300000000000e-01 + 2.722000000000000e-01 + 2.797500000000000e-01 + 2.540800000000000e-01 + 2.225600000000000e-01 + 2.146100000000000e-01 + 2.370400000000000e-01 + 2.658500000000000e-01 + 2.612500000000000e-01 + 1.947600000000000e-01 + 6.926599999999999e-02 +-8.076800000000001e-02 +-2.064700000000000e-01 +-2.663200000000000e-01 +-2.401500000000000e-01 +-1.321800000000000e-01 + 3.278900000000000e-02 + 2.152000000000000e-01 + 3.685500000000000e-01 + 4.514000000000000e-01 + 4.418800000000000e-01 + 3.470300000000000e-01 + 1.981300000000000e-01 + 3.186100000000000e-02 +-1.311300000000000e-01 +-2.942200000000000e-01 +-4.717500000000000e-01 +-6.640700000000000e-01 +-8.409700000000000e-01 +-9.488400000000000e-01 +-9.394400000000001e-01 +-8.003000000000000e-01 +-5.645700000000000e-01 +-2.930200000000000e-01 +-4.151900000000000e-02 + 1.625500000000000e-01 + 3.202400000000000e-01 + 4.418100000000000e-01 + 5.271000000000000e-01 + 5.622000000000000e-01 + 5.337600000000000e-01 + 4.467800000000000e-01 + 3.296500000000000e-01 + 2.217500000000000e-01 + 1.534000000000000e-01 + 1.332800000000000e-01 + 1.505600000000000e-01 + 1.864500000000000e-01 + 2.237300000000000e-01 + 2.479900000000000e-01 + 2.444700000000000e-01 + 1.993400000000000e-01 + 1.089900000000000e-01 +-9.564100000000001e-03 +-1.186300000000000e-01 +-1.754300000000000e-01 +-1.557400000000000e-01 +-6.963700000000000e-02 + 4.236700000000000e-02 + 1.309100000000000e-01 + 1.628300000000000e-01 + 1.339300000000000e-01 + 6.396900000000000e-02 +-1.905900000000000e-02 +-9.318500000000000e-02 +-1.479100000000000e-01 +-1.826400000000000e-01 +-2.040000000000000e-01 +-2.248600000000000e-01 +-2.619100000000000e-01 +-3.278300000000000e-01 +-4.199500000000000e-01 +-5.141800000000000e-01 +-5.726700000000000e-01 +-5.642100000000000e-01 +-4.847300000000000e-01 +-3.623600000000000e-01 +-2.412000000000000e-01 +-1.540200000000000e-01 +-1.030900000000000e-01 +-6.296400000000001e-02 +-2.063900000000000e-03 + 9.420099999999999e-02 + 2.163100000000000e-01 + 3.431800000000000e-01 + 4.616300000000000e-01 + 5.750100000000000e-01 + 6.933500000000000e-01 + 8.141699999999999e-01 + 9.117000000000000e-01 + 9.457300000000000e-01 + 8.852100000000001e-01 + 7.290600000000000e-01 + 5.086000000000001e-01 + 2.701500000000000e-01 + 5.092500000000000e-02 +-1.347500000000000e-01 +-2.916700000000000e-01 +-4.288700000000000e-01 +-5.473100000000000e-01 +-6.385600000000000e-01 +-6.928299999999999e-01 +-7.067700000000000e-01 +-6.842200000000001e-01 +-6.308500000000000e-01 +-5.497300000000001e-01 +-4.429200000000000e-01 +-3.172900000000000e-01 +-1.872100000000000e-01 +-6.916600000000001e-02 + 2.908100000000000e-02 + 1.157200000000000e-01 + 2.106000000000000e-01 + 3.301700000000000e-01 + 4.713800000000000e-01 + 6.060800000000000e-01 + 6.909100000000000e-01 + 6.870000000000001e-01 + 5.780700000000000e-01 + 3.769900000000000e-01 + 1.190700000000000e-01 +-1.522300000000000e-01 +-3.990000000000000e-01 +-5.964500000000000e-01 +-7.334900000000000e-01 +-8.087100000000000e-01 +-8.247900000000000e-01 +-7.840000000000000e-01 +-6.866100000000001e-01 +-5.332200000000000e-01 +-3.297500000000000e-01 +-9.189700000000001e-02 + 1.550600000000000e-01 + 3.824600000000000e-01 + 5.675100000000000e-01 + 6.997400000000000e-01 + 7.802800000000000e-01 + 8.153000000000000e-01 + 8.095400000000000e-01 + 7.656500000000001e-01 + 6.895100000000000e-01 + 5.953400000000000e-01 + 5.037100000000000e-01 + 4.311800000000000e-01 + 3.785700000000000e-01 + 3.279000000000000e-01 + 2.521900000000000e-01 + 1.323000000000000e-01 +-3.127800000000000e-02 +-2.202100000000000e-01 +-4.113400000000000e-01 +-5.894900000000000e-01 +-7.491800000000000e-01 +-8.846300000000000e-01 +-9.788400000000000e-01 +-1.004000000000000e+00 +-9.363200000000000e-01 +-7.753400000000000e-01 +-5.510500000000000e-01 +-3.118900000000000e-01 +-1.005100000000000e-01 + 6.482700000000000e-02 + 1.896200000000000e-01 + 2.852100000000000e-01 + 3.496100000000000e-01 + 3.640900000000000e-01 + 3.092700000000000e-01 + 1.874100000000000e-01 + 3.160100000000000e-02 +-1.076300000000000e-01 +-1.894200000000000e-01 +-2.031400000000000e-01 +-1.671400000000000e-01 +-1.078400000000000e-01 +-3.693000000000000e-02 + 5.433100000000000e-02 + 1.793900000000000e-01 + 3.331700000000000e-01 + 4.824600000000000e-01 + 5.805399999999999e-01 + 5.975600000000000e-01 + 5.443000000000000e-01 + 4.703000000000000e-01 + 4.354900000000000e-01 + 4.730700000000000e-01 + 5.681500000000000e-01 + 6.656300000000001e-01 + 7.011900000000000e-01 + 6.351900000000000e-01 + 4.690400000000000e-01 + 2.370200000000000e-01 +-1.721200000000000e-02 +-2.625300000000000e-01 +-4.874800000000000e-01 +-6.917800000000000e-01 +-8.717400000000000e-01 +-1.011800000000000e+00 +-1.088800000000000e+00 +-1.085000000000000e+00 +-1.001500000000000e+00 +-8.615900000000000e-01 +-7.019500000000000e-01 +-5.567200000000000e-01 +-4.433200000000000e-01 +-3.576900000000000e-01 +-2.806700000000000e-01 +-1.906800000000000e-01 +-7.516700000000000e-02 + 6.469100000000000e-02 + 2.165900000000000e-01 + 3.633300000000000e-01 + 4.883800000000000e-01 + 5.791500000000001e-01 + 6.290900000000000e-01 + 6.401100000000000e-01 + 6.245000000000001e-01 + 6.029300000000000e-01 + 5.962600000000000e-01 + 6.135699999999999e-01 + 6.435900000000000e-01 + 6.572200000000000e-01 + 6.221700000000000e-01 + 5.221400000000000e-01 + 3.681400000000000e-01 + 1.935300000000000e-01 + 3.548200000000000e-02 +-8.477999999999999e-02 +-1.696300000000000e-01 +-2.363300000000000e-01 +-3.000900000000000e-01 +-3.625700000000000e-01 +-4.142400000000000e-01 +-4.468000000000000e-01 +-4.632500000000000e-01 +-4.756100000000000e-01 +-4.916500000000000e-01 +-5.029800000000000e-01 +-4.868200000000000e-01 +-4.232200000000000e-01 +-3.151800000000000e-01 +-1.947000000000000e-01 +-1.070700000000000e-01 +-8.245100000000000e-02 +-1.148000000000000e-01 +-1.640300000000000e-01 +-1.808500000000000e-01 +-1.369900000000000e-01 +-4.004000000000000e-02 + 7.634500000000000e-02 + 1.777800000000000e-01 + 2.505600000000000e-01 + 3.045300000000000e-01 + 3.578400000000000e-01 + 4.181500000000000e-01 + 4.753900000000000e-01 + 5.108200000000001e-01 + 5.131000000000000e-01 + 4.870800000000000e-01 + 4.478700000000000e-01 + 4.055300000000000e-01 + 3.536900000000000e-01 + 2.719600000000000e-01 + 1.410500000000000e-01 +-4.067100000000000e-02 +-2.514500000000000e-01 +-4.549600000000000e-01 +-6.169900000000000e-01 +-7.181600000000000e-01 +-7.552900000000000e-01 +-7.331400000000000e-01 +-6.550700000000000e-01 +-5.207600000000000e-01 +-3.324300000000000e-01 +-1.038800000000000e-01 + 1.359000000000000e-01 + 3.488000000000000e-01 + 5.005400000000000e-01 + 5.731800000000000e-01 + 5.698200000000000e-01 + 5.094500000000000e-01 + 4.156100000000000e-01 + 3.059900000000000e-01 + 1.887000000000000e-01 + 6.641600000000000e-02 +-5.572700000000000e-02 +-1.647100000000000e-01 +-2.412200000000000e-01 +-2.678700000000000e-01 +-2.390400000000000e-01 +-1.656800000000000e-01 +-7.148800000000000e-02 + 1.756000000000000e-02 + 8.383900000000000e-02 + 1.224200000000000e-01 + 1.371800000000000e-01 + 1.326800000000000e-01 + 1.084300000000000e-01 + 6.003600000000000e-02 +-1.414100000000000e-02 +-1.065400000000000e-01 +-1.996700000000000e-01 +-2.720400000000000e-01 +-3.065000000000000e-01 +-2.955600000000000e-01 +-2.413900000000000e-01 +-1.527200000000000e-01 +-4.256400000000000e-02 + 7.166400000000001e-02 + 1.686200000000000e-01 + 2.277800000000000e-01 + 2.385900000000000e-01 + 2.084000000000000e-01 + 1.616200000000000e-01 + 1.271700000000000e-01 + 1.204400000000000e-01 + 1.319200000000000e-01 + 1.316800000000000e-01 + 8.860999999999999e-02 +-7.945499999999999e-03 +-1.391400000000000e-01 +-2.666800000000000e-01 +-3.549700000000000e-01 +-3.899900000000000e-01 +-3.821300000000000e-01 +-3.524900000000000e-01 +-3.143100000000000e-01 +-2.633000000000000e-01 +-1.832100000000000e-01 +-6.070400000000000e-02 + 1.023900000000000e-01 + 2.878400000000000e-01 + 4.694900000000000e-01 + 6.231000000000000e-01 + 7.304600000000000e-01 + 7.775900000000000e-01 + 7.530900000000000e-01 + 6.520800000000000e-01 + 4.839100000000000e-01 + 2.760200000000000e-01 + 6.709300000000000e-02 +-1.089900000000000e-01 +-2.384100000000000e-01 +-3.306400000000000e-01 +-4.065300000000000e-01 +-4.799200000000000e-01 +-5.463300000000000e-01 +-5.867900000000000e-01 +-5.828100000000001e-01 +-5.298900000000000e-01 +-4.388700000000000e-01 +-3.256600000000000e-01 +-1.998800000000000e-01 +-6.396300000000001e-02 + 7.580400000000000e-02 + 1.971800000000000e-01 + 2.626000000000000e-01 + 2.373300000000000e-01 + 1.144600000000000e-01 +-7.200200000000000e-02 +-2.584800000000000e-01 +-3.828800000000000e-01 +-4.154100000000000e-01 +-3.685100000000000e-01 +-2.797100000000000e-01 +-1.811200000000000e-01 +-7.798099999999999e-02 + 4.864000000000000e-02 + 2.190600000000000e-01 + 4.310600000000000e-01 + 6.536500000000000e-01 + 8.425800000000000e-01 + 9.645899999999999e-01 + 1.011500000000000e+00 + 9.945200000000000e-01 + 9.259900000000000e-01 + 8.054600000000000e-01 + 6.226400000000000e-01 + 3.745600000000000e-01 + 8.148400000000000e-02 +-2.136300000000000e-01 +-4.641200000000000e-01 +-6.438400000000000e-01 +-7.584700000000000e-01 +-8.352400000000000e-01 +-8.991700000000000e-01 +-9.538400000000000e-01 +-9.806300000000000e-01 +-9.555399999999999e-01 +-8.691500000000000e-01 +-7.338000000000000e-01 +-5.734300000000000e-01 +-4.058400000000000e-01 +-2.329600000000000e-01 +-4.734400000000000e-02 + 1.511900000000000e-01 + 3.436500000000000e-01 + 4.963000000000000e-01 + 5.797600000000001e-01 + 5.891500000000000e-01 + 5.501200000000001e-01 + 5.060800000000000e-01 + 4.953800000000000e-01 + 5.333100000000000e-01 + 6.090100000000001e-01 + 6.956400000000000e-01 + 7.637100000000000e-01 + 7.885700000000000e-01 + 7.508500000000000e-01 + 6.359399999999999e-01 + 4.383800000000000e-01 + 1.701100000000000e-01 +-1.350800000000000e-01 +-4.281400000000000e-01 +-6.622200000000000e-01 +-8.110500000000000e-01 +-8.767800000000000e-01 +-8.822900000000000e-01 +-8.540500000000000e-01 +-8.078800000000000e-01 +-7.463500000000000e-01 +-6.667000000000000e-01 +-5.702700000000001e-01 +-4.643900000000000e-01 +-3.562300000000000e-01 +-2.455600000000000e-01 +-1.250800000000000e-01 + 1.083800000000000e-02 + 1.562300000000000e-01 + 2.925200000000000e-01 + 3.992000000000000e-01 + 4.688400000000000e-01 + 5.138100000000000e-01 + 5.578800000000000e-01 + 6.175400000000000e-01 + 6.871699999999999e-01 + 7.400200000000000e-01 + 7.453300000000000e-01 + 6.893200000000000e-01 + 5.848000000000000e-01 + 4.625400000000000e-01 + 3.516100000000000e-01 + 2.635500000000000e-01 + 1.910600000000000e-01 + 1.197900000000000e-01 + 4.150700000000000e-02 +-4.261800000000000e-02 +-1.299600000000000e-01 +-2.260000000000000e-01 +-3.439000000000000e-01 +-4.916000000000000e-01 +-6.560700000000000e-01 +-7.997800000000000e-01 +-8.764700000000000e-01 +-8.585400000000000e-01 +-7.574500000000000e-01 +-6.213400000000000e-01 +-5.092200000000000e-01 +-4.575800000000000e-01 +-4.613200000000000e-01 +-4.809900000000000e-01 +-4.703800000000000e-01 +-4.048500000000000e-01 +-2.914400000000000e-01 +-1.557500000000000e-01 +-1.712500000000000e-02 + 1.285500000000000e-01 + 3.056200000000000e-01 + 5.373500000000000e-01 + 8.214700000000000e-01 + 1.119900000000000e+00 + 1.369600000000000e+00 + 1.508600000000000e+00 + 1.501200000000000e+00 + 1.349300000000000e+00 + 1.085300000000000e+00 + 7.537500000000000e-01 + 3.940600000000000e-01 + 3.351700000000000e-02 +-3.076600000000000e-01 +-6.065100000000000e-01 +-8.321600000000000e-01 +-9.516200000000000e-01 +-9.446900000000000e-01 +-8.194300000000000e-01 +-6.175000000000000e-01 +-4.037200000000000e-01 +-2.428400000000000e-01 +-1.744600000000000e-01 +-1.989100000000000e-01 +-2.812000000000000e-01 +-3.702400000000000e-01 +-4.222800000000000e-01 +-4.162200000000000e-01 +-3.546400000000000e-01 +-2.536700000000000e-01 +-1.310400000000000e-01 +-2.094100000000000e-04 + 1.276200000000000e-01 + 2.389800000000000e-01 + 3.177900000000000e-01 + 3.515200000000000e-01 + 3.396300000000000e-01 + 2.972700000000000e-01 + 2.498500000000000e-01 + 2.209900000000000e-01 + 2.211800000000000e-01 + 2.438800000000000e-01 + 2.705600000000000e-01 + 2.803900000000000e-01 + 2.584800000000000e-01 + 1.992000000000000e-01 + 1.054500000000000e-01 +-1.313700000000000e-02 +-1.413500000000000e-01 +-2.597000000000000e-01 +-3.477200000000000e-01 +-3.890600000000000e-01 +-3.760200000000000e-01 +-3.105800000000000e-01 +-2.020200000000000e-01 +-6.404200000000000e-02 + 8.565500000000000e-02 + 2.238800000000000e-01 + 3.229100000000000e-01 + 3.580100000000000e-01 + 3.202300000000000e-01 + 2.263600000000000e-01 + 1.165700000000000e-01 + 3.710700000000000e-02 + 1.610800000000000e-02 + 4.776900000000000e-02 + 9.619700000000000e-02 + 1.173500000000000e-01 + 8.480500000000001e-02 + 2.464300000000000e-03 +-1.030000000000000e-01 +-2.020400000000000e-01 +-2.784200000000000e-01 +-3.303900000000000e-01 +-3.592100000000000e-01 +-3.581500000000000e-01 +-3.141300000000000e-01 +-2.217800000000000e-01 +-9.743000000000000e-02 + 2.167200000000000e-02 + 9.578700000000000e-02 + 1.069500000000000e-01 + 7.064700000000000e-02 + 2.532700000000000e-02 + 6.887000000000000e-03 + 2.695300000000000e-02 + 7.029900000000000e-02 + 1.114100000000000e-01 + 1.353400000000000e-01 + 1.459000000000000e-01 + 1.560900000000000e-01 + 1.711700000000000e-01 + 1.803100000000000e-01 + 1.646800000000000e-01 + 1.145900000000000e-01 + 4.007500000000000e-02 +-3.486100000000000e-02 +-8.977900000000000e-02 +-1.217600000000000e-01 +-1.433700000000000e-01 +-1.662300000000000e-01 +-1.846300000000000e-01 +-1.744400000000000e-01 +-1.099100000000000e-01 + 1.413800000000000e-02 + 1.722200000000000e-01 + 3.184400000000000e-01 + 4.093900000000000e-01 + 4.233800000000000e-01 + 3.640500000000000e-01 + 2.501800000000000e-01 + 1.033300000000000e-01 +-5.643900000000000e-02 +-2.071400000000000e-01 +-3.229900000000000e-01 +-3.818400000000000e-01 +-3.790600000000000e-01 +-3.353600000000000e-01 +-2.880700000000000e-01 +-2.681700000000000e-01 +-2.785500000000000e-01 +-2.908900000000000e-01 +-2.654800000000000e-01 +-1.805600000000000e-01 +-4.968200000000000e-02 + 8.592400000000000e-02 + 1.841400000000000e-01 + 2.279500000000000e-01 + 2.323500000000000e-01 + 2.292500000000000e-01 + 2.437700000000000e-01 + 2.796300000000000e-01 + 3.219700000000000e-01 + 3.511700000000000e-01 + 3.545400000000000e-01 + 3.280100000000000e-01 + 2.709300000000000e-01 + 1.830200000000000e-01 + 6.844699999999999e-02 +-5.773200000000000e-02 +-1.698500000000000e-01 +-2.427500000000000e-01 +-2.668400000000000e-01 +-2.547200000000000e-01 +-2.322900000000000e-01 +-2.202800000000000e-01 +-2.207100000000000e-01 +-2.193300000000000e-01 +-2.014200000000000e-01 +-1.667300000000000e-01 +-1.297200000000000e-01 +-1.045700000000000e-01 +-8.859400000000001e-02 +-6.041800000000000e-02 + 3.063000000000000e-03 + 1.037200000000000e-01 + 2.130100000000000e-01 + 2.865000000000000e-01 + 2.927000000000000e-01 + 2.345000000000000e-01 + 1.461900000000000e-01 + 6.827700000000000e-02 + 1.981500000000000e-02 +-1.039000000000000e-02 +-4.783600000000000e-02 +-1.057700000000000e-01 +-1.702400000000000e-01 +-2.087300000000000e-01 +-1.948700000000000e-01 +-1.288300000000000e-01 +-3.725300000000000e-02 + 4.631800000000000e-02 + 1.041300000000000e-01 + 1.422200000000000e-01 + 1.790800000000000e-01 + 2.258600000000000e-01 + 2.750200000000000e-01 + 3.055200000000000e-01 + 2.983600000000000e-01 + 2.484600000000000e-01 + 1.636400000000000e-01 + 5.380700000000000e-02 +-7.778700000000000e-02 +-2.317900000000000e-01 +-4.003400000000000e-01 +-5.565600000000001e-01 +-6.575400000000000e-01 +-6.620900000000000e-01 +-5.529500000000001e-01 +-3.485800000000000e-01 +-9.697799999999999e-02 + 1.447500000000000e-01 + 3.324900000000000e-01 + 4.474400000000000e-01 + 4.946600000000000e-01 + 4.923300000000000e-01 + 4.595000000000000e-01 + 4.079700000000000e-01 + 3.400000000000000e-01 + 2.507600000000000e-01 + 1.339300000000000e-01 +-1.116800000000000e-02 +-1.733400000000000e-01 +-3.280700000000000e-01 +-4.431800000000000e-01 +-4.908000000000000e-01 +-4.596900000000000e-01 +-3.610000000000000e-01 +-2.236900000000000e-01 +-8.177500000000000e-02 + 3.909000000000000e-02 + 1.287400000000000e-01 + 1.909000000000000e-01 + 2.358700000000000e-01 + 2.729300000000000e-01 + 3.060700000000000e-01 + 3.333000000000000e-01 + 3.477000000000000e-01 + 3.390400000000000e-01 + 2.964400000000000e-01 + 2.129300000000000e-01 + 9.046600000000000e-02 +-5.747200000000000e-02 +-2.087900000000000e-01 +-3.404800000000000e-01 +-4.369500000000000e-01 +-4.935000000000000e-01 +-5.129400000000000e-01 +-4.983000000000000e-01 +-4.475800000000000e-01 +-3.552300000000000e-01 +-2.193700000000000e-01 +-4.956900000000000e-02 + 1.312600000000000e-01 + 2.931200000000000e-01 + 4.101500000000000e-01 + 4.704600000000000e-01 + 4.790500000000000e-01 + 4.528600000000000e-01 + 4.110100000000000e-01 + 3.656800000000000e-01 + 3.175200000000000e-01 + 2.572100000000000e-01 + 1.715700000000000e-01 + 5.149100000000000e-02 +-1.016200000000000e-01 +-2.733400000000000e-01 +-4.386800000000000e-01 +-5.688200000000000e-01 +-6.394500000000000e-01 +-6.375999999999999e-01 +-5.647000000000000e-01 +-4.349700000000000e-01 +-2.705900000000000e-01 +-9.571000000000000e-02 + 6.880100000000000e-02 + 2.086200000000000e-01 + 3.168700000000000e-01 + 3.928500000000000e-01 + 4.394000000000000e-01 + 4.602300000000000e-01 + 4.586600000000000e-01 + 4.381700000000000e-01 + 4.037400000000000e-01 + 3.617200000000000e-01 + 3.172200000000000e-01 + 2.703500000000000e-01 + 2.145600000000000e-01 + 1.399700000000000e-01 + 4.080700000000000e-02 +-7.793500000000000e-02 +-2.001600000000000e-01 +-3.062700000000000e-01 +-3.841600000000000e-01 +-4.353000000000000e-01 +-4.706100000000000e-01 +-4.986000000000000e-01 +-5.147500000000000e-01 +-5.016900000000000e-01 +-4.414200000000000e-01 +-3.315500000000000e-01 +-1.929700000000000e-01 +-6.182400000000000e-02 + 2.969800000000000e-02 + 7.107100000000000e-02 + 7.739799999999999e-02 + 7.753100000000000e-02 + 9.535200000000001e-02 + 1.373000000000000e-01 + 1.933100000000000e-01 + 2.477400000000000e-01 + 2.901900000000000e-01 + 3.183300000000000e-01 + 3.327600000000000e-01 + 3.312000000000000e-01 + 3.084700000000000e-01 + 2.625000000000000e-01 + 2.003400000000000e-01 + 1.375700000000000e-01 + 9.052300000000001e-02 + 6.748800000000001e-02 + 6.567300000000000e-02 + 7.582400000000000e-02 + 8.937299999999999e-02 + 1.012700000000000e-01 + 1.065500000000000e-01 + 9.550000000000000e-02 + 5.477800000000000e-02 +-2.368100000000000e-02 +-1.321400000000000e-01 +-2.448800000000000e-01 +-3.290100000000000e-01 +-3.626800000000000e-01 +-3.478400000000000e-01 +-3.077100000000000e-01 +-2.703700000000000e-01 +-2.505800000000000e-01 +-2.431100000000000e-01 +-2.318900000000000e-01 +-2.065000000000000e-01 +-1.719400000000000e-01 +-1.438400000000000e-01 +-1.335500000000000e-01 +-1.361700000000000e-01 +-1.320700000000000e-01 +-1.009900000000000e-01 +-3.738100000000000e-02 + 4.584100000000000e-02 + 1.282300000000000e-01 + 1.983900000000000e-01 + 2.622700000000000e-01 + 3.357000000000000e-01 + 4.265700000000000e-01 + 5.206400000000000e-01 + 5.832100000000000e-01 + 5.770800000000000e-01 + 4.853200000000000e-01 + 3.237400000000000e-01 + 1.346900000000000e-01 +-3.359900000000000e-02 +-1.491100000000000e-01 +-2.069000000000000e-01 +-2.240000000000000e-01 +-2.239900000000000e-01 +-2.216100000000000e-01 +-2.163400000000000e-01 +-1.971300000000000e-01 +-1.537600000000000e-01 +-8.718500000000000e-02 +-1.278900000000000e-02 + 4.519100000000000e-02 + 6.496000000000000e-02 + 3.803100000000000e-02 +-2.629400000000000e-02 +-1.054700000000000e-01 +-1.750600000000000e-01 +-2.207000000000000e-01 +-2.438600000000000e-01 +-2.580300000000000e-01 +-2.776100000000000e-01 +-3.062500000000000e-01 +-3.316500000000000e-01 +-3.299500000000000e-01 +-2.771200000000000e-01 +-1.609100000000000e-01 + 1.260700000000000e-02 + 2.201200000000000e-01 + 4.282300000000000e-01 + 6.027100000000000e-01 + 7.167200000000000e-01 + 7.562600000000000e-01 + 7.223500000000000e-01 + 6.293800000000001e-01 + 4.996400000000000e-01 + 3.550000000000000e-01 + 2.090500000000000e-01 + 6.347999999999999e-02 +-8.865800000000000e-02 +-2.542600000000000e-01 +-4.309500000000000e-01 +-6.030400000000000e-01 +-7.455000000000001e-01 +-8.336900000000000e-01 +-8.534000000000000e-01 +-8.052900000000000e-01 +-7.020300000000000e-01 +-5.604200000000000e-01 +-3.937100000000000e-01 +-2.085300000000000e-01 +-7.332500000000000e-03 + 2.060200000000000e-01 + 4.214300000000000e-01 + 6.215700000000000e-01 + 7.850500000000000e-01 + 8.922300000000000e-01 + 9.305099999999999e-01 + 8.972200000000000e-01 + 7.992899999999999e-01 + 6.505300000000001e-01 + 4.678900000000000e-01 + 2.680100000000000e-01 + 6.485500000000000e-02 +-1.314800000000000e-01 +-3.144200000000000e-01 +-4.792000000000000e-01 +-6.200800000000000e-01 +-7.278300000000000e-01 +-7.891700000000000e-01 +-7.895600000000000e-01 +-7.185900000000000e-01 +-5.757200000000000e-01 +-3.730000000000000e-01 +-1.332600000000000e-01 + 1.151300000000000e-01 + 3.435400000000000e-01 + 5.259300000000000e-01 + 6.395600000000000e-01 + 6.666200000000000e-01 + 5.993300000000000e-01 + 4.470400000000000e-01 + 2.397900000000000e-01 + 2.224300000000000e-02 +-1.621300000000000e-01 +-2.891700000000000e-01 +-3.626900000000000e-01 +-4.064300000000000e-01 +-4.434800000000000e-01 +-4.769400000000000e-01 +-4.864500000000000e-01 +-4.442600000000000e-01 +-3.398000000000000e-01 +-1.941300000000000e-01 +-5.189000000000000e-02 + 4.524300000000000e-02 + 8.496900000000000e-02 + 9.137600000000000e-02 + 1.069500000000000e-01 + 1.627100000000000e-01 + 2.583400000000000e-01 + 3.665600000000000e-01 + 4.570500000000000e-01 + 5.202700000000000e-01 + 5.720600000000000e-01 + 6.355000000000000e-01 + 7.146500000000000e-01 + 7.818600000000000e-01 + 7.896100000000000e-01 + 6.993300000000000e-01 + 5.064600000000000e-01 + 2.444100000000000e-01 +-3.422200000000000e-02 +-2.846600000000000e-01 +-4.865300000000000e-01 +-6.415100000000000e-01 +-7.584400000000000e-01 +-8.402400000000000e-01 +-8.826800000000000e-01 +-8.830200000000000e-01 +-8.483500000000000e-01 +-7.944600000000001e-01 +-7.358100000000000e-01 +-6.751500000000000e-01 +-6.017000000000000e-01 +-4.996400000000000e-01 +-3.597200000000000e-01 +-1.852600000000000e-01 + 1.057300000000000e-02 + 2.119700000000000e-01 + 4.047300000000000e-01 + 5.747000000000000e-01 + 7.043600000000000e-01 + 7.741500000000000e-01 + 7.711000000000000e-01 + 6.998000000000000e-01 + 5.865800000000000e-01 + 4.717600000000000e-01 + 3.928600000000000e-01 + 3.688100000000000e-01 + 3.941400000000000e-01 + 4.452200000000000e-01 + 4.926500000000000e-01 + 5.114400000000000e-01 + 4.849100000000000e-01 + 4.041400000000000e-01 + 2.677300000000000e-01 + 8.394100000000000e-02 +-1.277800000000000e-01 +-3.399500000000000e-01 +-5.258500000000000e-01 +-6.692900000000001e-01 +-7.683100000000000e-01 +-8.298300000000000e-01 +-8.591400000000000e-01 +-8.528800000000000e-01 +-8.013400000000001e-01 +-6.987400000000000e-01 +-5.530100000000000e-01 +-3.868100000000000e-01 +-2.280500000000000e-01 +-9.623900000000001e-02 + 5.619400000000000e-03 + 8.851800000000000e-02 + 1.673600000000000e-01 + 2.515100000000000e-01 + 3.422400000000000e-01 + 4.367500000000000e-01 + 5.322800000000000e-01 + 6.248400000000000e-01 + 7.030900000000000e-01 + 7.444499999999999e-01 + 7.207300000000000e-01 + 6.135500000000000e-01 + 4.308100000000000e-01 + 2.114200000000000e-01 + 1.183700000000000e-02 +-1.204500000000000e-01 +-1.711300000000000e-01 +-1.656600000000000e-01 +-1.534500000000000e-01 +-1.788400000000000e-01 +-2.565800000000000e-01 +-3.663500000000000e-01 +-4.679000000000000e-01 +-5.255800000000000e-01 +-5.259500000000000e-01 +-4.784700000000000e-01 +-4.017300000000000e-01 +-3.075900000000000e-01 +-1.953500000000000e-01 +-5.958100000000000e-02 + 9.592900000000000e-02 + 2.503000000000000e-01 + 3.713700000000000e-01 + 4.320500000000000e-01 + 4.257700000000000e-01 + 3.697000000000000e-01 + 2.933700000000000e-01 + 2.206900000000000e-01 + 1.583400000000000e-01 + 9.832000000000000e-02 + 3.174000000000000e-02 +-3.764700000000000e-02 +-9.143100000000000e-02 +-1.082900000000000e-01 +-8.087600000000000e-02 +-2.484000000000000e-02 + 2.773900000000000e-02 + 4.666600000000000e-02 + 2.124800000000000e-02 +-3.487700000000000e-02 +-9.451200000000000e-02 +-1.350300000000000e-01 +-1.509600000000000e-01 +-1.529600000000000e-01 +-1.557700000000000e-01 +-1.652100000000000e-01 +-1.741300000000000e-01 +-1.692300000000000e-01 +-1.419600000000000e-01 +-9.440900000000001e-02 +-3.583800000000000e-02 + 2.599600000000000e-02 + 9.028100000000000e-02 + 1.599200000000000e-01 + 2.320300000000000e-01 + 2.907200000000000e-01 + 3.098800000000000e-01 + 2.665200000000000e-01 + 1.566700000000000e-01 + 3.208900000000000e-03 +-1.505300000000000e-01 +-2.583300000000000e-01 +-2.903100000000000e-01 +-2.435900000000000e-01 +-1.402800000000000e-01 +-1.581700000000000e-02 + 9.526200000000000e-02 + 1.696600000000000e-01 + 1.991200000000000e-01 + 1.886100000000000e-01 + 1.512300000000000e-01 + 1.020400000000000e-01 + 5.277300000000000e-02 + 9.003499999999999e-03 +-2.886100000000000e-02 +-6.141200000000000e-02 +-8.576800000000000e-02 +-9.464100000000000e-02 +-8.068500000000001e-02 +-4.374300000000000e-02 + 4.628200000000000e-03 + 4.404900000000000e-02 + 5.524900000000000e-02 + 3.100100000000000e-02 +-1.964900000000000e-02 +-7.725300000000000e-02 +-1.239600000000000e-01 +-1.529100000000000e-01 +-1.682000000000000e-01 +-1.760800000000000e-01 +-1.750100000000000e-01 +-1.535300000000000e-01 +-9.824700000000000e-02 +-6.275000000000000e-03 + 1.081000000000000e-01 + 2.183500000000000e-01 + 2.993400000000000e-01 + 3.400300000000000e-01 + 3.463700000000000e-01 + 3.332800000000000e-01 + 3.125400000000000e-01 + 2.857600000000000e-01 + 2.462600000000000e-01 + 1.862300000000000e-01 + 1.020000000000000e-01 +-6.229600000000000e-03 +-1.375500000000000e-01 +-2.901800000000000e-01 +-4.557400000000000e-01 +-6.125100000000000e-01 +-7.262000000000000e-01 +-7.623600000000000e-01 +-7.047400000000000e-01 +-5.669700000000000e-01 +-3.873600000000000e-01 +-2.083300000000000e-01 +-5.391000000000000e-02 + 7.888800000000000e-02 + 2.087400000000000e-01 + 3.476900000000000e-01 + 4.853800000000000e-01 + 5.921600000000000e-01 + 6.387300000000000e-01 + 6.170700000000000e-01 + 5.465700000000000e-01 + 4.614000000000000e-01 + 3.894800000000000e-01 + 3.392800000000000e-01 + 3.030000000000000e-01 + 2.704000000000000e-01 + 2.395600000000000e-01 + 2.145200000000000e-01 + 1.929300000000000e-01 + 1.570000000000000e-01 + 7.907400000000001e-02 +-5.907900000000000e-02 +-2.474800000000000e-01 +-4.455400000000000e-01 +-6.008599999999999e-01 +-6.777100000000000e-01 +-6.757800000000000e-01 +-6.261500000000000e-01 +-5.678900000000000e-01 +-5.219400000000000e-01 +-4.802000000000000e-01 +-4.156400000000000e-01 +-3.047400000000000e-01 +-1.461500000000000e-01 + 3.568600000000000e-02 + 2.021000000000000e-01 + 3.176300000000000e-01 + 3.633000000000000e-01 + 3.408900000000000e-01 + 2.695400000000000e-01 + 1.784700000000000e-01 + 9.839400000000000e-02 + 5.265200000000000e-02 + 4.994500000000000e-02 + 8.190200000000000e-02 + 1.281100000000000e-01 + 1.670000000000000e-01 + 1.864300000000000e-01 + 1.869700000000000e-01 + 1.761700000000000e-01 + 1.590600000000000e-01 + 1.333900000000000e-01 + 9.400300000000000e-02 + 4.220800000000000e-02 +-9.139700000000001e-03 +-4.140300000000000e-02 +-4.370800000000000e-02 +-2.334600000000000e-02 +-2.917400000000000e-03 +-4.140000000000000e-03 +-2.963100000000000e-02 +-5.716500000000000e-02 +-5.249100000000000e-02 + 7.220600000000000e-03 + 1.157800000000000e-01 + 2.390700000000000e-01 + 3.342400000000000e-01 + 3.737000000000000e-01 + 3.580400000000000e-01 + 3.107700000000000e-01 + 2.606600000000000e-01 + 2.248600000000000e-01 + 2.025000000000000e-01 + 1.794100000000000e-01 + 1.370500000000000e-01 + 5.874100000000000e-02 +-6.833300000000000e-02 +-2.515600000000000e-01 +-4.882900000000000e-01 +-7.595499999999999e-01 +-1.027700000000000e+00 +-1.243300000000000e+00 +-1.359800000000000e+00 +-1.350200000000000e+00 +-1.216700000000000e+00 +-9.894300000000000e-01 +-7.152500000000001e-01 +-4.428500000000000e-01 +-2.092700000000000e-01 +-3.094400000000000e-02 + 9.912500000000000e-02 + 2.072200000000000e-01 + 3.278400000000000e-01 + 4.885800000000000e-01 + 6.974200000000000e-01 + 9.392000000000000e-01 + 1.183900000000000e+00 + 1.401800000000000e+00 + 1.574800000000000e+00 + 1.697400000000000e+00 + 1.766600000000000e+00 + 1.771300000000000e+00 + 1.690600000000000e+00 + 1.505100000000000e+00 + 1.213200000000000e+00 + 8.386500000000000e-01 + 4.237500000000000e-01 + 1.080500000000000e-02 +-3.744400000000000e-01 +-7.262000000000000e-01 +-1.047800000000000e+00 +-1.336700000000000e+00 +-1.578200000000000e+00 +-1.752200000000000e+00 +-1.847000000000000e+00 +-1.868000000000000e+00 +-1.833400000000000e+00 +-1.761200000000000e+00 +-1.657400000000000e+00 +-1.514700000000000e+00 +-1.321200000000000e+00 +-1.071800000000000e+00 +-7.724400000000000e-01 +-4.368900000000000e-01 +-8.026200000000000e-02 + 2.829500000000000e-01 + 6.352300000000000e-01 + 9.521500000000001e-01 + 1.204900000000000e+00 + 1.370400000000000e+00 + 1.442200000000000e+00 + 1.433600000000000e+00 + 1.369200000000000e+00 + 1.271700000000000e+00 + 1.152700000000000e+00 + 1.015500000000000e+00 + 8.653100000000000e-01 + 7.175800000000000e-01 + 5.955200000000000e-01 + 5.180300000000000e-01 + 4.866900000000000e-01 + 4.823400000000000e-01 + 4.736600000000000e-01 + 4.316500000000000e-01 + 3.395500000000000e-01 + 1.933500000000000e-01 +-3.768300000000000e-03 +-2.452200000000000e-01 +-5.183900000000000e-01 +-7.987100000000000e-01 +-1.048800000000000e+00 +-1.227700000000000e+00 +-1.307900000000000e+00 +-1.288300000000000e+00 +-1.195200000000000e+00 +-1.069000000000000e+00 +-9.444399999999999e-01 +-8.376900000000000e-01 +-7.447000000000000e-01 +-6.507400000000000e-01 +-5.415100000000000e-01 +-4.092400000000000e-01 +-2.522100000000000e-01 +-7.219100000000001e-02 + 1.260700000000000e-01 + 3.324500000000000e-01 + 5.299199999999999e-01 + 6.973200000000001e-01 + 8.162900000000000e-01 + 8.781099999999999e-01 + 8.858600000000000e-01 + 8.509300000000000e-01 + 7.873400000000000e-01 + 7.082700000000000e-01 + 6.262300000000000e-01 + 5.543100000000000e-01 + 5.041800000000000e-01 + 4.800200000000000e-01 + 4.721100000000000e-01 + 4.562400000000000e-01 + 4.021300000000000e-01 + 2.878100000000000e-01 + 1.121200000000000e-01 +-1.025300000000000e-01 +-3.189200000000000e-01 +-5.005600000000000e-01 +-6.253300000000001e-01 +-6.904800000000000e-01 +-7.081300000000000e-01 +-6.953400000000000e-01 +-6.650300000000000e-01 +-6.217800000000000e-01 +-5.631000000000000e-01 +-4.838300000000000e-01 +-3.810400000000000e-01 +-2.574200000000000e-01 +-1.223100000000000e-01 + 9.516000000000000e-03 + 1.213800000000000e-01 + 1.996000000000000e-01 + 2.382100000000000e-01 + 2.413100000000000e-01 + 2.215500000000000e-01 + 1.949000000000000e-01 + 1.738500000000000e-01 + 1.622400000000000e-01 + 1.545700000000000e-01 + 1.403500000000000e-01 + 1.116000000000000e-01 + 6.961199999999999e-02 + 2.696400000000000e-02 + 3.056100000000000e-03 + 1.460300000000000e-02 + 6.593200000000000e-02 + 1.446700000000000e-01 + 2.260400000000000e-01 + 2.843000000000000e-01 + 3.049200000000000e-01 + 2.905200000000000e-01 + 2.564100000000000e-01 + 2.183600000000000e-01 + 1.806500000000000e-01 + 1.324200000000000e-01 + 5.546500000000000e-02 +-6.140300000000000e-02 +-2.107800000000000e-01 +-3.658800000000000e-01 +-4.913300000000000e-01 +-5.588000000000000e-01 +-5.579200000000000e-01 +-4.968800000000000e-01 +-3.945400000000000e-01 +-2.710900000000000e-01 +-1.436900000000000e-01 +-2.768700000000000e-02 + 6.147500000000000e-02 + 1.111200000000000e-01 + 1.192300000000000e-01 + 1.012700000000000e-01 + 8.790800000000000e-02 + 1.113200000000000e-01 + 1.863900000000000e-01 + 2.991300000000000e-01 + 4.110800000000000e-01 + 4.786200000000000e-01 + 4.754400000000000e-01 + 4.042500000000000e-01 + 2.909900000000000e-01 + 1.672000000000000e-01 + 5.359700000000000e-02 +-4.458000000000000e-02 +-1.301200000000000e-01 +-2.034200000000000e-01 +-2.593700000000000e-01 +-2.938900000000000e-01 +-3.124200000000000e-01 +-3.301200000000000e-01 +-3.604800000000000e-01 +-4.003700000000000e-01 +-4.254000000000000e-01 +-4.027000000000000e-01 +-3.144000000000000e-01 +-1.746600000000000e-01 +-2.530000000000000e-02 + 8.971600000000000e-02 + 1.538800000000000e-01 + 1.900200000000000e-01 + 2.442400000000000e-01 + 3.517200000000000e-01 + 5.083100000000000e-01 + 6.677900000000000e-01 + 7.667600000000000e-01 + 7.598300000000000e-01 + 6.415200000000000e-01 + 4.425600000000000e-01 + 2.073200000000000e-01 +-2.936100000000000e-02 +-2.506000000000000e-01 +-4.499100000000000e-01 +-6.192400000000000e-01 +-7.447400000000000e-01 +-8.130900000000000e-01 +-8.203100000000000e-01 +-7.730800000000000e-01 +-6.810700000000000e-01 +-5.481100000000000e-01 +-3.721000000000000e-01 +-1.548800000000000e-01 + 8.703100000000000e-02 + 3.226400000000000e-01 + 5.201700000000000e-01 + 6.639699999999999e-01 + 7.594800000000000e-01 + 8.201000000000001e-01 + 8.461400000000000e-01 + 8.148000000000000e-01 + 6.933200000000000e-01 + 4.683300000000000e-01 + 1.687800000000000e-01 +-1.380000000000000e-01 +-3.784400000000000e-01 +-5.120800000000000e-01 +-5.499100000000000e-01 +-5.387300000000000e-01 +-5.234200000000000e-01 +-5.158100000000000e-01 +-4.925100000000000e-01 +-4.209400000000000e-01 +-2.911500000000000e-01 +-1.279400000000000e-01 + 2.485100000000000e-02 + 1.332900000000000e-01 + 1.911700000000000e-01 + 2.137200000000000e-01 + 2.155000000000000e-01 + 1.939400000000000e-01 + 1.341900000000000e-01 + 3.087800000000000e-02 +-9.338000000000000e-02 +-1.913100000000000e-01 +-2.167600000000000e-01 +-1.539400000000000e-01 +-2.740300000000000e-02 + 1.153500000000000e-01 + 2.350200000000000e-01 + 3.214300000000000e-01 + 3.889900000000000e-01 + 4.529100000000000e-01 + 5.071900000000000e-01 + 5.235400000000000e-01 + 4.723600000000000e-01 + 3.486800000000000e-01 + 1.815400000000000e-01 + 1.876800000000000e-02 +-1.019300000000000e-01 +-1.745000000000000e-01 +-2.237000000000000e-01 +-2.839600000000000e-01 +-3.738500000000000e-01 +-4.835200000000000e-01 +-5.810600000000000e-01 +-6.308200000000000e-01 +-6.103200000000000e-01 +-5.170100000000000e-01 +-3.651500000000000e-01 +-1.786600000000000e-01 + 1.431300000000000e-02 + 1.846900000000000e-01 + 3.060400000000000e-01 + 3.601100000000000e-01 + 3.425900000000000e-01 + 2.653200000000000e-01 + 1.529400000000000e-01 + 3.527200000000000e-02 +-6.094000000000000e-02 +-1.179800000000000e-01 +-1.302000000000000e-01 +-1.047200000000000e-01 +-5.971300000000000e-02 +-1.902000000000000e-02 +-2.836400000000000e-03 +-1.737600000000000e-02 +-4.913500000000000e-02 +-6.866000000000000e-02 +-4.366600000000000e-02 + 4.464700000000000e-02 + 1.907900000000000e-01 + 3.653800000000000e-01 + 5.259200000000001e-01 + 6.317100000000000e-01 + 6.561500000000000e-01 + 5.926000000000000e-01 + 4.540800000000000e-01 + 2.688700000000000e-01 + 7.310100000000000e-02 +-9.870100000000000e-02 +-2.233400000000000e-01 +-2.949800000000000e-01 +-3.237000000000000e-01 +-3.266700000000000e-01 +-3.170200000000000e-01 +-2.979100000000000e-01 +-2.657300000000000e-01 +-2.193800000000000e-01 +-1.670300000000000e-01 +-1.237900000000000e-01 +-1.011300000000000e-01 +-9.683400000000000e-02 +-9.522700000000001e-02 +-7.965100000000000e-02 +-4.905600000000000e-02 +-2.550300000000000e-02 +-4.477300000000000e-02 +-1.341700000000000e-01 +-2.912900000000000e-01 +-4.776500000000000e-01 +-6.317000000000000e-01 +-6.936600000000001e-01 +-6.287600000000000e-01 +-4.384700000000000e-01 +-1.577700000000000e-01 + 1.568500000000000e-01 + 4.426200000000000e-01 + 6.456499999999999e-01 + 7.345300000000000e-01 + 7.097100000000000e-01 + 6.037200000000000e-01 + 4.687200000000000e-01 + 3.542300000000000e-01 + 2.857400000000000e-01 + 2.568300000000000e-01 + 2.402100000000000e-01 + 2.109100000000000e-01 + 1.656900000000000e-01 + 1.250200000000000e-01 + 1.164800000000000e-01 + 1.519800000000000e-01 + 2.158900000000000e-01 + 2.732100000000000e-01 + 2.915800000000000e-01 + 2.611900000000000e-01 + 1.981900000000000e-01 + 1.298700000000000e-01 + 7.334300000000001e-02 + 2.317900000000000e-02 +-4.357000000000000e-02 +-1.498100000000000e-01 +-3.014500000000000e-01 +-4.825100000000000e-01 +-6.639500000000000e-01 +-8.182900000000000e-01 +-9.293000000000000e-01 +-9.912800000000000e-01 +-1.001400000000000e+00 +-9.527600000000001e-01 +-8.354900000000000e-01 +-6.446000000000000e-01 +-3.898200000000000e-01 +-9.926000000000000e-02 + 1.866200000000000e-01 + 4.283800000000000e-01 + 6.014500000000000e-01 + 7.031200000000000e-01 + 7.486800000000000e-01 + 7.588800000000000e-01 + 7.456900000000000e-01 + 7.049000000000000e-01 + 6.206100000000000e-01 + 4.797700000000000e-01 + 2.882600000000000e-01 + 7.770700000000000e-02 +-1.029900000000000e-01 +-2.082500000000000e-01 +-2.171300000000000e-01 +-1.427300000000000e-01 +-2.410800000000000e-02 + 9.381600000000000e-02 + 1.798100000000000e-01 + 2.239500000000000e-01 + 2.313700000000000e-01 + 2.095700000000000e-01 + 1.606300000000000e-01 + 8.365499999999999e-02 +-1.609600000000000e-02 +-1.209400000000000e-01 +-2.044200000000000e-01 +-2.436200000000000e-01 +-2.317100000000000e-01 +-1.816900000000000e-01 +-1.189000000000000e-01 +-6.798700000000001e-02 +-4.296900000000000e-02 +-4.559400000000000e-02 +-7.012500000000001e-02 +-1.088100000000000e-01 +-1.538700000000000e-01 +-1.966500000000000e-01 +-2.280100000000000e-01 +-2.418400000000000e-01 +-2.393900000000000e-01 +-2.292600000000000e-01 +-2.206600000000000e-01 +-2.137100000000000e-01 +-1.949600000000000e-01 +-1.436800000000000e-01 +-4.662200000000000e-02 + 8.854900000000000e-02 + 2.315300000000000e-01 + 3.423200000000000e-01 + 3.912800000000000e-01 + 3.734400000000000e-01 + 3.083800000000000e-01 + 2.265000000000000e-01 + 1.518600000000000e-01 + 9.229700000000000e-02 + 4.129300000000000e-02 +-1.276200000000000e-02 +-7.781000000000000e-02 +-1.550900000000000e-01 +-2.408200000000000e-01 +-3.280500000000000e-01 +-4.058200000000000e-01 +-4.571900000000000e-01 +-4.606400000000000e-01 +-3.967900000000000e-01 +-2.576600000000000e-01 +-5.238200000000000e-02 + 1.947100000000000e-01 + 4.520500000000000e-01 + 6.887400000000000e-01 + 8.772100000000000e-01 + 9.910400000000000e-01 + 1.003900000000000e+00 + 8.952400000000000e-01 + 6.634400000000000e-01 + 3.369600000000000e-01 +-2.498100000000000e-02 +-3.480600000000000e-01 +-5.686099999999999e-01 +-6.564400000000000e-01 +-6.223000000000000e-01 +-5.068000000000000e-01 +-3.585400000000000e-01 +-2.147700000000000e-01 +-9.421499999999999e-02 +-2.663800000000000e-03 + 5.662000000000000e-02 + 7.696600000000001e-02 + 5.112100000000000e-02 +-2.057600000000000e-02 +-1.242800000000000e-01 +-2.347400000000000e-01 +-3.251600000000000e-01 +-3.788400000000000e-01 +-3.953300000000000e-01 +-3.875500000000000e-01 +-3.720200000000000e-01 +-3.584600000000000e-01 +-3.449000000000000e-01 +-3.205400000000000e-01 +-2.737200000000000e-01 +-1.995500000000000e-01 +-1.028800000000000e-01 + 4.547700000000000e-03 + 1.097600000000000e-01 + 2.030800000000000e-01 + 2.792600000000000e-01 + 3.362000000000000e-01 + 3.741400000000000e-01 + 3.973200000000000e-01 + 4.167700000000000e-01 + 4.502100000000000e-01 + 5.160800000000000e-01 + 6.225600000000000e-01 + 7.577000000000000e-01 + 8.880500000000000e-01 + 9.690299999999999e-01 + 9.630600000000000e-01 + 8.557100000000000e-01 + 6.604900000000000e-01 + 4.099200000000000e-01 + 1.388900000000000e-01 +-1.289900000000000e-01 +-3.844900000000000e-01 +-6.252900000000000e-01 +-8.451300000000000e-01 +-1.028100000000000e+00 +-1.152300000000000e+00 +-1.199500000000000e+00 +-1.164900000000000e+00 +-1.060500000000000e+00 +-9.122800000000000e-01 +-7.516000000000000e-01 +-6.060400000000000e-01 +-4.912000000000000e-01 +-4.054700000000000e-01 +-3.301500000000000e-01 +-2.364200000000000e-01 +-9.881200000000000e-02 + 9.016000000000000e-02 + 3.123600000000000e-01 + 5.294900000000000e-01 + 7.003800000000000e-01 + 8.005300000000000e-01 + 8.321300000000000e-01 + 8.183700000000000e-01 + 7.867200000000000e-01 + 7.531600000000001e-01 + 7.176100000000000e-01 + 6.715800000000000e-01 + 6.095800000000000e-01 + 5.339900000000000e-01 + 4.505900000000000e-01 + 3.609100000000000e-01 + 2.611000000000000e-01 + 1.502200000000000e-01 + 4.057600000000000e-02 +-4.198100000000000e-02 +-7.290500000000000e-02 +-5.105500000000000e-02 +-1.101500000000000e-02 +-1.293000000000000e-02 +-1.125800000000000e-01 +-3.295500000000000e-01 +-6.339200000000000e-01 +-9.597500000000000e-01 +-1.235000000000000e+00 +-1.407900000000000e+00 +-1.456300000000000e+00 +-1.379200000000000e+00 +-1.186000000000000e+00 +-8.943200000000000e-01 +-5.359400000000000e-01 +-1.600000000000000e-01 + 1.782100000000000e-01 + 4.407300000000000e-01 + 6.268200000000000e-01 + 7.713800000000000e-01 + 9.185800000000000e-01 + 1.086600000000000e+00 + 1.248600000000000e+00 + 1.345200000000000e+00 + 1.321000000000000e+00 + 1.159800000000000e+00 + 8.953100000000001e-01 + 5.904300000000000e-01 + 3.018400000000000e-01 + 5.566000000000000e-02 +-1.516900000000000e-01 +-3.328800000000000e-01 +-4.888800000000000e-01 +-6.048000000000000e-01 +-6.635200000000000e-01 +-6.634000000000000e-01 +-6.239900000000000e-01 +-5.751500000000001e-01 +-5.385500000000000e-01 +-5.164700000000000e-01 +-4.953500000000000e-01 +-4.591600000000000e-01 +-4.005600000000000e-01 +-3.216200000000000e-01 +-2.258900000000000e-01 +-1.112200000000000e-01 + 2.874000000000000e-02 + 1.951400000000000e-01 + 3.747700000000000e-01 + 5.394700000000000e-01 + 6.558800000000000e-01 + 6.990900000000000e-01 + 6.620100000000000e-01 + 5.560500000000000e-01 + 4.052900000000000e-01 + 2.389700000000000e-01 + 8.536400000000000e-02 +-3.319100000000000e-02 +-1.054300000000000e-01 +-1.350600000000000e-01 +-1.398300000000000e-01 +-1.434300000000000e-01 +-1.630600000000000e-01 +-1.999900000000000e-01 +-2.399900000000000e-01 +-2.637000000000000e-01 +-2.600200000000000e-01 +-2.329800000000000e-01 +-1.976800000000000e-01 +-1.695100000000000e-01 +-1.551700000000000e-01 +-1.520500000000000e-01 +-1.543900000000000e-01 +-1.594800000000000e-01 +-1.678100000000000e-01 +-1.777700000000000e-01 +-1.810500000000000e-01 +-1.648300000000000e-01 +-1.203100000000000e-01 +-5.097200000000000e-02 + 2.731200000000000e-02 + 9.534900000000000e-02 + 1.426800000000000e-01 + 1.734700000000000e-01 + 2.020700000000000e-01 + 2.424600000000000e-01 + 2.999600000000000e-01 + 3.708400000000000e-01 + 4.477300000000000e-01 + 5.239000000000000e-01 + 5.915500000000000e-01 + 6.366100000000000e-01 + 6.377300000000000e-01 + 5.748300000000000e-01 + 4.437000000000000e-01 + 2.657800000000000e-01 + 8.274900000000000e-02 +-6.398300000000000e-02 +-1.569200000000000e-01 +-2.129700000000000e-01 +-2.724800000000000e-01 +-3.729600000000000e-01 +-5.244799999999999e-01 +-7.023600000000000e-01 +-8.604700000000000e-01 +-9.548400000000000e-01 +-9.619200000000000e-01 +-8.818700000000000e-01 +-7.295400000000000e-01 +-5.236400000000000e-01 +-2.831900000000000e-01 +-3.140400000000000e-02 + 2.004200000000000e-01 + 3.771400000000000e-01 + 4.724400000000000e-01 + 4.822200000000000e-01 + 4.282900000000000e-01 + 3.482100000000000e-01 + 2.770900000000000e-01 + 2.327000000000000e-01 + 2.130200000000000e-01 + 2.061900000000000e-01 + 2.041000000000000e-01 + 2.092100000000000e-01 + 2.300000000000000e-01 + 2.691600000000000e-01 + 3.145300000000000e-01 + 3.401700000000000e-01 + 3.180100000000000e-01 + 2.326600000000000e-01 + 9.029600000000000e-02 +-8.352100000000000e-02 +-2.547900000000000e-01 +-3.935600000000000e-01 +-4.809300000000000e-01 +-5.086300000000000e-01 +-4.742900000000000e-01 +-3.781500000000000e-01 +-2.243700000000000e-01 +-2.556600000000000e-02 + 1.940400000000000e-01 + 4.010900000000000e-01 + 5.614300000000000e-01 + 6.506100000000000e-01 + 6.607900000000000e-01 + 6.008700000000000e-01 + 4.904700000000000e-01 + 3.516900000000000e-01 + 2.031000000000000e-01 + 5.761800000000000e-02 +-7.680099999999999e-02 +-1.960400000000000e-01 +-2.996700000000000e-01 +-3.912300000000000e-01 +-4.770400000000000e-01 +-5.630100000000000e-01 +-6.503400000000000e-01 +-7.327600000000000e-01 +-7.971900000000000e-01 +-8.277200000000000e-01 +-8.108600000000000e-01 +-7.395100000000000e-01 +-6.142400000000000e-01 +-4.423500000000000e-01 +-2.359800000000000e-01 +-1.073200000000000e-02 + 2.152300000000000e-01 + 4.222800000000000e-01 + 5.914400000000000e-01 + 7.078600000000000e-01 + 7.648400000000000e-01 + 7.669899999999999e-01 + 7.304300000000000e-01 + 6.784900000000000e-01 + 6.332700000000000e-01 + 6.058700000000000e-01 + 5.903000000000000e-01 + 5.657700000000000e-01 + 5.079100000000000e-01 + 4.039300000000000e-01 + 2.625700000000000e-01 + 1.116100000000000e-01 +-1.725100000000000e-02 +-1.070800000000000e-01 +-1.653900000000000e-01 +-2.170800000000000e-01 +-2.844600000000000e-01 +-3.681900000000000e-01 +-4.438000000000000e-01 +-4.782300000000000e-01 +-4.562300000000000e-01 +-3.977900000000000e-01 +-3.526300000000000e-01 +-3.727700000000000e-01 +-4.796400000000000e-01 +-6.469400000000000e-01 +-8.103900000000001e-01 +-8.984600000000000e-01 +-8.648600000000000e-01 +-7.044800000000000e-01 +-4.464700000000000e-01 +-1.333100000000000e-01 + 1.981200000000000e-01 + 5.225400000000000e-01 + 8.199700000000000e-01 + 1.066700000000000e+00 + 1.233400000000000e+00 + 1.293300000000000e+00 + 1.232600000000000e+00 + 1.057500000000000e+00 + 7.906200000000000e-01 + 4.619800000000000e-01 + 1.015500000000000e-01 +-2.625600000000000e-01 +-6.006000000000000e-01 +-8.781400000000000e-01 +-1.058600000000000e+00 +-1.112600000000000e+00 +-1.028600000000000e+00 +-8.196300000000000e-01 +-5.213900000000000e-01 +-1.826500000000000e-01 + 1.473500000000000e-01 + 4.289600000000000e-01 + 6.364500000000000e-01 + 7.569200000000000e-01 + 7.869900000000000e-01 + 7.308100000000000e-01 + 6.010600000000000e-01 + 4.211300000000000e-01 + 2.246600000000000e-01 + 4.891300000000000e-02 +-7.736200000000000e-02 +-1.460700000000000e-01 +-1.740400000000000e-01 +-1.946200000000000e-01 +-2.393100000000000e-01 +-3.194900000000000e-01 +-4.196900000000000e-01 +-5.072500000000000e-01 +-5.522600000000000e-01 +-5.443300000000000e-01 +-4.948700000000000e-01 +-4.239000000000000e-01 +-3.424600000000000e-01 +-2.447100000000000e-01 +-1.163300000000000e-01 + 4.735700000000000e-02 + 2.288400000000000e-01 + 3.927400000000000e-01 + 5.052000000000000e-01 + 5.541900000000000e-01 + 5.547600000000000e-01 + 5.346200000000000e-01 + 5.111200000000000e-01 + 4.776000000000000e-01 + 4.104100000000000e-01 + 2.915700000000000e-01 + 1.293500000000000e-01 +-4.000600000000000e-02 +-1.719700000000000e-01 +-2.409000000000000e-01 +-2.551100000000000e-01 +-2.490700000000000e-01 +-2.592600000000000e-01 +-3.015500000000000e-01 +-3.655000000000000e-01 +-4.270200000000000e-01 +-4.671200000000000e-01 +-4.809600000000000e-01 +-4.712900000000000e-01 +-4.342300000000000e-01 +-3.519900000000000e-01 +-2.014300000000000e-01 + 2.602700000000000e-02 + 3.080700000000000e-01 + 5.923700000000000e-01 + 8.165700000000000e-01 + 9.357000000000000e-01 + 9.400800000000000e-01 + 8.533800000000000e-01 + 7.136400000000001e-01 + 5.506200000000000e-01 + 3.737800000000000e-01 + 1.768100000000000e-01 +-4.662900000000000e-02 +-2.876700000000000e-01 +-5.180000000000000e-01 +-6.991300000000000e-01 +-7.995300000000000e-01 +-8.097500000000000e-01 +-7.471800000000000e-01 +-6.477900000000000e-01 +-5.491700000000000e-01 +-4.732200000000000e-01 +-4.171300000000000e-01 +-3.573000000000000e-01 +-2.642900000000000e-01 +-1.212000000000000e-01 + 6.425400000000001e-02 + 2.604000000000000e-01 + 4.249500000000000e-01 + 5.239400000000000e-01 + 5.463500000000000e-01 + 5.070200000000000e-01 + 4.374000000000000e-01 + 3.696000000000000e-01 + 3.225100000000000e-01 + 2.959800000000000e-01 + 2.747900000000000e-01 + 2.386900000000000e-01 + 1.734400000000000e-01 + 7.810200000000000e-02 +-3.345100000000000e-02 +-1.367100000000000e-01 +-2.045300000000000e-01 +-2.162700000000000e-01 +-1.652600000000000e-01 +-6.177200000000000e-02 + 6.929900000000000e-02 + 1.953400000000000e-01 + 2.847700000000000e-01 + 3.146900000000000e-01 + 2.753800000000000e-01 + 1.714000000000000e-01 + 2.001700000000000e-02 +-1.523100000000000e-01 +-3.152800000000000e-01 +-4.415500000000000e-01 +-5.137800000000000e-01 +-5.294800000000000e-01 +-5.009900000000000e-01 +-4.498400000000000e-01 +-3.971900000000000e-01 +-3.546700000000000e-01 +-3.195400000000000e-01 +-2.768300000000000e-01 +-2.073000000000000e-01 +-9.798100000000000e-02 + 4.950300000000000e-02 + 2.169100000000000e-01 + 3.752400000000000e-01 + 4.965800000000000e-01 + 5.665200000000000e-01 + 5.901400000000000e-01 + 5.869200000000000e-01 + 5.760300000000000e-01 + 5.600300000000000e-01 + 5.183700000000000e-01 + 4.176900000000000e-01 + 2.352700000000000e-01 +-1.788900000000000e-02 +-2.909300000000000e-01 +-5.114700000000000e-01 +-6.204300000000000e-01 +-6.032100000000000e-01 +-4.971900000000000e-01 +-3.698200000000000e-01 +-2.799800000000000e-01 +-2.468300000000000e-01 +-2.448100000000000e-01 +-2.261900000000000e-01 +-1.544600000000000e-01 +-2.626700000000000e-02 + 1.307500000000000e-01 + 2.787100000000000e-01 + 3.915400000000000e-01 + 4.628000000000000e-01 + 4.966700000000000e-01 + 4.934200000000000e-01 + 4.435300000000000e-01 + 3.362100000000000e-01 + 1.747200000000000e-01 +-1.519300000000000e-02 +-1.924000000000000e-01 +-3.191500000000000e-01 +-3.785900000000000e-01 +-3.792200000000000e-01 +-3.444500000000000e-01 +-2.964900000000000e-01 +-2.461300000000000e-01 +-1.938400000000000e-01 +-1.377500000000000e-01 +-7.923800000000000e-02 +-2.084600000000000e-02 + 4.040600000000000e-02 + 1.158800000000000e-01 + 2.185000000000000e-01 + 3.489000000000000e-01 + 4.846000000000000e-01 + 5.818900000000000e-01 + 5.922700000000000e-01 + 4.852600000000000e-01 + 2.648500000000000e-01 +-2.966900000000000e-02 +-3.382800000000000e-01 +-6.017700000000000e-01 +-7.795100000000000e-01 +-8.566400000000000e-01 +-8.405400000000000e-01 +-7.514200000000000e-01 +-6.126300000000000e-01 +-4.444100000000000e-01 +-2.616500000000000e-01 +-7.442100000000000e-02 + 1.104500000000000e-01 + 2.879000000000000e-01 + 4.535600000000000e-01 + 6.027600000000000e-01 + 7.293100000000000e-01 + 8.242600000000000e-01 + 8.758800000000000e-01 + 8.725300000000000e-01 + 8.083700000000000e-01 + 6.893800000000000e-01 + 5.350600000000000e-01 + 3.723500000000000e-01 + 2.230200000000000e-01 + 9.185800000000000e-02 +-3.585600000000000e-02 +-1.831400000000000e-01 +-3.618500000000000e-01 +-5.574400000000000e-01 +-7.301100000000000e-01 +-8.339900000000000e-01 +-8.437600000000000e-01 +-7.712200000000000e-01 +-6.600100000000000e-01 +-5.607700000000000e-01 +-5.026200000000000e-01 +-4.790700000000000e-01 +-4.569500000000000e-01 +-4.011800000000000e-01 +-2.984300000000000e-01 +-1.646200000000000e-01 +-3.334800000000000e-02 + 6.562100000000000e-02 + 1.235500000000000e-01 + 1.564500000000000e-01 + 1.955700000000000e-01 + 2.719000000000000e-01 + 4.024600000000000e-01 + 5.828100000000001e-01 + 7.867300000000000e-01 + 9.725500000000000e-01 + 1.095400000000000e+00 + 1.122900000000000e+00 + 1.048100000000000e+00 + 8.923200000000000e-01 + 6.952900000000000e-01 + 4.947300000000000e-01 + 3.088700000000000e-01 + 1.319700000000000e-01 +-5.395500000000000e-02 +-2.598600000000000e-01 +-4.769100000000000e-01 +-6.796100000000000e-01 +-8.417600000000000e-01 +-9.528300000000000e-01 +-1.022000000000000e+00 +-1.067400000000000e+00 +-1.099200000000000e+00 +-1.110300000000000e+00 +-1.081000000000000e+00 +-9.934300000000000e-01 +-8.438300000000000e-01 +-6.443900000000000e-01 +-4.140500000000000e-01 +-1.675100000000000e-01 + 8.913300000000000e-02 + 3.536600000000000e-01 + 6.196500000000000e-01 + 8.721800000000000e-01 + 1.090300000000000e+00 + 1.253200000000000e+00 + 1.344100000000000e+00 + 1.351100000000000e+00 + 1.266500000000000e+00 + 1.089900000000000e+00 + 8.333500000000000e-01 + 5.253700000000000e-01 + 2.066700000000000e-01 +-8.182600000000000e-02 +-3.127100000000000e-01 +-4.786600000000000e-01 +-5.877900000000000e-01 +-6.521200000000000e-01 +-6.781900000000000e-01 +-6.662600000000000e-01 +-6.167500000000000e-01 +-5.366500000000000e-01 +-4.393700000000000e-01 +-3.381700000000000e-01 +-2.395500000000000e-01 +-1.432200000000000e-01 +-4.879800000000000e-02 + 3.710600000000000e-02 + 1.008200000000000e-01 + 1.299400000000000e-01 + 1.236700000000000e-01 + 9.625800000000000e-02 + 6.993600000000000e-02 + 6.208600000000000e-02 + 7.621699999999999e-02 + 1.027700000000000e-01 + 1.277500000000000e-01 + 1.410900000000000e-01 + 1.384500000000000e-01 + 1.166200000000000e-01 + 6.944699999999999e-02 +-1.003500000000000e-02 +-1.217700000000000e-01 +-2.523700000000000e-01 +-3.774000000000000e-01 +-4.723200000000000e-01 +-5.241900000000000e-01 +-5.345900000000000e-01 +-5.108800000000000e-01 +-4.527600000000000e-01 +-3.458100000000000e-01 +-1.689500000000000e-01 + 8.787800000000000e-02 + 4.081400000000000e-01 + 7.465900000000000e-01 + 1.043100000000000e+00 + 1.244100000000000e+00 + 1.319800000000000e+00 + 1.268700000000000e+00 + 1.110000000000000e+00 + 8.726300000000000e-01 + 5.868800000000000e-01 + 2.818300000000000e-01 +-1.476000000000000e-02 +-2.780400000000000e-01 +-4.906200000000000e-01 +-6.474800000000001e-01 +-7.572600000000000e-01 +-8.377599999999999e-01 +-9.067400000000000e-01 +-9.722700000000000e-01 +-1.027200000000000e+00 +-1.050400000000000e+00 +-1.016000000000000e+00 +-9.051100000000000e-01 +-7.169400000000000e-01 +-4.713600000000000e-01 +-2.022500000000000e-01 + 5.593000000000000e-02 + 2.805200000000000e-01 + 4.647400000000000e-01 + 6.114800000000000e-01 + 7.223500000000000e-01 + 7.907900000000000e-01 + 8.051900000000000e-01 + 7.595700000000000e-01 + 6.628800000000000e-01 + 5.384800000000000e-01 + 4.130200000000000e-01 + 3.027500000000000e-01 + 2.077700000000000e-01 + 1.183200000000000e-01 + 2.758100000000000e-02 +-5.986100000000000e-02 +-1.307400000000000e-01 +-1.738800000000000e-01 +-1.888700000000000e-01 +-1.847500000000000e-01 +-1.700400000000000e-01 +-1.443800000000000e-01 +-1.007000000000000e-01 +-3.768200000000000e-02 + 2.868800000000000e-02 + 6.674600000000000e-02 + 4.626100000000000e-02 +-4.041500000000000e-02 +-1.699200000000000e-01 +-3.005000000000000e-01 +-3.975300000000000e-01 +-4.527300000000000e-01 +-4.819000000000000e-01 +-5.026000000000000e-01 +-5.097400000000000e-01 +-4.698400000000000e-01 +-3.409700000000000e-01 +-1.056400000000000e-01 + 2.071400000000000e-01 + 5.275500000000000e-01 + 7.760600000000000e-01 + 9.004600000000000e-01 + 8.959000000000000e-01 + 7.978600000000000e-01 + 6.556900000000000e-01 + 5.057600000000000e-01 + 3.595200000000000e-01 + 2.098900000000000e-01 + 4.716300000000000e-02 +-1.281500000000000e-01 +-3.025400000000000e-01 +-4.556000000000000e-01 +-5.688900000000000e-01 +-6.317600000000000e-01 +-6.428900000000000e-01 +-6.088900000000000e-01 +-5.424200000000000e-01 +-4.602400000000000e-01 +-3.806600000000000e-01 +-3.196200000000000e-01 +-2.859300000000000e-01 +-2.775700000000000e-01 +-2.806800000000000e-01 +-2.730000000000000e-01 +-2.311400000000000e-01 +-1.398500000000000e-01 + 9.332700000000000e-04 + 1.750200000000000e-01 + 3.564800000000000e-01 + 5.209400000000000e-01 + 6.550400000000000e-01 + 7.584300000000000e-01 + 8.369200000000000e-01 + 8.923300000000000e-01 + 9.172200000000000e-01 + 8.992400000000000e-01 + 8.319100000000000e-01 + 7.231000000000000e-01 + 5.929800000000000e-01 + 4.617700000000000e-01 + 3.356800000000000e-01 + 2.019300000000000e-01 + 3.736500000000000e-02 +-1.748100000000000e-01 +-4.315700000000000e-01 +-7.082400000000000e-01 +-9.680200000000000e-01 +-1.175000000000000e+00 +-1.303200000000000e+00 +-1.338800000000000e+00 +-1.280300000000000e+00 +-1.139000000000000e+00 +-9.403600000000000e-01 +-7.206000000000000e-01 +-5.153200000000000e-01 +-3.455300000000000e-01 +-2.099200000000000e-01 +-9.067400000000000e-02 + 3.017500000000000e-02 + 1.562100000000000e-01 + 2.756700000000000e-01 + 3.752600000000000e-01 + 4.565100000000000e-01 + 5.395300000000000e-01 + 6.482300000000000e-01 + 7.877600000000000e-01 + 9.329000000000000e-01 + 1.039300000000000e+00 + 1.071200000000000e+00 + 1.025700000000000e+00 + 9.341100000000000e-01 + 8.395300000000000e-01 + 7.663000000000000e-01 + 7.051200000000000e-01 + 6.235900000000000e-01 + 4.928000000000000e-01 + 3.089200000000000e-01 + 9.394200000000000e-02 +-1.226600000000000e-01 +-3.247500000000000e-01 +-5.159800000000000e-01 +-7.079000000000000e-01 +-9.008000000000000e-01 +-1.073600000000000e+00 +-1.190700000000000e+00 +-1.220600000000000e+00 +-1.152900000000000e+00 +-1.004600000000000e+00 +-8.125300000000000e-01 +-6.202500000000000e-01 +-4.644500000000000e-01 +-3.653300000000000e-01 +-3.212400000000000e-01 +-3.090300000000000e-01 +-2.919200000000000e-01 +-2.345500000000000e-01 +-1.190600000000000e-01 + 4.695500000000000e-02 + 2.365000000000000e-01 + 4.192000000000000e-01 + 5.758000000000000e-01 + 7.005600000000000e-01 + 7.917400000000000e-01 + 8.411300000000000e-01 + 8.348100000000001e-01 + 7.668300000000000e-01 + 6.539500000000000e-01 + 5.355700000000000e-01 + 4.543200000000000e-01 + 4.296100000000000e-01 + 4.450400000000000e-01 + 4.611600000000000e-01 + 4.447800000000000e-01 + 3.917700000000000e-01 + 3.246100000000000e-01 + 2.671600000000000e-01 + 2.185700000000000e-01 + 1.499800000000000e-01 + 2.828400000000000e-02 +-1.520900000000000e-01 +-3.568800000000000e-01 +-5.309100000000000e-01 +-6.343200000000000e-01 +-6.672300000000000e-01 +-6.634100000000001e-01 +-6.596200000000000e-01 +-6.671100000000000e-01 +-6.692000000000000e-01 +-6.455300000000000e-01 +-5.997000000000000e-01 +-5.636900000000000e-01 +-5.725100000000000e-01 +-6.289200000000000e-01 +-6.885900000000000e-01 +-6.805800000000000e-01 +-5.504400000000000e-01 +-2.951800000000000e-01 + 3.431900000000000e-02 + 3.627700000000000e-01 + 6.289900000000000e-01 + 8.073500000000000e-01 + 9.029300000000000e-01 + 9.318000000000000e-01 + 9.055600000000000e-01 + 8.301300000000000e-01 + 7.136000000000000e-01 + 5.709600000000000e-01 + 4.200200000000000e-01 + 2.738300000000000e-01 + 1.391900000000000e-01 + 2.347200000000000e-02 +-5.832600000000000e-02 +-8.655700000000000e-02 +-5.115200000000000e-02 + 3.424300000000000e-02 + 1.323500000000000e-01 + 2.000400000000000e-01 + 2.117700000000000e-01 + 1.704900000000000e-01 + 9.791300000000000e-02 + 1.328100000000000e-02 +-8.009600000000000e-02 +-1.890400000000000e-01 +-3.119900000000000e-01 +-4.270100000000000e-01 +-5.003700000000000e-01 +-5.107699999999999e-01 +-4.685700000000000e-01 +-4.113400000000000e-01 +-3.767600000000000e-01 +-3.739100000000000e-01 +-3.771200000000000e-01 +-3.484000000000000e-01 +-2.705900000000000e-01 +-1.637600000000000e-01 +-7.077300000000000e-02 +-2.362200000000000e-02 +-1.797300000000000e-02 +-1.653200000000000e-02 + 2.183900000000000e-02 + 1.108700000000000e-01 + 2.276500000000000e-01 + 3.305900000000000e-01 + 3.882200000000000e-01 + 3.959600000000000e-01 + 3.705000000000000e-01 + 3.312100000000000e-01 + 2.864500000000000e-01 + 2.352200000000000e-01 + 1.783300000000000e-01 + 1.251200000000000e-01 + 8.761300000000000e-02 + 6.799900000000000e-02 + 5.308600000000000e-02 + 2.313600000000000e-02 +-3.145100000000000e-02 +-1.006500000000000e-01 +-1.618800000000000e-01 +-1.979500000000000e-01 +-2.098900000000000e-01 +-2.126700000000000e-01 +-2.171900000000000e-01 +-2.150800000000000e-01 +-1.810900000000000e-01 +-9.281399999999999e-02 + 4.773000000000000e-02 + 2.088700000000000e-01 + 3.451900000000000e-01 + 4.226100000000000e-01 + 4.340600000000000e-01 + 3.960300000000000e-01 + 3.321700000000000e-01 + 2.587300000000000e-01 + 1.819800000000000e-01 + 1.047300000000000e-01 + 3.128800000000000e-02 +-3.599200000000000e-02 +-1.044800000000000e-01 +-1.926000000000000e-01 +-3.189000000000000e-01 +-4.851300000000000e-01 +-6.672600000000000e-01 +-8.231600000000000e-01 +-9.124900000000000e-01 +-9.139900000000000e-01 +-8.281200000000000e-01 +-6.667500000000000e-01 +-4.422700000000000e-01 +-1.679300000000000e-01 + 1.322200000000000e-01 + 4.170500000000000e-01 + 6.382000000000000e-01 + 7.635300000000000e-01 + 7.969200000000000e-01 + 7.758699999999999e-01 + 7.449700000000000e-01 + 7.238400000000000e-01 + 6.946800000000000e-01 + 6.207700000000000e-01 + 4.818800000000000e-01 + 2.981300000000000e-01 + 1.220200000000000e-01 + 3.839400000000000e-03 +-4.285900000000000e-02 +-4.861200000000000e-02 +-6.286600000000001e-02 +-1.166800000000000e-01 +-2.025100000000000e-01 +-2.855200000000000e-01 +-3.350800000000000e-01 +-3.497900000000000e-01 +-3.561300000000000e-01 +-3.835500000000000e-01 +-4.374500000000000e-01 +-4.924700000000000e-01 +-5.108400000000000e-01 +-4.706100000000000e-01 +-3.817500000000000e-01 +-2.789800000000000e-01 +-1.982100000000000e-01 +-1.546200000000000e-01 +-1.365000000000000e-01 +-1.163400000000000e-01 +-6.846600000000000e-02 + 1.845600000000000e-02 + 1.395600000000000e-01 + 2.796600000000000e-01 + 4.207900000000000e-01 + 5.471500000000000e-01 + 6.467100000000000e-01 + 7.103699999999999e-01 + 7.294900000000000e-01 + 6.936099999999999e-01 + 5.912800000000000e-01 + 4.167300000000000e-01 + 1.809400000000000e-01 +-8.038900000000000e-02 +-3.113800000000000e-01 +-4.562800000000000e-01 +-4.867300000000000e-01 +-4.188500000000000e-01 +-3.061900000000000e-01 +-2.099000000000000e-01 +-1.645600000000000e-01 +-1.622500000000000e-01 +-1.658100000000000e-01 +-1.407500000000000e-01 +-8.186100000000000e-02 +-1.509000000000000e-02 + 2.525100000000000e-02 + 2.488300000000000e-02 + 9.250800000000000e-04 +-1.211800000000000e-02 + 1.019300000000000e-02 + 6.311000000000000e-02 + 1.159000000000000e-01 + 1.331700000000000e-01 + 9.684500000000000e-02 + 1.303900000000000e-02 +-9.798200000000000e-02 +-2.169000000000000e-01 +-3.319000000000000e-01 +-4.331200000000000e-01 +-5.036600000000000e-01 +-5.189300000000000e-01 +-4.580500000000000e-01 +-3.190100000000000e-01 +-1.247200000000000e-01 + 8.635100000000000e-02 + 2.790400000000000e-01 + 4.365800000000000e-01 + 5.617200000000000e-01 + 6.646600000000000e-01 + 7.479400000000000e-01 + 7.993100000000000e-01 + 7.969600000000000e-01 + 7.224300000000000e-01 + 5.726700000000000e-01 + 3.649900000000000e-01 + 1.334900000000000e-01 +-8.056500000000000e-02 +-2.411000000000000e-01 +-3.288300000000000e-01 +-3.481500000000000e-01 +-3.251700000000000e-01 +-2.957700000000000e-01 +-2.880600000000000e-01 +-3.087700000000000e-01 +-3.424500000000000e-01 +-3.647300000000000e-01 +-3.610700000000000e-01 +-3.376500000000000e-01 +-3.164800000000000e-01 +-3.184400000000000e-01 +-3.471700000000000e-01 +-3.856900000000000e-01 +-4.077900000000000e-01 +-3.944500000000000e-01 +-3.427000000000000e-01 +-2.612000000000000e-01 +-1.586800000000000e-01 +-3.681700000000000e-02 + 1.059700000000000e-01 + 2.635600000000000e-01 + 4.154300000000000e-01 + 5.324600000000000e-01 + 5.927300000000000e-01 + 5.956200000000000e-01 + 5.627600000000000e-01 + 5.240000000000000e-01 + 4.981400000000000e-01 + 4.819900000000000e-01 + 4.548400000000000e-01 + 3.940400000000000e-01 + 2.904600000000000e-01 + 1.539800000000000e-01 + 7.815900000000001e-03 +-1.224400000000000e-01 +-2.177200000000000e-01 +-2.693100000000000e-01 +-2.792500000000000e-01 +-2.596600000000000e-01 +-2.307200000000000e-01 +-2.149900000000000e-01 +-2.275700000000000e-01 +-2.662200000000000e-01 +-3.088300000000000e-01 +-3.226800000000000e-01 +-2.823000000000000e-01 +-1.859800000000000e-01 +-6.037800000000000e-02 + 5.040000000000000e-02 + 1.052200000000000e-01 + 8.433499999999999e-02 +-3.671100000000000e-03 +-1.281100000000000e-01 +-2.500400000000000e-01 +-3.357100000000000e-01 +-3.646400000000000e-01 +-3.317700000000000e-01 +-2.460600000000000e-01 +-1.270200000000000e-01 + 8.130300000000000e-04 + 1.154300000000000e-01 + 2.050600000000000e-01 + 2.719300000000000e-01 + 3.290000000000000e-01 + 3.900400000000000e-01 + 4.584200000000000e-01 + 5.215200000000000e-01 + 5.549300000000000e-01 + 5.345600000000000e-01 + 4.497100000000000e-01 + 3.093000000000000e-01 + 1.377100000000000e-01 +-3.666100000000000e-02 +-1.926100000000000e-01 +-3.202300000000000e-01 +-4.164200000000000e-01 +-4.766900000000000e-01 +-4.911400000000000e-01 +-4.489800000000000e-01 +-3.491100000000000e-01 +-2.083100000000000e-01 +-5.860700000000000e-02 + 6.693200000000001e-02 + 1.518300000000000e-01 + 2.044300000000000e-01 + 2.493100000000000e-01 + 3.062400000000000e-01 + 3.713000000000000e-01 + 4.150500000000000e-01 + 4.011000000000000e-01 + 3.128700000000000e-01 + 1.689400000000000e-01 + 1.415600000000000e-02 +-1.089700000000000e-01 +-1.883400000000000e-01 +-2.487100000000000e-01 +-3.304600000000000e-01 +-4.549800000000000e-01 +-6.020400000000000e-01 +-7.163900000000000e-01 +-7.402900000000000e-01 +-6.498200000000000e-01 +-4.700900000000000e-01 +-2.595700000000000e-01 +-7.524000000000000e-02 + 5.764000000000000e-02 + 1.522100000000000e-01 + 2.417800000000000e-01 + 3.517400000000000e-01 + 4.806800000000000e-01 + 6.012000000000000e-01 + 6.762700000000000e-01 + 6.790000000000000e-01 + 6.043600000000000e-01 + 4.689900000000000e-01 + 3.026400000000000e-01 + 1.369400000000000e-01 +-3.700400000000000e-03 +-1.068600000000000e-01 +-1.714400000000000e-01 +-2.020500000000000e-01 +-2.014200000000000e-01 +-1.660900000000000e-01 +-8.996000000000000e-02 + 2.529900000000000e-02 + 1.604900000000000e-01 + 2.793200000000000e-01 + 3.424700000000000e-01 + 3.276100000000000e-01 + 2.413600000000000e-01 + 1.129300000000000e-01 +-2.679900000000000e-02 +-1.650000000000000e-01 +-3.090700000000000e-01 +-4.687400000000000e-01 +-6.328400000000000e-01 +-7.621599999999999e-01 +-8.085100000000000e-01 +-7.485700000000000e-01 +-6.069400000000000e-01 +-4.477700000000000e-01 +-3.369400000000000e-01 +-2.995800000000000e-01 +-3.027500000000000e-01 +-2.762700000000000e-01 +-1.573400000000000e-01 + 7.081700000000000e-02 + 3.708500000000000e-01 + 6.747000000000000e-01 + 9.189300000000000e-01 + 1.067800000000000e+00 + 1.113700000000000e+00 + 1.064100000000000e+00 + 9.304200000000000e-01 + 7.297700000000000e-01 + 4.919600000000000e-01 + 2.602100000000000e-01 + 7.762700000000000e-02 +-3.368200000000000e-02 +-8.557300000000000e-02 +-1.178200000000000e-01 +-1.757000000000000e-01 +-2.855800000000000e-01 +-4.432900000000000e-01 +-6.197700000000000e-01 +-7.767900000000000e-01 +-8.813400000000000e-01 +-9.129600000000000e-01 +-8.653200000000000e-01 +-7.467300000000000e-01 +-5.798300000000000e-01 +-3.968100000000000e-01 +-2.275400000000000e-01 +-8.526300000000001e-02 + 3.998600000000000e-02 + 1.724000000000000e-01 + 3.293500000000000e-01 + 5.027100000000000e-01 + 6.575600000000000e-01 + 7.515400000000000e-01 + 7.619899999999999e-01 + 7.012000000000000e-01 + 6.082900000000000e-01 + 5.236900000000000e-01 + 4.651000000000000e-01 + 4.216300000000000e-01 + 3.679300000000000e-01 + 2.850100000000000e-01 + 1.710800000000000e-01 + 3.659800000000000e-02 +-1.081500000000000e-01 +-2.591400000000000e-01 +-4.125500000000000e-01 +-5.541400000000000e-01 +-6.574700000000000e-01 +-6.972200000000000e-01 +-6.686400000000000e-01 +-5.963600000000000e-01 +-5.215900000000000e-01 +-4.743600000000000e-01 +-4.510000000000000e-01 +-4.154400000000000e-01 +-3.256000000000000e-01 +-1.666800000000000e-01 + 3.317200000000000e-02 + 2.172300000000000e-01 + 3.349400000000000e-01 + 3.729800000000000e-01 + 3.614900000000000e-01 + 3.522100000000000e-01 + 3.845300000000000e-01 + 4.619200000000000e-01 + 5.521500000000000e-01 + 6.082400000000000e-01 + 5.948500000000000e-01 + 5.049600000000000e-01 + 3.600700000000000e-01 + 1.974600000000000e-01 + 5.271100000000000e-02 +-5.476900000000000e-02 +-1.285000000000000e-01 +-1.917200000000000e-01 +-2.742700000000000e-01 +-3.934200000000000e-01 +-5.375900000000000e-01 +-6.634700000000000e-01 +-7.120700000000000e-01 +-6.380900000000000e-01 +-4.368500000000000e-01 +-1.517800000000000e-01 + 1.436300000000000e-01 + 3.795500000000000e-01 + 5.188900000000000e-01 + 5.649200000000000e-01 + 5.458000000000000e-01 + 4.894600000000000e-01 + 4.076600000000000e-01 + 2.985300000000000e-01 + 1.620500000000000e-01 + 1.332400000000000e-02 +-1.182900000000000e-01 +-2.040500000000000e-01 +-2.330800000000000e-01 +-2.192000000000000e-01 +-1.929000000000000e-01 +-1.847000000000000e-01 +-2.110700000000000e-01 +-2.700200000000000e-01 +-3.453700000000000e-01 +-4.144300000000000e-01 +-4.545100000000000e-01 +-4.484100000000000e-01 +-3.902300000000000e-01 +-2.902500000000000e-01 +-1.739600000000000e-01 +-7.140199999999999e-02 +-1.383900000000000e-04 + 4.735000000000000e-02 + 1.006300000000000e-01 + 1.911100000000000e-01 + 3.267600000000000e-01 + 4.803300000000000e-01 + 6.021400000000000e-01 + 6.507100000000000e-01 + 6.201300000000000e-01 + 5.435100000000000e-01 + 4.686400000000000e-01 + 4.231100000000000e-01 + 3.950200000000000e-01 + 3.441000000000000e-01 + 2.354900000000000e-01 + 7.036400000000000e-02 +-1.101100000000000e-01 +-2.509500000000000e-01 +-3.199700000000000e-01 +-3.271500000000000e-01 +-3.127900000000000e-01 +-3.144400000000000e-01 +-3.387800000000000e-01 +-3.600700000000000e-01 +-3.452400000000000e-01 +-2.849400000000000e-01 +-2.055300000000000e-01 +-1.525300000000000e-01 +-1.583300000000000e-01 +-2.186900000000000e-01 +-2.949000000000000e-01 +-3.385900000000000e-01 +-3.197000000000000e-01 +-2.385200000000000e-01 +-1.166500000000000e-01 + 2.154100000000000e-02 + 1.603200000000000e-01 + 2.898900000000000e-01 + 3.963200000000000e-01 + 4.575400000000000e-01 + 4.521300000000000e-01 + 3.745600000000000e-01 + 2.432500000000000e-01 + 9.290100000000000e-02 +-4.408500000000000e-02 +-1.526200000000000e-01 +-2.345200000000000e-01 +-2.939800000000000e-01 +-3.225500000000000e-01 +-2.981600000000000e-01 +-2.009000000000000e-01 +-3.332500000000000e-02 + 1.717200000000000e-01 + 3.640200000000000e-01 + 5.014600000000000e-01 + 5.696400000000000e-01 + 5.818600000000000e-01 + 5.605900000000000e-01 + 5.157100000000000e-01 + 4.363900000000000e-01 + 3.019900000000000e-01 + 1.025900000000000e-01 +-1.470900000000000e-01 +-4.101200000000000e-01 +-6.430500000000000e-01 +-8.121500000000000e-01 +-9.000200000000000e-01 +-9.014700000000000e-01 +-8.167400000000000e-01 +-6.504000000000000e-01 +-4.168100000000000e-01 +-1.451400000000000e-01 + 1.238200000000000e-01 + 3.502900000000000e-01 + 5.101300000000000e-01 + 6.015100000000000e-01 + 6.394400000000000e-01 + 6.428100000000000e-01 + 6.234000000000000e-01 + 5.832700000000000e-01 + 5.194600000000000e-01 + 4.296600000000000e-01 + 3.138800000000000e-01 + 1.728400000000000e-01 + 8.077300000000001e-03 +-1.734800000000000e-01 +-3.534400000000000e-01 +-5.020400000000000e-01 +-5.887500000000000e-01 +-5.991000000000000e-01 +-5.464200000000000e-01 +-4.679700000000000e-01 +-4.053200000000000e-01 +-3.805700000000000e-01 +-3.843900000000000e-01 +-3.840700000000000e-01 +-3.461000000000000e-01 +-2.574400000000000e-01 +-1.314100000000000e-01 + 4.194300000000000e-03 + 1.264300000000000e-01 + 2.290400000000000e-01 + 3.194700000000000e-01 + 4.056000000000000e-01 + 4.843000000000000e-01 + 5.412800000000000e-01 + 5.614800000000000e-01 + 5.407000000000000e-01 + 4.889200000000000e-01 + 4.232400000000000e-01 + 3.572200000000000e-01 + 2.955700000000000e-01 + 2.378000000000000e-01 + 1.859800000000000e-01 + 1.479600000000000e-01 + 1.319200000000000e-01 + 1.362700000000000e-01 + 1.440900000000000e-01 + 1.286000000000000e-01 + 6.734400000000000e-02 +-4.449800000000000e-02 +-1.911800000000000e-01 +-3.456800000000000e-01 +-4.840100000000000e-01 +-5.943600000000000e-01 +-6.758600000000000e-01 +-7.306200000000000e-01 +-7.574600000000000e-01 +-7.528700000000000e-01 +-7.171700000000000e-01 +-6.580400000000000e-01 +-5.859000000000000e-01 +-5.034200000000000e-01 +-3.984200000000000e-01 +-2.487500000000000e-01 +-3.844900000000000e-02 + 2.251700000000000e-01 + 5.070300000000000e-01 + 7.575100000000000e-01 + 9.355599999999999e-01 + 1.026200000000000e+00 + 1.040600000000000e+00 + 9.998000000000000e-01 + 9.160900000000000e-01 + 7.870900000000000e-01 + 6.065000000000000e-01 + 3.817000000000000e-01 + 1.417700000000000e-01 +-7.349799999999999e-02 +-2.367600000000000e-01 +-3.507000000000000e-01 +-4.445800000000000e-01 +-5.498000000000000e-01 +-6.714400000000000e-01 +-7.772400000000000e-01 +-8.139900000000000e-01 +-7.413600000000000e-01 +-5.598600000000000e-01 +-3.133900000000000e-01 +-6.479600000000001e-02 + 1.383800000000000e-01 + 2.841000000000000e-01 + 3.899200000000000e-01 + 4.778700000000000e-01 + 5.507800000000000e-01 + 5.878200000000000e-01 + 5.613100000000000e-01 + 4.605700000000000e-01 + 3.036000000000000e-01 + 1.278600000000000e-01 +-3.256300000000000e-02 +-1.658400000000000e-01 +-2.836500000000000e-01 +-4.049000000000000e-01 +-5.353000000000000e-01 +-6.581900000000001e-01 +-7.428600000000000e-01 +-7.628300000000000e-01 +-7.100200000000000e-01 +-5.950900000000000e-01 +-4.358500000000000e-01 +-2.449000000000000e-01 +-2.713900000000000e-02 + 2.114300000000000e-01 + 4.524200000000000e-01 + 6.628700000000000e-01 + 8.067800000000001e-01 + 8.635400000000000e-01 + 8.400500000000000e-01 + 7.667100000000000e-01 + 6.789200000000000e-01 + 5.963000000000001e-01 + 5.137800000000000e-01 + 4.101700000000000e-01 + 2.676200000000000e-01 + 8.781100000000000e-02 +-1.060400000000000e-01 +-2.817800000000000e-01 +-4.152500000000000e-01 +-4.994800000000000e-01 +-5.408500000000001e-01 +-5.474700000000000e-01 +-5.207400000000000e-01 +-4.572000000000000e-01 +-3.588600000000000e-01 +-2.422800000000000e-01 +-1.375600000000000e-01 +-7.617200000000000e-02 +-7.580400000000000e-02 +-1.326800000000000e-01 +-2.260700000000000e-01 +-3.302000000000000e-01 +-4.235400000000000e-01 +-4.892300000000000e-01 +-5.088200000000001e-01 +-4.590300000000000e-01 +-3.185100000000000e-01 +-8.329800000000000e-02 + 2.204700000000000e-01 + 5.383900000000000e-01 + 8.071600000000000e-01 + 9.812700000000000e-01 + 1.050400000000000e+00 + 1.036100000000000e+00 + 9.701400000000000e-01 + 8.702400000000000e-01 + 7.300700000000000e-01 + 5.300700000000000e-01 + 2.608900000000000e-01 +-5.785000000000000e-02 +-3.772200000000000e-01 +-6.380900000000000e-01 +-7.975800000000000e-01 +-8.465500000000000e-01 +-8.086800000000000e-01 +-7.234500000000000e-01 +-6.246300000000000e-01 +-5.268100000000000e-01 +-4.258600000000000e-01 +-3.102400000000000e-01 +-1.744400000000000e-01 +-2.632500000000000e-02 + 1.151200000000000e-01 + 2.288400000000000e-01 + 3.015000000000000e-01 + 3.319700000000000e-01 + 3.285300000000000e-01 + 3.015400000000000e-01 + 2.573300000000000e-01 + 1.979600000000000e-01 + 1.269100000000000e-01 + 5.529500000000000e-02 + 1.863300000000000e-03 +-1.606400000000000e-02 + 4.251400000000000e-03 + 4.385400000000000e-02 + 6.898899999999999e-02 + 5.046500000000000e-02 +-1.634200000000000e-02 +-1.053600000000000e-01 +-1.736300000000000e-01 +-1.868000000000000e-01 +-1.387600000000000e-01 +-5.159700000000000e-02 + 4.353300000000000e-02 + 1.286900000000000e-01 + 2.065900000000000e-01 + 2.873300000000000e-01 + 3.662100000000000e-01 + 4.135700000000000e-01 + 3.882700000000000e-01 + 2.675100000000000e-01 + 6.990600000000000e-02 +-1.478200000000000e-01 +-3.212000000000000e-01 +-4.145000000000000e-01 +-4.368900000000000e-01 +-4.269600000000000e-01 +-4.183300000000000e-01 +-4.136600000000000e-01 +-3.868400000000000e-01 +-3.102600000000000e-01 +-1.837900000000000e-01 +-4.138400000000000e-02 + 7.027700000000001e-02 + 1.235500000000000e-01 + 1.265600000000000e-01 + 1.121800000000000e-01 + 1.097200000000000e-01 + 1.232500000000000e-01 + 1.341400000000000e-01 + 1.240700000000000e-01 + 9.720600000000000e-02 + 8.117600000000000e-02 + 1.048700000000000e-01 + 1.715500000000000e-01 + 2.507900000000000e-01 + 2.980800000000000e-01 + 2.882200000000000e-01 + 2.364800000000000e-01 + 1.903000000000000e-01 + 1.963000000000000e-01 + 2.662300000000000e-01 + 3.660900000000000e-01 + 4.354300000000000e-01 + 4.224000000000000e-01 + 3.109000000000000e-01 + 1.237700000000000e-01 +-9.585100000000001e-02 +-3.090500000000000e-01 +-4.952800000000000e-01 +-6.503300000000000e-01 +-7.745900000000000e-01 +-8.628300000000000e-01 +-9.024200000000000e-01 +-8.790300000000000e-01 +-7.843800000000000e-01 +-6.210200000000000e-01 +-4.032000000000000e-01 +-1.547700000000000e-01 + 9.470199999999999e-02 + 3.155100000000000e-01 + 4.845500000000000e-01 + 5.909400000000000e-01 + 6.376500000000001e-01 + 6.380100000000000e-01 + 6.094300000000000e-01 + 5.679999999999999e-01 + 5.261900000000000e-01 + 4.919700000000000e-01 + 4.665900000000000e-01 + 4.406300000000000e-01 + 3.924600000000000e-01 + 2.948600000000000e-01 + 1.301500000000000e-01 +-9.336000000000000e-02 +-3.359700000000000e-01 +-5.396100000000000e-01 +-6.547200000000000e-01 +-6.652700000000000e-01 +-5.951700000000000e-01 +-4.911500000000000e-01 +-3.931800000000000e-01 +-3.126100000000000e-01 +-2.326900000000000e-01 +-1.297600000000000e-01 + 1.667700000000000e-03 + 1.388100000000000e-01 + 2.428600000000000e-01 + 2.839500000000000e-01 + 2.603100000000000e-01 + 1.984000000000000e-01 + 1.353100000000000e-01 + 9.720900000000000e-02 + 8.898100000000000e-02 + 9.971500000000000e-02 + 1.167800000000000e-01 + 1.359700000000000e-01 + 1.606800000000000e-01 + 1.935300000000000e-01 + 2.297700000000000e-01 + 2.590900000000000e-01 + 2.737000000000000e-01 + 2.742300000000000e-01 + 2.667500000000000e-01 + 2.522600000000000e-01 + 2.180800000000000e-01 + 1.405500000000000e-01 + 5.822200000000000e-05 +-2.009500000000000e-01 +-4.304700000000000e-01 +-6.373600000000000e-01 +-7.747900000000000e-01 +-8.223700000000000e-01 +-7.930000000000000e-01 +-7.205500000000000e-01 +-6.374300000000001e-01 +-5.568600000000000e-01 +-4.705300000000000e-01 +-3.610100000000000e-01 +-2.182900000000000e-01 +-4.841800000000000e-02 + 1.306200000000000e-01 + 3.007400000000000e-01 + 4.532900000000000e-01 + 5.891600000000000e-01 + 7.107000000000000e-01 + 8.130500000000001e-01 + 8.827700000000001e-01 + 9.048400000000000e-01 + 8.725800000000000e-01 + 7.924600000000001e-01 + 6.802200000000000e-01 + 5.515000000000000e-01 + 4.144200000000000e-01 + 2.692900000000000e-01 + 1.148700000000000e-01 +-4.463900000000000e-02 +-1.974600000000000e-01 +-3.283200000000000e-01 +-4.249800000000000e-01 +-4.823900000000000e-01 +-5.024100000000000e-01 +-4.912000000000000e-01 +-4.576200000000000e-01 +-4.135700000000000e-01 +-3.740500000000000e-01 +-3.540400000000000e-01 +-3.624000000000000e-01 +-3.968000000000000e-01 +-4.441000000000000e-01 +-4.869600000000000e-01 +-5.119700000000000e-01 +-5.133200000000000e-01 +-4.896100000000000e-01 +-4.380800000000000e-01 +-3.533700000000000e-01 +-2.338900000000000e-01 +-9.108200000000000e-02 + 4.799800000000000e-02 + 1.511800000000000e-01 + 2.004700000000000e-01 + 2.071900000000000e-01 + 2.104100000000000e-01 + 2.570200000000000e-01 + 3.753000000000000e-01 + 5.594600000000000e-01 + 7.750100000000000e-01 + 9.797100000000000e-01 + 1.143900000000000e+00 + 1.255600000000000e+00 + 1.309600000000000e+00 + 1.291900000000000e+00 + 1.176100000000000e+00 + 9.371600000000000e-01 + 5.730800000000000e-01 + 1.184700000000000e-01 +-3.619900000000000e-01 +-7.967800000000000e-01 +-1.133100000000000e+00 +-1.349400000000000e+00 +-1.450800000000000e+00 +-1.453300000000000e+00 +-1.371300000000000e+00 +-1.214300000000000e+00 +-9.929700000000000e-01 +-7.259300000000000e-01 +-4.421800000000000e-01 +-1.774800000000000e-01 + 3.261100000000000e-02 + 1.603100000000000e-01 + 1.931200000000000e-01 + 1.406800000000000e-01 + 3.771600000000000e-02 +-6.174600000000000e-02 +-1.010100000000000e-01 +-4.279700000000000e-02 + 1.146300000000000e-01 + 3.375900000000000e-01 + 5.741700000000000e-01 + 7.779100000000000e-01 + 9.234200000000000e-01 + 1.006000000000000e+00 + 1.029700000000000e+00 + 9.969800000000000e-01 + 9.082600000000000e-01 + 7.701700000000000e-01 + 6.010799999999999e-01 + 4.247300000000000e-01 + 2.543100000000000e-01 + 8.068100000000000e-02 +-1.220200000000000e-01 +-3.730100000000000e-01 +-6.594500000000000e-01 +-9.295300000000000e-01 +-1.113000000000000e+00 +-1.158300000000000e+00 +-1.062000000000000e+00 +-8.706900000000000e-01 +-6.550100000000000e-01 +-4.737800000000000e-01 +-3.514000000000000e-01 +-2.793800000000000e-01 +-2.347800000000000e-01 +-1.978200000000000e-01 +-1.569200000000000e-01 +-1.025300000000000e-01 +-2.183300000000000e-02 + 9.681400000000000e-02 + 2.522300000000000e-01 + 4.232500000000000e-01 + 5.757000000000000e-01 + 6.810400000000000e-01 + 7.327399999999999e-01 + 7.469800000000000e-01 + 7.458900000000001e-01 + 7.364400000000000e-01 + 7.020500000000000e-01 + 6.145500000000000e-01 + 4.577700000000000e-01 + 2.447300000000000e-01 + 1.484400000000000e-02 +-1.868300000000000e-01 +-3.330200000000000e-01 +-4.237300000000000e-01 +-4.763900000000000e-01 +-5.062900000000000e-01 +-5.128400000000000e-01 +-4.818600000000000e-01 +-4.004400000000000e-01 +-2.723800000000000e-01 +-1.221900000000000e-01 + 1.430600000000000e-02 + 1.058900000000000e-01 + 1.375500000000000e-01 + 1.121300000000000e-01 + 4.385200000000000e-02 +-5.018700000000000e-02 +-1.551600000000000e-01 +-2.592300000000000e-01 +-3.520900000000000e-01 +-4.235700000000000e-01 +-4.631600000000000e-01 +-4.599300000000000e-01 +-4.031500000000000e-01 +-2.850200000000000e-01 +-1.060300000000000e-01 + 1.187400000000000e-01 + 3.569100000000000e-01 + 5.636600000000000e-01 + 6.945200000000000e-01 + 7.210600000000000e-01 + 6.420700000000000e-01 + 4.844100000000000e-01 + 2.933300000000000e-01 + 1.172500000000000e-01 +-6.130600000000000e-03 +-5.774200000000000e-02 +-3.837400000000000e-02 + 3.448800000000000e-02 + 1.317500000000000e-01 + 2.188300000000000e-01 + 2.632000000000000e-01 + 2.427100000000000e-01 + 1.528200000000000e-01 + 8.878300000000000e-03 +-1.586000000000000e-01 +-3.146100000000000e-01 +-4.319100000000000e-01 +-4.988500000000000e-01 +-5.194800000000001e-01 +-5.064600000000000e-01 +-4.716600000000000e-01 +-4.197600000000000e-01 +-3.481000000000000e-01 +-2.517300000000000e-01 +-1.296300000000000e-01 + 1.167200000000000e-02 + 1.586600000000000e-01 + 2.939700000000000e-01 + 3.996700000000000e-01 + 4.594900000000000e-01 + 4.611500000000000e-01 + 4.001800000000000e-01 + 2.849900000000000e-01 + 1.399300000000000e-01 + 1.966900000000000e-03 +-9.042600000000001e-02 +-1.125900000000000e-01 +-6.531099999999999e-02 + 2.429400000000000e-02 + 1.144100000000000e-01 + 1.668200000000000e-01 + 1.624000000000000e-01 + 1.060200000000000e-01 + 2.004200000000000e-02 +-6.835600000000000e-02 +-1.381600000000000e-01 +-1.791200000000000e-01 +-1.903600000000000e-01 +-1.765000000000000e-01 +-1.450000000000000e-01 +-1.051200000000000e-01 +-6.747100000000000e-02 +-4.248800000000000e-02 +-3.826900000000000e-02 +-5.887300000000000e-02 +-1.038500000000000e-01 +-1.683700000000000e-01 +-2.431500000000000e-01 +-3.143300000000000e-01 +-3.651300000000000e-01 +-3.802900000000000e-01 +-3.517900000000000e-01 +-2.820500000000000e-01 +-1.812600000000000e-01 +-5.982300000000000e-02 + 7.865700000000000e-02 + 2.374500000000000e-01 + 4.185200000000000e-01 + 6.116600000000000e-01 + 7.903100000000000e-01 + 9.194700000000000e-01 + 9.719500000000000e-01 + 9.420900000000000e-01 + 8.466399999999999e-01 + 7.116500000000000e-01 + 5.548900000000000e-01 + 3.767800000000000e-01 + 1.665200000000000e-01 +-8.156400000000000e-02 +-3.545700000000000e-01 +-6.206300000000000e-01 +-8.418600000000001e-01 +-9.904500000000001e-01 +-1.056800000000000e+00 +-1.045900000000000e+00 +-9.673000000000000e-01 +-8.300600000000000e-01 +-6.448600000000000e-01 +-4.304500000000000e-01 +-2.146800000000000e-01 +-2.594200000000000e-02 + 1.198500000000000e-01 + 2.260700000000000e-01 + 3.087400000000000e-01 + 3.800900000000000e-01 + 4.345700000000000e-01 + 4.491900000000000e-01 + 3.992600000000000e-01 + 2.787500000000000e-01 + 1.101100000000000e-01 +-6.412200000000000e-02 +-2.026500000000000e-01 +-2.847500000000000e-01 +-3.148900000000000e-01 +-3.104300000000000e-01 +-2.825900000000000e-01 +-2.248300000000000e-01 +-1.167500000000000e-01 + 5.932100000000000e-02 + 3.004500000000000e-01 + 5.756900000000000e-01 + 8.337700000000000e-01 + 1.021600000000000e+00 + 1.103800000000000e+00 + 1.073300000000000e+00 + 9.496500000000000e-01 + 7.663800000000000e-01 + 5.558500000000000e-01 + 3.383700000000000e-01 + 1.208100000000000e-01 +-9.635100000000001e-02 +-3.097300000000000e-01 +-5.083400000000000e-01 +-6.769400000000000e-01 +-8.046900000000000e-01 +-8.915900000000000e-01 +-9.468000000000000e-01 +-9.792900000000000e-01 +-9.880100000000001e-01 +-9.606500000000000e-01 +-8.836300000000000e-01 +-7.567400000000000e-01 +-6.002500000000000e-01 +-4.468200000000000e-01 +-3.213400000000000e-01 +-2.227700000000000e-01 +-1.219800000000000e-01 + 2.021700000000000e-02 + 2.256000000000000e-01 + 4.797300000000000e-01 + 7.347700000000000e-01 + 9.324500000000000e-01 + 1.032400000000000e+00 + 1.028300000000000e+00 + 9.444500000000000e-01 + 8.167500000000000e-01 + 6.738000000000000e-01 + 5.280400000000000e-01 + 3.795500000000000e-01 + 2.259600000000000e-01 + 6.994400000000001e-02 +-7.942900000000000e-02 +-2.095000000000000e-01 +-3.073500000000000e-01 +-3.620600000000000e-01 +-3.674300000000000e-01 +-3.264500000000000e-01 +-2.552400000000000e-01 +-1.819600000000000e-01 +-1.374400000000000e-01 +-1.403500000000000e-01 +-1.852000000000000e-01 +-2.417800000000000e-01 +-2.685100000000000e-01 +-2.335200000000000e-01 +-1.318800000000000e-01 + 1.053700000000000e-02 + 1.484800000000000e-01 + 2.374000000000000e-01 + 2.516900000000000e-01 + 1.926400000000000e-01 + 8.413800000000000e-02 +-4.007700000000000e-02 +-1.505000000000000e-01 +-2.310000000000000e-01 +-2.798900000000000e-01 +-3.040500000000000e-01 +-3.101300000000000e-01 +-2.984000000000000e-01 +-2.627100000000000e-01 +-1.965900000000000e-01 +-1.015200000000000e-01 + 8.468500000000000e-03 + 1.094800000000000e-01 + 1.770600000000000e-01 + 1.970600000000000e-01 + 1.721600000000000e-01 + 1.206600000000000e-01 + 6.875700000000000e-02 + 4.038800000000000e-02 + 4.889700000000000e-02 + 9.307600000000001e-02 + 1.581100000000000e-01 + 2.211300000000000e-01 + 2.604100000000000e-01 + 2.654700000000000e-01 + 2.435300000000000e-01 + 2.173100000000000e-01 + 2.129500000000000e-01 + 2.431700000000000e-01 + 2.957000000000000e-01 + 3.357200000000000e-01 + 3.230600000000000e-01 + 2.347900000000000e-01 + 7.929400000000000e-02 +-1.070400000000000e-01 +-2.782800000000000e-01 +-4.003800000000000e-01 +-4.626800000000000e-01 +-4.749200000000000e-01 +-4.551200000000000e-01 +-4.190600000000000e-01 +-3.770100000000000e-01 +-3.357800000000000e-01 +-2.995100000000000e-01 +-2.658000000000000e-01 +-2.213300000000000e-01 +-1.444400000000000e-01 +-1.800100000000000e-02 + 1.540600000000000e-01 + 3.390100000000000e-01 + 4.851700000000000e-01 + 5.457000000000000e-01 + 5.019600000000000e-01 + 3.710900000000000e-01 + 1.932700000000000e-01 + 8.616900000000000e-03 +-1.599000000000000e-01 +-3.068800000000000e-01 +-4.312500000000000e-01 +-5.223700000000000e-01 +-5.578700000000000e-01 +-5.149200000000000e-01 +-3.859300000000000e-01 +-1.867700000000000e-01 + 4.805900000000000e-02 + 2.786600000000000e-01 + 4.723900000000000e-01 + 6.092500000000000e-01 + 6.806800000000000e-01 + 6.861900000000000e-01 + 6.318200000000000e-01 + 5.296200000000000e-01 + 3.958000000000000e-01 + 2.466900000000000e-01 + 9.546600000000000e-02 +-4.741300000000000e-02 +-1.702700000000000e-01 +-2.577400000000000e-01 +-2.946500000000000e-01 +-2.756700000000000e-01 +-2.137200000000000e-01 +-1.387500000000000e-01 +-8.486299999999999e-02 +-7.308500000000000e-02 +-1.018200000000000e-01 +-1.518700000000000e-01 +-2.020200000000000e-01 +-2.430300000000000e-01 +-2.794300000000000e-01 +-3.189800000000000e-01 +-3.595400000000000e-01 +-3.855400000000000e-01 +-3.773300000000000e-01 +-3.262500000000000e-01 +-2.428900000000000e-01 +-1.520300000000000e-01 +-7.806000000000000e-02 +-3.178500000000000e-02 +-7.222700000000000e-03 + 1.166700000000000e-02 + 4.144100000000000e-02 + 9.392300000000001e-02 + 1.763000000000000e-01 + 2.920800000000000e-01 + 4.387300000000000e-01 + 6.030400000000000e-01 + 7.596600000000000e-01 + 8.765700000000000e-01 + 9.254400000000000e-01 + 8.898700000000000e-01 + 7.666700000000000e-01 + 5.618300000000001e-01 + 2.884100000000000e-01 +-2.937100000000000e-02 +-3.500000000000000e-01 +-6.168300000000000e-01 +-7.754799999999999e-01 +-8.006200000000000e-01 +-7.144000000000000e-01 +-5.802500000000000e-01 +-4.706400000000000e-01 +-4.273200000000000e-01 +-4.401000000000000e-01 +-4.589200000000000e-01 +-4.304500000000000e-01 +-3.334200000000000e-01 +-1.884200000000000e-01 +-3.839400000000000e-02 + 8.242600000000000e-02 + 1.663600000000000e-01 + 2.255400000000000e-01 + 2.704600000000000e-01 + 2.951400000000000e-01 + 2.825900000000000e-01 + 2.249000000000000e-01 + 1.385300000000000e-01 + 5.931800000000000e-02 + 1.950700000000000e-02 + 2.575600000000000e-02 + 5.677900000000000e-02 + 8.295000000000000e-02 + 9.123900000000000e-02 + 9.419200000000000e-02 + 1.155100000000000e-01 + 1.654100000000000e-01 + 2.282400000000000e-01 + 2.743200000000000e-01 + 2.863600000000000e-01 + 2.766000000000000e-01 + 2.773400000000000e-01 + 3.099400000000000e-01 + 3.574700000000000e-01 + 3.662000000000000e-01 + 2.797600000000000e-01 + 8.302500000000000e-02 +-1.771100000000000e-01 +-4.121600000000000e-01 +-5.417200000000000e-01 +-5.391400000000000e-01 +-4.425800000000000e-01 +-3.259100000000000e-01 +-2.517000000000000e-01 +-2.392000000000000e-01 +-2.659500000000000e-01 +-2.962300000000000e-01 +-3.110200000000000e-01 +-3.171800000000000e-01 +-3.323000000000000e-01 +-3.614500000000000e-01 +-3.866100000000000e-01 +-3.772300000000000e-01 +-3.124200000000000e-01 +-1.958900000000000e-01 +-5.180700000000000e-02 + 9.460499999999999e-02 + 2.351800000000000e-01 + 3.806400000000000e-01 + 5.442200000000000e-01 + 7.201900000000000e-01 + 8.745600000000000e-01 + 9.568900000000000e-01 + 9.267400000000000e-01 + 7.776200000000000e-01 + 5.431000000000000e-01 + 2.814400000000000e-01 + 4.916600000000000e-02 +-1.205500000000000e-01 +-2.233100000000000e-01 +-2.732500000000000e-01 +-2.870100000000000e-01 +-2.737800000000000e-01 +-2.365600000000000e-01 +-1.807600000000000e-01 +-1.210600000000000e-01 +-7.962200000000000e-02 +-7.597500000000000e-02 +-1.156400000000000e-01 +-1.858400000000000e-01 +-2.617900000000000e-01 +-3.196700000000000e-01 +-3.479400000000000e-01 +-3.498700000000000e-01 +-3.368700000000000e-01 +-3.180700000000000e-01 +-2.941700000000000e-01 +-2.594700000000000e-01 +-2.099000000000000e-01 +-1.499900000000000e-01 +-9.289200000000000e-02 +-5.275000000000000e-02 +-3.450000000000000e-02 +-2.852500000000000e-02 +-1.437200000000000e-02 + 2.817300000000000e-02 + 1.072200000000000e-01 + 2.131000000000000e-01 + 3.220000000000000e-01 + 4.068300000000000e-01 + 4.493100000000000e-01 + 4.475300000000000e-01 + 4.155600000000000e-01 + 3.759000000000000e-01 + 3.483600000000000e-01 + 3.400700000000000e-01 + 3.414400000000000e-01 + 3.301500000000000e-01 + 2.822700000000000e-01 + 1.859100000000000e-01 + 5.051000000000000e-02 +-9.378300000000001e-02 +-2.076600000000000e-01 +-2.601700000000000e-01 +-2.435100000000000e-01 +-1.771400000000000e-01 +-9.930100000000000e-02 +-5.022200000000000e-02 +-5.592100000000000e-02 +-1.196700000000000e-01 +-2.234800000000000e-01 +-3.365900000000000e-01 +-4.259900000000000e-01 +-4.653500000000000e-01 +-4.414400000000000e-01 +-3.582200000000000e-01 +-2.377600000000000e-01 +-1.158300000000000e-01 +-3.105100000000000e-02 +-9.993999999999999e-03 +-5.485700000000000e-02 +-1.408100000000000e-01 +-2.258900000000000e-01 +-2.692500000000000e-01 +-2.483000000000000e-01 +-1.660000000000000e-01 +-4.529900000000000e-02 + 8.468400000000000e-02 + 2.021400000000000e-01 + 2.990600000000000e-01 + 3.794600000000000e-01 + 4.527000000000000e-01 + 5.266999999999999e-01 + 6.034200000000000e-01 + 6.765500000000000e-01 + 7.311800000000001e-01 + 7.461400000000000e-01 + 7.007900000000000e-01 + 5.852000000000001e-01 + 4.091100000000000e-01 + 2.027800000000000e-01 + 6.293800000000000e-03 +-1.488200000000000e-01 +-2.550800000000000e-01 +-3.310900000000000e-01 +-4.074500000000000e-01 +-5.047700000000001e-01 +-6.182400000000000e-01 +-7.191100000000000e-01 +-7.722599999999999e-01 +-7.576000000000001e-01 +-6.808600000000000e-01 +-5.672700000000001e-01 +-4.441600000000000e-01 +-3.259300000000000e-01 +-2.117800000000000e-01 +-9.607499999999999e-02 + 1.869700000000000e-02 + 1.177400000000000e-01 + 1.820300000000000e-01 + 2.021200000000000e-01 + 1.863200000000000e-01 + 1.571100000000000e-01 + 1.384900000000000e-01 + 1.440300000000000e-01 + 1.736400000000000e-01 + 2.196900000000000e-01 + 2.757200000000000e-01 + 3.405100000000000e-01 + 4.151200000000000e-01 + 4.972000000000000e-01 + 5.782300000000000e-01 + 6.458199999999999e-01 + 6.877300000000000e-01 + 6.929900000000000e-01 + 6.497000000000001e-01 + 5.438000000000000e-01 + 3.639900000000000e-01 + 1.123700000000000e-01 +-1.864600000000000e-01 +-4.872400000000000e-01 +-7.394800000000000e-01 +-9.088200000000000e-01 +-9.902700000000000e-01 +-1.003700000000000e+00 +-9.743000000000001e-01 +-9.124400000000000e-01 +-8.077800000000001e-01 +-6.428000000000000e-01 +-4.154500000000000e-01 +-1.535200000000000e-01 + 9.124300000000000e-02 + 2.666100000000000e-01 + 3.458600000000000e-01 + 3.398100000000000e-01 + 2.884400000000000e-01 + 2.393900000000000e-01 + 2.273500000000000e-01 + 2.649200000000000e-01 + 3.455900000000000e-01 + 4.520100000000000e-01 + 5.627300000000000e-01 + 6.556100000000000e-01 + 7.110300000000001e-01 + 7.173500000000000e-01 + 6.762600000000000e-01 + 6.026800000000000e-01 + 5.161100000000000e-01 + 4.276900000000000e-01 + 3.320100000000000e-01 + 2.114300000000000e-01 + 5.097400000000000e-02 +-1.461100000000000e-01 +-3.546500000000000e-01 +-5.395400000000000e-01 +-6.760300000000000e-01 +-7.637699999999999e-01 +-8.243700000000000e-01 +-8.837900000000000e-01 +-9.519700000000000e-01 +-1.013900000000000e+00 +-1.037900000000000e+00 +-9.947400000000000e-01 +-8.743800000000000e-01 +-6.892600000000000e-01 +-4.647400000000000e-01 +-2.247700000000000e-01 + 1.606900000000000e-02 + 2.500500000000000e-01 + 4.675500000000000e-01 + 6.512500000000000e-01 + 7.795100000000000e-01 + 8.373699999999999e-01 + 8.274200000000000e-01 + 7.721700000000000e-01 + 7.053100000000000e-01 + 6.566100000000000e-01 + 6.397100000000000e-01 + 6.494600000000000e-01 + 6.694500000000000e-01 + 6.834400000000000e-01 + 6.827900000000000e-01 + 6.655100000000000e-01 + 6.291800000000000e-01 + 5.648200000000000e-01 + 4.581000000000000e-01 + 2.986200000000000e-01 + 9.117100000000000e-02 +-1.399900000000000e-01 +-3.590200000000000e-01 +-5.354100000000001e-01 +-6.595700000000000e-01 +-7.463800000000000e-01 +-8.230900000000000e-01 +-9.087499999999999e-01 +-9.986800000000000e-01 +-1.065000000000000e+00 +-1.073800000000000e+00 +-1.008000000000000e+00 +-8.806200000000000e-01 +-7.302900000000000e-01 +-6.000799999999999e-01 +-5.142000000000000e-01 +-4.661100000000000e-01 +-4.245000000000000e-01 +-3.523400000000000e-01 +-2.269900000000000e-01 +-5.044900000000000e-02 + 1.536800000000000e-01 + 3.526700000000000e-01 + 5.187700000000000e-01 + 6.392099999999999e-01 + 7.194500000000000e-01 + 7.801700000000000e-01 + 8.491100000000000e-01 + 9.490800000000000e-01 + 1.085600000000000e+00 + 1.239300000000000e+00 + 1.368200000000000e+00 + 1.421900000000000e+00 + 1.362300000000000e+00 + 1.179700000000000e+00 + 8.976800000000000e-01 + 5.615700000000000e-01 + 2.186500000000000e-01 +-9.911700000000000e-02 +-3.808000000000000e-01 +-6.293700000000000e-01 +-8.487000000000000e-01 +-1.033900000000000e+00 +-1.171100000000000e+00 +-1.244400000000000e+00 +-1.245800000000000e+00 +-1.179200000000000e+00 +-1.059400000000000e+00 +-9.061000000000000e-01 +-7.384800000000000e-01 +-5.725100000000000e-01 +-4.202900000000000e-01 +-2.895900000000000e-01 +-1.823500000000000e-01 +-9.288600000000000e-02 +-8.272500000000000e-03 + 8.755300000000001e-02 + 2.066500000000000e-01 + 3.500200000000000e-01 + 5.045100000000000e-01 + 6.457600000000000e-01 + 7.463500000000000e-01 + 7.854700000000000e-01 + 7.555700000000000e-01 + 6.629699999999999e-01 + 5.228500000000000e-01 + 3.521400000000000e-01 + 1.645700000000000e-01 +-2.932700000000000e-02 +-2.182100000000000e-01 +-3.857900000000000e-01 +-5.105300000000000e-01 +-5.704800000000000e-01 +-5.509900000000000e-01 +-4.508300000000000e-01 +-2.836800000000000e-01 +-7.469900000000000e-02 + 1.449900000000000e-01 + 3.436500000000000e-01 + 4.933500000000000e-01 + 5.748400000000000e-01 + 5.830600000000000e-01 + 5.309199999999999e-01 + 4.468800000000000e-01 + 3.641600000000000e-01 + 3.051100000000000e-01 + 2.695600000000000e-01 + 2.359000000000000e-01 + 1.762000000000000e-01 + 7.679800000000001e-02 +-4.973300000000000e-02 +-1.705600000000000e-01 +-2.538300000000000e-01 +-2.908200000000000e-01 +-3.026600000000000e-01 +-3.256200000000000e-01 +-3.845200000000000e-01 +-4.729100000000000e-01 +-5.554000000000000e-01 +-5.914700000000001e-01 +-5.646700000000000e-01 +-4.965500000000000e-01 +-4.343700000000000e-01 +-4.201000000000000e-01 +-4.610700000000000e-01 +-5.215100000000000e-01 +-5.405900000000000e-01 +-4.651300000000000e-01 +-2.771900000000000e-01 +-1.450900000000000e-03 + 3.084900000000000e-01 + 5.936600000000000e-01 + 8.089300000000000e-01 + 9.301800000000000e-01 + 9.520000000000000e-01 + 8.830900000000000e-01 + 7.448600000000000e-01 + 5.715900000000000e-01 + 4.066700000000000e-01 + 2.911200000000000e-01 + 2.475200000000000e-01 + 2.680200000000000e-01 + 3.152600000000000e-01 + 3.380500000000000e-01 + 2.948900000000000e-01 + 1.729500000000000e-01 +-7.156500000000000e-03 +-2.026000000000000e-01 +-3.682100000000000e-01 +-4.738500000000000e-01 +-5.113000000000000e-01 +-4.899800000000000e-01 +-4.274100000000000e-01 +-3.420300000000000e-01 +-2.517400000000000e-01 +-1.760400000000000e-01 +-1.361600000000000e-01 +-1.496000000000000e-01 +-2.212400000000000e-01 +-3.370000000000000e-01 +-4.664400000000000e-01 +-5.745100000000000e-01 +-6.361700000000000e-01 +-6.448800000000000e-01 +-6.092500000000000e-01 +-5.407700000000000e-01 +-4.418600000000000e-01 +-3.033700000000000e-01 +-1.140200000000000e-01 + 1.249300000000000e-01 + 3.909400000000000e-01 + 6.449100000000000e-01 + 8.473100000000000e-01 + 9.760200000000000e-01 + 1.034400000000000e+00 + 1.045200000000000e+00 + 1.035100000000000e+00 + 1.019400000000000e+00 + 9.963800000000000e-01 + 9.514500000000000e-01 + 8.662300000000001e-01 + 7.267300000000000e-01 + 5.271900000000000e-01 + 2.713100000000000e-01 +-2.691400000000000e-02 +-3.426900000000000e-01 +-6.433400000000000e-01 +-8.964800000000001e-01 +-1.081200000000000e+00 +-1.195500000000000e+00 +-1.253200000000000e+00 +-1.271400000000000e+00 +-1.255600000000000e+00 +-1.193900000000000e+00 +-1.065200000000000e+00 +-8.571100000000000e-01 +-5.808200000000000e-01 +-2.722600000000000e-01 + 2.259800000000000e-02 + 2.682800000000000e-01 + 4.524600000000000e-01 + 5.830100000000000e-01 + 6.730699999999999e-01 + 7.262600000000000e-01 + 7.328900000000000e-01 + 6.794900000000000e-01 + 5.636000000000000e-01 + 4.027400000000000e-01 + 2.311000000000000e-01 + 8.692500000000000e-02 +-1.327200000000000e-03 +-2.242800000000000e-02 + 1.807100000000000e-02 + 1.026800000000000e-01 + 2.070300000000000e-01 + 3.040000000000000e-01 + 3.687100000000000e-01 + 3.852600000000000e-01 + 3.529800000000000e-01 + 2.874800000000000e-01 + 2.137900000000000e-01 + 1.542000000000000e-01 + 1.179800000000000e-01 + 9.901699999999999e-02 + 8.264299999999999e-02 + 5.576800000000000e-02 + 1.333400000000000e-02 +-4.246400000000000e-02 +-1.074900000000000e-01 +-1.797800000000000e-01 +-2.591300000000000e-01 +-3.438800000000000e-01 +-4.292800000000000e-01 +-5.098700000000000e-01 +-5.829600000000000e-01 +-6.483900000000000e-01 +-7.027000000000000e-01 +-7.325800000000000e-01 +-7.155800000000000e-01 +-6.317900000000000e-01 +-4.804800000000000e-01 +-2.886600000000000e-01 +-1.018500000000000e-01 + 4.059500000000000e-02 + 1.297900000000000e-01 + 1.931400000000000e-01 + 2.751100000000000e-01 + 4.046400000000000e-01 + 5.718100000000000e-01 + 7.311800000000001e-01 + 8.298800000000000e-01 + 8.407100000000000e-01 + 7.763900000000000e-01 + 6.755800000000000e-01 + 5.724900000000001e-01 + 4.735700000000000e-01 + 3.586900000000000e-01 + 2.045100000000000e-01 + 1.023000000000000e-02 +-1.948900000000000e-01 +-3.681600000000000e-01 +-4.808000000000000e-01 +-5.346600000000000e-01 +-5.559700000000000e-01 +-5.721600000000000e-01 +-5.904300000000000e-01 +-5.941200000000000e-01 +-5.578900000000000e-01 +-4.680100000000000e-01 +-3.316800000000000e-01 +-1.695600000000000e-01 +-1.578300000000000e-04 + 1.699000000000000e-01 + 3.419400000000000e-01 + 5.128700000000000e-01 + 6.665000000000000e-01 + 7.770899999999999e-01 + 8.223000000000000e-01 + 7.946100000000000e-01 + 7.019500000000000e-01 + 5.582400000000000e-01 + 3.733600000000000e-01 + 1.522100000000000e-01 +-9.681300000000000e-02 +-3.526800000000000e-01 +-5.825100000000000e-01 +-7.541400000000000e-01 +-8.517400000000001e-01 +-8.814800000000000e-01 +-8.621400000000000e-01 +-8.075500000000000e-01 +-7.154000000000000e-01 +-5.719900000000000e-01 +-3.698500000000000e-01 +-1.239200000000000e-01 + 1.272800000000000e-01 + 3.377900000000000e-01 + 4.763300000000000e-01 + 5.386000000000000e-01 + 5.418400000000000e-01 + 5.074200000000000e-01 + 4.459900000000000e-01 + 3.564200000000000e-01 + 2.376000000000000e-01 + 1.016600000000000e-01 +-2.383400000000000e-02 +-1.080200000000000e-01 +-1.344500000000000e-01 +-1.111800000000000e-01 +-6.560600000000000e-02 +-2.776600000000000e-02 +-1.362200000000000e-02 +-1.879300000000000e-02 +-2.477300000000000e-02 +-1.122400000000000e-02 + 3.449000000000000e-02 + 1.148600000000000e-01 + 2.247000000000000e-01 + 3.535600000000000e-01 + 4.852700000000000e-01 + 5.968599999999999e-01 + 6.609400000000000e-01 + 6.531200000000000e-01 + 5.613200000000000e-01 + 3.909700000000000e-01 + 1.626100000000000e-01 +-9.643100000000000e-02 +-3.606100000000000e-01 +-6.094300000000000e-01 +-8.247900000000000e-01 +-9.868300000000000e-01 +-1.073600000000000e+00 +-1.067000000000000e+00 +-9.620700000000000e-01 +-7.727600000000000e-01 +-5.309000000000000e-01 +-2.769000000000000e-01 +-4.742200000000000e-02 + 1.343200000000000e-01 + 2.619000000000000e-01 + 3.422900000000000e-01 + 3.885300000000000e-01 + 4.120000000000000e-01 + 4.175400000000000e-01 + 4.028100000000000e-01 + 3.624400000000000e-01 + 2.948700000000000e-01 + 2.085900000000000e-01 + 1.235600000000000e-01 + 6.548500000000000e-02 + 5.470600000000000e-02 + 9.534400000000000e-02 + 1.714900000000000e-01 + 2.537000000000000e-01 + 3.128600000000000e-01 + 3.332600000000000e-01 + 3.173100000000000e-01 + 2.796400000000000e-01 + 2.356000000000000e-01 + 1.925600000000000e-01 + 1.494000000000000e-01 + 1.024300000000000e-01 + 5.109000000000000e-02 +-2.730200000000000e-03 +-6.092600000000000e-02 +-1.341300000000000e-01 +-2.378600000000000e-01 +-3.792500000000000e-01 +-5.431000000000000e-01 +-6.890700000000000e-01 +-7.661100000000000e-01 +-7.379599999999999e-01 +-6.039500000000000e-01 +-4.013100000000000e-01 +-1.864200000000000e-01 +-6.918400000000000e-03 + 1.177200000000000e-01 + 1.961700000000000e-01 + 2.492100000000000e-01 + 2.914300000000000e-01 + 3.242000000000000e-01 + 3.424000000000000e-01 + 3.458600000000000e-01 + 3.435700000000000e-01 + 3.465400000000000e-01 + 3.562100000000000e-01 + 3.600400000000000e-01 + 3.397100000000000e-01 + 2.857800000000000e-01 + 2.060500000000000e-01 + 1.195900000000000e-01 + 4.068700000000000e-02 +-3.348200000000000e-02 +-1.199800000000000e-01 +-2.330900000000000e-01 +-3.670000000000000e-01 +-4.935500000000000e-01 +-5.786800000000000e-01 +-6.054300000000000e-01 +-5.849200000000000e-01 +-5.455400000000000e-01 +-5.079900000000001e-01 +-4.661800000000000e-01 +-3.896000000000000e-01 +-2.466400000000000e-01 +-3.119100000000000e-02 + 2.275800000000000e-01 + 4.792800000000000e-01 + 6.789400000000000e-01 + 8.062300000000000e-01 + 8.648900000000000e-01 + 8.669500000000000e-01 + 8.177700000000000e-01 + 7.154000000000000e-01 + 5.630800000000000e-01 + 3.812100000000000e-01 + 2.050200000000000e-01 + 6.696100000000001e-02 +-2.260100000000000e-02 +-8.030400000000000e-02 +-1.351800000000000e-01 +-2.057600000000000e-01 +-2.872200000000000e-01 +-3.587000000000000e-01 +-4.041600000000000e-01 +-4.287700000000000e-01 +-4.562700000000000e-01 +-5.089100000000000e-01 +-5.861100000000000e-01 +-6.596400000000000e-01 +-6.901700000000000e-01 +-6.531500000000000e-01 +-5.545400000000000e-01 +-4.251200000000000e-01 +-2.983000000000000e-01 +-1.884100000000000e-01 +-8.500900000000000e-02 + 3.404400000000000e-02 + 1.815900000000000e-01 + 3.477000000000000e-01 + 5.023500000000000e-01 + 6.110600000000000e-01 + 6.526800000000000e-01 + 6.289700000000000e-01 + 5.619900000000000e-01 + 4.828900000000000e-01 + 4.181700000000000e-01 + 3.794600000000000e-01 + 3.601700000000000e-01 + 3.402100000000000e-01 + 2.972200000000000e-01 + 2.196800000000000e-01 + 1.151100000000000e-01 + 7.829400000000000e-03 +-7.386300000000000e-02 +-1.139800000000000e-01 +-1.184200000000000e-01 +-1.114300000000000e-01 +-1.212900000000000e-01 +-1.650200000000000e-01 +-2.416000000000000e-01 +-3.362900000000000e-01 +-4.298900000000000e-01 +-5.047300000000000e-01 +-5.442300000000000e-01 +-5.308200000000000e-01 +-4.495300000000000e-01 +-2.989400000000000e-01 +-1.018400000000000e-01 + 9.549700000000000e-02 + 2.402100000000000e-01 + 2.981700000000000e-01 + 2.715400000000000e-01 + 1.960500000000000e-01 + 1.190100000000000e-01 + 7.291700000000000e-02 + 6.192900000000000e-02 + 6.851300000000000e-02 + 7.218300000000000e-02 + 6.469600000000000e-02 + 5.108900000000000e-02 + 3.891200000000000e-02 + 2.763000000000000e-02 + 8.531400000000000e-03 +-2.516100000000000e-02 +-6.806200000000000e-02 +-1.027100000000000e-01 +-1.111300000000000e-01 +-8.851100000000001e-02 +-4.749100000000000e-02 +-9.168900000000001e-03 + 1.182100000000000e-02 + 1.617100000000000e-02 + 1.616900000000000e-02 + 2.357400000000000e-02 + 3.983200000000000e-02 + 5.654000000000000e-02 + 6.467500000000000e-02 + 6.380000000000000e-02 + 6.331199999999999e-02 + 7.538400000000001e-02 + 1.064500000000000e-01 + 1.543300000000000e-01 + 2.120100000000000e-01 + 2.724400000000000e-01 + 3.286100000000000e-01 + 3.691600000000000e-01 + 3.756200000000000e-01 + 3.279200000000000e-01 + 2.168700000000000e-01 + 5.492300000000000e-02 +-1.251000000000000e-01 +-2.851900000000000e-01 +-4.021500000000000e-01 +-4.784200000000000e-01 +-5.353900000000000e-01 +-5.938500000000000e-01 +-6.556300000000000e-01 +-6.994400000000000e-01 +-6.934100000000000e-01 +-6.145600000000000e-01 +-4.618800000000000e-01 +-2.554700000000000e-01 +-2.508700000000000e-02 + 2.022400000000000e-01 + 4.076200000000000e-01 + 5.782200000000000e-01 + 7.032900000000000e-01 + 7.736000000000000e-01 + 7.848000000000001e-01 + 7.408600000000000e-01 + 6.536100000000000e-01 + 5.383400000000000e-01 + 4.090800000000000e-01 + 2.767900000000000e-01 + 1.502300000000000e-01 + 3.625900000000000e-02 +-6.282000000000000e-02 +-1.529300000000000e-01 +-2.480100000000000e-01 +-3.626400000000000e-01 +-4.999900000000000e-01 +-6.431400000000000e-01 +-7.572100000000000e-01 +-8.035500000000000e-01 +-7.585300000000000e-01 +-6.259000000000000e-01 +-4.353900000000000e-01 +-2.289000000000000e-01 +-4.295900000000000e-02 + 1.028000000000000e-01 + 2.067700000000000e-01 + 2.786400000000000e-01 + 3.309500000000000e-01 + 3.739800000000000e-01 + 4.145400000000000e-01 + 4.562900000000000e-01 + 4.991800000000000e-01 + 5.379300000000000e-01 + 5.614800000000000e-01 + 5.552400000000000e-01 + 5.060400000000000e-01 + 4.078100000000000e-01 + 2.652400000000000e-01 + 9.394600000000000e-02 +-8.311900000000000e-02 +-2.418000000000000e-01 +-3.635300000000000e-01 +-4.404100000000000e-01 +-4.767100000000000e-01 +-4.855900000000000e-01 +-4.823300000000000e-01 +-4.771700000000000e-01 +-4.712000000000000e-01 +-4.572000000000000e-01 +-4.240800000000000e-01 +-3.618400000000000e-01 +-2.642700000000000e-01 +-1.294200000000000e-01 + 4.013200000000000e-02 + 2.350600000000000e-01 + 4.359400000000000e-01 + 6.122100000000000e-01 + 7.268300000000000e-01 + 7.470900000000000e-01 + 6.572100000000000e-01 + 4.664800000000000e-01 + 2.084500000000000e-01 +-6.842200000000000e-02 +-3.142000000000000e-01 +-4.892700000000000e-01 +-5.715600000000000e-01 +-5.586400000000000e-01 +-4.662600000000000e-01 +-3.238400000000000e-01 +-1.667700000000000e-01 +-2.646100000000000e-02 + 7.895900000000000e-02 + 1.486900000000000e-01 + 1.952500000000000e-01 + 2.341300000000000e-01 + 2.730400000000000e-01 + 3.075800000000000e-01 + 3.259300000000000e-01 + 3.186700000000000e-01 + 2.866100000000000e-01 + 2.406100000000000e-01 + 1.937800000000000e-01 + 1.519000000000000e-01 + 1.095600000000000e-01 + 5.495500000000000e-02 +-1.991900000000000e-02 +-1.110800000000000e-01 +-2.024900000000000e-01 +-2.745000000000000e-01 +-3.152400000000000e-01 +-3.274400000000000e-01 +-3.261100000000000e-01 +-3.284600000000000e-01 +-3.425200000000000e-01 +-3.618100000000000e-01 +-3.692300000000000e-01 +-3.480800000000000e-01 +-2.929400000000000e-01 +-2.133600000000000e-01 +-1.277700000000000e-01 +-5.096700000000000e-02 + 1.632100000000000e-02 + 8.847900000000000e-02 + 1.846800000000000e-01 + 3.130200000000000e-01 + 4.594100000000000e-01 + 5.892900000000000e-01 + 6.627999999999999e-01 + 6.549900000000000e-01 + 5.691700000000000e-01 + 4.353300000000000e-01 + 2.947900000000000e-01 + 1.804900000000000e-01 + 1.043100000000000e-01 + 5.739700000000000e-02 + 2.091600000000000e-02 +-2.112500000000000e-02 +-7.478600000000001e-02 +-1.371400000000000e-01 +-2.018700000000000e-01 +-2.641400000000000e-01 +-3.219700000000000e-01 +-3.748400000000000e-01 +-4.221800000000000e-01 +-4.630300000000000e-01 +-4.959500000000000e-01 +-5.178000000000000e-01 +-5.215900000000000e-01 +-4.960300000000000e-01 +-4.289700000000000e-01 +-3.143600000000000e-01 +-1.587700000000000e-01 + 1.725000000000000e-02 + 1.849900000000000e-01 + 3.178100000000000e-01 + 4.003800000000000e-01 + 4.326500000000000e-01 + 4.275800000000000e-01 + 4.052600000000000e-01 + 3.862900000000000e-01 + 3.857500000000000e-01 + 4.079400000000000e-01 + 4.426900000000000e-01 + 4.662100000000000e-01 + 4.489800000000000e-01 + 3.696700000000000e-01 + 2.287400000000000e-01 + 5.304100000000000e-02 +-1.136000000000000e-01 +-2.300700000000000e-01 +-2.769000000000000e-01 +-2.629300000000000e-01 +-2.163200000000000e-01 +-1.668600000000000e-01 +-1.320000000000000e-01 +-1.152600000000000e-01 +-1.151300000000000e-01 +-1.345200000000000e-01 +-1.811900000000000e-01 +-2.578800000000000e-01 +-3.511900000000000e-01 +-4.304600000000000e-01 +-4.608500000000000e-01 +-4.236000000000000e-01 +-3.292700000000000e-01 +-2.139300000000000e-01 +-1.196700000000000e-01 +-7.184500000000001e-02 +-6.730100000000000e-02 +-8.016500000000000e-02 +-7.968900000000000e-02 +-4.773700000000000e-02 + 1.445100000000000e-02 + 9.192000000000000e-02 + 1.677100000000000e-01 + 2.320700000000000e-01 + 2.848200000000000e-01 + 3.319900000000000e-01 + 3.810600000000000e-01 + 4.376000000000000e-01 + 5.034300000000000e-01 + 5.752800000000000e-01 + 6.440500000000000e-01 + 6.962100000000000e-01 + 7.179800000000000e-01 + 7.002500000000000e-01 + 6.404900000000000e-01 + 5.394000000000000e-01 + 3.950000000000000e-01 + 2.004100000000000e-01 +-5.000900000000000e-02 +-3.479600000000000e-01 +-6.611000000000000e-01 +-9.356400000000000e-01 +-1.114600000000000e+00 +-1.163800000000000e+00 +-1.088900000000000e+00 +-9.337800000000001e-01 +-7.575700000000000e-01 +-6.053800000000000e-01 +-4.894800000000000e-01 +-3.916600000000000e-01 +-2.830500000000000e-01 +-1.472700000000000e-01 + 7.862800000000000e-03 + 1.556200000000000e-01 + 2.667000000000000e-01 + 3.249100000000000e-01 + 3.334000000000000e-01 + 3.106200000000000e-01 + 2.810600000000000e-01 + 2.665700000000000e-01 + 2.806700000000000e-01 + 3.248300000000000e-01 + 3.865300000000000e-01 + 4.409800000000000e-01 + 4.591200000000000e-01 + 4.210600000000000e-01 + 3.283900000000000e-01 + 2.070100000000000e-01 + 9.648100000000000e-02 + 3.071900000000000e-02 + 2.197000000000000e-02 + 5.819400000000000e-02 + 1.148800000000000e-01 + 1.717500000000000e-01 + 2.216500000000000e-01 + 2.658100000000000e-01 + 3.013300000000000e-01 + 3.137000000000000e-01 + 2.828800000000000e-01 + 1.997400000000000e-01 + 7.901600000000000e-02 +-4.399400000000000e-02 +-1.339100000000000e-01 +-1.794700000000000e-01 +-2.030900000000000e-01 +-2.466800000000000e-01 +-3.421500000000000e-01 +-4.871600000000000e-01 +-6.435999999999999e-01 +-7.605100000000000e-01 +-8.051700000000001e-01 +-7.806900000000000e-01 +-7.185000000000000e-01 +-6.530500000000000e-01 +-5.980900000000000e-01 +-5.415900000000000e-01 +-4.605200000000000e-01 +-3.416800000000000e-01 +-1.911100000000000e-01 +-2.551600000000000e-02 + 1.452700000000000e-01 + 3.276700000000000e-01 + 5.354300000000000e-01 + 7.680600000000000e-01 + 9.945600000000000e-01 + 1.158600000000000e+00 + 1.206000000000000e+00 + 1.117400000000000e+00 + 9.242400000000000e-01 + 6.950499999999999e-01 + 4.989500000000000e-01 + 3.699400000000000e-01 + 2.936100000000000e-01 + 2.236500000000000e-01 + 1.155600000000000e-01 +-4.492400000000000e-02 +-2.360000000000000e-01 +-4.172200000000000e-01 +-5.555800000000000e-01 +-6.419100000000000e-01 +-6.882500000000000e-01 +-7.112200000000000e-01 +-7.158000000000000e-01 +-6.918200000000000e-01 +-6.247400000000000e-01 +-5.113300000000000e-01 +-3.677900000000000e-01 +-2.238000000000000e-01 +-1.064400000000000e-01 +-2.524200000000000e-02 + 3.163300000000000e-02 + 8.768900000000000e-02 + 1.614500000000000e-01 + 2.532300000000000e-01 + 3.428800000000000e-01 + 3.991600000000000e-01 + 3.949600000000000e-01 + 3.205800000000000e-01 + 1.892300000000000e-01 + 3.323900000000000e-02 +-1.068700000000000e-01 +-1.960900000000000e-01 +-2.164200000000000e-01 +-1.716900000000000e-01 +-8.359900000000001e-02 + 1.963500000000000e-02 + 1.163800000000000e-01 + 1.993000000000000e-01 + 2.729900000000000e-01 + 3.431700000000000e-01 + 4.051400000000000e-01 + 4.407700000000000e-01 + 4.273700000000000e-01 + 3.535400000000000e-01 + 2.304400000000000e-01 + 8.970000000000000e-02 +-3.216000000000000e-02 +-1.125600000000000e-01 +-1.521800000000000e-01 +-1.686700000000000e-01 +-1.804700000000000e-01 +-1.936700000000000e-01 +-2.022500000000000e-01 +-2.008700000000000e-01 +-1.985000000000000e-01 +-2.200500000000000e-01 +-2.920100000000000e-01 +-4.212700000000000e-01 +-5.826200000000000e-01 +-7.252500000000000e-01 +-7.951500000000000e-01 +-7.597200000000000e-01 +-6.194900000000000e-01 +-4.020600000000000e-01 +-1.449900000000000e-01 + 1.198000000000000e-01 + 3.716200000000000e-01 + 5.972600000000000e-01 + 7.850200000000001e-01 + 9.226799999999999e-01 + 1.000200000000000e+00 + 1.012800000000000e+00 + 9.622600000000000e-01 + 8.542900000000000e-01 + 6.986400000000000e-01 + 5.105100000000000e-01 + 3.119900000000000e-01 + 1.283500000000000e-01 +-2.157100000000000e-02 +-1.351900000000000e-01 +-2.276000000000000e-01 +-3.208500000000000e-01 +-4.269700000000000e-01 +-5.373599999999999e-01 +-6.275300000000000e-01 +-6.748499999999999e-01 +-6.759800000000000e-01 +-6.496300000000000e-01 +-6.218800000000000e-01 +-6.052000000000000e-01 +-5.881500000000000e-01 +-5.444500000000000e-01 +-4.541700000000000e-01 +-3.197700000000000e-01 +-1.636800000000000e-01 +-9.951399999999999e-03 + 1.340400000000000e-01 + 2.793100000000000e-01 + 4.383300000000000e-01 + 6.037100000000000e-01 + 7.419600000000000e-01 + 8.103000000000000e-01 + 7.851300000000000e-01 + 6.805400000000000e-01 + 5.415900000000000e-01 + 4.166100000000000e-01 + 3.286500000000000e-01 + 2.666200000000000e-01 + 2.006000000000000e-01 + 1.075000000000000e-01 +-1.337600000000000e-02 +-1.449700000000000e-01 +-2.699900000000000e-01 +-3.839400000000000e-01 +-4.918300000000000e-01 +-5.927200000000000e-01 +-6.676000000000000e-01 +-6.841100000000000e-01 +-6.169300000000000e-01 +-4.687600000000000e-01 +-2.748100000000000e-01 +-8.610700000000000e-02 + 5.712500000000000e-02 + 1.436100000000000e-01 + 1.894100000000000e-01 + 2.203100000000000e-01 + 2.526000000000000e-01 + 2.852300000000000e-01 + 3.060000000000000e-01 + 3.035400000000000e-01 + 2.752100000000000e-01 + 2.269000000000000e-01 + 1.685600000000000e-01 + 1.109300000000000e-01 + 6.512200000000000e-02 + 4.141200000000000e-02 + 4.438200000000000e-02 + 6.665100000000000e-02 + 8.831100000000000e-02 + 8.686400000000000e-02 + 5.360000000000000e-02 + 4.209500000000000e-03 +-2.764600000000000e-02 +-1.354100000000000e-02 + 4.416700000000000e-02 + 1.041200000000000e-01 + 1.050700000000000e-01 + 3.408300000000000e-03 +-1.944400000000000e-01 +-4.273400000000000e-01 +-6.076800000000000e-01 +-6.666000000000000e-01 +-5.886400000000001e-01 +-4.159600000000000e-01 +-2.215900000000000e-01 +-7.028500000000000e-02 + 9.262500000000000e-03 + 2.742900000000000e-02 + 1.582100000000000e-02 + 4.420100000000000e-03 + 9.015900000000000e-03 + 3.348800000000000e-02 + 7.976400000000000e-02 + 1.540500000000000e-01 + 2.631400000000000e-01 + 4.041700000000000e-01 + 5.571900000000000e-01 + 6.882800000000000e-01 + 7.629899999999999e-01 + 7.621300000000000e-01 + 6.896600000000001e-01 + 5.678299999999999e-01 + 4.229700000000000e-01 + 2.715400000000000e-01 + 1.156800000000000e-01 +-4.984300000000000e-02 +-2.249200000000000e-01 +-3.961000000000000e-01 +-5.400500000000000e-01 +-6.372700000000000e-01 +-6.866900000000000e-01 +-7.101200000000000e-01 +-7.412400000000000e-01 +-8.042300000000000e-01 +-8.947300000000000e-01 +-9.759300000000000e-01 +-9.936700000000001e-01 +-9.029600000000000e-01 +-6.911100000000000e-01 +-3.840500000000000e-01 +-3.329900000000000e-02 + 3.079700000000000e-01 + 6.052100000000000e-01 + 8.482200000000000e-01 + 1.041700000000000e+00 + 1.190000000000000e+00 + 1.287000000000000e+00 + 1.318700000000000e+00 + 1.274100000000000e+00 + 1.155300000000000e+00 + 9.784200000000000e-01 + 7.646300000000000e-01 + 5.285000000000000e-01 + 2.731700000000000e-01 +-3.059400000000000e-03 +-2.936000000000000e-01 +-5.744300000000000e-01 +-8.076300000000000e-01 +-9.573100000000000e-01 +-1.008300000000000e+00 +-9.747900000000000e-01 +-8.930800000000000e-01 +-8.020600000000000e-01 +-7.247500000000000e-01 +-6.617600000000000e-01 +-5.992400000000000e-01 +-5.234900000000000e-01 +-4.306500000000000e-01 +-3.254000000000000e-01 +-2.121200000000000e-01 +-8.820000000000000e-02 + 5.346200000000000e-02 + 2.146600000000000e-01 + 3.838500000000000e-01 + 5.382600000000000e-01 + 6.560600000000000e-01 + 7.290700000000000e-01 + 7.651800000000000e-01 + 7.774000000000000e-01 + 7.681400000000000e-01 + 7.225500000000000e-01 + 6.182000000000000e-01 + 4.455200000000000e-01 + 2.234200000000000e-01 +-3.243600000000000e-03 +-1.846400000000000e-01 +-2.917300000000000e-01 +-3.290400000000000e-01 +-3.262800000000000e-01 +-3.157300000000000e-01 +-3.119600000000000e-01 +-3.072100000000000e-01 +-2.831100000000000e-01 +-2.277500000000000e-01 +-1.454100000000000e-01 +-5.374100000000000e-02 + 2.607900000000000e-02 + 7.775100000000000e-02 + 9.217800000000000e-02 + 6.639500000000000e-02 + 3.983000000000000e-03 +-8.225300000000001e-02 +-1.700600000000000e-01 +-2.348300000000000e-01 +-2.623500000000000e-01 +-2.579700000000000e-01 +-2.429800000000000e-01 +-2.379000000000000e-01 +-2.439300000000000e-01 +-2.380000000000000e-01 +-1.873200000000000e-01 +-7.444600000000000e-02 + 8.607800000000000e-02 + 2.531300000000000e-01 + 3.833800000000000e-01 + 4.566700000000000e-01 + 4.831500000000000e-01 + 4.876600000000000e-01 + 4.847500000000000e-01 + 4.651400000000000e-01 + 4.043100000000000e-01 + 2.857800000000000e-01 + 1.191700000000000e-01 +-6.176500000000000e-02 +-2.195800000000000e-01 +-3.349300000000000e-01 +-4.122800000000000e-01 +-4.660400000000000e-01 +-5.000100000000000e-01 +-4.987000000000000e-01 +-4.383200000000000e-01 +-3.086900000000000e-01 +-1.279700000000000e-01 + 6.222400000000000e-02 + 2.178600000000000e-01 + 3.141800000000000e-01 + 3.527400000000000e-01 + 3.510400000000000e-01 + 3.251500000000000e-01 + 2.795700000000000e-01 + 2.107100000000000e-01 + 1.187300000000000e-01 + 1.626700000000000e-02 +-7.340600000000000e-02 +-1.271700000000000e-01 +-1.336800000000000e-01 +-9.822800000000000e-02 +-3.945100000000000e-02 + 1.872300000000000e-02 + 5.508300000000000e-02 + 5.691900000000000e-02 + 2.328500000000000e-02 +-3.475700000000000e-02 +-9.827500000000000e-02 +-1.489800000000000e-01 +-1.784800000000000e-01 +-1.920200000000000e-01 +-2.030800000000000e-01 +-2.215700000000000e-01 +-2.446500000000000e-01 +-2.579800000000000e-01 +-2.473300000000000e-01 +-2.109300000000000e-01 +-1.615500000000000e-01 +-1.152400000000000e-01 +-7.544800000000000e-02 +-2.676000000000000e-02 + 5.434500000000000e-02 + 1.787000000000000e-01 + 3.302200000000000e-01 + 4.713000000000000e-01 + 5.655500000000000e-01 + 6.012200000000000e-01 + 5.968300000000000e-01 + 5.839200000000000e-01 + 5.798900000000000e-01 + 5.718900000000000e-01 + 5.243300000000000e-01 + 4.043400000000000e-01 + 2.060300000000000e-01 +-4.326800000000000e-02 +-2.973700000000000e-01 +-5.133799999999999e-01 +-6.658600000000000e-01 +-7.469200000000000e-01 +-7.589300000000000e-01 +-7.110200000000000e-01 +-6.230200000000000e-01 +-5.293800000000000e-01 +-4.720800000000000e-01 +-4.801500000000000e-01 +-5.473300000000000e-01 +-6.255800000000000e-01 +-6.438100000000000e-01 +-5.437700000000000e-01 +-3.116800000000000e-01 + 1.441400000000000e-02 + 3.652200000000000e-01 + 6.744100000000000e-01 + 9.046800000000000e-01 + 1.052100000000000e+00 + 1.131000000000000e+00 + 1.154300000000000e+00 + 1.122700000000000e+00 + 1.027600000000000e+00 + 8.619599999999999e-01 + 6.292600000000000e-01 + 3.464200000000000e-01 + 4.105300000000000e-02 +-2.531700000000000e-01 +-5.017800000000000e-01 +-6.762300000000000e-01 +-7.622000000000000e-01 +-7.657900000000000e-01 +-7.122400000000000e-01 +-6.350200000000000e-01 +-5.599600000000000e-01 +-4.943500000000000e-01 +-4.285300000000000e-01 +-3.491400000000000e-01 +-2.543800000000000e-01 +-1.598100000000000e-01 +-8.973600000000000e-02 +-6.026300000000000e-02 +-6.586100000000000e-02 +-7.924399999999999e-02 +-6.484100000000000e-02 + 2.745800000000000e-03 + 1.263700000000000e-01 + 2.862400000000000e-01 + 4.501900000000000e-01 + 5.873200000000000e-01 + 6.776200000000000e-01 + 7.148000000000000e-01 + 7.031400000000000e-01 + 6.517500000000001e-01 + 5.689200000000000e-01 + 4.584300000000000e-01 + 3.187800000000000e-01 + 1.458300000000000e-01 +-6.164300000000000e-02 +-2.957600000000000e-01 +-5.357200000000000e-01 +-7.492000000000000e-01 +-8.996300000000000e-01 +-9.571800000000000e-01 +-9.097400000000000e-01 +-7.692700000000000e-01 +-5.703900000000000e-01 +-3.601600000000000e-01 +-1.816100000000000e-01 +-5.708400000000000e-02 + 2.021400000000000e-02 + 8.063500000000000e-02 + 1.590900000000000e-01 + 2.718800000000000e-01 + 4.033300000000000e-01 + 5.121200000000000e-01 + 5.560100000000000e-01 + 5.205600000000000e-01 + 4.333300000000000e-01 + 3.522900000000000e-01 + 3.338700000000000e-01 + 3.995700000000000e-01 + 5.218300000000000e-01 + 6.376900000000000e-01 + 6.814400000000000e-01 + 6.159700000000000e-01 + 4.457100000000000e-01 + 2.072300000000000e-01 +-5.222500000000000e-02 +-2.931600000000000e-01 +-4.905500000000000e-01 +-6.308500000000000e-01 +-7.079200000000000e-01 +-7.237600000000000e-01 +-6.927000000000000e-01 +-6.418000000000000e-01 +-6.026200000000000e-01 +-5.963000000000001e-01 +-6.211400000000000e-01 +-6.513900000000000e-01 +-6.495300000000001e-01 +-5.852900000000000e-01 +-4.509600000000000e-01 +-2.649100000000000e-01 +-6.249500000000000e-02 + 1.196700000000000e-01 + 2.582900000000000e-01 + 3.505800000000000e-01 + 4.123600000000000e-01 + 4.687400000000000e-01 + 5.416800000000001e-01 + 6.395000000000000e-01 + 7.526200000000000e-01 + 8.578400000000000e-01 + 9.291700000000001e-01 + 9.497000000000000e-01 + 9.178200000000000e-01 + 8.445000000000000e-01 + 7.436100000000000e-01 + 6.221300000000000e-01 + 4.769100000000000e-01 + 2.997700000000000e-01 + 8.721400000000000e-02 +-1.524000000000000e-01 +-3.989300000000000e-01 +-6.271099999999999e-01 +-8.151200000000000e-01 +-9.498900000000000e-01 +-1.027200000000000e+00 +-1.048600000000000e+00 +-1.018700000000000e+00 +-9.447700000000000e-01 +-8.367100000000000e-01 +-7.078600000000000e-01 +-5.732400000000000e-01 +-4.469600000000000e-01 +-3.392500000000000e-01 +-2.540100000000000e-01 +-1.868400000000000e-01 +-1.243400000000000e-01 +-4.617200000000000e-02 + 6.870600000000000e-02 + 2.324100000000000e-01 + 4.392400000000000e-01 + 6.630100000000000e-01 + 8.637200000000000e-01 + 1.001600000000000e+00 + 1.051800000000000e+00 + 1.012300000000000e+00 + 9.017300000000000e-01 + 7.489800000000000e-01 + 5.821100000000000e-01 + 4.207300000000000e-01 + 2.745500000000000e-01 + 1.456300000000000e-01 + 3.141800000000000e-02 +-7.306300000000000e-02 +-1.733600000000000e-01 +-2.731200000000000e-01 +-3.712400000000000e-01 +-4.601100000000000e-01 +-5.264900000000000e-01 +-5.549500000000001e-01 +-5.326800000000000e-01 +-4.543300000000000e-01 +-3.258300000000000e-01 +-1.665300000000000e-01 +-8.103300000000001e-03 + 1.118200000000000e-01 + 1.612100000000000e-01 + 1.267500000000000e-01 + 2.153500000000000e-02 +-1.186800000000000e-01 +-2.507900000000000e-01 +-3.435200000000000e-01 +-3.892000000000000e-01 +-4.008500000000000e-01 +-3.973200000000000e-01 +-3.871000000000000e-01 +-3.628300000000000e-01 +-3.096800000000000e-01 +-2.202400000000000e-01 +-1.037000000000000e-01 + 1.859600000000000e-02 + 1.276600000000000e-01 + 2.201100000000000e-01 + 3.092200000000000e-01 + 4.128000000000000e-01 + 5.368800000000000e-01 + 6.675200000000000e-01 + 7.766400000000000e-01 + 8.369900000000000e-01 + 8.354300000000000e-01 + 7.758600000000000e-01 + 6.717300000000000e-01 + 5.355400000000000e-01 + 3.734800000000000e-01 + 1.876000000000000e-01 +-1.802400000000000e-02 +-2.331500000000000e-01 +-4.417000000000000e-01 +-6.249000000000000e-01 +-7.640100000000000e-01 +-8.419100000000000e-01 +-8.457300000000000e-01 +-7.720900000000001e-01 +-6.329300000000000e-01 +-4.563700000000000e-01 +-2.786900000000000e-01 +-1.296800000000000e-01 +-2.022700000000000e-02 + 5.888400000000000e-02 + 1.250100000000000e-01 + 1.866900000000000e-01 + 2.343800000000000e-01 + 2.464800000000000e-01 + 2.068800000000000e-01 + 1.208600000000000e-01 + 1.706200000000000e-02 +-6.686800000000000e-02 +-1.048000000000000e-01 +-9.435499999999999e-02 +-5.265900000000000e-02 +-8.320400000000000e-05 + 5.490700000000000e-02 + 1.182000000000000e-01 + 1.986800000000000e-01 + 2.929400000000000e-01 + 3.787000000000000e-01 + 4.230400000000000e-01 + 4.000400000000000e-01 + 3.060100000000000e-01 + 1.623800000000000e-01 + 5.538000000000000e-03 +-1.291400000000000e-01 +-2.192400000000000e-01 +-2.584300000000000e-01 +-2.523500000000000e-01 +-2.127800000000000e-01 +-1.536000000000000e-01 +-8.882600000000000e-02 +-3.025600000000000e-02 + 1.585400000000000e-02 + 5.108100000000000e-02 + 8.302600000000000e-02 + 1.190500000000000e-01 + 1.593900000000000e-01 + 1.950300000000000e-01 + 2.129300000000000e-01 + 2.051700000000000e-01 + 1.749100000000000e-01 + 1.336100000000000e-01 + 9.079700000000000e-02 + 4.397600000000000e-02 +-2.245600000000000e-02 +-1.266800000000000e-01 +-2.735000000000000e-01 +-4.443900000000000e-01 +-6.016800000000000e-01 +-7.056300000000000e-01 +-7.339900000000000e-01 +-6.912800000000000e-01 +-6.023200000000000e-01 +-4.948100000000000e-01 +-3.829200000000000e-01 +-2.621800000000000e-01 +-1.173100000000000e-01 + 6.429700000000001e-02 + 2.828400000000000e-01 + 5.252300000000000e-01 + 7.702400000000000e-01 + 9.932800000000001e-01 + 1.167100000000000e+00 + 1.261100000000000e+00 + 1.245000000000000e+00 + 1.100100000000000e+00 + 8.333400000000000e-01 + 4.838700000000000e-01 + 1.146400000000000e-01 +-2.096500000000000e-01 +-4.469000000000000e-01 +-5.901700000000000e-01 +-6.617000000000000e-01 +-6.934900000000001e-01 +-7.080500000000000e-01 +-7.109400000000000e-01 +-6.974500000000000e-01 +-6.648500000000001e-01 +-6.192800000000001e-01 +-5.715100000000000e-01 +-5.260300000000000e-01 +-4.731300000000000e-01 +-3.915400000000000e-01 +-2.606800000000000e-01 +-7.477600000000000e-02 + 1.502800000000000e-01 + 3.812000000000000e-01 + 5.795300000000000e-01 + 7.151800000000000e-01 + 7.754600000000000e-01 + 7.670100000000000e-01 + 7.112600000000000e-01 + 6.349600000000000e-01 + 5.584000000000000e-01 + 4.854100000000000e-01 + 4.004900000000000e-01 + 2.769000000000000e-01 + 9.394200000000000e-02 +-1.453200000000000e-01 +-4.071400000000000e-01 +-6.374100000000000e-01 +-7.850800000000000e-01 +-8.252200000000000e-01 +-7.676300000000000e-01 +-6.466700000000000e-01 +-4.999200000000000e-01 +-3.509000000000000e-01 +-2.060700000000000e-01 +-6.527100000000000e-02 + 6.547200000000000e-02 + 1.701800000000000e-01 + 2.308600000000000e-01 + 2.397200000000000e-01 + 2.051500000000000e-01 + 1.469300000000000e-01 + 8.581900000000001e-02 + 3.663800000000000e-02 + 9.662400000000000e-03 + 1.621200000000000e-02 + 6.970500000000000e-02 + 1.776900000000000e-01 + 3.299600000000000e-01 + 4.940400000000000e-01 + 6.252600000000000e-01 + 6.875400000000000e-01 + 6.710199999999999e-01 + 5.937700000000000e-01 + 4.862000000000000e-01 + 3.702900000000000e-01 + 2.494600000000000e-01 + 1.159000000000000e-01 +-3.223600000000000e-02 +-1.801300000000000e-01 +-3.025600000000000e-01 +-3.830900000000000e-01 +-4.301000000000000e-01 +-4.749100000000000e-01 +-5.509600000000000e-01 +-6.687800000000000e-01 +-8.055800000000000e-01 +-9.179300000000000e-01 +-9.682900000000000e-01 +-9.459800000000000e-01 +-8.674900000000000e-01 +-7.576500000000000e-01 +-6.271400000000000e-01 +-4.645400000000000e-01 +-2.486900000000000e-01 + 2.855200000000000e-02 + 3.467700000000000e-01 + 6.604100000000001e-01 + 9.186600000000000e-01 + 1.087700000000000e+00 + 1.161100000000000e+00 + 1.154200000000000e+00 + 1.088500000000000e+00 + 9.787400000000001e-01 + 8.294800000000000e-01 + 6.411400000000000e-01 + 4.186700000000000e-01 + 1.766500000000000e-01 +-6.100700000000000e-02 +-2.652200000000000e-01 +-4.074600000000000e-01 +-4.660200000000000e-01 +-4.327600000000000e-01 +-3.182400000000000e-01 +-1.522000000000000e-01 + 2.348700000000000e-02 + 1.673100000000000e-01 + 2.505000000000000e-01 + 2.625400000000000e-01 + 2.076200000000000e-01 + 9.628500000000000e-02 +-6.060600000000000e-02 +-2.513700000000000e-01 +-4.585100000000000e-01 +-6.559800000000000e-01 +-8.138200000000000e-01 +-9.087300000000000e-01 +-9.332400000000000e-01 +-8.964900000000000e-01 +-8.155300000000000e-01 +-7.040300000000000e-01 +-5.669700000000000e-01 +-4.048400000000000e-01 +-2.222800000000000e-01 +-3.229700000000000e-02 + 1.491800000000000e-01 + 3.143700000000000e-01 + 4.702100000000000e-01 + 6.326800000000000e-01 + 8.106900000000000e-01 + 9.911900000000000e-01 + 1.137900000000000e+00 + 1.207400000000000e+00 + 1.172700000000000e+00 + 1.038800000000000e+00 + 8.401200000000000e-01 + 6.203200000000000e-01 + 4.101200000000000e-01 + 2.167900000000000e-01 + 3.104300000000000e-02 +-1.562700000000000e-01 +-3.411300000000000e-01 +-5.062800000000000e-01 +-6.323600000000000e-01 +-7.103000000000000e-01 +-7.450200000000000e-01 +-7.488300000000000e-01 +-7.308100000000000e-01 +-6.913700000000000e-01 +-6.256800000000000e-01 +-5.321100000000000e-01 +-4.180900000000000e-01 +-2.985700000000000e-01 +-1.887500000000000e-01 +-9.729500000000001e-02 +-2.483100000000000e-02 + 3.194400000000000e-02 + 7.513599999999999e-02 + 1.039200000000000e-01 + 1.171200000000000e-01 + 1.170500000000000e-01 + 1.111000000000000e-01 + 1.096500000000000e-01 + 1.224600000000000e-01 + 1.558700000000000e-01 + 2.117200000000000e-01 + 2.868200000000000e-01 + 3.720800000000000e-01 + 4.524300000000000e-01 + 5.100000000000000e-01 + 5.311700000000000e-01 + 5.140900000000000e-01 + 4.707900000000000e-01 + 4.202300000000000e-01 + 3.749900000000000e-01 + 3.304600000000000e-01 + 2.649000000000000e-01 + 1.524700000000000e-01 +-1.833600000000000e-02 +-2.326800000000000e-01 +-4.518100000000000e-01 +-6.286200000000000e-01 +-7.265900000000000e-01 +-7.316000000000000e-01 +-6.523200000000000e-01 +-5.126300000000000e-01 +-3.428600000000000e-01 +-1.739300000000000e-01 +-3.340600000000000e-02 + 5.939900000000000e-02 + 9.900100000000001e-02 + 9.584800000000000e-02 + 7.060700000000000e-02 + 4.187000000000000e-02 + 1.515100000000000e-02 +-1.788000000000000e-02 +-6.791999999999999e-02 +-1.325800000000000e-01 +-1.900700000000000e-01 +-2.093900000000000e-01 +-1.712800000000000e-01 +-8.455100000000000e-02 + 1.588900000000000e-02 + 8.966200000000001e-02 + 1.158900000000000e-01 + 1.043600000000000e-01 + 8.500800000000000e-02 + 8.462699999999999e-02 + 1.096300000000000e-01 + 1.479600000000000e-01 + 1.872100000000000e-01 + 2.317500000000000e-01 + 3.024900000000000e-01 + 4.170900000000000e-01 + 5.660800000000000e-01 + 7.052400000000000e-01 + 7.737900000000000e-01 + 7.279000000000000e-01 + 5.669800000000000e-01 + 3.348300000000000e-01 + 9.558300000000000e-02 +-9.850200000000001e-02 +-2.265100000000000e-01 +-2.965500000000000e-01 +-3.291300000000000e-01 +-3.423300000000000e-01 +-3.488100000000000e-01 +-3.621100000000000e-01 +-4.006900000000000e-01 +-4.816300000000000e-01 +-6.070800000000000e-01 +-7.557100000000000e-01 +-8.888500000000000e-01 +-9.694300000000000e-01 +-9.804700000000000e-01 +-9.289600000000000e-01 +-8.324400000000000e-01 +-6.994300000000000e-01 +-5.201500000000000e-01 +-2.760300000000000e-01 + 3.861500000000000e-02 + 3.997500000000000e-01 + 7.553900000000000e-01 + 1.046100000000000e+00 + 1.230500000000000e+00 + 1.300200000000000e+00 + 1.275000000000000e+00 + 1.186700000000000e+00 + 1.063500000000000e+00 + 9.246900000000000e-01 + 7.847200000000000e-01 + 6.570800000000000e-01 + 5.511000000000000e-01 + 4.630000000000000e-01 + 3.706700000000000e-01 + 2.408500000000000e-01 + 4.824700000000000e-02 +-2.047700000000000e-01 +-4.820700000000000e-01 +-7.276400000000000e-01 +-8.925600000000000e-01 +-9.590800000000000e-01 +-9.475600000000000e-01 +-9.029000000000000e-01 +-8.699600000000000e-01 +-8.726600000000000e-01 +-9.073000000000000e-01 +-9.500400000000000e-01 +-9.707500000000000e-01 +-9.438900000000000e-01 +-8.524500000000000e-01 +-6.874000000000000e-01 +-4.477400000000000e-01 +-1.431800000000000e-01 + 2.025900000000000e-01 + 5.530000000000000e-01 + 8.663700000000000e-01 + 1.108200000000000e+00 + 1.262100000000000e+00 + 1.332700000000000e+00 + 1.340400000000000e+00 + 1.309700000000000e+00 + 1.256800000000000e+00 + 1.184000000000000e+00 + 1.079200000000000e+00 + 9.237200000000000e-01 + 7.020200000000000e-01 + 4.112400000000000e-01 + 6.686599999999999e-02 +-2.979400000000000e-01 +-6.398800000000000e-01 +-9.177900000000000e-01 +-1.105000000000000e+00 +-1.196300000000000e+00 +-1.206800000000000e+00 +-1.162600000000000e+00 +-1.089100000000000e+00 +-1.001500000000000e+00 +-9.028600000000000e-01 +-7.872900000000000e-01 +-6.460900000000001e-01 +-4.733000000000000e-01 +-2.695000000000000e-01 +-4.401800000000000e-02 + 1.840500000000000e-01 + 3.879200000000000e-01 + 5.401200000000000e-01 + 6.239100000000000e-01 + 6.440399999999999e-01 + 6.290600000000000e-01 + 6.205300000000000e-01 + 6.522100000000000e-01 + 7.300900000000000e-01 + 8.258799999999999e-01 + 8.893300000000000e-01 + 8.731900000000000e-01 + 7.560100000000000e-01 + 5.495900000000000e-01 + 2.880500000000000e-01 + 8.227999999999999e-03 +-2.642400000000000e-01 +-5.145600000000000e-01 +-7.276300000000000e-01 +-8.787600000000000e-01 +-9.369900000000000e-01 +-8.814300000000000e-01 +-7.193100000000000e-01 +-4.915900000000000e-01 +-2.596300000000000e-01 +-7.980700000000000e-02 + 1.891400000000000e-02 + 4.185000000000000e-02 + 1.840500000000000e-02 +-1.596700000000000e-02 +-3.357800000000000e-02 +-1.830400000000000e-02 + 3.718900000000000e-02 + 1.331100000000000e-01 + 2.592600000000000e-01 + 3.904400000000000e-01 + 4.886400000000000e-01 + 5.158300000000000e-01 + 4.525700000000000e-01 + 3.109700000000000e-01 + 1.322400000000000e-01 +-3.132300000000000e-02 +-1.396800000000000e-01 +-1.800900000000000e-01 +-1.663600000000000e-01 +-1.254400000000000e-01 +-8.195800000000000e-02 +-5.034300000000000e-02 +-3.635300000000000e-02 +-4.247600000000000e-02 +-6.999200000000000e-02 +-1.157400000000000e-01 +-1.681400000000000e-01 +-2.090200000000000e-01 +-2.228600000000000e-01 +-2.078900000000000e-01 +-1.797000000000000e-01 +-1.626000000000000e-01 +-1.726200000000000e-01 +-2.036500000000000e-01 +-2.272500000000000e-01 +-2.078500000000000e-01 +-1.243600000000000e-01 + 1.586200000000000e-02 + 1.796300000000000e-01 + 3.254800000000000e-01 + 4.244300000000000e-01 + 4.710300000000000e-01 + 4.792500000000000e-01 + 4.680700000000000e-01 + 4.480900000000000e-01 + 4.176400000000000e-01 + 3.692000000000000e-01 + 2.989600000000000e-01 + 2.115200000000000e-01 + 1.165800000000000e-01 + 2.210600000000000e-02 +-6.941000000000000e-02 +-1.579100000000000e-01 +-2.392400000000000e-01 +-3.021200000000000e-01 +-3.329400000000000e-01 +-3.262100000000000e-01 +-2.922400000000000e-01 +-2.549400000000000e-01 +-2.391600000000000e-01 +-2.552500000000000e-01 +-2.914600000000000e-01 +-3.197400000000000e-01 +-3.114600000000000e-01 +-2.530900000000000e-01 +-1.523000000000000e-01 +-3.222700000000000e-02 + 8.077700000000000e-02 + 1.673100000000000e-01 + 2.181400000000000e-01 + 2.315800000000000e-01 + 2.096700000000000e-01 + 1.571800000000000e-01 + 8.278500000000000e-02 +-5.095000000000000e-04 +-7.795000000000001e-02 +-1.375000000000000e-01 +-1.729400000000000e-01 +-1.836300000000000e-01 +-1.721900000000000e-01 +-1.432400000000000e-01 +-1.045800000000000e-01 +-6.847600000000000e-02 +-4.884600000000000e-02 +-5.328600000000000e-02 +-7.414800000000001e-02 +-8.632300000000000e-02 +-5.637400000000000e-02 + 4.034200000000000e-02 + 2.047600000000000e-01 + 4.114300000000000e-01 + 6.201800000000000e-01 + 7.940000000000000e-01 + 9.114100000000001e-01 + 9.660700000000000e-01 + 9.573500000000000e-01 + 8.818800000000000e-01 + 7.344000000000001e-01 + 5.170500000000000e-01 + 2.482200000000000e-01 +-3.829200000000000e-02 +-3.048300000000000e-01 +-5.241300000000000e-01 +-6.860300000000000e-01 +-7.930600000000000e-01 +-8.508800000000000e-01 +-8.634300000000000e-01 +-8.373000000000000e-01 +-7.895200000000000e-01 +-7.480900000000000e-01 +-7.395699999999999e-01 +-7.700600000000000e-01 +-8.145000000000000e-01 +-8.257200000000000e-01 +-7.609300000000000e-01 +-6.092500000000000e-01 +-4.007800000000000e-01 +-1.899500000000000e-01 +-2.344400000000000e-02 + 8.581500000000000e-02 + 1.617500000000000e-01 + 2.450300000000000e-01 + 3.653300000000000e-01 + 5.252300000000000e-01 + 7.047000000000000e-01 + 8.791099999999999e-01 + 1.035200000000000e+00 + 1.172500000000000e+00 + 1.292200000000000e+00 + 1.384100000000000e+00 + 1.424600000000000e+00 + 1.388300000000000e+00 + 1.264300000000000e+00 + 1.064700000000000e+00 + 8.172500000000000e-01 + 5.476799999999999e-01 + 2.648400000000000e-01 +-4.070100000000000e-02 +-3.821700000000000e-01 +-7.564700000000000e-01 +-1.132800000000000e+00 +-1.459700000000000e+00 +-1.687400000000000e+00 +-1.791800000000000e+00 +-1.785900000000000e+00 +-1.708200000000000e+00 +-1.596400000000000e+00 +-1.462100000000000e+00 +-1.283300000000000e+00 +-1.020300000000000e+00 +-6.463300000000000e-01 +-1.733400000000000e-01 + 3.438800000000000e-01 + 8.278100000000000e-01 + 1.210100000000000e+00 + 1.455900000000000e+00 + 1.566900000000000e+00 + 1.565700000000000e+00 + 1.475800000000000e+00 + 1.311500000000000e+00 + 1.082200000000000e+00 + 8.039600000000000e-01 + 5.044999999999999e-01 + 2.162400000000000e-01 +-3.655800000000000e-02 +-2.448700000000000e-01 +-4.096500000000000e-01 +-5.297300000000000e-01 +-5.956100000000000e-01 +-5.972600000000000e-01 +-5.409500000000000e-01 +-4.590100000000000e-01 +-3.997100000000000e-01 +-3.994200000000000e-01 +-4.557200000000000e-01 +-5.230600000000000e-01 +-5.375200000000000e-01 +-4.563900000000000e-01 +-2.854200000000000e-01 +-7.522600000000000e-02 + 1.103700000000000e-01 + 2.313300000000000e-01 + 2.890900000000000e-01 + 3.161300000000000e-01 + 3.492300000000000e-01 + 4.077100000000000e-01 + 4.893800000000000e-01 + 5.807800000000000e-01 + 6.673700000000000e-01 + 7.337399999999999e-01 + 7.572200000000000e-01 + 7.072400000000000e-01 + 5.584100000000000e-01 + 3.110900000000000e-01 + 2.692800000000000e-03 +-3.033900000000000e-01 +-5.477300000000001e-01 +-7.041800000000000e-01 +-7.879400000000000e-01 +-8.367000000000000e-01 +-8.793600000000000e-01 +-9.154200000000000e-01 +-9.189800000000000e-01 +-8.614800000000000e-01 +-7.337300000000000e-01 +-5.508200000000000e-01 +-3.386900000000000e-01 +-1.165600000000000e-01 + 1.095700000000000e-01 + 3.382900000000000e-01 + 5.593200000000000e-01 + 7.491400000000000e-01 + 8.804400000000000e-01 + 9.373800000000000e-01 + 9.231300000000000e-01 + 8.538600000000000e-01 + 7.457400000000000e-01 + 6.072600000000000e-01 + 4.435400000000000e-01 + 2.668200000000000e-01 + 1.002600000000000e-01 +-3.207000000000000e-02 +-1.226200000000000e-01 +-1.898100000000000e-01 +-2.681700000000000e-01 +-3.830500000000000e-01 +-5.276700000000000e-01 +-6.605300000000000e-01 +-7.268800000000000e-01 +-6.902400000000000e-01 +-5.525900000000000e-01 +-3.508500000000000e-01 +-1.348800000000000e-01 + 5.569700000000000e-02 + 2.007100000000000e-01 + 2.931500000000000e-01 + 3.282500000000000e-01 + 3.006500000000000e-01 + 2.122700000000000e-01 + 8.221600000000000e-02 +-5.284300000000000e-02 +-1.515700000000000e-01 +-1.861800000000000e-01 +-1.533600000000000e-01 +-7.129300000000000e-02 + 3.323200000000000e-02 + 1.366200000000000e-01 + 2.218500000000000e-01 + 2.750000000000000e-01 + 2.832100000000000e-01 + 2.396700000000000e-01 + 1.527000000000000e-01 + 4.918900000000000e-02 +-3.463900000000000e-02 +-7.226700000000000e-02 +-6.296100000000000e-02 +-3.237500000000000e-02 +-1.561200000000000e-02 +-3.390900000000000e-02 +-8.140500000000001e-02 +-1.312800000000000e-01 +-1.561200000000000e-01 +-1.471400000000000e-01 +-1.181200000000000e-01 +-9.215800000000000e-02 +-8.240200000000000e-02 +-8.177600000000000e-02 +-6.932099999999999e-02 +-2.763800000000000e-02 + 4.223900000000000e-02 + 1.196700000000000e-01 + 1.772800000000000e-01 + 1.978000000000000e-01 + 1.825900000000000e-01 + 1.465500000000000e-01 + 1.046900000000000e-01 + 6.146600000000000e-02 + 1.105100000000000e-02 +-5.215000000000000e-02 +-1.214900000000000e-01 +-1.746700000000000e-01 +-1.826800000000000e-01 +-1.262300000000000e-01 +-9.237199999999999e-03 + 1.392200000000000e-01 + 2.755700000000000e-01 + 3.590600000000000e-01 + 3.660200000000000e-01 + 2.949000000000000e-01 + 1.617700000000000e-01 +-8.669100000000001e-03 +-1.905400000000000e-01 +-3.597600000000000e-01 +-4.941200000000000e-01 +-5.740200000000000e-01 +-5.861900000000000e-01 +-5.290000000000000e-01 +-4.156000000000000e-01 +-2.712400000000000e-01 +-1.246300000000000e-01 + 2.539000000000000e-03 + 1.026300000000000e-01 + 1.814400000000000e-01 + 2.506700000000000e-01 + 3.177700000000000e-01 + 3.790700000000000e-01 + 4.199800000000000e-01 + 4.222800000000000e-01 + 3.746700000000000e-01 + 2.812800000000000e-01 + 1.636700000000000e-01 + 5.497600000000000e-02 +-1.199700000000000e-02 +-1.775900000000000e-02 + 3.542600000000000e-02 + 1.238500000000000e-01 + 2.119000000000000e-01 + 2.668300000000000e-01 + 2.718800000000000e-01 + 2.312300000000000e-01 + 1.645700000000000e-01 + 9.454500000000000e-02 + 3.454400000000000e-02 +-1.646800000000000e-02 +-6.966700000000001e-02 +-1.364900000000000e-01 +-2.201100000000000e-01 +-3.138400000000000e-01 +-4.065500000000000e-01 +-4.903300000000000e-01 +-5.640500000000001e-01 +-6.301000000000000e-01 +-6.869300000000000e-01 +-7.236200000000000e-01 +-7.214100000000000e-01 +-6.618900000000000e-01 +-5.367600000000000e-01 +-3.523600000000000e-01 +-1.264600000000000e-01 + 1.198200000000000e-01 + 3.683900000000000e-01 + 6.042999999999999e-01 + 8.104600000000000e-01 + 9.631600000000000e-01 + 1.034700000000000e+00 + 1.004200000000000e+00 + 8.697000000000000e-01 + 6.543200000000000e-01 + 3.991200000000000e-01 + 1.474900000000000e-01 +-6.960300000000000e-02 +-2.380900000000000e-01 +-3.533600000000000e-01 +-4.089200000000000e-01 +-3.922400000000000e-01 +-2.934000000000000e-01 +-1.208000000000000e-01 + 8.921000000000000e-02 + 2.792900000000000e-01 + 3.938900000000000e-01 + 4.045400000000000e-01 + 3.212900000000000e-01 + 1.828100000000000e-01 + 3.214400000000000e-02 +-1.050300000000000e-01 +-2.260300000000000e-01 +-3.396700000000000e-01 +-4.493200000000000e-01 +-5.450000000000000e-01 +-6.096200000000001e-01 +-6.321099999999999e-01 +-6.145500000000000e-01 +-5.667400000000000e-01 +-4.937800000000000e-01 +-3.895600000000000e-01 +-2.441200000000000e-01 +-6.029100000000000e-02 + 1.351400000000000e-01 + 2.980300000000000e-01 + 3.897800000000000e-01 + 4.008300000000000e-01 + 3.567800000000000e-01 + 3.013200000000000e-01 + 2.675900000000000e-01 + 2.589500000000000e-01 + 2.525800000000000e-01 + 2.217900000000000e-01 + 1.590800000000000e-01 + 8.229599999999999e-02 + 2.078400000000000e-02 +-5.782000000000000e-03 + 1.276200000000000e-03 + 2.565100000000000e-02 + 5.181100000000000e-02 + 7.566400000000000e-02 + 1.014500000000000e-01 + 1.297600000000000e-01 + 1.498500000000000e-01 + 1.453500000000000e-01 + 1.093600000000000e-01 + 5.503700000000000e-02 + 1.045500000000000e-02 +-3.728400000000000e-04 + 2.405100000000000e-02 + 6.006500000000000e-02 + 7.507400000000000e-02 + 5.059200000000000e-02 +-5.454200000000000e-03 +-6.600000000000000e-02 +-1.050500000000000e-01 +-1.146900000000000e-01 +-1.069300000000000e-01 +-1.014100000000000e-01 +-1.113800000000000e-01 +-1.391300000000000e-01 +-1.820600000000000e-01 +-2.398300000000000e-01 +-3.126700000000000e-01 +-3.910900000000000e-01 +-4.476700000000000e-01 +-4.433300000000000e-01 +-3.491300000000000e-01 +-1.706900000000000e-01 + 4.374200000000000e-02 + 2.211500000000000e-01 + 2.995000000000000e-01 + 2.599500000000000e-01 + 1.357300000000000e-01 +-7.182900000000000e-03 +-1.042400000000000e-01 +-1.207000000000000e-01 +-5.955000000000000e-02 + 5.051700000000000e-02 + 1.751400000000000e-01 + 2.886100000000000e-01 + 3.768600000000000e-01 + 4.327200000000000e-01 + 4.515200000000000e-01 + 4.314700000000000e-01 + 3.773800000000000e-01 + 3.025100000000000e-01 + 2.247200000000000e-01 + 1.581900000000000e-01 + 1.059100000000000e-01 + 5.822900000000000e-02 +-9.991100000000001e-04 +-8.382600000000000e-02 +-1.895900000000000e-01 +-3.035400000000000e-01 +-4.039200000000000e-01 +-4.732200000000000e-01 +-5.066500000000000e-01 +-5.117400000000000e-01 +-4.991000000000000e-01 +-4.707000000000000e-01 +-4.147900000000000e-01 +-3.129400000000000e-01 +-1.556000000000000e-01 + 4.457700000000000e-02 + 2.528000000000000e-01 + 4.276700000000000e-01 + 5.427100000000000e-01 + 5.984500000000000e-01 + 6.155600000000000e-01 + 6.133700000000000e-01 + 5.899100000000000e-01 + 5.198800000000000e-01 + 3.738200000000000e-01 + 1.457300000000000e-01 +-1.312400000000000e-01 +-3.939000000000000e-01 +-5.780200000000000e-01 +-6.490300000000000e-01 +-6.151400000000000e-01 +-5.169899999999999e-01 +-4.032700000000000e-01 +-3.088800000000000e-01 +-2.465500000000000e-01 +-2.110900000000000e-01 +-1.878900000000000e-01 +-1.585800000000000e-01 +-1.041600000000000e-01 +-1.006300000000000e-02 + 1.249600000000000e-01 + 2.813800000000000e-01 + 4.210900000000000e-01 + 5.022400000000000e-01 + 4.997700000000000e-01 + 4.187300000000000e-01 + 2.911100000000000e-01 + 1.586000000000000e-01 + 5.335500000000000e-02 +-1.124700000000000e-02 +-3.691800000000000e-02 +-3.134400000000000e-02 +-3.245800000000000e-03 + 3.552100000000000e-02 + 6.691600000000000e-02 + 7.068500000000000e-02 + 3.617400000000000e-02 +-2.674200000000000e-02 +-8.855800000000000e-02 +-1.155000000000000e-01 +-8.976900000000000e-02 +-1.997200000000000e-02 + 6.592000000000001e-02 + 1.387000000000000e-01 + 1.822300000000000e-01 + 1.934500000000000e-01 + 1.710600000000000e-01 + 1.068300000000000e-01 +-9.290600000000000e-03 +-1.727700000000000e-01 +-3.523400000000000e-01 +-4.972000000000000e-01 +-5.633600000000000e-01 +-5.416400000000000e-01 +-4.648000000000000e-01 +-3.854400000000000e-01 +-3.388700000000000e-01 +-3.179200000000000e-01 +-2.793800000000000e-01 +-1.782700000000000e-01 +-4.946300000000000e-03 + 2.023500000000000e-01 + 3.791600000000000e-01 + 4.752800000000000e-01 + 4.857200000000000e-01 + 4.512100000000000e-01 + 4.293300000000000e-01 + 4.568000000000000e-01 + 5.271500000000000e-01 + 5.961600000000000e-01 + 6.087300000000000e-01 + 5.296300000000000e-01 + 3.609600000000000e-01 + 1.396100000000000e-01 +-8.122600000000001e-02 +-2.556600000000000e-01 +-3.628300000000000e-01 +-4.115200000000000e-01 +-4.303900000000000e-01 +-4.491800000000000e-01 +-4.807600000000000e-01 +-5.144100000000000e-01 +-5.249000000000000e-01 +-4.914400000000000e-01 +-4.136300000000000e-01 +-3.123900000000000e-01 +-2.146400000000000e-01 +-1.332100000000000e-01 +-5.813000000000000e-02 + 3.267800000000000e-02 + 1.508000000000000e-01 + 2.810800000000000e-01 + 3.863800000000000e-01 + 4.320100000000000e-01 + 4.121300000000000e-01 + 3.575000000000000e-01 + 3.168800000000000e-01 + 3.243000000000000e-01 + 3.755000000000000e-01 + 4.300800000000000e-01 + 4.376200000000000e-01 + 3.687900000000000e-01 + 2.306500000000000e-01 + 5.823000000000000e-02 +-1.082800000000000e-01 +-2.430400000000000e-01 +-3.388900000000000e-01 +-3.979800000000000e-01 +-4.202300000000000e-01 +-4.001700000000000e-01 +-3.339500000000000e-01 +-2.294400000000000e-01 +-1.102300000000000e-01 +-9.919300000000001e-03 + 4.012900000000000e-02 + 2.298000000000000e-02 +-5.701200000000000e-02 +-1.747100000000000e-01 +-2.917600000000000e-01 +-3.697100000000000e-01 +-3.849800000000000e-01 +-3.396400000000000e-01 +-2.608800000000000e-01 +-1.865000000000000e-01 +-1.425200000000000e-01 +-1.258100000000000e-01 +-1.044500000000000e-01 +-3.726300000000000e-02 + 9.866300000000000e-02 + 2.908000000000000e-01 + 4.958000000000000e-01 + 6.624200000000000e-01 + 7.569000000000000e-01 + 7.743100000000001e-01 + 7.311400000000000e-01 + 6.486100000000000e-01 + 5.407600000000000e-01 + 4.148500000000000e-01 + 2.793900000000000e-01 + 1.486000000000000e-01 + 3.732900000000000e-02 +-4.911900000000000e-02 +-1.196200000000000e-01 +-1.900400000000000e-01 +-2.693300000000000e-01 +-3.512800000000000e-01 +-4.202200000000000e-01 +-4.664700000000000e-01 +-4.972700000000000e-01 +-5.313400000000000e-01 +-5.790300000000000e-01 +-6.244100000000000e-01 +-6.265400000000000e-01 +-5.437800000000000e-01 +-3.657200000000000e-01 +-1.287300000000000e-01 + 9.884400000000000e-02 + 2.543100000000000e-01 + 3.160100000000000e-01 + 3.120000000000000e-01 + 2.960900000000000e-01 + 3.082200000000000e-01 + 3.464200000000000e-01 + 3.694400000000000e-01 + 3.270000000000000e-01 + 1.966500000000000e-01 + 2.823800000000000e-03 +-1.936000000000000e-01 +-3.271900000000000e-01 +-3.610500000000000e-01 +-3.018800000000000e-01 +-1.900700000000000e-01 +-7.334800000000000e-02 + 1.913700000000000e-02 + 8.742999999999999e-02 + 1.512500000000000e-01 + 2.280700000000000e-01 + 3.136200000000000e-01 + 3.783400000000000e-01 + 3.829000000000000e-01 + 3.040900000000000e-01 + 1.542500000000000e-01 +-1.929900000000000e-02 +-1.560800000000000e-01 +-2.129900000000000e-01 +-1.843000000000000e-01 +-9.872700000000000e-02 + 3.304900000000000e-03 + 9.560900000000000e-02 + 1.771900000000000e-01 + 2.615700000000000e-01 + 3.544400000000000e-01 + 4.381900000000000e-01 + 4.763200000000000e-01 + 4.353600000000000e-01 + 3.084600000000000e-01 + 1.234300000000000e-01 +-7.009799999999999e-02 +-2.254300000000000e-01 +-3.191400000000000e-01 +-3.559700000000000e-01 +-3.592600000000000e-01 +-3.565900000000000e-01 +-3.700800000000000e-01 +-4.132700000000000e-01 +-4.904400000000000e-01 +-5.942000000000000e-01 +-7.028700000000000e-01 +-7.831700000000000e-01 +-8.016700000000000e-01 +-7.404700000000000e-01 +-6.070800000000000e-01 +-4.300900000000000e-01 +-2.423300000000000e-01 +-6.239800000000000e-02 + 1.122600000000000e-01 + 2.961900000000000e-01 + 4.978100000000000e-01 + 7.060400000000000e-01 + 8.913000000000000e-01 + 1.019600000000000e+00 + 1.069100000000000e+00 + 1.038400000000000e+00 + 9.418600000000000e-01 + 7.994700000000000e-01 + 6.283000000000000e-01 + 4.420300000000000e-01 + 2.555200000000000e-01 + 8.774600000000000e-02 +-4.147600000000000e-02 +-1.198400000000000e-01 +-1.500700000000000e-01 +-1.509100000000000e-01 +-1.501600000000000e-01 +-1.733900000000000e-01 +-2.340700000000000e-01 +-3.291400000000000e-01 +-4.410300000000000e-01 +-5.442600000000000e-01 +-6.136600000000000e-01 +-6.314500000000000e-01 +-5.914400000000000e-01 +-4.993800000000000e-01 +-3.703300000000000e-01 +-2.245200000000000e-01 +-8.345100000000000e-02 + 3.349500000000000e-02 + 1.126600000000000e-01 + 1.503200000000000e-01 + 1.558100000000000e-01 + 1.498600000000000e-01 + 1.557300000000000e-01 + 1.852900000000000e-01 + 2.279300000000000e-01 + 2.513900000000000e-01 + 2.175100000000000e-01 + 1.059900000000000e-01 +-6.843100000000001e-02 +-2.578700000000000e-01 +-4.031100000000000e-01 +-4.630800000000000e-01 +-4.337600000000000e-01 +-3.454000000000000e-01 +-2.413100000000000e-01 +-1.533500000000000e-01 +-8.983400000000000e-02 +-4.085800000000000e-02 + 6.979900000000000e-03 + 5.967600000000000e-02 + 1.163100000000000e-01 + 1.773500000000000e-01 + 2.505000000000000e-01 + 3.465900000000000e-01 + 4.680600000000000e-01 + 5.999400000000000e-01 + 7.122600000000000e-01 + 7.739300000000000e-01 + 7.689100000000000e-01 + 7.035200000000000e-01 + 6.006899999999999e-01 + 4.864300000000000e-01 + 3.782700000000000e-01 + 2.821200000000000e-01 + 1.962400000000000e-01 + 1.160300000000000e-01 + 3.511200000000000e-02 +-5.618800000000000e-02 +-1.699600000000000e-01 +-3.143700000000000e-01 +-4.848900000000000e-01 +-6.604900000000000e-01 +-8.101699999999999e-01 +-9.077300000000000e-01 +-9.459100000000000e-01 +-9.402000000000000e-01 +-9.192399999999999e-01 +-9.078000000000001e-01 +-9.127700000000000e-01 +-9.202200000000000e-01 +-9.036700000000000e-01 +-8.373500000000000e-01 +-7.065100000000000e-01 +-5.106500000000000e-01 +-2.607700000000000e-01 + 2.572200000000000e-02 + 3.291700000000000e-01 + 6.303500000000000e-01 + 9.121400000000000e-01 + 1.160900000000000e+00 + 1.366700000000000e+00 + 1.522600000000000e+00 + 1.622300000000000e+00 + 1.658700000000000e+00 + 1.623100000000000e+00 + 1.507500000000000e+00 + 1.307200000000000e+00 + 1.023800000000000e+00 + 6.689700000000000e-01 + 2.660600000000000e-01 +-1.499100000000000e-01 +-5.371000000000000e-01 +-8.563300000000000e-01 +-1.082900000000000e+00 +-1.214900000000000e+00 +-1.272700000000000e+00 +-1.288400000000000e+00 +-1.289600000000000e+00 +-1.285800000000000e+00 +-1.265200000000000e+00 +-1.202100000000000e+00 +-1.070300000000000e+00 +-8.560900000000000e-01 +-5.644500000000000e-01 +-2.176000000000000e-01 + 1.509400000000000e-01 + 5.042800000000000e-01 + 8.097100000000000e-01 + 1.044800000000000e+00 + 1.200000000000000e+00 + 1.276800000000000e+00 + 1.279800000000000e+00 + 1.208700000000000e+00 + 1.055700000000000e+00 + 8.122800000000000e-01 + 4.843300000000000e-01 + 1.042800000000000e-01 +-2.692400000000000e-01 +-5.690200000000000e-01 +-7.463400000000000e-01 +-7.921100000000000e-01 +-7.389300000000000e-01 +-6.420900000000000e-01 +-5.512500000000000e-01 +-4.894200000000000e-01 +-4.504000000000000e-01 +-4.127600000000000e-01 +-3.582500000000000e-01 +-2.821200000000000e-01 +-1.908000000000000e-01 +-9.271400000000000e-02 + 8.302100000000000e-03 + 1.119100000000000e-01 + 2.152300000000000e-01 + 3.091300000000000e-01 + 3.814500000000000e-01 + 4.250500000000000e-01 + 4.436800000000000e-01 + 4.503900000000000e-01 + 4.593900000000000e-01 + 4.777300000000000e-01 + 5.026800000000000e-01 + 5.259000000000000e-01 + 5.392900000000000e-01 + 5.371200000000000e-01 + 5.132300000000000e-01 + 4.579700000000000e-01 + 3.601900000000000e-01 + 2.153000000000000e-01 + 3.323800000000000e-02 +-1.616200000000000e-01 +-3.415000000000000e-01 +-4.912200000000000e-01 +-6.175800000000000e-01 +-7.435500000000000e-01 +-8.894300000000001e-01 +-1.053000000000000e+00 +-1.202800000000000e+00 +-1.289800000000000e+00 +-1.271300000000000e+00 +-1.131600000000000e+00 +-8.875600000000000e-01 +-5.766400000000000e-01 +-2.385200000000000e-01 + 9.837600000000001e-02 + 4.181500000000000e-01 + 7.100900000000000e-01 + 9.617300000000000e-01 + 1.158800000000000e+00 + 1.291100000000000e+00 + 1.357200000000000e+00 + 1.361800000000000e+00 + 1.307900000000000e+00 + 1.189700000000000e+00 + 9.962200000000000e-01 + 7.232700000000000e-01 + 3.874800000000000e-01 + 3.000500000000000e-02 +-2.950100000000000e-01 +-5.417200000000000e-01 +-6.907200000000000e-01 +-7.531200000000000e-01 +-7.590900000000000e-01 +-7.397000000000000e-01 +-7.141400000000000e-01 +-6.885100000000000e-01 +-6.629800000000000e-01 +-6.386400000000000e-01 +-6.173700000000000e-01 +-5.959000000000000e-01 +-5.609800000000000e-01 +-4.918000000000000e-01 +-3.694600000000000e-01 +-1.870400000000000e-01 + 4.662800000000000e-02 + 3.109300000000000e-01 + 5.801100000000000e-01 + 8.265400000000001e-01 + 1.019500000000000e+00 + 1.124800000000000e+00 + 1.111900000000000e+00 + 9.681100000000000e-01 + 7.125600000000000e-01 + 3.964400000000000e-01 + 8.582800000000000e-02 +-1.657900000000000e-01 +-3.385300000000000e-01 +-4.466200000000000e-01 +-5.185200000000000e-01 +-5.712500000000000e-01 +-5.978800000000000e-01 +-5.772100000000000e-01 +-4.971700000000000e-01 +-3.729700000000000e-01 +-2.444900000000000e-01 +-1.535400000000000e-01 +-1.174300000000000e-01 +-1.184400000000000e-01 +-1.174800000000000e-01 +-8.186000000000000e-02 +-7.409400000000000e-03 + 8.061500000000001e-02 + 1.471100000000000e-01 + 1.720900000000000e-01 + 1.630800000000000e-01 + 1.473600000000000e-01 + 1.513800000000000e-01 + 1.827400000000000e-01 + 2.267400000000000e-01 + 2.576100000000000e-01 + 2.551400000000000e-01 + 2.152200000000000e-01 + 1.496600000000000e-01 + 7.818500000000000e-02 + 1.954300000000000e-02 +-1.374500000000000e-02 +-1.677900000000000e-02 + 7.902899999999999e-03 + 5.098400000000000e-02 + 9.848300000000000e-02 + 1.364400000000000e-01 + 1.568000000000000e-01 + 1.607200000000000e-01 + 1.563200000000000e-01 + 1.515300000000000e-01 + 1.470200000000000e-01 + 1.343600000000000e-01 + 1.008100000000000e-01 + 3.686200000000000e-02 +-5.897100000000000e-02 +-1.810000000000000e-01 +-3.206200000000000e-01 +-4.690800000000000e-01 +-6.158600000000000e-01 +-7.449100000000000e-01 +-8.336300000000000e-01 +-8.580300000000000e-01 +-8.018500000000000e-01 +-6.637100000000000e-01 +-4.571700000000000e-01 +-2.043900000000000e-01 + 7.122000000000001e-02 + 3.474500000000000e-01 + 6.006800000000000e-01 + 8.034100000000000e-01 + 9.280800000000000e-01 + 9.579000000000000e-01 + 8.975200000000000e-01 + 7.743800000000000e-01 + 6.267500000000000e-01 + 4.846600000000000e-01 + 3.561100000000000e-01 + 2.283900000000000e-01 + 8.349600000000000e-02 +-8.360300000000000e-02 +-2.570100000000000e-01 +-4.075500000000000e-01 +-5.094000000000000e-01 +-5.530000000000000e-01 +-5.454000000000000e-01 +-4.997700000000000e-01 +-4.244300000000000e-01 +-3.206600000000000e-01 +-1.905200000000000e-01 +-4.606900000000000e-02 + 8.962800000000000e-02 + 1.925500000000000e-01 + 2.513700000000000e-01 + 2.734000000000000e-01 + 2.770000000000000e-01 + 2.756100000000000e-01 + 2.655200000000000e-01 + 2.273200000000000e-01 + 1.403700000000000e-01 +-1.863700000000000e-04 +-1.759400000000000e-01 +-3.518200000000000e-01 +-4.908500000000000e-01 +-5.664800000000000e-01 +-5.657799999999999e-01 +-4.857800000000000e-01 +-3.306700000000000e-01 +-1.146900000000000e-01 + 1.320900000000000e-01 + 3.640100000000000e-01 + 5.317499999999999e-01 + 6.026400000000000e-01 + 5.765900000000000e-01 + 4.855200000000000e-01 + 3.740900000000000e-01 + 2.733000000000000e-01 + 1.844200000000000e-01 + 8.450100000000001e-02 +-5.051900000000000e-02 +-2.214200000000000e-01 +-3.976500000000000e-01 +-5.316400000000000e-01 +-5.858300000000000e-01 +-5.540200000000000e-01 +-4.629200000000000e-01 +-3.537200000000000e-01 +-2.565500000000000e-01 +-1.750100000000000e-01 +-8.979500000000000e-02 + 2.259800000000000e-02 + 1.695900000000000e-01 + 3.340700000000000e-01 + 4.824400000000000e-01 + 5.826600000000000e-01 + 6.204300000000000e-01 + 6.034800000000000e-01 + 5.527300000000001e-01 + 4.869500000000000e-01 + 4.115700000000000e-01 + 3.184100000000000e-01 + 1.961000000000000e-01 + 4.364300000000000e-02 +-1.222500000000000e-01 +-2.716500000000000e-01 +-3.755600000000000e-01 +-4.210400000000000e-01 +-4.177100000000000e-01 +-3.910700000000000e-01 +-3.667700000000000e-01 +-3.557400000000000e-01 +-3.498500000000000e-01 +-3.303200000000000e-01 +-2.826800000000000e-01 +-2.078800000000000e-01 +-1.219200000000000e-01 +-4.529700000000000e-02 + 9.700800000000001e-03 + 4.461500000000000e-02 + 6.993700000000000e-02 + 9.432500000000001e-02 + 1.164300000000000e-01 + 1.252200000000000e-01 + 1.079600000000000e-01 + 5.964400000000000e-02 +-1.241700000000000e-02 +-9.057100000000000e-02 +-1.526300000000000e-01 +-1.774600000000000e-01 +-1.490000000000000e-01 +-6.010700000000000e-02 + 8.265400000000001e-02 + 2.553700000000000e-01 + 4.190300000000000e-01 + 5.306800000000000e-01 + 5.603100000000000e-01 + 5.047600000000000e-01 + 3.893900000000000e-01 + 2.552100000000000e-01 + 1.385200000000000e-01 + 5.514200000000000e-02 +-1.695300000000000e-03 +-5.025500000000000e-02 +-1.046600000000000e-01 +-1.651800000000000e-01 +-2.193200000000000e-01 +-2.506900000000000e-01 +-2.488200000000000e-01 +-2.145600000000000e-01 +-1.605200000000000e-01 +-1.084100000000000e-01 +-8.438600000000000e-02 +-1.113500000000000e-01 +-1.979900000000000e-01 +-3.286000000000000e-01 +-4.612300000000000e-01 +-5.397800000000000e-01 +-5.173800000000000e-01 +-3.791900000000000e-01 +-1.502000000000000e-01 + 1.175800000000000e-01 + 3.708300000000000e-01 + 5.763500000000000e-01 + 7.244000000000000e-01 + 8.143200000000000e-01 + 8.366600000000000e-01 + 7.691100000000000e-01 + 5.920000000000000e-01 + 3.127700000000000e-01 +-2.110400000000000e-02 +-3.339000000000000e-01 +-5.542800000000000e-01 +-6.487100000000000e-01 +-6.339399999999999e-01 +-5.608000000000000e-01 +-4.805100000000000e-01 +-4.160500000000000e-01 +-3.558900000000000e-01 +-2.715500000000000e-01 +-1.449900000000000e-01 + 1.328800000000000e-02 + 1.659100000000000e-01 + 2.676500000000000e-01 + 2.890400000000000e-01 + 2.313600000000000e-01 + 1.261400000000000e-01 + 2.109900000000000e-02 +-4.000100000000000e-02 +-3.456300000000000e-02 + 3.133500000000000e-02 + 1.279800000000000e-01 + 2.172300000000000e-01 + 2.708800000000000e-01 + 2.828400000000000e-01 + 2.686500000000000e-01 + 2.529300000000000e-01 + 2.527200000000000e-01 + 2.677000000000000e-01 + 2.828700000000000e-01 + 2.807300000000000e-01 + 2.527700000000000e-01 + 2.016400000000000e-01 + 1.336300000000000e-01 + 4.953600000000000e-02 +-5.673700000000000e-02 +-1.896000000000000e-01 +-3.406100000000000e-01 +-4.855700000000000e-01 +-5.946600000000000e-01 +-6.489900000000000e-01 +-6.506800000000000e-01 +-6.180099999999999e-01 +-5.690300000000000e-01 +-5.069600000000000e-01 +-4.198000000000000e-01 +-2.944700000000000e-01 +-1.335600000000000e-01 + 4.039000000000000e-02 + 1.976300000000000e-01 + 3.210800000000000e-01 + 4.162400000000000e-01 + 5.014600000000000e-01 + 5.853400000000000e-01 + 6.499500000000000e-01 + 6.555600000000000e-01 + 5.665700000000000e-01 + 3.809100000000000e-01 + 1.410200000000000e-01 +-8.307400000000000e-02 +-2.281300000000000e-01 +-2.671100000000000e-01 +-2.156600000000000e-01 +-1.146700000000000e-01 +-4.366100000000000e-03 + 9.160799999999999e-02 + 1.645900000000000e-01 + 2.090500000000000e-01 + 2.148700000000000e-01 + 1.720300000000000e-01 + 8.298500000000000e-02 +-2.984700000000000e-02 +-1.308800000000000e-01 +-1.899200000000000e-01 +-1.996700000000000e-01 +-1.794600000000000e-01 +-1.621300000000000e-01 +-1.733800000000000e-01 +-2.171700000000000e-01 +-2.756100000000000e-01 +-3.210200000000000e-01 +-3.305300000000000e-01 +-2.948300000000000e-01 +-2.186700000000000e-01 +-1.171400000000000e-01 +-1.149200000000000e-02 + 7.467600000000001e-02 + 1.215900000000000e-01 + 1.221100000000000e-01 + 8.869900000000000e-02 + 5.146200000000000e-02 + 4.415600000000000e-02 + 8.420600000000000e-02 + 1.597200000000000e-01 + 2.343800000000000e-01 + 2.697000000000000e-01 + 2.510200000000000e-01 + 1.987700000000000e-01 + 1.556400000000000e-01 + 1.565300000000000e-01 + 2.019700000000000e-01 + 2.539500000000000e-01 + 2.589700000000000e-01 + 1.834000000000000e-01 + 3.746300000000000e-02 +-1.285900000000000e-01 +-2.538400000000000e-01 +-3.018800000000000e-01 +-2.791200000000000e-01 +-2.255100000000000e-01 +-1.863300000000000e-01 +-1.848800000000000e-01 +-2.133000000000000e-01 +-2.443400000000000e-01 +-2.521900000000000e-01 +-2.267300000000000e-01 +-1.730900000000000e-01 +-1.013000000000000e-01 +-1.744200000000000e-02 + 7.580500000000000e-02 + 1.713900000000000e-01 + 2.526200000000000e-01 + 2.982200000000000e-01 + 2.960300000000000e-01 + 2.547000000000000e-01 + 2.024900000000000e-01 + 1.710600000000000e-01 + 1.747600000000000e-01 + 2.002100000000000e-01 + 2.149000000000000e-01 + 1.899400000000000e-01 + 1.213700000000000e-01 + 3.487000000000000e-02 +-2.998700000000000e-02 +-4.572100000000000e-02 +-1.601900000000000e-02 + 2.453100000000000e-02 + 2.965900000000000e-02 +-3.248600000000000e-02 +-1.617200000000000e-01 +-3.257100000000000e-01 +-4.756600000000000e-01 +-5.681900000000000e-01 +-5.823100000000000e-01 +-5.250500000000000e-01 +-4.253800000000000e-01 +-3.207300000000000e-01 +-2.421100000000000e-01 +-2.029600000000000e-01 +-1.957000000000000e-01 +-1.967700000000000e-01 +-1.781400000000000e-01 +-1.198800000000000e-01 +-1.768300000000000e-02 + 1.182900000000000e-01 + 2.719300000000000e-01 + 4.311300000000000e-01 + 5.925300000000000e-01 + 7.580000000000000e-01 + 9.256000000000000e-01 + 1.081500000000000e+00 + 1.198900000000000e+00 + 1.244800000000000e+00 + 1.191700000000000e+00 + 1.027500000000000e+00 + 7.597200000000000e-01 + 4.132300000000000e-01 + 2.397800000000000e-02 +-3.688800000000000e-01 +-7.297100000000000e-01 +-1.031300000000000e+00 +-1.256800000000000e+00 +-1.399600000000000e+00 +-1.458900000000000e+00 +-1.436300000000000e+00 +-1.332800000000000e+00 +-1.151100000000000e+00 +-9.004000000000000e-01 +-6.017300000000000e-01 +-2.890400000000000e-01 +-3.602100000000000e-03 + 2.166000000000000e-01 + 3.483600000000000e-01 + 3.903700000000000e-01 + 3.631500000000000e-01 + 3.018500000000000e-01 + 2.450300000000000e-01 + 2.235000000000000e-01 + 2.528700000000000e-01 + 3.322900000000000e-01 + 4.488400000000000e-01 + 5.852200000000000e-01 + 7.262300000000000e-01 + 8.604800000000000e-01 + 9.766899999999999e-01 + 1.058200000000000e+00 + 1.081300000000000e+00 + 1.021300000000000e+00 + 8.650400000000000e-01 + 6.213800000000000e-01 + 3.233700000000000e-01 + 1.712700000000000e-02 +-2.568000000000000e-01 +-4.790900000000000e-01 +-6.550100000000000e-01 +-8.039500000000001e-01 +-9.422300000000000e-01 +-1.070600000000000e+00 +-1.173300000000000e+00 +-1.227700000000000e+00 +-1.216500000000000e+00 +-1.134200000000000e+00 +-9.865900000000000e-01 +-7.855900000000000e-01 +-5.463700000000000e-01 +-2.883300000000000e-01 +-3.644700000000000e-02 + 1.820100000000000e-01 + 3.468400000000000e-01 + 4.554600000000000e-01 + 5.263700000000000e-01 + 5.906900000000000e-01 + 6.751700000000000e-01 + 7.864000000000000e-01 + 9.066600000000000e-01 + 1.004200000000000e+00 + 1.051300000000000e+00 + 1.037800000000000e+00 + 9.726399999999999e-01 + 8.718399999999999e-01 + 7.445900000000000e-01 + 5.866200000000000e-01 + 3.869300000000000e-01 + 1.425700000000000e-01 +-1.298500000000000e-01 +-3.954300000000000e-01 +-6.162100000000000e-01 +-7.710600000000000e-01 +-8.671000000000000e-01 +-9.344400000000000e-01 +-1.006200000000000e+00 +-1.096400000000000e+00 +-1.189000000000000e+00 +-1.245500000000000e+00 +-1.226000000000000e+00 +-1.110500000000000e+00 +-9.077100000000000e-01 +-6.470100000000000e-01 +-3.615300000000000e-01 +-7.362299999999999e-02 + 2.082200000000000e-01 + 4.817000000000000e-01 + 7.408500000000000e-01 + 9.726700000000000e-01 + 1.162300000000000e+00 + 1.301100000000000e+00 + 1.389000000000000e+00 + 1.428800000000000e+00 + 1.416900000000000e+00 + 1.340200000000000e+00 + 1.183300000000000e+00 + 9.433600000000000e-01 + 6.407100000000000e-01 + 3.159200000000000e-01 + 1.425400000000000e-02 +-2.330800000000000e-01 +-4.184000000000000e-01 +-5.524800000000000e-01 +-6.504100000000000e-01 +-7.202800000000000e-01 +-7.628200000000001e-01 +-7.804000000000000e-01 +-7.859100000000000e-01 +-8.023400000000001e-01 +-8.520000000000000e-01 +-9.429400000000000e-01 +-1.062500000000000e+00 +-1.181700000000000e+00 +-1.266400000000000e+00 +-1.286500000000000e+00 +-1.219100000000000e+00 +-1.048300000000000e+00 +-7.673400000000000e-01 +-3.847300000000000e-01 + 6.884400000000000e-02 + 5.427600000000000e-01 + 9.803100000000000e-01 + 1.338500000000000e+00 + 1.601200000000000e+00 + 1.776700000000000e+00 + 1.881000000000000e+00 + 1.919700000000000e+00 + 1.882100000000000e+00 + 1.752100000000000e+00 + 1.525700000000000e+00 + 1.221500000000000e+00 + 8.739300000000000e-01 + 5.147000000000000e-01 + 1.573400000000000e-01 +-2.027700000000000e-01 +-5.716200000000000e-01 +-9.358400000000000e-01 +-1.254700000000000e+00 +-1.473000000000000e+00 +-1.547500000000000e+00 +-1.471800000000000e+00 +-1.282600000000000e+00 +-1.046100000000000e+00 +-8.310700000000000e-01 +-6.842900000000000e-01 +-6.191900000000000e-01 +-6.186400000000000e-01 +-6.474200000000000e-01 +-6.667200000000000e-01 +-6.459300000000000e-01 +-5.693100000000000e-01 +-4.375300000000000e-01 +-2.638700000000000e-01 +-6.637400000000000e-02 + 1.409400000000000e-01 + 3.533300000000000e-01 + 5.736000000000000e-01 + 8.041900000000000e-01 + 1.038100000000000e+00 + 1.255300000000000e+00 + 1.427300000000000e+00 + 1.528700000000000e+00 + 1.547600000000000e+00 + 1.490100000000000e+00 + 1.374600000000000e+00 + 1.220300000000000e+00 + 1.036200000000000e+00 + 8.172700000000001e-01 + 5.499600000000000e-01 + 2.245200000000000e-01 +-1.528100000000000e-01 +-5.544500000000000e-01 +-9.370100000000000e-01 +-1.255800000000000e+00 +-1.481200000000000e+00 +-1.607600000000000e+00 +-1.650000000000000e+00 +-1.629300000000000e+00 +-1.557300000000000e+00 +-1.430300000000000e+00 +-1.238300000000000e+00 +-9.817399999999999e-01 +-6.846800000000000e-01 +-3.913200000000000e-01 +-1.463400000000000e-01 + 2.974600000000000e-02 + 1.531500000000000e-01 + 2.676800000000000e-01 + 4.185800000000000e-01 + 6.260100000000000e-01 + 8.746800000000000e-01 + 1.125000000000000e+00 + 1.336200000000000e+00 + 1.484000000000000e+00 + 1.563600000000000e+00 + 1.577800000000000e+00 + 1.524600000000000e+00 + 1.395000000000000e+00 + 1.182600000000000e+00 + 8.961800000000000e-01 + 5.626600000000000e-01 + 2.166000000000000e-01 +-1.168300000000000e-01 +-4.318900000000000e-01 +-7.372800000000000e-01 +-1.039700000000000e+00 +-1.328300000000000e+00 +-1.572600000000000e+00 +-1.734800000000000e+00 +-1.789200000000000e+00 +-1.733800000000000e+00 +-1.588400000000000e+00 +-1.381100000000000e+00 +-1.133300000000000e+00 +-8.532400000000000e-01 +-5.400400000000000e-01 +-1.930400000000000e-01 + 1.803000000000000e-01 + 5.622200000000001e-01 + 9.273200000000000e-01 + 1.246700000000000e+00 + 1.491700000000000e+00 + 1.637900000000000e+00 + 1.670700000000000e+00 + 1.591100000000000e+00 + 1.418400000000000e+00 + 1.185700000000000e+00 + 9.295900000000000e-01 + 6.773700000000000e-01 + 4.396400000000000e-01 + 2.119700000000000e-01 +-1.585500000000000e-02 +-2.490500000000000e-01 +-4.819000000000000e-01 +-6.992300000000000e-01 +-8.828600000000000e-01 +-1.018400000000000e+00 +-1.098300000000000e+00 +-1.121600000000000e+00 +-1.090900000000000e+00 +-1.010900000000000e+00 +-8.885500000000000e-01 +-7.326400000000000e-01 +-5.541000000000000e-01 +-3.643400000000000e-01 +-1.737200000000000e-01 + 9.263900000000000e-03 + 1.776500000000000e-01 + 3.252900000000000e-01 + 4.467100000000000e-01 + 5.380200000000001e-01 + 5.980700000000000e-01 + 6.291200000000000e-01 + 6.360500000000000e-01 + 6.244000000000000e-01 + 5.979600000000000e-01 + 5.571900000000000e-01 + 4.994300000000000e-01 + 4.214100000000000e-01 + 3.231100000000000e-01 + 2.112900000000000e-01 + 9.996300000000000e-02 + 6.488900000000000e-03 +-5.597300000000000e-02 +-8.616100000000000e-02 +-9.783500000000001e-02 +-1.154100000000000e-01 +-1.631800000000000e-01 +-2.532500000000000e-01 +-3.785800000000000e-01 +-5.148400000000000e-01 +-6.297100000000000e-01 +-6.944399999999999e-01 +-6.919900000000000e-01 +-6.191600000000000e-01 +-4.843600000000000e-01 +-3.042600000000000e-01 +-1.013100000000000e-01 + 9.882900000000000e-02 + 2.717500000000000e-01 + 4.007600000000000e-01 + 4.820800000000000e-01 + 5.245300000000001e-01 + 5.419600000000000e-01 + 5.426299999999999e-01 + 5.228500000000000e-01 + 4.704400000000000e-01 + 3.767400000000000e-01 + 2.486100000000000e-01 + 1.107100000000000e-01 +-5.413700000000000e-03 +-7.916600000000000e-02 +-1.131600000000000e-01 +-1.304900000000000e-01 +-1.579000000000000e-01 +-2.064200000000000e-01 +-2.634300000000000e-01 +-3.023800000000000e-01 +-3.035000000000000e-01 +-2.706600000000000e-01 +-2.317500000000000e-01 +-2.217800000000000e-01 +-2.600800000000000e-01 +-3.370900000000000e-01 +-4.191800000000000e-01 +-4.674000000000000e-01 +-4.570600000000000e-01 +-3.858900000000000e-01 +-2.676900000000000e-01 +-1.188600000000000e-01 + 5.128100000000000e-02 + 2.402500000000000e-01 + 4.443300000000000e-01 + 6.509500000000000e-01 + 8.379300000000000e-01 + 9.802400000000000e-01 + 1.058800000000000e+00 + 1.065200000000000e+00 + 1.000000000000000e+00 + 8.682700000000000e-01 + 6.761400000000000e-01 + 4.321900000000000e-01 + 1.508100000000000e-01 +-1.459200000000000e-01 +-4.311000000000000e-01 +-6.797600000000000e-01 +-8.762700000000000e-01 +-1.018100000000000e+00 +-1.114200000000000e+00 +-1.178000000000000e+00 +-1.219300000000000e+00 +-1.236500000000000e+00 +-1.214400000000000e+00 +-1.128300000000000e+00 +-9.538900000000000e-01 +-6.799600000000000e-01 +-3.172100000000000e-01 + 1.011100000000000e-01 + 5.281800000000000e-01 + 9.177500000000000e-01 + 1.235800000000000e+00 + 1.463800000000000e+00 + 1.594100000000000e+00 + 1.622600000000000e+00 + 1.545400000000000e+00 + 1.363900000000000e+00 + 1.092100000000000e+00 + 7.605100000000000e-01 + 4.113400000000000e-01 + 8.619200000000000e-02 +-1.864600000000000e-01 +-3.969700000000000e-01 +-5.514600000000000e-01 +-6.635400000000000e-01 +-7.469100000000000e-01 +-8.119800000000000e-01 +-8.650900000000000e-01 +-9.073300000000000e-01 +-9.318900000000000e-01 +-9.230200000000000e-01 +-8.603600000000000e-01 +-7.291900000000000e-01 +-5.316400000000000e-01 +-2.913600000000000e-01 +-4.761000000000000e-02 + 1.588400000000000e-01 + 3.000400000000000e-01 + 3.681200000000000e-01 + 3.732900000000000e-01 + 3.364100000000000e-01 + 2.814300000000000e-01 + 2.305500000000000e-01 + 2.006300000000000e-01 + 1.993600000000000e-01 + 2.218500000000000e-01 + 2.516800000000000e-01 + 2.692200000000000e-01 + 2.642400000000000e-01 + 2.446700000000000e-01 + 2.338000000000000e-01 + 2.551400000000000e-01 + 3.141100000000000e-01 + 3.893400000000000e-01 + 4.411000000000000e-01 + 4.324100000000000e-01 + 3.494400000000000e-01 + 2.081400000000000e-01 + 4.361600000000000e-02 +-1.094100000000000e-01 +-2.317000000000000e-01 +-3.220500000000000e-01 +-3.886400000000000e-01 +-4.382500000000000e-01 +-4.710200000000000e-01 +-4.822600000000000e-01 +-4.667600000000000e-01 +-4.208300000000000e-01 +-3.416500000000000e-01 +-2.279100000000000e-01 +-8.451900000000000e-02 + 7.111900000000000e-02 + 2.076400000000000e-01 + 2.881900000000000e-01 + 2.865200000000000e-01 + 2.012600000000000e-01 + 5.845900000000000e-02 +-1.001700000000000e-01 +-2.360500000000000e-01 +-3.274000000000000e-01 +-3.698900000000000e-01 +-3.663800000000000e-01 +-3.158600000000000e-01 +-2.115400000000000e-01 +-4.988900000000000e-02 + 1.566300000000000e-01 + 3.741200000000000e-01 + 5.551400000000000e-01 + 6.565200000000000e-01 + 6.569900000000000e-01 + 5.643700000000000e-01 + 4.090400000000000e-01 + 2.286200000000000e-01 + 5.320900000000000e-02 +-1.009200000000000e-01 +-2.274500000000000e-01 +-3.208400000000000e-01 +-3.695200000000000e-01 +-3.576700000000000e-01 +-2.755400000000000e-01 +-1.322000000000000e-01 + 3.866200000000000e-02 + 1.864600000000000e-01 + 2.635400000000000e-01 + 2.474200000000000e-01 + 1.521700000000000e-01 + 2.093200000000000e-02 +-9.686300000000000e-02 +-1.699800000000000e-01 +-1.962400000000000e-01 +-1.936100000000000e-01 +-1.794100000000000e-01 +-1.539100000000000e-01 +-1.013100000000000e-01 +-7.200400000000000e-03 + 1.213500000000000e-01 + 2.499000000000000e-01 + 3.314200000000000e-01 + 3.325500000000000e-01 + 2.532400000000000e-01 + 1.260100000000000e-01 +-3.917600000000000e-03 +-1.035000000000000e-01 +-1.652900000000000e-01 +-2.026800000000000e-01 +-2.337700000000000e-01 +-2.669500000000000e-01 +-2.974500000000000e-01 +-3.136400000000000e-01 +-3.056000000000000e-01 +-2.691000000000000e-01 +-2.050400000000000e-01 +-1.185500000000000e-01 +-2.089100000000000e-02 + 6.876200000000000e-02 + 1.270000000000000e-01 + 1.373000000000000e-01 + 1.025300000000000e-01 + 4.855900000000000e-02 + 1.306600000000000e-02 + 2.445800000000000e-02 + 8.449300000000000e-02 + 1.670400000000000e-01 + 2.344700000000000e-01 + 2.604200000000000e-01 + 2.437700000000000e-01 + 2.053100000000000e-01 + 1.718000000000000e-01 + 1.600500000000000e-01 + 1.713100000000000e-01 + 1.967800000000000e-01 + 2.264600000000000e-01 + 2.532300000000000e-01 + 2.706800000000000e-01 + 2.699100000000000e-01 + 2.411500000000000e-01 + 1.802000000000000e-01 + 9.361600000000000e-02 +-3.514400000000000e-03 +-9.700900000000000e-02 +-1.831200000000000e-01 +-2.699500000000000e-01 +-3.689300000000000e-01 +-4.826400000000000e-01 +-5.984100000000000e-01 +-6.924400000000001e-01 +-7.407700000000000e-01 +-7.287100000000000e-01 +-6.533700000000000e-01 +-5.204299999999999e-01 +-3.409600000000000e-01 +-1.320900000000000e-01 + 8.085400000000000e-02 + 2.664300000000000e-01 + 3.964200000000000e-01 + 4.578700000000000e-01 + 4.590700000000000e-01 + 4.236600000000000e-01 + 3.761900000000000e-01 + 3.295200000000000e-01 + 2.833800000000000e-01 + 2.341200000000000e-01 + 1.862500000000000e-01 + 1.549200000000000e-01 + 1.562500000000000e-01 + 1.934600000000000e-01 + 2.509800000000000e-01 + 3.020900000000000e-01 + 3.248600000000000e-01 + 3.136400000000000e-01 + 2.774700000000000e-01 + 2.275300000000000e-01 + 1.652200000000000e-01 + 8.133700000000001e-02 +-3.265800000000000e-02 +-1.709500000000000e-01 +-3.095500000000000e-01 +-4.167200000000000e-01 +-4.709600000000000e-01 +-4.737800000000000e-01 +-4.484900000000000e-01 +-4.262100000000000e-01 +-4.282900000000000e-01 +-4.552700000000000e-01 +-4.869800000000000e-01 +-4.918300000000000e-01 +-4.400900000000000e-01 +-3.166200000000000e-01 +-1.296300000000000e-01 + 8.800600000000000e-02 + 2.877400000000000e-01 + 4.241500000000000e-01 + 4.762800000000000e-01 + 4.595000000000000e-01 + 4.180200000000000e-01 + 3.991600000000000e-01 + 4.238000000000000e-01 + 4.720800000000000e-01 + 4.954100000000000e-01 + 4.482600000000000e-01 + 3.190200000000000e-01 + 1.391900000000000e-01 +-3.522300000000000e-02 +-1.566800000000000e-01 +-2.111800000000000e-01 +-2.195400000000000e-01 +-2.169100000000000e-01 +-2.271800000000000e-01 +-2.503200000000000e-01 +-2.691100000000000e-01 +-2.668400000000000e-01 +-2.411500000000000e-01 +-2.043800000000000e-01 +-1.723500000000000e-01 +-1.517800000000000e-01 +-1.356600000000000e-01 +-1.085500000000000e-01 +-5.694200000000000e-02 + 2.222900000000000e-02 + 1.184900000000000e-01 + 2.100200000000000e-01 + 2.696800000000000e-01 + 2.741500000000000e-01 + 2.148200000000000e-01 + 1.062200000000000e-01 +-1.408900000000000e-02 +-9.847100000000000e-02 +-1.114700000000000e-01 +-4.975400000000000e-02 + 5.347400000000000e-02 + 1.445900000000000e-01 + 1.781200000000000e-01 + 1.403200000000000e-01 + 5.338900000000000e-02 +-4.156100000000000e-02 +-1.100200000000000e-01 +-1.408700000000000e-01 +-1.449100000000000e-01 +-1.396600000000000e-01 +-1.341500000000000e-01 +-1.253100000000000e-01 +-1.065100000000000e-01 +-7.870600000000000e-02 +-5.296000000000000e-02 +-4.175100000000000e-02 +-4.640500000000000e-02 +-5.199000000000000e-02 +-3.503200000000000e-02 + 2.097600000000000e-02 + 1.136600000000000e-01 + 2.222200000000000e-01 + 3.195000000000000e-01 + 3.866000000000000e-01 + 4.195400000000000e-01 + 4.243000000000000e-01 + 4.054500000000000e-01 + 3.579800000000000e-01 + 2.689500000000000e-01 + 1.279800000000000e-01 +-6.075000000000000e-02 +-2.734600000000000e-01 +-4.722900000000000e-01 +-6.186300000000000e-01 +-6.872000000000000e-01 +-6.740400000000000e-01 +-5.952100000000000e-01 +-4.778600000000000e-01 +-3.485300000000000e-01 +-2.244100000000000e-01 +-1.111200000000000e-01 +-7.339100000000000e-03 + 8.720300000000000e-02 + 1.656900000000000e-01 + 2.143600000000000e-01 + 2.194600000000000e-01 + 1.774300000000000e-01 + 1.020000000000000e-01 + 2.321100000000000e-02 +-2.234800000000000e-02 +-5.749600000000000e-03 + 8.241999999999999e-02 + 2.282000000000000e-01 + 3.996600000000000e-01 + 5.584000000000000e-01 + 6.714100000000000e-01 + 7.187900000000000e-01 + 6.953900000000000e-01 + 6.078600000000000e-01 + 4.699100000000000e-01 + 2.984300000000000e-01 + 1.113400000000000e-01 +-7.330000000000000e-02 +-2.383600000000000e-01 +-3.695300000000000e-01 +-4.577900000000000e-01 +-5.012500000000000e-01 +-5.053200000000000e-01 +-4.811400000000000e-01 +-4.431500000000000e-01 +-4.068200000000000e-01 +-3.868100000000000e-01 +-3.943900000000000e-01 +-4.331300000000000e-01 +-4.939400000000000e-01 +-5.526799999999999e-01 +-5.745400000000001e-01 +-5.264500000000000e-01 +-3.931300000000000e-01 +-1.882000000000000e-01 + 4.763100000000000e-02 + 2.627100000000000e-01 + 4.173700000000000e-01 + 5.008899999999999e-01 + 5.324400000000000e-01 + 5.459200000000000e-01 + 5.679700000000000e-01 + 6.030000000000000e-01 + 6.330100000000000e-01 + 6.306900000000000e-01 + 5.760400000000000e-01 + 4.665500000000000e-01 + 3.169500000000000e-01 + 1.517900000000000e-01 +-3.227100000000000e-03 +-1.272500000000000e-01 +-2.079800000000000e-01 +-2.445400000000000e-01 +-2.487500000000000e-01 +-2.418300000000000e-01 +-2.446200000000000e-01 +-2.649800000000000e-01 +-2.905800000000000e-01 +-2.942400000000000e-01 +-2.509500000000000e-01 +-1.564200000000000e-01 +-3.388300000000000e-02 + 7.704000000000000e-02 + 1.429500000000000e-01 + 1.553800000000000e-01 + 1.326200000000000e-01 + 1.036400000000000e-01 + 8.646300000000000e-02 + 7.676900000000000e-02 + 5.432800000000000e-02 + 1.080400000000000e-03 +-8.357199999999999e-02 +-1.814400000000000e-01 +-2.676600000000000e-01 +-3.257000000000000e-01 +-3.536300000000000e-01 +-3.588500000000000e-01 +-3.477900000000000e-01 +-3.203300000000000e-01 +-2.726800000000000e-01 +-2.043600000000000e-01 +-1.214500000000000e-01 +-3.293400000000000e-02 + 5.539400000000000e-02 + 1.423400000000000e-01 + 2.257100000000000e-01 + 2.955400000000000e-01 + 3.350100000000000e-01 + 3.319100000000000e-01 + 2.930300000000000e-01 + 2.482500000000000e-01 + 2.367000000000000e-01 + 2.816500000000000e-01 + 3.712800000000000e-01 + 4.609400000000000e-01 + 4.974600000000000e-01 + 4.500800000000000e-01 + 3.266800000000000e-01 + 1.651400000000000e-01 + 7.841500000000000e-03 +-1.207700000000000e-01 +-2.180000000000000e-01 +-2.889900000000000e-01 +-3.306300000000000e-01 +-3.298800000000000e-01 +-2.788300000000000e-01 +-1.928200000000000e-01 +-1.126200000000000e-01 +-8.405400000000000e-02 +-1.276400000000000e-01 +-2.211000000000000e-01 +-3.103500000000000e-01 +-3.433500000000000e-01 +-3.034200000000000e-01 +-2.182900000000000e-01 +-1.386600000000000e-01 +-1.024500000000000e-01 +-1.109700000000000e-01 +-1.329300000000000e-01 +-1.310100000000000e-01 +-8.900700000000000e-02 +-1.935300000000000e-02 + 5.245200000000000e-02 + 1.112600000000000e-01 + 1.633500000000000e-01 + 2.262700000000000e-01 + 3.068300000000000e-01 + 3.865100000000000e-01 + 4.273000000000000e-01 + 3.946000000000000e-01 + 2.802200000000000e-01 + 1.090300000000000e-01 +-7.439900000000001e-02 +-2.277100000000000e-01 +-3.254800000000000e-01 +-3.589600000000000e-01 +-3.266100000000000e-01 +-2.277200000000000e-01 +-6.657700000000000e-02 + 1.373900000000000e-01 + 3.454800000000000e-01 + 5.099800000000000e-01 + 5.950299999999999e-01 + 5.937500000000000e-01 + 5.285800000000000e-01 + 4.335900000000000e-01 + 3.313800000000000e-01 + 2.219700000000000e-01 + 9.139200000000000e-02 +-6.757000000000001e-02 +-2.398800000000000e-01 +-3.916300000000000e-01 +-4.908700000000000e-01 +-5.304200000000000e-01 +-5.345800000000001e-01 +-5.434500000000000e-01 +-5.848100000000001e-01 +-6.532400000000000e-01 +-7.110100000000000e-01 +-7.102500000000000e-01 +-6.211700000000000e-01 +-4.479800000000000e-01 +-2.235900000000000e-01 + 1.103600000000000e-02 + 2.274200000000000e-01 + 4.166900000000000e-01 + 5.806300000000000e-01 + 7.157800000000000e-01 + 8.036100000000000e-01 + 8.148000000000000e-01 + 7.254600000000000e-01 + 5.351800000000000e-01 + 2.756400000000000e-01 + 4.181400000000000e-03 +-2.149900000000000e-01 +-3.333100000000000e-01 +-3.340500000000000e-01 +-2.355800000000000e-01 +-8.131700000000000e-02 + 7.870400000000000e-02 + 2.062000000000000e-01 + 2.853400000000000e-01 + 3.221500000000000e-01 + 3.343300000000000e-01 + 3.379700000000000e-01 + 3.380600000000000e-01 + 3.272400000000000e-01 + 2.917600000000000e-01 + 2.202100000000000e-01 + 1.096700000000000e-01 +-3.303600000000000e-02 +-1.942500000000000e-01 +-3.574300000000000e-01 +-5.061099999999999e-01 +-6.257500000000000e-01 +-7.054700000000000e-01 +-7.402300000000001e-01 +-7.321800000000001e-01 +-6.894600000000000e-01 +-6.218200000000000e-01 +-5.353100000000000e-01 +-4.297700000000000e-01 +-3.014500000000000e-01 +-1.500000000000000e-01 + 1.455300000000000e-02 + 1.702200000000000e-01 + 2.892300000000000e-01 + 3.499800000000000e-01 + 3.490100000000000e-01 + 3.061500000000000e-01 + 2.594300000000000e-01 + 2.506500000000000e-01 + 3.073800000000000e-01 + 4.293700000000000e-01 + 5.859900000000000e-01 + 7.268600000000000e-01 + 8.017600000000000e-01 + 7.810600000000000e-01 + 6.668200000000000e-01 + 4.890000000000000e-01 + 2.890200000000000e-01 + 9.988600000000000e-02 +-6.572900000000000e-02 +-2.130100000000000e-01 +-3.509600000000000e-01 +-4.770100000000000e-01 +-5.713500000000000e-01 +-6.053200000000000e-01 +-5.584200000000000e-01 +-4.328300000000000e-01 +-2.561300000000000e-01 +-7.080500000000001e-02 + 8.216200000000000e-02 + 1.760500000000000e-01 + 2.017600000000000e-01 + 1.634100000000000e-01 + 7.228900000000001e-02 +-5.578600000000000e-02 +-1.999300000000000e-01 +-3.344000000000000e-01 +-4.333400000000000e-01 +-4.791200000000000e-01 +-4.693400000000000e-01 +-4.171300000000000e-01 +-3.438000000000000e-01 +-2.682500000000000e-01 +-1.993800000000000e-01 +-1.352900000000000e-01 +-6.797700000000000e-02 + 1.105000000000000e-02 + 1.076600000000000e-01 + 2.245700000000000e-01 + 3.606200000000000e-01 + 5.081700000000000e-01 + 6.500600000000000e-01 + 7.603500000000000e-01 + 8.115200000000000e-01 + 7.860700000000000e-01 + 6.861400000000000e-01 + 5.344700000000000e-01 + 3.648800000000000e-01 + 2.071700000000000e-01 + 7.480900000000000e-02 +-3.760700000000000e-02 +-1.467700000000000e-01 +-2.681300000000000e-01 +-4.057900000000000e-01 +-5.494900000000000e-01 +-6.786300000000000e-01 +-7.696200000000000e-01 +-8.030500000000000e-01 +-7.686800000000000e-01 +-6.681000000000000e-01 +-5.154200000000000e-01 +-3.350900000000000e-01 +-1.562100000000000e-01 +-4.057600000000000e-03 + 1.082800000000000e-01 + 1.840300000000000e-01 + 2.398200000000000e-01 + 2.965400000000000e-01 + 3.681000000000000e-01 + 4.537800000000000e-01 + 5.380300000000000e-01 + 5.977400000000000e-01 + 6.135000000000000e-01 + 5.792000000000000e-01 + 5.053200000000000e-01 + 4.141900000000000e-01 + 3.293700000000000e-01 + 2.643300000000000e-01 + 2.162700000000000e-01 + 1.685600000000000e-01 + 1.007000000000000e-01 + 4.189700000000000e-04 +-1.291600000000000e-01 +-2.713500000000000e-01 +-4.053800000000000e-01 +-5.170000000000000e-01 +-6.031500000000000e-01 +-6.677700000000000e-01 +-7.127800000000000e-01 +-7.318700000000000e-01 +-7.130400000000000e-01 +-6.485400000000000e-01 +-5.447200000000000e-01 +-4.229500000000000e-01 +-3.092200000000000e-01 +-2.185500000000000e-01 +-1.456400000000000e-01 +-6.947600000000000e-02 + 3.011000000000000e-02 + 1.551700000000000e-01 + 2.846500000000000e-01 + 3.865100000000000e-01 + 4.396700000000000e-01 + 4.509400000000000e-01 + 4.545500000000000e-01 + 4.933800000000000e-01 + 5.931100000000000e-01 + 7.454000000000000e-01 + 9.099400000000000e-01 + 1.033600000000000e+00 + 1.074500000000000e+00 + 1.017500000000000e+00 + 8.746600000000000e-01 + 6.730100000000000e-01 + 4.401400000000000e-01 + 1.946500000000000e-01 +-5.476600000000000e-02 +-3.044700000000000e-01 +-5.500699999999999e-01 +-7.830900000000000e-01 +-9.908900000000000e-01 +-1.158700000000000e+00 +-1.272900000000000e+00 +-1.323800000000000e+00 +-1.308200000000000e+00 +-1.228700000000000e+00 +-1.092000000000000e+00 +-9.054500000000000e-01 +-6.759300000000000e-01 +-4.128200000000000e-01 +-1.325800000000000e-01 + 1.388200000000000e-01 + 3.704400000000000e-01 + 5.375300000000000e-01 + 6.337800000000000e-01 + 6.761000000000000e-01 + 6.974800000000000e-01 + 7.306900000000000e-01 + 7.923100000000000e-01 + 8.761400000000000e-01 + 9.589400000000000e-01 + 1.013100000000000e+00 + 1.017200000000000e+00 + 9.593300000000000e-01 + 8.340400000000000e-01 + 6.403000000000000e-01 + 3.836600000000000e-01 + 8.147400000000000e-02 +-2.355500000000000e-01 +-5.299700000000001e-01 +-7.704400000000000e-01 +-9.423899999999999e-01 +-1.048900000000000e+00 +-1.101600000000000e+00 +-1.109000000000000e+00 +-1.072100000000000e+00 +-9.897800000000000e-01 +-8.677900000000000e-01 +-7.213700000000000e-01 +-5.665200000000000e-01 +-4.063800000000000e-01 +-2.251500000000000e-01 + 2.106800000000000e-03 + 2.878500000000000e-01 + 6.138200000000000e-01 + 9.308500000000000e-01 + 1.179500000000000e+00 + 1.319200000000000e+00 + 1.346100000000000e+00 + 1.288700000000000e+00 + 1.185500000000000e+00 + 1.060100000000000e+00 + 9.113800000000000e-01 + 7.217100000000000e-01 + 4.759400000000000e-01 + 1.756800000000000e-01 +-1.587000000000000e-01 +-4.963300000000000e-01 +-8.059300000000000e-01 +-1.061100000000000e+00 +-1.241300000000000e+00 +-1.332600000000000e+00 +-1.331900000000000e+00 +-1.250500000000000e+00 +-1.112900000000000e+00 +-9.480200000000000e-01 +-7.779900000000000e-01 +-6.117600000000000e-01 +-4.484600000000000e-01 +-2.865400000000000e-01 +-1.303500000000000e-01 + 1.191700000000000e-02 + 1.367000000000000e-01 + 2.514200000000000e-01 + 3.716200000000000e-01 + 5.100500000000000e-01 + 6.663800000000000e-01 + 8.263100000000000e-01 + 9.707500000000000e-01 + 1.086900000000000e+00 + 1.171400000000000e+00 + 1.223700000000000e+00 + 1.236800000000000e+00 + 1.195600000000000e+00 + 1.086400000000000e+00 + 9.099500000000000e-01 + 6.848300000000000e-01 + 4.366600000000000e-01 + 1.804200000000000e-01 +-8.843700000000000e-02 +-3.845700000000000e-01 +-7.104300000000000e-01 +-1.038800000000000e+00 +-1.316500000000000e+00 +-1.488900000000000e+00 +-1.529400000000000e+00 +-1.452200000000000e+00 +-1.300200000000000e+00 +-1.117500000000000e+00 +-9.282100000000000e-01 +-7.344400000000000e-01 +-5.315000000000000e-01 +-3.227600000000000e-01 +-1.207800000000000e-01 + 6.517500000000000e-02 + 2.406000000000000e-01 + 4.222800000000000e-01 + 6.198000000000000e-01 + 8.175000000000000e-01 + 9.747100000000000e-01 + 1.048100000000000e+00 + 1.020300000000000e+00 + 9.132700000000000e-01 + 7.728500000000000e-01 + 6.375400000000000e-01 + 5.142200000000000e-01 + 3.807000000000000e-01 + 2.125400000000000e-01 + 1.201200000000000e-02 +-1.845200000000000e-01 +-3.273700000000000e-01 +-3.862800000000000e-01 +-3.698000000000000e-01 +-3.170800000000000e-01 +-2.698000000000000e-01 +-2.463800000000000e-01 +-2.372200000000000e-01 +-2.209000000000000e-01 +-1.851900000000000e-01 +-1.348400000000000e-01 +-8.192400000000000e-02 +-3.057000000000000e-02 + 2.759600000000000e-02 + 1.018700000000000e-01 + 1.853300000000000e-01 + 2.495000000000000e-01 + 2.590800000000000e-01 + 1.977600000000000e-01 + 8.507800000000000e-02 +-3.081900000000000e-02 +-1.015900000000000e-01 +-1.090900000000000e-01 +-7.610599999999999e-02 +-5.002300000000000e-02 +-7.107300000000000e-02 +-1.474100000000000e-01 +-2.530900000000000e-01 +-3.482200000000000e-01 +-4.054000000000000e-01 +-4.242700000000000e-01 +-4.259600000000000e-01 +-4.340500000000000e-01 +-4.566600000000000e-01 +-4.810100000000000e-01 +-4.820200000000000e-01 +-4.365300000000000e-01 +-3.334800000000000e-01 +-1.750200000000000e-01 + 2.873600000000000e-02 + 2.649800000000000e-01 + 5.192300000000000e-01 + 7.730000000000000e-01 + 1.002600000000000e+00 + 1.183000000000000e+00 + 1.295900000000000e+00 + 1.336300000000000e+00 + 1.313100000000000e+00 + 1.239300000000000e+00 + 1.120200000000000e+00 + 9.455200000000000e-01 + 6.945100000000000e-01 + 3.520300000000000e-01 +-7.324799999999999e-02 +-5.409500000000000e-01 +-9.885800000000000e-01 +-1.354600000000000e+00 +-1.601700000000000e+00 +-1.727200000000000e+00 +-1.753200000000000e+00 +-1.706100000000000e+00 +-1.598900000000000e+00 +-1.428400000000000e+00 +-1.187200000000000e+00 +-8.814500000000000e-01 +-5.374700000000000e-01 +-1.944000000000000e-01 + 1.141100000000000e-01 + 3.749400000000000e-01 + 5.975500000000000e-01 + 8.022500000000000e-01 + 1.003700000000000e+00 + 1.200300000000000e+00 + 1.374200000000000e+00 + 1.499900000000000e+00 + 1.553900000000000e+00 + 1.520900000000000e+00 + 1.397400000000000e+00 + 1.192500000000000e+00 + 9.281900000000000e-01 + 6.358300000000000e-01 + 3.469700000000000e-01 + 8.207500000000000e-02 +-1.558600000000000e-01 +-3.768700000000000e-01 +-5.898400000000000e-01 +-7.884800000000000e-01 +-9.490000000000000e-01 +-1.043400000000000e+00 +-1.060700000000000e+00 +-1.019300000000000e+00 +-9.615400000000000e-01 +-9.292700000000000e-01 +-9.386300000000000e-01 +-9.696399999999999e-01 +-9.786600000000000e-01 +-9.247600000000000e-01 +-7.923800000000000e-01 +-5.957800000000000e-01 +-3.646900000000000e-01 +-1.234400000000000e-01 + 1.212400000000000e-01 + 3.759900000000000e-01 + 6.456499999999999e-01 + 9.193100000000000e-01 + 1.167900000000000e+00 + 1.354300000000000e+00 + 1.449300000000000e+00 + 1.442300000000000e+00 + 1.344100000000000e+00 + 1.179200000000000e+00 + 9.767900000000000e-01 + 7.618000000000000e-01 + 5.506500000000000e-01 + 3.501500000000000e-01 + 1.590300000000000e-01 +-2.856700000000000e-02 +-2.183500000000000e-01 +-4.111200000000000e-01 +-5.999600000000000e-01 +-7.708700000000001e-01 +-9.071000000000000e-01 +-9.955100000000000e-01 +-1.032400000000000e+00 +-1.025900000000000e+00 +-9.935000000000000e-01 +-9.539700000000000e-01 +-9.176900000000000e-01 +-8.788400000000000e-01 +-8.154200000000000e-01 +-6.988700000000000e-01 +-5.098200000000001e-01 +-2.515500000000000e-01 + 4.746600000000000e-02 + 3.449400000000000e-01 + 6.037200000000000e-01 + 8.065200000000000e-01 + 9.567400000000000e-01 + 1.065200000000000e+00 + 1.133300000000000e+00 + 1.146100000000000e+00 + 1.081400000000000e+00 + 9.291900000000000e-01 + 7.072100000000000e-01 + 4.595600000000000e-01 + 2.382100000000000e-01 + 7.838600000000000e-02 +-1.658700000000000e-02 +-7.248499999999999e-02 +-1.267700000000000e-01 +-2.084300000000000e-01 +-3.260800000000000e-01 +-4.677800000000000e-01 +-6.082800000000000e-01 +-7.177400000000000e-01 +-7.691300000000000e-01 +-7.453100000000000e-01 +-6.464200000000000e-01 +-4.942100000000000e-01 +-3.275800000000000e-01 +-1.873700000000000e-01 +-9.614900000000000e-02 +-4.526000000000000e-02 + 7.078200000000000e-04 + 8.240800000000000e-02 + 2.194500000000000e-01 + 3.959200000000000e-01 + 5.669500000000000e-01 + 6.818400000000000e-01 + 7.083500000000000e-01 + 6.436100000000000e-01 + 5.073100000000000e-01 + 3.253600000000000e-01 + 1.172700000000000e-01 +-1.049000000000000e-01 +-3.284000000000000e-01 +-5.323200000000000e-01 +-6.887000000000000e-01 +-7.727500000000000e-01 +-7.744700000000000e-01 +-7.029500000000000e-01 +-5.801200000000000e-01 +-4.285600000000000e-01 +-2.617800000000000e-01 +-8.285300000000000e-02 + 1.088800000000000e-01 + 3.088500000000000e-01 + 5.024600000000000e-01 + 6.672800000000000e-01 + 7.804200000000000e-01 + 8.267099999999999e-01 + 8.038200000000000e-01 + 7.230200000000000e-01 + 6.061000000000000e-01 + 4.798200000000000e-01 + 3.686500000000000e-01 + 2.870400000000000e-01 + 2.330300000000000e-01 + 1.865500000000000e-01 + 1.153000000000000e-01 +-1.181500000000000e-02 +-2.080700000000000e-01 +-4.571000000000000e-01 +-7.135100000000000e-01 +-9.182600000000000e-01 +-1.022800000000000e+00 +-1.009900000000000e+00 +-9.000300000000000e-01 +-7.385200000000000e-01 +-5.712600000000000e-01 +-4.232700000000000e-01 +-2.924800000000000e-01 +-1.613800000000000e-01 +-1.716800000000000e-02 + 1.342800000000000e-01 + 2.699000000000000e-01 + 3.643200000000000e-01 + 4.062700000000000e-01 + 4.046400000000000e-01 + 3.809300000000000e-01 + 3.552800000000000e-01 + 3.371300000000000e-01 + 3.264000000000000e-01 + 3.214300000000000e-01 + 3.246200000000000e-01 + 3.403200000000000e-01 + 3.676100000000000e-01 + 3.964900000000000e-01 + 4.127100000000000e-01 + 4.080200000000000e-01 + 3.859700000000000e-01 + 3.562200000000000e-01 + 3.207300000000000e-01 + 2.641300000000000e-01 + 1.595900000000000e-01 +-1.081500000000000e-02 +-2.354900000000000e-01 +-4.697300000000000e-01 +-6.553900000000000e-01 +-7.519400000000001e-01 +-7.573900000000000e-01 +-7.038100000000000e-01 +-6.310500000000000e-01 +-5.587100000000000e-01 +-4.772200000000000e-01 +-3.636200000000000e-01 +-2.082000000000000e-01 +-2.975100000000000e-02 + 1.327100000000000e-01 + 2.451300000000000e-01 + 3.001100000000000e-01 + 3.179900000000000e-01 + 3.270000000000000e-01 + 3.384900000000000e-01 + 3.371200000000000e-01 + 2.937700000000000e-01 + 1.912500000000000e-01 + 4.381400000000000e-02 +-1.043200000000000e-01 +-2.005400000000000e-01 +-2.118300000000000e-01 +-1.419400000000000e-01 +-2.880500000000000e-02 + 7.491500000000000e-02 + 1.269600000000000e-01 + 1.139700000000000e-01 + 5.594700000000000e-02 +-4.443200000000000e-03 +-2.245900000000000e-02 + 2.699200000000000e-02 + 1.366700000000000e-01 + 2.701600000000000e-01 + 3.801900000000000e-01 + 4.324400000000000e-01 + 4.211200000000000e-01 + 3.667900000000000e-01 + 2.983300000000000e-01 + 2.322300000000000e-01 + 1.637600000000000e-01 + 7.595800000000000e-02 +-4.175000000000000e-02 +-1.807400000000000e-01 +-3.167600000000000e-01 +-4.269500000000000e-01 +-5.060500000000000e-01 +-5.679999999999999e-01 +-6.312400000000000e-01 +-6.992500000000000e-01 +-7.522100000000000e-01 +-7.568900000000000e-01 +-6.874600000000000e-01 +-5.419900000000000e-01 +-3.432300000000000e-01 +-1.250800000000000e-01 + 8.396000000000001e-02 + 2.688700000000000e-01 + 4.250600000000000e-01 + 5.510300000000000e-01 + 6.450100000000000e-01 + 7.079200000000000e-01 + 7.471500000000000e-01 + 7.743300000000000e-01 + 7.963800000000000e-01 + 8.065500000000000e-01 + 7.838300000000000e-01 + 7.032100000000000e-01 + 5.505400000000000e-01 + 3.321700000000000e-01 + 7.368500000000000e-02 +-1.896500000000000e-01 +-4.235700000000000e-01 +-6.010900000000000e-01 +-7.050100000000000e-01 +-7.303100000000000e-01 +-6.878900000000000e-01 +-6.058200000000000e-01 +-5.224299999999999e-01 +-4.706200000000000e-01 +-4.606600000000000e-01 +-4.730700000000000e-01 +-4.680100000000000e-01 +-4.069100000000000e-01 +-2.734600000000000e-01 +-8.193100000000000e-02 + 1.305300000000000e-01 + 3.202300000000000e-01 + 4.515700000000000e-01 + 5.040200000000000e-01 + 4.731900000000000e-01 + 3.704500000000000e-01 + 2.227500000000000e-01 + 6.899100000000000e-02 +-5.033700000000000e-02 +-1.080600000000000e-01 +-1.011300000000000e-01 +-4.864700000000000e-02 + 2.285500000000000e-02 + 9.691600000000000e-02 + 1.741000000000000e-01 + 2.630000000000000e-01 + 3.630600000000000e-01 + 4.541500000000000e-01 + 5.030900000000000e-01 + 4.835800000000000e-01 + 3.942700000000000e-01 + 2.609700000000000e-01 + 1.207700000000000e-01 + 7.433299999999999e-05 +-9.731900000000000e-02 +-1.845300000000000e-01 +-2.746300000000000e-01 +-3.665000000000000e-01 +-4.436200000000000e-01 +-4.847600000000000e-01 +-4.764100000000000e-01 +-4.181200000000000e-01 +-3.194600000000000e-01 +-1.947900000000000e-01 +-6.174300000000000e-02 + 5.698400000000000e-02 + 1.346400000000000e-01 + 1.487600000000000e-01 + 9.384400000000000e-02 +-1.103100000000000e-02 +-1.278300000000000e-01 +-2.173900000000000e-01 +-2.587300000000000e-01 +-2.572300000000000e-01 +-2.364600000000000e-01 +-2.199900000000000e-01 +-2.156200000000000e-01 +-2.115700000000000e-01 +-1.852000000000000e-01 +-1.168700000000000e-01 +-5.374200000000000e-04 + 1.529800000000000e-01 + 3.193300000000000e-01 + 4.676000000000000e-01 + 5.690499999999999e-01 + 6.062000000000000e-01 + 5.796600000000000e-01 + 5.086200000000000e-01 + 4.226800000000000e-01 + 3.480100000000000e-01 + 2.958700000000000e-01 + 2.609200000000000e-01 + 2.303200000000000e-01 + 1.959200000000000e-01 + 1.594600000000000e-01 + 1.267400000000000e-01 + 9.648300000000000e-02 + 5.496500000000000e-02 +-1.692400000000000e-02 +-1.288100000000000e-01 +-2.703300000000000e-01 +-4.146200000000000e-01 +-5.340600000000000e-01 +-6.159100000000000e-01 +-6.651200000000000e-01 +-6.925200000000000e-01 +-6.988900000000000e-01 +-6.694400000000000e-01 +-5.843600000000000e-01 +-4.374800000000000e-01 +-2.476700000000000e-01 +-5.347800000000000e-02 + 1.054800000000000e-01 + 2.067300000000000e-01 + 2.512100000000000e-01 + 2.560800000000000e-01 + 2.429300000000000e-01 + 2.304400000000000e-01 + 2.332900000000000e-01 + 2.618300000000000e-01 + 3.173100000000000e-01 + 3.856300000000000e-01 + 4.383400000000000e-01 + 4.464600000000000e-01 + 4.009400000000000e-01 + 3.242900000000000e-01 + 2.604700000000000e-01 + 2.459600000000000e-01 + 2.810100000000000e-01 + 3.234000000000000e-01 + 3.122600000000000e-01 + 2.069400000000000e-01 + 1.437600000000000e-02 +-2.143800000000000e-01 +-4.148600000000000e-01 +-5.445300000000000e-01 +-5.986000000000000e-01 +-5.987800000000000e-01 +-5.682100000000000e-01 +-5.140800000000000e-01 +-4.301500000000000e-01 +-3.134000000000000e-01 +-1.776600000000000e-01 +-5.165600000000000e-02 + 3.712600000000000e-02 + 7.930900000000000e-02 + 8.836500000000000e-02 + 9.078600000000001e-02 + 1.102900000000000e-01 + 1.570300000000000e-01 + 2.264500000000000e-01 + 3.044000000000000e-01 + 3.728800000000000e-01 + 4.143100000000000e-01 + 4.158800000000000e-01 + 3.751800000000000e-01 + 3.034500000000000e-01 + 2.213600000000000e-01 + 1.467100000000000e-01 + 8.173700000000000e-02 + 1.144600000000000e-02 +-8.269200000000000e-02 +-2.020700000000000e-01 +-3.202400000000000e-01 +-3.938100000000000e-01 +-3.902100000000000e-01 +-3.126000000000000e-01 +-2.021300000000000e-01 +-1.137300000000000e-01 +-8.194400000000000e-02 +-1.015100000000000e-01 +-1.358000000000000e-01 +-1.453100000000000e-01 +-1.133900000000000e-01 +-5.117200000000000e-02 + 1.856300000000000e-02 + 8.164000000000000e-02 + 1.390300000000000e-01 + 1.961300000000000e-01 + 2.475700000000000e-01 + 2.741200000000000e-01 + 2.561200000000000e-01 + 1.918400000000000e-01 + 1.032600000000000e-01 + 2.251200000000000e-02 +-3.069400000000000e-02 +-6.176800000000000e-02 +-9.332000000000000e-02 +-1.435100000000000e-01 +-2.091600000000000e-01 +-2.676700000000000e-01 +-2.949600000000000e-01 +-2.829400000000000e-01 +-2.414400000000000e-01 +-1.842200000000000e-01 +-1.138700000000000e-01 +-2.112500000000000e-02 + 9.928400000000000e-02 + 2.311000000000000e-01 + 3.354700000000000e-01 + 3.715100000000000e-01 + 3.244200000000000e-01 + 2.188500000000000e-01 + 1.055200000000000e-01 + 3.015800000000000e-02 + 7.864100000000001e-03 + 2.148000000000000e-02 + 4.303100000000000e-02 + 5.920900000000000e-02 + 7.986400000000000e-02 + 1.238000000000000e-01 + 1.954100000000000e-01 + 2.728200000000000e-01 + 3.181100000000000e-01 + 3.013900000000000e-01 + 2.198700000000000e-01 + 9.778100000000001e-02 +-3.075500000000000e-02 +-1.412200000000000e-01 +-2.257300000000000e-01 +-2.853400000000000e-01 +-3.178100000000000e-01 +-3.141100000000000e-01 +-2.675000000000000e-01 +-1.869000000000000e-01 +-1.017500000000000e-01 +-5.151300000000000e-02 +-6.559600000000000e-02 +-1.465800000000000e-01 +-2.678000000000000e-01 +-3.862400000000000e-01 +-4.624600000000000e-01 +-4.762400000000000e-01 +-4.311900000000000e-01 +-3.486000000000000e-01 +-2.559700000000000e-01 +-1.760500000000000e-01 +-1.205200000000000e-01 +-8.935999999999999e-02 +-7.471700000000001e-02 +-6.659900000000001e-02 +-5.660700000000000e-02 +-3.740500000000000e-02 + 1.227600000000000e-03 + 7.521700000000001e-02 + 2.028200000000000e-01 + 3.939900000000000e-01 + 6.381100000000000e-01 + 8.991400000000001e-01 + 1.124500000000000e+00 + 1.264700000000000e+00 + 1.292700000000000e+00 + 1.211600000000000e+00 + 1.046100000000000e+00 + 8.259200000000000e-01 + 5.731900000000000e-01 + 3.012100000000000e-01 + 2.330700000000000e-02 +-2.394800000000000e-01 +-4.600700000000000e-01 +-6.164900000000000e-01 +-7.033600000000000e-01 +-7.342500000000000e-01 +-7.328500000000000e-01 +-7.203300000000000e-01 +-7.087200000000000e-01 +-7.040200000000000e-01 +-7.134800000000000e-01 +-7.474499999999999e-01 +-8.116700000000000e-01 +-8.956100000000000e-01 +-9.679900000000000e-01 +-9.867700000000000e-01 +-9.195400000000000e-01 +-7.617200000000000e-01 +-5.401500000000000e-01 +-2.997100000000000e-01 +-8.148600000000000e-02 + 9.412800000000000e-02 + 2.310200000000000e-01 + 3.488800000000000e-01 + 4.702600000000000e-01 + 6.107200000000000e-01 + 7.743600000000000e-01 + 9.531500000000001e-01 + 1.128000000000000e+00 + 1.272300000000000e+00 + 1.358400000000000e+00 + 1.367700000000000e+00 + 1.297500000000000e+00 + 1.162000000000000e+00 + 9.842200000000000e-01 + 7.859300000000000e-01 + 5.807500000000000e-01 + 3.749300000000000e-01 + 1.720900000000000e-01 +-2.418200000000000e-02 +-2.132300000000000e-01 +-4.019600000000000e-01 +-6.036300000000000e-01 +-8.269600000000000e-01 +-1.061300000000000e+00 +-1.269700000000000e+00 +-1.399500000000000e+00 +-1.407400000000000e+00 +-1.285700000000000e+00 +-1.070200000000000e+00 +-8.244500000000000e-01 +-6.086300000000000e-01 +-4.519000000000000e-01 +-3.457900000000000e-01 +-2.595900000000000e-01 +-1.651200000000000e-01 +-5.307400000000000e-02 + 6.840900000000000e-02 + 1.881500000000000e-01 + 3.053700000000000e-01 + 4.305700000000000e-01 + 5.733600000000000e-01 + 7.274500000000000e-01 + 8.654600000000000e-01 + 9.488700000000000e-01 + 9.476599999999999e-01 + 8.573800000000000e-01 + 7.032000000000000e-01 + 5.289199999999999e-01 + 3.776200000000000e-01 + 2.745500000000000e-01 + 2.204900000000000e-01 + 1.966600000000000e-01 + 1.768500000000000e-01 + 1.389900000000000e-01 + 7.093900000000000e-02 +-3.068300000000000e-02 +-1.650900000000000e-01 +-3.300100000000000e-01 +-5.191500000000000e-01 +-7.159000000000000e-01 +-8.889000000000000e-01 +-9.957500000000000e-01 +-9.967700000000000e-01 +-8.735800000000000e-01 +-6.421000000000000e-01 +-3.509200000000000e-01 +-6.353600000000000e-02 + 1.669600000000000e-01 + 3.171900000000000e-01 + 3.961700000000000e-01 + 4.313000000000000e-01 + 4.474100000000000e-01 + 4.526900000000000e-01 + 4.392000000000000e-01 + 3.956900000000000e-01 + 3.221000000000000e-01 + 2.351200000000000e-01 + 1.611300000000000e-01 + 1.221000000000000e-01 + 1.241700000000000e-01 + 1.557700000000000e-01 + 1.952100000000000e-01 + 2.212700000000000e-01 + 2.198500000000000e-01 + 1.841300000000000e-01 + 1.110200000000000e-01 +-1.011200000000000e-03 +-1.497700000000000e-01 +-3.248000000000000e-01 +-5.050900000000000e-01 +-6.625100000000000e-01 +-7.703400000000000e-01 +-8.121600000000000e-01 +-7.857499999999999e-01 +-7.001500000000001e-01 +-5.684900000000001e-01 +-4.022100000000000e-01 +-2.100000000000000e-01 +-1.176300000000000e-03 + 2.111500000000000e-01 + 4.112400000000000e-01 + 5.864300000000000e-01 + 7.328200000000000e-01 + 8.548700000000000e-01 + 9.570500000000000e-01 + 1.032200000000000e+00 + 1.055600000000000e+00 + 9.925300000000000e-01 + 8.173500000000000e-01 + 5.342000000000000e-01 + 1.859000000000000e-01 +-1.572500000000000e-01 +-4.243800000000000e-01 +-5.727000000000000e-01 +-6.022200000000000e-01 +-5.494300000000000e-01 +-4.654700000000000e-01 +-3.924900000000000e-01 +-3.511000000000000e-01 +-3.424200000000000e-01 +-3.587900000000000e-01 +-3.931200000000000e-01 +-4.407200000000000e-01 +-4.950800000000000e-01 +-5.438000000000000e-01 +-5.698100000000000e-01 +-5.578400000000000e-01 +-5.011800000000000e-01 +-4.037900000000000e-01 +-2.768600000000000e-01 +-1.330400000000000e-01 + 1.719800000000000e-02 + 1.652400000000000e-01 + 3.019500000000000e-01 + 4.167000000000000e-01 + 4.994100000000000e-01 + 5.443900000000000e-01 + 5.533700000000000e-01 + 5.359699999999999e-01 + 5.079000000000000e-01 + 4.883100000000000e-01 + 4.963300000000000e-01 + 5.460000000000000e-01 + 6.390800000000000e-01 + 7.583900000000000e-01 + 8.665400000000000e-01 + 9.142100000000000e-01 + 8.573900000000000e-01 + 6.765500000000000e-01 + 3.876600000000000e-01 + 3.829100000000000e-02 +-3.099900000000000e-01 +-6.042800000000000e-01 +-8.164600000000000e-01 +-9.462699999999999e-01 +-1.012300000000000e+00 +-1.038300000000000e+00 +-1.043400000000000e+00 +-1.039000000000000e+00 +-1.030900000000000e+00 +-1.021400000000000e+00 +-1.007700000000000e+00 +-9.789200000000000e-01 +-9.146600000000000e-01 +-7.902100000000000e-01 +-5.871100000000000e-01 +-3.046100000000000e-01 + 3.503800000000000e-02 + 3.914700000000000e-01 + 7.198700000000000e-01 + 9.865100000000000e-01 + 1.178000000000000e+00 + 1.299500000000000e+00 + 1.364200000000000e+00 + 1.381100000000000e+00 + 1.349800000000000e+00 + 1.263500000000000e+00 + 1.119500000000000e+00 + 9.263900000000000e-01 + 7.032000000000000e-01 + 4.712300000000000e-01 + 2.436500000000000e-01 + 2.156600000000000e-02 +-2.007500000000000e-01 +-4.253700000000000e-01 +-6.430500000000000e-01 +-8.338800000000000e-01 +-9.756000000000000e-01 +-1.053100000000000e+00 +-1.062700000000000e+00 +-1.010000000000000e+00 +-9.048000000000000e-01 +-7.597100000000000e-01 +-5.914100000000000e-01 +-4.222700000000000e-01 +-2.759900000000000e-01 +-1.675600000000000e-01 +-9.376600000000000e-02 +-3.295400000000000e-02 + 4.284500000000000e-02 + 1.495800000000000e-01 + 2.788300000000000e-01 + 4.004300000000000e-01 + 4.790500000000000e-01 + 4.935700000000000e-01 + 4.467300000000000e-01 + 3.599200000000000e-01 + 2.588100000000000e-01 + 1.611400000000000e-01 + 7.417200000000000e-02 + 6.329500000000000e-04 +-5.451400000000000e-02 +-8.288700000000000e-02 +-7.710400000000001e-02 +-3.534400000000000e-02 + 3.861800000000000e-02 + 1.388800000000000e-01 + 2.589600000000000e-01 + 3.877400000000000e-01 + 5.030300000000000e-01 + 5.710200000000000e-01 + 5.572800000000000e-01 + 4.458200000000000e-01 + 2.535700000000000e-01 + 2.827000000000000e-02 +-1.718300000000000e-01 +-3.049200000000000e-01 +-3.620700000000000e-01 +-3.634200000000000e-01 +-3.388900000000000e-01 +-3.083900000000000e-01 +-2.752000000000000e-01 +-2.342500000000000e-01 +-1.852700000000000e-01 +-1.386300000000000e-01 +-1.096300000000000e-01 +-1.081300000000000e-01 +-1.340000000000000e-01 +-1.820800000000000e-01 +-2.507300000000000e-01 +-3.435700000000000e-01 +-4.603300000000000e-01 +-5.838100000000001e-01 +-6.758300000000000e-01 +-6.894900000000000e-01 +-5.922200000000000e-01 +-3.846400000000000e-01 +-1.019300000000000e-01 + 2.031800000000000e-01 + 4.837300000000000e-01 + 7.131000000000000e-01 + 8.838300000000000e-01 + 9.965100000000000e-01 + 1.050400000000000e+00 + 1.043100000000000e+00 + 9.769900000000000e-01 + 8.633700000000000e-01 + 7.186500000000000e-01 + 5.558999999999999e-01 + 3.800300000000000e-01 + 1.919200000000000e-01 +-2.156800000000000e-03 +-1.857900000000000e-01 +-3.388800000000000e-01 +-4.515700000000000e-01 +-5.331800000000000e-01 +-6.060900000000000e-01 +-6.866000000000000e-01 +-7.671700000000000e-01 +-8.159700000000000e-01 +-7.975400000000000e-01 +-7.009700000000000e-01 +-5.544500000000000e-01 +-4.131600000000000e-01 +-3.266500000000000e-01 +-3.079600000000000e-01 +-3.258900000000000e-01 +-3.258900000000000e-01 +-2.645500000000000e-01 +-1.335700000000000e-01 + 4.167500000000000e-02 + 2.249400000000000e-01 + 3.938200000000000e-01 + 5.477000000000000e-01 + 6.947000000000000e-01 + 8.306300000000000e-01 + 9.290600000000000e-01 + 9.524500000000000e-01 + 8.772400000000000e-01 + 7.143000000000000e-01 + 5.084700000000000e-01 + 3.156900000000000e-01 + 1.724200000000000e-01 + 7.759700000000000e-02 +-8.561000000000000e-04 +-9.984700000000001e-02 +-2.330200000000000e-01 +-3.795000000000000e-01 +-4.964300000000000e-01 +-5.465200000000000e-01 +-5.222700000000000e-01 +-4.512400000000000e-01 +-3.797000000000000e-01 +-3.458200000000000e-01 +-3.592700000000000e-01 +-3.992400000000000e-01 +-4.299000000000000e-01 +-4.218200000000000e-01 +-3.655700000000000e-01 +-2.706800000000000e-01 +-1.539700000000000e-01 +-2.795100000000000e-02 + 1.021800000000000e-01 + 2.322100000000000e-01 + 3.506900000000000e-01 + 4.375100000000000e-01 + 4.721000000000000e-01 + 4.461100000000000e-01 + 3.711500000000000e-01 + 2.751600000000000e-01 + 1.892400000000000e-01 + 1.331600000000000e-01 + 1.082700000000000e-01 + 1.011400000000000e-01 + 9.386700000000001e-02 + 7.393400000000000e-02 + 3.822600000000000e-02 +-8.637199999999999e-03 +-5.799300000000000e-02 +-9.936100000000000e-02 +-1.209300000000000e-01 +-1.107200000000000e-01 +-6.044400000000000e-02 + 2.879300000000000e-02 + 1.425100000000000e-01 + 2.540900000000000e-01 + 3.318100000000000e-01 + 3.486400000000000e-01 + 2.905600000000000e-01 + 1.603200000000000e-01 +-2.372700000000000e-02 +-2.319900000000000e-01 +-4.294200000000000e-01 +-5.817700000000000e-01 +-6.621200000000000e-01 +-6.570600000000000e-01 +-5.710100000000000e-01 +-4.269500000000000e-01 +-2.622200000000000e-01 +-1.192800000000000e-01 +-3.339300000000000e-02 +-2.022000000000000e-02 +-6.805000000000000e-02 +-1.390200000000000e-01 +-1.814300000000000e-01 +-1.504300000000000e-01 +-2.876500000000000e-02 + 1.630500000000000e-01 + 3.741000000000000e-01 + 5.459800000000000e-01 + 6.398400000000000e-01 + 6.524200000000000e-01 + 6.121100000000000e-01 + 5.579800000000000e-01 + 5.154200000000000e-01 + 4.835200000000000e-01 + 4.408100000000000e-01 + 3.637800000000000e-01 + 2.444800000000000e-01 + 9.612000000000000e-02 +-5.505400000000000e-02 +-1.842000000000000e-01 +-2.784900000000000e-01 +-3.390600000000000e-01 +-3.762000000000000e-01 +-4.032500000000000e-01 +-4.323400000000000e-01 +-4.710200000000000e-01 +-5.180700000000000e-01 +-5.596600000000000e-01 +-5.708200000000000e-01 +-5.254700000000000e-01 +-4.122000000000000e-01 +-2.458700000000000e-01 +-6.504400000000000e-02 + 8.611400000000000e-02 + 1.813400000000000e-01 + 2.252300000000000e-01 + 2.461000000000000e-01 + 2.735700000000000e-01 + 3.169200000000000e-01 + 3.601900000000000e-01 + 3.768400000000000e-01 + 3.519500000000000e-01 + 2.940500000000000e-01 + 2.274900000000000e-01 + 1.719900000000000e-01 + 1.268700000000000e-01 + 7.326400000000000e-02 +-6.855500000000000e-03 +-1.103100000000000e-01 +-2.082500000000000e-01 +-2.626600000000000e-01 +-2.522100000000000e-01 +-1.883300000000000e-01 +-1.091900000000000e-01 +-5.563900000000000e-02 +-4.616800000000000e-02 +-6.793200000000001e-02 +-8.845500000000001e-02 +-7.814200000000000e-02 +-2.752900000000000e-02 + 5.081800000000000e-02 + 1.337700000000000e-01 + 2.019100000000000e-01 + 2.469500000000000e-01 + 2.698200000000000e-01 + 2.747400000000000e-01 + 2.650800000000000e-01 + 2.428700000000000e-01 + 2.090100000000000e-01 + 1.610400000000000e-01 + 8.993700000000000e-02 +-1.913100000000000e-02 +-1.781900000000000e-01 +-3.827200000000000e-01 +-6.017000000000000e-01 +-7.808000000000000e-01 +-8.605100000000000e-01 +-8.012200000000000e-01 +-6.013100000000000e-01 +-2.984200000000000e-01 + 4.625800000000000e-02 + 3.708100000000000e-01 + 6.299700000000000e-01 + 8.001400000000000e-01 + 8.742799999999999e-01 + 8.541800000000001e-01 + 7.471500000000000e-01 + 5.680500000000001e-01 + 3.422200000000000e-01 + 1.042400000000000e-01 +-1.092400000000000e-01 +-2.690500000000000e-01 +-3.606400000000000e-01 +-3.856300000000000e-01 +-3.585000000000000e-01 +-3.013500000000000e-01 +-2.390300000000000e-01 +-1.949000000000000e-01 +-1.860600000000000e-01 +-2.183100000000000e-01 +-2.828400000000000e-01 +-3.577100000000000e-01 +-4.149800000000000e-01 +-4.309300000000000e-01 +-3.942200000000000e-01 +-3.079800000000000e-01 +-1.853700000000000e-01 +-4.225900000000000e-02 + 1.080200000000000e-01 + 2.550500000000000e-01 + 3.881400000000000e-01 + 4.934900000000000e-01 + 5.553000000000000e-01 + 5.612700000000000e-01 + 5.096900000000000e-01 + 4.135800000000000e-01 + 2.990800000000000e-01 + 1.978400000000000e-01 + 1.363500000000000e-01 + 1.265100000000000e-01 + 1.613200000000000e-01 + 2.177500000000000e-01 + 2.657600000000000e-01 + 2.798400000000000e-01 + 2.476900000000000e-01 + 1.718500000000000e-01 + 6.375300000000000e-02 +-6.530800000000000e-02 +-2.097000000000000e-01 +-3.668700000000000e-01 +-5.282200000000000e-01 +-6.713100000000000e-01 +-7.617100000000000e-01 +-7.670500000000000e-01 +-6.764200000000000e-01 +-5.120500000000000e-01 +-3.235300000000000e-01 +-1.656200000000000e-01 +-7.208400000000000e-02 +-4.180300000000000e-02 +-4.554900000000000e-02 +-4.796900000000000e-02 +-2.937000000000000e-02 + 6.963600000000000e-03 + 4.485200000000000e-02 + 7.293300000000000e-02 + 9.575400000000001e-02 + 1.306600000000000e-01 + 1.946200000000000e-01 + 2.924700000000000e-01 + 4.149100000000000e-01 + 5.455600000000000e-01 + 6.682800000000000e-01 + 7.677200000000000e-01 + 8.242600000000000e-01 + 8.118400000000000e-01 + 7.062200000000000e-01 + 5.015300000000000e-01 + 2.232800000000000e-01 +-7.469700000000000e-02 +-3.312300000000000e-01 +-5.048700000000000e-01 +-5.892500000000001e-01 +-6.068900000000000e-01 +-5.871200000000000e-01 +-5.455000000000000e-01 +-4.796500000000000e-01 +-3.826000000000000e-01 +-2.604400000000000e-01 +-1.380900000000000e-01 +-4.754800000000000e-02 +-8.349799999999999e-03 +-1.619500000000000e-02 +-4.921100000000000e-02 +-8.622600000000000e-02 +-1.216200000000000e-01 +-1.644300000000000e-01 +-2.229600000000000e-01 +-2.882700000000000e-01 +-3.312300000000000e-01 +-3.166000000000000e-01 +-2.241000000000000e-01 +-6.134700000000000e-02 + 1.396600000000000e-01 + 3.383900000000000e-01 + 5.019700000000000e-01 + 6.122700000000000e-01 + 6.634500000000000e-01 + 6.568000000000001e-01 + 5.988599999999999e-01 + 5.026100000000000e-01 + 3.868300000000000e-01 + 2.700400000000000e-01 + 1.621900000000000e-01 + 6.134700000000000e-02 +-4.036000000000000e-02 +-1.455000000000000e-01 +-2.445600000000000e-01 +-3.205700000000000e-01 +-3.622300000000000e-01 +-3.741400000000000e-01 +-3.738800000000000e-01 +-3.763600000000000e-01 +-3.778200000000000e-01 +-3.538800000000000e-01 +-2.760200000000000e-01 +-1.357900000000000e-01 + 4.170400000000000e-02 + 2.065600000000000e-01 + 3.104600000000000e-01 + 3.328400000000000e-01 + 2.891500000000000e-01 + 2.167300000000000e-01 + 1.497400000000000e-01 + 1.006400000000000e-01 + 5.923100000000000e-02 + 6.167400000000000e-03 +-7.108399999999999e-02 +-1.708000000000000e-01 +-2.798900000000000e-01 +-3.810300000000000e-01 +-4.572100000000000e-01 +-4.922200000000000e-01 +-4.711900000000000e-01 +-3.847600000000000e-01 +-2.356500000000000e-01 +-4.195400000000000e-02 + 1.671300000000000e-01 + 3.615800000000000e-01 + 5.197400000000000e-01 + 6.304400000000000e-01 + 6.880200000000000e-01 + 6.867100000000000e-01 + 6.208600000000000e-01 + 4.916800000000000e-01 + 3.140600000000000e-01 + 1.158900000000000e-01 +-7.191699999999999e-02 +-2.282800000000000e-01 +-3.484100000000000e-01 +-4.391700000000000e-01 +-5.076200000000000e-01 +-5.518700000000000e-01 +-5.612800000000000e-01 +-5.245200000000000e-01 +-4.382600000000000e-01 +-3.093600000000000e-01 +-1.502000000000000e-01 + 2.730500000000000e-02 + 2.130700000000000e-01 + 3.949500000000000e-01 + 5.548300000000000e-01 + 6.705700000000000e-01 + 7.240300000000000e-01 + 7.095200000000000e-01 + 6.354900000000000e-01 + 5.176100000000000e-01 + 3.687900000000000e-01 + 1.942700000000000e-01 +-4.120100000000000e-03 +-2.186400000000000e-01 +-4.296900000000000e-01 +-6.093200000000000e-01 +-7.325700000000001e-01 +-7.887600000000000e-01 +-7.848700000000000e-01 +-7.391400000000000e-01 +-6.697900000000000e-01 +-5.861499999999999e-01 +-4.866400000000000e-01 +-3.630300000000000e-01 +-2.075200000000000e-01 +-1.971300000000000e-02 + 1.880100000000000e-01 + 3.881500000000000e-01 + 5.414700000000000e-01 + 6.085000000000000e-01 + 5.674600000000000e-01 + 4.304400000000000e-01 + 2.469900000000000e-01 + 8.857100000000000e-02 + 1.853700000000000e-02 + 6.257200000000000e-02 + 1.965900000000000e-01 + 3.597700000000000e-01 + 4.854800000000000e-01 + 5.324800000000000e-01 + 4.992900000000000e-01 + 4.160400000000000e-01 + 3.216600000000000e-01 + 2.412800000000000e-01 + 1.763100000000000e-01 + 1.097700000000000e-01 + 2.086800000000000e-02 +-1.006000000000000e-01 +-2.472300000000000e-01 +-3.963000000000000e-01 +-5.189500000000000e-01 +-5.915899999999999e-01 +-6.045000000000000e-01 +-5.635500000000000e-01 +-4.845300000000000e-01 +-3.830600000000000e-01 +-2.670800000000000e-01 +-1.374200000000000e-01 + 3.054400000000000e-03 + 1.389500000000000e-01 + 2.402200000000000e-01 + 2.736400000000000e-01 + 2.224800000000000e-01 + 1.010800000000000e-01 +-4.784700000000000e-02 +-1.741000000000000e-01 +-2.464100000000000e-01 +-2.664900000000000e-01 +-2.608400000000000e-01 +-2.564300000000000e-01 +-2.583200000000000e-01 +-2.460400000000000e-01 +-1.910200000000000e-01 +-8.154599999999999e-02 + 6.448400000000000e-02 + 2.089500000000000e-01 + 3.183200000000000e-01 + 3.851300000000000e-01 + 4.299700000000000e-01 + 4.825100000000000e-01 + 5.555900000000000e-01 + 6.313900000000000e-01 + 6.694900000000000e-01 + 6.314200000000000e-01 + 5.050000000000000e-01 + 3.131100000000000e-01 + 1.025500000000000e-01 +-7.874399999999999e-02 +-2.018800000000000e-01 +-2.640500000000000e-01 +-2.813600000000000e-01 +-2.745400000000000e-01 +-2.575100000000000e-01 +-2.347700000000000e-01 +-2.072400000000000e-01 +-1.807700000000000e-01 +-1.697300000000000e-01 +-1.919600000000000e-01 +-2.570200000000000e-01 +-3.553900000000000e-01 +-4.570900000000000e-01 +-5.235700000000000e-01 +-5.275500000000000e-01 +-4.690200000000000e-01 +-3.757400000000000e-01 +-2.857600000000000e-01 +-2.217000000000000e-01 +-1.738000000000000e-01 +-1.042200000000000e-01 + 2.854600000000000e-02 + 2.402100000000000e-01 + 5.055100000000000e-01 + 7.670700000000000e-01 + 9.623300000000000e-01 + 1.050900000000000e+00 + 1.026500000000000e+00 + 9.090400000000000e-01 + 7.268500000000000e-01 + 5.024700000000000e-01 + 2.499300000000000e-01 +-1.925000000000000e-02 +-2.898300000000000e-01 +-5.423000000000000e-01 +-7.564300000000000e-01 +-9.137100000000000e-01 +-9.963300000000000e-01 +-9.867000000000000e-01 +-8.731900000000000e-01 +-6.621899999999999e-01 +-3.878600000000000e-01 +-1.081500000000000e-01 + 1.167000000000000e-01 + 2.523900000000000e-01 + 3.067700000000000e-01 + 3.207200000000000e-01 + 3.379300000000000e-01 + 3.742300000000000e-01 + 4.088900000000000e-01 + 4.044300000000000e-01 + 3.399600000000000e-01 + 2.322100000000000e-01 + 1.274100000000000e-01 + 6.971800000000000e-02 + 7.008100000000000e-02 + 9.953200000000000e-02 + 1.121600000000000e-01 + 8.042199999999999e-02 + 1.619700000000000e-02 +-3.769900000000000e-02 +-3.871100000000000e-02 + 2.479300000000000e-02 + 1.248300000000000e-01 + 2.114300000000000e-01 + 2.421300000000000e-01 + 2.028300000000000e-01 + 1.083700000000000e-01 +-1.281400000000000e-02 +-1.360400000000000e-01 +-2.482200000000000e-01 +-3.451200000000000e-01 +-4.250600000000000e-01 +-4.861900000000000e-01 +-5.282000000000000e-01 +-5.535900000000000e-01 +-5.647799999999999e-01 +-5.587299999999999e-01 +-5.249900000000000e-01 +-4.510100000000000e-01 +-3.315300000000000e-01 +-1.741800000000000e-01 + 4.371700000000000e-03 + 1.890700000000000e-01 + 3.745900000000000e-01 + 5.625200000000000e-01 + 7.487500000000000e-01 + 9.117800000000000e-01 + 1.014000000000000e+00 + 1.018800000000000e+00 + 9.130100000000000e-01 + 7.182600000000000e-01 + 4.813900000000000e-01 + 2.492600000000000e-01 + 4.508200000000000e-02 +-1.370900000000000e-01 +-3.167200000000000e-01 +-5.022400000000000e-01 +-6.763800000000000e-01 +-8.018900000000000e-01 +-8.427000000000000e-01 +-7.846000000000000e-01 +-6.411900000000000e-01 +-4.430400000000000e-01 +-2.212300000000000e-01 + 1.536400000000000e-03 + 2.069500000000000e-01 + 3.716700000000000e-01 + 4.652100000000000e-01 + 4.613200000000000e-01 + 3.566600000000000e-01 + 1.817400000000000e-01 +-7.242400000000000e-03 +-1.538300000000000e-01 +-2.285400000000000e-01 +-2.402100000000000e-01 +-2.238100000000000e-01 +-2.134700000000000e-01 +-2.195300000000000e-01 +-2.247800000000000e-01 +-2.009400000000000e-01 +-1.322600000000000e-01 +-2.871900000000000e-02 + 7.993500000000001e-02 + 1.638400000000000e-01 + 2.114100000000000e-01 + 2.336000000000000e-01 + 2.523700000000000e-01 + 2.831000000000000e-01 + 3.239900000000000e-01 + 3.589200000000000e-01 + 3.698200000000000e-01 + 3.481500000000000e-01 + 2.975600000000000e-01 + 2.277900000000000e-01 + 1.468500000000000e-01 + 5.897700000000000e-02 +-3.074600000000000e-02 +-1.105200000000000e-01 +-1.623500000000000e-01 +-1.710600000000000e-01 +-1.363700000000000e-01 +-7.853100000000000e-02 +-3.155500000000000e-02 +-2.663000000000000e-02 +-7.559000000000000e-02 +-1.649100000000000e-01 +-2.639200000000000e-01 +-3.418400000000000e-01 +-3.827700000000000e-01 +-3.898600000000000e-01 +-3.776600000000000e-01 +-3.589400000000000e-01 +-3.352900000000000e-01 +-2.973500000000000e-01 +-2.335100000000000e-01 +-1.407400000000000e-01 +-3.016500000000000e-02 + 7.631900000000000e-02 + 1.563900000000000e-01 + 1.987200000000000e-01 + 2.088400000000000e-01 + 2.059500000000000e-01 + 2.121700000000000e-01 + 2.397700000000000e-01 + 2.834500000000000e-01 + 3.223900000000000e-01 + 3.317100000000000e-01 + 2.975400000000000e-01 + 2.277100000000000e-01 + 1.514200000000000e-01 + 1.074400000000000e-01 + 1.260100000000000e-01 + 2.135200000000000e-01 + 3.471200000000000e-01 + 4.815500000000000e-01 + 5.648000000000000e-01 + 5.555200000000000e-01 + 4.359700000000000e-01 + 2.165200000000000e-01 +-6.828900000000000e-02 +-3.702600000000000e-01 +-6.408800000000000e-01 +-8.434199999999999e-01 +-9.598700000000000e-01 +-9.904500000000001e-01 +-9.469100000000000e-01 +-8.437800000000000e-01 +-6.929600000000000e-01 +-5.044700000000000e-01 +-2.913100000000000e-01 +-7.275600000000000e-02 + 1.287300000000000e-01 + 2.966800000000000e-01 + 4.294400000000000e-01 + 5.407300000000000e-01 + 6.489500000000000e-01 + 7.607400000000000e-01 + 8.597500000000000e-01 + 9.098800000000000e-01 + 8.726300000000000e-01 + 7.288000000000000e-01 + 4.908800000000000e-01 + 1.986400000000000e-01 +-9.871600000000000e-02 +-3.619600000000000e-01 +-5.715000000000000e-01 +-7.238400000000000e-01 +-8.208600000000000e-01 +-8.619100000000000e-01 +-8.441100000000000e-01 +-7.687300000000000e-01 +-6.462500000000000e-01 +-4.943000000000000e-01 +-3.295600000000000e-01 +-1.599400000000000e-01 + 1.640100000000000e-02 + 2.041100000000000e-01 + 4.008200000000000e-01 + 5.919100000000000e-01 + 7.534800000000000e-01 + 8.614600000000000e-01 + 9.009100000000000e-01 + 8.704100000000000e-01 + 7.803900000000000e-01 + 6.479400000000000e-01 + 4.915700000000000e-01 + 3.272900000000000e-01 + 1.660600000000000e-01 + 1.231400000000000e-02 +-1.355600000000000e-01 +-2.817500000000000e-01 +-4.271200000000000e-01 +-5.642800000000000e-01 +-6.775400000000000e-01 +-7.491700000000000e-01 +-7.687200000000000e-01 +-7.391300000000000e-01 +-6.749500000000000e-01 +-5.931200000000000e-01 +-5.025300000000000e-01 +-3.994900000000000e-01 +-2.724400000000000e-01 +-1.126800000000000e-01 + 7.634900000000000e-02 + 2.771000000000000e-01 + 4.642100000000000e-01 + 6.142100000000000e-01 + 7.124800000000000e-01 + 7.542800000000000e-01 + 7.411100000000000e-01 + 6.767100000000000e-01 + 5.657700000000000e-01 + 4.155300000000000e-01 + 2.378200000000000e-01 + 4.916600000000000e-02 +-1.316000000000000e-01 +-2.868700000000000e-01 +-4.031900000000000e-01 +-4.731200000000000e-01 +-4.963100000000000e-01 +-4.798800000000000e-01 +-4.372400000000000e-01 +-3.841700000000000e-01 +-3.327300000000000e-01 +-2.856200000000000e-01 +-2.350300000000000e-01 +-1.679500000000000e-01 +-7.577399999999999e-02 + 3.738200000000000e-02 + 1.534700000000000e-01 + 2.481900000000000e-01 + 3.034300000000000e-01 + 3.170800000000000e-01 + 3.037100000000000e-01 + 2.858100000000000e-01 + 2.807800000000000e-01 + 2.918900000000000e-01 + 3.084100000000000e-01 + 3.140900000000000e-01 + 2.979000000000000e-01 + 2.598300000000000e-01 + 2.088000000000000e-01 + 1.550500000000000e-01 + 1.031300000000000e-01 + 5.051300000000000e-02 +-7.975200000000000e-03 +-7.383300000000000e-02 +-1.421500000000000e-01 +-2.045500000000000e-01 +-2.551400000000000e-01 +-2.944800000000000e-01 +-3.279600000000000e-01 +-3.598400000000000e-01 +-3.879800000000000e-01 +-4.039200000000000e-01 +-3.984700000000000e-01 +-3.684300000000000e-01 +-3.185200000000000e-01 +-2.566900000000000e-01 +-1.869200000000000e-01 +-1.063000000000000e-01 +-1.017100000000000e-02 + 9.794899999999999e-02 + 2.002100000000000e-01 + 2.691100000000000e-01 + 2.819000000000000e-01 + 2.353500000000000e-01 + 1.496200000000000e-01 + 5.720200000000000e-02 +-1.583900000000000e-02 +-6.262800000000000e-02 +-9.275700000000001e-02 +-1.164700000000000e-01 +-1.289100000000000e-01 +-1.080900000000000e-01 +-2.968200000000000e-02 + 1.120600000000000e-01 + 2.937300000000000e-01 + 4.716800000000000e-01 + 6.048400000000000e-01 + 6.747300000000001e-01 + 6.885200000000000e-01 + 6.640600000000000e-01 + 6.104100000000000e-01 + 5.202400000000000e-01 + 3.804100000000000e-01 + 1.913300000000000e-01 +-2.192200000000000e-02 +-2.175900000000000e-01 +-3.597600000000000e-01 +-4.386700000000000e-01 +-4.737900000000000e-01 +-4.975800000000000e-01 +-5.329199999999999e-01 +-5.805300000000000e-01 +-6.240100000000000e-01 +-6.453800000000000e-01 +-6.369400000000000e-01 +-6.007000000000000e-01 +-5.387400000000000e-01 +-4.467400000000000e-01 +-3.188400000000000e-01 +-1.609100000000000e-01 + 9.358300000000000e-04 + 1.271900000000000e-01 + 1.860000000000000e-01 + 1.741000000000000e-01 + 1.217300000000000e-01 + 7.644200000000000e-02 + 7.632500000000000e-02 + 1.306900000000000e-01 + 2.201000000000000e-01 + 3.130700000000000e-01 + 3.855800000000000e-01 + 4.301200000000000e-01 + 4.514300000000000e-01 + 4.568900000000000e-01 + 4.512900000000000e-01 + 4.387700000000000e-01 + 4.261900000000000e-01 + 4.208600000000000e-01 + 4.223400000000000e-01 + 4.164800000000000e-01 + 3.801400000000000e-01 + 2.967200000000000e-01 + 1.716400000000000e-01 + 3.450600000000000e-02 +-7.663100000000000e-02 +-1.390300000000000e-01 +-1.596900000000000e-01 +-1.694400000000000e-01 +-2.008800000000000e-01 +-2.671500000000000e-01 +-3.570100000000000e-01 +-4.485100000000000e-01 +-5.281700000000000e-01 +-5.991800000000000e-01 +-6.720400000000000e-01 +-7.468600000000000e-01 +-8.039500000000001e-01 +-8.121500000000000e-01 +-7.490100000000000e-01 +-6.165500000000000e-01 +-4.396300000000000e-01 +-2.484600000000000e-01 +-5.992000000000000e-02 + 1.270400000000000e-01 + 3.191800000000000e-01 + 5.117600000000000e-01 + 6.825100000000000e-01 + 8.031000000000000e-01 + 8.587399999999999e-01 + 8.589900000000000e-01 + 8.295400000000001e-01 + 7.906600000000000e-01 + 7.398600000000000e-01 + 6.532900000000000e-01 + 5.057000000000000e-01 + 2.937100000000000e-01 + 4.410200000000000e-02 +-1.989200000000000e-01 +-3.974800000000000e-01 +-5.365799999999999e-01 +-6.219300000000000e-01 +-6.634400000000000e-01 +-6.597700000000000e-01 +-5.975100000000000e-01 +-4.657700000000000e-01 +-2.731300000000000e-01 +-5.212600000000000e-02 + 1.540400000000000e-01 + 3.131200000000000e-01 + 4.177500000000000e-01 + 4.817100000000000e-01 + 5.219400000000000e-01 + 5.408800000000000e-01 + 5.227100000000000e-01 + 4.462200000000000e-01 + 3.042800000000000e-01 + 1.147000000000000e-01 +-8.607200000000000e-02 +-2.626300000000000e-01 +-4.002400000000000e-01 +-5.108200000000001e-01 +-6.208100000000000e-01 +-7.486400000000000e-01 +-8.858100000000000e-01 +-9.943000000000000e-01 +-1.022600000000000e+00 +-9.321300000000000e-01 +-7.196600000000000e-01 +-4.225500000000000e-01 +-1.040900000000000e-01 + 1.738200000000000e-01 + 3.758800000000000e-01 + 5.033000000000000e-01 + 5.840900000000000e-01 + 6.505400000000000e-01 + 7.182900000000000e-01 + 7.789600000000000e-01 + 8.097400000000000e-01 + 7.918900000000000e-01 + 7.253400000000000e-01 + 6.299700000000000e-01 + 5.337400000000000e-01 + 4.567300000000000e-01 + 4.017900000000000e-01 + 3.568900000000000e-01 + 3.058300000000000e-01 + 2.386400000000000e-01 + 1.552100000000000e-01 + 6.130400000000000e-02 +-3.786900000000000e-02 +-1.409800000000000e-01 +-2.489800000000000e-01 +-3.612000000000000e-01 +-4.733000000000000e-01 +-5.787200000000000e-01 +-6.717900000000000e-01 +-7.492799999999999e-01 +-8.089300000000000e-01 +-8.465800000000000e-01 +-8.551000000000000e-01 +-8.265400000000001e-01 +-7.560800000000000e-01 +-6.450200000000000e-01 +-5.007800000000000e-01 +-3.347300000000000e-01 +-1.598200000000000e-01 + 1.070700000000000e-02 + 1.641800000000000e-01 + 2.906900000000000e-01 + 3.865500000000000e-01 + 4.567700000000000e-01 + 5.133900000000000e-01 + 5.688900000000000e-01 + 6.281500000000000e-01 + 6.844700000000000e-01 + 7.231500000000000e-01 + 7.311700000000000e-01 + 7.064000000000000e-01 + 6.598100000000000e-01 + 6.087700000000000e-01 + 5.655900000000000e-01 + 5.290000000000000e-01 + 4.838500000000000e-01 + 4.089600000000000e-01 + 2.880600000000000e-01 + 1.178200000000000e-01 +-9.014100000000000e-02 +-3.124800000000000e-01 +-5.201100000000000e-01 +-6.848800000000000e-01 +-7.865400000000000e-01 +-8.189700000000000e-01 +-7.934099999999999e-01 +-7.354500000000000e-01 +-6.747800000000000e-01 +-6.313800000000001e-01 +-6.056600000000000e-01 +-5.791600000000000e-01 +-5.266900000000000e-01 +-4.332000000000000e-01 +-3.046600000000000e-01 +-1.656200000000000e-01 +-4.460700000000000e-02 + 4.340000000000000e-02 + 1.061100000000000e-01 + 1.686800000000000e-01 + 2.574500000000000e-01 + 3.829000000000000e-01 + 5.318200000000000e-01 + 6.729800000000000e-01 + 7.720500000000000e-01 + 8.072300000000000e-01 + 7.777400000000000e-01 + 7.021700000000000e-01 + 6.090900000000000e-01 + 5.249600000000000e-01 + 4.644200000000000e-01 + 4.259400000000000e-01 + 3.938500000000000e-01 + 3.457200000000000e-01 + 2.624300000000000e-01 + 1.370500000000000e-01 +-2.197700000000000e-02 +-1.950400000000000e-01 +-3.613000000000000e-01 +-5.085900000000000e-01 +-6.370800000000000e-01 +-7.541099999999999e-01 +-8.636200000000001e-01 +-9.575900000000001e-01 +-1.016500000000000e+00 +-1.019500000000000e+00 +-9.574300000000000e-01 +-8.401800000000000e-01 +-6.918100000000000e-01 +-5.362300000000000e-01 +-3.831200000000000e-01 +-2.239900000000000e-01 +-4.206600000000000e-02 + 1.705600000000000e-01 + 4.004200000000000e-01 + 6.141600000000000e-01 + 7.743900000000000e-01 + 8.601400000000000e-01 + 8.791500000000000e-01 + 8.638300000000000e-01 + 8.534900000000000e-01 + 8.733100000000000e-01 + 9.221300000000000e-01 + 9.746000000000000e-01 + 9.949800000000000e-01 + 9.533000000000000e-01 + 8.358700000000000e-01 + 6.466100000000000e-01 + 4.018400000000000e-01 + 1.235200000000000e-01 +-1.653500000000000e-01 +-4.425700000000000e-01 +-6.876600000000000e-01 +-8.834300000000000e-01 +-1.018800000000000e+00 +-1.091300000000000e+00 +-1.108500000000000e+00 +-1.085900000000000e+00 +-1.043100000000000e+00 +-9.968900000000001e-01 +-9.549800000000001e-01 +-9.115600000000000e-01 +-8.482000000000000e-01 +-7.409700000000000e-01 +-5.718600000000000e-01 +-3.394400000000000e-01 +-6.299900000000000e-02 + 2.228400000000000e-01 + 4.808200000000000e-01 + 6.846800000000000e-01 + 8.266000000000000e-01 + 9.151300000000000e-01 + 9.660000000000000e-01 + 9.916900000000000e-01 + 9.955500000000000e-01 + 9.726300000000000e-01 + 9.150000000000000e-01 + 8.177300000000000e-01 + 6.822100000000000e-01 + 5.163200000000000e-01 + 3.325200000000000e-01 + 1.454700000000000e-01 +-2.971200000000000e-02 +-1.786500000000000e-01 +-2.884200000000000e-01 +-3.485800000000000e-01 +-3.530600000000000e-01 +-3.034700000000000e-01 +-2.127100000000000e-01 +-1.063700000000000e-01 +-1.882000000000000e-02 + 1.693000000000000e-02 +-1.802800000000000e-02 +-1.199900000000000e-01 +-2.645300000000000e-01 +-4.190900000000000e-01 +-5.589499999999999e-01 +-6.762100000000000e-01 +-7.755100000000000e-01 +-8.598800000000000e-01 +-9.180199999999999e-01 +-9.239300000000000e-01 +-8.509200000000000e-01 +-6.905700000000000e-01 +-4.625700000000000e-01 +-2.073400000000000e-01 + 3.403500000000000e-02 + 2.388400000000000e-01 + 4.082300000000000e-01 + 5.569700000000000e-01 + 6.971000000000001e-01 + 8.281200000000000e-01 + 9.394600000000000e-01 + 1.020100000000000e+00 + 1.065000000000000e+00 + 1.072300000000000e+00 + 1.036100000000000e+00 + 9.428299999999999e-01 + 7.789300000000000e-01 + 5.444099999999999e-01 + 2.608600000000000e-01 +-3.415100000000000e-02 +-3.039600000000000e-01 +-5.282000000000000e-01 +-7.047300000000000e-01 +-8.369900000000000e-01 +-9.186500000000000e-01 +-9.300600000000000e-01 +-8.514000000000000e-01 +-6.824800000000000e-01 +-4.522600000000000e-01 +-2.082200000000000e-01 + 7.724000000000000e-03 + 1.789200000000000e-01 + 3.139900000000000e-01 + 4.278000000000000e-01 + 5.192300000000000e-01 + 5.645300000000000e-01 + 5.321300000000000e-01 + 4.072300000000000e-01 + 2.067800000000000e-01 +-2.708900000000000e-02 +-2.495900000000000e-01 +-4.344400000000000e-01 +-5.785100000000000e-01 +-6.891900000000000e-01 +-7.673900000000000e-01 +-8.010000000000000e-01 +-7.733300000000000e-01 +-6.776400000000000e-01 +-5.247200000000000e-01 +-3.372400000000000e-01 +-1.372500000000000e-01 + 6.214000000000000e-02 + 2.545200000000000e-01 + 4.320800000000000e-01 + 5.817300000000000e-01 + 6.910400000000000e-01 + 7.586200000000000e-01 + 7.980699999999999e-01 + 8.287400000000000e-01 + 8.591800000000001e-01 + 8.772000000000000e-01 + 8.566700000000000e-01 + 7.778900000000000e-01 + 6.454600000000000e-01 + 4.882100000000000e-01 + 3.393200000000000e-01 + 2.111900000000000e-01 + 8.559500000000000e-02 +-7.172600000000000e-02 +-2.815400000000000e-01 +-5.287500000000001e-01 +-7.646500000000001e-01 +-9.331199999999999e-01 +-1.002600000000000e+00 +-9.816400000000000e-01 +-9.092000000000000e-01 +-8.278600000000000e-01 +-7.602800000000000e-01 +-7.032100000000000e-01 +-6.390100000000000e-01 +-5.526900000000000e-01 +-4.408600000000000e-01 +-3.085000000000000e-01 +-1.603600000000000e-01 + 3.256800000000000e-03 + 1.822200000000000e-01 + 3.684200000000000e-01 + 5.423400000000000e-01 + 6.787400000000000e-01 + 7.581300000000000e-01 + 7.760200000000000e-01 + 7.440099999999999e-01 + 6.829600000000000e-01 + 6.140500000000000e-01 + 5.528300000000000e-01 + 5.077600000000000e-01 + 4.803800000000000e-01 + 4.643500000000000e-01 + 4.439200000000000e-01 + 3.951100000000000e-01 + 2.925200000000000e-01 + 1.205200000000000e-01 +-1.165500000000000e-01 +-3.912700000000000e-01 +-6.595200000000000e-01 +-8.738899999999999e-01 +-9.978900000000001e-01 +-1.015300000000000e+00 +-9.317000000000000e-01 +-7.696499999999999e-01 +-5.592800000000000e-01 +-3.291300000000000e-01 +-9.982099999999999e-02 + 1.171200000000000e-01 + 3.153300000000000e-01 + 4.871200000000000e-01 + 6.190600000000001e-01 + 6.931700000000000e-01 + 6.941800000000000e-01 + 6.185400000000000e-01 + 4.790100000000000e-01 + 3.012300000000000e-01 + 1.139100000000000e-01 +-6.091800000000000e-02 +-2.113900000000000e-01 +-3.317900000000000e-01 +-4.155700000000000e-01 +-4.524200000000000e-01 +-4.326800000000000e-01 +-3.563100000000000e-01 +-2.390700000000000e-01 +-1.100500000000000e-01 +-8.794900000000000e-04 + 6.701799999999999e-02 + 8.959499999999999e-02 + 7.819300000000000e-02 + 5.126400000000000e-02 + 2.595500000000000e-02 + 1.414100000000000e-02 + 2.283400000000000e-02 + 5.548300000000000e-02 + 1.111800000000000e-01 + 1.822600000000000e-01 + 2.536800000000000e-01 + 3.068300000000000e-01 + 3.266900000000000e-01 + 3.078200000000000e-01 + 2.548500000000000e-01 + 1.770900000000000e-01 + 8.172300000000000e-02 +-2.876100000000000e-02 +-1.524800000000000e-01 +-2.807900000000000e-01 +-3.942300000000000e-01 +-4.665000000000000e-01 +-4.754400000000000e-01 +-4.143100000000000e-01 +-2.960100000000000e-01 +-1.472700000000000e-01 + 3.489700000000000e-03 + 1.366500000000000e-01 + 2.444200000000000e-01 + 3.258300000000000e-01 + 3.787000000000000e-01 + 3.953700000000000e-01 + 3.651800000000000e-01 + 2.815300000000000e-01 + 1.482800000000000e-01 +-1.887000000000000e-02 +-1.961900000000000e-01 +-3.575400000000000e-01 +-4.784400000000000e-01 +-5.377700000000000e-01 +-5.196100000000000e-01 +-4.175800000000000e-01 +-2.410100000000000e-01 +-1.840900000000000e-02 + 2.069700000000000e-01 + 3.904100000000000e-01 + 5.022600000000000e-01 + 5.384200000000000e-01 + 5.175999999999999e-01 + 4.666200000000000e-01 + 4.031300000000000e-01 + 3.275000000000000e-01 + 2.295100000000000e-01 + 1.047600000000000e-01 +-3.218300000000000e-02 +-1.491900000000000e-01 +-2.138700000000000e-01 +-2.157400000000000e-01 +-1.773500000000000e-01 +-1.446500000000000e-01 +-1.607900000000000e-01 +-2.393100000000000e-01 +-3.544300000000000e-01 +-4.553200000000000e-01 +-4.960400000000000e-01 +-4.623700000000000e-01 +-3.791700000000000e-01 +-2.941400000000000e-01 +-2.489800000000000e-01 +-2.556300000000000e-01 +-2.909300000000000e-01 +-3.108900000000000e-01 +-2.741600000000000e-01 +-1.609200000000000e-01 + 2.156700000000000e-02 + 2.461000000000000e-01 + 4.781600000000000e-01 + 6.862900000000000e-01 + 8.470500000000000e-01 + 9.459400000000000e-01 + 9.773100000000000e-01 + 9.444700000000000e-01 + 8.583100000000000e-01 + 7.331000000000000e-01 + 5.802200000000000e-01 + 4.040200000000000e-01 + 2.036500000000000e-01 +-1.879300000000000e-02 +-2.490600000000000e-01 +-4.577600000000000e-01 +-6.082400000000000e-01 +-6.726300000000000e-01 +-6.474299999999999e-01 +-5.585800000000000e-01 +-4.520400000000000e-01 +-3.744400000000000e-01 +-3.542400000000000e-01 +-3.930900000000000e-01 +-4.700600000000000e-01 +-5.538700000000000e-01 +-6.145699999999999e-01 +-6.295600000000000e-01 +-5.846600000000000e-01 +-4.749300000000000e-01 +-3.083600000000000e-01 +-1.100100000000000e-01 + 7.933900000000001e-02 + 2.146500000000000e-01 + 2.655200000000000e-01 + 2.326900000000000e-01 + 1.516100000000000e-01 + 7.886799999999999e-02 + 6.783599999999999e-02 + 1.466500000000000e-01 + 3.095500000000000e-01 + 5.241800000000000e-01 + 7.475700000000000e-01 + 9.406900000000000e-01 + 1.074900000000000e+00 + 1.131900000000000e+00 + 1.101700000000000e+00 + 9.846900000000000e-01 + 7.945300000000000e-01 + 5.579200000000000e-01 + 3.080400000000000e-01 + 7.324700000000001e-02 +-1.320700000000000e-01 +-3.086600000000000e-01 +-4.649900000000000e-01 +-6.067500000000000e-01 +-7.305800000000000e-01 +-8.256400000000000e-01 +-8.808000000000000e-01 +-8.918900000000000e-01 +-8.644800000000000e-01 +-8.118100000000000e-01 +-7.503000000000000e-01 +-6.950400000000000e-01 +-6.559600000000000e-01 +-6.342700000000000e-01 +-6.199100000000000e-01 +-5.926300000000000e-01 +-5.284600000000000e-01 +-4.101800000000000e-01 +-2.360400000000000e-01 +-2.098800000000000e-02 + 2.111400000000000e-01 + 4.393300000000000e-01 + 6.528200000000000e-01 + 8.492200000000000e-01 + 1.025700000000000e+00 + 1.171500000000000e+00 + 1.267800000000000e+00 + 1.295700000000000e+00 + 1.245900000000000e+00 + 1.120900000000000e+00 + 9.306200000000000e-01 + 6.849800000000000e-01 + 3.932200000000000e-01 + 7.053500000000000e-02 +-2.535000000000000e-01 +-5.349300000000000e-01 +-7.283400000000000e-01 +-8.070800000000000e-01 +-7.775200000000000e-01 +-6.772300000000000e-01 +-5.567400000000000e-01 +-4.562600000000000e-01 +-3.909700000000000e-01 +-3.519900000000000e-01 +-3.194300000000000e-01 +-2.773500000000000e-01 +-2.221100000000000e-01 +-1.625100000000000e-01 +-1.150200000000000e-01 +-9.788700000000000e-02 +-1.248100000000000e-01 +-1.974900000000000e-01 +-2.989700000000000e-01 +-3.933600000000000e-01 +-4.365400000000000e-01 +-3.958700000000000e-01 +-2.681900000000000e-01 +-8.326000000000000e-02 + 1.120500000000000e-01 + 2.801600000000000e-01 + 4.119500000000000e-01 + 5.249100000000000e-01 + 6.416800000000000e-01 + 7.648600000000000e-01 + 8.678800000000000e-01 + 9.093300000000000e-01 + 8.607800000000000e-01 + 7.277100000000000e-01 + 5.482900000000001e-01 + 3.712100000000000e-01 + 2.287400000000000e-01 + 1.230500000000000e-01 + 3.292100000000000e-02 +-6.727400000000000e-02 +-1.914600000000000e-01 +-3.384700000000000e-01 +-4.994600000000000e-01 +-6.661400000000000e-01 +-8.314400000000000e-01 +-9.832800000000000e-01 +-1.099300000000000e+00 +-1.149800000000000e+00 +-1.110000000000000e+00 +-9.725900000000000e-01 +-7.533900000000000e-01 +-4.857500000000000e-01 +-2.080300000000000e-01 + 4.840300000000000e-02 + 2.656800000000000e-01 + 4.400900000000000e-01 + 5.796500000000000e-01 + 7.002800000000000e-01 + 8.200700000000000e-01 + 9.510900000000000e-01 + 1.090900000000000e+00 + 1.218600000000000e+00 + 1.299400000000000e+00 + 1.297000000000000e+00 + 1.188900000000000e+00 + 9.744500000000000e-01 + 6.745600000000000e-01 + 3.227900000000000e-01 +-4.468100000000000e-02 +-3.956000000000000e-01 +-7.035900000000000e-01 +-9.482400000000000e-01 +-1.116000000000000e+00 +-1.202200000000000e+00 +-1.211700000000000e+00 +-1.157400000000000e+00 +-1.055400000000000e+00 +-9.216900000000000e-01 +-7.697400000000000e-01 +-6.107399999999999e-01 +-4.532900000000000e-01 +-3.022700000000000e-01 +-1.580200000000000e-01 +-1.776100000000000e-02 + 1.206600000000000e-01 + 2.553600000000000e-01 + 3.807000000000000e-01 + 4.915400000000000e-01 + 5.878100000000001e-01 + 6.740200000000000e-01 + 7.526000000000000e-01 + 8.156200000000000e-01 + 8.430100000000000e-01 + 8.113700000000000e-01 + 7.093600000000000e-01 + 5.489800000000000e-01 + 3.635200000000000e-01 + 1.916700000000000e-01 + 5.772000000000000e-02 +-3.931800000000000e-02 +-1.207300000000000e-01 +-2.114400000000000e-01 +-3.231700000000000e-01 +-4.475400000000000e-01 +-5.612800000000000e-01 +-6.376500000000001e-01 +-6.563600000000001e-01 +-6.084000000000001e-01 +-4.970000000000000e-01 +-3.374300000000000e-01 +-1.557500000000000e-01 + 1.628700000000000e-02 + 1.510000000000000e-01 + 2.356800000000000e-01 + 2.776100000000000e-01 + 2.985600000000000e-01 + 3.211000000000000e-01 + 3.556000000000000e-01 + 3.960400000000000e-01 + 4.260100000000000e-01 + 4.287200000000000e-01 + 3.926500000000000e-01 + 3.106000000000000e-01 + 1.768900000000000e-01 +-1.029100000000000e-02 +-2.403900000000000e-01 +-4.829400000000000e-01 +-6.906300000000000e-01 +-8.159700000000000e-01 +-8.328200000000000e-01 +-7.490900000000000e-01 +-6.012500000000000e-01 +-4.348500000000000e-01 +-2.843200000000000e-01 +-1.645000000000000e-01 +-7.521300000000000e-02 +-9.976700000000000e-03 + 4.107800000000000e-02 + 9.487900000000000e-02 + 1.767000000000000e-01 + 3.100700000000000e-01 + 4.974300000000000e-01 + 7.060800000000000e-01 + 8.751100000000001e-01 + 9.451900000000000e-01 + 8.938300000000000e-01 + 7.508300000000000e-01 + 5.801700000000000e-01 + 4.386900000000000e-01 + 3.404700000000000e-01 + 2.525200000000000e-01 + 1.250800000000000e-01 +-6.603400000000000e-02 +-2.961300000000000e-01 +-5.038000000000000e-01 +-6.284400000000000e-01 +-6.454800000000001e-01 +-5.758900000000000e-01 +-4.673700000000000e-01 +-3.649700000000000e-01 +-2.930100000000000e-01 +-2.568500000000000e-01 +-2.555000000000000e-01 +-2.891400000000000e-01 +-3.543200000000000e-01 +-4.336600000000000e-01 +-4.941300000000000e-01 +-5.004100000000000e-01 +-4.352800000000000e-01 +-3.108900000000000e-01 +-1.604500000000000e-01 +-1.546600000000000e-02 + 1.143500000000000e-01 + 2.430000000000000e-01 + 3.906200000000000e-01 + 5.604200000000000e-01 + 7.281000000000000e-01 + 8.519300000000000e-01 + 8.959900000000000e-01 + 8.499100000000001e-01 + 7.324700000000000e-01 + 5.786500000000000e-01 + 4.208200000000000e-01 + 2.766400000000000e-01 + 1.488700000000000e-01 + 3.321500000000000e-02 +-7.375700000000000e-02 +-1.720600000000000e-01 +-2.605600000000000e-01 +-3.401500000000000e-01 +-4.142100000000000e-01 +-4.864700000000000e-01 +-5.580300000000000e-01 +-6.258500000000000e-01 +-6.830900000000000e-01 +-7.205800000000000e-01 +-7.287300000000000e-01 +-6.994400000000000e-01 +-6.275700000000000e-01 +-5.115600000000000e-01 +-3.530500000000000e-01 +-1.566200000000000e-01 + 6.885200000000000e-02 + 3.074100000000000e-01 + 5.342400000000000e-01 + 7.190600000000000e-01 + 8.357100000000000e-01 + 8.740599999999999e-01 + 8.460500000000000e-01 + 7.797300000000000e-01 + 7.029600000000000e-01 + 6.268600000000000e-01 + 5.410300000000000e-01 + 4.250700000000000e-01 + 2.685200000000000e-01 + 8.444500000000001e-02 +-9.476700000000000e-02 +-2.370100000000000e-01 +-3.311600000000000e-01 +-3.927200000000000e-01 +-4.495400000000000e-01 +-5.180900000000001e-01 +-5.886500000000000e-01 +-6.310600000000000e-01 +-6.171200000000000e-01 +-5.427800000000000e-01 +-4.332900000000000e-01 +-3.275100000000000e-01 +-2.529500000000000e-01 +-2.098400000000000e-01 +-1.749900000000000e-01 +-1.214500000000000e-01 +-3.915100000000000e-02 + 5.816600000000000e-02 + 1.431600000000000e-01 + 1.937700000000000e-01 + 2.071200000000000e-01 + 1.997800000000000e-01 + 1.957900000000000e-01 + 2.117200000000000e-01 + 2.482500000000000e-01 + 2.925900000000000e-01 + 3.283000000000000e-01 + 3.455100000000000e-01 + 3.453000000000000e-01 + 3.362000000000000e-01 + 3.262200000000000e-01 + 3.158000000000000e-01 + 2.968300000000000e-01 + 2.587000000000000e-01 + 1.973800000000000e-01 + 1.208400000000000e-01 + 4.596000000000000e-02 +-1.250800000000000e-02 +-5.332600000000000e-02 +-9.167599999999999e-02 +-1.495200000000000e-01 +-2.388500000000000e-01 +-3.497100000000000e-01 +-4.529300000000000e-01 +-5.171200000000000e-01 +-5.281300000000000e-01 +-4.964500000000000e-01 +-4.463300000000000e-01 +-3.947300000000000e-01 +-3.369100000000000e-01 +-2.511000000000000e-01 +-1.196600000000000e-01 + 4.958000000000000e-02 + 2.192300000000000e-01 + 3.406300000000000e-01 + 3.817800000000000e-01 + 3.450100000000000e-01 + 2.617300000000000e-01 + 1.698000000000000e-01 + 9.161700000000000e-02 + 2.936000000000000e-02 +-2.147900000000000e-02 +-5.465400000000000e-02 +-4.934500000000000e-02 + 1.458300000000000e-02 + 1.339800000000000e-01 + 2.721700000000000e-01 + 3.723400000000000e-01 + 3.880600000000000e-01 + 3.101100000000000e-01 + 1.712000000000000e-01 + 2.540400000000000e-02 +-8.298500000000000e-02 +-1.399700000000000e-01 +-1.598400000000000e-01 +-1.654400000000000e-01 +-1.673800000000000e-01 +-1.575900000000000e-01 +-1.204200000000000e-01 +-5.118100000000000e-02 + 3.232000000000000e-02 + 9.422500000000000e-02 + 9.836000000000000e-02 + 2.840600000000000e-02 +-1.013100000000000e-01 +-2.501200000000000e-01 +-3.679700000000000e-01 +-4.164500000000000e-01 +-3.840700000000000e-01 +-2.889500000000000e-01 +-1.678000000000000e-01 +-5.681300000000000e-02 + 2.593400000000000e-02 + 8.697100000000001e-02 + 1.493000000000000e-01 + 2.345200000000000e-01 + 3.463800000000000e-01 + 4.663100000000000e-01 + 5.634200000000000e-01 + 6.119200000000000e-01 + 6.034200000000000e-01 + 5.460900000000000e-01 + 4.522900000000000e-01 + 3.252900000000000e-01 + 1.564600000000000e-01 +-6.403700000000000e-02 +-3.303600000000000e-01 +-6.107100000000000e-01 +-8.524500000000000e-01 +-1.001100000000000e+00 +-1.022300000000000e+00 +-9.157300000000000e-01 +-7.124900000000000e-01 +-4.617700000000000e-01 +-2.128400000000000e-01 +-1.838200000000000e-03 + 1.536500000000000e-01 + 2.530500000000000e-01 + 3.074400000000000e-01 + 3.329600000000000e-01 + 3.444500000000000e-01 + 3.507000000000000e-01 + 3.527300000000000e-01 + 3.461700000000000e-01 + 3.266300000000000e-01 + 2.952600000000000e-01 + 2.610500000000000e-01 + 2.384200000000000e-01 + 2.412700000000000e-01 + 2.767700000000000e-01 + 3.419100000000000e-01 + 4.240200000000000e-01 + 5.044300000000000e-01 + 5.632600000000000e-01 + 5.835700000000000e-01 + 5.535300000000000e-01 + 4.667700000000000e-01 + 3.213100000000000e-01 + 1.189700000000000e-01 +-1.334400000000000e-01 +-4.209400000000000e-01 +-7.175800000000000e-01 +-9.875900000000000e-01 +-1.192900000000000e+00 +-1.305400000000000e+00 +-1.317700000000000e+00 +-1.245900000000000e+00 +-1.120800000000000e+00 +-9.721200000000000e-01 +-8.157900000000000e-01 +-6.504200000000000e-01 +-4.654700000000000e-01 +-2.533500000000000e-01 +-1.658900000000000e-02 + 2.346300000000000e-01 + 4.905600000000000e-01 + 7.472299999999999e-01 + 1.003300000000000e+00 + 1.250200000000000e+00 + 1.464500000000000e+00 + 1.610200000000000e+00 + 1.651800000000000e+00 + 1.570200000000000e+00 + 1.372400000000000e+00 + 1.087600000000000e+00 + 7.554400000000000e-01 + 4.130900000000000e-01 + 8.856000000000000e-02 +-1.993500000000000e-01 +-4.388900000000000e-01 +-6.251900000000000e-01 +-7.615499999999999e-01 +-8.586600000000000e-01 +-9.289900000000000e-01 +-9.786600000000000e-01 +-1.002900000000000e+00 +-9.892400000000000e-01 +-9.272500000000000e-01 +-8.173700000000000e-01 +-6.723500000000000e-01 +-5.105400000000000e-01 +-3.470600000000000e-01 +-1.904400000000000e-01 +-4.719200000000000e-02 + 7.112400000000001e-02 + 1.464800000000000e-01 + 1.624500000000000e-01 + 1.169500000000000e-01 + 2.960600000000000e-02 +-6.310600000000000e-02 +-1.230800000000000e-01 +-1.260100000000000e-01 +-6.714000000000001e-02 + 4.487900000000000e-02 + 1.988700000000000e-01 + 3.864700000000000e-01 + 5.973900000000000e-01 + 8.099300000000000e-01 + 9.872200000000000e-01 + 1.086400000000000e+00 + 1.077600000000000e+00 + 9.605399999999999e-01 + 7.670700000000000e-01 + 5.462500000000000e-01 + 3.401600000000000e-01 + 1.655100000000000e-01 + 1.203800000000000e-02 +-1.422400000000000e-01 +-3.095100000000000e-01 +-4.788400000000000e-01 +-6.199100000000000e-01 +-7.014899999999999e-01 +-7.130700000000000e-01 +-6.752800000000000e-01 +-6.312100000000000e-01 +-6.222900000000000e-01 +-6.622200000000000e-01 +-7.249800000000000e-01 +-7.557000000000000e-01 +-7.001200000000000e-01 +-5.360800000000000e-01 +-2.886400000000000e-01 +-1.883500000000000e-02 + 2.075700000000000e-01 + 3.526200000000000e-01 + 4.205300000000000e-01 + 4.462800000000000e-01 + 4.678000000000000e-01 + 5.012200000000000e-01 + 5.351500000000000e-01 + 5.452800000000000e-01 + 5.163500000000000e-01 + 4.542700000000000e-01 + 3.803000000000000e-01 + 3.138700000000000e-01 + 2.589200000000000e-01 + 2.048100000000000e-01 + 1.400400000000000e-01 + 6.631500000000000e-02 + 3.989500000000000e-04 +-3.833400000000000e-02 +-4.434600000000000e-02 +-3.265900000000000e-02 +-2.995400000000000e-02 +-5.706700000000000e-02 +-1.168800000000000e-01 +-1.969600000000000e-01 +-2.837300000000000e-01 +-3.753500000000000e-01 +-4.813200000000000e-01 +-6.085800000000000e-01 +-7.453900000000000e-01 +-8.577100000000000e-01 +-9.029500000000000e-01 +-8.526400000000000e-01 +-7.077599999999999e-01 +-4.957700000000000e-01 +-2.518300000000000e-01 + 1.375100000000000e-03 + 2.606900000000000e-01 + 5.324000000000000e-01 + 8.146200000000000e-01 + 1.086900000000000e+00 + 1.315500000000000e+00 + 1.470000000000000e+00 + 1.538200000000000e+00 + 1.527600000000000e+00 + 1.453300000000000e+00 + 1.322800000000000e+00 + 1.130300000000000e+00 + 8.635900000000000e-01 + 5.194900000000000e-01 + 1.135300000000000e-01 +-3.225600000000000e-01 +-7.531000000000000e-01 +-1.150100000000000e+00 +-1.495500000000000e+00 +-1.773700000000000e+00 +-1.964200000000000e+00 +-2.043300000000000e+00 +-1.997300000000000e+00 +-1.836800000000000e+00 +-1.599400000000000e+00 +-1.335000000000000e+00 +-1.080400000000000e+00 +-8.403600000000000e-01 +-5.892700000000000e-01 +-2.930900000000000e-01 + 6.223800000000000e-02 + 4.559500000000000e-01 + 8.411500000000000e-01 + 1.170700000000000e+00 + 1.421900000000000e+00 + 1.602900000000000e+00 + 1.738400000000000e+00 + 1.846300000000000e+00 + 1.922300000000000e+00 + 1.944200000000000e+00 + 1.888100000000000e+00 + 1.745600000000000e+00 + 1.527500000000000e+00 + 1.253800000000000e+00 + 9.408600000000000e-01 + 5.952499999999999e-01 + 2.192300000000000e-01 +-1.788600000000000e-01 +-5.794000000000000e-01 +-9.559299999999999e-01 +-1.285100000000000e+00 +-1.553100000000000e+00 +-1.753700000000000e+00 +-1.881500000000000e+00 +-1.927900000000000e+00 +-1.885300000000000e+00 +-1.756700000000000e+00 +-1.560600000000000e+00 +-1.325300000000000e+00 +-1.075400000000000e+00 +-8.201600000000000e-01 +-5.539100000000000e-01 +-2.699400000000000e-01 + 2.405100000000000e-02 + 3.012700000000000e-01 + 5.276200000000000e-01 + 6.823200000000000e-01 + 7.721700000000000e-01 + 8.284500000000000e-01 + 8.878600000000000e-01 + 9.704600000000000e-01 + 1.068900000000000e+00 + 1.155100000000000e+00 + 1.196800000000000e+00 + 1.174800000000000e+00 + 1.088500000000000e+00 + 9.524500000000000e-01 + 7.883800000000000e-01 + 6.184300000000000e-01 + 4.609100000000000e-01 + 3.265500000000000e-01 + 2.146300000000000e-01 + 1.119400000000000e-01 +-1.440200000000000e-03 +-1.397600000000000e-01 +-2.995700000000000e-01 +-4.572400000000000e-01 +-5.804900000000000e-01 +-6.479700000000000e-01 +-6.642200000000000e-01 +-6.589500000000000e-01 +-6.701000000000000e-01 +-7.214200000000000e-01 +-8.091300000000000e-01 +-9.054300000000000e-01 +-9.749800000000000e-01 +-9.922700000000000e-01 +-9.491000000000001e-01 +-8.500700000000000e-01 +-7.026400000000000e-01 +-5.108700000000000e-01 +-2.771300000000000e-01 +-8.568500000000000e-03 + 2.781000000000000e-01 + 5.580300000000000e-01 + 8.047500000000000e-01 + 9.970000000000000e-01 + 1.121900000000000e+00 + 1.173600000000000e+00 + 1.151200000000000e+00 + 1.057300000000000e+00 + 8.999100000000000e-01 + 6.937600000000000e-01 + 4.608000000000000e-01 + 2.270900000000000e-01 + 1.801200000000000e-02 +-1.467400000000000e-01 +-2.566200000000000e-01 +-3.112000000000000e-01 +-3.186500000000000e-01 +-2.924100000000000e-01 +-2.477200000000000e-01 +-1.994500000000000e-01 +-1.616900000000000e-01 +-1.473800000000000e-01 +-1.656000000000000e-01 +-2.156800000000000e-01 +-2.813100000000000e-01 +-3.309700000000000e-01 +-3.288500000000000e-01 +-2.539000000000000e-01 +-1.166000000000000e-01 + 3.896700000000000e-02 + 1.529200000000000e-01 + 1.793000000000000e-01 + 1.102800000000000e-01 +-2.092700000000000e-02 +-1.606400000000000e-01 +-2.650500000000000e-01 +-3.202500000000000e-01 +-3.395900000000000e-01 +-3.433000000000000e-01 +-3.378900000000000e-01 +-3.118400000000000e-01 +-2.495900000000000e-01 +-1.508900000000000e-01 +-3.767800000000000e-02 + 5.848200000000000e-02 + 1.190200000000000e-01 + 1.526500000000000e-01 + 1.888800000000000e-01 + 2.547500000000000e-01 + 3.523000000000000e-01 + 4.541700000000000e-01 + 5.209200000000000e-01 + 5.275100000000000e-01 + 4.797200000000000e-01 + 4.094600000000000e-01 + 3.533900000000000e-01 + 3.306700000000000e-01 + 3.342100000000000e-01 + 3.391400000000000e-01 + 3.199900000000000e-01 + 2.642300000000000e-01 + 1.751500000000000e-01 + 6.578700000000000e-02 +-4.918000000000000e-02 +-1.579200000000000e-01 +-2.517100000000000e-01 +-3.240300000000000e-01 +-3.713500000000000e-01 +-3.953500000000000e-01 +-4.042700000000000e-01 +-4.112600000000000e-01 +-4.296900000000000e-01 +-4.673600000000000e-01 +-5.219400000000000e-01 +-5.792900000000000e-01 +-6.161900000000000e-01 +-6.076900000000000e-01 +-5.378100000000000e-01 +-4.089700000000000e-01 +-2.444100000000000e-01 +-7.999500000000000e-02 + 5.207800000000000e-02 + 1.386000000000000e-01 + 1.896700000000000e-01 + 2.286600000000000e-01 + 2.743000000000000e-01 + 3.279700000000000e-01 + 3.755000000000000e-01 + 4.018500000000000e-01 + 4.067100000000000e-01 + 4.077300000000000e-01 + 4.280000000000000e-01 + 4.772400000000000e-01 + 5.416800000000001e-01 + 5.912600000000000e-01 + 5.990400000000000e-01 + 5.581100000000000e-01 + 4.832900000000000e-01 + 3.972000000000000e-01 + 3.123600000000000e-01 + 2.234000000000000e-01 + 1.145100000000000e-01 +-2.480800000000000e-02 +-1.884600000000000e-01 +-3.547300000000000e-01 +-4.969300000000000e-01 +-5.948200000000000e-01 +-6.397800000000000e-01 +-6.337800000000000e-01 +-5.870900000000000e-01 +-5.174900000000000e-01 +-4.483300000000000e-01 +-4.007000000000000e-01 +-3.804000000000000e-01 +-3.686200000000000e-01 +-3.275200000000000e-01 +-2.230700000000000e-01 +-5.297400000000000e-02 + 1.409600000000000e-01 + 2.893200000000000e-01 + 3.339400000000000e-01 + 2.647800000000000e-01 + 1.283600000000000e-01 +-4.461300000000000e-05 +-6.291700000000000e-02 +-5.438300000000000e-02 +-1.832000000000000e-02 +-1.291400000000000e-02 +-6.712500000000000e-02 +-1.590700000000000e-01 +-2.296700000000000e-01 +-2.201100000000000e-01 +-1.066500000000000e-01 + 8.855200000000001e-02 + 3.137200000000000e-01 + 5.159200000000000e-01 + 6.623500000000000e-01 + 7.444700000000000e-01 + 7.687100000000000e-01 + 7.450500000000000e-01 + 6.817600000000000e-01 + 5.868100000000001e-01 + 4.703900000000000e-01 + 3.443500000000000e-01 + 2.185300000000000e-01 + 9.793200000000001e-02 +-1.696500000000000e-02 +-1.274100000000000e-01 +-2.344000000000000e-01 +-3.390100000000000e-01 +-4.437900000000000e-01 +-5.520800000000000e-01 +-6.647100000000000e-01 +-7.761600000000000e-01 +-8.740200000000000e-01 +-9.429900000000000e-01 +-9.709600000000000e-01 +-9.527000000000000e-01 +-8.888900000000000e-01 +-7.818200000000000e-01 +-6.320100000000000e-01 +-4.387900000000000e-01 +-2.042800000000000e-01 + 6.216500000000000e-02 + 3.425600000000000e-01 + 6.124400000000000e-01 + 8.454800000000000e-01 + 1.018700000000000e+00 + 1.117300000000000e+00 + 1.138600000000000e+00 + 1.093500000000000e+00 + 1.003400000000000e+00 + 8.922600000000001e-01 + 7.764300000000000e-01 + 6.590700000000000e-01 + 5.326400000000000e-01 + 3.885400000000000e-01 + 2.267300000000000e-01 + 5.742200000000000e-02 +-1.070100000000000e-01 +-2.630800000000000e-01 +-4.199700000000000e-01 +-5.905100000000000e-01 +-7.750300000000000e-01 +-9.509200000000000e-01 +-1.078400000000000e+00 +-1.121000000000000e+00 +-1.068100000000000e+00 +-9.426300000000000e-01 +-7.886200000000000e-01 +-6.462400000000000e-01 +-5.314900000000000e-01 +-4.330800000000000e-01 +-3.261000000000000e-01 +-1.902200000000000e-01 +-1.947700000000000e-02 + 1.807100000000000e-01 + 4.022200000000000e-01 + 6.382600000000000e-01 + 8.785500000000001e-01 + 1.101500000000000e+00 + 1.273000000000000e+00 + 1.357300000000000e+00 + 1.332700000000000e+00 + 1.203600000000000e+00 + 9.967400000000000e-01 + 7.478300000000000e-01 + 4.849600000000000e-01 + 2.216900000000000e-01 +-3.863100000000000e-02 +-2.931900000000000e-01 +-5.333800000000000e-01 +-7.459200000000000e-01 +-9.183200000000000e-01 +-1.042400000000000e+00 +-1.112600000000000e+00 +-1.122000000000000e+00 +-1.061300000000000e+00 +-9.245000000000000e-01 +-7.175800000000000e-01 +-4.637000000000000e-01 +-2.001200000000000e-01 + 3.279900000000000e-02 + 2.049400000000000e-01 + 3.052400000000000e-01 + 3.424400000000000e-01 + 3.386300000000000e-01 + 3.192900000000000e-01 + 3.039400000000000e-01 + 3.008300000000000e-01 + 3.074000000000000e-01 + 3.162800000000000e-01 + 3.235200000000000e-01 + 3.336000000000000e-01 + 3.565500000000000e-01 + 3.973200000000000e-01 + 4.447600000000000e-01 + 4.698200000000000e-01 + 4.382200000000000e-01 + 3.319600000000000e-01 + 1.652300000000000e-01 +-1.858600000000000e-02 +-1.699100000000000e-01 +-2.620300000000000e-01 +-3.059000000000000e-01 +-3.390500000000000e-01 +-3.954100000000000e-01 +-4.775000000000000e-01 +-5.513800000000000e-01 +-5.685200000000000e-01 +-4.990900000000000e-01 +-3.529500000000000e-01 +-1.742800000000000e-01 +-1.521600000000000e-02 + 9.186100000000000e-02 + 1.449600000000000e-01 + 1.624200000000000e-01 + 1.637900000000000e-01 + 1.577100000000000e-01 + 1.438500000000000e-01 + 1.230500000000000e-01 + 1.040700000000000e-01 + 1.002400000000000e-01 + 1.201000000000000e-01 + 1.612700000000000e-01 + 2.128200000000000e-01 + 2.627400000000000e-01 + 3.023300000000000e-01 + 3.234900000000000e-01 + 3.135300000000000e-01 + 2.564300000000000e-01 + 1.439800000000000e-01 +-1.018200000000000e-02 +-1.671200000000000e-01 +-2.771900000000000e-01 +-3.065200000000000e-01 +-2.579800000000000e-01 +-1.708700000000000e-01 +-9.803800000000000e-02 +-7.526200000000000e-02 +-1.031300000000000e-01 +-1.521700000000000e-01 +-1.851500000000000e-01 +-1.795200000000000e-01 +-1.358100000000000e-01 +-7.015900000000000e-02 +-9.547400000000000e-04 + 5.916700000000000e-02 + 1.024600000000000e-01 + 1.219500000000000e-01 + 1.113800000000000e-01 + 7.039800000000000e-02 + 9.137100000000000e-03 +-5.447300000000000e-02 +-1.046100000000000e-01 +-1.370900000000000e-01 +-1.600500000000000e-01 +-1.845900000000000e-01 +-2.130800000000000e-01 +-2.353300000000000e-01 +-2.361300000000000e-01 +-2.074800000000000e-01 +-1.547100000000000e-01 +-9.092799999999999e-02 +-2.490500000000000e-02 + 4.634200000000000e-02 + 1.330700000000000e-01 + 2.398800000000000e-01 + 3.558600000000000e-01 + 4.573000000000000e-01 + 5.219100000000000e-01 + 5.433400000000000e-01 + 5.341700000000000e-01 + 5.146400000000000e-01 + 4.961300000000000e-01 + 4.723200000000000e-01 + 4.244100000000000e-01 + 3.356600000000000e-01 + 2.038400000000000e-01 + 4.337600000000000e-02 +-1.221200000000000e-01 +-2.695800000000000e-01 +-3.817400000000000e-01 +-4.476200000000000e-01 +-4.625100000000000e-01 +-4.307100000000000e-01 +-3.686000000000000e-01 +-3.023700000000000e-01 +-2.583000000000000e-01 +-2.503400000000000e-01 +-2.743700000000000e-01 +-3.142900000000000e-01 +-3.554800000000000e-01 +-3.942100000000000e-01 +-4.344200000000000e-01 +-4.744100000000000e-01 +-4.958600000000000e-01 +-4.675200000000000e-01 +-3.642000000000000e-01 +-1.881200000000000e-01 + 2.447000000000000e-02 + 2.186400000000000e-01 + 3.491000000000000e-01 + 4.024900000000000e-01 + 3.990700000000000e-01 + 3.746500000000000e-01 + 3.569700000000000e-01 + 3.528800000000000e-01 + 3.521100000000000e-01 + 3.405200000000000e-01 + 3.107800000000000e-01 + 2.641500000000000e-01 + 2.066100000000000e-01 + 1.464200000000000e-01 + 9.600000000000000e-02 + 7.327100000000000e-02 + 9.610500000000000e-02 + 1.700700000000000e-01 + 2.783600000000000e-01 + 3.847000000000000e-01 + 4.508400000000000e-01 + 4.579600000000000e-01 + 4.158200000000000e-01 + 3.516800000000000e-01 + 2.873200000000000e-01 + 2.221200000000000e-01 + 1.365300000000000e-01 + 1.277500000000000e-02 +-1.442300000000000e-01 +-3.042700000000000e-01 +-4.307100000000000e-01 +-5.063700000000000e-01 +-5.456400000000000e-01 +-5.830200000000000e-01 +-6.469600000000000e-01 +-7.392900000000000e-01 +-8.348900000000000e-01 +-8.992700000000000e-01 +-9.080600000000000e-01 +-8.535700000000001e-01 +-7.369300000000000e-01 +-5.583700000000000e-01 +-3.189000000000000e-01 +-3.382600000000000e-02 + 2.554500000000000e-01 + 4.876200000000000e-01 + 6.082600000000000e-01 + 6.015900000000000e-01 + 5.039100000000000e-01 + 3.864100000000000e-01 + 3.167400000000000e-01 + 3.243200000000000e-01 + 3.918100000000000e-01 + 4.757700000000000e-01 + 5.391300000000000e-01 + 5.717800000000000e-01 + 5.869400000000000e-01 + 6.001700000000000e-01 + 6.099500000000000e-01 + 5.948700000000000e-01 + 5.281400000000001e-01 + 3.970700000000000e-01 + 2.133900000000000e-01 + 8.543500000000001e-03 +-1.807800000000000e-01 +-3.270200000000000e-01 +-4.191700000000000e-01 +-4.625800000000000e-01 +-4.737900000000000e-01 +-4.731500000000000e-01 +-4.760200000000000e-01 +-4.847700000000000e-01 +-4.856700000000000e-01 +-4.548000000000000e-01 +-3.724900000000000e-01 +-2.387300000000000e-01 +-7.916200000000000e-02 + 6.403600000000000e-02 + 1.520000000000000e-01 + 1.675800000000000e-01 + 1.210600000000000e-01 + 4.116300000000000e-02 +-4.095500000000000e-02 +-1.035900000000000e-01 +-1.372100000000000e-01 +-1.411000000000000e-01 +-1.206900000000000e-01 +-8.802500000000001e-02 +-6.141500000000000e-02 +-5.876700000000000e-02 +-8.521800000000000e-02 +-1.240000000000000e-01 +-1.408900000000000e-01 +-1.036900000000000e-01 +-5.296500000000000e-03 + 1.269500000000000e-01 + 2.449400000000000e-01 + 3.086400000000000e-01 + 3.100900000000000e-01 + 2.749200000000000e-01 + 2.409100000000000e-01 + 2.307600000000000e-01 + 2.400700000000000e-01 + 2.490100000000000e-01 + 2.461100000000000e-01 + 2.428400000000000e-01 + 2.653700000000000e-01 + 3.296900000000000e-01 + 4.203300000000000e-01 + 4.911200000000000e-01 + 4.889600000000000e-01 + 3.839400000000000e-01 + 1.849400000000000e-01 +-6.845000000000000e-02 +-3.284300000000000e-01 +-5.587000000000000e-01 +-7.396500000000000e-01 +-8.618000000000000e-01 +-9.190300000000000e-01 +-9.098700000000000e-01 +-8.438000000000000e-01 +-7.423000000000000e-01 +-6.286400000000000e-01 +-5.120900000000000e-01 +-3.806700000000000e-01 +-2.115800000000000e-01 + 5.752700000000000e-03 + 2.518600000000000e-01 + 4.803700000000000e-01 + 6.427800000000000e-01 + 7.179100000000000e-01 + 7.242100000000000e-01 + 7.051700000000000e-01 + 6.984700000000000e-01 + 7.108900000000000e-01 + 7.166400000000001e-01 + 6.784100000000000e-01 + 5.746300000000000e-01 + 4.138000000000000e-01 + 2.282800000000000e-01 + 5.505200000000000e-02 +-8.194700000000001e-02 +-1.781100000000000e-01 +-2.437900000000000e-01 +-2.963100000000000e-01 +-3.537500000000000e-01 +-4.303400000000000e-01 +-5.308900000000000e-01 +-6.448500000000000e-01 +-7.454700000000000e-01 +-7.988700000000000e-01 +-7.806100000000000e-01 +-6.894100000000000e-01 +-5.471200000000001e-01 +-3.833800000000000e-01 +-2.160200000000000e-01 +-4.269100000000000e-02 + 1.488200000000000e-01 + 3.597000000000000e-01 + 5.665600000000000e-01 + 7.280400000000000e-01 + 8.084500000000000e-01 + 8.006000000000000e-01 + 7.293300000000000e-01 + 6.324200000000000e-01 + 5.332000000000000e-01 + 4.263300000000000e-01 + 2.875800000000000e-01 + 9.940100000000000e-02 +-1.284300000000000e-01 +-3.589900000000000e-01 +-5.484300000000000e-01 +-6.695300000000000e-01 +-7.205300000000000e-01 +-7.147500000000000e-01 +-6.620900000000000e-01 +-5.599300000000000e-01 +-4.012400000000000e-01 +-1.923200000000000e-01 + 3.649200000000000e-02 + 2.381700000000000e-01 + 3.711900000000000e-01 + 4.213300000000000e-01 + 4.080400000000000e-01 + 3.718900000000000e-01 + 3.521800000000000e-01 + 3.688600000000000e-01 + 4.171300000000000e-01 + 4.738600000000000e-01 + 5.089800000000000e-01 + 4.961100000000000e-01 + 4.207600000000000e-01 + 2.861600000000000e-01 + 1.152100000000000e-01 +-5.529200000000000e-02 +-1.891600000000000e-01 +-2.683300000000000e-01 +-3.026200000000000e-01 +-3.230300000000000e-01 +-3.610700000000000e-01 +-4.268700000000000e-01 +-5.021099999999999e-01 +-5.534200000000000e-01 +-5.572800000000000e-01 +-5.179300000000000e-01 +-4.647500000000000e-01 +-4.307200000000000e-01 +-4.276300000000000e-01 +-4.363200000000000e-01 +-4.184000000000000e-01 +-3.405500000000000e-01 +-1.942000000000000e-01 + 1.492100000000000e-03 + 2.119400000000000e-01 + 4.030800000000000e-01 + 5.498499999999999e-01 + 6.352600000000000e-01 + 6.474500000000000e-01 + 5.826600000000000e-01 + 4.544100000000000e-01 + 2.997800000000000e-01 + 1.727800000000000e-01 + 1.232000000000000e-01 + 1.718000000000000e-01 + 2.976100000000000e-01 + 4.476000000000000e-01 + 5.638600000000000e-01 + 6.122500000000000e-01 + 5.947700000000000e-01 + 5.392200000000000e-01 + 4.741900000000000e-01 + 4.067400000000000e-01 + 3.174400000000000e-01 + 1.753300000000000e-01 +-3.738900000000000e-02 +-3.073000000000000e-01 +-5.899500000000000e-01 +-8.286900000000000e-01 +-9.810400000000000e-01 +-1.037300000000000e+00 +-1.020900000000000e+00 +-9.707400000000000e-01 +-9.165400000000000e-01 +-8.623700000000000e-01 +-7.875799999999999e-01 +-6.639000000000000e-01 +-4.773600000000000e-01 +-2.406000000000000e-01 + 1.143600000000000e-02 + 2.386900000000000e-01 + 4.139200000000000e-01 + 5.301000000000000e-01 + 5.949300000000000e-01 + 6.194600000000000e-01 + 6.111500000000000e-01 + 5.758900000000000e-01 + 5.244900000000000e-01 + 4.745400000000000e-01 + 4.427700000000000e-01 + 4.325900000000000e-01 + 4.277400000000000e-01 + 3.997900000000000e-01 + 3.262800000000000e-01 + 2.068500000000000e-01 + 6.481500000000000e-02 +-6.730600000000000e-02 +-1.672600000000000e-01 +-2.322100000000000e-01 +-2.710800000000000e-01 +-2.879400000000000e-01 +-2.723800000000000e-01 +-2.069300000000000e-01 +-8.649999999999999e-02 + 6.710199999999999e-02 + 2.099900000000000e-01 + 2.995900000000000e-01 + 3.196100000000000e-01 + 2.867800000000000e-01 + 2.334500000000000e-01 + 1.797200000000000e-01 + 1.181500000000000e-01 + 2.445700000000000e-02 +-1.139500000000000e-01 +-2.753800000000000e-01 +-4.081100000000000e-01 +-4.614900000000000e-01 +-4.220900000000000e-01 +-3.273100000000000e-01 +-2.448800000000000e-01 +-2.318100000000000e-01 +-3.013900000000000e-01 +-4.200500000000000e-01 +-5.335100000000000e-01 +-6.009100000000001e-01 +-6.124100000000000e-01 +-5.812400000000000e-01 +-5.216900000000000e-01 +-4.333400000000000e-01 +-3.038200000000000e-01 +-1.252100000000000e-01 + 9.195100000000000e-02 + 3.193700000000000e-01 + 5.250899999999999e-01 + 6.886200000000000e-01 + 8.052600000000000e-01 + 8.788700000000000e-01 + 9.125100000000000e-01 + 9.068200000000000e-01 + 8.664900000000000e-01 + 8.060800000000000e-01 + 7.456700000000001e-01 + 6.970000000000000e-01 + 6.514300000000000e-01 + 5.820000000000000e-01 + 4.610000000000000e-01 + 2.808700000000000e-01 + 6.137200000000000e-02 +-1.634400000000000e-01 +-3.686100000000000e-01 +-5.526600000000000e-01 +-7.301900000000000e-01 +-9.082900000000000e-01 +-1.066600000000000e+00 +-1.159300000000000e+00 +-1.140900000000000e+00 +-9.968300000000000e-01 +-7.574700000000000e-01 +-4.830400000000000e-01 +-2.318500000000000e-01 +-3.391800000000000e-02 + 1.123700000000000e-01 + 2.222000000000000e-01 + 3.024000000000000e-01 + 3.440300000000000e-01 + 3.333600000000000e-01 + 2.689000000000000e-01 + 1.676800000000000e-01 + 5.481600000000000e-02 +-5.387600000000000e-02 +-1.592700000000000e-01 +-2.682400000000000e-01 +-3.732800000000000e-01 +-4.413600000000000e-01 +-4.248400000000000e-01 +-2.900000000000000e-01 +-4.300900000000000e-02 + 2.666100000000000e-01 + 5.693700000000000e-01 + 8.105200000000000e-01 + 9.723500000000000e-01 + 1.070000000000000e+00 + 1.126400000000000e+00 + 1.146100000000000e+00 + 1.108000000000000e+00 + 9.807000000000000e-01 + 7.479800000000000e-01 + 4.254000000000000e-01 + 5.715500000000000e-02 +-3.031800000000000e-01 +-6.139200000000000e-01 +-8.551900000000000e-01 +-1.024500000000000e+00 +-1.124900000000000e+00 +-1.155600000000000e+00 +-1.111700000000000e+00 +-9.907100000000000e-01 +-7.994400000000000e-01 +-5.573900000000001e-01 +-2.944400000000000e-01 +-4.543900000000000e-02 + 1.560800000000000e-01 + 2.841600000000000e-01 + 3.265900000000000e-01 + 2.896800000000000e-01 + 1.989300000000000e-01 + 9.324700000000000e-02 + 1.288800000000000e-02 +-1.439800000000000e-02 + 1.707300000000000e-02 + 9.057500000000000e-02 + 1.761800000000000e-01 + 2.450000000000000e-01 + 2.813500000000000e-01 + 2.870400000000000e-01 + 2.762800000000000e-01 + 2.646800000000000e-01 + 2.592000000000000e-01 + 2.551900000000000e-01 + 2.418900000000000e-01 + 2.125100000000000e-01 + 1.710400000000000e-01 + 1.299800000000000e-01 + 9.952300000000000e-02 + 7.581400000000001e-02 + 3.834600000000000e-02 +-3.885700000000000e-02 +-1.675400000000000e-01 +-3.301600000000000e-01 +-4.815300000000000e-01 +-5.689600000000000e-01 +-5.597400000000000e-01 +-4.584300000000000e-01 +-3.029100000000000e-01 +-1.420400000000000e-01 +-1.040900000000000e-02 + 8.330100000000000e-02 + 1.487400000000000e-01 + 1.960800000000000e-01 + 2.237400000000000e-01 + 2.217300000000000e-01 + 1.867100000000000e-01 + 1.348900000000000e-01 + 1.002600000000000e-01 + 1.171500000000000e-01 + 1.989600000000000e-01 + 3.279200000000000e-01 + 4.628000000000000e-01 + 5.583399999999999e-01 + 5.833700000000001e-01 + 5.275700000000000e-01 + 3.970400000000000e-01 + 2.064300000000000e-01 +-2.473000000000000e-02 +-2.709100000000000e-01 +-5.000900000000000e-01 +-6.790700000000000e-01 +-7.835600000000000e-01 +-8.063399999999999e-01 +-7.573400000000000e-01 +-6.558800000000000e-01 +-5.216100000000000e-01 +-3.711100000000000e-01 +-2.208700000000000e-01 +-9.054100000000000e-02 + 1.734000000000000e-04 + 4.117800000000000e-02 + 4.058800000000000e-02 + 2.336800000000000e-02 + 1.837100000000000e-02 + 4.219700000000000e-02 + 9.204100000000000e-02 + 1.530300000000000e-01 + 2.135300000000000e-01 + 2.747800000000000e-01 + 3.460400000000000e-01 + 4.289700000000000e-01 + 5.057900000000000e-01 + 5.437000000000000e-01 + 5.151400000000000e-01 + 4.193600000000000e-01 + 2.880400000000000e-01 + 1.690100000000000e-01 + 9.885700000000000e-02 + 8.393800000000000e-02 + 1.024500000000000e-01 + 1.238000000000000e-01 + 1.289300000000000e-01 + 1.161800000000000e-01 + 9.122100000000000e-02 + 5.307000000000000e-02 +-9.014700000000000e-03 +-1.041600000000000e-01 +-2.245100000000000e-01 +-3.413100000000000e-01 +-4.188900000000000e-01 +-4.373300000000000e-01 +-4.063300000000000e-01 +-3.585200000000000e-01 +-3.266100000000000e-01 +-3.213600000000000e-01 +-3.266700000000000e-01 +-3.142900000000000e-01 +-2.657600000000000e-01 +-1.848400000000000e-01 +-9.263600000000000e-02 +-1.199900000000000e-02 + 4.496400000000000e-02 + 7.727100000000001e-02 + 8.643900000000000e-02 + 6.977300000000000e-02 + 2.360700000000000e-02 +-4.609400000000000e-02 +-1.167100000000000e-01 +-1.546400000000000e-01 +-1.322400000000000e-01 +-4.429700000000000e-02 + 8.814400000000000e-02 + 2.297200000000000e-01 + 3.493300000000000e-01 + 4.322100000000000e-01 + 4.790400000000000e-01 + 4.963000000000000e-01 + 4.886900000000000e-01 + 4.598300000000000e-01 + 4.179600000000000e-01 + 3.773200000000000e-01 + 3.495700000000000e-01 + 3.303000000000000e-01 + 2.932700000000000e-01 + 2.017500000000000e-01 + 3.335900000000000e-02 +-1.978000000000000e-01 +-4.390100000000000e-01 +-6.218800000000000e-01 +-6.974100000000000e-01 +-6.611399999999999e-01 +-5.520100000000000e-01 +-4.265900000000000e-01 +-3.264300000000000e-01 +-2.598300000000000e-01 +-2.076700000000000e-01 +-1.459300000000000e-01 +-6.717500000000000e-02 + 1.386100000000000e-02 + 7.200800000000000e-02 + 9.025900000000001e-02 + 7.148000000000000e-02 + 3.658100000000000e-02 + 1.278200000000000e-02 + 2.111100000000000e-02 + 6.996900000000000e-02 + 1.550500000000000e-01 + 2.615300000000000e-01 + 3.655800000000000e-01 + 4.365400000000000e-01 + 4.435200000000000e-01 + 3.674800000000000e-01 + 2.137600000000000e-01 + 1.657100000000000e-02 +-1.702000000000000e-01 +-2.935900000000000e-01 +-3.231000000000000e-01 +-2.616700000000000e-01 +-1.408700000000000e-01 +-4.635000000000000e-03 + 1.081000000000000e-01 + 1.732900000000000e-01 + 1.824900000000000e-01 + 1.392000000000000e-01 + 5.623800000000000e-02 +-4.463100000000000e-02 +-1.347200000000000e-01 +-1.861100000000000e-01 +-1.839100000000000e-01 +-1.359200000000000e-01 +-7.148699999999999e-02 +-2.754200000000000e-02 +-2.874900000000000e-02 +-7.388800000000000e-02 +-1.371900000000000e-01 +-1.834300000000000e-01 +-1.867000000000000e-01 +-1.411200000000000e-01 +-5.870700000000000e-02 + 4.077300000000000e-02 + 1.390100000000000e-01 + 2.214800000000000e-01 + 2.751100000000000e-01 + 2.879400000000000e-01 + 2.550200000000000e-01 + 1.869200000000000e-01 + 1.119200000000000e-01 + 6.561100000000000e-02 + 7.114900000000000e-02 + 1.223000000000000e-01 + 1.822000000000000e-01 + 2.011400000000000e-01 + 1.436000000000000e-01 + 8.112400000000001e-03 +-1.719700000000000e-01 +-3.462700000000000e-01 +-4.715000000000000e-01 +-5.275100000000000e-01 +-5.181000000000000e-01 +-4.603300000000000e-01 +-3.717500000000000e-01 +-2.636000000000000e-01 +-1.413000000000000e-01 +-8.606000000000001e-03 + 1.286700000000000e-01 + 2.608200000000000e-01 + 3.736900000000000e-01 + 4.495200000000000e-01 + 4.710100000000000e-01 + 4.291100000000000e-01 + 3.319300000000000e-01 + 2.079200000000000e-01 + 9.845000000000000e-02 + 4.095300000000000e-02 + 5.182200000000000e-02 + 1.195300000000000e-01 + 2.123700000000000e-01 + 2.950900000000000e-01 + 3.426800000000000e-01 + 3.436300000000000e-01 + 2.938800000000000e-01 + 1.908300000000000e-01 + 3.487600000000000e-02 +-1.628200000000000e-01 +-3.757400000000000e-01 +-5.686000000000000e-01 +-7.135700000000000e-01 +-8.039900000000000e-01 +-8.533900000000000e-01 +-8.789300000000000e-01 +-8.820900000000000e-01 +-8.436000000000000e-01 +-7.385100000000000e-01 +-5.602800000000000e-01 +-3.329400000000000e-01 +-9.906000000000000e-02 + 1.090400000000000e-01 + 2.918800000000000e-01 + 4.793100000000000e-01 + 7.011600000000000e-01 + 9.544200000000000e-01 + 1.193600000000000e+00 + 1.353800000000000e+00 + 1.390800000000000e+00 + 1.307000000000000e+00 + 1.144700000000000e+00 + 9.532700000000000e-01 + 7.552900000000000e-01 + 5.396300000000001e-01 + 2.829200000000000e-01 +-1.979100000000000e-02 +-3.419800000000000e-01 +-6.399300000000000e-01 +-8.803800000000001e-01 +-1.057000000000000e+00 +-1.181900000000000e+00 +-1.262400000000000e+00 +-1.285700000000000e+00 +-1.228400000000000e+00 +-1.081900000000000e+00 +-8.717800000000000e-01 +-6.495100000000000e-01 +-4.601500000000000e-01 +-3.114400000000000e-01 +-1.710200000000000e-01 + 3.286600000000000e-03 + 2.233700000000000e-01 + 4.537300000000000e-01 + 6.331800000000000e-01 + 7.196600000000000e-01 + 7.228700000000000e-01 + 6.980300000000000e-01 + 7.041700000000000e-01 + 7.587600000000000e-01 + 8.235000000000000e-01 + 8.319100000000000e-01 + 7.375400000000000e-01 + 5.467200000000000e-01 + 3.132200000000000e-01 + 1.019300000000000e-01 +-4.957600000000000e-02 +-1.443800000000000e-01 +-2.095400000000000e-01 +-2.676700000000000e-01 +-3.206900000000000e-01 +-3.558300000000000e-01 +-3.638400000000000e-01 +-3.504700000000000e-01 +-3.309700000000000e-01 +-3.142200000000000e-01 +-2.925800000000000e-01 +-2.480400000000000e-01 +-1.700700000000000e-01 +-6.961500000000000e-02 + 2.335200000000000e-02 + 7.745299999999999e-02 + 7.905800000000000e-02 + 3.834000000000000e-02 +-2.123400000000000e-02 +-8.026700000000001e-02 +-1.336200000000000e-01 +-1.866400000000000e-01 +-2.426400000000000e-01 +-2.933900000000000e-01 +-3.206700000000000e-01 +-3.072600000000000e-01 +-2.485500000000000e-01 +-1.563400000000000e-01 +-5.365400000000000e-02 + 3.506500000000000e-02 + 9.193700000000000e-02 + 1.095800000000000e-01 + 9.205199999999999e-02 + 5.446400000000000e-02 + 2.043000000000000e-02 + 1.566400000000000e-02 + 5.813100000000000e-02 + 1.493700000000000e-01 + 2.730700000000000e-01 + 4.030700000000000e-01 + 5.164400000000000e-01 + 6.028800000000000e-01 + 6.641200000000000e-01 + 7.047000000000000e-01 + 7.220299999999999e-01 + 7.039600000000000e-01 + 6.360300000000000e-01 + 5.125200000000000e-01 + 3.427800000000000e-01 + 1.480700000000000e-01 +-4.836400000000000e-02 +-2.308200000000000e-01 +-3.945100000000000e-01 +-5.422600000000000e-01 +-6.781600000000000e-01 +-8.024700000000000e-01 +-9.089100000000000e-01 +-9.838000000000000e-01 +-1.006900000000000e+00 +-9.563700000000001e-01 +-8.185500000000000e-01 +-6.009400000000000e-01 +-3.394800000000000e-01 +-9.242499999999999e-02 + 8.076500000000000e-02 + 1.463800000000000e-01 + 1.137700000000000e-01 + 3.133500000000000e-02 +-3.788300000000000e-02 +-4.693800000000000e-02 + 1.603600000000000e-02 + 1.304100000000000e-01 + 2.625200000000000e-01 + 3.869400000000000e-01 + 4.955100000000000e-01 + 5.907300000000000e-01 + 6.722399999999999e-01 + 7.288400000000000e-01 + 7.428900000000001e-01 + 7.030900000000000e-01 + 6.150099999999999e-01 + 5.008500000000000e-01 + 3.880400000000000e-01 + 2.943500000000000e-01 + 2.192100000000000e-01 + 1.459300000000000e-01 + 5.270700000000000e-02 +-7.437600000000000e-02 +-2.328300000000000e-01 +-4.026900000000000e-01 +-5.523900000000000e-01 +-6.489100000000000e-01 +-6.690800000000000e-01 +-6.085900000000000e-01 +-4.851300000000000e-01 +-3.335900000000000e-01 +-1.941800000000000e-01 +-9.814400000000000e-02 +-5.766200000000000e-02 +-6.450599999999999e-02 +-9.733600000000001e-02 +-1.327300000000000e-01 +-1.538300000000000e-01 +-1.530600000000000e-01 +-1.298600000000000e-01 +-8.678500000000000e-02 +-2.722900000000000e-02 + 4.484000000000000e-02 + 1.244200000000000e-01 + 2.055400000000000e-01 + 2.815700000000000e-01 + 3.451100000000000e-01 + 3.874100000000000e-01 + 3.991800000000000e-01 + 3.741100000000000e-01 + 3.140800000000000e-01 + 2.319800000000000e-01 + 1.479500000000000e-01 + 7.907900000000000e-02 + 2.802800000000000e-02 +-2.092400000000000e-02 +-9.371800000000000e-02 +-2.094100000000000e-01 +-3.643900000000000e-01 +-5.283900000000000e-01 +-6.558200000000000e-01 +-7.055800000000000e-01 +-6.580400000000000e-01 +-5.199800000000000e-01 +-3.176100000000000e-01 +-8.471400000000000e-02 + 1.460900000000000e-01 + 3.464700000000000e-01 + 4.936300000000000e-01 + 5.742600000000000e-01 + 5.910600000000000e-01 + 5.653899999999999e-01 + 5.297300000000000e-01 + 5.104400000000000e-01 + 5.103500000000000e-01 + 5.043700000000000e-01 + 4.541900000000000e-01 + 3.345800000000000e-01 + 1.543700000000000e-01 +-4.325600000000000e-02 +-2.029800000000000e-01 +-2.882700000000000e-01 +-3.007900000000000e-01 +-2.756800000000000e-01 +-2.568100000000000e-01 +-2.693800000000000e-01 +-3.078200000000000e-01 +-3.452300000000000e-01 +-3.553700000000000e-01 +-3.308800000000000e-01 +-2.859900000000000e-01 +-2.446300000000000e-01 +-2.245100000000000e-01 +-2.286200000000000e-01 +-2.478100000000000e-01 +-2.694900000000000e-01 +-2.841700000000000e-01 +-2.856200000000000e-01 +-2.673400000000000e-01 +-2.206500000000000e-01 +-1.376200000000000e-01 +-1.672700000000000e-02 + 1.337400000000000e-01 + 2.974000000000000e-01 + 4.552200000000000e-01 + 5.902900000000000e-01 + 6.892300000000000e-01 + 7.411100000000000e-01 + 7.374100000000000e-01 + 6.746799999999999e-01 + 5.582800000000000e-01 + 4.030500000000000e-01 + 2.290100000000000e-01 + 5.451500000000000e-02 +-1.081500000000000e-01 +-2.515900000000000e-01 +-3.686300000000000e-01 +-4.498600000000000e-01 +-4.873800000000000e-01 +-4.827500000000000e-01 +-4.518900000000000e-01 +-4.204100000000000e-01 +-4.098500000000000e-01 +-4.231300000000000e-01 +-4.397400000000000e-01 +-4.250900000000000e-01 +-3.487800000000000e-01 +-2.006400000000000e-01 + 4.802000000000000e-03 + 2.358300000000000e-01 + 4.561600000000000e-01 + 6.345100000000000e-01 + 7.481600000000000e-01 + 7.835200000000000e-01 + 7.381799999999999e-01 + 6.242900000000000e-01 + 4.686800000000000e-01 + 3.049700000000000e-01 + 1.596600000000000e-01 + 4.062900000000000e-02 +-6.286799999999999e-02 +-1.672900000000000e-01 +-2.779400000000000e-01 +-3.814400000000000e-01 +-4.543100000000000e-01 +-4.817200000000000e-01 +-4.716000000000000e-01 +-4.517100000000000e-01 +-4.502200000000000e-01 +-4.738400000000000e-01 +-5.001300000000000e-01 +-4.909600000000000e-01 +-4.181700000000000e-01 +-2.836100000000000e-01 +-1.198000000000000e-01 + 2.827600000000000e-02 + 1.269300000000000e-01 + 1.677800000000000e-01 + 1.655700000000000e-01 + 1.455900000000000e-01 + 1.320700000000000e-01 + 1.441600000000000e-01 + 1.971100000000000e-01 + 3.011600000000000e-01 + 4.539700000000000e-01 + 6.313000000000000e-01 + 7.859800000000000e-01 + 8.616700000000000e-01 + 8.174700000000000e-01 + 6.498300000000000e-01 + 3.976600000000000e-01 + 1.263200000000000e-01 +-1.014000000000000e-01 +-2.505500000000000e-01 +-3.226300000000000e-01 +-3.445500000000000e-01 +-3.472200000000000e-01 +-3.473900000000000e-01 +-3.427800000000000e-01 +-3.211800000000000e-01 +-2.757700000000000e-01 +-2.157900000000000e-01 +-1.653700000000000e-01 +-1.505000000000000e-01 +-1.820100000000000e-01 +-2.452000000000000e-01 +-3.039700000000000e-01 +-3.192100000000000e-01 +-2.718000000000000e-01 +-1.764800000000000e-01 +-7.640000000000000e-02 +-1.945300000000000e-02 +-2.960300000000000e-02 +-9.094300000000000e-02 +-1.557000000000000e-01 +-1.723900000000000e-01 +-1.168300000000000e-01 +-6.277300000000000e-03 + 1.122800000000000e-01 + 1.917600000000000e-01 + 2.126400000000000e-01 + 1.909900000000000e-01 + 1.630100000000000e-01 + 1.585000000000000e-01 + 1.821800000000000e-01 + 2.150000000000000e-01 + 2.326000000000000e-01 + 2.260400000000000e-01 + 2.096300000000000e-01 + 2.107300000000000e-01 + 2.496500000000000e-01 + 3.242500000000000e-01 + 4.093400000000000e-01 + 4.704800000000000e-01 + 4.820800000000000e-01 + 4.383800000000000e-01 + 3.517900000000000e-01 + 2.419100000000000e-01 + 1.238500000000000e-01 + 2.790600000000000e-03 +-1.233200000000000e-01 +-2.569400000000000e-01 +-3.955500000000000e-01 +-5.310000000000000e-01 +-6.528600000000000e-01 +-7.521700000000000e-01 +-8.225700000000000e-01 +-8.581700000000000e-01 +-8.505100000000000e-01 +-7.881700000000000e-01 +-6.608000000000001e-01 +-4.665100000000000e-01 +-2.184500000000000e-01 + 5.366700000000000e-02 + 3.094700000000000e-01 + 5.093400000000000e-01 + 6.266400000000000e-01 + 6.554500000000000e-01 + 6.109100000000000e-01 + 5.226000000000000e-01 + 4.243200000000000e-01 + 3.436800000000000e-01 + 2.944500000000000e-01 + 2.731600000000000e-01 + 2.609600000000000e-01 + 2.312900000000000e-01 + 1.620400000000000e-01 + 4.802000000000000e-02 +-9.235300000000000e-02 +-2.213700000000000e-01 +-2.973200000000000e-01 +-2.940800000000000e-01 +-2.143000000000000e-01 +-8.841700000000000e-02 + 4.050700000000000e-02 + 1.372700000000000e-01 + 1.881100000000000e-01 + 2.001200000000000e-01 + 1.885300000000000e-01 + 1.621900000000000e-01 + 1.176500000000000e-01 + 4.590000000000000e-02 +-5.424600000000000e-02 +-1.666700000000000e-01 +-2.606700000000000e-01 +-3.054100000000000e-01 +-2.873100000000000e-01 +-2.190600000000000e-01 +-1.339800000000000e-01 +-6.835500000000000e-02 +-4.225200000000000e-02 +-5.020400000000000e-02 +-6.747300000000001e-02 +-6.808200000000000e-02 +-4.328600000000000e-02 +-8.374100000000001e-03 + 7.427700000000000e-03 +-1.767500000000000e-02 +-7.919900000000001e-02 +-1.435900000000000e-01 +-1.654400000000000e-01 +-1.152900000000000e-01 +-1.758900000000000e-04 + 1.375000000000000e-01 + 2.435800000000000e-01 + 2.834900000000000e-01 + 2.607100000000000e-01 + 2.099400000000000e-01 + 1.701800000000000e-01 + 1.570400000000000e-01 + 1.537300000000000e-01 + 1.265000000000000e-01 + 5.225600000000000e-02 +-6.228600000000000e-02 +-1.831700000000000e-01 +-2.701000000000000e-01 +-2.990400000000000e-01 +-2.705900000000000e-01 +-2.009900000000000e-01 +-1.066100000000000e-01 + 3.788000000000000e-03 + 1.235400000000000e-01 + 2.373900000000000e-01 + 3.185500000000000e-01 + 3.394800000000000e-01 + 2.891100000000000e-01 + 1.818900000000000e-01 + 5.020500000000000e-02 +-7.483400000000000e-02 +-1.788000000000000e-01 +-2.631900000000000e-01 +-3.299700000000000e-01 +-3.659800000000000e-01 +-3.425000000000000e-01 +-2.328700000000000e-01 +-3.544100000000000e-02 + 2.162700000000000e-01 + 4.649100000000000e-01 + 6.542400000000000e-01 + 7.502300000000000e-01 + 7.449700000000000e-01 + 6.451100000000000e-01 + 4.583900000000000e-01 + 1.915700000000000e-01 +-1.391600000000000e-01 +-4.965800000000000e-01 +-8.232500000000000e-01 +-1.058600000000000e+00 +-1.162100000000000e+00 +-1.128200000000000e+00 +-9.823900000000000e-01 +-7.652700000000000e-01 +-5.146500000000001e-01 +-2.574700000000000e-01 +-1.197400000000000e-02 + 2.067700000000000e-01 + 3.850400000000000e-01 + 5.133900000000000e-01 + 5.898400000000000e-01 + 6.195200000000000e-01 + 6.115400000000000e-01 + 5.774800000000000e-01 + 5.334300000000000e-01 + 5.019100000000000e-01 + 5.069000000000000e-01 + 5.605300000000000e-01 + 6.488400000000000e-01 + 7.289099999999999e-01 + 7.445000000000001e-01 + 6.536999999999999e-01 + 4.517200000000000e-01 + 1.733600000000000e-01 +-1.265900000000000e-01 +-4.009600000000000e-01 +-6.267500000000000e-01 +-8.012300000000000e-01 +-9.248300000000000e-01 +-9.880000000000000e-01 +-9.744000000000000e-01 +-8.778000000000000e-01 +-7.173000000000000e-01 +-5.364200000000000e-01 +-3.840000000000000e-01 +-2.897400000000000e-01 +-2.508600000000000e-01 +-2.377400000000000e-01 +-2.126400000000000e-01 +-1.479600000000000e-01 +-3.442500000000000e-02 + 1.206900000000000e-01 + 2.985400000000000e-01 + 4.718500000000000e-01 + 6.081000000000000e-01 + 6.773800000000000e-01 + 6.656400000000000e-01 + 5.857200000000000e-01 + 4.755900000000000e-01 + 3.803500000000000e-01 + 3.270200000000000e-01 + 3.090000000000000e-01 + 2.921300000000000e-01 + 2.396200000000000e-01 + 1.389800000000000e-01 + 1.239900000000000e-02 +-9.619500000000000e-02 +-1.473900000000000e-01 +-1.276700000000000e-01 +-5.283400000000000e-02 + 4.554500000000000e-02 + 1.382900000000000e-01 + 2.086100000000000e-01 + 2.500300000000000e-01 + 2.584700000000000e-01 + 2.275400000000000e-01 + 1.510500000000000e-01 + 2.912600000000000e-02 +-1.285300000000000e-01 +-3.052900000000000e-01 +-4.836000000000000e-01 +-6.493300000000000e-01 +-7.917900000000000e-01 +-9.013400000000000e-01 +-9.681500000000000e-01 +-9.835800000000000e-01 +-9.423800000000000e-01 +-8.429700000000000e-01 +-6.859900000000000e-01 +-4.737600000000000e-01 +-2.134800000000000e-01 + 7.728000000000000e-02 + 3.682300000000000e-01 + 6.217600000000000e-01 + 8.055800000000000e-01 + 9.058300000000000e-01 + 9.318700000000000e-01 + 9.094400000000000e-01 + 8.662800000000000e-01 + 8.190700000000000e-01 + 7.688800000000000e-01 + 7.055399999999999e-01 + 6.162800000000000e-01 + 4.933600000000000e-01 + 3.383400000000000e-01 + 1.636200000000000e-01 +-8.342199999999999e-03 +-1.498300000000000e-01 +-2.381500000000000e-01 +-2.685400000000000e-01 +-2.616100000000000e-01 +-2.570600000000000e-01 +-2.928700000000000e-01 +-3.804700000000000e-01 +-4.926500000000000e-01 +-5.752200000000000e-01 +-5.780200000000000e-01 +-4.868500000000000e-01 +-3.350600000000000e-01 +-1.863400000000000e-01 +-9.925700000000000e-02 +-9.612999999999999e-02 +-1.550600000000000e-01 +-2.278300000000000e-01 +-2.694100000000000e-01 +-2.594200000000000e-01 +-2.043200000000000e-01 +-1.238700000000000e-01 +-3.522500000000000e-02 + 5.371800000000000e-02 + 1.397500000000000e-01 + 2.161200000000000e-01 + 2.699000000000000e-01 + 2.880500000000000e-01 + 2.674100000000000e-01 + 2.203100000000000e-01 + 1.705500000000000e-01 + 1.416200000000000e-01 + 1.440600000000000e-01 + 1.694300000000000e-01 + 1.943300000000000e-01 + 1.925400000000000e-01 + 1.491700000000000e-01 + 6.983499999999999e-02 +-2.006000000000000e-02 +-8.623300000000000e-02 +-1.018200000000000e-01 +-6.074800000000000e-02 + 1.904100000000000e-02 + 1.046400000000000e-01 + 1.641800000000000e-01 + 1.803700000000000e-01 + 1.541600000000000e-01 + 9.814600000000000e-02 + 2.642300000000000e-02 +-5.082300000000000e-02 +-1.248200000000000e-01 +-1.824000000000000e-01 +-2.048100000000000e-01 +-1.753000000000000e-01 +-9.133200000000000e-02 + 2.818200000000000e-02 + 1.477100000000000e-01 + 2.306100000000000e-01 + 2.554800000000000e-01 + 2.229200000000000e-01 + 1.494200000000000e-01 + 5.445900000000000e-02 +-4.869800000000000e-02 +-1.529300000000000e-01 +-2.505300000000000e-01 +-3.281400000000000e-01 +-3.695200000000000e-01 +-3.647100000000000e-01 +-3.179100000000000e-01 +-2.474300000000000e-01 +-1.767900000000000e-01 +-1.237000000000000e-01 +-9.412400000000000e-02 +-8.456500000000000e-02 +-8.880300000000001e-02 +-1.027900000000000e-01 +-1.241900000000000e-01 +-1.482700000000000e-01 +-1.648200000000000e-01 +-1.595600000000000e-01 +-1.193300000000000e-01 +-3.803200000000000e-02 + 7.986500000000001e-02 + 2.191900000000000e-01 + 3.570500000000000e-01 + 4.685600000000000e-01 + 5.349900000000000e-01 + 5.520600000000000e-01 + 5.337100000000000e-01 + 5.067700000000001e-01 + 4.962600000000000e-01 + 5.085200000000000e-01 + 5.232900000000000e-01 + 5.022600000000000e-01 + 4.110800000000000e-01 + 2.413500000000000e-01 + 1.799100000000000e-02 +-2.133300000000000e-01 +-4.101900000000000e-01 +-5.521700000000000e-01 +-6.423500000000000e-01 +-6.930700000000000e-01 +-7.090300000000000e-01 +-6.820400000000000e-01 +-6.007600000000000e-01 +-4.666500000000000e-01 +-3.017900000000000e-01 +-1.419400000000000e-01 +-1.974100000000000e-02 + 4.920600000000000e-02 + 6.832000000000001e-02 + 5.133700000000000e-02 + 1.226000000000000e-02 +-3.759000000000000e-02 +-8.535000000000000e-02 +-1.128000000000000e-01 +-1.003900000000000e-01 +-3.853900000000000e-02 + 6.234700000000000e-02 + 1.729300000000000e-01 + 2.587900000000000e-01 + 2.987700000000000e-01 + 2.955600000000000e-01 + 2.715800000000000e-01 + 2.537600000000000e-01 + 2.580300000000000e-01 + 2.831100000000000e-01 + 3.156300000000000e-01 + 3.407600000000000e-01 + 3.505500000000000e-01 + 3.458300000000000e-01 + 3.327000000000000e-01 + 3.174200000000000e-01 + 3.021800000000000e-01 + 2.826300000000000e-01 + 2.473700000000000e-01 + 1.802700000000000e-01 + 6.640900000000000e-02 +-9.988100000000000e-02 +-3.092700000000000e-01 +-5.381800000000000e-01 +-7.563700000000000e-01 +-9.366000000000000e-01 +-1.059700000000000e+00 +-1.113100000000000e+00 +-1.085300000000000e+00 +-9.661300000000000e-01 +-7.529500000000000e-01 +-4.611000000000000e-01 +-1.276400000000000e-01 + 1.977000000000000e-01 + 4.711600000000000e-01 + 6.715200000000000e-01 + 8.032400000000000e-01 + 8.841599999999999e-01 + 9.274200000000000e-01 + 9.312600000000000e-01 + 8.835300000000000e-01 + 7.758900000000000e-01 + 6.152000000000000e-01 + 4.230200000000000e-01 + 2.244800000000000e-01 + 3.677200000000000e-02 +-1.335400000000000e-01 +-2.834800000000000e-01 +-4.050000000000000e-01 +-4.837900000000000e-01 +-5.070700000000000e-01 +-4.732900000000000e-01 +-3.944500000000000e-01 +-2.888200000000000e-01 +-1.705400000000000e-01 +-4.609100000000000e-02 + 7.883200000000000e-02 + 1.886300000000000e-01 + 2.547400000000000e-01 + 2.465400000000000e-01 + 1.511100000000000e-01 +-1.194600000000000e-02 +-1.926600000000000e-01 +-3.308900000000000e-01 +-3.837300000000000e-01 +-3.447900000000000e-01 +-2.454400000000000e-01 +-1.390100000000000e-01 +-7.678800000000000e-02 +-8.713300000000000e-02 +-1.649700000000000e-01 +-2.743200000000000e-01 +-3.621700000000000e-01 +-3.789200000000000e-01 +-2.979600000000000e-01 +-1.258300000000000e-01 + 1.023800000000000e-01 + 3.403700000000000e-01 + 5.504200000000000e-01 + 7.136300000000000e-01 + 8.250200000000000e-01 + 8.799000000000000e-01 + 8.651000000000000e-01 + 7.649800000000000e-01 + 5.790000000000000e-01 + 3.357800000000000e-01 + 8.867200000000000e-02 +-1.084700000000000e-01 +-2.301500000000000e-01 +-2.911900000000000e-01 +-3.314900000000000e-01 +-3.838800000000000e-01 +-4.490300000000000e-01 +-4.965900000000000e-01 +-4.918800000000000e-01 +-4.271000000000000e-01 +-3.323300000000000e-01 +-2.572500000000000e-01 +-2.371600000000000e-01 +-2.687300000000000e-01 +-3.132000000000000e-01 +-3.238600000000000e-01 +-2.769000000000000e-01 +-1.844200000000000e-01 +-8.297300000000001e-02 +-9.009400000000001e-03 + 2.092800000000000e-02 + 1.439800000000000e-02 +-5.641100000000000e-03 +-1.232100000000000e-02 + 1.795800000000000e-02 + 1.016900000000000e-01 + 2.429400000000000e-01 + 4.259900000000000e-01 + 6.125200000000000e-01 + 7.513700000000000e-01 + 8.003500000000000e-01 + 7.485600000000000e-01 + 6.230100000000000e-01 + 4.725200000000000e-01 + 3.379600000000000e-01 + 2.288400000000000e-01 + 1.227900000000000e-01 +-1.233200000000000e-02 +-1.900600000000000e-01 +-3.914300000000000e-01 +-5.746100000000000e-01 +-6.994899999999999e-01 +-7.488100000000000e-01 +-7.318700000000000e-01 +-6.714000000000000e-01 +-5.862700000000000e-01 +-4.835600000000000e-01 +-3.634600000000000e-01 +-2.295000000000000e-01 +-9.306000000000000e-02 + 3.189900000000000e-02 + 1.385400000000000e-01 + 2.316700000000000e-01 + 3.221300000000000e-01 + 4.150200000000000e-01 + 5.014300000000000e-01 + 5.604800000000000e-01 + 5.706800000000000e-01 + 5.225800000000000e-01 + 4.244100000000000e-01 + 2.977900000000000e-01 + 1.675300000000000e-01 + 5.218000000000000e-02 +-3.999900000000000e-02 +-1.097600000000000e-01 +-1.630400000000000e-01 +-2.072400000000000e-01 +-2.483900000000000e-01 +-2.889900000000000e-01 +-3.267100000000000e-01 +-3.550500000000000e-01 +-3.666800000000000e-01 +-3.581300000000000e-01 +-3.330000000000000e-01 +-3.009500000000000e-01 +-2.726400000000000e-01 +-2.532300000000000e-01 +-2.385700000000000e-01 +-2.164100000000000e-01 +-1.719400000000000e-01 +-9.463400000000000e-02 + 1.679300000000000e-02 + 1.531800000000000e-01 + 2.974600000000000e-01 + 4.296300000000000e-01 + 5.325100000000000e-01 + 5.964000000000000e-01 + 6.211100000000001e-01 + 6.145400000000000e-01 + 5.881999999999999e-01 + 5.519500000000001e-01 + 5.106200000000000e-01 + 4.640800000000000e-01 + 4.100000000000000e-01 + 3.468500000000000e-01 + 2.744300000000000e-01 + 1.916900000000000e-01 + 9.402000000000001e-02 +-2.689900000000000e-02 +-1.788500000000000e-01 +-3.620200000000000e-01 +-5.631500000000000e-01 +-7.549500000000000e-01 +-9.028200000000000e-01 +-9.767000000000000e-01 +-9.631700000000000e-01 +-8.722700000000000e-01 +-7.352900000000000e-01 +-5.939300000000000e-01 +-4.851400000000000e-01 +-4.279300000000000e-01 +-4.177300000000000e-01 +-4.299800000000000e-01 +-4.305200000000000e-01 +-3.872400000000000e-01 +-2.784400000000000e-01 +-9.619400000000000e-02 + 1.534400000000000e-01 + 4.510200000000000e-01 + 7.646800000000000e-01 + 1.053500000000000e+00 + 1.275900000000000e+00 + 1.401100000000000e+00 + 1.419800000000000e+00 + 1.345800000000000e+00 + 1.208000000000000e+00 + 1.035600000000000e+00 + 8.456200000000000e-01 + 6.418000000000000e-01 + 4.221200000000000e-01 + 1.896900000000000e-01 +-4.308700000000000e-02 +-2.602000000000000e-01 +-4.523400000000000e-01 +-6.225400000000000e-01 +-7.814300000000000e-01 +-9.352500000000000e-01 +-1.076000000000000e+00 +-1.181800000000000e+00 +-1.228100000000000e+00 +-1.200300000000000e+00 +-1.099800000000000e+00 +-9.399300000000000e-01 +-7.366500000000000e-01 +-5.033100000000000e-01 +-2.535700000000000e-01 +-7.604600000000000e-03 + 2.068500000000000e-01 + 3.634300000000000e-01 + 4.515800000000000e-01 + 4.852900000000000e-01 + 4.977500000000000e-01 + 5.230500000000000e-01 + 5.763900000000000e-01 + 6.460300000000000e-01 + 7.024600000000000e-01 + 7.179200000000000e-01 + 6.829600000000000e-01 + 6.091600000000000e-01 + 5.174900000000000e-01 + 4.217700000000000e-01 + 3.188700000000000e-01 + 1.923300000000000e-01 + 2.657200000000000e-02 +-1.774900000000000e-01 +-3.950200000000000e-01 +-5.826800000000000e-01 +-6.948299999999999e-01 +-7.030500000000000e-01 +-6.096500000000000e-01 +-4.484200000000000e-01 +-2.709300000000000e-01 +-1.245500000000000e-01 +-3.292600000000000e-02 + 1.028800000000000e-02 + 3.104300000000000e-02 + 5.448700000000000e-02 + 8.811600000000000e-02 + 1.197600000000000e-01 + 1.311900000000000e-01 + 1.162200000000000e-01 + 8.869700000000000e-02 + 7.296900000000001e-02 + 8.372100000000000e-02 + 1.113000000000000e-01 + 1.256000000000000e-01 + 9.766300000000000e-02 + 2.399500000000000e-02 +-6.503399999999999e-02 +-1.205300000000000e-01 +-1.050600000000000e-01 +-1.752800000000000e-02 + 1.036300000000000e-01 + 2.006900000000000e-01 + 2.271000000000000e-01 + 1.699700000000000e-01 + 5.337200000000000e-02 +-7.600700000000001e-02 +-1.704600000000000e-01 +-1.989800000000000e-01 +-1.557100000000000e-01 +-5.924100000000000e-02 + 5.469700000000000e-02 + 1.451400000000000e-01 + 1.800000000000000e-01 + 1.482800000000000e-01 + 6.453700000000000e-02 +-3.790800000000000e-02 +-1.226400000000000e-01 +-1.666600000000000e-01 +-1.685700000000000e-01 +-1.450400000000000e-01 +-1.192900000000000e-01 +-1.095900000000000e-01 +-1.235600000000000e-01 +-1.581200000000000e-01 +-2.015400000000000e-01 +-2.354500000000000e-01 +-2.383800000000000e-01 +-1.935000000000000e-01 +-9.945200000000000e-02 + 2.285600000000000e-02 + 1.354300000000000e-01 + 2.013700000000000e-01 + 2.065500000000000e-01 + 1.700000000000000e-01 + 1.337700000000000e-01 + 1.373400000000000e-01 + 1.931100000000000e-01 + 2.796700000000000e-01 + 3.568400000000000e-01 + 3.909600000000000e-01 + 3.724900000000000e-01 + 3.153000000000000e-01 + 2.418000000000000e-01 + 1.677900000000000e-01 + 9.842300000000000e-02 + 3.516300000000000e-02 +-1.617500000000000e-02 +-4.597900000000000e-02 +-4.997500000000000e-02 +-3.769500000000000e-02 +-3.080300000000000e-02 +-5.093400000000000e-02 +-1.066400000000000e-01 +-1.902600000000000e-01 +-2.867900000000000e-01 +-3.856200000000000e-01 +-4.837500000000000e-01 +-5.771200000000000e-01 +-6.492100000000000e-01 +-6.702500000000000e-01 +-6.122000000000000e-01 +-4.699900000000000e-01 +-2.720900000000000e-01 +-6.963600000000000e-02 + 8.977800000000000e-02 + 1.855200000000000e-01 + 2.279000000000000e-01 + 2.419000000000000e-01 + 2.456400000000000e-01 + 2.416900000000000e-01 + 2.271900000000000e-01 + 2.113100000000000e-01 + 2.214500000000000e-01 + 2.890300000000000e-01 + 4.238000000000000e-01 + 5.968900000000000e-01 + 7.480900000000000e-01 + 8.149200000000000e-01 + 7.645900000000000e-01 + 6.082300000000000e-01 + 3.900500000000000e-01 + 1.619100000000000e-01 +-3.852000000000000e-02 +-1.940800000000000e-01 +-3.012200000000000e-01 +-3.613100000000000e-01 +-3.790900000000000e-01 +-3.672900000000000e-01 +-3.488300000000000e-01 +-3.501400000000000e-01 +-3.879300000000000e-01 +-4.593700000000000e-01 +-5.437300000000000e-01 +-6.145000000000000e-01 +-6.525200000000000e-01 +-6.503200000000000e-01 +-6.064000000000001e-01 +-5.170300000000000e-01 +-3.751600000000000e-01 +-1.788500000000000e-01 + 5.811400000000000e-02 + 3.040300000000000e-01 + 5.197200000000000e-01 + 6.755700000000000e-01 + 7.629500000000000e-01 + 7.921200000000000e-01 + 7.790100000000000e-01 + 7.317600000000000e-01 + 6.470100000000000e-01 + 5.175800000000000e-01 + 3.438700000000000e-01 + 1.393500000000000e-01 +-7.358300000000000e-02 +-2.727600000000000e-01 +-4.421200000000000e-01 +-5.704000000000000e-01 +-6.459300000000000e-01 +-6.549500000000000e-01 +-5.875000000000000e-01 +-4.475100000000000e-01 +-2.586700000000000e-01 +-5.966600000000000e-02 + 1.100900000000000e-01 + 2.257600000000000e-01 + 2.839500000000000e-01 + 2.979400000000000e-01 + 2.857300000000000e-01 + 2.601200000000000e-01 + 2.267600000000000e-01 + 1.895100000000000e-01 + 1.565700000000000e-01 + 1.409400000000000e-01 + 1.536600000000000e-01 + 1.944100000000000e-01 + 2.465600000000000e-01 + 2.811100000000000e-01 + 2.684200000000000e-01 + 1.916800000000000e-01 + 5.516100000000000e-02 +-1.169300000000000e-01 +-2.900500000000000e-01 +-4.325600000000000e-01 +-5.263800000000000e-01 +-5.705500000000000e-01 +-5.767600000000001e-01 +-5.600000000000001e-01 +-5.293000000000000e-01 +-4.838400000000000e-01 +-4.160900000000000e-01 +-3.199500000000000e-01 +-1.986300000000000e-01 +-6.665900000000000e-02 + 5.597300000000000e-02 + 1.546200000000000e-01 + 2.290700000000000e-01 + 2.943000000000000e-01 + 3.708700000000000e-01 + 4.697000000000000e-01 + 5.802900000000000e-01 + 6.706200000000000e-01 + 7.008200000000000e-01 + 6.438500000000000e-01 + 5.018300000000000e-01 + 3.079400000000000e-01 + 1.125600000000000e-01 +-3.873300000000000e-02 +-1.226000000000000e-01 +-1.417300000000000e-01 +-1.149200000000000e-01 +-6.213500000000000e-02 + 4.577600000000000e-03 + 7.925500000000001e-02 + 1.531600000000000e-01 + 2.082300000000000e-01 + 2.198800000000000e-01 + 1.682400000000000e-01 + 4.966600000000000e-02 +-1.201300000000000e-01 +-3.135800000000000e-01 +-5.034000000000000e-01 +-6.706400000000000e-01 +-8.038999999999999e-01 +-8.932700000000000e-01 +-9.269500000000001e-01 +-8.953000000000000e-01 +-7.994100000000000e-01 +-6.555299999999999e-01 +-4.890200000000000e-01 +-3.198700000000000e-01 +-1.504300000000000e-01 + 3.431900000000000e-02 + 2.523400000000000e-01 + 5.054500000000000e-01 + 7.698100000000000e-01 + 1.003500000000000e+00 + 1.166900000000000e+00 + 1.240700000000000e+00 + 1.231200000000000e+00 + 1.159200000000000e+00 + 1.042800000000000e+00 + 8.875600000000000e-01 + 6.889400000000000e-01 + 4.433500000000000e-01 + 1.573600000000000e-01 +-1.514500000000000e-01 +-4.605300000000000e-01 +-7.479800000000000e-01 +-9.923200000000000e-01 +-1.168400000000000e+00 +-1.247200000000000e+00 +-1.204500000000000e+00 +-1.036800000000000e+00 +-7.729900000000000e-01 +-4.719300000000000e-01 +-2.027700000000000e-01 +-1.755200000000000e-02 + 6.944500000000001e-02 + 8.435800000000000e-02 + 7.776400000000000e-02 + 9.949700000000000e-02 + 1.773300000000000e-01 + 3.084800000000000e-01 + 4.651900000000000e-01 + 6.087100000000000e-01 + 7.044100000000000e-01 + 7.317900000000001e-01 + 6.873000000000000e-01 + 5.809700000000000e-01 + 4.300100000000000e-01 + 2.532600000000000e-01 + 6.867300000000000e-02 +-1.064100000000000e-01 +-2.550500000000000e-01 +-3.634200000000000e-01 +-4.262700000000000e-01 +-4.514000000000000e-01 +-4.576200000000000e-01 +-4.650000000000000e-01 +-4.818200000000000e-01 +-4.974700000000000e-01 +-4.875500000000000e-01 +-4.289400000000000e-01 +-3.147700000000000e-01 +-1.582700000000000e-01 + 1.696500000000000e-02 + 1.919900000000000e-01 + 3.594500000000000e-01 + 5.164100000000000e-01 + 6.496000000000000e-01 + 7.285700000000001e-01 + 7.172600000000000e-01 + 5.997500000000000e-01 + 4.011000000000000e-01 + 1.844900000000000e-01 + 2.096600000000000e-02 +-5.076900000000000e-02 +-4.744400000000000e-02 +-2.988000000000000e-02 +-6.340800000000001e-02 +-1.758600000000000e-01 +-3.404500000000000e-01 +-4.930900000000000e-01 +-5.701800000000000e-01 +-5.411500000000000e-01 +-4.171600000000000e-01 +-2.362900000000000e-01 +-4.129900000000000e-02 + 1.336600000000000e-01 + 2.630100000000000e-01 + 3.250000000000000e-01 + 3.035000000000000e-01 + 1.987100000000000e-01 + 3.722900000000000e-02 +-1.305300000000000e-01 +-2.492200000000000e-01 +-2.838800000000000e-01 +-2.356200000000000e-01 +-1.374000000000000e-01 +-3.317300000000000e-02 + 4.550000000000000e-02 + 9.142599999999999e-02 + 1.179100000000000e-01 + 1.451900000000000e-01 + 1.875100000000000e-01 + 2.469200000000000e-01 + 3.133400000000000e-01 + 3.671900000000000e-01 + 3.831000000000000e-01 + 3.363200000000000e-01 + 2.131100000000000e-01 + 2.192500000000000e-02 +-2.025000000000000e-01 +-4.080800000000000e-01 +-5.456299999999999e-01 +-5.898600000000001e-01 +-5.483100000000000e-01 +-4.527900000000000e-01 +-3.392300000000000e-01 +-2.297700000000000e-01 +-1.281100000000000e-01 +-2.877900000000000e-02 + 6.925199999999999e-02 + 1.566600000000000e-01 + 2.202300000000000e-01 + 2.557300000000000e-01 + 2.756100000000000e-01 + 3.039000000000000e-01 + 3.603900000000000e-01 + 4.450900000000000e-01 + 5.341900000000001e-01 + 5.912900000000000e-01 + 5.872000000000001e-01 + 5.159300000000000e-01 + 3.969800000000000e-01 + 2.627900000000000e-01 + 1.394800000000000e-01 + 3.290800000000000e-02 +-7.159900000000000e-02 +-1.959500000000000e-01 +-3.508400000000000e-01 +-5.237900000000000e-01 +-6.813500000000000e-01 +-7.847900000000000e-01 +-8.101300000000000e-01 +-7.603900000000000e-01 +-6.626100000000000e-01 +-5.513200000000000e-01 +-4.488800000000000e-01 +-3.549600000000000e-01 +-2.515600000000000e-01 +-1.198700000000000e-01 + 4.241000000000000e-02 + 2.146100000000000e-01 + 3.612800000000000e-01 + 4.496600000000000e-01 + 4.655400000000000e-01 + 4.189800000000000e-01 + 3.383100000000000e-01 + 2.574800000000000e-01 + 2.039300000000000e-01 + 1.915200000000000e-01 + 2.189700000000000e-01 + 2.721500000000000e-01 + 3.287400000000000e-01 + 3.647300000000000e-01 + 3.619700000000000e-01 + 3.141000000000000e-01 + 2.278100000000000e-01 + 1.183300000000000e-01 + 2.028400000000000e-03 +-1.089100000000000e-01 +-2.061100000000000e-01 +-2.804300000000000e-01 +-3.187400000000000e-01 +-3.067600000000000e-01 +-2.375200000000000e-01 +-1.193500000000000e-01 + 2.373000000000000e-02 + 1.609700000000000e-01 + 2.676300000000000e-01 + 3.324100000000000e-01 + 3.549700000000000e-01 + 3.367200000000000e-01 + 2.744400000000000e-01 + 1.633000000000000e-01 + 7.517900000000000e-03 +-1.712700000000000e-01 +-3.378800000000000e-01 +-4.602900000000000e-01 +-5.288900000000000e-01 +-5.634600000000000e-01 +-6.005100000000000e-01 +-6.672900000000000e-01 +-7.594500000000000e-01 +-8.379200000000000e-01 +-8.481300000000001e-01 +-7.500100000000000e-01 +-5.401600000000000e-01 +-2.533000000000000e-01 + 5.607400000000000e-02 + 3.394100000000000e-01 + 5.718200000000000e-01 + 7.539500000000000e-01 + 9.004000000000000e-01 + 1.024100000000000e+00 + 1.125400000000000e+00 + 1.190500000000000e+00 + 1.195800000000000e+00 + 1.118000000000000e+00 + 9.428500000000000e-01 + 6.737400000000000e-01 + 3.360200000000000e-01 +-2.515700000000000e-02 +-3.548500000000000e-01 +-6.039800000000000e-01 +-7.448800000000000e-01 +-7.795100000000000e-01 +-7.363900000000000e-01 +-6.574600000000000e-01 +-5.813400000000000e-01 +-5.301100000000000e-01 +-5.046000000000000e-01 +-4.887600000000000e-01 +-4.600400000000000e-01 +-4.013200000000000e-01 +-3.096700000000000e-01 +-1.983700000000000e-01 +-9.088100000000000e-02 +-8.584700000000001e-03 + 4.172000000000000e-02 + 7.325700000000000e-02 + 1.126800000000000e-01 + 1.834400000000000e-01 + 2.882900000000000e-01 + 4.028200000000000e-01 + 4.859800000000000e-01 + 5.033500000000000e-01 + 4.490700000000000e-01 + 3.521000000000000e-01 + 2.614800000000000e-01 + 2.189300000000000e-01 + 2.355000000000000e-01 + 2.864000000000000e-01 + 3.264000000000000e-01 + 3.148300000000000e-01 + 2.347300000000000e-01 + 9.629200000000000e-02 +-7.372200000000000e-02 +-2.462000000000000e-01 +-3.979500000000000e-01 +-5.118400000000000e-01 +-5.743700000000000e-01 +-5.772300000000000e-01 +-5.237700000000000e-01 +-4.338600000000000e-01 +-3.399400000000000e-01 +-2.728000000000000e-01 +-2.452400000000000e-01 +-2.449300000000000e-01 +-2.427000000000000e-01 +-2.112000000000000e-01 +-1.410000000000000e-01 +-4.289200000000000e-02 + 6.429400000000000e-02 + 1.698900000000000e-01 + 2.782400000000000e-01 + 4.004300000000000e-01 + 5.379800000000000e-01 + 6.722200000000000e-01 + 7.693800000000000e-01 + 7.989000000000001e-01 + 7.518300000000000e-01 + 6.454000000000000e-01 + 5.100200000000000e-01 + 3.683600000000000e-01 + 2.220400000000000e-01 + 5.584500000000000e-02 +-1.438100000000000e-01 +-3.700800000000000e-01 +-5.907000000000000e-01 +-7.611500000000000e-01 +-8.472300000000000e-01 +-8.427400000000000e-01 +-7.711400000000000e-01 +-6.712000000000000e-01 +-5.758400000000000e-01 +-4.963900000000000e-01 +-4.197800000000000e-01 +-3.185400000000000e-01 +-1.674900000000000e-01 + 4.080600000000000e-02 + 2.885700000000000e-01 + 5.359699999999999e-01 + 7.341600000000000e-01 + 8.434000000000000e-01 + 8.483100000000000e-01 + 7.631200000000000e-01 + 6.234200000000000e-01 + 4.686500000000000e-01 + 3.247900000000000e-01 + 1.973200000000000e-01 + 7.753800000000000e-02 +-4.342900000000000e-02 +-1.637300000000000e-01 +-2.710100000000000e-01 +-3.526800000000000e-01 +-4.070600000000000e-01 +-4.453200000000000e-01 +-4.815000000000000e-01 +-5.176900000000000e-01 +-5.361399999999999e-01 +-5.056900000000000e-01 +-3.997300000000000e-01 +-2.145100000000000e-01 + 2.368300000000000e-02 + 2.664300000000000e-01 + 4.608200000000000e-01 + 5.669100000000000e-01 + 5.673700000000000e-01 + 4.683000000000000e-01 + 2.946100000000000e-01 + 8.359300000000000e-02 +-1.224300000000000e-01 +-2.852600000000000e-01 +-3.808600000000000e-01 +-4.062600000000000e-01 +-3.784300000000000e-01 +-3.238600000000000e-01 +-2.638000000000000e-01 +-2.035600000000000e-01 +-1.328300000000000e-01 +-3.630800000000000e-02 + 9.240400000000000e-02 + 2.428500000000000e-01 + 3.905300000000000e-01 + 5.080600000000000e-01 + 5.772800000000000e-01 + 5.953900000000000e-01 + 5.726900000000000e-01 + 5.248600000000000e-01 + 4.648300000000000e-01 + 3.983600000000000e-01 + 3.242800000000000e-01 + 2.379000000000000e-01 + 1.348900000000000e-01 + 1.368000000000000e-02 +-1.245600000000000e-01 +-2.774000000000000e-01 +-4.420300000000000e-01 +-6.133500000000000e-01 +-7.790400000000000e-01 +-9.148600000000000e-01 +-9.855300000000000e-01 +-9.551900000000000e-01 +-8.055300000000000e-01 +-5.524900000000000e-01 +-2.500600000000000e-01 + 2.527100000000000e-02 + 2.045900000000000e-01 + 2.563100000000000e-01 + 1.993000000000000e-01 + 9.212900000000000e-02 + 5.014400000000000e-03 +-9.515700000000000e-03 + 6.743000000000000e-02 + 2.227200000000000e-01 + 4.234700000000000e-01 + 6.291400000000000e-01 + 7.979800000000000e-01 + 8.904500000000000e-01 + 8.758800000000000e-01 + 7.441100000000000e-01 + 5.158800000000000e-01 + 2.420800000000000e-01 +-1.271900000000000e-02 +-1.962000000000000e-01 +-2.895200000000000e-01 +-3.113300000000000e-01 +-3.027800000000000e-01 +-3.033400000000000e-01 +-3.317400000000000e-01 +-3.811500000000000e-01 +-4.272400000000000e-01 +-4.412600000000000e-01 +-4.002600000000000e-01 +-2.924600000000000e-01 +-1.202300000000000e-01 + 9.732499999999999e-02 + 3.239600000000000e-01 + 5.124000000000000e-01 + 6.182400000000000e-01 + 6.165400000000000e-01 + 5.120100000000000e-01 + 3.357500000000000e-01 + 1.298400000000000e-01 +-7.093400000000000e-02 +-2.495700000000000e-01 +-4.044000000000000e-01 +-5.380600000000000e-01 +-6.468500000000000e-01 +-7.182500000000001e-01 +-7.372000000000000e-01 +-6.957500000000000e-01 +-5.993600000000000e-01 +-4.662200000000000e-01 +-3.208600000000000e-01 +-1.857300000000000e-01 +-7.426300000000000e-02 + 1.255300000000000e-02 + 8.523300000000000e-02 + 1.604800000000000e-01 + 2.528000000000000e-01 + 3.664500000000000e-01 + 4.922800000000000e-01 + 6.120500000000000e-01 + 7.082100000000000e-01 + 7.729700000000000e-01 + 8.098600000000000e-01 + 8.264800000000000e-01 + 8.236200000000000e-01 + 7.893100000000000e-01 + 7.032600000000000e-01 + 5.493700000000000e-01 + 3.279000000000000e-01 + 5.947100000000000e-02 +-2.211900000000000e-01 +-4.763100000000000e-01 +-6.740400000000000e-01 +-7.922000000000000e-01 +-8.193300000000000e-01 +-7.571500000000000e-01 +-6.248500000000000e-01 +-4.599400000000000e-01 +-3.098800000000000e-01 +-2.146000000000000e-01 +-1.885400000000000e-01 +-2.141500000000000e-01 +-2.530000000000000e-01 +-2.687700000000000e-01 +-2.474600000000000e-01 +-2.018200000000000e-01 +-1.577900000000000e-01 +-1.335600000000000e-01 +-1.265100000000000e-01 +-1.163900000000000e-01 +-8.093100000000000e-02 +-1.152600000000000e-02 + 8.191200000000000e-02 + 1.785600000000000e-01 + 2.591000000000000e-01 + 3.135400000000000e-01 + 3.404100000000000e-01 + 3.412900000000000e-01 + 3.174000000000000e-01 + 2.715500000000000e-01 + 2.126000000000000e-01 + 1.570300000000000e-01 + 1.244900000000000e-01 + 1.297200000000000e-01 + 1.764400000000000e-01 + 2.563900000000000e-01 + 3.528600000000000e-01 + 4.445900000000000e-01 + 5.080200000000000e-01 + 5.190200000000000e-01 + 4.578600000000000e-01 + 3.179200000000000e-01 + 1.140000000000000e-01 +-1.168500000000000e-01 +-3.261500000000000e-01 +-4.729400000000000e-01 +-5.410199999999999e-01 +-5.440800000000000e-01 +-5.155200000000000e-01 +-4.884500000000000e-01 +-4.776400000000000e-01 +-4.730200000000000e-01 +-4.475700000000000e-01 +-3.739900000000000e-01 +-2.410500000000000e-01 +-6.154500000000000e-02 + 1.310100000000000e-01 + 2.947100000000000e-01 + 3.947700000000000e-01 + 4.159200000000000e-01 + 3.665100000000000e-01 + 2.729200000000000e-01 + 1.669600000000000e-01 + 7.212700000000000e-02 +-4.488400000000000e-03 +-7.110100000000000e-02 +-1.423500000000000e-01 +-2.282200000000000e-01 +-3.268900000000000e-01 +-4.241800000000000e-01 +-4.983400000000000e-01 +-5.264799999999999e-01 +-4.903600000000000e-01 +-3.814200000000000e-01 +-2.053900000000000e-01 + 1.461500000000000e-02 + 2.403800000000000e-01 + 4.286000000000000e-01 + 5.465900000000000e-01 + 5.858600000000000e-01 + 5.647000000000000e-01 + 5.166100000000000e-01 + 4.707100000000000e-01 + 4.365900000000000e-01 + 4.034100000000000e-01 + 3.535300000000000e-01 + 2.799500000000000e-01 + 1.947400000000000e-01 + 1.219500000000000e-01 + 8.093300000000000e-02 + 7.279099999999999e-02 + 8.018400000000001e-02 + 8.020900000000000e-02 + 6.011600000000000e-02 + 2.398700000000000e-02 +-1.398400000000000e-02 +-4.352000000000000e-02 +-6.843200000000001e-02 +-1.054200000000000e-01 +-1.730000000000000e-01 +-2.790500000000000e-01 +-4.150900000000000e-01 +-5.596800000000000e-01 +-6.867700000000000e-01 +-7.730600000000000e-01 +-8.017000000000000e-01 +-7.640100000000000e-01 +-6.613000000000000e-01 +-5.070900000000000e-01 +-3.262000000000000e-01 +-1.483300000000000e-01 + 2.482100000000000e-03 + 1.167500000000000e-01 + 2.008000000000000e-01 + 2.692000000000000e-01 + 3.335300000000000e-01 + 3.949000000000000e-01 + 4.446900000000000e-01 + 4.715700000000000e-01 + 4.688400000000000e-01 + 4.370800000000000e-01 + 3.821000000000000e-01 + 3.121100000000000e-01 + 2.373300000000000e-01 + 1.713700000000000e-01 + 1.301900000000000e-01 + 1.256100000000000e-01 + 1.561800000000000e-01 + 2.023200000000000e-01 + 2.322800000000000e-01 + 2.179100000000000e-01 + 1.514400000000000e-01 + 5.177500000000000e-02 +-4.489200000000000e-02 +-1.050200000000000e-01 +-1.154000000000000e-01 +-8.769800000000000e-02 +-4.796400000000000e-02 +-1.981200000000000e-02 +-1.291200000000000e-02 +-2.308200000000000e-02 +-4.075800000000000e-02 +-5.894300000000000e-02 +-7.420599999999999e-02 +-8.200700000000000e-02 +-7.371100000000000e-02 +-4.129300000000000e-02 + 1.190400000000000e-02 + 6.349000000000000e-02 + 7.669600000000000e-02 + 1.838300000000000e-02 +-1.195500000000000e-01 +-3.100700000000000e-01 +-5.009700000000000e-01 +-6.405000000000000e-01 +-7.031700000000000e-01 +-6.992600000000000e-01 +-6.623500000000000e-01 +-6.234499999999999e-01 +-5.891200000000000e-01 +-5.375799999999999e-01 +-4.344800000000000e-01 +-2.571400000000000e-01 +-1.135700000000000e-02 + 2.689400000000000e-01 + 5.375300000000000e-01 + 7.563400000000000e-01 + 9.082800000000000e-01 + 9.970599999999999e-01 + 1.036600000000000e+00 + 1.038600000000000e+00 + 1.005100000000000e+00 + 9.298900000000000e-01 + 8.053900000000001e-01 + 6.317900000000000e-01 + 4.225800000000000e-01 + 2.042600000000000e-01 + 9.238900000000000e-03 +-1.358900000000000e-01 +-2.220900000000000e-01 +-2.636400000000000e-01 +-2.933700000000000e-01 +-3.478500000000000e-01 +-4.490100000000000e-01 +-5.919600000000000e-01 +-7.463300000000000e-01 +-8.709700000000000e-01 +-9.337400000000000e-01 +-9.249700000000000e-01 +-8.573300000000000e-01 +-7.536000000000000e-01 +-6.312800000000000e-01 +-4.941000000000000e-01 +-3.347500000000000e-01 +-1.457300000000000e-01 + 7.009400000000000e-02 + 2.956800000000000e-01 + 5.044900000000000e-01 + 6.698700000000000e-01 + 7.737200000000000e-01 + 8.111500000000000e-01 + 7.901899999999999e-01 + 7.277600000000000e-01 + 6.433700000000000e-01 + 5.519600000000000e-01 + 4.585900000000000e-01 + 3.580300000000000e-01 + 2.406800000000000e-01 + 1.028100000000000e-01 +-4.526600000000000e-02 +-1.792200000000000e-01 +-2.709500000000000e-01 +-3.037100000000000e-01 +-2.826100000000000e-01 +-2.334900000000000e-01 +-1.903000000000000e-01 +-1.789500000000000e-01 +-2.070800000000000e-01 +-2.644500000000000e-01 +-3.307600000000000e-01 +-3.842300000000000e-01 +-4.063200000000000e-01 +-3.834500000000000e-01 +-3.099300000000000e-01 +-1.934500000000000e-01 +-5.891000000000000e-02 + 5.618100000000000e-02 + 1.168300000000000e-01 + 1.095300000000000e-01 + 5.232800000000000e-02 +-1.313500000000000e-02 +-4.482600000000000e-02 +-2.444700000000000e-02 + 3.395000000000000e-02 + 9.692700000000000e-02 + 1.368200000000000e-01 + 1.509500000000000e-01 + 1.613400000000000e-01 + 1.961900000000000e-01 + 2.676100000000000e-01 + 3.620600000000000e-01 + 4.490300000000000e-01 + 4.997400000000000e-01 + 5.009200000000000e-01 + 4.549000000000000e-01 + 3.694900000000000e-01 + 2.491700000000000e-01 + 9.634700000000000e-02 +-7.928300000000001e-02 +-2.540000000000000e-01 +-3.951200000000000e-01 +-4.769100000000000e-01 +-4.958000000000000e-01 +-4.720900000000000e-01 +-4.352200000000000e-01 +-4.027600000000000e-01 +-3.686100000000000e-01 +-3.097800000000000e-01 +-2.068000000000000e-01 +-6.269600000000000e-02 + 9.327500000000000e-02 + 2.197700000000000e-01 + 2.849600000000000e-01 + 2.812300000000000e-01 + 2.245100000000000e-01 + 1.415800000000000e-01 + 5.568300000000000e-02 +-2.054800000000000e-02 +-8.317800000000000e-02 +-1.314000000000000e-01 +-1.642900000000000e-01 +-1.815200000000000e-01 +-1.851300000000000e-01 +-1.787800000000000e-01 +-1.645000000000000e-01 +-1.406500000000000e-01 +-1.040800000000000e-01 +-5.536000000000000e-02 +-1.955400000000000e-03 + 4.536000000000000e-02 + 8.189399999999999e-02 + 1.171400000000000e-01 + 1.734100000000000e-01 + 2.726200000000000e-01 + 4.180600000000000e-01 + 5.832200000000000e-01 + 7.171200000000000e-01 + 7.652300000000000e-01 + 6.949600000000000e-01 + 5.110900000000000e-01 + 2.524900000000000e-01 +-2.715000000000000e-02 +-2.823900000000000e-01 +-4.898600000000000e-01 +-6.467100000000000e-01 +-7.578100000000000e-01 +-8.225900000000000e-01 +-8.307900000000000e-01 +-7.693200000000000e-01 +-6.341200000000000e-01 +-4.381500000000000e-01 +-2.093100000000000e-01 + 2.005500000000000e-02 + 2.254600000000000e-01 + 3.966300000000000e-01 + 5.349000000000000e-01 + 6.447400000000000e-01 + 7.256100000000000e-01 + 7.694299999999999e-01 + 7.641600000000000e-01 + 7.003800000000000e-01 + 5.763600000000000e-01 + 3.996300000000000e-01 + 1.856400000000000e-01 +-4.465300000000000e-02 +-2.673600000000000e-01 +-4.591200000000000e-01 +-6.020700000000000e-01 +-6.889400000000000e-01 +-7.252000000000000e-01 +-7.257200000000000e-01 +-7.067099999999999e-01 +-6.775200000000000e-01 +-6.375500000000000e-01 +-5.802500000000000e-01 +-5.007000000000000e-01 +-4.007900000000000e-01 +-2.875800000000000e-01 +-1.667700000000000e-01 +-3.706000000000000e-02 + 1.086900000000000e-01 + 2.757500000000000e-01 + 4.589300000000000e-01 + 6.401400000000000e-01 + 7.946900000000000e-01 + 9.018100000000000e-01 + 9.520600000000000e-01 + 9.472500000000000e-01 + 8.949900000000000e-01 + 8.040300000000000e-01 + 6.843000000000000e-01 + 5.496500000000000e-01 + 4.171500000000000e-01 + 2.995800000000000e-01 + 1.952200000000000e-01 + 8.440599999999999e-02 +-6.009500000000000e-02 +-2.526700000000000e-01 +-4.777300000000000e-01 +-6.901100000000000e-01 +-8.362300000000000e-01 +-8.837200000000000e-01 +-8.397200000000000e-01 +-7.447700000000000e-01 +-6.460300000000000e-01 +-5.685200000000000e-01 +-5.040800000000000e-01 +-4.244400000000000e-01 +-3.074600000000000e-01 +-1.568500000000000e-01 +-2.186200000000000e-03 + 1.184700000000000e-01 + 1.793200000000000e-01 + 1.766900000000000e-01 + 1.248700000000000e-01 + 4.545400000000000e-02 +-3.939400000000000e-02 +-1.069400000000000e-01 +-1.328800000000000e-01 +-9.692000000000001e-02 + 4.675900000000000e-03 + 1.491200000000000e-01 + 2.908700000000000e-01 + 3.819800000000000e-01 + 3.982500000000000e-01 + 3.540900000000000e-01 + 2.946800000000000e-01 + 2.696300000000000e-01 + 3.049000000000000e-01 + 3.906100000000000e-01 + 4.906500000000000e-01 + 5.652500000000000e-01 + 5.903300000000000e-01 + 5.628900000000000e-01 + 4.933900000000000e-01 + 3.946700000000000e-01 + 2.764900000000000e-01 + 1.469600000000000e-01 + 1.491500000000000e-02 +-1.124000000000000e-01 +-2.355200000000000e-01 +-3.660700000000000e-01 +-5.205800000000000e-01 +-7.060300000000000e-01 +-9.064900000000000e-01 +-1.082000000000000e+00 +-1.183100000000000e+00 +-1.174500000000000e+00 +-1.051700000000000e+00 +-8.414900000000000e-01 +-5.843400000000000e-01 +-3.121300000000000e-01 +-3.470400000000000e-02 + 2.550900000000000e-01 + 5.621100000000000e-01 + 8.691100000000000e-01 + 1.130900000000000e+00 + 1.289100000000000e+00 + 1.299300000000000e+00 + 1.157100000000000e+00 + 9.042100000000000e-01 + 6.120900000000000e-01 + 3.487700000000000e-01 + 1.487800000000000e-01 + 2.551400000000000e-03 +-1.285000000000000e-01 +-2.808700000000000e-01 +-4.613800000000000e-01 +-6.403400000000000e-01 +-7.691700000000000e-01 +-8.106400000000000e-01 +-7.618100000000000e-01 +-6.552400000000000e-01 +-5.391600000000000e-01 +-4.505100000000000e-01 +-3.980600000000000e-01 +-3.641900000000000e-01 +-3.204100000000000e-01 +-2.438800000000000e-01 +-1.249100000000000e-01 + 3.558500000000000e-02 + 2.313700000000000e-01 + 4.521300000000000e-01 + 6.800500000000000e-01 + 8.875700000000000e-01 + 1.041900000000000e+00 + 1.115400000000000e+00 + 1.094800000000000e+00 + 9.826400000000000e-01 + 7.902200000000000e-01 + 5.306300000000000e-01 + 2.185500000000000e-01 +-1.220800000000000e-01 +-4.512500000000000e-01 +-7.174100000000000e-01 +-8.753300000000001e-01 +-9.073400000000000e-01 +-8.324000000000000e-01 +-6.948500000000000e-01 +-5.391700000000000e-01 +-3.887200000000000e-01 +-2.430700000000000e-01 +-9.445099999999999e-02 + 5.166600000000000e-02 + 1.699400000000000e-01 + 2.289200000000000e-01 + 2.142000000000000e-01 + 1.418300000000000e-01 + 4.974600000000000e-02 +-2.687700000000000e-02 +-7.773099999999999e-02 +-1.197700000000000e-01 +-1.784300000000000e-01 +-2.628800000000000e-01 +-3.545900000000000e-01 +-4.178400000000000e-01 +-4.229600000000000e-01 +-3.641300000000000e-01 +-2.587700000000000e-01 +-1.310400000000000e-01 + 5.925600000000000e-03 + 1.544600000000000e-01 + 3.209300000000000e-01 + 4.993400000000000e-01 + 6.644600000000001e-01 + 7.811800000000000e-01 + 8.239200000000000e-01 + 7.920800000000000e-01 + 7.109200000000000e-01 + 6.177000000000000e-01 + 5.421700000000000e-01 + 4.930000000000000e-01 + 4.566300000000000e-01 + 4.069200000000000e-01 + 3.196400000000000e-01 + 1.846700000000000e-01 + 1.138800000000000e-02 +-1.746600000000000e-01 +-3.428400000000000e-01 +-4.720000000000000e-01 +-5.614500000000000e-01 +-6.316100000000000e-01 +-7.119500000000000e-01 +-8.220499999999999e-01 +-9.571800000000000e-01 +-1.087900000000000e+00 +-1.175100000000000e+00 +-1.189500000000000e+00 +-1.123100000000000e+00 +-9.845400000000000e-01 +-7.846900000000000e-01 +-5.246800000000000e-01 +-1.992000000000000e-01 + 1.871000000000000e-01 + 6.029300000000000e-01 + 9.887100000000000e-01 + 1.275100000000000e+00 + 1.411900000000000e+00 + 1.388800000000000e+00 + 1.236500000000000e+00 + 1.008300000000000e+00 + 7.564000000000000e-01 + 5.169800000000000e-01 + 3.105400000000000e-01 + 1.500200000000000e-01 + 4.656600000000000e-02 + 7.101700000000000e-03 + 2.701200000000000e-02 + 8.650200000000000e-02 + 1.555400000000000e-01 + 2.046300000000000e-01 + 2.136500000000000e-01 + 1.734300000000000e-01 + 8.148500000000000e-02 +-6.134100000000000e-02 +-2.488000000000000e-01 +-4.635200000000000e-01 +-6.747900000000000e-01 +-8.455200000000000e-01 +-9.463500000000000e-01 +-9.680299999999999e-01 +-9.231300000000000e-01 +-8.354300000000000e-01 +-7.245600000000000e-01 +-5.967700000000000e-01 +-4.477600000000000e-01 +-2.740700000000000e-01 +-8.307000000000000e-02 + 1.064000000000000e-01 + 2.732600000000000e-01 + 4.058800000000000e-01 + 5.074600000000000e-01 + 5.912800000000000e-01 + 6.692500000000000e-01 + 7.413800000000000e-01 + 7.925300000000000e-01 + 7.980300000000000e-01 + 7.349800000000000e-01 + 5.942600000000000e-01 + 3.882500000000000e-01 + 1.508600000000000e-01 +-7.139200000000000e-02 +-2.352200000000000e-01 +-3.173000000000000e-01 +-3.235800000000000e-01 +-2.849000000000000e-01 +-2.396700000000000e-01 +-2.129100000000000e-01 +-2.042400000000000e-01 +-1.930700000000000e-01 +-1.576100000000000e-01 +-9.468000000000000e-02 +-2.614600000000000e-02 + 1.298100000000000e-02 +-3.190600000000000e-03 +-7.422300000000000e-02 +-1.727600000000000e-01 +-2.600700000000000e-01 +-3.063400000000000e-01 +-3.021300000000000e-01 +-2.557600000000000e-01 +-1.817600000000000e-01 +-9.136200000000000e-02 + 8.528000000000001e-03 + 1.097100000000000e-01 + 1.985800000000000e-01 + 2.593900000000000e-01 + 2.834200000000000e-01 + 2.763900000000000e-01 + 2.569300000000000e-01 + 2.461500000000000e-01 + 2.551500000000000e-01 + 2.789500000000000e-01 + 3.001600000000000e-01 + 2.985300000000000e-01 + 2.593700000000000e-01 + 1.770300000000000e-01 + 5.471700000000000e-02 +-9.551900000000001e-02 +-2.513900000000000e-01 +-3.810300000000000e-01 +-4.503100000000000e-01 +-4.369200000000000e-01 +-3.440200000000000e-01 +-2.033100000000000e-01 +-6.245500000000000e-02 + 3.780900000000000e-02 + 8.301200000000000e-02 + 8.817100000000000e-02 + 8.266300000000000e-02 + 8.725900000000000e-02 + 9.931000000000000e-02 + 9.616600000000000e-02 + 5.381200000000000e-02 +-3.298400000000000e-02 +-1.433000000000000e-01 +-2.403400000000000e-01 +-2.919200000000000e-01 +-2.873000000000000e-01 +-2.403300000000000e-01 +-1.785600000000000e-01 +-1.271500000000000e-01 +-9.788800000000000e-02 +-8.845000000000000e-02 +-8.925800000000000e-02 +-9.100900000000001e-02 +-8.754600000000000e-02 +-7.366000000000000e-02 +-4.165000000000000e-02 + 1.899300000000000e-02 + 1.173600000000000e-01 + 2.546900000000000e-01 + 4.198600000000000e-01 + 5.901100000000000e-01 + 7.371500000000000e-01 + 8.361000000000000e-01 + 8.730100000000000e-01 + 8.472499999999999e-01 + 7.675800000000000e-01 + 6.443700000000000e-01 + 4.828300000000000e-01 + 2.823200000000000e-01 + 4.320300000000000e-02 +-2.225200000000000e-01 +-4.849300000000000e-01 +-7.010300000000000e-01 +-8.313199999999999e-01 +-8.599400000000000e-01 +-8.060400000000000e-01 +-7.172900000000000e-01 +-6.470300000000000e-01 +-6.274900000000000e-01 +-6.549900000000000e-01 +-6.960700000000000e-01 +-7.100900000000000e-01 +-6.732399999999999e-01 +-5.885600000000000e-01 +-4.766000000000000e-01 +-3.554400000000000e-01 +-2.254900000000000e-01 +-7.068900000000000e-02 + 1.254700000000000e-01 + 3.614400000000000e-01 + 6.111300000000000e-01 + 8.346100000000000e-01 + 9.984900000000000e-01 + 1.091600000000000e+00 + 1.124900000000000e+00 + 1.117200000000000e+00 + 1.077400000000000e+00 + 9.970900000000000e-01 + 8.588200000000000e-01 + 6.537100000000000e-01 + 3.953800000000000e-01 + 1.200100000000000e-01 +-1.280600000000000e-01 +-3.161600000000000e-01 +-4.366100000000000e-01 +-5.062600000000000e-01 +-5.537200000000000e-01 +-6.026700000000000e-01 +-6.601500000000000e-01 +-7.150600000000000e-01 +-7.457300000000000e-01 +-7.317200000000000e-01 +-6.639600000000000e-01 +-5.491100000000000e-01 +-4.068500000000000e-01 +-2.615500000000000e-01 +-1.320400000000000e-01 +-2.452500000000000e-02 + 6.756700000000000e-02 + 1.558600000000000e-01 + 2.453500000000000e-01 + 3.257200000000000e-01 + 3.720500000000000e-01 + 3.566300000000000e-01 + 2.665700000000000e-01 + 1.176600000000000e-01 +-4.458800000000000e-02 +-1.595000000000000e-01 +-1.760700000000000e-01 +-7.646000000000000e-02 + 1.132400000000000e-01 + 3.310800000000000e-01 + 5.032200000000000e-01 + 5.733900000000000e-01 + 5.245600000000000e-01 + 3.830400000000000e-01 + 2.034600000000000e-01 + 4.242500000000000e-02 +-6.587100000000000e-02 +-1.199600000000000e-01 +-1.433700000000000e-01 +-1.649200000000000e-01 +-1.998600000000000e-01 +-2.430800000000000e-01 +-2.771400000000000e-01 +-2.877400000000000e-01 +-2.745400000000000e-01 +-2.498000000000000e-01 +-2.266000000000000e-01 +-2.069900000000000e-01 +-1.799100000000000e-01 +-1.308600000000000e-01 +-5.548300000000000e-02 + 3.427100000000000e-02 + 1.167800000000000e-01 + 1.751600000000000e-01 + 2.078000000000000e-01 + 2.262000000000000e-01 + 2.417200000000000e-01 + 2.522200000000000e-01 + 2.402300000000000e-01 + 1.853200000000000e-01 + 8.178500000000000e-02 +-5.190700000000000e-02 +-1.794900000000000e-01 +-2.649100000000000e-01 +-2.893000000000000e-01 +-2.561500000000000e-01 +-1.833200000000000e-01 +-9.046600000000000e-02 + 8.279399999999999e-03 + 1.028500000000000e-01 + 1.824600000000000e-01 + 2.352300000000000e-01 + 2.546800000000000e-01 + 2.472300000000000e-01 + 2.321800000000000e-01 + 2.311700000000000e-01 + 2.532900000000000e-01 + 2.871900000000000e-01 + 3.066700000000000e-01 + 2.860400000000000e-01 + 2.138800000000000e-01 + 9.569600000000000e-02 +-5.427800000000000e-02 +-2.229800000000000e-01 +-4.004100000000000e-01 +-5.723900000000000e-01 +-7.130800000000000e-01 +-7.877700000000000e-01 +-7.684200000000000e-01 +-6.520500000000000e-01 +-4.678700000000000e-01 +-2.655500000000000e-01 +-9.122600000000000e-02 + 3.260600000000000e-02 + 1.103900000000000e-01 + 1.599600000000000e-01 + 1.947000000000000e-01 + 2.159200000000000e-01 + 2.198600000000000e-01 + 2.106200000000000e-01 + 2.054500000000000e-01 + 2.259400000000000e-01 + 2.816300000000000e-01 + 3.598800000000000e-01 + 4.313000000000000e-01 + 4.672600000000000e-01 + 4.563300000000000e-01 + 4.075600000000000e-01 + 3.398000000000000e-01 + 2.674500000000000e-01 + 1.948400000000000e-01 + 1.226400000000000e-01 + 5.821900000000000e-02 + 1.795900000000000e-02 + 1.696900000000000e-02 + 5.356600000000000e-02 + 1.022700000000000e-01 + 1.233600000000000e-01 + 8.413100000000000e-02 +-2.293800000000000e-02 +-1.779400000000000e-01 +-3.480500000000000e-01 +-5.070500000000000e-01 +-6.449800000000000e-01 +-7.619100000000000e-01 +-8.529900000000000e-01 +-8.988900000000000e-01 +-8.709300000000000e-01 +-7.481300000000000e-01 +-5.334100000000001e-01 +-2.568200000000000e-01 + 3.674300000000000e-02 + 3.066800000000000e-01 + 5.298000000000000e-01 + 7.001100000000000e-01 + 8.181000000000000e-01 + 8.794800000000000e-01 + 8.721800000000000e-01 + 7.834800000000000e-01 + 6.113200000000000e-01 + 3.717800000000000e-01 + 9.768100000000000e-02 +-1.703200000000000e-01 +-3.947200000000000e-01 +-5.488400000000000e-01 +-6.189800000000000e-01 +-6.024800000000000e-01 +-5.049300000000000e-01 +-3.390700000000000e-01 +-1.255900000000000e-01 + 1.060700000000000e-01 + 3.195700000000000e-01 + 4.777500000000000e-01 + 5.520800000000000e-01 + 5.316000000000000e-01 + 4.269500000000000e-01 + 2.665700000000000e-01 + 8.625500000000000e-02 +-8.289900000000000e-02 +-2.220500000000000e-01 +-3.246400000000000e-01 +-3.905000000000000e-01 +-4.194100000000000e-01 +-4.088900000000000e-01 +-3.570800000000000e-01 +-2.674600000000000e-01 +-1.507600000000000e-01 +-2.223800000000000e-02 + 1.037100000000000e-01 + 2.174600000000000e-01 + 3.144400000000000e-01 + 3.924800000000000e-01 + 4.495300000000000e-01 + 4.834400000000000e-01 + 4.929900000000000e-01 + 4.777600000000000e-01 + 4.359200000000000e-01 + 3.622200000000000e-01 + 2.496900000000000e-01 + 9.597200000000000e-02 +-8.919700000000000e-02 +-2.817500000000000e-01 +-4.498600000000000e-01 +-5.668000000000000e-01 +-6.219600000000000e-01 +-6.230100000000000e-01 +-5.879400000000000e-01 +-5.336600000000000e-01 +-4.698100000000000e-01 +-4.015400000000000e-01 +-3.370800000000000e-01 +-2.912600000000000e-01 +-2.796400000000000e-01 +-3.059400000000000e-01 +-3.526700000000000e-01 +-3.838500000000000e-01 +-3.605400000000000e-01 +-2.607600000000000e-01 +-9.143600000000000e-02 + 1.148500000000000e-01 + 3.158100000000000e-01 + 4.784900000000000e-01 + 5.910300000000001e-01 + 6.627400000000000e-01 + 7.147900000000000e-01 + 7.678700000000001e-01 + 8.324400000000000e-01 + 9.043600000000001e-01 + 9.665000000000000e-01 + 9.953200000000000e-01 + 9.705600000000000e-01 + 8.842300000000000e-01 + 7.444100000000000e-01 + 5.710800000000000e-01 + 3.857200000000000e-01 + 2.010100000000000e-01 + 1.745000000000000e-02 +-1.707900000000000e-01 +-3.657900000000000e-01 +-5.597500000000000e-01 +-7.378600000000000e-01 +-8.877300000000000e-01 +-1.006800000000000e+00 +-1.101100000000000e+00 +-1.175100000000000e+00 +-1.223000000000000e+00 +-1.229500000000000e+00 +-1.181000000000000e+00 +-1.080600000000000e+00 +-9.518600000000000e-01 +-8.266800000000000e-01 +-7.246800000000000e-01 +-6.380300000000000e-01 +-5.343400000000000e-01 +-3.768200000000000e-01 +-1.479300000000000e-01 + 1.393900000000000e-01 + 4.498100000000000e-01 + 7.454600000000000e-01 + 1.002700000000000e+00 + 1.214700000000000e+00 + 1.382500000000000e+00 + 1.503500000000000e+00 + 1.570300000000000e+00 + 1.578800000000000e+00 + 1.536700000000000e+00 + 1.461500000000000e+00 + 1.367100000000000e+00 + 1.247800000000000e+00 + 1.074000000000000e+00 + 8.074500000000000e-01 + 4.276600000000000e-01 +-4.627500000000000e-02 +-5.539100000000000e-01 +-1.014200000000000e+00 +-1.356700000000000e+00 +-1.546700000000000e+00 +-1.590000000000000e+00 +-1.521000000000000e+00 +-1.381900000000000e+00 +-1.207600000000000e+00 +-1.020800000000000e+00 +-8.357900000000000e-01 +-6.629800000000000e-01 +-5.094900000000000e-01 +-3.766700000000000e-01 +-2.587100000000000e-01 +-1.458300000000000e-01 +-3.118800000000000e-02 + 8.322100000000000e-02 + 1.866000000000000e-01 + 2.661900000000000e-01 + 3.166000000000000e-01 + 3.452400000000000e-01 + 3.694400000000000e-01 + 4.066700000000000e-01 + 4.640400000000000e-01 + 5.340300000000000e-01 + 5.994600000000000e-01 + 6.445200000000000e-01 + 6.641700000000000e-01 + 6.656800000000000e-01 + 6.611500000000000e-01 + 6.563800000000000e-01 + 6.443400000000000e-01 + 6.076200000000000e-01 + 5.283800000000000e-01 + 3.985400000000000e-01 + 2.234900000000000e-01 + 1.792800000000000e-02 +-2.014600000000000e-01 +-4.197700000000000e-01 +-6.213300000000000e-01 +-7.848200000000000e-01 +-8.831800000000000e-01 +-8.923300000000000e-01 +-8.053100000000000e-01 +-6.420300000000000e-01 +-4.462900000000000e-01 +-2.693800000000000e-01 +-1.488500000000000e-01 +-9.477900000000000e-02 +-9.067200000000000e-02 +-1.068200000000000e-01 +-1.165700000000000e-01 +-1.061400000000000e-01 +-7.502100000000000e-02 +-3.061600000000000e-02 + 1.695100000000000e-02 + 5.748000000000000e-02 + 8.254900000000000e-02 + 8.919800000000000e-02 + 8.448799999999999e-02 + 8.628700000000000e-02 + 1.163200000000000e-01 + 1.873500000000000e-01 + 2.924800000000000e-01 + 4.053800000000000e-01 + 4.930600000000000e-01 + 5.336800000000000e-01 + 5.269100000000000e-01 + 4.895600000000000e-01 + 4.400700000000000e-01 + 3.841500000000000e-01 + 3.130100000000000e-01 + 2.153500000000000e-01 + 9.321699999999999e-02 +-3.179700000000000e-02 +-1.282000000000000e-01 +-1.738000000000000e-01 +-1.705200000000000e-01 +-1.440200000000000e-01 +-1.285100000000000e-01 +-1.474900000000000e-01 +-2.033500000000000e-01 +-2.809500000000000e-01 +-3.600400000000000e-01 +-4.260400000000000e-01 +-4.721200000000000e-01 +-4.936800000000000e-01 +-4.827000000000000e-01 +-4.282200000000000e-01 +-3.239400000000000e-01 +-1.771900000000000e-01 +-1.267600000000000e-02 + 1.325500000000000e-01 + 2.208000000000000e-01 + 2.272900000000000e-01 + 1.502700000000000e-01 + 1.414800000000000e-02 +-1.364600000000000e-01 +-2.513900000000000e-01 +-2.945800000000000e-01 +-2.606200000000000e-01 +-1.783500000000000e-01 +-9.609100000000000e-02 +-5.347900000000000e-02 +-5.504000000000000e-02 +-6.306100000000001e-02 +-1.740600000000000e-02 + 1.272300000000000e-01 + 3.692400000000000e-01 + 6.544300000000000e-01 + 9.020000000000000e-01 + 1.046100000000000e+00 + 1.067000000000000e+00 + 9.921200000000000e-01 + 8.698100000000000e-01 + 7.350000000000000e-01 + 5.915800000000000e-01 + 4.213200000000000e-01 + 2.094800000000000e-01 +-3.442600000000000e-02 +-2.765600000000000e-01 +-4.781100000000000e-01 +-6.180000000000000e-01 +-7.013500000000000e-01 +-7.486900000000000e-01 +-7.765100000000000e-01 +-7.857900000000000e-01 +-7.672500000000000e-01 +-7.175700000000000e-01 +-6.514799999999999e-01 +-5.982100000000000e-01 +-5.838500000000000e-01 +-6.127500000000000e-01 +-6.619800000000000e-01 +-6.927000000000000e-01 +-6.694800000000000e-01 +-5.743500000000000e-01 +-4.077700000000000e-01 +-1.804800000000000e-01 + 9.359700000000000e-02 + 3.966400000000000e-01 + 7.010400000000000e-01 + 9.678900000000000e-01 + 1.156600000000000e+00 + 1.242000000000000e+00 + 1.228000000000000e+00 + 1.145000000000000e+00 + 1.032500000000000e+00 + 9.163400000000000e-01 + 7.982100000000000e-01 + 6.640100000000000e-01 + 5.037700000000001e-01 + 3.274600000000000e-01 + 1.634300000000000e-01 + 3.964800000000000e-02 +-3.816200000000000e-02 +-9.499400000000000e-02 +-1.741700000000000e-01 +-3.119000000000000e-01 +-5.154800000000000e-01 +-7.589500000000000e-01 +-9.975200000000000e-01 +-1.189700000000000e+00 +-1.312800000000000e+00 +-1.363200000000000e+00 +-1.345900000000000e+00 +-1.261700000000000e+00 +-1.103200000000000e+00 +-8.615600000000000e-01 +-5.381700000000000e-01 +-1.538800000000000e-01 + 2.506700000000000e-01 + 6.244800000000000e-01 + 9.213400000000000e-01 + 1.114400000000000e+00 + 1.204000000000000e+00 + 1.214400000000000e+00 + 1.180100000000000e+00 + 1.127100000000000e+00 + 1.060000000000000e+00 + 9.612200000000000e-01 + 8.064300000000000e-01 + 5.868000000000000e-01 + 3.237600000000000e-01 + 6.506400000000000e-02 +-1.376500000000000e-01 +-2.569800000000000e-01 +-3.051500000000000e-01 +-3.261500000000000e-01 +-3.688300000000000e-01 +-4.585500000000000e-01 +-5.851000000000000e-01 +-7.132600000000000e-01 +-8.068400000000000e-01 +-8.486900000000001e-01 +-8.443500000000000e-01 +-8.099800000000000e-01 +-7.562600000000000e-01 +-6.812100000000000e-01 +-5.754700000000000e-01 +-4.335100000000000e-01 +-2.605700000000000e-01 +-7.026100000000000e-02 + 1.230800000000000e-01 + 3.092700000000000e-01 + 4.800600000000000e-01 + 6.233700000000000e-01 + 7.218100000000000e-01 + 7.599700000000000e-01 + 7.364200000000000e-01 + 6.706500000000000e-01 + 5.973100000000000e-01 + 5.491300000000000e-01 + 5.387900000000000e-01 + 5.515200000000000e-01 + 5.533700000000000e-01 + 5.098600000000000e-01 + 4.038000000000000e-01 + 2.427900000000000e-01 + 5.411500000000000e-02 +-1.281800000000000e-01 +-2.769000000000000e-01 +-3.805600000000000e-01 +-4.453400000000000e-01 +-4.901300000000000e-01 +-5.359900000000000e-01 +-5.935300000000000e-01 +-6.540200000000000e-01 +-6.906000000000000e-01 +-6.716100000000000e-01 +-5.801900000000000e-01 +-4.280600000000000e-01 +-2.528500000000000e-01 +-9.853700000000000e-02 + 9.240699999999999e-03 + 7.574200000000000e-02 + 1.279200000000000e-01 + 1.895100000000000e-01 + 2.588300000000000e-01 + 3.070400000000000e-01 + 2.993600000000000e-01 + 2.241000000000000e-01 + 1.070700000000000e-01 +-8.430000000000000e-04 +-5.513500000000000e-02 +-4.542400000000000e-02 + 1.279600000000000e-03 + 4.417500000000000e-02 + 6.117200000000000e-02 + 6.531200000000000e-02 + 9.230700000000000e-02 + 1.687100000000000e-01 + 2.854800000000000e-01 + 3.982800000000000e-01 + 4.556400000000000e-01 + 4.350200000000000e-01 + 3.599800000000000e-01 + 2.849400000000000e-01 + 2.576300000000000e-01 + 2.852600000000000e-01 + 3.280900000000000e-01 + 3.244800000000000e-01 + 2.296800000000000e-01 + 4.194900000000000e-02 +-1.999400000000000e-01 +-4.432900000000000e-01 +-6.510400000000000e-01 +-8.137300000000000e-01 +-9.379500000000000e-01 +-1.023800000000000e+00 +-1.051800000000000e+00 +-9.911200000000000e-01 +-8.230700000000000e-01 +-5.625400000000000e-01 +-2.584500000000000e-01 + 2.852600000000000e-02 + 2.568500000000000e-01 + 4.224100000000000e-01 + 5.516700000000000e-01 + 6.753300000000000e-01 + 8.017000000000000e-01 + 9.086800000000000e-01 + 9.594900000000000e-01 + 9.295600000000001e-01 + 8.250800000000000e-01 + 6.798600000000000e-01 + 5.339200000000000e-01 + 4.093100000000000e-01 + 2.999700000000000e-01 + 1.807600000000000e-01 + 2.750400000000000e-02 +-1.663500000000000e-01 +-3.860200000000000e-01 +-6.033900000000000e-01 +-7.884800000000000e-01 +-9.168700000000000e-01 +-9.721500000000000e-01 +-9.473900000000000e-01 +-8.486100000000000e-01 +-6.973400000000000e-01 +-5.264799999999999e-01 +-3.670700000000000e-01 +-2.320300000000000e-01 +-1.088300000000000e-01 + 3.116900000000000e-02 + 2.102100000000000e-01 + 4.232300000000000e-01 + 6.339900000000001e-01 + 7.923400000000000e-01 + 8.616500000000000e-01 + 8.374200000000001e-01 + 7.449100000000000e-01 + 6.190300000000000e-01 + 4.823100000000000e-01 + 3.370100000000000e-01 + 1.748000000000000e-01 +-6.257300000000000e-03 +-1.926100000000000e-01 +-3.609500000000000e-01 +-4.925900000000000e-01 +-5.829100000000000e-01 +-6.378100000000000e-01 +-6.607700000000000e-01 +-6.433700000000000e-01 +-5.690900000000000e-01 +-4.286700000000000e-01 +-2.344600000000000e-01 +-2.075200000000000e-02 + 1.721800000000000e-01 + 3.195000000000000e-01 + 4.230700000000000e-01 + 5.043299999999999e-01 + 5.844500000000000e-01 + 6.664200000000000e-01 + 7.316500000000000e-01 + 7.518700000000000e-01 + 7.064200000000000e-01 + 5.920700000000000e-01 + 4.201400000000000e-01 + 2.057400000000000e-01 +-4.072200000000000e-02 +-3.127900000000000e-01 +-5.996800000000000e-01 +-8.781800000000000e-01 +-1.112500000000000e+00 +-1.263200000000000e+00 +-1.300800000000000e+00 +-1.215500000000000e+00 +-1.019500000000000e+00 +-7.406500000000000e-01 +-4.133400000000000e-01 +-6.967800000000000e-02 + 2.642900000000000e-01 + 5.682600000000000e-01 + 8.245800000000000e-01 + 1.015700000000000e+00 + 1.124400000000000e+00 + 1.137700000000000e+00 + 1.052900000000000e+00 + 8.818500000000000e-01 + 6.501900000000000e-01 + 3.913700000000000e-01 + 1.377000000000000e-01 +-8.655200000000000e-02 +-2.668200000000000e-01 +-3.956300000000000e-01 +-4.694400000000000e-01 +-4.882700000000000e-01 +-4.582900000000000e-01 +-3.935200000000000e-01 +-3.131000000000000e-01 +-2.338100000000000e-01 +-1.625600000000000e-01 +-9.420300000000000e-02 +-1.711500000000000e-02 + 7.685500000000001e-02 + 1.846600000000000e-01 + 2.913100000000000e-01 + 3.757600000000000e-01 + 4.191000000000000e-01 + 4.101100000000000e-01 + 3.467300000000000e-01 + 2.351800000000000e-01 + 8.843500000000000e-02 +-7.563200000000000e-02 +-2.381300000000000e-01 +-3.846200000000000e-01 +-5.091200000000000e-01 +-6.124800000000000e-01 +-6.947100000000000e-01 +-7.466900000000000e-01 +-7.493500000000000e-01 +-6.839400000000000e-01 +-5.478600000000000e-01 +-3.636900000000000e-01 +-1.721500000000000e-01 +-1.078600000000000e-02 + 1.076000000000000e-01 + 2.005600000000000e-01 + 3.001500000000000e-01 + 4.263900000000000e-01 + 5.696099999999999e-01 + 6.955900000000000e-01 + 7.701000000000000e-01 + 7.841900000000001e-01 + 7.606400000000000e-01 + 7.361200000000000e-01 + 7.322900000000000e-01 + 7.376300000000000e-01 + 7.135600000000000e-01 + 6.202700000000000e-01 + 4.434400000000000e-01 + 2.035700000000000e-01 +-5.678500000000000e-02 +-2.965000000000000e-01 +-4.932100000000000e-01 +-6.447500000000000e-01 +-7.579100000000000e-01 +-8.362900000000000e-01 +-8.766100000000000e-01 +-8.737600000000000e-01 +-8.281100000000000e-01 +-7.478800000000000e-01 +-6.455700000000000e-01 +-5.329500000000000e-01 +-4.190600000000000e-01 +-3.117400000000000e-01 +-2.189300000000000e-01 +-1.465900000000000e-01 +-9.401500000000000e-02 +-5.096400000000000e-02 +-1.932200000000000e-04 + 7.522900000000000e-02 + 1.845300000000000e-01 + 3.261500000000000e-01 + 4.895500000000000e-01 + 6.587800000000000e-01 + 8.146000000000000e-01 + 9.353700000000000e-01 + 9.996400000000000e-01 + 9.921500000000000e-01 + 9.109200000000000e-01 + 7.698000000000000e-01 + 5.925500000000000e-01 + 4.012100000000000e-01 + 2.064200000000000e-01 + 7.213100000000000e-03 +-1.993000000000000e-01 +-4.060100000000000e-01 +-5.914199999999999e-01 +-7.272100000000000e-01 +-7.927500000000000e-01 +-7.862700000000000e-01 +-7.249100000000001e-01 +-6.345800000000000e-01 +-5.374200000000000e-01 +-4.455000000000000e-01 +-3.630600000000000e-01 +-2.929300000000000e-01 +-2.401500000000000e-01 +-2.097800000000000e-01 +-2.011500000000000e-01 +-2.038700000000000e-01 +-1.989100000000000e-01 +-1.644300000000000e-01 +-8.321199999999999e-02 + 5.079100000000000e-02 + 2.283500000000000e-01 + 4.244100000000000e-01 + 6.030700000000000e-01 + 7.291200000000000e-01 + 7.831500000000000e-01 + 7.721500000000000e-01 + 7.270600000000000e-01 + 6.850200000000000e-01 + 6.652000000000000e-01 + 6.538800000000000e-01 + 6.110200000000000e-01 + 4.963500000000000e-01 + 2.986900000000000e-01 + 4.809600000000000e-02 +-1.983700000000000e-01 +-3.882700000000000e-01 +-5.013700000000000e-01 +-5.551000000000000e-01 +-5.864200000000001e-01 +-6.254700000000000e-01 +-6.804000000000000e-01 +-7.418300000000000e-01 +-7.990300000000000e-01 +-8.507700000000000e-01 +-9.005900000000000e-01 +-9.409999999999999e-01 +-9.426099999999999e-01 +-8.614100000000000e-01 +-6.631100000000000e-01 +-3.492200000000000e-01 + 3.392100000000000e-02 + 4.110100000000000e-01 + 7.099400000000000e-01 + 8.916400000000000e-01 + 9.615500000000000e-01 + 9.591300000000000e-01 + 9.340400000000000e-01 + 9.228000000000000e-01 + 9.360400000000000e-01 + 9.591200000000000e-01 + 9.628200000000000e-01 + 9.184900000000000e-01 + 8.117400000000000e-01 + 6.494300000000000e-01 + 4.562100000000000e-01 + 2.612600000000000e-01 + 8.186400000000001e-02 +-8.628400000000000e-02 +-2.640800000000000e-01 +-4.710000000000000e-01 +-7.052100000000000e-01 +-9.363500000000000e-01 +-1.117600000000000e+00 +-1.210100000000000e+00 +-1.204100000000000e+00 +-1.120800000000000e+00 +-9.951800000000000e-01 +-8.515200000000001e-01 +-6.902700000000001e-01 +-4.950500000000000e-01 +-2.541400000000000e-01 + 2.046700000000000e-02 + 2.911200000000000e-01 + 5.113700000000000e-01 + 6.493500000000000e-01 + 7.012800000000000e-01 + 6.868000000000000e-01 + 6.313299999999999e-01 + 5.497100000000000e-01 + 4.429200000000000e-01 + 3.087600000000000e-01 + 1.564400000000000e-01 + 1.213300000000000e-02 +-9.009399999999999e-02 +-1.265300000000000e-01 +-9.856300000000000e-02 +-3.333000000000000e-02 + 3.108500000000000e-02 + 6.686300000000001e-02 + 7.104100000000001e-02 + 6.469800000000001e-02 + 7.767000000000000e-02 + 1.285100000000000e-01 + 2.117900000000000e-01 + 2.999200000000000e-01 + 3.573400000000000e-01 + 3.581600000000000e-01 + 2.968200000000000e-01 + 1.871300000000000e-01 + 5.234800000000000e-02 +-8.557700000000000e-02 +-2.110300000000000e-01 +-3.126600000000000e-01 +-3.789500000000000e-01 +-3.975100000000000e-01 +-3.603700000000000e-01 +-2.720700000000000e-01 +-1.535900000000000e-01 +-3.772900000000000e-02 + 4.283500000000000e-02 + 6.858499999999999e-02 + 4.000600000000000e-02 +-2.488100000000000e-02 +-1.000400000000000e-01 +-1.624200000000000e-01 +-1.995000000000000e-01 +-2.112900000000000e-01 +-2.075400000000000e-01 +-2.019900000000000e-01 +-2.055400000000000e-01 +-2.204000000000000e-01 +-2.375900000000000e-01 +-2.399300000000000e-01 +-2.097500000000000e-01 +-1.377300000000000e-01 +-2.745300000000000e-02 + 1.071300000000000e-01 + 2.491200000000000e-01 + 3.849700000000000e-01 + 5.045500000000001e-01 + 5.957900000000000e-01 + 6.403000000000000e-01 + 6.167899999999999e-01 + 5.132100000000001e-01 + 3.397500000000000e-01 + 1.322500000000000e-01 +-5.960800000000000e-02 +-1.938100000000000e-01 +-2.541600000000000e-01 +-2.537000000000000e-01 +-2.220400000000000e-01 +-1.863500000000000e-01 +-1.593100000000000e-01 +-1.401200000000000e-01 +-1.245900000000000e-01 +-1.133700000000000e-01 +-1.110600000000000e-01 +-1.180500000000000e-01 +-1.238000000000000e-01 +-1.094600000000000e-01 +-5.952200000000000e-02 + 2.580000000000000e-02 + 1.269000000000000e-01 + 2.129700000000000e-01 + 2.566800000000000e-01 + 2.462500000000000e-01 + 1.884000000000000e-01 + 1.027000000000000e-01 + 1.206800000000000e-02 +-6.533100000000000e-02 +-1.204600000000000e-01 +-1.538800000000000e-01 +-1.727300000000000e-01 +-1.846400000000000e-01 +-1.907700000000000e-01 +-1.825700000000000e-01 +-1.464400000000000e-01 +-7.595700000000000e-02 + 1.640500000000000e-02 + 9.839700000000000e-02 + 1.329200000000000e-01 + 1.015000000000000e-01 + 2.008400000000000e-02 +-6.646700000000000e-02 +-1.104100000000000e-01 +-9.089700000000001e-02 +-2.627700000000000e-02 + 4.056000000000000e-02 + 7.292100000000000e-02 + 6.407800000000000e-02 + 3.655200000000000e-02 + 1.914100000000000e-02 + 2.166500000000000e-02 + 2.856500000000000e-02 + 1.592400000000000e-02 +-2.379600000000000e-02 +-7.167800000000001e-02 +-9.652100000000000e-02 +-8.137400000000000e-02 +-3.911600000000000e-02 +-2.585700000000000e-03 + 3.331400000000000e-03 +-1.596800000000000e-02 +-2.777400000000000e-02 + 1.132800000000000e-03 + 7.594500000000000e-02 + 1.677600000000000e-01 + 2.355600000000000e-01 + 2.579100000000000e-01 + 2.474400000000000e-01 + 2.354300000000000e-01 + 2.395100000000000e-01 + 2.424200000000000e-01 + 2.015000000000000e-01 + 8.325399999999999e-02 +-1.040700000000000e-01 +-3.062400000000000e-01 +-4.517200000000000e-01 +-4.923800000000000e-01 +-4.268400000000000e-01 +-2.919100000000000e-01 +-1.326200000000000e-01 + 2.405400000000000e-02 + 1.727100000000000e-01 + 3.126900000000000e-01 + 4.296100000000000e-01 + 4.938100000000000e-01 + 4.777100000000000e-01 + 3.770100000000000e-01 + 2.175300000000000e-01 + 4.170300000000000e-02 +-1.145700000000000e-01 +-2.372800000000000e-01 +-3.322800000000000e-01 +-4.110900000000000e-01 +-4.777000000000000e-01 +-5.264400000000000e-01 +-5.489900000000000e-01 +-5.417700000000000e-01 +-5.063500000000000e-01 +-4.445900000000000e-01 +-3.558900000000000e-01 +-2.410900000000000e-01 +-1.093900000000000e-01 + 2.029200000000000e-02 + 1.282100000000000e-01 + 2.075400000000000e-01 + 2.709500000000000e-01 + 3.421500000000000e-01 + 4.366700000000000e-01 + 5.463000000000000e-01 + 6.402600000000001e-01 + 6.834100000000000e-01 + 6.585200000000000e-01 + 5.756100000000000e-01 + 4.622600000000000e-01 + 3.435200000000000e-01 + 2.283400000000000e-01 + 1.125900000000000e-01 +-5.599800000000000e-03 +-1.134300000000000e-01 +-1.866800000000000e-01 +-2.075600000000000e-01 +-1.829000000000000e-01 +-1.466100000000000e-01 +-1.422400000000000e-01 +-1.964400000000000e-01 +-3.016600000000000e-01 +-4.196000000000000e-01 +-5.022000000000000e-01 +-5.154500000000000e-01 +-4.517200000000000e-01 +-3.260500000000000e-01 +-1.637300000000000e-01 + 1.022300000000000e-02 + 1.739000000000000e-01 + 3.065100000000000e-01 + 3.882200000000000e-01 + 4.052800000000000e-01 + 3.568400000000000e-01 + 2.567400000000000e-01 + 1.265900000000000e-01 +-1.589900000000000e-02 +-1.648700000000000e-01 +-3.238000000000000e-01 +-4.936000000000000e-01 +-6.600300000000000e-01 +-7.904800000000000e-01 +-8.440800000000001e-01 +-7.901100000000000e-01 +-6.235900000000000e-01 +-3.687700000000000e-01 +-6.875700000000000e-02 + 2.320600000000000e-01 + 5.022400000000000e-01 + 7.271300000000001e-01 + 9.024700000000000e-01 + 1.024500000000000e+00 + 1.084700000000000e+00 + 1.072800000000000e+00 + 9.853300000000000e-01 + 8.325800000000000e-01 + 6.381599999999999e-01 + 4.308300000000000e-01 + 2.337100000000000e-01 + 5.811100000000000e-02 +-9.457300000000000e-02 +-2.253400000000000e-01 +-3.310800000000000e-01 +-4.045700000000000e-01 +-4.410600000000000e-01 +-4.458100000000000e-01 +-4.358600000000000e-01 +-4.332200000000000e-01 +-4.535100000000000e-01 +-4.975800000000000e-01 +-5.519200000000000e-01 +-5.973400000000000e-01 +-6.196600000000000e-01 +-6.151200000000000e-01 +-5.878100000000001e-01 +-5.422900000000000e-01 +-4.779800000000000e-01 +-3.897800000000000e-01 +-2.740000000000000e-01 +-1.347800000000000e-01 + 1.446500000000000e-02 + 1.559800000000000e-01 + 2.758300000000000e-01 + 3.702100000000000e-01 + 4.462700000000000e-01 + 5.171300000000000e-01 + 5.940700000000000e-01 + 6.796000000000000e-01 + 7.645700000000000e-01 + 8.303400000000000e-01 + 8.553200000000000e-01 + 8.232100000000000e-01 + 7.294900000000000e-01 + 5.830600000000000e-01 + 4.022200000000000e-01 + 2.074600000000000e-01 + 1.563300000000000e-02 +-1.611300000000000e-01 +-3.120800000000000e-01 +-4.245200000000000e-01 +-4.853200000000000e-01 +-4.881900000000000e-01 +-4.421600000000000e-01 +-3.735200000000000e-01 +-3.172500000000000e-01 +-3.010100000000000e-01 +-3.313000000000000e-01 +-3.910600000000000e-01 +-4.507700000000000e-01 +-4.859300000000000e-01 +-4.894000000000000e-01 +-4.708700000000000e-01 +-4.449700000000000e-01 +-4.173600000000000e-01 +-3.790600000000000e-01 +-3.123400000000000e-01 +-2.036900000000000e-01 +-5.433000000000000e-02 + 1.182100000000000e-01 + 2.876600000000000e-01 + 4.300100000000000e-01 + 5.315400000000000e-01 + 5.906000000000000e-01 + 6.142800000000000e-01 + 6.133100000000000e-01 + 5.979000000000000e-01 + 5.755400000000001e-01 + 5.502500000000000e-01 + 5.229100000000000e-01 + 4.922300000000000e-01 + 4.554500000000000e-01 + 4.082900000000000e-01 + 3.438600000000000e-01 + 2.522000000000000e-01 + 1.225400000000000e-01 +-5.079900000000000e-02 +-2.612300000000000e-01 +-4.860900000000000e-01 +-6.904200000000000e-01 +-8.379799999999999e-01 +-9.044400000000000e-01 +-8.856000000000001e-01 +-7.967700000000000e-01 +-6.645700000000000e-01 +-5.169899999999999e-01 +-3.764300000000000e-01 +-2.570600000000000e-01 +-1.641500000000000e-01 +-9.328300000000000e-02 +-3.058200000000000e-02 + 4.308600000000000e-02 + 1.425600000000000e-01 + 2.676500000000000e-01 + 3.989300000000000e-01 + 5.056200000000000e-01 + 5.631000000000000e-01 + 5.694700000000000e-01 + 5.492000000000000e-01 + 5.396300000000001e-01 + 5.676700000000000e-01 + 6.315800000000000e-01 + 6.995000000000000e-01 + 7.257400000000001e-01 + 6.738700000000000e-01 + 5.325600000000000e-01 + 3.161300000000000e-01 + 5.262200000000000e-02 +-2.304100000000000e-01 +-5.129200000000000e-01 +-7.798600000000000e-01 +-1.014000000000000e+00 +-1.191500000000000e+00 +-1.284700000000000e+00 +-1.271100000000000e+00 +-1.144100000000000e+00 +-9.200199999999999e-01 +-6.373200000000000e-01 +-3.473900000000000e-01 +-9.823100000000000e-02 + 8.284800000000000e-02 + 1.995600000000000e-01 + 2.830700000000000e-01 + 3.739100000000000e-01 + 4.978500000000000e-01 + 6.495900000000000e-01 + 7.951800000000000e-01 + 8.928199999999999e-01 + 9.186700000000000e-01 + 8.805400000000000e-01 + 8.100900000000000e-01 + 7.395900000000000e-01 + 6.804800000000000e-01 + 6.193500000000000e-01 + 5.330400000000000e-01 + 4.099200000000000e-01 + 2.599900000000000e-01 + 1.060300000000000e-01 +-3.585900000000000e-02 +-1.693500000000000e-01 +-3.131400000000000e-01 +-4.817100000000000e-01 +-6.677400000000000e-01 +-8.409400000000000e-01 +-9.649600000000000e-01 +-1.019400000000000e+00 +-1.009600000000000e+00 +-9.580700000000000e-01 +-8.850600000000000e-01 +-7.957700000000000e-01 +-6.832400000000000e-01 +-5.431000000000000e-01 +-3.853900000000000e-01 +-2.317300000000000e-01 +-9.942500000000000e-02 + 1.395500000000000e-02 + 1.311600000000000e-01 + 2.788600000000000e-01 + 4.661200000000000e-01 + 6.744400000000000e-01 + 8.667800000000000e-01 + 1.008400000000000e+00 + 1.083600000000000e+00 + 1.095900000000000e+00 + 1.056100000000000e+00 + 9.684700000000001e-01 + 8.295300000000000e-01 + 6.389200000000000e-01 + 4.118100000000000e-01 + 1.795500000000000e-01 +-2.420900000000000e-02 +-1.822200000000000e-01 +-3.018500000000000e-01 +-4.055800000000000e-01 +-5.103200000000000e-01 +-6.116700000000000e-01 +-6.853800000000000e-01 +-7.049700000000000e-01 +-6.618100000000000e-01 +-5.723800000000000e-01 +-4.675100000000000e-01 +-3.727300000000000e-01 +-2.947000000000000e-01 +-2.234100000000000e-01 +-1.465200000000000e-01 +-6.314300000000000e-02 + 1.432900000000000e-02 + 7.109400000000000e-02 + 1.035500000000000e-01 + 1.234600000000000e-01 + 1.485600000000000e-01 + 1.869000000000000e-01 + 2.277800000000000e-01 + 2.471900000000000e-01 + 2.244300000000000e-01 + 1.577000000000000e-01 + 6.715599999999999e-02 +-1.667000000000000e-02 +-7.043600000000000e-02 +-8.883300000000000e-02 +-8.190799999999999e-02 +-6.263600000000000e-02 +-3.567500000000000e-02 + 3.514400000000000e-03 + 5.901700000000000e-02 + 1.230600000000000e-01 + 1.734300000000000e-01 + 1.836100000000000e-01 + 1.392200000000000e-01 + 4.903500000000000e-02 +-5.806100000000000e-02 +-1.486200000000000e-01 +-2.023400000000000e-01 +-2.199400000000000e-01 +-2.162500000000000e-01 +-2.043700000000000e-01 +-1.826900000000000e-01 +-1.344800000000000e-01 +-4.025100000000000e-02 + 1.056100000000000e-01 + 2.856700000000000e-01 + 4.639900000000000e-01 + 6.013600000000000e-01 + 6.718300000000000e-01 + 6.707900000000000e-01 + 6.112300000000001e-01 + 5.123600000000000e-01 + 3.887100000000000e-01 + 2.459700000000000e-01 + 8.473600000000001e-02 +-9.215600000000000e-02 +-2.744200000000000e-01 +-4.447700000000000e-01 +-5.843200000000000e-01 +-6.790500000000000e-01 +-7.232000000000000e-01 +-7.180100000000000e-01 +-6.675000000000000e-01 +-5.752500000000000e-01 +-4.454000000000000e-01 +-2.878300000000000e-01 +-1.234300000000000e-01 + 1.628300000000000e-02 + 9.819799999999999e-02 + 1.029800000000000e-01 + 3.810600000000000e-02 +-6.074300000000000e-02 +-1.441100000000000e-01 +-1.729800000000000e-01 +-1.393400000000000e-01 +-6.969000000000000e-02 +-7.849399999999999e-03 + 1.330100000000000e-02 +-6.445200000000000e-03 +-3.363600000000000e-02 +-2.178600000000000e-02 + 5.992000000000000e-02 + 2.086000000000000e-01 + 3.913600000000000e-01 + 5.666000000000000e-01 + 7.068700000000000e-01 + 8.079499999999999e-01 + 8.796800000000000e-01 + 9.284600000000000e-01 + 9.464399999999999e-01 + 9.155200000000000e-01 + 8.219300000000000e-01 + 6.678700000000000e-01 + 4.699700000000000e-01 + 2.458900000000000e-01 + 1.124500000000000e-03 +-2.710300000000000e-01 +-5.740100000000000e-01 +-8.882600000000000e-01 +-1.164100000000000e+00 +-1.336800000000000e+00 +-1.356900000000000e+00 +-1.218500000000000e+00 +-9.666100000000000e-01 +-6.780900000000000e-01 +-4.286500000000000e-01 +-2.638100000000000e-01 +-1.891000000000000e-01 +-1.800000000000000e-01 +-2.008600000000000e-01 +-2.196100000000000e-01 +-2.122900000000000e-01 +-1.613800000000000e-01 +-5.588400000000000e-02 + 1.033300000000000e-01 + 2.971500000000000e-01 + 4.890800000000000e-01 + 6.375999999999999e-01 + 7.150300000000001e-01 + 7.212000000000000e-01 + 6.818900000000000e-01 + 6.318900000000000e-01 + 5.934000000000000e-01 + 5.642600000000000e-01 + 5.238699999999999e-01 + 4.522600000000000e-01 + 3.481000000000000e-01 + 2.324000000000000e-01 + 1.347100000000000e-01 + 7.157300000000000e-02 + 3.285100000000000e-02 +-1.374100000000000e-02 +-1.020500000000000e-01 +-2.440700000000000e-01 +-4.187600000000000e-01 +-5.800600000000000e-01 +-6.785000000000000e-01 +-6.833200000000000e-01 +-5.930700000000000e-01 +-4.316200000000000e-01 +-2.354400000000000e-01 +-4.102700000000000e-02 + 1.218700000000000e-01 + 2.320600000000000e-01 + 2.778900000000000e-01 + 2.597600000000000e-01 + 1.920000000000000e-01 + 1.001000000000000e-01 + 1.139700000000000e-02 +-5.680900000000000e-02 +-1.043300000000000e-01 +-1.449600000000000e-01 +-1.944200000000000e-01 +-2.569700000000000e-01 +-3.194100000000000e-01 +-3.564900000000000e-01 +-3.436100000000000e-01 +-2.689200000000000e-01 +-1.377800000000000e-01 + 3.116700000000000e-02 + 2.140400000000000e-01 + 3.882700000000000e-01 + 5.351500000000000e-01 + 6.397400000000000e-01 + 6.908700000000000e-01 + 6.824300000000000e-01 + 6.147700000000000e-01 + 4.941900000000000e-01 + 3.307300000000000e-01 + 1.364100000000000e-01 +-7.425100000000000e-02 +-2.818700000000000e-01 +-4.616600000000000e-01 +-5.877700000000000e-01 +-6.420300000000000e-01 +-6.223200000000000e-01 +-5.444600000000001e-01 +-4.353700000000000e-01 +-3.213500000000000e-01 +-2.187500000000000e-01 +-1.327800000000000e-01 +-6.375000000000000e-02 +-1.446000000000000e-02 + 8.202400000000000e-03 +-8.029600000000000e-04 +-3.603600000000000e-02 +-7.809800000000000e-02 +-9.977999999999999e-02 +-7.916900000000000e-02 +-1.144600000000000e-02 + 8.854700000000000e-02 + 1.949400000000000e-01 + 2.853300000000000e-01 + 3.521500000000000e-01 + 4.043500000000000e-01 + 4.590900000000000e-01 + 5.291100000000000e-01 + 6.133300000000000e-01 + 6.956100000000000e-01 + 7.515500000000001e-01 + 7.591599999999999e-01 + 7.075800000000000e-01 + 6.002200000000000e-01 + 4.513400000000000e-01 + 2.786600000000000e-01 + 9.594999999999999e-02 +-9.085000000000000e-02 +-2.823200000000000e-01 +-4.803800000000000e-01 +-6.823500000000000e-01 +-8.776500000000000e-01 +-1.048900000000000e+00 +-1.177100000000000e+00 +-1.248400000000000e+00 +-1.258800000000000e+00 +-1.216000000000000e+00 +-1.135900000000000e+00 +-1.034800000000000e+00 +-9.214200000000000e-01 +-7.897900000000000e-01 +-6.196900000000000e-01 +-3.852200000000000e-01 +-7.018300000000000e-02 + 3.169600000000000e-01 + 7.372400000000000e-01 + 1.130000000000000e+00 + 1.433500000000000e+00 + 1.607600000000000e+00 + 1.645600000000000e+00 + 1.569100000000000e+00 + 1.411300000000000e+00 + 1.199600000000000e+00 + 9.505500000000000e-01 + 6.775000000000000e-01 + 4.030200000000000e-01 + 1.624700000000000e-01 +-7.132300000000000e-03 +-8.692700000000000e-02 +-9.031400000000001e-02 +-5.968100000000000e-02 +-4.593600000000000e-02 +-8.353300000000000e-02 +-1.769100000000000e-01 +-3.058700000000000e-01 +-4.438200000000000e-01 +-5.743500000000000e-01 +-6.946400000000000e-01 +-8.057800000000001e-01 +-9.003500000000000e-01 +-9.593900000000000e-01 +-9.620800000000000e-01 +-9.006900000000000e-01 +-7.881899999999999e-01 +-6.520000000000000e-01 +-5.174299999999999e-01 +-3.928600000000000e-01 +-2.672300000000000e-01 +-1.212900000000000e-01 + 5.521400000000000e-02 + 2.523400000000000e-01 + 4.415000000000000e-01 + 5.883200000000000e-01 + 6.683600000000000e-01 + 6.770200000000000e-01 + 6.290800000000000e-01 + 5.496000000000000e-01 + 4.619000000000000e-01 + 3.784300000000000e-01 + 2.988400000000000e-01 + 2.154100000000000e-01 + 1.228200000000000e-01 + 2.658000000000000e-02 +-5.553700000000000e-02 +-1.010800000000000e-01 +-9.577200000000000e-02 +-4.357200000000000e-02 + 3.372600000000000e-02 + 1.083000000000000e-01 + 1.621600000000000e-01 + 1.955100000000000e-01 + 2.208300000000000e-01 + 2.464500000000000e-01 + 2.627500000000000e-01 + 2.436700000000000e-01 + 1.654500000000000e-01 + 3.035000000000000e-02 +-1.231600000000000e-01 +-2.348700000000000e-01 +-2.558300000000000e-01 +-1.794700000000000e-01 +-4.945700000000000e-02 + 6.222500000000000e-02 + 9.394000000000000e-02 + 2.534700000000000e-02 +-1.178200000000000e-01 +-2.854400000000000e-01 +-4.339000000000000e-01 +-5.448400000000000e-01 +-6.215600000000000e-01 +-6.702200000000000e-01 +-6.837000000000000e-01 +-6.416300000000000e-01 +-5.261200000000000e-01 +-3.398300000000000e-01 +-1.111300000000000e-01 + 1.184800000000000e-01 + 3.153500000000000e-01 + 4.678900000000000e-01 + 5.838900000000000e-01 + 6.742600000000000e-01 + 7.366500000000000e-01 + 7.519700000000000e-01 + 6.969100000000000e-01 + 5.632000000000000e-01 + 3.693200000000000e-01 + 1.559900000000000e-01 +-3.220700000000000e-02 +-1.671200000000000e-01 +-2.468300000000000e-01 +-2.899100000000000e-01 +-3.191100000000000e-01 +-3.452400000000000e-01 +-3.605800000000000e-01 +-3.444800000000000e-01 +-2.772100000000000e-01 +-1.538000000000000e-01 + 8.695800000000000e-03 + 1.741800000000000e-01 + 2.994600000000000e-01 + 3.504100000000000e-01 + 3.157900000000000e-01 + 2.120600000000000e-01 + 7.632300000000000e-02 +-5.013800000000000e-02 +-1.396700000000000e-01 +-1.878400000000000e-01 +-2.094600000000000e-01 +-2.242300000000000e-01 +-2.417000000000000e-01 +-2.560300000000000e-01 +-2.533400000000000e-01 +-2.249400000000000e-01 +-1.750800000000000e-01 +-1.161400000000000e-01 +-5.541600000000000e-02 + 1.457400000000000e-02 + 1.117200000000000e-01 + 2.465800000000000e-01 + 4.045500000000000e-01 + 5.438700000000000e-01 + 6.149600000000000e-01 + 5.900800000000000e-01 + 4.822200000000000e-01 + 3.379200000000000e-01 + 2.075300000000000e-01 + 1.131800000000000e-01 + 3.807000000000000e-02 +-5.514500000000000e-02 +-1.905100000000000e-01 +-3.551800000000000e-01 +-5.039000000000000e-01 +-5.882100000000000e-01 +-5.881600000000000e-01 +-5.231700000000000e-01 +-4.352100000000000e-01 +-3.588600000000000e-01 +-3.014500000000000e-01 +-2.470900000000000e-01 +-1.782700000000000e-01 +-9.553200000000001e-02 +-1.899800000000000e-02 + 2.773200000000000e-02 + 3.616400000000000e-02 + 1.792000000000000e-02 +-6.632500000000000e-03 +-2.397100000000000e-02 +-3.203200000000000e-02 +-2.999000000000000e-02 +-4.754700000000000e-03 + 6.936400000000000e-02 + 2.123800000000000e-01 + 4.143500000000000e-01 + 6.264999999999999e-01 + 7.802000000000000e-01 + 8.245400000000001e-01 + 7.571400000000000e-01 + 6.254100000000000e-01 + 4.960500000000000e-01 + 4.136800000000000e-01 + 3.769000000000000e-01 + 3.465800000000000e-01 + 2.774900000000000e-01 + 1.488300000000000e-01 +-2.686800000000000e-02 +-2.183400000000000e-01 +-3.983900000000000e-01 +-5.564200000000000e-01 +-6.939000000000000e-01 +-8.112400000000000e-01 +-8.997400000000000e-01 +-9.453900000000000e-01 +-9.390300000000000e-01 +-8.823600000000000e-01 +-7.846700000000000e-01 +-6.551900000000001e-01 +-4.999100000000000e-01 +-3.265800000000000e-01 +-1.512000000000000e-01 + 3.729700000000000e-03 + 1.222900000000000e-01 + 2.100400000000000e-01 + 2.961500000000000e-01 + 4.159000000000000e-01 + 5.826500000000000e-01 + 7.700399999999999e-01 + 9.201000000000000e-01 + 9.753400000000000e-01 + 9.140300000000000e-01 + 7.645100000000000e-01 + 5.882700000000000e-01 + 4.436900000000000e-01 + 3.550100000000000e-01 + 3.060700000000000e-01 + 2.593800000000000e-01 + 1.842700000000000e-01 + 7.397100000000000e-02 +-5.650800000000000e-02 +-1.851000000000000e-01 +-2.958600000000000e-01 +-3.819500000000000e-01 +-4.409400000000000e-01 +-4.713000000000000e-01 +-4.757100000000000e-01 +-4.678900000000000e-01 +-4.736400000000000e-01 +-5.208500000000000e-01 +-6.221700000000000e-01 +-7.620500000000000e-01 +-8.979700000000000e-01 +-9.763100000000000e-01 +-9.536300000000000e-01 +-8.113200000000000e-01 +-5.575400000000000e-01 +-2.195000000000000e-01 + 1.661200000000000e-01 + 5.588300000000000e-01 + 9.168100000000000e-01 + 1.200400000000000e+00 + 1.379600000000000e+00 + 1.442700000000000e+00 + 1.399600000000000e+00 + 1.277300000000000e+00 + 1.106700000000000e+00 + 9.099100000000000e-01 + 6.956300000000000e-01 + 4.636300000000000e-01 + 2.151400000000000e-01 +-3.951200000000000e-02 +-2.814800000000000e-01 +-4.919200000000000e-01 +-6.623300000000000e-01 +-7.990500000000000e-01 +-9.180000000000000e-01 +-1.031600000000000e+00 +-1.136000000000000e+00 +-1.206300000000000e+00 +-1.205700000000000e+00 +-1.104700000000000e+00 +-9.001400000000001e-01 +-6.234900000000000e-01 +-3.311200000000000e-01 +-8.017299999999999e-02 + 9.700400000000001e-02 + 2.052800000000000e-01 + 2.785100000000000e-01 + 3.557200000000000e-01 + 4.565600000000000e-01 + 5.710900000000000e-01 + 6.692000000000000e-01 + 7.221700000000000e-01 + 7.212800000000000e-01 + 6.819700000000000e-01 + 6.324600000000000e-01 + 5.965100000000000e-01 + 5.821000000000000e-01 + 5.817500000000000e-01 + 5.810999999999999e-01 + 5.671600000000000e-01 + 5.306500000000000e-01 + 4.630100000000000e-01 + 3.539200000000000e-01 + 1.937800000000000e-01 +-1.945200000000000e-02 +-2.744400000000000e-01 +-5.463600000000000e-01 +-8.031900000000000e-01 +-1.014200000000000e+00 +-1.156200000000000e+00 +-1.215700000000000e+00 +-1.188300000000000e+00 +-1.079500000000000e+00 +-9.038100000000000e-01 +-6.829600000000000e-01 +-4.396800000000000e-01 +-1.903300000000000e-01 + 5.865300000000000e-02 + 3.066300000000000e-01 + 5.486799999999999e-01 + 7.668800000000000e-01 + 9.305099999999999e-01 + 1.007000000000000e+00 + 9.774000000000000e-01 + 8.469600000000000e-01 + 6.433800000000000e-01 + 4.054300000000000e-01 + 1.691300000000000e-01 +-4.022300000000000e-02 +-2.077900000000000e-01 +-3.247500000000000e-01 +-3.855400000000000e-01 +-3.892500000000000e-01 +-3.426100000000000e-01 +-2.602600000000000e-01 +-1.605800000000000e-01 +-5.987500000000000e-02 + 3.088000000000000e-02 + 1.049200000000000e-01 + 1.565700000000000e-01 + 1.803800000000000e-01 + 1.740900000000000e-01 + 1.427400000000000e-01 + 9.929900000000000e-02 + 5.948400000000000e-02 + 3.391200000000000e-02 + 2.305400000000000e-02 + 1.866200000000000e-02 + 9.917300000000000e-03 +-1.112700000000000e-02 +-4.885200000000000e-02 +-1.070600000000000e-01 +-1.904500000000000e-01 +-3.007300000000000e-01 +-4.290600000000000e-01 +-5.519900000000000e-01 +-6.368400000000000e-01 +-6.557900000000000e-01 +-5.998200000000000e-01 +-4.824200000000000e-01 +-3.294700000000000e-01 +-1.621700000000000e-01 + 1.455600000000000e-02 + 2.095300000000000e-01 + 4.311000000000000e-01 + 6.722300000000000e-01 + 9.063000000000000e-01 + 1.096400000000000e+00 + 1.210100000000000e+00 + 1.229200000000000e+00 + 1.149200000000000e+00 + 9.719400000000000e-01 + 7.031700000000000e-01 + 3.577000000000000e-01 +-3.119000000000000e-02 +-4.097600000000000e-01 +-7.165500000000000e-01 +-9.059500000000000e-01 +-9.682800000000000e-01 +-9.322500000000000e-01 +-8.467700000000000e-01 +-7.537500000000000e-01 +-6.696200000000000e-01 +-5.871000000000000e-01 +-4.930500000000000e-01 +-3.869900000000000e-01 +-2.850000000000000e-01 +-2.064500000000000e-01 +-1.549500000000000e-01 +-1.101600000000000e-01 +-3.880900000000000e-02 + 8.197000000000000e-02 + 2.458100000000000e-01 + 4.169700000000000e-01 + 5.495100000000001e-01 + 6.125400000000000e-01 + 6.041600000000000e-01 + 5.458800000000000e-01 + 4.635200000000000e-01 + 3.698700000000000e-01 + 2.616600000000000e-01 + 1.315100000000000e-01 +-1.607700000000000e-02 +-1.580600000000000e-01 +-2.611000000000000e-01 +-2.987100000000000e-01 +-2.650100000000000e-01 +-1.761800000000000e-01 +-6.017100000000000e-02 + 5.657800000000000e-02 + 1.566100000000000e-01 + 2.304700000000000e-01 + 2.723100000000000e-01 + 2.786300000000000e-01 + 2.521700000000000e-01 + 2.063300000000000e-01 + 1.632600000000000e-01 + 1.435700000000000e-01 + 1.532100000000000e-01 + 1.772000000000000e-01 + 1.859900000000000e-01 + 1.516300000000000e-01 + 6.325500000000001e-02 +-6.821500000000000e-02 +-2.184400000000000e-01 +-3.640700000000000e-01 +-4.925900000000000e-01 +-6.015200000000001e-01 +-6.900400000000000e-01 +-7.516400000000000e-01 +-7.746800000000000e-01 +-7.501000000000000e-01 +-6.788500000000000e-01 +-5.717800000000000e-01 +-4.415800000000000e-01 +-2.934700000000000e-01 +-1.234400000000000e-01 + 7.361200000000000e-02 + 2.916600000000000e-01 + 5.075499999999999e-01 + 6.872900000000000e-01 + 8.012899999999999e-01 + 8.383000000000000e-01 + 8.084400000000000e-01 + 7.341100000000000e-01 + 6.362300000000000e-01 + 5.261500000000000e-01 + 4.079500000000000e-01 + 2.870500000000000e-01 + 1.761800000000000e-01 + 9.266000000000001e-02 + 4.870600000000000e-02 + 4.263100000000000e-02 + 5.841600000000000e-02 + 7.439900000000001e-02 + 7.478799999999999e-02 + 5.590100000000000e-02 + 2.360300000000000e-02 +-1.466800000000000e-02 +-5.647700000000000e-02 +-1.051300000000000e-01 +-1.656700000000000e-01 +-2.409700000000000e-01 +-3.313000000000000e-01 +-4.364500000000000e-01 +-5.561900000000000e-01 +-6.864300000000000e-01 +-8.131500000000000e-01 +-9.102200000000000e-01 +-9.456800000000000e-01 +-8.950600000000000e-01 +-7.542500000000000e-01 +-5.435600000000000e-01 +-2.999000000000000e-01 +-6.206700000000000e-02 + 1.420600000000000e-01 + 2.997700000000000e-01 + 4.099600000000000e-01 + 4.776200000000000e-01 + 5.120700000000000e-01 + 5.289000000000000e-01 + 5.504100000000000e-01 + 5.991100000000000e-01 + 6.850900000000000e-01 + 7.953500000000000e-01 + 8.944800000000001e-01 + 9.402500000000000e-01 + 9.064400000000000e-01 + 7.988400000000000e-01 + 6.530200000000000e-01 + 5.138100000000000e-01 + 4.089900000000000e-01 + 3.337000000000000e-01 + 2.554200000000000e-01 + 1.356300000000000e-01 +-4.636000000000000e-02 +-2.823300000000000e-01 +-5.421899999999999e-01 +-7.917000000000000e-01 +-1.007600000000000e+00 +-1.180500000000000e+00 +-1.306300000000000e+00 +-1.376600000000000e+00 +-1.376800000000000e+00 +-1.295200000000000e+00 +-1.135300000000000e+00 +-9.196700000000000e-01 +-6.825100000000000e-01 +-4.524600000000000e-01 +-2.394700000000000e-01 +-3.401700000000000e-02 + 1.806300000000000e-01 + 4.119600000000000e-01 + 6.492599999999999e-01 + 8.679300000000000e-01 + 1.042900000000000e+00 + 1.161000000000000e+00 + 1.224100000000000e+00 + 1.242100000000000e+00 + 1.222700000000000e+00 + 1.166900000000000e+00 + 1.072200000000000e+00 + 9.396300000000000e-01 + 7.774700000000000e-01 + 5.974100000000000e-01 + 4.064800000000000e-01 + 2.024700000000000e-01 +-2.206300000000000e-02 +-2.688300000000000e-01 +-5.241500000000000e-01 +-7.587500000000000e-01 +-9.390800000000000e-01 +-1.043300000000000e+00 +-1.071600000000000e+00 +-1.043900000000000e+00 +-9.864400000000000e-01 +-9.168100000000000e-01 +-8.365200000000000e-01 +-7.356000000000000e-01 +-6.045700000000001e-01 +-4.451100000000000e-01 +-2.723800000000000e-01 +-1.080900000000000e-01 + 3.022700000000000e-02 + 1.366700000000000e-01 + 2.171800000000000e-01 + 2.833300000000000e-01 + 3.443300000000000e-01 + 4.016800000000000e-01 + 4.488900000000000e-01 + 4.752700000000000e-01 + 4.718900000000000e-01 + 4.373100000000000e-01 + 3.812800000000000e-01 + 3.249300000000000e-01 + 2.962200000000000e-01 + 3.206900000000000e-01 + 4.098600000000000e-01 + 5.519600000000000e-01 + 7.102900000000000e-01 + 8.321300000000000e-01 + 8.660600000000001e-01 + 7.809600000000000e-01 + 5.780800000000000e-01 + 2.902300000000000e-01 +-3.128300000000000e-02 +-3.357600000000000e-01 +-5.887700000000000e-01 +-7.777800000000000e-01 +-9.069800000000000e-01 +-9.864900000000000e-01 +-1.023400000000000e+00 +-1.019200000000000e+00 +-9.736200000000000e-01 +-8.893100000000000e-01 +-7.741100000000000e-01 +-6.381300000000000e-01 +-4.892400000000000e-01 +-3.310300000000000e-01 +-1.653000000000000e-01 + 3.122700000000000e-03 + 1.634900000000000e-01 + 3.016000000000000e-01 + 4.064100000000000e-01 + 4.762500000000000e-01 + 5.197700000000000e-01 + 5.507200000000000e-01 + 5.798100000000000e-01 + 6.092000000000000e-01 + 6.326400000000000e-01 + 6.402700000000000e-01 + 6.242000000000000e-01 + 5.815200000000000e-01 + 5.143400000000000e-01 + 4.291600000000000e-01 + 3.368200000000000e-01 + 2.523800000000000e-01 + 1.923200000000000e-01 + 1.677500000000000e-01 + 1.766500000000000e-01 + 2.003700000000000e-01 + 2.085900000000000e-01 + 1.714100000000000e-01 + 7.200100000000000e-02 +-8.757800000000000e-02 +-2.902300000000000e-01 +-5.132600000000000e-01 +-7.359700000000000e-01 +-9.407700000000000e-01 +-1.109300000000000e+00 +-1.220300000000000e+00 +-1.253100000000000e+00 +-1.197800000000000e+00 +-1.061900000000000e+00 +-8.696900000000000e-01 +-6.513300000000000e-01 +-4.294300000000000e-01 +-2.115400000000000e-01 + 6.574200000000000e-03 + 2.306400000000000e-01 + 4.587800000000000e-01 + 6.801300000000000e-01 + 8.804500000000000e-01 + 1.048700000000000e+00 + 1.178700000000000e+00 + 1.264700000000000e+00 + 1.297500000000000e+00 + 1.265200000000000e+00 + 1.159800000000000e+00 + 9.847100000000000e-01 + 7.564700000000000e-01 + 4.987200000000000e-01 + 2.337800000000000e-01 +-2.196100000000000e-02 +-2.557500000000000e-01 +-4.534000000000000e-01 +-5.983800000000000e-01 +-6.784300000000000e-01 +-6.954600000000000e-01 +-6.699900000000000e-01 +-6.341000000000000e-01 +-6.157899999999999e-01 +-6.244200000000000e-01 +-6.471700000000000e-01 +-6.582400000000000e-01 +-6.335400000000000e-01 +-5.609600000000000e-01 +-4.409900000000000e-01 +-2.812200000000000e-01 +-9.239799999999999e-02 + 1.097300000000000e-01 + 3.001400000000000e-01 + 4.452800000000000e-01 + 5.130300000000000e-01 + 4.874700000000000e-01 + 3.782900000000000e-01 + 2.168200000000000e-01 + 4.041700000000000e-02 +-1.241000000000000e-01 +-2.665100000000000e-01 +-3.856200000000000e-01 +-4.757200000000000e-01 +-5.193000000000000e-01 +-4.928600000000000e-01 +-3.815100000000000e-01 +-1.907800000000000e-01 + 5.365500000000000e-02 + 3.183200000000000e-01 + 5.768900000000000e-01 + 8.170500000000001e-01 + 1.035500000000000e+00 + 1.226300000000000e+00 + 1.373200000000000e+00 + 1.449800000000000e+00 + 1.429200000000000e+00 + 1.294100000000000e+00 + 1.043200000000000e+00 + 6.918000000000000e-01 + 2.691900000000000e-01 +-1.848700000000000e-01 +-6.257700000000000e-01 +-1.012500000000000e+00 +-1.318000000000000e+00 +-1.535400000000000e+00 +-1.676200000000000e+00 +-1.758300000000000e+00 +-1.791200000000000e+00 +-1.768000000000000e+00 +-1.670200000000000e+00 +-1.482200000000000e+00 +-1.205100000000000e+00 +-8.601700000000000e-01 +-4.799400000000000e-01 +-9.501100000000000e-02 + 2.747300000000000e-01 + 6.190200000000000e-01 + 9.302700000000000e-01 + 1.198900000000000e+00 + 1.415400000000000e+00 + 1.576500000000000e+00 + 1.687400000000000e+00 + 1.755300000000000e+00 + 1.778900000000000e+00 + 1.741100000000000e+00 + 1.615800000000000e+00 + 1.383800000000000e+00 + 1.050300000000000e+00 + 6.486400000000000e-01 + 2.288500000000000e-01 +-1.640700000000000e-01 +-5.067600000000000e-01 +-7.994200000000000e-01 +-1.053300000000000e+00 +-1.274100000000000e+00 +-1.451900000000000e+00 +-1.564600000000000e+00 +-1.589300000000000e+00 +-1.514200000000000e+00 +-1.344800000000000e+00 +-1.101800000000000e+00 +-8.164500000000000e-01 +-5.240000000000000e-01 +-2.580900000000000e-01 +-4.434300000000000e-02 + 1.056300000000000e-01 + 1.972600000000000e-01 + 2.501500000000000e-01 + 2.893700000000000e-01 + 3.354600000000000e-01 + 3.984000000000000e-01 + 4.783300000000000e-01 + 5.705100000000000e-01 + 6.691700000000000e-01 + 7.671500000000000e-01 + 8.528000000000000e-01 + 9.092600000000000e-01 + 9.195200000000000e-01 + 8.751200000000000e-01 + 7.821200000000000e-01 + 6.583100000000000e-01 + 5.223300000000000e-01 + 3.818200000000000e-01 + 2.298700000000000e-01 + 5.313100000000000e-02 +-1.534500000000000e-01 +-3.761000000000000e-01 +-5.841200000000000e-01 +-7.438800000000000e-01 +-8.359300000000000e-01 +-8.638100000000000e-01 +-8.489000000000000e-01 +-8.152500000000000e-01 +-7.746499999999999e-01 +-7.218300000000000e-01 +-6.422900000000000e-01 +-5.267400000000000e-01 +-3.822300000000000e-01 +-2.322900000000000e-01 +-1.056300000000000e-01 +-2.017600000000000e-02 + 2.786700000000000e-02 + 6.306900000000000e-02 + 1.177800000000000e-01 + 2.140800000000000e-01 + 3.508100000000000e-01 + 5.033900000000000e-01 + 6.368300000000000e-01 + 7.242200000000000e-01 + 7.594900000000000e-01 + 7.563299999999999e-01 + 7.340700000000000e-01 + 7.004899999999999e-01 + 6.438400000000000e-01 + 5.408600000000000e-01 + 3.758700000000000e-01 + 1.579700000000000e-01 +-7.650300000000000e-02 +-2.791200000000000e-01 +-4.126800000000000e-01 +-4.672900000000000e-01 +-4.592800000000000e-01 +-4.150700000000000e-01 +-3.532200000000000e-01 +-2.779300000000000e-01 +-1.877400000000000e-01 +-9.052399999999999e-02 +-1.069500000000000e-02 + 1.946500000000000e-02 +-2.085600000000000e-02 +-1.253700000000000e-01 +-2.614700000000000e-01 +-3.881300000000000e-01 +-4.784200000000000e-01 +-5.306400000000000e-01 +-5.598700000000000e-01 +-5.772900000000000e-01 +-5.734000000000000e-01 +-5.193400000000000e-01 +-3.866800000000000e-01 +-1.722900000000000e-01 + 8.962000000000001e-02 + 3.382700000000000e-01 + 5.140900000000000e-01 + 5.869700000000000e-01 + 5.682199999999999e-01 + 5.004000000000000e-01 + 4.331700000000000e-01 + 4.003500000000000e-01 + 4.103200000000000e-01 + 4.518400000000000e-01 + 5.071300000000000e-01 + 5.618600000000000e-01 + 6.061900000000000e-01 + 6.294500000000000e-01 + 6.159300000000000e-01 + 5.477200000000000e-01 + 4.142300000000000e-01 + 2.219900000000000e-01 +-3.044800000000000e-03 +-2.240100000000000e-01 +-4.082200000000000e-01 +-5.403000000000000e-01 +-6.254200000000000e-01 +-6.811400000000000e-01 +-7.234300000000000e-01 +-7.559300000000000e-01 +-7.687700000000000e-01 +-7.467900000000000e-01 +-6.807800000000001e-01 +-5.740700000000000e-01 +-4.406100000000000e-01 +-2.970200000000000e-01 +-1.549000000000000e-01 +-1.873400000000000e-02 + 1.101800000000000e-01 + 2.279800000000000e-01 + 3.258300000000000e-01 + 3.927800000000000e-01 + 4.213700000000000e-01 + 4.113900000000000e-01 + 3.692100000000000e-01 + 3.040600000000000e-01 + 2.250600000000000e-01 + 1.417300000000000e-01 + 6.648300000000000e-02 + 1.529200000000000e-02 + 3.236700000000000e-03 + 3.647200000000000e-02 + 1.060200000000000e-01 + 1.890200000000000e-01 + 2.582800000000000e-01 + 2.950600000000000e-01 + 2.968900000000000e-01 + 2.754200000000000e-01 + 2.459900000000000e-01 + 2.162200000000000e-01 + 1.813600000000000e-01 + 1.292000000000000e-01 + 5.049300000000000e-02 +-5.271500000000000e-02 +-1.662000000000000e-01 +-2.701500000000000e-01 +-3.481200000000000e-01 +-3.923900000000000e-01 +-4.032000000000000e-01 +-3.838900000000000e-01 +-3.365900000000000e-01 +-2.620900000000000e-01 +-1.638100000000000e-01 +-5.245900000000000e-02 + 5.278500000000000e-02 + 1.288700000000000e-01 + 1.576900000000000e-01 + 1.348600000000000e-01 + 7.340099999999999e-02 +-2.987700000000000e-04 +-5.707900000000000e-02 +-7.717200000000000e-02 +-5.785600000000000e-02 +-1.279900000000000e-02 + 3.609500000000000e-02 + 6.924500000000000e-02 + 7.636800000000001e-02 + 5.687200000000000e-02 + 1.560000000000000e-02 +-4.116500000000000e-02 +-1.058300000000000e-01 +-1.666900000000000e-01 +-2.069300000000000e-01 +-2.095800000000000e-01 +-1.673400000000000e-01 +-9.063700000000000e-02 +-6.342700000000000e-03 + 5.465900000000000e-02 + 7.445300000000001e-02 + 5.843100000000000e-02 + 3.140400000000000e-02 + 2.177200000000000e-02 + 4.470900000000000e-02 + 9.599199999999999e-02 + 1.598800000000000e-01 + 2.236900000000000e-01 + 2.868300000000000e-01 + 3.572300000000000e-01 + 4.387100000000000e-01 + 5.204800000000001e-01 + 5.781500000000001e-01 + 5.859600000000000e-01 + 5.307100000000000e-01 + 4.166100000000000e-01 + 2.583100000000000e-01 + 6.921600000000000e-02 +-1.438100000000000e-01 +-3.747100000000000e-01 +-6.070800000000000e-01 +-8.089600000000000e-01 +-9.409800000000000e-01 +-9.740600000000000e-01 +-9.045600000000000e-01 +-7.557000000000000e-01 +-5.644400000000001e-01 +-3.635300000000000e-01 +-1.713900000000000e-01 + 5.086300000000000e-03 + 1.603000000000000e-01 + 2.833500000000000e-01 + 3.617400000000000e-01 + 3.920100000000000e-01 + 3.870100000000000e-01 + 3.717500000000000e-01 + 3.690500000000000e-01 + 3.848200000000000e-01 + 4.035500000000000e-01 + 3.973300000000000e-01 + 3.418700000000000e-01 + 2.294200000000000e-01 + 7.158200000000001e-02 +-1.068700000000000e-01 +-2.770500000000000e-01 +-4.124800000000000e-01 +-4.920300000000000e-01 +-5.017600000000000e-01 +-4.376800000000000e-01 +-3.085000000000000e-01 +-1.350500000000000e-01 + 5.463800000000000e-02 + 2.327200000000000e-01 + 3.770900000000000e-01 + 4.728900000000000e-01 + 5.113400000000000e-01 + 4.893400000000000e-01 + 4.116500000000000e-01 + 2.934500000000000e-01 + 1.590400000000000e-01 + 3.532600000000000e-02 +-5.706600000000000e-02 +-1.091500000000000e-01 +-1.222100000000000e-01 +-1.020000000000000e-01 +-5.453900000000000e-02 + 1.249600000000000e-02 + 8.488900000000001e-02 + 1.403000000000000e-01 + 1.548400000000000e-01 + 1.154700000000000e-01 + 2.907800000000000e-02 +-7.997400000000000e-02 +-1.838600000000000e-01 +-2.674700000000000e-01 +-3.348300000000000e-01 +-4.011300000000000e-01 +-4.772200000000000e-01 +-5.589400000000000e-01 +-6.294000000000000e-01 +-6.707900000000000e-01 +-6.745900000000000e-01 +-6.410700000000000e-01 +-5.698400000000000e-01 +-4.523900000000000e-01 +-2.766000000000000e-01 +-4.216700000000000e-02 + 2.258900000000000e-01 + 4.799700000000000e-01 + 6.714300000000000e-01 + 7.776900000000000e-01 + 8.147200000000000e-01 + 8.240300000000000e-01 + 8.417900000000000e-01 + 8.722200000000000e-01 + 8.847300000000000e-01 + 8.371700000000000e-01 + 7.083300000000000e-01 + 5.158600000000000e-01 + 3.074500000000000e-01 + 1.323100000000000e-01 + 1.366300000000000e-02 +-5.967200000000000e-02 +-1.197000000000000e-01 +-1.962500000000000e-01 +-3.012500000000000e-01 +-4.284400000000000e-01 +-5.635700000000000e-01 +-6.938800000000001e-01 +-8.092100000000000e-01 +-8.968200000000000e-01 +-9.382200000000001e-01 +-9.139500000000000e-01 +-8.142500000000000e-01 +-6.473000000000000e-01 +-4.377200000000000e-01 +-2.155700000000000e-01 +-3.448600000000000e-03 + 1.890900000000000e-01 + 3.605400000000000e-01 + 5.065800000000000e-01 + 6.127700000000000e-01 + 6.572500000000000e-01 + 6.227500000000000e-01 + 5.103200000000000e-01 + 3.452700000000000e-01 + 1.703800000000000e-01 + 2.878900000000000e-02 +-5.443300000000000e-02 +-8.189200000000001e-02 +-7.882200000000000e-02 +-7.583900000000000e-02 +-8.926700000000000e-02 +-1.109500000000000e-01 +-1.143000000000000e-01 +-7.325000000000000e-02 + 1.794300000000000e-02 + 1.374700000000000e-01 + 2.469400000000000e-01 + 3.136200000000000e-01 + 3.289000000000000e-01 + 3.101100000000000e-01 + 2.847000000000000e-01 + 2.685900000000000e-01 + 2.550200000000000e-01 + 2.218200000000000e-01 + 1.513300000000000e-01 + 4.718700000000000e-02 +-6.514900000000000e-02 +-1.545800000000000e-01 +-2.047900000000000e-01 +-2.234700000000000e-01 +-2.339400000000000e-01 +-2.561500000000000e-01 +-2.917900000000000e-01 +-3.239000000000000e-01 +-3.300400000000000e-01 +-2.986400000000000e-01 +-2.370800000000000e-01 +-1.678900000000000e-01 +-1.177000000000000e-01 +-1.066800000000000e-01 +-1.426000000000000e-01 +-2.190800000000000e-01 +-3.158800000000000e-01 +-4.018900000000000e-01 +-4.428600000000000e-01 +-4.141900000000000e-01 +-3.128500000000000e-01 +-1.600600000000000e-01 + 9.659500000000000e-03 + 1.676300000000000e-01 + 3.051100000000000e-01 + 4.315800000000000e-01 + 5.578700000000000e-01 + 6.774600000000000e-01 + 7.618100000000000e-01 + 7.753900000000000e-01 + 7.002600000000000e-01 + 5.515500000000000e-01 + 3.715600000000000e-01 + 2.063300000000000e-01 + 8.213600000000000e-02 +-1.677300000000000e-03 +-6.019400000000000e-02 +-1.035000000000000e-01 +-1.271800000000000e-01 +-1.198200000000000e-01 +-7.927200000000000e-02 +-2.162900000000000e-02 + 2.611800000000000e-02 + 4.435900000000000e-02 + 3.429100000000000e-02 + 1.435000000000000e-02 + 1.723500000000000e-03 +-6.120200000000000e-03 +-3.421500000000000e-02 +-1.137300000000000e-01 +-2.580100000000000e-01 +-4.484800000000000e-01 +-6.402600000000001e-01 +-7.833200000000000e-01 +-8.445800000000000e-01 +-8.185400000000000e-01 +-7.228200000000000e-01 +-5.855800000000000e-01 +-4.334500000000000e-01 +-2.851000000000000e-01 +-1.496200000000000e-01 +-2.731800000000000e-02 + 8.774600000000000e-02 + 2.024400000000000e-01 + 3.174800000000000e-01 + 4.229500000000000e-01 + 5.013000000000000e-01 + 5.381200000000000e-01 + 5.338900000000000e-01 + 5.073100000000000e-01 + 4.857800000000000e-01 + 4.889500000000000e-01 + 5.171500000000000e-01 + 5.540300000000000e-01 + 5.810800000000000e-01 + 5.923900000000000e-01 + 5.969700000000000e-01 + 6.065800000000000e-01 + 6.190099999999999e-01 + 6.113900000000000e-01 + 5.501000000000000e-01 + 4.108600000000000e-01 + 1.940500000000000e-01 +-7.554600000000000e-02 +-3.631800000000000e-01 +-6.406900000000000e-01 +-8.929200000000000e-01 +-1.111200000000000e+00 +-1.282800000000000e+00 +-1.386300000000000e+00 +-1.399600000000000e+00 +-1.312100000000000e+00 +-1.132800000000000e+00 +-8.873000000000000e-01 +-6.063000000000000e-01 +-3.156100000000000e-01 +-3.306200000000000e-02 + 2.280700000000000e-01 + 4.550300000000000e-01 + 6.359900000000001e-01 + 7.639100000000000e-01 + 8.389700000000000e-01 + 8.659900000000000e-01 + 8.489800000000000e-01 + 7.887100000000000e-01 + 6.869499999999999e-01 + 5.544000000000000e-01 + 4.144900000000000e-01 + 2.971900000000000e-01 + 2.248100000000000e-01 + 1.992000000000000e-01 + 1.999900000000000e-01 + 1.960000000000000e-01 + 1.625800000000000e-01 + 9.343899999999999e-02 + 1.547400000000000e-04 +-9.848200000000000e-02 +-1.888000000000000e-01 +-2.681400000000000e-01 +-3.420900000000000e-01 +-4.171000000000000e-01 +-4.939400000000000e-01 +-5.652600000000000e-01 +-6.170700000000000e-01 +-6.326500000000000e-01 +-5.977900000000000e-01 +-5.065800000000000e-01 +-3.657500000000000e-01 +-1.944800000000000e-01 +-1.776300000000000e-02 + 1.437400000000000e-01 + 2.812600000000000e-01 + 3.968700000000000e-01 + 4.944000000000000e-01 + 5.693300000000000e-01 + 6.069400000000000e-01 + 5.914700000000001e-01 + 5.198199999999999e-01 + 4.085500000000000e-01 + 2.870500000000000e-01 + 1.808000000000000e-01 + 9.704699999999999e-02 + 2.350300000000000e-02 +-5.920900000000000e-02 +-1.616200000000000e-01 +-2.781000000000000e-01 +-3.921800000000000e-01 +-4.878400000000000e-01 +-5.558500000000000e-01 +-5.907700000000000e-01 +-5.844300000000000e-01 +-5.258100000000000e-01 +-4.108100000000000e-01 +-2.541100000000000e-01 +-9.003899999999999e-02 + 4.302400000000000e-02 + 1.258200000000000e-01 + 1.707700000000000e-01 + 2.117700000000000e-01 + 2.767900000000000e-01 + 3.637900000000000e-01 + 4.400600000000000e-01 + 4.669900000000000e-01 + 4.318300000000000e-01 + 3.609500000000000e-01 + 3.028800000000000e-01 + 2.933700000000000e-01 + 3.291500000000000e-01 + 3.706800000000000e-01 + 3.711500000000000e-01 + 3.087000000000000e-01 + 1.972000000000000e-01 + 6.886100000000001e-02 +-5.475600000000000e-02 +-1.784900000000000e-01 +-3.230600000000000e-01 +-4.978300000000000e-01 +-6.805200000000000e-01 +-8.216100000000000e-01 +-8.713400000000000e-01 +-8.092100000000000e-01 +-6.546500000000000e-01 +-4.528000000000000e-01 +-2.480800000000000e-01 +-6.524700000000000e-02 + 9.100400000000000e-02 + 2.228200000000000e-01 + 3.268500000000000e-01 + 3.934200000000000e-01 + 4.159400000000000e-01 + 4.000000000000000e-01 + 3.630300000000000e-01 + 3.247500000000000e-01 + 2.967200000000000e-01 + 2.795200000000000e-01 + 2.682900000000000e-01 + 2.602000000000000e-01 + 2.562700000000000e-01 + 2.563900000000000e-01 + 2.529200000000000e-01 + 2.299500000000000e-01 + 1.700600000000000e-01 + 6.453500000000000e-02 +-7.969300000000000e-02 +-2.397500000000000e-01 +-3.821800000000000e-01 +-4.710100000000000e-01 +-4.772300000000000e-01 +-3.894500000000000e-01 +-2.234600000000000e-01 +-2.465300000000000e-02 + 1.432100000000000e-01 + 2.229400000000000e-01 + 1.916800000000000e-01 + 7.456200000000000e-02 +-6.737400000000000e-02 +-1.707500000000000e-01 +-2.050500000000000e-01 +-1.867000000000000e-01 +-1.626500000000000e-01 +-1.749300000000000e-01 +-2.309700000000000e-01 +-2.998500000000000e-01 +-3.353100000000000e-01 +-3.078800000000000e-01 +-2.230100000000000e-01 +-1.141900000000000e-01 +-1.876600000000000e-02 + 4.494600000000000e-02 + 8.429200000000001e-02 + 1.219900000000000e-01 + 1.799200000000000e-01 + 2.691300000000000e-01 + 3.895800000000000e-01 + 5.339300000000000e-01 + 6.882500000000000e-01 + 8.287500000000000e-01 + 9.209300000000000e-01 + 9.273500000000000e-01 + 8.231400000000000e-01 + 6.099900000000000e-01 + 3.184100000000000e-01 +-4.460700000000000e-03 +-3.134900000000000e-01 +-5.786000000000000e-01 +-7.854900000000000e-01 +-9.273800000000000e-01 +-9.977000000000000e-01 +-9.907600000000000e-01 +-9.089600000000000e-01 +-7.679800000000000e-01 +-5.931600000000000e-01 +-4.082800000000000e-01 +-2.257200000000000e-01 +-4.656100000000000e-02 + 1.288900000000000e-01 + 2.891700000000000e-01 + 4.094400000000000e-01 + 4.629400000000000e-01 + 4.387900000000000e-01 + 3.529100000000000e-01 + 2.427000000000000e-01 + 1.481000000000000e-01 + 9.114700000000001e-02 + 6.764500000000000e-02 + 5.576600000000000e-02 + 3.483500000000000e-02 + 1.037300000000000e-03 +-3.026600000000000e-02 +-3.623900000000000e-02 +-3.558300000000000e-03 + 6.096000000000000e-02 + 1.329500000000000e-01 + 1.843000000000000e-01 + 1.992700000000000e-01 + 1.828500000000000e-01 + 1.563900000000000e-01 + 1.434600000000000e-01 + 1.547200000000000e-01 + 1.813300000000000e-01 + 2.011700000000000e-01 + 1.938200000000000e-01 + 1.546900000000000e-01 + 9.857800000000000e-02 + 4.981600000000000e-02 + 2.531000000000000e-02 + 2.215700000000000e-02 + 1.873200000000000e-02 +-1.109800000000000e-02 +-8.047799999999999e-02 +-1.812100000000000e-01 +-2.903500000000000e-01 +-3.863600000000000e-01 +-4.622100000000000e-01 +-5.252300000000000e-01 +-5.839900000000000e-01 +-6.332300000000000e-01 +-6.498300000000000e-01 +-6.049099999999999e-01 +-4.843700000000000e-01 +-3.031200000000000e-01 +-1.019200000000000e-01 + 7.218200000000000e-02 + 1.893200000000000e-01 + 2.494300000000000e-01 + 2.771200000000000e-01 + 3.040500000000000e-01 + 3.511000000000000e-01 + 4.207500000000000e-01 + 5.015300000000000e-01 + 5.779800000000000e-01 + 6.379700000000000e-01 + 6.735700000000000e-01 + 6.777800000000000e-01 + 6.426200000000000e-01 + 5.615700000000000e-01 + 4.348100000000000e-01 + 2.732200000000000e-01 + 9.728100000000001e-02 +-6.877400000000000e-02 +-2.048400000000000e-01 +-3.008000000000000e-01 +-3.581500000000000e-01 +-3.871300000000000e-01 +-4.008900000000000e-01 +-4.092000000000000e-01 +-4.144500000000000e-01 +-4.122000000000000e-01 +-3.963000000000000e-01 +-3.660700000000000e-01 +-3.304600000000000e-01 +-3.052900000000000e-01 +-3.038900000000000e-01 +-3.268100000000000e-01 +-3.581800000000000e-01 +-3.725400000000000e-01 +-3.490600000000000e-01 +-2.835000000000000e-01 +-1.894700000000000e-01 +-8.762700000000000e-02 + 9.606999999999999e-03 + 1.062800000000000e-01 + 2.176300000000000e-01 + 3.546700000000000e-01 + 5.099900000000001e-01 + 6.555500000000000e-01 + 7.548200000000000e-01 + 7.816400000000000e-01 + 7.332700000000000e-01 + 6.298700000000000e-01 + 5.019600000000000e-01 + 3.748000000000000e-01 + 2.593600000000000e-01 + 1.538300000000000e-01 + 5.188800000000000e-02 +-4.897900000000000e-02 +-1.444400000000000e-01 +-2.259800000000000e-01 +-2.862900000000000e-01 +-3.237900000000000e-01 +-3.442100000000000e-01 +-3.588600000000000e-01 +-3.798900000000000e-01 +-4.138400000000000e-01 +-4.559000000000000e-01 +-4.885600000000000e-01 +-4.877800000000000e-01 +-4.354000000000000e-01 +-3.317700000000000e-01 +-2.001100000000000e-01 +-7.769100000000000e-02 + 2.931100000000000e-03 + 3.176400000000000e-02 + 2.686500000000000e-02 + 2.309900000000000e-02 + 5.081500000000000e-02 + 1.179000000000000e-01 + 2.064100000000000e-01 + 2.850900000000000e-01 + 3.287100000000000e-01 + 3.314100000000000e-01 + 3.065100000000000e-01 + 2.752900000000000e-01 + 2.535700000000000e-01 + 2.453300000000000e-01 + 2.455900000000000e-01 + 2.480400000000000e-01 + 2.506100000000000e-01 + 2.549200000000000e-01 + 2.613000000000000e-01 + 2.638300000000000e-01 + 2.495500000000000e-01 + 2.024000000000000e-01 + 1.099100000000000e-01 +-3.063300000000000e-02 +-2.084400000000000e-01 +-3.995500000000000e-01 +-5.716100000000000e-01 +-6.925600000000000e-01 +-7.408800000000000e-01 +-7.127000000000000e-01 +-6.218200000000000e-01 +-4.918700000000000e-01 +-3.448900000000000e-01 +-1.936800000000000e-01 +-4.259400000000000e-02 + 1.045000000000000e-01 + 2.366400000000000e-01 + 3.360400000000000e-01 + 3.877100000000000e-01 + 3.913900000000000e-01 + 3.658100000000000e-01 + 3.396600000000000e-01 + 3.339700000000000e-01 + 3.477900000000000e-01 + 3.580800000000000e-01 + 3.347100000000000e-01 + 2.606400000000000e-01 + 1.435200000000000e-01 + 1.105500000000000e-02 +-1.058500000000000e-01 +-1.898200000000000e-01 +-2.424500000000000e-01 +-2.762700000000000e-01 +-3.008000000000000e-01 +-3.131600000000000e-01 +-2.990500000000000e-01 +-2.416900000000000e-01 +-1.318600000000000e-01 + 2.633500000000000e-02 + 2.146700000000000e-01 + 4.026700000000000e-01 + 5.510300000000000e-01 + 6.181100000000000e-01 + 5.714399999999999e-01 + 4.015600000000000e-01 + 1.307900000000000e-01 +-1.907300000000000e-01 +-5.024800000000000e-01 +-7.556000000000000e-01 +-9.260800000000000e-01 +-1.011300000000000e+00 +-1.014500000000000e+00 +-9.311700000000001e-01 +-7.504100000000000e-01 +-4.710700000000000e-01 +-1.196100000000000e-01 + 2.476400000000000e-01 + 5.643500000000000e-01 + 7.852500000000000e-01 + 9.073000000000000e-01 + 9.650900000000000e-01 + 1.002900000000000e+00 + 1.042700000000000e+00 + 1.070600000000000e+00 + 1.050000000000000e+00 + 9.495900000000000e-01 + 7.653000000000000e-01 + 5.196600000000000e-01 + 2.425200000000000e-01 +-4.957400000000000e-02 +-3.573900000000000e-01 +-6.836200000000000e-01 +-1.011700000000000e+00 +-1.298300000000000e+00 +-1.487200000000000e+00 +-1.537100000000000e+00 +-1.442900000000000e+00 +-1.236000000000000e+00 +-9.647400000000000e-01 +-6.704500000000000e-01 +-3.748600000000000e-01 +-8.518400000000000e-02 + 1.919500000000000e-01 + 4.415900000000000e-01 + 6.439600000000000e-01 + 7.858700000000000e-01 + 8.687000000000000e-01 + 9.055500000000000e-01 + 9.098400000000000e-01 + 8.858500000000000e-01 + 8.289900000000000e-01 + 7.350900000000000e-01 + 6.094600000000000e-01 + 4.669400000000000e-01 + 3.223700000000000e-01 + 1.801000000000000e-01 + 3.254100000000000e-02 +-1.298000000000000e-01 +-3.041800000000000e-01 +-4.694000000000000e-01 +-5.932700000000000e-01 +-6.490800000000000e-01 +-6.292200000000000e-01 +-5.463500000000000e-01 +-4.227400000000000e-01 +-2.771600000000000e-01 +-1.195300000000000e-01 + 4.384800000000000e-02 + 2.010300000000000e-01 + 3.309600000000000e-01 + 4.099400000000000e-01 + 4.234400000000000e-01 + 3.737300000000000e-01 + 2.769700000000000e-01 + 1.523100000000000e-01 + 1.164300000000000e-02 +-1.418800000000000e-01 +-3.062800000000000e-01 +-4.710400000000000e-01 +-6.140700000000000e-01 +-7.083400000000000e-01 +-7.337300000000000e-01 +-6.855500000000000e-01 +-5.744600000000000e-01 +-4.191900000000000e-01 +-2.384200000000000e-01 +-4.731600000000000e-02 + 1.406800000000000e-01 + 3.111800000000000e-01 + 4.498200000000000e-01 + 5.472700000000000e-01 + 6.045400000000000e-01 + 6.332200000000000e-01 + 6.492300000000000e-01 + 6.633700000000000e-01 + 6.748200000000000e-01 + 6.714900000000000e-01 + 6.368800000000000e-01 + 5.587400000000000e-01 + 4.347800000000000e-01 + 2.732200000000000e-01 + 8.959900000000000e-02 +-9.728199999999999e-02 +-2.682700000000000e-01 +-4.059400000000000e-01 +-4.970200000000000e-01 +-5.359300000000000e-01 +-5.281200000000000e-01 +-4.909800000000000e-01 +-4.502700000000000e-01 +-4.321600000000000e-01 +-4.530200000000000e-01 +-5.112000000000000e-01 +-5.844900000000000e-01 +-6.357699999999999e-01 +-6.259000000000000e-01 +-5.295400000000000e-01 +-3.470800000000000e-01 +-1.066200000000000e-01 + 1.462100000000000e-01 + 3.666700000000000e-01 + 5.285900000000000e-01 + 6.321300000000000e-01 + 6.971000000000001e-01 + 7.456800000000000e-01 + 7.845400000000000e-01 + 7.973900000000000e-01 + 7.528700000000000e-01 + 6.236400000000000e-01 + 4.059200000000000e-01 + 1.280500000000000e-01 +-1.570300000000000e-01 +-3.915000000000000e-01 +-5.344400000000000e-01 +-5.750999999999999e-01 +-5.321500000000000e-01 +-4.413100000000000e-01 +-3.389200000000000e-01 +-2.496900000000000e-01 +-1.832100000000000e-01 +-1.383000000000000e-01 +-1.103500000000000e-01 +-9.633300000000000e-02 +-9.491800000000000e-02 +-1.029900000000000e-01 +-1.123400000000000e-01 +-1.099600000000000e-01 +-8.254700000000000e-02 +-2.257200000000000e-02 + 6.787899999999999e-02 + 1.780900000000000e-01 + 2.935700000000000e-01 + 4.012400000000000e-01 + 4.913000000000000e-01 + 5.552200000000000e-01 + 5.826600000000000e-01 + 5.616500000000000e-01 + 4.840800000000000e-01 + 3.535800000000000e-01 + 1.896600000000000e-01 + 2.294900000000000e-02 +-1.179600000000000e-01 +-2.209300000000000e-01 +-2.964400000000000e-01 +-3.699300000000000e-01 +-4.639400000000000e-01 +-5.809600000000000e-01 +-6.986599999999999e-01 +-7.813000000000000e-01 +-8.002600000000000e-01 +-7.500100000000000e-01 +-6.487000000000001e-01 +-5.234000000000000e-01 +-3.911100000000000e-01 +-2.496400000000000e-01 +-8.539200000000000e-02 + 1.084800000000000e-01 + 3.180300000000000e-01 + 5.109800000000000e-01 + 6.552100000000000e-01 + 7.401200000000000e-01 + 7.838500000000000e-01 + 8.191700000000000e-01 + 8.667600000000000e-01 + 9.151899999999999e-01 + 9.235300000000000e-01 + 8.466100000000000e-01 + 6.663400000000000e-01 + 4.074900000000000e-01 + 1.265700000000000e-01 +-1.183700000000000e-01 +-2.963100000000000e-01 +-4.113700000000000e-01 +-4.876700000000000e-01 +-5.445600000000000e-01 +-5.821000000000000e-01 +-5.865200000000000e-01 +-5.491100000000000e-01 +-4.815200000000000e-01 +-4.138800000000000e-01 +-3.769700000000000e-01 +-3.823000000000000e-01 +-4.156800000000000e-01 +-4.485100000000000e-01 +-4.572300000000000e-01 +-4.357100000000000e-01 +-3.925100000000000e-01 +-3.376400000000000e-01 +-2.720200000000000e-01 +-1.886200000000000e-01 +-8.357100000000001e-02 + 3.432500000000000e-02 + 1.453600000000000e-01 + 2.319300000000000e-01 + 2.921300000000000e-01 + 3.424200000000000e-01 + 4.065100000000000e-01 + 4.992500000000000e-01 + 6.178600000000000e-01 + 7.460800000000000e-01 + 8.654900000000000e-01 + 9.629200000000000e-01 + 1.027500000000000e+00 + 1.042600000000000e+00 + 9.833100000000000e-01 + 8.276200000000000e-01 + 5.740700000000000e-01 + 2.529100000000000e-01 +-8.183100000000000e-02 +-3.768600000000000e-01 +-6.046800000000000e-01 +-7.711800000000000e-01 +-9.003100000000001e-01 +-1.007900000000000e+00 +-1.085600000000000e+00 +-1.106900000000000e+00 +-1.051200000000000e+00 +-9.255200000000000e-01 +-7.663700000000000e-01 +-6.193100000000000e-01 +-5.115200000000000e-01 +-4.373500000000000e-01 +-3.669900000000000e-01 +-2.701300000000000e-01 +-1.364900000000000e-01 + 2.103700000000000e-02 + 1.799000000000000e-01 + 3.248900000000000e-01 + 4.546500000000000e-01 + 5.743300000000000e-01 + 6.831700000000001e-01 + 7.695300000000000e-01 + 8.180900000000000e-01 + 8.227600000000000e-01 + 7.933000000000000e-01 + 7.492000000000000e-01 + 7.052500000000000e-01 + 6.603599999999999e-01 + 5.988400000000000e-01 + 5.034400000000000e-01 + 3.700400000000000e-01 + 2.130600000000000e-01 + 5.796600000000000e-02 +-7.333900000000000e-02 +-1.737600000000000e-01 +-2.521200000000000e-01 +-3.249300000000000e-01 +-4.054900000000000e-01 +-4.970000000000000e-01 +-5.921600000000000e-01 +-6.772300000000000e-01 +-7.371000000000000e-01 +-7.594800000000000e-01 +-7.380900000000000e-01 +-6.751300000000000e-01 +-5.818700000000000e-01 +-4.759500000000000e-01 +-3.754400000000000e-01 +-2.919500000000000e-01 +-2.266700000000000e-01 +-1.713800000000000e-01 +-1.134300000000000e-01 +-4.138400000000000e-02 + 5.202300000000000e-02 + 1.699700000000000e-01 + 3.124700000000000e-01 + 4.754600000000000e-01 + 6.474200000000000e-01 + 8.060500000000000e-01 + 9.188400000000000e-01 + 9.501500000000001e-01 + 8.738000000000000e-01 + 6.866600000000000e-01 + 4.166000000000000e-01 + 1.192300000000000e-01 +-1.378000000000000e-01 +-2.984000000000000e-01 +-3.397300000000000e-01 +-2.809600000000000e-01 +-1.731300000000000e-01 +-7.341700000000000e-02 +-1.680400000000000e-02 +-1.041900000000000e-03 + 5.795100000000000e-03 + 3.922700000000000e-02 + 1.098500000000000e-01 + 1.908100000000000e-01 + 2.300300000000000e-01 + 1.800900000000000e-01 + 2.716700000000000e-02 +-1.987000000000000e-01 +-4.375900000000000e-01 +-6.282400000000000e-01 +-7.338200000000000e-01 +-7.512400000000000e-01 +-7.024500000000000e-01 +-6.166100000000000e-01 +-5.150800000000000e-01 +-4.059300000000000e-01 +-2.873100000000000e-01 +-1.545100000000000e-01 +-6.190700000000000e-03 + 1.516800000000000e-01 + 3.046900000000000e-01 + 4.322000000000000e-01 + 5.138400000000000e-01 + 5.389800000000000e-01 + 5.140900000000000e-01 + 4.618500000000000e-01 + 4.101100000000000e-01 + 3.762500000000000e-01 + 3.574600000000000e-01 + 3.349100000000000e-01 + 2.900500000000000e-01 + 2.213200000000000e-01 + 1.483200000000000e-01 + 9.899400000000000e-02 + 8.843300000000000e-02 + 1.053500000000000e-01 + 1.170800000000000e-01 + 9.045200000000000e-02 + 1.391200000000000e-02 +-9.510700000000000e-02 +-2.022800000000000e-01 +-2.785700000000000e-01 +-3.162700000000000e-01 +-3.282500000000000e-01 +-3.333800000000000e-01 +-3.405200000000000e-01 +-3.437600000000000e-01 +-3.306900000000000e-01 +-2.953500000000000e-01 +-2.443400000000000e-01 +-1.914000000000000e-01 +-1.461800000000000e-01 +-1.076600000000000e-01 +-6.842800000000000e-02 +-2.619500000000000e-02 + 7.904599999999999e-03 + 1.287900000000000e-02 +-2.730700000000000e-02 +-1.077700000000000e-01 +-1.978900000000000e-01 +-2.531600000000000e-01 +-2.375300000000000e-01 +-1.429600000000000e-01 + 6.355700000000000e-03 + 1.679400000000000e-01 + 3.047100000000000e-01 + 4.040300000000000e-01 + 4.806500000000000e-01 + 5.620100000000000e-01 + 6.653200000000000e-01 + 7.805200000000000e-01 + 8.702800000000001e-01 + 8.875200000000000e-01 + 8.006700000000000e-01 + 6.120700000000000e-01 + 3.589100000000000e-01 + 9.635600000000000e-02 +-1.273000000000000e-01 +-2.896600000000000e-01 +-3.982400000000000e-01 +-4.794500000000000e-01 +-5.608700000000000e-01 +-6.569600000000000e-01 +-7.642200000000000e-01 +-8.651799999999999e-01 +-9.364200000000000e-01 +-9.564400000000000e-01 +-9.114700000000000e-01 +-7.993700000000000e-01 +-6.313900000000000e-01 +-4.300200000000000e-01 +-2.222600000000000e-01 +-3.058900000000000e-02 + 1.334900000000000e-01 + 2.687200000000000e-01 + 3.769300000000000e-01 + 4.554200000000000e-01 + 4.961000000000000e-01 + 4.933200000000000e-01 + 4.546200000000000e-01 + 4.045100000000000e-01 + 3.758100000000000e-01 + 3.924300000000000e-01 + 4.553300000000000e-01 + 5.417999999999999e-01 + 6.190300000000000e-01 + 6.618000000000001e-01 + 6.617000000000000e-01 + 6.223700000000000e-01 + 5.470900000000000e-01 + 4.315600000000000e-01 + 2.694700000000000e-01 + 6.701799999999999e-02 +-1.470000000000000e-01 +-3.269300000000000e-01 +-4.314700000000000e-01 +-4.473000000000000e-01 +-3.987500000000000e-01 +-3.361300000000000e-01 +-3.096600000000000e-01 +-3.452700000000000e-01 +-4.360200000000000e-01 +-5.514300000000000e-01 +-6.560700000000000e-01 +-7.250600000000000e-01 +-7.495200000000000e-01 +-7.329599999999999e-01 +-6.843200000000000e-01 +-6.121000000000000e-01 +-5.208300000000000e-01 +-4.092000000000000e-01 +-2.702300000000000e-01 +-9.529000000000000e-02 + 1.180400000000000e-01 + 3.577100000000000e-01 + 5.950500000000000e-01 + 7.922000000000000e-01 + 9.166500000000000e-01 + 9.543700000000001e-01 + 9.131600000000000e-01 + 8.148700000000000e-01 + 6.826000000000000e-01 + 5.322400000000000e-01 + 3.731800000000000e-01 + 2.150400000000000e-01 + 7.266100000000000e-02 +-3.617200000000000e-02 +-9.887799999999999e-02 +-1.154100000000000e-01 +-9.870100000000000e-02 +-6.796300000000000e-02 +-3.980100000000000e-02 +-2.311200000000000e-02 +-1.942300000000000e-02 +-2.599900000000000e-02 +-3.813400000000000e-02 +-4.989700000000000e-02 +-5.550700000000000e-02 +-5.302200000000000e-02 +-4.848000000000000e-02 +-5.612800000000000e-02 +-9.218100000000000e-02 +-1.649800000000000e-01 +-2.684500000000000e-01 +-3.841300000000000e-01 +-4.905700000000000e-01 +-5.727700000000000e-01 +-6.248100000000000e-01 +-6.447900000000000e-01 +-6.287199999999999e-01 +-5.704800000000000e-01 +-4.687500000000000e-01 +-3.340200000000000e-01 +-1.873300000000000e-01 +-4.936700000000000e-02 + 7.192800000000001e-02 + 1.840800000000000e-01 + 2.992900000000000e-01 + 4.184700000000000e-01 + 5.242700000000000e-01 + 5.907000000000000e-01 + 6.027600000000000e-01 + 5.696000000000000e-01 + 5.190100000000000e-01 + 4.764600000000000e-01 + 4.460100000000000e-01 + 4.099900000000000e-01 + 3.487600000000000e-01 + 2.639200000000000e-01 + 1.840100000000000e-01 + 1.452600000000000e-01 + 1.618600000000000e-01 + 2.106000000000000e-01 + 2.442800000000000e-01 + 2.250100000000000e-01 + 1.508100000000000e-01 + 5.360100000000000e-02 +-3.022500000000000e-02 +-9.207000000000000e-02 +-1.584200000000000e-01 +-2.656300000000000e-01 +-4.223300000000000e-01 +-5.915500000000000e-01 +-7.098000000000000e-01 +-7.305199999999999e-01 +-6.584400000000000e-01 +-5.470300000000000e-01 +-4.597500000000000e-01 +-4.242900000000000e-01 +-4.149300000000000e-01 +-3.763200000000000e-01 +-2.702700000000000e-01 +-1.093500000000000e-01 + 4.787700000000000e-02 + 1.363900000000000e-01 + 1.295800000000000e-01 + 5.772100000000000e-02 +-1.126300000000000e-02 +-1.338400000000000e-02 + 7.606000000000000e-02 + 2.339600000000000e-01 + 4.078500000000000e-01 + 5.451000000000000e-01 + 6.142100000000000e-01 + 6.102900000000000e-01 + 5.481900000000000e-01 + 4.522600000000000e-01 + 3.481600000000000e-01 + 2.569700000000000e-01 + 1.903900000000000e-01 + 1.479800000000000e-01 + 1.191600000000000e-01 + 9.089899999999999e-02 + 5.696400000000000e-02 + 2.231100000000000e-02 +-1.136500000000000e-03 +-4.250800000000000e-03 + 1.153400000000000e-02 + 3.437500000000000e-02 + 4.940100000000000e-02 + 4.681000000000000e-02 + 2.428100000000000e-02 +-1.705200000000000e-02 +-7.784900000000000e-02 +-1.610600000000000e-01 +-2.666700000000000e-01 +-3.858400000000000e-01 +-5.006000000000000e-01 +-5.910300000000001e-01 +-6.447600000000000e-01 +-6.617200000000000e-01 +-6.503300000000000e-01 +-6.188700000000000e-01 +-5.689200000000000e-01 +-4.959200000000000e-01 +-3.955400000000000e-01 +-2.698000000000000e-01 +-1.278900000000000e-01 + 1.838000000000000e-02 + 1.602800000000000e-01 + 2.943000000000000e-01 + 4.201400000000000e-01 + 5.373500000000000e-01 + 6.439200000000000e-01 + 7.371300000000000e-01 + 8.142200000000001e-01 + 8.708900000000001e-01 + 8.987500000000000e-01 + 8.856200000000000e-01 + 8.206000000000000e-01 + 7.018600000000000e-01 + 5.412800000000000e-01 + 3.612900000000000e-01 + 1.849500000000000e-01 + 2.570600000000000e-02 +-1.161900000000000e-01 +-2.485300000000000e-01 +-3.781100000000000e-01 +-5.048500000000000e-01 +-6.229200000000000e-01 +-7.262400000000000e-01 +-8.121300000000000e-01 +-8.793700000000000e-01 +-9.224100000000000e-01 +-9.279300000000000e-01 +-8.782000000000000e-01 +-7.603000000000000e-01 +-5.752800000000000e-01 +-3.413500000000000e-01 +-8.964900000000001e-02 + 1.442400000000000e-01 + 3.283600000000000e-01 + 4.404200000000000e-01 + 4.726300000000000e-01 + 4.358800000000000e-01 + 3.607300000000000e-01 + 2.907800000000000e-01 + 2.670700000000000e-01 + 3.091700000000000e-01 + 4.037500000000000e-01 + 5.096800000000000e-01 + 5.784800000000000e-01 + 5.789299999999999e-01 + 5.105400000000000e-01 + 3.983200000000000e-01 + 2.739100000000000e-01 + 1.573200000000000e-01 + 5.169500000000000e-02 +-4.739000000000000e-02 +-1.381800000000000e-01 +-2.070000000000000e-01 +-2.357700000000000e-01 +-2.161900000000000e-01 +-1.588800000000000e-01 +-8.958900000000000e-02 +-3.564500000000000e-02 +-1.321400000000000e-02 +-2.471900000000000e-02 +-6.658300000000000e-02 +-1.386900000000000e-01 +-2.458500000000000e-01 +-3.888900000000000e-01 +-5.529100000000000e-01 +-7.035800000000000e-01 +-7.972200000000000e-01 +-7.996100000000000e-01 +-7.014800000000000e-01 +-5.206900000000000e-01 +-2.902100000000000e-01 +-4.111500000000000e-02 + 2.077300000000000e-01 + 4.476300000000000e-01 + 6.694600000000001e-01 + 8.547900000000000e-01 + 9.767400000000001e-01 + 1.010700000000000e+00 + 9.475600000000000e-01 + 8.000800000000000e-01 + 5.980799999999999e-01 + 3.764500000000000e-01 + 1.637000000000000e-01 +-2.227100000000000e-02 +-1.713300000000000e-01 +-2.764500000000000e-01 +-3.330400000000000e-01 +-3.436100000000000e-01 +-3.227400000000000e-01 +-2.959400000000000e-01 +-2.896600000000000e-01 +-3.171200000000000e-01 +-3.692000000000000e-01 +-4.179000000000000e-01 +-4.316500000000000e-01 +-3.935700000000000e-01 +-3.107900000000000e-01 +-2.090000000000000e-01 +-1.162700000000000e-01 +-4.748500000000000e-02 +-1.924300000000000e-04 + 3.671100000000000e-02 + 6.929100000000001e-02 + 9.166400000000000e-02 + 9.181700000000000e-02 + 6.567300000000000e-02 + 2.768100000000000e-02 + 8.039500000000000e-03 + 3.640700000000000e-02 + 1.223200000000000e-01 + 2.457300000000000e-01 + 3.647400000000000e-01 + 4.362000000000000e-01 + 4.368900000000000e-01 + 3.730500000000000e-01 + 2.745400000000000e-01 + 1.784500000000000e-01 + 1.124600000000000e-01 + 8.560400000000000e-02 + 8.855000000000000e-02 + 1.007500000000000e-01 + 9.985700000000000e-02 + 7.021600000000000e-02 + 8.404800000000000e-03 +-7.554800000000000e-02 +-1.622100000000000e-01 +-2.312100000000000e-01 +-2.706000000000000e-01 +-2.820500000000000e-01 +-2.786100000000000e-01 +-2.760900000000000e-01 +-2.835800000000000e-01 +-2.989700000000000e-01 +-3.121000000000000e-01 +-3.123600000000000e-01 +-2.952300000000000e-01 +-2.636700000000000e-01 +-2.246300000000000e-01 +-1.841200000000000e-01 +-1.444300000000000e-01 +-1.039000000000000e-01 +-5.782200000000000e-02 + 9.647000000000000e-04 + 8.071600000000000e-02 + 1.870900000000000e-01 + 3.173600000000000e-01 + 4.562100000000000e-01 + 5.780700000000000e-01 + 6.570800000000000e-01 + 6.799100000000000e-01 + 6.525500000000000e-01 + 5.950900000000000e-01 + 5.268000000000000e-01 + 4.514500000000000e-01 + 3.538600000000000e-01 + 2.111700000000000e-01 + 1.159800000000000e-02 +-2.324000000000000e-01 +-4.857600000000000e-01 +-7.063500000000000e-01 +-8.636700000000000e-01 +-9.487700000000000e-01 +-9.702200000000000e-01 +-9.411100000000000e-01 +-8.674600000000000e-01 +-7.458200000000000e-01 +-5.706000000000000e-01 +-3.444700000000000e-01 +-8.408900000000000e-02 + 1.825200000000000e-01 + 4.250600000000000e-01 + 6.210400000000000e-01 + 7.618000000000000e-01 + 8.519600000000001e-01 + 9.031700000000000e-01 + 9.252000000000000e-01 + 9.190700000000001e-01 + 8.759400000000001e-01 + 7.834200000000000e-01 + 6.364700000000000e-01 + 4.459900000000000e-01 + 2.386000000000000e-01 + 4.574200000000000e-02 +-1.121400000000000e-01 +-2.358500000000000e-01 +-3.443300000000000e-01 +-4.595500000000000e-01 +-5.893900000000000e-01 +-7.208800000000000e-01 +-8.282300000000000e-01 +-8.891800000000000e-01 +-8.970900000000001e-01 +-8.600900000000000e-01 +-7.898400000000000e-01 +-6.910400000000000e-01 +-5.615599999999999e-01 +-4.030500000000000e-01 +-2.313100000000000e-01 +-7.471100000000000e-02 + 4.122300000000000e-02 + 1.121900000000000e-01 + 1.609200000000000e-01 + 2.234900000000000e-01 + 3.243800000000000e-01 + 4.584700000000000e-01 + 5.937900000000000e-01 + 6.933000000000000e-01 + 7.396100000000000e-01 + 7.444300000000000e-01 + 7.365500000000000e-01 + 7.386800000000000e-01 + 7.507800000000000e-01 + 7.513600000000000e-01 + 7.136100000000000e-01 + 6.224800000000000e-01 + 4.808400000000000e-01 + 3.030500000000000e-01 + 1.049200000000000e-01 +-1.005500000000000e-01 +-2.999600000000000e-01 +-4.758300000000000e-01 +-6.098100000000000e-01 +-6.924600000000000e-01 +-7.306900000000000e-01 +-7.438600000000000e-01 +-7.487100000000000e-01 +-7.442200000000000e-01 +-7.100900000000000e-01 +-6.228300000000000e-01 +-4.785300000000000e-01 +-3.042300000000000e-01 +-1.468500000000000e-01 +-4.569500000000000e-02 +-7.896200000000001e-03 +-5.621800000000000e-03 + 2.212800000000000e-03 + 3.915900000000000e-02 + 9.392499999999999e-02 + 1.291400000000000e-01 + 1.094300000000000e-01 + 2.824200000000000e-02 +-8.560900000000000e-02 +-1.849300000000000e-01 +-2.309500000000000e-01 +-2.103900000000000e-01 +-1.322500000000000e-01 +-1.005500000000000e-02 + 1.539900000000000e-01 + 3.692500000000000e-01 + 6.405300000000000e-01 + 9.481400000000000e-01 + 1.240200000000000e+00 + 1.445000000000000e+00 + 1.498600000000000e+00 + 1.370500000000000e+00 + 1.076900000000000e+00 + 6.727300000000001e-01 + 2.308100000000000e-01 +-1.813200000000000e-01 +-5.177400000000000e-01 +-7.593700000000000e-01 +-9.102400000000000e-01 +-9.888000000000000e-01 +-1.017900000000000e+00 +-1.015900000000000e+00 +-9.905400000000000e-01 +-9.384500000000000e-01 +-8.513100000000000e-01 +-7.260799999999999e-01 +-5.740700000000000e-01 +-4.219300000000000e-01 +-3.018100000000000e-01 +-2.346200000000000e-01 +-2.161800000000000e-01 +-2.157600000000000e-01 +-1.896800000000000e-01 +-1.031000000000000e-01 + 5.268600000000000e-02 + 2.574300000000000e-01 + 4.744800000000000e-01 + 6.694099999999999e-01 + 8.224399999999999e-01 + 9.280000000000000e-01 + 9.847300000000000e-01 + 9.865500000000000e-01 + 9.231100000000000e-01 + 7.896100000000000e-01 + 5.973800000000000e-01 + 3.754300000000000e-01 + 1.600400000000000e-01 +-2.070600000000000e-02 +-1.567800000000000e-01 +-2.541900000000000e-01 +-3.246900000000000e-01 +-3.764000000000000e-01 +-4.126500000000000e-01 +-4.373500000000000e-01 +-4.587300000000000e-01 +-4.846800000000000e-01 +-5.119700000000000e-01 +-5.194400000000000e-01 +-4.751500000000000e-01 +-3.566300000000000e-01 +-1.713600000000000e-01 + 3.853200000000000e-02 + 2.140200000000000e-01 + 3.096800000000000e-01 + 3.169400000000000e-01 + 2.646500000000000e-01 + 1.972000000000000e-01 + 1.463000000000000e-01 + 1.157800000000000e-01 + 8.761099999999999e-02 + 4.136400000000000e-02 +-2.970100000000000e-02 +-1.170100000000000e-01 +-2.073200000000000e-01 +-2.934000000000000e-01 +-3.742400000000000e-01 +-4.455900000000000e-01 +-4.915500000000000e-01 +-4.877500000000000e-01 +-4.160800000000000e-01 +-2.796800000000000e-01 +-1.047700000000000e-01 + 7.403000000000000e-02 + 2.347500000000000e-01 + 3.794000000000000e-01 + 5.262900000000000e-01 + 6.888900000000000e-01 + 8.572000000000000e-01 + 9.956300000000000e-01 + 1.059300000000000e+00 + 1.017200000000000e+00 + 8.669800000000000e-01 + 6.334300000000000e-01 + 3.546600000000000e-01 + 6.691600000000000e-02 +-2.034600000000000e-01 +-4.399400000000000e-01 +-6.329100000000000e-01 +-7.787900000000000e-01 +-8.810400000000000e-01 +-9.489000000000000e-01 +-9.913000000000000e-01 +-1.008100000000000e+00 +-9.852700000000000e-01 +-8.989800000000000e-01 +-7.281900000000000e-01 +-4.690800000000000e-01 +-1.432700000000000e-01 + 2.044300000000000e-01 + 5.176500000000001e-01 + 7.444800000000000e-01 + 8.523500000000001e-01 + 8.375200000000000e-01 + 7.263900000000000e-01 + 5.670300000000000e-01 + 4.122400000000000e-01 + 2.995600000000000e-01 + 2.372600000000000e-01 + 2.041300000000000e-01 + 1.643500000000000e-01 + 8.937900000000000e-02 +-2.589000000000000e-02 +-1.621900000000000e-01 +-2.892900000000000e-01 +-3.832100000000000e-01 +-4.353000000000000e-01 +-4.482000000000000e-01 +-4.250600000000000e-01 +-3.628500000000000e-01 +-2.567300000000000e-01 +-1.116200000000000e-01 + 4.982900000000000e-02 + 1.918500000000000e-01 + 2.819200000000000e-01 + 3.081400000000000e-01 + 2.853700000000000e-01 + 2.454800000000000e-01 + 2.185300000000000e-01 + 2.171400000000000e-01 + 2.331200000000000e-01 + 2.461300000000000e-01 + 2.364600000000000e-01 + 1.934500000000000e-01 + 1.166700000000000e-01 + 1.299500000000000e-02 +-1.057200000000000e-01 +-2.230300000000000e-01 +-3.187000000000000e-01 +-3.730000000000000e-01 +-3.736800000000000e-01 +-3.215300000000000e-01 +-2.300500000000000e-01 +-1.191100000000000e-01 +-7.006100000000000e-03 + 9.319800000000000e-02 + 1.716200000000000e-01 + 2.171400000000000e-01 + 2.164300000000000e-01 + 1.593600000000000e-01 + 4.763100000000000e-02 +-9.971400000000000e-02 +-2.489700000000000e-01 +-3.621700000000000e-01 +-4.097100000000000e-01 +-3.788300000000000e-01 +-2.749400000000000e-01 +-1.175400000000000e-01 + 6.544200000000000e-02 + 2.424100000000000e-01 + 3.818100000000000e-01 + 4.565500000000000e-01 + 4.495700000000000e-01 + 3.592200000000000e-01 + 2.017300000000000e-01 + 8.926999999999999e-03 +-1.788100000000000e-01 +-3.224500000000000e-01 +-3.945600000000000e-01 +-3.869200000000000e-01 +-3.129200000000000e-01 +-2.027000000000000e-01 +-9.152600000000000e-02 +-5.532200000000000e-03 + 4.855700000000000e-02 + 8.374500000000000e-02 + 1.224100000000000e-01 + 1.811600000000000e-01 + 2.604000000000000e-01 + 3.450400000000000e-01 + 4.153900000000000e-01 + 4.597800000000000e-01 + 4.797100000000000e-01 + 4.842300000000000e-01 + 4.788800000000000e-01 + 4.588800000000000e-01 + 4.123500000000000e-01 + 3.310600000000000e-01 + 2.196100000000000e-01 + 9.478499999999999e-02 +-2.509500000000000e-02 +-1.328600000000000e-01 +-2.369600000000000e-01 +-3.537700000000000e-01 +-4.930300000000000e-01 +-6.473100000000001e-01 +-7.932700000000000e-01 +-9.037100000000000e-01 +-9.616000000000000e-01 +-9.664700000000001e-01 +-9.296000000000000e-01 +-8.629400000000000e-01 +-7.704000000000000e-01 +-6.476300000000000e-01 +-4.891300000000000e-01 +-2.966200000000000e-01 +-8.216500000000000e-02 + 1.360800000000000e-01 + 3.421100000000000e-01 + 5.286200000000000e-01 + 6.980700000000000e-01 + 8.577900000000001e-01 + 1.012500000000000e+00 + 1.158300000000000e+00 + 1.281000000000000e+00 + 1.359200000000000e+00 + 1.371500000000000e+00 + 1.303400000000000e+00 + 1.152000000000000e+00 + 9.257000000000000e-01 + 6.410500000000000e-01 + 3.176000000000000e-01 +-2.462400000000000e-02 +-3.650000000000000e-01 +-6.812200000000000e-01 +-9.502699999999999e-01 +-1.153000000000000e+00 +-1.279700000000000e+00 +-1.332500000000000e+00 +-1.321100000000000e+00 +-1.254300000000000e+00 +-1.133800000000000e+00 +-9.552500000000000e-01 +-7.180100000000000e-01 +-4.360200000000000e-01 +-1.412900000000000e-01 + 1.248400000000000e-01 + 3.283900000000000e-01 + 4.570100000000000e-01 + 5.226000000000000e-01 + 5.513100000000000e-01 + 5.681100000000000e-01 + 5.857800000000000e-01 + 6.035900000000000e-01 + 6.129800000000000e-01 + 6.036899999999999e-01 + 5.663600000000000e-01 + 4.931300000000000e-01 + 3.804600000000000e-01 + 2.351500000000000e-01 + 7.860600000000000e-02 +-5.781500000000000e-02 +-1.477300000000000e-01 +-1.869200000000000e-01 +-1.992200000000000e-01 +-2.231600000000000e-01 +-2.851500000000000e-01 +-3.767700000000000e-01 +-4.539500000000000e-01 +-4.614600000000000e-01 +-3.681400000000000e-01 +-1.894000000000000e-01 + 1.844300000000000e-02 + 1.879900000000000e-01 + 2.745200000000000e-01 + 2.718900000000000e-01 + 2.034500000000000e-01 + 9.903600000000000e-02 +-2.224900000000000e-02 +-1.518000000000000e-01 +-2.780800000000000e-01 +-3.758200000000000e-01 +-4.107800000000000e-01 +-3.588900000000000e-01 +-2.251100000000000e-01 +-4.628300000000000e-02 + 1.262200000000000e-01 + 2.529600000000000e-01 + 3.241500000000000e-01 + 3.577200000000000e-01 + 3.814500000000000e-01 + 4.129800000000000e-01 + 4.511400000000000e-01 + 4.812000000000000e-01 + 4.867300000000000e-01 + 4.574800000000000e-01 + 3.894900000000000e-01 + 2.812600000000000e-01 + 1.329100000000000e-01 +-4.926000000000000e-02 +-2.471800000000000e-01 +-4.313800000000000e-01 +-5.699100000000000e-01 +-6.410900000000000e-01 +-6.418700000000001e-01 +-5.863000000000000e-01 +-4.960500000000000e-01 +-3.901200000000000e-01 +-2.800100000000000e-01 +-1.713500000000000e-01 +-6.807800000000000e-02 + 2.509400000000000e-02 + 1.027900000000000e-01 + 1.593500000000000e-01 + 1.877100000000000e-01 + 1.785400000000000e-01 + 1.234800000000000e-01 + 2.363800000000000e-02 +-1.014200000000000e-01 +-2.127000000000000e-01 +-2.641200000000000e-01 +-2.241700000000000e-01 +-9.410700000000000e-02 + 9.001700000000000e-02 + 2.748300000000000e-01 + 4.164500000000000e-01 + 4.995000000000000e-01 + 5.364700000000000e-01 + 5.495600000000000e-01 + 5.494300000000000e-01 + 5.272600000000000e-01 + 4.653900000000000e-01 + 3.575700000000000e-01 + 2.221000000000000e-01 + 9.632900000000000e-02 + 1.494800000000000e-02 +-1.300700000000000e-02 +-1.220700000000000e-02 +-2.783400000000000e-02 +-9.926100000000000e-02 +-2.372100000000000e-01 +-4.181400000000000e-01 +-5.980799999999999e-01 +-7.359500000000000e-01 +-8.115700000000000e-01 +-8.287099999999999e-01 +-8.033200000000000e-01 +-7.467900000000000e-01 +-6.557700000000000e-01 +-5.152500000000000e-01 +-3.126300000000000e-01 +-5.361900000000000e-02 + 2.304300000000000e-01 + 4.893000000000000e-01 + 6.720400000000000e-01 + 7.474900000000000e-01 + 7.163900000000000e-01 + 6.095100000000000e-01 + 4.732900000000000e-01 + 3.512200000000000e-01 + 2.701300000000000e-01 + 2.365000000000000e-01 + 2.416400000000000e-01 + 2.701700000000000e-01 + 3.064500000000000e-01 + 3.370700000000000e-01 + 3.511500000000000e-01 + 3.409200000000000e-01 + 3.031500000000000e-01 + 2.397800000000000e-01 + 1.558400000000000e-01 + 5.544500000000000e-02 +-6.120400000000000e-02 +-1.966700000000000e-01 +-3.510900000000000e-01 +-5.165400000000000e-01 +-6.757400000000000e-01 +-8.066100000000000e-01 +-8.901800000000000e-01 +-9.166000000000000e-01 +-8.858100000000000e-01 +-8.036000000000000e-01 +-6.770500000000000e-01 +-5.129400000000000e-01 +-3.192700000000000e-01 +-1.072700000000000e-01 + 1.088500000000000e-01 + 3.142000000000000e-01 + 4.951600000000000e-01 + 6.390100000000000e-01 + 7.325500000000000e-01 + 7.631599999999999e-01 + 7.245900000000000e-01 + 6.245700000000000e-01 + 4.882000000000000e-01 + 3.516000000000000e-01 + 2.474700000000000e-01 + 1.906600000000000e-01 + 1.735700000000000e-01 + 1.748000000000000e-01 + 1.750900000000000e-01 + 1.691300000000000e-01 + 1.650500000000000e-01 + 1.729300000000000e-01 + 1.921300000000000e-01 + 2.076000000000000e-01 + 1.979000000000000e-01 + 1.483400000000000e-01 + 5.923500000000000e-02 +-5.625300000000000e-02 +-1.814000000000000e-01 +-3.042300000000000e-01 +-4.190700000000000e-01 +-5.223100000000001e-01 +-6.085199999999999e-01 +-6.715200000000000e-01 +-7.089100000000000e-01 +-7.245700000000000e-01 +-7.247500000000000e-01 +-7.100200000000000e-01 +-6.706400000000000e-01 +-5.910400000000000e-01 +-4.617700000000000e-01 +-2.899800000000000e-01 +-9.933000000000000e-02 + 8.208799999999999e-02 + 2.373600000000000e-01 + 3.682200000000000e-01 + 4.886100000000000e-01 + 6.094700000000000e-01 + 7.267100000000000e-01 + 8.218299999999999e-01 + 8.743200000000000e-01 + 8.762100000000000e-01 + 8.375400000000000e-01 + 7.791600000000000e-01 + 7.187700000000000e-01 + 6.603700000000000e-01 + 5.937000000000000e-01 + 5.022900000000000e-01 + 3.734500000000000e-01 + 2.039900000000000e-01 + 1.199000000000000e-04 +-2.254800000000000e-01 +-4.566300000000000e-01 +-6.758100000000000e-01 +-8.666199999999999e-01 +-1.016800000000000e+00 +-1.120100000000000e+00 +-1.174100000000000e+00 +-1.176300000000000e+00 +-1.120400000000000e+00 +-9.987200000000001e-01 +-8.095800000000000e-01 +-5.653200000000000e-01 +-2.927600000000000e-01 +-2.437000000000000e-02 + 2.152300000000000e-01 + 4.181200000000000e-01 + 5.910700000000000e-01 + 7.447700000000000e-01 + 8.828000000000000e-01 + 9.986200000000000e-01 + 1.081500000000000e+00 + 1.125100000000000e+00 + 1.130100000000000e+00 + 1.100000000000000e+00 + 1.033700000000000e+00 + 9.230000000000000e-01 + 7.590200000000000e-01 + 5.399500000000000e-01 + 2.743900000000000e-01 +-2.374100000000000e-02 +-3.434700000000000e-01 +-6.790000000000000e-01 +-1.021900000000000e+00 +-1.349000000000000e+00 +-1.617800000000000e+00 +-1.777400000000000e+00 +-1.790800000000000e+00 +-1.654300000000000e+00 +-1.399700000000000e+00 +-1.077400000000000e+00 +-7.312800000000000e-01 +-3.834500000000000e-01 +-3.687400000000000e-02 + 3.073700000000000e-01 + 6.343700000000000e-01 + 9.138700000000000e-01 + 1.114200000000000e+00 + 1.220900000000000e+00 + 1.245400000000000e+00 + 1.218500000000000e+00 + 1.172400000000000e+00 + 1.124500000000000e+00 + 1.072400000000000e+00 + 1.000200000000000e+00 + 8.915800000000000e-01 + 7.409200000000000e-01 + 5.567800000000001e-01 + 3.586400000000000e-01 + 1.687300000000000e-01 + 2.734500000000000e-03 +-1.370000000000000e-01 +-2.623100000000000e-01 +-3.921600000000000e-01 +-5.402300000000000e-01 +-7.037500000000000e-01 +-8.617600000000000e-01 +-9.858500000000000e-01 +-1.057400000000000e+00 +-1.080000000000000e+00 +-1.076000000000000e+00 +-1.070400000000000e+00 +-1.069900000000000e+00 +-1.056100000000000e+00 +-9.959300000000000e-01 +-8.641000000000000e-01 +-6.615500000000000e-01 +-4.167800000000000e-01 +-1.701200000000000e-01 + 4.746800000000000e-02 + 2.270000000000000e-01 + 3.791200000000000e-01 + 5.217900000000000e-01 + 6.683200000000000e-01 + 8.224800000000000e-01 + 9.799099999999999e-01 + 1.130400000000000e+00 + 1.258300000000000e+00 + 1.343400000000000e+00 + 1.366200000000000e+00 + 1.318200000000000e+00 + 1.209200000000000e+00 + 1.064900000000000e+00 + 9.130600000000000e-01 + 7.673600000000000e-01 + 6.206800000000000e-01 + 4.543700000000000e-01 + 2.559900000000000e-01 + 3.097400000000000e-02 +-2.020900000000000e-01 +-4.287100000000000e-01 +-6.529800000000000e-01 +-8.948900000000000e-01 +-1.170200000000000e+00 +-1.467800000000000e+00 +-1.744000000000000e+00 +-1.940200000000000e+00 +-2.013200000000000e+00 +-1.955600000000000e+00 +-1.792400000000000e+00 +-1.557400000000000e+00 +-1.269400000000000e+00 +-9.264300000000000e-01 +-5.204400000000000e-01 +-5.998600000000000e-02 + 4.204200000000000e-01 + 8.714900000000000e-01 + 1.251800000000000e+00 + 1.543900000000000e+00 + 1.750700000000000e+00 + 1.878900000000000e+00 + 1.923400000000000e+00 + 1.868700000000000e+00 + 1.705700000000000e+00 + 1.450600000000000e+00 + 1.147300000000000e+00 + 8.501700000000000e-01 + 5.965800000000000e-01 + 3.894100000000000e-01 + 2.007500000000000e-01 +-5.753400000000000e-03 +-2.494700000000000e-01 +-5.204500000000000e-01 +-7.858100000000000e-01 +-1.008100000000000e+00 +-1.162400000000000e+00 +-1.242700000000000e+00 +-1.257200000000000e+00 +-1.217800000000000e+00 +-1.134300000000000e+00 +-1.013400000000000e+00 +-8.637200000000000e-01 +-6.989200000000000e-01 +-5.370800000000000e-01 +-3.943700000000000e-01 +-2.767200000000000e-01 +-1.748400000000000e-01 +-6.667400000000000e-02 + 7.199200000000000e-02 + 2.531900000000000e-01 + 4.665200000000000e-01 + 6.798100000000000e-01 + 8.518700000000000e-01 + 9.508400000000000e-01 + 9.674600000000000e-01 + 9.154900000000000e-01 + 8.195800000000000e-01 + 6.999500000000000e-01 + 5.647799999999999e-01 + 4.151000000000000e-01 + 2.569200000000000e-01 + 1.093300000000000e-01 + 9.284800000000000e-06 +-5.019200000000000e-02 +-4.313200000000000e-02 +-7.709300000000000e-03 + 1.182700000000000e-02 +-2.267000000000000e-02 +-1.245000000000000e-01 +-2.761700000000000e-01 +-4.381900000000000e-01 +-5.662800000000000e-01 +-6.281900000000000e-01 +-6.134600000000000e-01 +-5.343100000000000e-01 +-4.190100000000000e-01 +-3.008200000000000e-01 +-2.060700000000000e-01 +-1.460300000000000e-01 +-1.162100000000000e-01 +-1.040200000000000e-01 +-9.975100000000001e-02 +-1.030800000000000e-01 +-1.194500000000000e-01 +-1.483700000000000e-01 +-1.735800000000000e-01 +-1.651800000000000e-01 +-9.590899999999999e-02 + 3.846200000000000e-02 + 2.102200000000000e-01 + 3.715100000000000e-01 + 4.814700000000000e-01 + 5.308300000000000e-01 + 5.463900000000000e-01 + 5.712000000000000e-01 + 6.333000000000000e-01 + 7.241700000000000e-01 + 8.008900000000000e-01 + 8.095500000000000e-01 + 7.140400000000000e-01 + 5.125800000000000e-01 + 2.352500000000000e-01 +-7.151000000000000e-02 +-3.617000000000000e-01 +-5.999000000000000e-01 +-7.649000000000000e-01 +-8.511300000000001e-01 +-8.700000000000000e-01 +-8.480500000000000e-01 +-8.183400000000000e-01 +-8.058000000000000e-01 +-8.144100000000000e-01 +-8.246800000000000e-01 +-8.042800000000000e-01 +-7.248000000000000e-01 +-5.740499999999999e-01 +-3.568700000000000e-01 +-8.729400000000000e-02 + 2.189900000000000e-01 + 5.453200000000000e-01 + 8.692100000000000e-01 + 1.159700000000000e+00 + 1.383000000000000e+00 + 1.514600000000000e+00 + 1.548100000000000e+00 + 1.491800000000000e+00 + 1.356500000000000e+00 + 1.142400000000000e+00 + 8.405100000000000e-01 + 4.473900000000000e-01 +-1.482600000000000e-02 +-4.913800000000000e-01 +-9.091300000000000e-01 +-1.205800000000000e+00 +-1.356700000000000e+00 +-1.380900000000000e+00 +-1.325000000000000e+00 +-1.234600000000000e+00 +-1.131700000000000e+00 +-1.011100000000000e+00 +-8.540800000000000e-01 +-6.475700000000000e-01 +-3.966300000000000e-01 +-1.242600000000000e-01 + 1.384500000000000e-01 + 3.645700000000000e-01 + 5.394800000000000e-01 + 6.625100000000000e-01 + 7.427500000000000e-01 + 7.914400000000000e-01 + 8.138700000000000e-01 + 8.049700000000000e-01 + 7.520200000000000e-01 + 6.449500000000000e-01 + 4.893400000000000e-01 + 3.133800000000000e-01 + 1.616400000000000e-01 + 7.626300000000000e-02 + 7.525100000000000e-02 + 1.412400000000000e-01 + 2.286100000000000e-01 + 2.853500000000000e-01 + 2.766400000000000e-01 + 1.964200000000000e-01 + 6.210100000000000e-02 +-1.010100000000000e-01 +-2.733200000000000e-01 +-4.441400000000000e-01 +-6.054300000000000e-01 +-7.446300000000000e-01 +-8.446200000000000e-01 +-8.917100000000000e-01 +-8.847600000000000e-01 +-8.370100000000000e-01 +-7.674100000000000e-01 +-6.868700000000000e-01 +-5.892800000000000e-01 +-4.545500000000000e-01 +-2.627200000000000e-01 +-1.077100000000000e-02 + 2.785000000000000e-01 + 5.613800000000000e-01 + 7.897800000000000e-01 + 9.307900000000000e-01 + 9.788400000000000e-01 + 9.547500000000000e-01 + 8.929200000000000e-01 + 8.240000000000000e-01 + 7.626600000000000e-01 + 7.062900000000000e-01 + 6.438600000000000e-01 + 5.677700000000000e-01 + 4.798900000000000e-01 + 3.874300000000000e-01 + 2.917400000000000e-01 + 1.792300000000000e-01 + 2.343000000000000e-02 +-2.003500000000000e-01 +-4.953800000000000e-01 +-8.314800000000000e-01 +-1.150000000000000e+00 +-1.384800000000000e+00 +-1.488300000000000e+00 +-1.448900000000000e+00 +-1.290400000000000e+00 +-1.056600000000000e+00 +-7.912200000000000e-01 +-5.234900000000000e-01 +-2.671500000000000e-01 +-2.764800000000000e-02 + 1.889900000000000e-01 + 3.724900000000000e-01 + 5.114600000000000e-01 + 6.000400000000000e-01 + 6.431300000000000e-01 + 6.567800000000000e-01 + 6.637500000000000e-01 + 6.859600000000000e-01 + 7.368600000000000e-01 + 8.158900000000000e-01 + 9.069700000000001e-01 + 9.816800000000000e-01 + 1.006900000000000e+00 + 9.547099999999999e-01 + 8.119900000000000e-01 + 5.855500000000000e-01 + 3.016100000000000e-01 +-8.529900000000000e-04 +-2.806300000000000e-01 +-5.050700000000000e-01 +-6.575200000000000e-01 +-7.387200000000000e-01 +-7.621800000000000e-01 +-7.462100000000000e-01 +-7.072400000000000e-01 +-6.582800000000000e-01 +-6.122300000000001e-01 +-5.856600000000000e-01 +-5.970900000000000e-01 +-6.572600000000000e-01 +-7.562600000000000e-01 +-8.572200000000000e-01 +-9.049700000000001e-01 +-8.487300000000000e-01 +-6.675500000000000e-01 +-3.825700000000000e-01 +-4.735100000000000e-02 + 2.788900000000000e-01 + 5.583399999999999e-01 + 7.852000000000000e-01 + 9.744500000000000e-01 + 1.139100000000000e+00 + 1.273400000000000e+00 + 1.354300000000000e+00 + 1.357800000000000e+00 + 1.276700000000000e+00 + 1.124800000000000e+00 + 9.250600000000000e-01 + 6.931400000000000e-01 + 4.290500000000000e-01 + 1.254600000000000e-01 +-2.147900000000000e-01 +-5.656600000000001e-01 +-8.802500000000000e-01 +-1.107500000000000e+00 +-1.212400000000000e+00 +-1.187300000000000e+00 +-1.051000000000000e+00 +-8.381700000000000e-01 +-5.889700000000000e-01 +-3.421900000000000e-01 +-1.311400000000000e-01 + 2.090300000000000e-02 + 1.057400000000000e-01 + 1.319500000000000e-01 + 1.196100000000000e-01 + 8.946999999999999e-02 + 5.333100000000000e-02 + 1.260600000000000e-02 +-3.403000000000000e-02 +-8.059800000000000e-02 +-1.102900000000000e-01 +-1.021000000000000e-01 +-4.278000000000000e-02 + 6.522900000000000e-02 + 2.053800000000000e-01 + 3.556700000000000e-01 + 4.962800000000000e-01 + 6.104800000000000e-01 + 6.806800000000000e-01 + 6.874000000000000e-01 + 6.162000000000000e-01 + 4.696900000000000e-01 + 2.740100000000000e-01 + 7.116300000000000e-02 +-1.007500000000000e-01 +-2.268100000000000e-01 +-3.193000000000000e-01 +-4.022300000000000e-01 +-4.868900000000000e-01 +-5.568600000000000e-01 +-5.750999999999999e-01 +-5.096800000000000e-01 +-3.604100000000000e-01 +-1.672500000000000e-01 + 6.516200000000000e-03 + 1.064400000000000e-01 + 1.143000000000000e-01 + 5.478300000000000e-02 +-2.125100000000000e-02 +-6.510700000000000e-02 +-5.359000000000000e-02 + 4.349300000000000e-03 + 7.836899999999999e-02 + 1.364200000000000e-01 + 1.619100000000000e-01 + 1.600400000000000e-01 + 1.516600000000000e-01 + 1.587600000000000e-01 + 1.899900000000000e-01 + 2.339100000000000e-01 + 2.640300000000000e-01 + 2.535000000000000e-01 + 1.911800000000000e-01 + 8.955600000000000e-02 +-2.072000000000000e-02 +-1.069600000000000e-01 +-1.515200000000000e-01 +-1.595600000000000e-01 +-1.534500000000000e-01 +-1.580000000000000e-01 +-1.862000000000000e-01 +-2.334300000000000e-01 +-2.814300000000000e-01 +-3.079000000000000e-01 +-2.953400000000000e-01 +-2.360700000000000e-01 +-1.336800000000000e-01 +-2.456100000000000e-03 + 1.346900000000000e-01 + 2.510400000000000e-01 + 3.233400000000000e-01 + 3.389200000000000e-01 + 2.989600000000000e-01 + 2.160900000000000e-01 + 1.087700000000000e-01 +-3.078500000000000e-03 +-9.906600000000000e-02 +-1.583500000000000e-01 +-1.635000000000000e-01 +-1.093800000000000e-01 +-1.180500000000000e-02 + 9.322900000000001e-02 + 1.640100000000000e-01 + 1.751500000000000e-01 + 1.327500000000000e-01 + 7.035300000000000e-02 + 2.653800000000000e-02 + 1.911300000000000e-02 + 3.487900000000000e-02 + 4.293500000000000e-02 + 2.133800000000000e-02 +-2.395400000000000e-02 +-6.333900000000001e-02 +-6.807600000000000e-02 +-3.551200000000000e-02 + 5.689100000000000e-03 + 1.542200000000000e-02 +-2.780100000000000e-02 +-1.097900000000000e-01 +-1.896100000000000e-01 +-2.273600000000000e-01 +-2.093200000000000e-01 +-1.525900000000000e-01 +-8.815300000000000e-02 +-3.786100000000000e-02 +-3.810600000000000e-03 + 2.380600000000000e-02 + 5.021200000000000e-02 + 6.693399999999999e-02 + 5.802900000000000e-02 + 1.519700000000000e-02 +-5.243300000000000e-02 +-1.228500000000000e-01 +-1.760400000000000e-01 +-2.060700000000000e-01 +-2.202700000000000e-01 +-2.267500000000000e-01 +-2.218700000000000e-01 +-1.889500000000000e-01 +-1.095100000000000e-01 + 2.207400000000000e-02 + 1.921400000000000e-01 + 3.736400000000000e-01 + 5.385900000000000e-01 + 6.674700000000000e-01 + 7.504100000000000e-01 + 7.829400000000000e-01 + 7.628300000000000e-01 + 6.910800000000000e-01 + 5.743800000000000e-01 + 4.242500000000000e-01 + 2.520700000000000e-01 + 6.493900000000000e-02 +-1.323100000000000e-01 +-3.294400000000000e-01 +-5.051099999999999e-01 +-6.315700000000000e-01 +-6.898600000000000e-01 +-6.852600000000000e-01 +-6.493700000000000e-01 +-6.238400000000000e-01 +-6.351200000000000e-01 +-6.782200000000000e-01 +-7.216000000000000e-01 +-7.297100000000000e-01 +-6.860500000000000e-01 +-5.994300000000000e-01 +-4.904400000000000e-01 +-3.710700000000000e-01 +-2.353300000000000e-01 +-6.869200000000000e-02 + 1.327900000000000e-01 + 3.511600000000000e-01 + 5.539800000000000e-01 + 7.147600000000000e-01 + 8.295600000000000e-01 + 9.156600000000000e-01 + 9.935000000000000e-01 + 1.067200000000000e+00 + 1.119900000000000e+00 + 1.126500000000000e+00 + 1.073300000000000e+00 + 9.666700000000000e-01 + 8.241100000000000e-01 + 6.576400000000000e-01 + 4.640400000000000e-01 + 2.316500000000000e-01 +-4.239800000000000e-02 +-3.399600000000000e-01 +-6.262200000000000e-01 +-8.673999999999999e-01 +-1.047600000000000e+00 +-1.171000000000000e+00 +-1.249300000000000e+00 +-1.285700000000000e+00 +-1.271700000000000e+00 +-1.197600000000000e+00 +-1.068500000000000e+00 +-9.087900000000000e-01 +-7.492000000000000e-01 +-6.061600000000000e-01 +-4.692400000000000e-01 +-3.082800000000000e-01 +-9.551800000000001e-02 + 1.733300000000000e-01 + 4.741100000000000e-01 + 7.674600000000000e-01 + 1.018700000000000e+00 + 1.209400000000000e+00 + 1.334700000000000e+00 + 1.391700000000000e+00 + 1.372800000000000e+00 + 1.268900000000000e+00 + 1.079500000000000e+00 + 8.205400000000000e-01 + 5.224299999999999e-01 + 2.195200000000000e-01 +-5.988000000000000e-02 +-2.974300000000000e-01 +-4.828200000000000e-01 +-6.115600000000000e-01 +-6.862500000000000e-01 +-7.187800000000000e-01 +-7.274700000000000e-01 +-7.267000000000000e-01 +-7.151000000000000e-01 +-6.732200000000000e-01 +-5.765600000000000e-01 +-4.176400000000000e-01 +-2.209500000000000e-01 +-3.699000000000000e-02 + 8.383400000000001e-02 + 1.210000000000000e-01 + 9.607499999999999e-02 + 5.788400000000000e-02 + 5.068700000000000e-02 + 8.801400000000000e-02 + 1.502000000000000e-01 + 2.054100000000000e-01 + 2.363700000000000e-01 + 2.516400000000000e-01 + 2.736500000000000e-01 + 3.145400000000000e-01 + 3.601200000000000e-01 + 3.751900000000000e-01 + 3.259700000000000e-01 + 2.025600000000000e-01 + 2.523100000000000e-02 +-1.678600000000000e-01 +-3.400200000000000e-01 +-4.674100000000000e-01 +-5.373500000000000e-01 +-5.403400000000000e-01 +-4.680200000000000e-01 +-3.214200000000000e-01 +-1.222900000000000e-01 + 8.591799999999999e-02 + 2.534000000000000e-01 + 3.483600000000000e-01 + 3.735700000000000e-01 + 3.621200000000000e-01 + 3.540700000000000e-01 + 3.696100000000000e-01 + 3.968600000000000e-01 + 4.013700000000000e-01 + 3.490000000000000e-01 + 2.257800000000000e-01 + 4.317900000000000e-02 +-1.705600000000000e-01 +-3.828500000000000e-01 +-5.634400000000001e-01 +-6.848600000000000e-01 +-7.229700000000000e-01 +-6.639500000000000e-01 +-5.151200000000000e-01 +-3.102400000000000e-01 +-1.006200000000000e-01 + 6.627200000000000e-02 + 1.685600000000000e-01 + 2.175000000000000e-01 + 2.457800000000000e-01 + 2.850400000000000e-01 + 3.482200000000000e-01 + 4.276700000000000e-01 + 5.069500000000000e-01 + 5.742500000000000e-01 + 6.259800000000000e-01 + 6.589900000000000e-01 + 6.608100000000000e-01 + 6.089700000000000e-01 + 4.823300000000000e-01 + 2.764000000000000e-01 + 1.048500000000000e-02 +-2.793100000000000e-01 +-5.557600000000000e-01 +-7.932100000000000e-01 +-9.790800000000000e-01 +-1.106300000000000e+00 +-1.166100000000000e+00 +-1.149300000000000e+00 +-1.055100000000000e+00 +-8.980300000000000e-01 +-7.036900000000000e-01 +-4.953900000000000e-01 +-2.802900000000000e-01 +-4.784300000000000e-02 + 2.167900000000000e-01 + 5.135500000000000e-01 + 8.173899999999999e-01 + 1.085900000000000e+00 + 1.279400000000000e+00 + 1.380100000000000e+00 + 1.395000000000000e+00 + 1.343300000000000e+00 + 1.237600000000000e+00 + 1.073700000000000e+00 + 8.363699999999999e-01 + 5.157700000000000e-01 + 1.225100000000000e-01 +-3.092200000000000e-01 +-7.311600000000000e-01 +-1.095900000000000e+00 +-1.368600000000000e+00 +-1.530000000000000e+00 +-1.574200000000000e+00 +-1.504800000000000e+00 +-1.332700000000000e+00 +-1.076600000000000e+00 +-7.615499999999999e-01 +-4.169400000000000e-01 +-7.270200000000000e-02 + 2.446200000000000e-01 + 5.153500000000000e-01 + 7.294400000000000e-01 + 8.874900000000000e-01 + 9.980800000000000e-01 + 1.070900000000000e+00 + 1.108400000000000e+00 + 1.102000000000000e+00 + 1.036600000000000e+00 + 9.040200000000000e-01 + 7.150400000000000e-01 + 5.015200000000000e-01 + 3.038600000000000e-01 + 1.499400000000000e-01 + 3.929800000000000e-02 +-5.641400000000000e-02 +-1.759700000000000e-01 +-3.451700000000000e-01 +-5.622200000000001e-01 +-7.997100000000000e-01 +-1.019400000000000e+00 +-1.188600000000000e+00 +-1.287700000000000e+00 +-1.309300000000000e+00 +-1.252900000000000e+00 +-1.122700000000000e+00 +-9.297900000000000e-01 +-6.922500000000000e-01 +-4.310900000000000e-01 +-1.628400000000000e-01 + 1.045900000000000e-01 + 3.682100000000000e-01 + 6.208100000000000e-01 + 8.449800000000000e-01 + 1.017400000000000e+00 + 1.121200000000000e+00 + 1.157500000000000e+00 + 1.143100000000000e+00 + 1.097500000000000e+00 + 1.026500000000000e+00 + 9.185700000000000e-01 + 7.578300000000000e-01 + 5.444000000000000e-01 + 3.048400000000000e-01 + 8.261400000000001e-02 +-8.576600000000000e-02 +-1.911100000000000e-01 +-2.525600000000000e-01 +-2.988400000000000e-01 +-3.450500000000000e-01 +-3.840700000000000e-01 +-3.988900000000000e-01 +-3.847800000000000e-01 +-3.614700000000000e-01 +-3.638300000000000e-01 +-4.172500000000000e-01 +-5.170700000000000e-01 +-6.283600000000000e-01 +-7.066000000000000e-01 +-7.235000000000000e-01 +-6.794000000000000e-01 +-5.947400000000000e-01 +-4.900800000000000e-01 +-3.713600000000000e-01 +-2.309500000000000e-01 +-6.147000000000000e-02 + 1.307400000000000e-01 + 3.234600000000000e-01 + 4.881600000000000e-01 + 6.027800000000000e-01 + 6.581000000000000e-01 + 6.554400000000000e-01 + 6.008700000000000e-01 + 5.024300000000000e-01 + 3.716300000000000e-01 + 2.252500000000000e-01 + 8.288400000000000e-02 +-3.912100000000000e-02 +-1.321200000000000e-01 +-1.935300000000000e-01 +-2.204900000000000e-01 +-2.056500000000000e-01 +-1.407200000000000e-01 +-2.664800000000000e-02 + 1.180200000000000e-01 + 2.590400000000000e-01 + 3.597600000000000e-01 + 3.977000000000000e-01 + 3.733200000000000e-01 + 3.056800000000000e-01 + 2.193600000000000e-01 + 1.322600000000000e-01 + 5.165200000000000e-02 +-2.236300000000000e-02 +-9.169500000000000e-02 +-1.582300000000000e-01 +-2.241300000000000e-01 +-2.903500000000000e-01 +-3.518700000000000e-01 +-3.937500000000000e-01 +-3.946700000000000e-01 +-3.396400000000000e-01 +-2.344900000000000e-01 +-1.104200000000000e-01 +-1.217900000000000e-02 + 2.472400000000000e-02 +-7.253700000000000e-03 +-8.572900000000000e-02 +-1.739700000000000e-01 +-2.418400000000000e-01 +-2.771500000000000e-01 +-2.816400000000000e-01 +-2.589800000000000e-01 +-2.076300000000000e-01 +-1.249600000000000e-01 +-1.704400000000000e-02 + 9.768800000000000e-02 + 1.971600000000000e-01 + 2.703100000000000e-01 + 3.241500000000000e-01 + 3.752400000000000e-01 + 4.312200000000000e-01 + 4.787600000000000e-01 + 4.901000000000000e-01 + 4.450800000000000e-01 + 3.512100000000000e-01 + 2.441300000000000e-01 + 1.656800000000000e-01 + 1.356400000000000e-01 + 1.386600000000000e-01 + 1.367600000000000e-01 + 9.744600000000000e-02 + 1.561000000000000e-02 +-8.644600000000000e-02 +-1.785500000000000e-01 +-2.440400000000000e-01 +-2.860600000000000e-01 +-3.161400000000000e-01 +-3.384200000000000e-01 +-3.449400000000000e-01 +-3.260400000000000e-01 +-2.848200000000000e-01 +-2.402100000000000e-01 +-2.140200000000000e-01 +-2.122900000000000e-01 +-2.182400000000000e-01 +-2.044700000000000e-01 +-1.555900000000000e-01 +-8.222500000000001e-02 +-1.400600000000000e-02 + 2.391600000000000e-02 + 3.184300000000000e-02 + 3.669800000000000e-02 + 7.168500000000000e-02 + 1.497200000000000e-01 + 2.505300000000000e-01 + 3.304700000000000e-01 + 3.472900000000000e-01 + 2.827200000000000e-01 + 1.501000000000000e-01 +-1.369100000000000e-02 +-1.631200000000000e-01 +-2.570300000000000e-01 +-2.671600000000000e-01 +-1.845000000000000e-01 +-2.386000000000000e-02 + 1.773200000000000e-01 + 3.704600000000000e-01 + 5.153200000000000e-01 + 5.965500000000000e-01 + 6.249400000000001e-01 + 6.206000000000000e-01 + 5.899799999999999e-01 + 5.152000000000000e-01 + 3.663800000000000e-01 + 1.294600000000000e-01 +-1.715900000000000e-01 +-4.767800000000000e-01 +-7.171300000000000e-01 +-8.486700000000000e-01 +-8.697600000000000e-01 +-8.112900000000000e-01 +-7.099400000000000e-01 +-5.860100000000000e-01 +-4.415200000000000e-01 +-2.759900000000000e-01 +-1.033200000000000e-01 + 4.628000000000000e-02 + 1.415000000000000e-01 + 1.692400000000000e-01 + 1.426700000000000e-01 + 9.240900000000001e-02 + 4.922100000000000e-02 + 3.159700000000000e-02 + 4.493600000000000e-02 + 8.771100000000000e-02 + 1.550000000000000e-01 + 2.351800000000000e-01 + 3.054600000000000e-01 + 3.355400000000000e-01 + 3.024600000000000e-01 + 2.079800000000000e-01 + 8.451900000000000e-02 +-1.788600000000000e-02 +-5.716400000000000e-02 +-2.101300000000000e-02 + 6.911600000000000e-02 + 1.730300000000000e-01 + 2.541500000000000e-01 + 2.946600000000000e-01 + 2.965700000000000e-01 + 2.733200000000000e-01 + 2.406100000000000e-01 + 2.118500000000000e-01 + 1.961500000000000e-01 + 1.948400000000000e-01 + 1.967700000000000e-01 + 1.784900000000000e-01 + 1.143300000000000e-01 +-6.478800000000000e-03 +-1.672800000000000e-01 +-3.277400000000000e-01 +-4.447800000000000e-01 +-4.979300000000000e-01 +-5.007200000000001e-01 +-4.895200000000000e-01 +-4.973200000000000e-01 +-5.320700000000000e-01 +-5.749800000000000e-01 +-5.980700000000000e-01 +-5.855399999999999e-01 +-5.412300000000000e-01 +-4.774300000000000e-01 +-3.966500000000000e-01 +-2.839400000000000e-01 +-1.181000000000000e-01 + 1.065300000000000e-01 + 3.658100000000000e-01 + 6.117700000000000e-01 + 7.957800000000000e-01 + 8.923600000000000e-01 + 9.074200000000000e-01 + 8.667800000000000e-01 + 7.959000000000001e-01 + 7.062900000000000e-01 + 5.964100000000000e-01 + 4.625300000000000e-01 + 3.083300000000000e-01 + 1.454100000000000e-01 +-1.338500000000000e-02 +-1.598800000000000e-01 +-2.901200000000000e-01 +-3.993200000000000e-01 +-4.791500000000000e-01 +-5.218100000000000e-01 +-5.279400000000000e-01 +-5.102400000000000e-01 +-4.870100000000000e-01 +-4.684300000000000e-01 +-4.457000000000000e-01 +-3.924800000000000e-01 +-2.797300000000000e-01 +-9.525400000000001e-02 + 1.446400000000000e-01 + 3.984000000000000e-01 + 6.150700000000000e-01 + 7.531200000000000e-01 + 7.925100000000000e-01 + 7.361400000000000e-01 + 6.027900000000000e-01 + 4.173400000000000e-01 + 2.028500000000000e-01 +-2.325600000000000e-02 +-2.489000000000000e-01 +-4.640400000000000e-01 +-6.564500000000000e-01 +-8.095400000000000e-01 +-9.045500000000000e-01 +-9.271200000000001e-01 +-8.743900000000000e-01 +-7.577600000000000e-01 +-5.985500000000000e-01 +-4.190700000000000e-01 +-2.353100000000000e-01 +-5.630500000000000e-02 + 1.108400000000000e-01 + 2.561400000000000e-01 + 3.683000000000000e-01 + 4.425900000000000e-01 + 4.882400000000000e-01 + 5.270500000000000e-01 + 5.815100000000000e-01 + 6.597499999999999e-01 + 7.485100000000000e-01 + 8.202000000000000e-01 + 8.489800000000000e-01 + 8.237300000000000e-01 + 7.483600000000000e-01 + 6.309399999999999e-01 + 4.729900000000000e-01 + 2.698600000000000e-01 + 2.336400000000000e-02 +-2.448000000000000e-01 +-4.923600000000000e-01 +-6.728800000000000e-01 +-7.589900000000001e-01 +-7.552400000000000e-01 +-6.905900000000000e-01 +-5.963200000000000e-01 +-4.869700000000000e-01 +-3.593300000000000e-01 +-2.091200000000000e-01 +-5.026500000000000e-02 + 8.151300000000000e-02 + 1.457800000000000e-01 + 1.230100000000000e-01 + 2.844400000000000e-02 +-9.716100000000000e-02 +-2.132200000000000e-01 +-3.015300000000000e-01 +-3.682700000000000e-01 +-4.258400000000000e-01 +-4.711900000000000e-01 +-4.803500000000000e-01 +-4.252800000000000e-01 +-3.003400000000000e-01 +-1.363900000000000e-01 + 1.135300000000000e-02 + 9.569999999999999e-02 + 1.084400000000000e-01 + 8.791499999999999e-02 + 9.717199999999999e-02 + 1.865700000000000e-01 + 3.647600000000000e-01 + 5.951500000000000e-01 + 8.177800000000000e-01 + 9.804000000000000e-01 + 1.059400000000000e+00 + 1.060200000000000e+00 + 1.001600000000000e+00 + 8.977600000000000e-01 + 7.506300000000000e-01 + 5.562600000000000e-01 + 3.181200000000000e-01 + 5.632000000000000e-02 +-1.947400000000000e-01 +-3.993900000000000e-01 +-5.364800000000000e-01 +-6.082600000000000e-01 +-6.372800000000000e-01 +-6.534300000000000e-01 +-6.787800000000000e-01 +-7.185400000000000e-01 +-7.617200000000000e-01 +-7.894099999999999e-01 +-7.847499999999999e-01 +-7.392400000000000e-01 +-6.539100000000000e-01 +-5.375000000000000e-01 +-4.042700000000000e-01 +-2.719500000000000e-01 +-1.579900000000000e-01 +-7.306600000000001e-02 +-1.418000000000000e-02 + 3.716800000000000e-02 + 1.074600000000000e-01 + 2.160400000000000e-01 + 3.608700000000000e-01 + 5.154300000000001e-01 + 6.407200000000000e-01 + 7.061200000000000e-01 + 7.055399999999999e-01 + 6.582600000000000e-01 + 5.941300000000000e-01 + 5.343100000000000e-01 + 4.813800000000000e-01 + 4.248500000000000e-01 + 3.555700000000000e-01 + 2.759600000000000e-01 + 1.972600000000000e-01 + 1.271700000000000e-01 + 6.012700000000000e-02 +-1.919600000000000e-02 +-1.202300000000000e-01 +-2.317100000000000e-01 +-3.221100000000000e-01 +-3.582900000000000e-01 +-3.303300000000000e-01 +-2.634000000000000e-01 +-2.058700000000000e-01 +-2.001400000000000e-01 +-2.562600000000000e-01 +-3.466700000000000e-01 +-4.255900000000000e-01 +-4.583500000000000e-01 +-4.399700000000000e-01 +-3.911900000000000e-01 +-3.377700000000000e-01 +-2.903500000000000e-01 +-2.398900000000000e-01 +-1.700200000000000e-01 +-7.410100000000000e-02 + 3.768000000000000e-02 + 1.464800000000000e-01 + 2.403200000000000e-01 + 3.230900000000000e-01 + 4.091400000000000e-01 + 5.075600000000000e-01 + 6.088700000000000e-01 + 6.851300000000000e-01 + 7.036800000000000e-01 + 6.450500000000000e-01 + 5.124600000000000e-01 + 3.276900000000000e-01 + 1.180400000000000e-01 +-9.530600000000000e-02 +-2.996200000000000e-01 +-4.844100000000000e-01 +-6.337400000000000e-01 +-7.251700000000000e-01 +-7.374600000000000e-01 +-6.623100000000000e-01 +-5.119000000000000e-01 +-3.167600000000000e-01 +-1.146400000000000e-01 + 6.309900000000000e-02 + 2.002500000000000e-01 + 2.954600000000000e-01 + 3.545900000000000e-01 + 3.816200000000000e-01 + 3.742900000000000e-01 + 3.272100000000000e-01 + 2.398900000000000e-01 + 1.236400000000000e-01 + 1.859600000000000e-03 +-9.759400000000000e-02 +-1.538300000000000e-01 +-1.612100000000000e-01 +-1.293800000000000e-01 +-7.554400000000000e-02 +-1.443600000000000e-02 + 4.705900000000000e-02 + 1.077000000000000e-01 + 1.649800000000000e-01 + 2.098300000000000e-01 + 2.278900000000000e-01 + 2.065700000000000e-01 + 1.428400000000000e-01 + 4.601900000000000e-02 +-6.584400000000000e-02 +-1.726300000000000e-01 +-2.571300000000000e-01 +-3.063300000000000e-01 +-3.114100000000000e-01 +-2.697300000000000e-01 +-1.891100000000000e-01 +-8.995100000000000e-02 +-2.340400000000000e-04 + 5.714000000000000e-02 + 7.769500000000000e-02 + 7.938199999999999e-02 + 9.194099999999999e-02 + 1.366900000000000e-01 + 2.099400000000000e-01 + 2.822100000000000e-01 + 3.149600000000000e-01 + 2.839000000000000e-01 + 1.930700000000000e-01 + 7.023699999999999e-02 +-5.217300000000000e-02 +-1.564000000000000e-01 +-2.453900000000000e-01 +-3.326800000000000e-01 +-4.255900000000000e-01 +-5.147000000000000e-01 +-5.770000000000000e-01 +-5.884900000000000e-01 +-5.360900000000000e-01 +-4.208300000000000e-01 +-2.533300000000000e-01 +-4.816000000000000e-02 + 1.768100000000000e-01 + 3.973400000000000e-01 + 5.826000000000000e-01 + 7.028900000000000e-01 + 7.428600000000000e-01 + 7.105000000000000e-01 + 6.335499999999999e-01 + 5.436800000000001e-01 + 4.585100000000000e-01 + 3.745000000000000e-01 + 2.755100000000000e-01 + 1.500300000000000e-01 + 3.423600000000000e-03 +-1.437600000000000e-01 +-2.688500000000000e-01 +-3.595200000000000e-01 +-4.150100000000000e-01 +-4.362600000000000e-01 +-4.160100000000000e-01 +-3.405300000000000e-01 +-2.049400000000000e-01 +-3.028100000000000e-02 + 1.338000000000000e-01 + 2.279200000000000e-01 + 2.137500000000000e-01 + 9.607400000000001e-02 +-8.003800000000000e-02 +-2.561100000000000e-01 +-3.929100000000000e-01 +-4.864300000000000e-01 +-5.574800000000000e-01 +-6.246400000000000e-01 +-6.824000000000000e-01 +-7.008600000000000e-01 +-6.462300000000000e-01 +-5.052800000000000e-01 +-2.947200000000000e-01 +-4.960200000000000e-02 + 1.985400000000000e-01 + 4.356300000000000e-01 + 6.607800000000000e-01 + 8.694400000000000e-01 + 1.040600000000000e+00 + 1.140900000000000e+00 + 1.143900000000000e+00 + 1.050300000000000e+00 + 8.907000000000000e-01 + 7.089600000000000e-01 + 5.367499999999999e-01 + 3.781700000000000e-01 + 2.153800000000000e-01 + 2.964400000000000e-02 +-1.791700000000000e-01 +-3.894100000000000e-01 +-5.718000000000000e-01 +-7.084500000000000e-01 +-8.007000000000000e-01 +-8.605200000000000e-01 +-8.938000000000000e-01 +-8.909899999999999e-01 +-8.340000000000000e-01 +-7.144800000000000e-01 +-5.485700000000000e-01 +-3.751300000000000e-01 +-2.371800000000000e-01 +-1.587100000000000e-01 +-1.326400000000000e-01 +-1.269500000000000e-01 +-1.031400000000000e-01 +-3.389800000000000e-02 + 8.980100000000001e-02 + 2.621000000000000e-01 + 4.685500000000000e-01 + 6.882000000000000e-01 + 8.917700000000000e-01 + 1.042400000000000e+00 + 1.104300000000000e+00 + 1.057800000000000e+00 + 9.107700000000000e-01 + 6.975600000000000e-01 + 4.636700000000000e-01 + 2.458500000000000e-01 + 5.973400000000000e-02 +-9.805800000000001e-02 +-2.373600000000000e-01 +-3.626100000000000e-01 +-4.702900000000000e-01 +-5.554300000000000e-01 +-6.189400000000000e-01 +-6.675800000000000e-01 +-7.063300000000000e-01 +-7.306200000000000e-01 +-7.271900000000000e-01 +-6.845200000000000e-01 +-6.049099999999999e-01 +-5.069900000000001e-01 +-4.147400000000000e-01 +-3.402700000000000e-01 +-2.739600000000000e-01 +-1.908900000000000e-01 +-6.998400000000000e-02 + 8.799999999999999e-02 + 2.575300000000000e-01 + 4.028500000000000e-01 + 4.995200000000000e-01 + 5.472200000000000e-01 + 5.654900000000000e-01 + 5.773100000000000e-01 + 5.941500000000000e-01 + 6.133700000000000e-01 + 6.274400000000000e-01 + 6.343800000000001e-01 + 6.384300000000001e-01 + 6.400100000000000e-01 + 6.249500000000000e-01 + 5.657300000000000e-01 + 4.379600000000000e-01 + 2.421100000000000e-01 + 1.312700000000000e-02 +-1.923500000000000e-01 +-3.257900000000000e-01 +-3.746800000000000e-01 +-3.694900000000000e-01 +-3.643000000000000e-01 +-4.038300000000000e-01 +-4.986600000000000e-01 +-6.242400000000000e-01 +-7.422800000000001e-01 +-8.277000000000000e-01 +-8.818400000000000e-01 +-9.233600000000000e-01 +-9.649100000000000e-01 +-9.937000000000000e-01 +-9.705600000000000e-01 +-8.492100000000000e-01 +-6.035300000000000e-01 +-2.458600000000000e-01 + 1.745500000000000e-01 + 5.907900000000000e-01 + 9.432500000000000e-01 + 1.196400000000000e+00 + 1.340600000000000e+00 + 1.381000000000000e+00 + 1.325200000000000e+00 + 1.177200000000000e+00 + 9.431300000000000e-01 + 6.420600000000000e-01 + 3.137900000000000e-01 + 1.478500000000000e-02 +-1.985700000000000e-01 +-2.921600000000000e-01 +-2.698800000000000e-01 +-1.735400000000000e-01 +-6.552800000000000e-02 +-2.565900000000000e-03 +-1.394600000000000e-02 +-9.463000000000001e-02 +-2.148500000000000e-01 +-3.384200000000000e-01 +-4.383100000000000e-01 +-5.018500000000000e-01 +-5.261700000000000e-01 +-5.111300000000000e-01 +-4.567800000000000e-01 +-3.671100000000000e-01 +-2.552600000000000e-01 +-1.436400000000000e-01 +-5.618900000000000e-02 +-7.025700000000000e-03 + 7.032400000000000e-03 + 4.672400000000000e-03 + 1.001800000000000e-02 + 4.066000000000000e-02 + 1.006500000000000e-01 + 1.810700000000000e-01 + 2.655400000000000e-01 + 3.361800000000000e-01 + 3.771300000000000e-01 + 3.763000000000000e-01 + 3.273400000000000e-01 + 2.322200000000000e-01 + 1.025200000000000e-01 +-4.250400000000000e-02 +-1.809500000000000e-01 +-2.932600000000000e-01 +-3.643400000000000e-01 +-3.831200000000000e-01 +-3.428300000000000e-01 +-2.450200000000000e-01 +-1.057600000000000e-01 + 4.232500000000000e-02 + 1.582400000000000e-01 + 2.102800000000000e-01 + 1.938200000000000e-01 + 1.364800000000000e-01 + 8.456100000000000e-02 + 7.727299999999999e-02 + 1.246500000000000e-01 + 2.036800000000000e-01 + 2.746000000000000e-01 + 3.053500000000000e-01 + 2.868600000000000e-01 + 2.304100000000000e-01 + 1.523400000000000e-01 + 6.100100000000000e-02 +-4.295700000000000e-02 +-1.547800000000000e-01 +-2.553500000000000e-01 +-3.149600000000000e-01 +-3.111600000000000e-01 +-2.474200000000000e-01 +-1.564000000000000e-01 +-8.267800000000000e-02 +-5.611600000000000e-02 +-7.504800000000000e-02 +-1.113700000000000e-01 +-1.327900000000000e-01 +-1.246900000000000e-01 +-9.535200000000001e-02 +-6.281200000000001e-02 +-3.640300000000000e-02 +-9.420300000000000e-03 + 3.153300000000000e-02 + 8.995800000000000e-02 + 1.513700000000000e-01 + 1.916100000000000e-01 + 1.946500000000000e-01 + 1.642500000000000e-01 + 1.191100000000000e-01 + 7.562000000000001e-02 + 3.355200000000000e-02 +-2.210000000000000e-02 +-1.037800000000000e-01 +-2.029700000000000e-01 +-2.869300000000000e-01 +-3.147700000000000e-01 +-2.617700000000000e-01 +-1.340700000000000e-01 + 3.554900000000000e-02 + 2.059200000000000e-01 + 3.449100000000000e-01 + 4.351600000000000e-01 + 4.690800000000000e-01 + 4.432300000000000e-01 + 3.603100000000000e-01 + 2.363600000000000e-01 + 1.028800000000000e-01 +-4.267300000000000e-03 +-6.473900000000000e-02 +-8.770600000000001e-02 +-1.066900000000000e-01 +-1.558600000000000e-01 +-2.438900000000000e-01 +-3.450800000000000e-01 +-4.153900000000000e-01 +-4.221500000000000e-01 +-3.656900000000000e-01 +-2.776100000000000e-01 +-1.980900000000000e-01 +-1.500600000000000e-01 +-1.284400000000000e-01 +-1.097500000000000e-01 +-7.154700000000000e-02 +-6.063000000000000e-03 + 7.987200000000000e-02 + 1.739000000000000e-01 + 2.653300000000000e-01 + 3.446000000000000e-01 + 3.988900000000000e-01 + 4.127000000000000e-01 + 3.764100000000000e-01 + 2.967300000000000e-01 + 1.980800000000000e-01 + 1.107300000000000e-01 + 5.286500000000000e-02 + 2.076600000000000e-02 +-4.671900000000000e-03 +-4.023200000000000e-02 +-8.638899999999999e-02 +-1.289600000000000e-01 +-1.545100000000000e-01 +-1.650300000000000e-01 +-1.775800000000000e-01 +-2.076000000000000e-01 +-2.501700000000000e-01 +-2.769000000000000e-01 +-2.538500000000000e-01 +-1.681400000000000e-01 +-4.176800000000000e-02 + 7.961100000000000e-02 + 1.555900000000000e-01 + 1.758700000000000e-01 + 1.620700000000000e-01 + 1.461400000000000e-01 + 1.430700000000000e-01 + 1.401800000000000e-01 + 1.106100000000000e-01 + 3.913700000000000e-02 +-6.130400000000000e-02 +-1.558700000000000e-01 +-2.112200000000000e-01 +-2.171200000000000e-01 +-1.895000000000000e-01 +-1.540600000000000e-01 +-1.248900000000000e-01 +-9.544000000000000e-02 +-4.749800000000000e-02 + 3.088700000000000e-02 + 1.342000000000000e-01 + 2.431000000000000e-01 + 3.377300000000000e-01 + 4.078400000000000e-01 + 4.510100000000000e-01 + 4.620800000000000e-01 + 4.256900000000000e-01 + 3.214800000000000e-01 + 1.404200000000000e-01 +-9.967100000000000e-02 +-3.523800000000000e-01 +-5.584500000000000e-01 +-6.702399999999999e-01 +-6.705900000000000e-01 +-5.757700000000000e-01 +-4.232400000000000e-01 +-2.531200000000000e-01 +-9.379700000000001e-02 + 4.281400000000000e-02 + 1.577000000000000e-01 + 2.571800000000000e-01 + 3.454100000000000e-01 + 4.192100000000000e-01 + 4.664800000000000e-01 + 4.693500000000000e-01 + 4.120500000000000e-01 + 2.908600000000000e-01 + 1.208100000000000e-01 +-6.590600000000001e-02 +-2.304900000000000e-01 +-3.422500000000000e-01 +-3.894600000000000e-01 +-3.805700000000000e-01 +-3.362900000000000e-01 +-2.778700000000000e-01 +-2.185200000000000e-01 +-1.613400000000000e-01 +-1.023700000000000e-01 +-3.519000000000000e-02 + 4.534200000000000e-02 + 1.406100000000000e-01 + 2.460300000000000e-01 + 3.496600000000000e-01 + 4.332800000000000e-01 + 4.774600000000000e-01 + 4.691500000000000e-01 + 4.074500000000000e-01 + 3.036700000000000e-01 + 1.750700000000000e-01 + 3.659100000000000e-02 +-1.037900000000000e-01 +-2.427100000000000e-01 +-3.745500000000000e-01 +-4.859200000000000e-01 +-5.568000000000000e-01 +-5.686000000000000e-01 +-5.142400000000000e-01 +-4.036300000000000e-01 +-2.608300000000000e-01 +-1.142900000000000e-01 + 1.431200000000000e-02 + 1.168600000000000e-01 + 1.984600000000000e-01 + 2.710900000000000e-01 + 3.449000000000000e-01 + 4.212600000000000e-01 + 4.902500000000000e-01 + 5.333000000000000e-01 + 5.297800000000000e-01 + 4.650600000000000e-01 + 3.370100000000000e-01 + 1.582600000000000e-01 +-4.651800000000000e-02 +-2.471300000000000e-01 +-4.156600000000000e-01 +-5.325600000000000e-01 +-5.895700000000000e-01 +-5.892300000000000e-01 +-5.419400000000000e-01 +-4.618300000000000e-01 +-3.627700000000000e-01 +-2.557100000000000e-01 +-1.479300000000000e-01 +-4.423800000000000e-02 + 5.138200000000000e-02 + 1.353300000000000e-01 + 2.058300000000000e-01 + 2.649300000000000e-01 + 3.185700000000000e-01 + 3.728300000000000e-01 + 4.282700000000000e-01 + 4.762300000000000e-01 + 5.013900000000000e-01 + 4.901200000000000e-01 + 4.395000000000000e-01 + 3.600400000000000e-01 + 2.689900000000000e-01 + 1.786700000000000e-01 + 8.847700000000000e-02 +-1.204900000000000e-02 +-1.307300000000000e-01 +-2.600200000000000e-01 +-3.748600000000000e-01 +-4.447600000000000e-01 +-4.525800000000000e-01 +-4.067100000000000e-01 +-3.375000000000000e-01 +-2.797700000000000e-01 +-2.533500000000000e-01 +-2.546900000000000e-01 +-2.637700000000000e-01 +-2.596800000000000e-01 +-2.328400000000000e-01 +-1.863300000000000e-01 +-1.283400000000000e-01 +-6.427200000000000e-02 + 4.533000000000000e-03 + 7.566700000000000e-02 + 1.407800000000000e-01 + 1.870500000000000e-01 + 2.047800000000000e-01 + 1.948000000000000e-01 + 1.689500000000000e-01 + 1.431800000000000e-01 + 1.289400000000000e-01 + 1.298400000000000e-01 + 1.451100000000000e-01 + 1.749200000000000e-01 + 2.206100000000000e-01 + 2.788100000000000e-01 + 3.350900000000000e-01 + 3.654600000000000e-01 + 3.480200000000000e-01 + 2.778100000000000e-01 + 1.731800000000000e-01 + 6.720000000000000e-02 +-1.126800000000000e-02 +-5.364300000000000e-02 +-7.319700000000000e-02 +-9.153799999999999e-02 +-1.210000000000000e-01 +-1.568000000000000e-01 +-1.843800000000000e-01 +-1.949400000000000e-01 +-1.953900000000000e-01 +-2.040100000000000e-01 +-2.354200000000000e-01 +-2.874200000000000e-01 +-3.409400000000000e-01 +-3.735600000000000e-01 +-3.753900000000000e-01 +-3.543900000000000e-01 +-3.264600000000000e-01 +-2.984300000000000e-01 +-2.582900000000000e-01 +-1.817000000000000e-01 +-5.114300000000000e-02 + 1.259600000000000e-01 + 3.138900000000000e-01 + 4.635200000000000e-01 + 5.365100000000000e-01 + 5.235000000000000e-01 + 4.459600000000000e-01 + 3.417200000000000e-01 + 2.444600000000000e-01 + 1.694800000000000e-01 + 1.126700000000000e-01 + 6.078000000000000e-02 + 5.045200000000000e-03 +-5.056500000000000e-02 +-9.068400000000000e-02 +-9.782900000000000e-02 +-6.376200000000000e-02 + 3.656500000000000e-03 + 8.204800000000000e-02 + 1.439400000000000e-01 + 1.691900000000000e-01 + 1.537100000000000e-01 + 1.096400000000000e-01 + 5.670900000000000e-02 + 9.799799999999999e-03 +-3.000000000000000e-02 +-7.538900000000000e-02 +-1.439000000000000e-01 +-2.453400000000000e-01 +-3.729700000000000e-01 +-5.031700000000000e-01 +-6.033600000000000e-01 +-6.434900000000000e-01 +-6.058900000000000e-01 +-4.898400000000000e-01 +-3.107500000000000e-01 +-9.549000000000001e-02 + 1.244700000000000e-01 + 3.206700000000000e-01 + 4.744400000000000e-01 + 5.807000000000000e-01 + 6.465100000000000e-01 + 6.842300000000000e-01 + 7.023100000000000e-01 + 6.987000000000000e-01 + 6.610200000000001e-01 + 5.739600000000000e-01 + 4.295800000000000e-01 + 2.345400000000000e-01 + 9.735600000000001e-03 +-2.171900000000000e-01 +-4.218400000000000e-01 +-5.899799999999999e-01 +-7.179200000000000e-01 +-8.073900000000001e-01 +-8.588600000000000e-01 +-8.678399999999999e-01 +-8.259500000000000e-01 +-7.259000000000000e-01 +-5.671300000000000e-01 +-3.589400000000000e-01 +-1.198700000000000e-01 + 1.263100000000000e-01 + 3.558400000000000e-01 + 5.494300000000000e-01 + 6.947400000000000e-01 + 7.866400000000000e-01 + 8.259100000000000e-01 + 8.169500000000000e-01 + 7.652099999999999e-01 + 6.749700000000000e-01 + 5.482300000000000e-01 + 3.856800000000000e-01 + 1.899100000000000e-01 +-3.049000000000000e-02 +-2.582600000000000e-01 +-4.684800000000000e-01 +-6.336900000000000e-01 +-7.308900000000000e-01 +-7.468300000000000e-01 +-6.794800000000000e-01 +-5.363500000000000e-01 +-3.324800000000000e-01 +-9.068500000000000e-02 + 1.573600000000000e-01 + 3.730300000000000e-01 + 5.191600000000000e-01 + 5.734399999999999e-01 + 5.391899999999999e-01 + 4.449000000000000e-01 + 3.299300000000000e-01 + 2.233200000000000e-01 + 1.295700000000000e-01 + 3.178500000000000e-02 +-8.902500000000001e-02 +-2.323000000000000e-01 +-3.706500000000000e-01 +-4.640500000000000e-01 +-4.866200000000000e-01 +-4.462800000000000e-01 +-3.820000000000000e-01 +-3.391200000000000e-01 +-3.400500000000000e-01 +-3.713700000000000e-01 +-3.964800000000000e-01 +-3.834600000000000e-01 +-3.267500000000000e-01 +-2.464400000000000e-01 +-1.666800000000000e-01 +-9.159800000000000e-02 + 1.310600000000000e-03 + 1.439600000000000e-01 + 3.494900000000000e-01 + 5.946000000000000e-01 + 8.263400000000000e-01 + 9.887300000000000e-01 + 1.050600000000000e+00 + 1.016400000000000e+00 + 9.147400000000000e-01 + 7.769800000000000e-01 + 6.214100000000000e-01 + 4.529800000000000e-01 + 2.740200000000000e-01 + 9.351000000000000e-02 +-7.378200000000000e-02 +-2.168400000000000e-01 +-3.368500000000000e-01 +-4.462200000000000e-01 +-5.582300000000000e-01 +-6.756700000000000e-01 +-7.872900000000000e-01 +-8.741700000000000e-01 +-9.197000000000000e-01 +-9.154800000000000e-01 +-8.599599999999999e-01 +-7.541300000000000e-01 +-6.008300000000000e-01 +-4.096400000000000e-01 +-2.025800000000000e-01 +-1.302000000000000e-02 + 1.252500000000000e-01 + 1.935100000000000e-01 + 1.982000000000000e-01 + 1.685100000000000e-01 + 1.426300000000000e-01 + 1.513900000000000e-01 + 2.085100000000000e-01 + 3.107600000000000e-01 + 4.440700000000000e-01 + 5.893800000000000e-01 + 7.249900000000000e-01 + 8.276000000000000e-01 + 8.759100000000000e-01 + 8.573300000000000e-01 + 7.738400000000000e-01 + 6.413900000000000e-01 + 4.816600000000000e-01 + 3.111300000000000e-01 + 1.355700000000000e-01 +-4.603100000000000e-02 +-2.313800000000000e-01 +-4.073200000000000e-01 +-5.518400000000000e-01 +-6.449900000000000e-01 +-6.808300000000000e-01 +-6.713300000000000e-01 +-6.390600000000000e-01 +-6.042900000000000e-01 +-5.754300000000000e-01 +-5.487000000000000e-01 +-5.150400000000001e-01 +-4.670000000000000e-01 +-3.999600000000000e-01 +-3.083700000000000e-01 +-1.835400000000000e-01 +-1.854400000000000e-02 + 1.809300000000000e-01 + 3.882300000000000e-01 + 5.594400000000000e-01 + 6.511800000000000e-01 + 6.438400000000000e-01 + 5.552900000000000e-01 + 4.345800000000000e-01 + 3.372000000000000e-01 + 2.959700000000000e-01 + 3.050800000000000e-01 + 3.268300000000000e-01 + 3.160100000000000e-01 + 2.462800000000000e-01 + 1.224400000000000e-01 +-2.719700000000000e-02 diff --git a/src/variabledefs/datatypes.f90 b/src/variabledefs/datatypes.f90 index a3c10c9..21b5084 100644 --- a/src/variabledefs/datatypes.f90 +++ b/src/variabledefs/datatypes.f90 @@ -11,152 +11,152 @@ MODULE DataTypes ! Used for interpolation between OceanWave3D and OpenFOAM, botp TYPE Interpolation_def - ! order = 2*alpha/beta + 1 derivatives the x/y-direction respectively. - ! - REAL(KIND=long), DIMENSION(:,:), POINTER :: dx - REAL(KIND=long), DIMENSION(:,:), POINTER :: dy - - ! order = 2 * gamma + 1 derivatives in the z-direction. - ! - REAL(KIND=long), DIMENSION(:,:,:), POINTER :: dz - - ! Local interpolation stencils - ! - REAL(KIND=long), DIMENSION(:), POINTER :: stencilX - REAL(KIND=long), DIMENSION(:), POINTER :: stencilY - REAL(KIND=long), DIMENSION(:), POINTER :: stencilZ - - ! Vector containing nearest neighbour - ! - INTEGER, DIMENSION(:), POINTER :: NN - - ! Integer indicating however a cell is above or below the free surface - ! 0=below, 1=above - INTEGER, POINTER :: inOrOut + ! order = 2*alpha/beta + 1 derivatives the x/y-direction respectively. + ! + REAL(KIND=long), DIMENSION(:,:), POINTER :: dx + REAL(KIND=long), DIMENSION(:,:), POINTER :: dy + + ! order = 2 * gamma + 1 derivatives in the z-direction. + ! + REAL(KIND=long), DIMENSION(:,:,:), POINTER :: dz + + ! Local interpolation stencils + ! + REAL(KIND=long), DIMENSION(:), POINTER :: stencilX + REAL(KIND=long), DIMENSION(:), POINTER :: stencilY + REAL(KIND=long), DIMENSION(:), POINTER :: stencilZ + + ! Vector containing nearest neighbour + ! + INTEGER, DIMENSION(:), POINTER :: NN + + ! Integer indicating however a cell is above or below the free surface + ! 0=below, 1=above + INTEGER, POINTER :: inOrOut END TYPE Interpolation_def TYPE SparseArray_CSR -! Sparse storage using: Compressed Storage Row (CSR) format - REAL(KIND=long), DIMENSION(:), POINTER :: val ! Array values - INTEGER, DIMENSION(:), POINTER :: col_ind ! Column indice vector - INTEGER, DIMENSION(:), POINTER :: row_ptr ! Row pointer - INTEGER :: nnz ! number of nonzero elements - INTEGER :: nrow ! number of rows (matrix rank) + ! Sparse storage using: Compressed Storage Row (CSR) format + REAL(KIND=long), DIMENSION(:), POINTER :: val ! Array values + INTEGER, DIMENSION(:), POINTER :: col_ind ! Column indice vector + INTEGER, DIMENSION(:), POINTER :: row_ptr ! Row pointer + INTEGER :: nnz ! number of nonzero elements + INTEGER :: nrow ! number of rows (matrix rank) END TYPE SparseArray_CSR TYPE SparseArray_COO -! Sparse storage using: Coordinate (COO) format -! Used by the harwell library routines - REAL(KIND=long), DIMENSION(:), POINTER :: val ! Array values - INTEGER, DIMENSION(:), POINTER :: col_ind ! Column pointer - INTEGER, DIMENSION(:), POINTER :: row_ptr ! Row pointer - INTEGER :: nnz ! number of nonzero elements - INTEGER :: nrow ! rank of matrix + ! Sparse storage using: Coordinate (COO) format + ! Used by the harwell library routines + REAL(KIND=long), DIMENSION(:), POINTER :: val ! Array values + INTEGER, DIMENSION(:), POINTER :: col_ind ! Column pointer + INTEGER, DIMENSION(:), POINTER :: row_ptr ! Row pointer + INTEGER :: nnz ! number of nonzero elements + INTEGER :: nrow ! rank of matrix END TYPE SparseArray_COO TYPE SparseArray_COO_HBB -! Sparse storage using: Coordinate (COO) format -! Used by the harwell library routines. This version without pointers -! and with all the variables. - REAL(KIND=long), allocatable:: val(:) ! Array values - INTEGER, allocatable :: irn(:), icn(:)! Row and Column pointers - INTEGER :: nnz ! number of nonzero elements - INTEGER :: nrow ! rank of matrix - REAL(KIND=long) :: CNTL(10) - INTEGER :: ICNTL(20), KEEP(50), MAXS, MAXIS - INTEGER, ALLOCATABLE :: INFOHSL(:), IS_HSL(:) - REAL(KIND=long), ALLOCATABLE :: COLSCA(:), ROWSCA(:), SS(:), RINFO(:) + ! Sparse storage using: Coordinate (COO) format + ! Used by the harwell library routines. This version without pointers + ! and with all the variables. + REAL(KIND=long), allocatable:: val(:) ! Array values + INTEGER, allocatable :: irn(:), icn(:)! Row and Column pointers + INTEGER :: nnz ! number of nonzero elements + INTEGER :: nrow ! rank of matrix + REAL(KIND=long) :: CNTL(10) + INTEGER :: ICNTL(20), KEEP(50), MAXS, MAXIS + INTEGER, ALLOCATABLE :: INFOHSL(:), IS_HSL(:) + REAL(KIND=long), ALLOCATABLE :: COLSCA(:), ROWSCA(:), SS(:), RINFO(:) END TYPE SparseArray_COO_HBB ! DERIVED DATA TYPE FOR DIFFERENTIAL OPERATIONS ! DIMENSIONS: Global index, Stencil, order TYPE Diff_def - REAL(KIND=long), DIMENSION(:,:,:), POINTER :: StencilG ! Generic stencil - REAL(KIND=long), DIMENSION(:,:,:), POINTER :: StencilX ! Either (Gidx,Coefficients,order) or (i,Coefficients,order) - REAL(KIND=long), DIMENSION(:,:,:), POINTER :: StencilY ! Either (Gidx,Coefficients,order) or (j,Coefficients,order) - REAL(KIND=long), DIMENSION(:,:,:), POINTER :: StencilZ ! Either (Gidx,Coefficients,order) or (k,Coefficients,order) - REAL(KIND=long), DIMENSION(:,:,:), POINTER :: StencilXZorYZ - INTEGER, DIMENSION(:,:), POINTER :: Indexes - ! Below for ARRAY STORAGE - INTEGER, DIMENSION(:,:,:,:), POINTER :: Indexesnew ! (k,i,j,indexes) - INTEGER, DIMENSION(:,:,:,:), POINTER :: IndexesnewXZ ! (k,i,j,indexes) - INTEGER, DIMENSION(:,:,:,:), POINTER :: IndexesnewYZ ! (k,i,j,indexes) - REAL(KIND=long), DIMENSION(:,:,:,:,:), POINTER :: StencilXZorYZnew ! (k,i,j,indexes,Xz or YZ) - INTEGER, DIMENSION(:,:,:,:), POINTER :: IndexesG ! (k,i,j,indexes) Generic stencil - INTEGER, DIMENSION(:,:,:,:), POINTER :: IndexesX ! (k,i,j,indexes) - INTEGER, DIMENSION(:,:,:,:), POINTER :: IndexesY - INTEGER, DIMENSION(:,:,:,:), POINTER :: IndexesZ - ! GD: STORAGE of Indexes and Stencils needed for the treatment of cross derivatives - INTEGER, DIMENSION(:,:,:,:,:), POINTER :: IndexesX_XZorXY ! (k,i,j,rank,2) 1:XZ ; 2:XY - INTEGER, DIMENSION(:,:,:,:,:), POINTER :: IndexesY_YZorXY ! (k,i,j,rank,2) 1:YZ ; 2:XY - INTEGER, DIMENSION(:,:,:,:,:), POINTER :: IndexesZ_XZorYZ ! (k,i,j,rank,2) 1:XZ ; 2:YZ - REAL(KIND=long), DIMENSION(:,:,:,:,:), POINTER :: StencilsX_XZorXY ! (k,i,j,rank,2) 1:XZ ; 2:XY - REAL(KIND=long), DIMENSION(:,:,:,:,:), POINTER :: StencilsY_YZorXY ! (k,i,j,rank,2) 1:YZ ; 2:XY - REAL(KIND=long), DIMENSION(:,:,:,:,:), POINTER :: StencilsZ_XZorYZ ! (k,i,j,rank,2) 1:XZ ; 2:YZ - ! Full rank Stencils used for straight boundaries preconditionning matrices... - INTEGER, DIMENSION(:,:), POINTER :: FullRankIndexXZ ! (Gidx,fullrank) - INTEGER, DIMENSION(:,:), POINTER :: FullRankIndexYZ ! (Gidx,fullrank) - REAL(KIND=long), DIMENSION(:,:), POINTER :: FullRankStencilXZ ! (Gidx,fullrank) - REAL(KIND=long), DIMENSION(:,:), POINTER :: FullRankStencilYZ ! (Gidx,fullrank) - !INTEGER, DIMENSION(:,:,:,:,:), POINTER :: IndexesXZ ! (k,i,j,rank,2) 1:IndexX ; 2:IndexZ : assumed that alpha=gamma - !INTEGER, DIMENSION(:,:,:,:,:), POINTER :: IndexesYZ ! (k,i,j,rank,2) 1:IndexY ; 2:IndexZ : assumed that beta=gamma - !INTEGER, DIMENSION(:,:,:,:,:), POINTER :: IndexesXY ! (k,i,j,rank,2) 1:IndexX ; 2:IndexY : assumed that alpha=beta - !REAL(KIND=long), DIMENSION(:,:,:,:,:), POINTER :: StencilsXZ ! (k,i,j,rank,2) 1:StencilX ; 2:StencilZ : assumed that alpha=gamma - !REAL(KIND=long), DIMENSION(:,:,:,:,:), POINTER :: StencilsYZ ! (k,i,j,rank,2) 1:StencilY ; 2:StencilZ : assumed that beta=gamma - !REAL(KIND=long), DIMENSION(:,:,:,:,:), POINTER :: StencilsXY ! (k,i,j,rank,2) 1:StencilX ; 2:StencilY : assumed that alpha=beta + REAL(KIND=long), DIMENSION(:,:,:), POINTER :: StencilG ! Generic stencil + REAL(KIND=long), DIMENSION(:,:,:), POINTER :: StencilX ! Either (Gidx,Coefficients,order) or (i,Coefficients,order) + REAL(KIND=long), DIMENSION(:,:,:), POINTER :: StencilY ! Either (Gidx,Coefficients,order) or (j,Coefficients,order) + REAL(KIND=long), DIMENSION(:,:,:), POINTER :: StencilZ ! Either (Gidx,Coefficients,order) or (k,Coefficients,order) + REAL(KIND=long), DIMENSION(:,:,:), POINTER :: StencilXZorYZ + INTEGER, DIMENSION(:,:), POINTER :: Indexes + ! Below for ARRAY STORAGE + INTEGER, DIMENSION(:,:,:,:), POINTER :: Indexesnew ! (k,i,j,indexes) + INTEGER, DIMENSION(:,:,:,:), POINTER :: IndexesnewXZ ! (k,i,j,indexes) + INTEGER, DIMENSION(:,:,:,:), POINTER :: IndexesnewYZ ! (k,i,j,indexes) + REAL(KIND=long), DIMENSION(:,:,:,:,:), POINTER :: StencilXZorYZnew ! (k,i,j,indexes,Xz or YZ) + INTEGER, DIMENSION(:,:,:,:), POINTER :: IndexesG ! (k,i,j,indexes) Generic stencil + INTEGER, DIMENSION(:,:,:,:), POINTER :: IndexesX ! (k,i,j,indexes) + INTEGER, DIMENSION(:,:,:,:), POINTER :: IndexesY + INTEGER, DIMENSION(:,:,:,:), POINTER :: IndexesZ + ! GD: STORAGE of Indexes and Stencils needed for the treatment of cross derivatives + INTEGER, DIMENSION(:,:,:,:,:), POINTER :: IndexesX_XZorXY ! (k,i,j,rank,2) 1:XZ ; 2:XY + INTEGER, DIMENSION(:,:,:,:,:), POINTER :: IndexesY_YZorXY ! (k,i,j,rank,2) 1:YZ ; 2:XY + INTEGER, DIMENSION(:,:,:,:,:), POINTER :: IndexesZ_XZorYZ ! (k,i,j,rank,2) 1:XZ ; 2:YZ + REAL(KIND=long), DIMENSION(:,:,:,:,:), POINTER :: StencilsX_XZorXY ! (k,i,j,rank,2) 1:XZ ; 2:XY + REAL(KIND=long), DIMENSION(:,:,:,:,:), POINTER :: StencilsY_YZorXY ! (k,i,j,rank,2) 1:YZ ; 2:XY + REAL(KIND=long), DIMENSION(:,:,:,:,:), POINTER :: StencilsZ_XZorYZ ! (k,i,j,rank,2) 1:XZ ; 2:YZ + ! Full rank Stencils used for straight boundaries preconditionning matrices... + INTEGER, DIMENSION(:,:), POINTER :: FullRankIndexXZ ! (Gidx,fullrank) + INTEGER, DIMENSION(:,:), POINTER :: FullRankIndexYZ ! (Gidx,fullrank) + REAL(KIND=long), DIMENSION(:,:), POINTER :: FullRankStencilXZ ! (Gidx,fullrank) + REAL(KIND=long), DIMENSION(:,:), POINTER :: FullRankStencilYZ ! (Gidx,fullrank) + !INTEGER, DIMENSION(:,:,:,:,:), POINTER :: IndexesXZ ! (k,i,j,rank,2) 1:IndexX ; 2:IndexZ : assumed that alpha=gamma + !INTEGER, DIMENSION(:,:,:,:,:), POINTER :: IndexesYZ ! (k,i,j,rank,2) 1:IndexY ; 2:IndexZ : assumed that beta=gamma + !INTEGER, DIMENSION(:,:,:,:,:), POINTER :: IndexesXY ! (k,i,j,rank,2) 1:IndexX ; 2:IndexY : assumed that alpha=beta + !REAL(KIND=long), DIMENSION(:,:,:,:,:), POINTER :: StencilsXZ ! (k,i,j,rank,2) 1:StencilX ; 2:StencilZ : assumed that alpha=gamma + !REAL(KIND=long), DIMENSION(:,:,:,:,:), POINTER :: StencilsYZ ! (k,i,j,rank,2) 1:StencilY ; 2:StencilZ : assumed that beta=gamma + !REAL(KIND=long), DIMENSION(:,:,:,:,:), POINTER :: StencilsXY ! (k,i,j,rank,2) 1:StencilX ; 2:StencilY : assumed that alpha=beta END TYPE Diff_def ! FOR CURVILINEAR PARTS TYPE Level_def_curvilinear - REAL(KIND=long) , DIMENSION(:,:), POINTER :: xe, xn, ye, yn, J, J3, xee, xen, xnn, yee, yen, ynn - REAL(KIND=long) , DIMENSION(:,:), POINTER :: nx, ny, ex, ey, exy, nxy, exx, nxx, eyy, nyy - REAL(KIND=long) , DIMENSION(:,:,:), POINTER :: NormalX, NormalY, NormalZ ! normal vector components ! FIXME: needs to be stored more compactly - TYPE (Diff_def) :: DiffStencils ! stencil and coefficient tables - TYPE (Diff_def) :: DiffStencilsPrecond ! to be used for preconditioner + REAL(KIND=long) , DIMENSION(:,:), POINTER :: xe, xn, ye, yn, J, J3, xee, xen, xnn, yee, yen, ynn + REAL(KIND=long) , DIMENSION(:,:), POINTER :: nx, ny, ex, ey, exy, nxy, exx, nxx, eyy, nyy + REAL(KIND=long) , DIMENSION(:,:,:), POINTER :: NormalX, NormalY, NormalZ ! normal vector components ! FIXME: needs to be stored more compactly + TYPE (Diff_def) :: DiffStencils ! stencil and coefficient tables + TYPE (Diff_def) :: DiffStencilsPrecond ! to be used for preconditioner END TYPE Level_def_curvilinear ! DEFINE DERIVED DATA TYPE FOR GRID ! FIXME: Reduce storage needs... only store information ones (in the right format) TYPE Level_def - INTEGER :: Nx , Ny, Nz ! Grid points in each Cartesian direction - REAL(KIND=long) , DIMENSION(:,:), POINTER :: x ! x coordinate array - REAL(KIND=long) , DIMENSION(:,:), POINTER :: y ! y coordinate array - REAL(KIND=long) , DIMENSION(:), POINTER :: z ! z coordinate array - REAL(KIND=long) , DIMENSION(:,:), POINTER :: h, hx, hxx, hy, hyy - TYPE (Diff_def) :: DiffStencils ! stencil and coefficient tables - TYPE (LeveL_def_curvilinear) :: CurvilinearStuff - TYPE (Diff_def) :: FullRankStencils ! stencil and coefficient tables - TYPE (Diff_def) :: FullRankStencilsNEW ! stencil and coefficient tables - REAL(KIND=long), DIMENSION(:,:,:,:), POINTER :: dsigmanew ! array with coordinate index, (k,i,j,:) - TYPE (SparseArray_COO) :: PreconditioningMatrix - TYPE (SparseArray_CSR) :: IterationMatrix ! for use with jacobi or gauss-seidel - INTEGER :: mapNp ! number of points in iGhost - INTEGER, DIMENSION(:), ALLOCATABLE :: iGhost ! global indexes for ghost points + INTEGER :: Nx , Ny, Nz ! Grid points in each Cartesian direction + REAL(KIND=long) , DIMENSION(:,:), POINTER :: x ! x coordinate array + REAL(KIND=long) , DIMENSION(:,:), POINTER :: y ! y coordinate array + REAL(KIND=long) , DIMENSION(:), POINTER :: z ! z coordinate array + REAL(KIND=long) , DIMENSION(:,:), POINTER :: h, hx, hxx, hy, hyy + TYPE (Diff_def) :: DiffStencils ! stencil and coefficient tables + TYPE (LeveL_def_curvilinear) :: CurvilinearStuff + TYPE (Diff_def) :: FullRankStencils ! stencil and coefficient tables + TYPE (Diff_def) :: FullRankStencilsNEW ! stencil and coefficient tables + REAL(KIND=long), DIMENSION(:,:,:,:), POINTER :: dsigmanew ! array with coordinate index, (k,i,j,:) + TYPE (SparseArray_COO) :: PreconditioningMatrix + TYPE (SparseArray_CSR) :: IterationMatrix ! for use with jacobi or gauss-seidel + INTEGER :: mapNp ! number of points in iGhost + INTEGER, DIMENSION(:), ALLOCATABLE :: iGhost ! global indexes for ghost points END TYPE Level_def ! DEFINE STRUCT FOR STREAM FUNCTION SOLUTION PARAMETERS TYPE SFparam - REAL(KIND=long) :: g, T, L, k, h, HH, c, e_or_s_vel - INTEGER :: i_wavel_or_per, i_euler_or_stokes, i_deep_or_finite, n_h_steps, n_four_modes, nwrk - REAL(KIND=long), POINTER :: zz(:), yy(:) + REAL(KIND=long) :: g, T, L, k, h, HH, c, e_or_s_vel + INTEGER :: i_wavel_or_per, i_euler_or_stokes, i_deep_or_finite, n_h_steps, n_four_modes, nwrk + REAL(KIND=long), POINTER :: zz(:), yy(:) END TYPE SFparam ! DEFINE a Structure for random and mono-chromatic wave generation parameters TYPE RandomWaveParam - REAL(KIND=long) :: Tp, Hs, h0, kh_max, dx, x0, y0, beta0, S0, gamma - INTEGER :: ispec, seed, seed2, nf, nx, ny - CHARACTER(len=30) inc_wave_file - REAL(KIND=long), allocatable :: eta(:,:), Phis(:,:), eta0(:), Phis0(:), beta(:) + REAL(KIND=long) :: Tp, Hs, h0, kh_max, dx, x0, y0, beta0, S0, gamma + INTEGER :: ispec, seed, seed2, nf, nx, ny + CHARACTER(len=30) inc_wave_file + REAL(KIND=long), allocatable :: eta(:,:), Phis(:,:), eta0(:), Phis0(:), beta(:) END TYPE RandomWaveParam ! DEFINE a structure for 3D random wave generation by flux condition, botp TYPE wave3DFluxStruct - REAL(KIND=long) :: dt, rampTime - INTEGER :: n2, order - CHARACTER(len=30) inc_wave_file - REAL(KIND=long), allocatable :: flux(:,:), y(:), time(:), etax(:,:) + REAL(KIND=long) :: dt, rampTime + INTEGER :: n2, order + CHARACTER(len=30) inc_wave_file + REAL(KIND=long), allocatable :: flux(:,:), y(:), time(:), etax(:,:) END TYPE wave3DFluxStruct ! DEFINE a Structure for the wave breaking model parameters @@ -170,23 +170,23 @@ MODULE DataTypes TYPE OutputParam - INTEGER :: xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride + INTEGER :: xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride END TYPE OutputParam TYPE RelaxZone - REAL(KIND=long) :: BBox(4) ! Bounding box [xmin xmax ymin ymax] - REAL(KIND=long) :: param ! Parameter - INTEGER :: dir ! Direction of relaxation function -1 or 1) - INTEGER :: ftype ! relaxation function to be used - INTEGER :: idx(4) ! index list start stop [xmin xmax ymin ymax] - REAL(KIND=long), DIMENSION(:), POINTER :: gam ! relaxation function values - CHARACTER(len=1) :: XorY ! coordinate direction for relaxation funtion - INTEGER :: WavegenOnOff ! turn on wavegeneration in the zone (0=off,1=on) - INTEGER :: PhiOnOff ! relax phi as well as eta (1) or just eta (0). - CHARACTER(len=1) :: XorYgen ! coordinate direction for generation - REAL(KIND=long), DIMENSION(:), POINTER :: Ea, Pa ! Storage for analytical solution - REAL(KIND=long) :: degrees ! coordinate rotation angle in degrees + REAL(KIND=long) :: BBox(4) ! Bounding box [xmin xmax ymin ymax] + REAL(KIND=long) :: param ! Parameter + INTEGER :: dir ! Direction of relaxation function -1 or 1) + INTEGER :: ftype ! relaxation function to be used + INTEGER :: idx(4) ! index list start stop [xmin xmax ymin ymax] + REAL(KIND=long), DIMENSION(:), POINTER :: gam ! relaxation function values + CHARACTER(len=1) :: XorY ! coordinate direction for relaxation funtion + INTEGER :: WavegenOnOff ! turn on wavegeneration in the zone (0=off,1=on) + INTEGER :: PhiOnOff ! relax phi as well as eta (1) or just eta (0). + CHARACTER(len=1) :: XorYgen ! coordinate direction for generation + REAL(KIND=long), DIMENSION(:), POINTER :: Ea, Pa ! Storage for analytical solution + REAL(KIND=long) :: degrees ! coordinate rotation angle in degrees END TYPE RelaxZone ! Pressure Damping Zones. @@ -196,29 +196,29 @@ MODULE DataTypes ! are added to the dynamic free-surface boundary condition. ! TYPE PDampZone - REAL(KIND=long) :: BBox(4) ! Bounding box [xmin xmax ymin ymax] - REAL(KIND=long) :: g0Phi, g0Eta - INTEGER :: idx(4) ! index list start stop [xmin xmax ymin ymax] - INTEGER :: nx, ny ! number of points in the zone - INTEGER :: type ! Damp GradPhi (0) or Phi (1) - REAL(KIND=long), allocatable :: gamPhi(:), gamEta(:) ! Damper function values - TYPE(SparseArray_COO_HBB) :: Lop ! The 2D Laplacian operator in the damping zone - REAL(kind=long), allocatable :: Grad(:,:,:) ! The 2D gradient operator in the damping zone + REAL(KIND=long) :: BBox(4) ! Bounding box [xmin xmax ymin ymax] + REAL(KIND=long) :: g0Phi, g0Eta + INTEGER :: idx(4) ! index list start stop [xmin xmax ymin ymax] + INTEGER :: nx, ny ! number of points in the zone + INTEGER :: type ! Damp GradPhi (0) or Phi (1) + REAL(KIND=long), allocatable :: gamPhi(:), gamEta(:) ! Damper function values + TYPE(SparseArray_COO_HBB) :: Lop ! The 2D Laplacian operator in the damping zone + REAL(kind=long), allocatable :: Grad(:,:,:) ! The 2D gradient operator in the damping zone END TYPE PDampZone ! New type for wavefield definition on Free Surface (scattered and incident) TYPE Wavefield_FS - REAL(KIND=long), DIMENSION(:,:), POINTER :: E, Ex, Exx, Ey, Eyy, P, Px, Py, W ! Scattered wavefield - REAL(KIND=long), DIMENSION(:,:), POINTER :: P0, NuD, Pd ! Pressure terms on the FS - REAL(KIND=long), DIMENSION(:,:), POINTER :: Qr_x, Mr_t ! Breaking model terms - REAL(KIND=long), DIMENSION(:,:), POINTER :: E_I, Ex_I, Exx_I, Ey_I, Eyy_I, Et_I ! Incident wavefield (free surface) - REAL(KIND=long), DIMENSION(:,:,:), POINTER :: EtatHist, WHist - REAL(KIND=long), DIMENSION(:,:), POINTER :: P_I_s, Pz_I_s, Px_I_s, Py_I_s, Pt_I_s ! Incident wavefield (velocity potential) - INTEGER :: nbp ! number boundary points - REAL(KIND=long), DIMENSION(:), POINTER :: E_I_bp, Ex_I_bp, Ey_I_bp ! Incident wavefield on boundary, FIXME: can be removed - REAL(KIND=long), DIMENSION(:), POINTER :: Px_I_bp, Py_I_bp, Pz_I_bp ! Incident wavefield on boundary - REAL(KIND=long), DIMENSION(:,:), POINTER :: SourceEx, SourceEy, SourcePx, SourcePy ! Incident wavefield for boundary treatment - INTEGER, DIMENSION(:,:,:), POINTER :: GidxTableBP ! Needed for the curvilinear part + REAL(KIND=long), DIMENSION(:,:), POINTER :: E, Ex, Exx, Ey, Eyy, P, Px, Py, W ! Scattered wavefield + REAL(KIND=long), DIMENSION(:,:), POINTER :: P0, NuD, Pd ! Pressure terms on the FS + REAL(KIND=long), DIMENSION(:,:), POINTER :: Qr_x, Mr_t ! Breaking model terms + REAL(KIND=long), DIMENSION(:,:), POINTER :: E_I, Ex_I, Exx_I, Ey_I, Eyy_I, Et_I ! Incident wavefield (free surface) + REAL(KIND=long), DIMENSION(:,:,:), POINTER :: EtatHist, WHist + REAL(KIND=long), DIMENSION(:,:), POINTER :: P_I_s, Pz_I_s, Px_I_s, Py_I_s, Pt_I_s ! Incident wavefield (velocity potential) + INTEGER :: nbp ! number boundary points + REAL(KIND=long), DIMENSION(:), POINTER :: E_I_bp, Ex_I_bp, Ey_I_bp ! Incident wavefield on boundary, FIXME: can be removed + REAL(KIND=long), DIMENSION(:), POINTER :: Px_I_bp, Py_I_bp, Pz_I_bp ! Incident wavefield on boundary + REAL(KIND=long), DIMENSION(:,:), POINTER :: SourceEx, SourceEy, SourcePx, SourcePy ! Incident wavefield for boundary treatment + INTEGER, DIMENSION(:,:,:), POINTER :: GidxTableBP ! Needed for the curvilinear part END TYPE Wavefield_FS END MODULE From 6c3c48e1068a8a44c1da6b060e2976c6dfcd464b Mon Sep 17 00:00:00 2001 From: Allan Peter Engsig-Karup Date: Sun, 4 Sep 2016 21:17:31 +0200 Subject: [PATCH 27/56] added submergedbar test --- examples/inputfiles/OceanWave3D.inp | 62 ------------------- .../inputfiles/OceanWave3D.inp.SubmergedBar2D | 41 ++++++++++++ 2 files changed, 41 insertions(+), 62 deletions(-) create mode 100644 examples/inputfiles/OceanWave3D.inp.SubmergedBar2D diff --git a/examples/inputfiles/OceanWave3D.inp b/examples/inputfiles/OceanWave3D.inp index 5d71f3c..f35989d 100644 --- a/examples/inputfiles/OceanWave3D.inp +++ b/examples/inputfiles/OceanWave3D.inp @@ -13,65 +13,3 @@ Nonlinear standing wave (2D) (Release Version) 0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) 0 <- Curvilinear on/off - - - -2D submerged bar test -15 <- Initial condition -35 3 1 513 1 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) -3 3 3 1 1 1 <- alpha, beta, gamma -2000 0.025 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-ExtrapolationON/OFF -9.81 <- gravitational acceleration constant -1 0 35 1e-6 1e-4 1 F 1 1 5 <- GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven -0.02 0.4 2.0 2.01 1 0 1 4 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter -1 1 <- StoreDataOnOff -1 0 <- 0=linear, 1=nonlinear computations -0 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order !1 5 2 0 -1 5 2 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) -0 5 0 3 -9 5 X 0 X 0 ! Zone 1: Wave absorber (left) 0 5 0 3 10 5 X 1 X 0 ! Zone 1: Wave maker -30 35 0 3 9 5 X 0 X 0 ! Zone 2: Wave absorber (right) -1 5.0 1 0 0 0 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) -0 <- Curvilinear on/off - - - - - - - -Linear standing wave (3D) Curvilinear -8 <- Initial condition -2 2 1 17 17 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGridX, GhostGridY, GhostGridZ (0=off,1=on) -3 3 3 1 1 1 <- alpha, beta, gamma, (Preconditioner stencils:) alphaprecond,betaprecond,gammaprecond -1 1.345946927933294e-002 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-ExtrapolationON/OFF -9.81 <- gravitational acceleration constant -1 0 500 1e-6 1e-4 1 F 1 1 4 <- GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven -2 2 2.0 2.0 0 0 1 4 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter -1 1 <- StoreDataOnOff -0 <- 0=linear, 1=nonlinear computations -0 9 6 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order -0 0 0 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) -0 2.0 1 1 1 1 1 <- SWENSE on/off, ramp in time, direction (1:+x ; -1:-x ; 2:+y ; -2:-y) (0=off,1=on) -0 <- Curvilinear on/off - - - -Test on flat bottom -7 <- Initial condition -8 7.5 1 65 129 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) -3 3 3 1 1 1 <- alpha, beta, gamma -640 0.0125 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-ExtrapolationON/OFF -9.81 <- gravitational acceleration constant -3 0 100 1e-7 1e-5 1 F 1 1 5 <- GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven -0.1 1.0 1.0 3.0 0 0.0 1 4 24 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter -1 1 <- StoreDataOnOff -1 <- 0=linear, 1=nonlinear computations -0 6 10 0.02 0.02 0.2 <- SG-filtering on/off, filter half width, poly order !1 5 2 0 -1 0.0 4 X 10 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) -0 2 0 7.5 10 5 X 1 X 10 ! Zone 1: Wave maker (west) -0 8 0 2 10 5 Y 1 X 10 ! Zone 2: Wave maker (south) -0 8 5.5 7.5 -10 5 Y 1 X 10 ! Zone 3: Wave maker (north) -6 8 0 7.5 -10 5 X 1 X 10 ! Zone 4: Wave maker (east) -0 5.0 1 0 0 0 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) -0 <- Curvilinear on/off - diff --git a/examples/inputfiles/OceanWave3D.inp.SubmergedBar2D b/examples/inputfiles/OceanWave3D.inp.SubmergedBar2D new file mode 100644 index 0000000..68d3834 --- /dev/null +++ b/examples/inputfiles/OceanWave3D.inp.SubmergedBar2D @@ -0,0 +1,41 @@ +2D submerged bar test +15 1 <- Initial condition (0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 15=Submerged bar 2D, ... see Initialization.f90:SetupInitial Conditions); IncWaveType (0=none, 1=stream function, 2=linear irregular waves) +35 3 1 513 1 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) +3 3 3 1 1 1 <- alpha, beta, gamma +2000 0.025 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-Extrapolat\ ionON/OFF +9.81 <- gravitational acceleration constant +1 0 35 1e-6 1e-4 1 F 1 1 5 <- GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +0.02 0.4 2.0 2.01 1 0 1 4 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter +1 1 <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +1 0 <- 0=linear, 1=nonlinear computations +0 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order !1 5 2 0 +1 5. 2 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) +0 5 0 3 -9 5 X 0 X 0 ! Zone 1: Wave absorber (left) 0 5 0 3 10 5 X 1 X 0 ! Zone 1: Wave maker +30 35 0 3 9 5 X 0 X 0 ! Zone 2: Wave absorber (right) +0 5.0 1 0 0 0 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) +0 <- Curvilinear on/off +1 9. 4. 20. -1 34 run06.el <- i_spec, T_p, H_s, kh_max, seed, seed2, inc_wave_file. For a random wave, the spectrum: 0=P-M, 1=JONSWAP, 2=Read from a file + + + +Whalins experiment (Release Version) +3 1 <- Initial condition (0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 3=Whalin bar, ... see Initialization.f90:SetupInitialConditions); IncWaveType (0=none, 1=stream function, 2=linear irregular waves) +35. 3.048 1. 257 21 6 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) +3 3 3 1 1 1 <- alpha, beta, gamma, alphaprecond +1283 0.039 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)) +9.81 <- gravitational acceleration constant +1 3 0 14 1e-6 1e-4 1 F 1 1 5 <- Solve (GMRES=0,DC=1), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), absolute tolerance (abstol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +0.015 0.4572 2.0 2.0 1 0 1 4 32 <- wavegeneration functions(0=sinusoidal, 1=SF), Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter +-1 20 1 1 <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +80 80 1 1 1 1 1 800 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride +1 0 <- linear/nonlinear ONOFF +0 6 10 0.08 0.08 0.4 <- SG filterling on/off +1 5. 2 X 0 <- relaxation zones + 0 5 0 5 10 5 X 1 X 0 ! Zone 1: Wave maker (West) + 30 35 0 5 9 5 X 0 X 0 ! Zone 2: Wave absorber (East) +0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) +0 <- Curvilinear on/off +1 9. 4. 20. -1 34 run06.el <- i_spec, T_p, H_s, kh_max, seed, seed2, inc_wave_file. For a random wave, the spectrum: 0=P-M, 1=JONSWAP, 2=Read from a file + + + From 0fc8d736666487fa92af7b312eb7ba821169b440 Mon Sep 17 00:00:00 2001 From: Allan Peter Engsig-Karup Date: Thu, 8 Sep 2016 20:43:07 +0200 Subject: [PATCH 28/56] made it possible to change the depth in the submerged bar test --- src/initialization/SetupInitialConditions.f90 | 62 ++++++++++++++++++- 1 file changed, 61 insertions(+), 1 deletion(-) diff --git a/src/initialization/SetupInitialConditions.f90 b/src/initialization/SetupInitialConditions.f90 index a595729..e014a68 100644 --- a/src/initialization/SetupInitialConditions.f90 +++ b/src/initialization/SetupInitialConditions.f90 @@ -681,7 +681,67 @@ SUBROUTINE SetupInitialConditions ! relaxation zone) y0 = FineGrid%x(RelaxZones(1)%idx(2),1) ! Define bottom - CALL SubmergedBar_2D(FineGrid,y0,GhostGridX) + IF (Lz>0) + CALL SubmergedBar_2D(FineGrid,y0,GhostGridX) + ELSE + !------------------------------------------------------------------------- + ! Read in the bottom contours from a file: + !------------------------------------------------------------------------- + OPEN(unit=fileip(4),file=fname_bottom,status='old') + READ(fileip(4),'(A)')head(4) + PRINT *, 'SetUpInitialConditions: Reading the bottom contours from file:' + PRINT *,fname_bottom,' with header:' + PRINT *, head(4) + PRINT *, ' ' + WRITE(FILEOP(1),*) 'SetUpInitialConditions: Reading the bottom contours from file:' + WRITE(FILEOP(1),*)fname_bottom,' with header:' + WRITE(FILEOP(1),*) head(4) + WRITE(FILEOP(1),*) ' ' + READ(fileip(4),*) DetermineBottomGradients ! Read the gradient flag + + !------------------------------------------------------------------------- + ! Read h(x,y),h_x,h_xx,h_y,h_yy + !------------------------------------------------------------------------- + Print *, ' Reading h,h_x,h_xx,h_y,h_yy.' + print *, ' ' + write(fileop(1),*) ' Reading h,h_x,h_xx,h_y,h_yy.' + write(fileop(1),*) ' ' + Do j=1+GhostGridY,ny+GhostGridY + DO i=1+GhostGridX,nx+GhostGridX + READ(fileip(4),*) FineGrid%h(i,j), & + FineGrid%hx(i,j), & + FineGrid%hxx(i,j), & + FineGrid%hy(i,j), & + FineGrid%hyy(i,j) + END DO + END DO + + !------------------------------------------------------------------------- + ! Extend the bathymetry to the ghost points by copying the domain + ! endpoint values. + !------------------------------------------------------------------------- + FineGrid%h(1,:) = FineGrid%h(1+GhostGridX,:); + FineGrid%h(:,1) = FineGrid%h(:,1+GhostGridY); + FineGrid%h(nx+2*GhostGridX,:) = FineGrid%h(nx+GhostGridX,:); + FineGrid%h(:,ny+2*GhostGridY) = FineGrid%h(:,ny+GhostGridY) + FineGrid%hx(1,:) = FineGrid%hx(1+GhostGridX,:); + FineGrid%hx(:,1) = FineGrid%hx(:,1+GhostGridY); + FineGrid%hx(nx+2*GhostGridX,:) = FineGrid%hx(nx+GhostGridX,:); + FineGrid%hx(:,ny+2*GhostGridY) = FineGrid%hx(:,ny+GhostGridY) + FineGrid%hxx(1,:) = FineGrid%hxx(1+GhostGridX,:); + FineGrid%hxx(:,1) = FineGrid%hxx(:,1+GhostGridY); + FineGrid%hxx(nx+2*GhostGridX,:) = FineGrid%hxx(nx+GhostGridX,:); + FineGrid%hxx(:,ny+2*GhostGridY) = FineGrid%hxx(:,ny+GhostGridY) + FineGrid%hy(1,:) = FineGrid%hy(1+GhostGridX,:); + FineGrid%hy(:,1) = FineGrid%hy(:,1+GhostGridY); + FineGrid%hy(nx+2*GhostGridX,:) = FineGrid%hy(nx+GhostGridX,:); + FineGrid%hy(:,ny+2*GhostGridY) = FineGrid%hy(:,ny+GhostGridY) + FineGrid%hyy(1,:) = FineGrid%hyy(1+GhostGridX,:); + FineGrid%hyy(:,1) = FineGrid%hyy(:,1+GhostGridY); + FineGrid%hyy(nx+2*GhostGridX,:) = FineGrid%hyy(nx+GhostGridX,:); + FineGrid%hyy(:,ny+2*GhostGridY) = FineGrid%hyy(:,ny+GhostGridY) + + END IF ! IF(swenseONOFF==1)THEN IF (LinearONOFF==0) THEN From 06a101ca385b7d8bbfcc6c1b0f3f9f402222908d Mon Sep 17 00:00:00 2001 From: Allan Peter Engsig-Karup Date: Thu, 8 Sep 2016 21:06:35 +0200 Subject: [PATCH 29/56] updated files --- common.mk | 4 ++-- src/IO/ReadInputFileParameters.f90 | 12 ++++++++---- src/initialization/SetupInitialConditions.f90 | 2 +- src/main/OceanWave3DT0Setup.f90 | 1 - 4 files changed, 11 insertions(+), 8 deletions(-) diff --git a/common.mk b/common.mk index 8a48da0..51397aa 100644 --- a/common.mk +++ b/common.mk @@ -18,12 +18,12 @@ BUILDDIR = $(PWD)/build # flag, or by creating a block for a specific $USER. # Choose the Fortran compiler on this system # E.g. pathf90, f90, gfortran, gf90, ifort -#FC = gfortran +FC = gfortran #FC = gfortran44 #FC = gfortran-4.4 #FC = gf90 -USER = hbb +USER = apek # First the blocks based on compiler name: diff --git a/src/IO/ReadInputFileParameters.f90 b/src/IO/ReadInputFileParameters.f90 index 7e60072..ade1046 100644 --- a/src/IO/ReadInputFileParameters.f90 +++ b/src/IO/ReadInputFileParameters.f90 @@ -128,9 +128,11 @@ SUBROUTINE ReadInputFileParameters betaprecond = 0 ENDIF WRITE (*,901) ' Half-width stencils: (alpha,beta,gamma)=(',alpha,',',beta,',',gamma,')' - WRITE (*,901) ' Half-width stencils: (alpha,beta,gamma)=(',alphaprecond,',',betaprecond,',',gammaprecond,') (Preconditioner)' + WRITE (*,901) ' Half-width stencils: (alpha,beta,gamma)=' + WRITE (*,901) ' (',alphaprecond,',',betaprecond,',',gammaprecond,') (Preconditioner)' WRITE (fileop(1),901) ' Half-width stencils: (alpha,beta,gamma)=(',alpha,',',beta,',',gamma,')' - WRITE (fileop(1),901) ' Half-width stencils: (alpha,beta,gamma)=(',alphaprecond,',',betaprecond,',',gammaprecond,') (Preconditioner)' + WRITE (fileop(1),901) ' Half-width stencils: (alpha,beta,gamma)=' + WRITE (fileop(1),901) ' (',alphaprecond,',',betaprecond,',',gammaprecond,') (Preconditioner)' IF (2*alpha+1>FineGrid%Nx .AND. FineGrid%Nx>1) THEN GOTO 101 ENDIF @@ -372,7 +374,8 @@ SUBROUTINE ReadInputFileParameters READ (FILEIP(1),*) filteringONOFF, filterALPHA, filterORDER, sigma_filt(1), sigma_filt(2), sigma_filt(3) IF (filteringONOFF>0) THEN WRITE(*,*) ' SG(',2*filterALPHA+1,',',filterORDER,')-filtering will be employed after every ',filteringONOFF,' time step.' - WRITE(fileop(1),*) ' SG(',2*filterALPHA+1,',',filterORDER,')-filtering will be employed after every ',filteringONOFF,' time step.' + WRITE(fileop(1),*) ' SG(',2*filterALPHA+1,',',filterORDER,')-filtering will be employed' + WRITE(fileop(1),*) ' after every ',filteringONOFF,' time step.' filterNP = filterALPHA*2+1 ALLOCATE(filtercoefficients(filterNP),tmpfilter(max(filterNP,13))) filtercoefficients = zero; tmpfilter = zero @@ -546,7 +549,8 @@ SUBROUTINE ReadInputFileParameters IF (abs(ispec)<30) THEN Print *, 'ReadInputFileParameters: For IncWaveType==2 we need irregular wave parameters.' ELSE - Print *, 'ReadInputFileParameters: For 3D waves, abs(ispec)>30, we need a heading angle, a spreading factor and a JONSWAP gamma factor.' + Print *, 'ReadInputFileParameters: For 3D waves, abs(ispec)>30, we need a heading angle,' + Print *, ' a spreading factor and a JONSWAP gamma factor.' END IF STOP END IF diff --git a/src/initialization/SetupInitialConditions.f90 b/src/initialization/SetupInitialConditions.f90 index e014a68..331f096 100644 --- a/src/initialization/SetupInitialConditions.f90 +++ b/src/initialization/SetupInitialConditions.f90 @@ -681,7 +681,7 @@ SUBROUTINE SetupInitialConditions ! relaxation zone) y0 = FineGrid%x(RelaxZones(1)%idx(2),1) ! Define bottom - IF (Lz>0) + IF (Lz>0) THEN CALL SubmergedBar_2D(FineGrid,y0,GhostGridX) ELSE !------------------------------------------------------------------------- diff --git a/src/main/OceanWave3DT0Setup.f90 b/src/main/OceanWave3DT0Setup.f90 index c94c926..5c2ddf4 100644 --- a/src/main/OceanWave3DT0Setup.f90 +++ b/src/main/OceanWave3DT0Setup.f90 @@ -602,7 +602,6 @@ SUBROUTINE OceanWave3DT0Setup '*** Software library developed in 2009 by ***',/,& '*** ***',/,& '*** Allan P. Engsig-Karup ***',/,& - '*** Guillaume Ducrozet ***',/,& '*** ***',/,& '*** At DTU Informatics ***',/,& '*** Scientific Computing Section ***',/,& From 84769a1b6065a67e8d7e7d6c9d359486c77661e5 Mon Sep 17 00:00:00 2001 From: Allan Peter Engsig-Karup Date: Tue, 18 Oct 2016 13:34:08 +0200 Subject: [PATCH 30/56] added python --- utils/python/IO/LoadRealArray.py | 38 ++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 utils/python/IO/LoadRealArray.py diff --git a/utils/python/IO/LoadRealArray.py b/utils/python/IO/LoadRealArray.py new file mode 100644 index 0000000..dfccff6 --- /dev/null +++ b/utils/python/IO/LoadRealArray.py @@ -0,0 +1,38 @@ +% Load real array into matlab +function A = LoadRealArray(filename,IOmethod,byteorder) +% filename = '../dsigma.bin'; +% CHOOSE BETWEEN byte storage format below (uncomment the one needed) +% byteorder = 'ieee-be'; % IEEE Big-Endian format +%byteorder = 'ieee-le'; % IEEE Little-Endian format +switch IOmethod + case 1 % unformatted file + fid=fopen(filename,'r',byteorder); + [nrec,count] = fread(fid,1,'int32'); + r1 = fread(fid, 1, 'int32'); + r2 = fread(fid, 1, 'int32'); + A = fread(fid, [r1 r2], 'float64'); + fclose(fid); + case 2 % unformatted file from ftn95 + fid=fopen(filename,'r',byteorder); + [nrec,count] = fread(fid,1,'int8'); + [nrec,count] = fread(fid,1,'int32'); + r1 = fread(fid, 1, 'int32'); + r2 = fread(fid, 1, 'int32'); + A = fread(fid, [r1 r2], 'float64'); + fclose(fid); + case 3 % unformatted file from gfortran (MacOS) + fid=fopen(filename,'r',byteorder); + [nrec,count] = fread(fid,1,'int32'); + r1 = fread(fid, 1, 'int32'); + r2 = fread(fid, 1, 'int32'); + A = fread(fid, [r1 r2], 'float64'); + fclose(fid); + otherwise % binary file + fid=fopen(filename,'r',byteorder); + r1 = fread(fid, 1, 'int32'); + r2 = fread(fid, 1, 'int32'); + A = fread(fid, [r1 r2], 'float64'); + fclose(fid); +end +A = sparse(A); +return From e61ca64e654b6d70c8144feab4ad8e2f6338b5ee Mon Sep 17 00:00:00 2001 From: Allan Peter Engsig-Karup Date: Tue, 18 Oct 2016 17:23:46 +0200 Subject: [PATCH 31/56] updated submergedbartest --- .../inputfiles/OceanWave3D.inp.SubmergedBar2D | 28 ++----------------- 1 file changed, 2 insertions(+), 26 deletions(-) diff --git a/examples/inputfiles/OceanWave3D.inp.SubmergedBar2D b/examples/inputfiles/OceanWave3D.inp.SubmergedBar2D index 68d3834..5a3cf71 100644 --- a/examples/inputfiles/OceanWave3D.inp.SubmergedBar2D +++ b/examples/inputfiles/OceanWave3D.inp.SubmergedBar2D @@ -4,38 +4,14 @@ 3 3 3 1 1 1 <- alpha, beta, gamma 2000 0.025 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-Extrapolat\ ionON/OFF 9.81 <- gravitational acceleration constant -1 0 35 1e-6 1e-4 1 F 1 1 5 <- GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +1 1 0 35 1e-6 1e-4 1 F 1 1 5 <- Solve (DC=0,GMRES=1) GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven 0.02 0.4 2.0 2.01 1 0 1 4 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter 1 1 <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. 1 0 <- 0=linear, 1=nonlinear computations 0 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order !1 5 2 0 1 5. 2 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) -0 5 0 3 -9 5 X 0 X 0 ! Zone 1: Wave absorber (left) 0 5 0 3 10 5 X 1 X 0 ! Zone 1: Wave maker +0 5 0 3 -9 5 X 1 X 0 ! Zone 1: Wave absorber (left) 0 5 0 3 10 5 X 1 X 0 ! Zone 1: Wave maker 30 35 0 3 9 5 X 0 X 0 ! Zone 2: Wave absorber (right) 0 5.0 1 0 0 0 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) 0 <- Curvilinear on/off 1 9. 4. 20. -1 34 run06.el <- i_spec, T_p, H_s, kh_max, seed, seed2, inc_wave_file. For a random wave, the spectrum: 0=P-M, 1=JONSWAP, 2=Read from a file - - - -Whalins experiment (Release Version) -3 1 <- Initial condition (0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 3=Whalin bar, ... see Initialization.f90:SetupInitialConditions); IncWaveType (0=none, 1=stream function, 2=linear irregular waves) -35. 3.048 1. 257 21 6 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) -3 3 3 1 1 1 <- alpha, beta, gamma, alphaprecond -1283 0.039 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)) -9.81 <- gravitational acceleration constant -1 3 0 14 1e-6 1e-4 1 F 1 1 5 <- Solve (GMRES=0,DC=1), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), absolute tolerance (abstol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven -0.015 0.4572 2.0 2.0 1 0 1 4 32 <- wavegeneration functions(0=sinusoidal, 1=SF), Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter --1 20 1 1 <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. -80 80 1 1 1 1 1 800 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride -1 0 <- linear/nonlinear ONOFF -0 6 10 0.08 0.08 0.4 <- SG filterling on/off -1 5. 2 X 0 <- relaxation zones - 0 5 0 5 10 5 X 1 X 0 ! Zone 1: Wave maker (West) - 30 35 0 5 9 5 X 0 X 0 ! Zone 2: Wave absorber (East) -0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) -0 <- Curvilinear on/off -1 9. 4. 20. -1 34 run06.el <- i_spec, T_p, H_s, kh_max, seed, seed2, inc_wave_file. For a random wave, the spectrum: 0=P-M, 1=JONSWAP, 2=Read from a file - - - From a1a138cc7ea6c217efee243e1843d67b3c3a0fa2 Mon Sep 17 00:00:00 2001 From: Allan Peter Engsig-Karup Date: Tue, 18 Oct 2016 17:24:08 +0200 Subject: [PATCH 32/56] update --- src/IO/StoreData.f90 | 3 +- src/functions/RelaxationModule_new.f90 | 1 + src/main/OceanWave3DTakeATimeStep.f90 | 1 - .../ShowFreeSurfaceEvolution2D.m | 12 +- utils/python/IO/LoadRealArray.py | 87 +++++---- .../ShowFreeSurfaceEvolution2D.py | 182 ++++++++++++++++++ 6 files changed, 240 insertions(+), 46 deletions(-) create mode 100644 utils/python/visualization/ShowFreeSurfaceEvolution2D.py diff --git a/src/IO/StoreData.f90 b/src/IO/StoreData.f90 index d86a19c..c808476 100644 --- a/src/IO/StoreData.f90 +++ b/src/IO/StoreData.f90 @@ -17,7 +17,8 @@ SUBROUTINE StoreData(nx,ny,E,P,FineGrid,nr,formattype) CASE DEFAULT ! Most efficient for large data storage ! no information about records stored - form="binary" +! form="binary" + form="unformatted" END SELECT OPEN (unit=22, file=filename,form=form) ! Size of free surface diff --git a/src/functions/RelaxationModule_new.f90 b/src/functions/RelaxationModule_new.f90 index 63d3bda..549da32 100644 --- a/src/functions/RelaxationModule_new.f90 +++ b/src/functions/RelaxationModule_new.f90 @@ -24,6 +24,7 @@ SUBROUTINE RelaxationModule_new(E,P,RKtime,time) ELSE FAC = one ENDIF + ! ! Local x- and y-coordinate arrays. ! diff --git a/src/main/OceanWave3DTakeATimeStep.f90 b/src/main/OceanWave3DTakeATimeStep.f90 index f7c6601..d9c0af4 100644 --- a/src/main/OceanWave3DTakeATimeStep.f90 +++ b/src/main/OceanWave3DTakeATimeStep.f90 @@ -66,7 +66,6 @@ SUBROUTINE OceanWave3DTakeATimeStep CALL CloseVariables stop END IF - time = time + dt CALL SYSTEM_CLOCK(count_1, count_rate, count_max) diff --git a/utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m b/utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m index d061553..ba36237 100644 --- a/utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m +++ b/utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m @@ -16,17 +16,18 @@ %dirpath = '/Users/apek/OW3Dtest'; %dirpath = '/Users/apek/Desktop/OCW3D'; %dirpath = '/Users/apek/Desktop/OCWD3DWhalinTest'; -%cd(dirpath) +dirpath = '/Users/apek/Desktop/OCW3DTest'; +cd(dirpath) % %************************************************************************ % *** Set these values to correspond to the run at hand.*** initialstep = 0; -Nsteps = 20; %915; -jump = 2; +Nsteps = 2000; %915; +jump = 25; dt = .0245 g = 9.81; plotmethod = 2; % 1-> 2D, 2->3D -Amax=1.;%10*50*0.125; % To set the scale of the z-axis plot +Amax=0.1;%10*50*0.125; % To set the scale of the z-axis plot IOmethod = 1; %0:binary ; 1:classical unformatted ; 2:unformatted ftn95 fac = 1; %1e-1; % @@ -143,7 +144,6 @@ end drawnow %hold on - E' - pause(0.3) + pause(0.1) % pause end diff --git a/utils/python/IO/LoadRealArray.py b/utils/python/IO/LoadRealArray.py index dfccff6..a7e1da3 100644 --- a/utils/python/IO/LoadRealArray.py +++ b/utils/python/IO/LoadRealArray.py @@ -1,38 +1,49 @@ -% Load real array into matlab -function A = LoadRealArray(filename,IOmethod,byteorder) -% filename = '../dsigma.bin'; -% CHOOSE BETWEEN byte storage format below (uncomment the one needed) -% byteorder = 'ieee-be'; % IEEE Big-Endian format -%byteorder = 'ieee-le'; % IEEE Little-Endian format -switch IOmethod - case 1 % unformatted file - fid=fopen(filename,'r',byteorder); - [nrec,count] = fread(fid,1,'int32'); - r1 = fread(fid, 1, 'int32'); - r2 = fread(fid, 1, 'int32'); - A = fread(fid, [r1 r2], 'float64'); - fclose(fid); - case 2 % unformatted file from ftn95 - fid=fopen(filename,'r',byteorder); - [nrec,count] = fread(fid,1,'int8'); - [nrec,count] = fread(fid,1,'int32'); - r1 = fread(fid, 1, 'int32'); - r2 = fread(fid, 1, 'int32'); - A = fread(fid, [r1 r2], 'float64'); - fclose(fid); - case 3 % unformatted file from gfortran (MacOS) - fid=fopen(filename,'r',byteorder); - [nrec,count] = fread(fid,1,'int32'); - r1 = fread(fid, 1, 'int32'); - r2 = fread(fid, 1, 'int32'); - A = fread(fid, [r1 r2], 'float64'); - fclose(fid); - otherwise % binary file - fid=fopen(filename,'r',byteorder); - r1 = fread(fid, 1, 'int32'); - r2 = fread(fid, 1, 'int32'); - A = fread(fid, [r1 r2], 'float64'); - fclose(fid); -end -A = sparse(A); -return +filename = 'EP_01330.bin' + +import struct + +# Bindary file +data = open(filename, "rb").read() + + + +#(eight, N) = struct.unpack("@II", data) + +#% Load real array into matlab +#function A = LoadRealArray(filename,IOmethod,byteorder) +#% filename = '../dsigma.bin'; +#% CHOOSE BETWEEN byte storage format below (uncomment the one needed) +#% byteorder = 'ieee-be'; % IEEE Big-Endian format +#%byteorder = 'ieee-le'; % IEEE Little-Endian format +#switch IOmethod +# case 1 % unformatted file +# fid=fopen(filename,'r',byteorder); +# [nrec,count] = fread(fid,1,'int32'); +# r1 = fread(fid, 1, 'int32'); +# r2 = fread(fid, 1, 'int32'); +# A = fread(fid, [r1 r2], 'float64'); +# fclose(fid); +# case 2 % unformatted file from ftn95 +# fid=fopen(filename,'r',byteorder); +# [nrec,count] = fread(fid,1,'int8'); +# [nrec,count] = fread(fid,1,'int32'); +# r1 = fread(fid, 1, 'int32'); +# r2 = fread(fid, 1, 'int32'); +# A = fread(fid, [r1 r2], 'float64'); +# fclose(fid); +# case 3 % unformatted file from gfortran (MacOS) +# fid=fopen(filename,'r',byteorder); +# [nrec,count] = fread(fid,1,'int32'); +# r1 = fread(fid, 1, 'int32'); +# r2 = fread(fid, 1, 'int32'); +# A = fread(fid, [r1 r2], 'float64'); +# fclose(fid); +# otherwise % binary file +# fid=fopen(filename,'r',byteorder); +# r1 = fread(fid, 1, 'int32'); +# r2 = fread(fid, 1, 'int32'); +# A = fread(fid, [r1 r2], 'float64'); +# fclose(fid); +#end +#A = sparse(A); +#return diff --git a/utils/python/visualization/ShowFreeSurfaceEvolution2D.py b/utils/python/visualization/ShowFreeSurfaceEvolution2D.py new file mode 100644 index 0000000..8bc3dd8 --- /dev/null +++ b/utils/python/visualization/ShowFreeSurfaceEvolution2D.py @@ -0,0 +1,182 @@ +#% +#% This script is useful for visualizing data output (in binary file format) +#% from the fortran OceanWave3D model. The script can be easily tailored +#% to output data from other data files as well. +#% +#% By Allan P. Engsig-Karup, apek@dtu.dk. +# +#% Show free surface evolution +#clear all; close all +# +#curdir = cd; +# +#% Path for data files here +#% dirpath = '/Users/apek/Documents/Fortran/SWENSE3D/bin'; +#%dirpath = '/Users/apek/CVS/tests/OleLindberg'; +#%dirpath = '/Users/apek/OW3Dtest'; +#%dirpath = '/Users/apek/Desktop/OCW3D'; +#%dirpath = '/Users/apek/Desktop/OCWD3DWhalinTest'; +#%cd(dirpath) +#% +#%************************************************************************ +#% *** Set these values to correspond to the run at hand.*** +#import struct +import numpy as np +import matplotlib.pyplot as plt + +initialstep = 0 +Nsteps = 20 +jump = 2 +dt = .0245 +g = 9.81 +plotmethod = 2 # 1-> 2D, 2->3D +Amax=1. # % To set the scale of the z-axis plot +IOmethod = 1 # ; %0:binary ; 1:classical unformatted ; 2:unformatted ftn95 +fac = 1 # ; %1e-1; +#% +#%************************************************************************ +# +#% CHOOSE BETWEEN byte storage format below (uncomment the one needed) +#% byteorder = 'ieee-be'; % IEEE Big-Endian format +byteorder = 'ieee-le' #; % IEEE Little-Endian format + +filename = 'EP_01330.bin' +#data = open(filename, "rb").read() # read all of file +#data = open(filename, "rb") # just open file +#Nx = struct.unpack(" 30) +# [nrec,count] = fread(fid,1,'int8'); +# [nrec,count] = fread(fid,1,'int32'); +# X=fread(fid,[Nx Ny],'float64'); +# Y=fread(fid,[Nx Ny],'float64'); +# [nrec,count] = fread(fid,1,'int32'); +# [nrec,count] = fread(fid,1,'int8'); +# +# [nrec,count] = fread(fid,1,'int8'); +# [nrec,count] = fread(fid,1,'int32'); +# E=fread(fid,[Nx Ny],'float64'); +# % E=reshape(E(:),nx,ny); +# P=fread(fid,[Nx,Ny],'float64'); +# fclose(fid); +# else +# [nrec,count] = fread(fid,1,'int8'); +# X=fread(fid,[Nx Ny],'float64'); +# Y=fread(fid,[Nx Ny],'float64'); +# [nrec,count] = fread(fid,1,'int8'); +# +# [nrec,count] = fread(fid,1,'int8'); +# E=fread(fid,[Nx Ny],'float64'); +# % E=reshape(E(:),nx,ny); +# P=fread(fid,[Nx,Ny],'float64'); +# fclose(fid); +# end +# otherwise % binary file +# fid=fopen(sprintf('EP_%.5d.bin',tstep),'r',byteorder); +# Nx=fread(fid,1,'int32'); +# Ny=fread(fid,1,'int32'); +# X=fread(fid,[Nx Ny],'float64'); +# Y=fread(fid,[Nx Ny],'float64'); +# E=fread(fid,[Nx Ny],'float64'); +# % E=reshape(E(:),nx,ny); +# P=fread(fid,[Nx,Ny],'float64'); +# fclose(fid); +# end +#% % time for plotting... +# if Ny==1 | Nx==1 +# plotmethod = 1; +# end +# +# switch plotmethod +# case 1 +# if Nx>1 +# % plot(X,E,'b') +# plot(X,E,'b',X,P,'r') +# axis([X(1) X(end) -Amax Amax]) +# else +# plot(Y,E,'b') %,Y,P,'r') +# axis([Y(1) Y(end) -0.1 0.15]) +# end +# grid on +# case 2 +# % mesh(X,Y,Eerr*fac) +# % surf(X,Y,E*fac) +# surf(X(2:end-1,2:end-1),Y(2:end-1,2:end-1),E(2:end-1,2:end-1)*fac) +# colormap(water) +# axis([X(1) X(end) Y(1) Y(end) -0.1 0.1]) +# light +# % axis equal +# axis off +# % view(0,90) +# % view(-10,0) +# case 3 +# subplot(1,3,1) +# mesh(X,Y,E*fac) +# % axis([x(1) x(end) y(1) y(end) -1 1]) +# subplot(1,3,2) +# mesh(X,Y,P*fac) +# % axis([x(1) x(end) y(1) y(end) -1 1]) +# subplot(1,3,3) +# mesh(X,Y,abs(E-P)*fac) +# end +# drawnow +# %hold on +# E' +# pause(0.3) +# % pause +#end From 935ad078c73c58001b2081dd811b13f645088970 Mon Sep 17 00:00:00 2001 From: Allan Peter Engsig-Karup Date: Sat, 5 Nov 2016 23:06:44 +0100 Subject: [PATCH 33/56] updated error info --- src/IO/ReadInputFileParameters.f90 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/IO/ReadInputFileParameters.f90 b/src/IO/ReadInputFileParameters.f90 index ade1046..5cd488c 100644 --- a/src/IO/ReadInputFileParameters.f90 +++ b/src/IO/ReadInputFileParameters.f90 @@ -305,15 +305,15 @@ SUBROUTINE ReadInputFileParameters ! Check that the requested output ranges exist on this grid. ! if ( Output(i)%xbeg<1 .or. Output(i)%xend>FineGrid%Nx .or. Output(i)%xbeg > Output(i)%xend) THEN - Print *, 'ReadInputFileParameters: Kinematics xrange is invalid' + Print *, 'ReadInputFileParameters: Kinematics x coordinate range is invalid' stop end if if(Output(i)%ybeg<1 .or. Output(i)%yend>FineGrid%Ny .or. Output(i)%ybeg > Output(i)%yend ) THEN - Print *, 'ReadInputFileParameters: Kinematics yrange is invalid' + Print *, 'ReadInputFileParameters: Kinematics y coorindate range is invalid' stop end if if(Output(i)%tbeg<1 .or. Output(i)%tend>Nsteps .or. Output(i)%tbeg > Output(i)%tend) THEN - Print *, 'ReadInputFileParameters: Kinematics trange is invalid' + Print *, 'ReadInputFileParameters: Kinematics time range is invalid' stop end if ! Open the required output files @@ -325,7 +325,7 @@ SUBROUTINE ReadInputFileParameters END IF go to 111 110 print *, 'ReadInputFile Parameters: Error reading kinematics file parameters.' - print *, 'Failed after reading ',i-1,' output file lines.' + print *, 'Failed after reading line ',i,' for the output file configurations.' stop 111 continue From c1675e49eba1d8910941d98a89871827bb55155f Mon Sep 17 00:00:00 2001 From: Allan Peter Engsig-Karup Date: Sun, 6 Nov 2016 02:25:36 +0100 Subject: [PATCH 34/56] update to how kinematics data are stored. --- src/IO/ReadInputFileParameters.f90 | 38 ++++++++++++++- src/IO/StoreKinematicData.f90 | 48 +++++++++++++------ src/main/OceanWave3DTakeATimeStep.f90 | 5 +- .../ShowFreeSurfaceEvolution2D.m | 2 +- 4 files changed, 73 insertions(+), 20 deletions(-) diff --git a/src/IO/ReadInputFileParameters.f90 b/src/IO/ReadInputFileParameters.f90 index 5cd488c..25ebf64 100644 --- a/src/IO/ReadInputFileParameters.f90 +++ b/src/IO/ReadInputFileParameters.f90 @@ -288,7 +288,7 @@ SUBROUTINE ReadInputFileParameters READ (FILEIP(1),*) StoreDataONOFF, formattype IF(formattype==20)THEN BACKSPACE(FILEIP(1)) - READ (FILEIP(1),*) StoreDataONOFF, iKinematics, formattype, nOutFiles + READ (FILEIP(1),*) StoreDataONOFF, formattype, iKinematics, nOutFiles Allocate (Output(nOutFiles)) IF (nOutFiles>10)THEN print *, 'Max. 10 kinematics output files at this point.' @@ -309,7 +309,7 @@ SUBROUTINE ReadInputFileParameters stop end if if(Output(i)%ybeg<1 .or. Output(i)%yend>FineGrid%Ny .or. Output(i)%ybeg > Output(i)%yend ) THEN - Print *, 'ReadInputFileParameters: Kinematics y coorindate range is invalid' + Print *, 'ReadInputFileParameters: Kinematics y coordinate range is invalid' stop end if if(Output(i)%tbeg<1 .or. Output(i)%tend>Nsteps .or. Output(i)%tbeg > Output(i)%tend) THEN @@ -320,6 +320,40 @@ SUBROUTINE ReadInputFileParameters OPEN (UNIT=FILEOP(i+1),FILE='Kinematics'//fnt(i)//'.bin', & STATUS='UNKNOWN',FORM='UNFORMATTED',ACCESS='SEQUENTIAL') END Do + ELSEIF(formattype==21)THEN + ! APEK: Configuration designed for extracting data on a per time step basis + BACKSPACE(FILEIP(1)) + READ (FILEIP(1),*) StoreDataONOFF, formattype, iKinematics, nOutFiles + Allocate (Output(nOutFiles)) + IF (nOutFiles>10)THEN + print *, 'Max. 10 kinematics output files at this point.' + stop + END IF + print *, 'Kinematics output requested in ',nOutFiles,' file(s) named "Kinematics_**_XXXXX.bin".' + print *, ' ' + write(fileop(1),*) 'Kinematics output requested in ',nOutFiles,' file(s) named "Kinematics_**_XXXXX.bin".' + write(fileop(1),*) ' ' + Do i=1,nOutFiles + READ (FILEIP(1),*,err=110)Output(i)%xbeg,Output(i)%xend,Output(i)%xstride,Output(i)%ybeg, & + Output(i)%yend,Output(i)%ystride,Output(i)%tbeg,Output(i)%tend,Output(i)%tstride + ! ! Check that the requested output ranges exist on this grid. ! + if ( Output(i)%xbeg<1 .or. Output(i)%xend>FineGrid%Nx .or. Output(i)%xbeg > Output(i)%xend) THEN + Print *, 'ReadInputFileParameters: Kinematics x coordinate range is invalid' + stop + end if + if(Output(i)%ybeg<1 .or. Output(i)%yend>FineGrid%Ny .or. Output(i)%ybeg > Output(i)%yend ) THEN + Print *, 'ReadInputFileParameters: Kinematics y coordinate range is invalid' + stop + end if + if(Output(i)%tbeg<1 .or. Output(i)%tend>Nsteps .or. Output(i)%tbeg > Output(i)%tend) THEN + Print *, 'ReadInputFileParameters: Kinematics time range is invalid' + stop + end if +!! No need to open file in advanced, since we will be outputting data at requested times in files Kinematics_**_0000X.bin, where X is the time step no, cf. StoreKinematicsSpecific.f90 +!! Open the required output files +! OPEN (UNIT=FILEOP(i+1),FILE='Kinematics'//fnt(i)//'.bin', & +! STATUS='UNKNOWN',FORM='UNFORMATTED',ACCESS='SEQUENTIAL') + END Do ELSE iKinematics=0 END IF diff --git a/src/IO/StoreKinematicData.f90 b/src/IO/StoreKinematicData.f90 index 3de6489..ebd54a1 100644 --- a/src/IO/StoreKinematicData.f90 +++ b/src/IO/StoreKinematicData.f90 @@ -17,10 +17,12 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) INTEGER :: Nx, Ny, Nz, io, it ! Local variables INTEGER :: i, j, k, i0, i1, is, j0, j1, js +INTEGER :: FOUT REAL(KIND=long), DIMENSION(:,:), POINTER :: x, y, h, hx, hy, eta, etax, etay REAL(KIND=long), DIMENSION(:), POINTER :: z ! Automatic work space REAL(KIND=long) :: U(Nz,Nx,Ny), V(Nz,Nx,Ny), W(Nz,Nx,Ny), d(Nx,Ny) +CHARACTER(len=30) :: form ! ! Assign the local pointers ! @@ -31,18 +33,30 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) ! i0=Output(io)%xbeg+GhostGridX; i1=Output(io)%xend+GhostGridX; is=Output(io)%xstride; j0=Output(io)%ybeg+GhostGridY; j1=Output(io)%yend+GhostGridY; js=Output(io)%ystride; +! Determine fileoutput +print*,'formattype=',formattype +IF(formattype==21)THEN + WRITE(unit=filename, FMT="(A,I2.2,A,I5.5,A)") "Kinematics_",io,"_",it,".bin" + form="unformatted" ! binary format chosen + FOUT = 22 ! file handle + OPEN (unit=FOUT, file=filename,form=form) + WRITE(*,FMT='(A,A)') ' File output = ',filename +ELSE + FOUT = FILEOP(io+1) + WRITE(*,FMT='(A,I2)') ' File output = ',FOUT +END IF IF(it==0)THEN ! ! Save the grid data on the first call ! - write (fileop(io+1)) Output(io)%xbeg,Output(io)%xend,Output(io)%xstride, & + write (FOUT) Output(io)%xbeg,Output(io)%xend,Output(io)%xstride, & Output(io)%ybeg, Output(io)%yend, Output(io)%ystride, & Output(io)%tbeg,Output(io)%tend,Output(io)%tstride, dt, & FineGrid%Nz+GhostGridZ ! - WRITE (fileop(io+1)) ( ( x(i,j), y(i,j), h(i,j), hx(i,j), hy(i,j), & + WRITE (FOUT) ( ( x(i,j), y(i,j), h(i,j), hx(i,j), hy(i,j), & i=i0,i1,is ), j=j0,j1,js ) - WRITE (fileop(io+1)) (z(i),i=1,Nz) + WRITE (FOUT) (z(i),i=1,Nz) IF(curvilinearOnOff/=0)THEN Print *, 'StoreKinematicData: Saving horizontal fluid velocities is not yet implemented for curvilinear grids.' END IF @@ -54,16 +68,16 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) ! ! First the free surface elevation and gradient at all points in this slice ! - WRITE (fileop(io+1)) ( ( eta(i,j), i=i0,i1,is ), j=j0,j1,js) + WRITE (FOUT) ( ( eta(i,j), i=i0,i1,is ), j=j0,j1,js) IF(Nx > 1) THEN - WRITE (fileop(io+1)) ( ( etax(i,j), i=i0,i1,is ), j=j0,j1,js) + WRITE (FOUT) ( ( etax(i,j), i=i0,i1,is ), j=j0,j1,js) ELSE - WRITE (fileop(io+1)) ( ( zero, i=i0,i1,is ), j=j0,j1,js) + WRITE (FOUT) ( ( zero, i=i0,i1,is ), j=j0,j1,js) END IF IF(Ny > 1) THEN - WRITE (fileop(io+1)) ( ( etay(i,j), i=i0,i1,is ), j=j0,j1,js) + WRITE (FOUT) ( ( etay(i,j), i=i0,i1,is ), j=j0,j1,js) ELSE - WRITE (fileop(io+1)) ( ( zero, i=i0,i1,is ), j=j0,j1,js) + WRITE (FOUT) ( ( zero, i=i0,i1,is ), j=j0,j1,js) END IF ! ! The fluid thickness d=h+eta @@ -77,7 +91,7 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) ! Then the velocity potential at all points in this horizontal slice and at all sigma ! (vertical) locations. ! - WRITE (fileop(io+1)) ( ( ( phi(k,i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) + WRITE (FOUT) ( ( ( phi(k,i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) ! ! Then the velocities at all points in this horizontal slice and at all sigma ! (vertical) locations. @@ -109,7 +123,7 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) U=zero END IF ! - WRITE (fileop(io+1)) ( ( ( U(k,i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) + WRITE (FOUT) ( ( ( U(k,i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) ! IF (FineGrid%Ny>1) THEN ! dphi/dy @@ -127,22 +141,26 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) ELSE V=zero END IF - WRITE (fileop(io+1)) ( ( ( V(k,i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) + WRITE (FOUT) ( ( ( V(k,i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) ! ! Write the vertical velocity ! - WRITE (fileop(io+1)) ( ( ( W(k,i,j)/d(i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) + WRITE (FOUT) ( ( ( W(k,i,j)/d(i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) ! ! Compute du/dsigma and write du/dz to disc ! CALL DiffZArbitrary(U,W,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,gamma) - WRITE (fileop(io+1)) ( ( ( W(k,i,j)/d(i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) + WRITE (FOUT) ( ( ( W(k,i,j)/d(i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) ! CALL DiffZArbitrary(V,W,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,gamma) - WRITE (fileop(io+1)) ( ( ( W(k,i,j)/d(i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) + WRITE (FOUT) ( ( ( W(k,i,j)/d(i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) END IF -End IF +END IF +IF(formattype==21)THEN + ! close file access + CLOSE(FOUT) +END IF END SUBROUTINE StoreKinematicData diff --git a/src/main/OceanWave3DTakeATimeStep.f90 b/src/main/OceanWave3DTakeATimeStep.f90 index d9c0af4..1c00f49 100644 --- a/src/main/OceanWave3DTakeATimeStep.f90 +++ b/src/main/OceanWave3DTakeATimeStep.f90 @@ -186,13 +186,14 @@ SUBROUTINE OceanWave3DTakeATimeStep ! If kinematics output is requested save it ! IF(iKinematics/=0)THEN - Do i=1,nOutFiles + WRITE(*,FMT='(A)') 'Writing kinematics output...' + DO i=1,nOutFiles IF (tstep+1 >= Output(i)%tbeg .and. tstep+1 <= Output(i)%tend .and. & mod(tstep,Output(i)%tstride)==0 )THEN CALL StoreKinematicData(FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & FineGrid%Nz+GhostGridZ,i,tstep+1) END IF - END Do + END DO END IF ! ! diff --git a/utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m b/utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m index ba36237..2c871c8 100644 --- a/utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m +++ b/utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m @@ -3,7 +3,7 @@ % from the fortran OceanWave3D model. The script can be easily tailored % to output data from other data files as well. % -% By Allan P. Engsig-Karup, apek@imm.dtu.dk. +% By Allan P. Engsig-Karup, apek@dtu.dk. % Show free surface evolution clear all; close all From 0b717c15641ee70e9e42b96d3fc75adb0b4acc38 Mon Sep 17 00:00:00 2001 From: Allan Peter Engsig-Karup Date: Sun, 13 Nov 2016 11:06:56 +0100 Subject: [PATCH 35/56] New options added for kinematics data output for easy sampling at specific location via interpolations --- src/IO/ReadInputFileParameters.f90 | 34 ++++- src/IO/StoreKinematicData.f90 | 197 ++++++++++++++++++++++++++--- src/variabledefs/datatypes.f90 | 4 + 3 files changed, 214 insertions(+), 21 deletions(-) diff --git a/src/IO/ReadInputFileParameters.f90 b/src/IO/ReadInputFileParameters.f90 index 25ebf64..4ff3ccd 100644 --- a/src/IO/ReadInputFileParameters.f90 +++ b/src/IO/ReadInputFileParameters.f90 @@ -353,7 +353,39 @@ SUBROUTINE ReadInputFileParameters !! Open the required output files ! OPEN (UNIT=FILEOP(i+1),FILE='Kinematics'//fnt(i)//'.bin', & ! STATUS='UNKNOWN',FORM='UNFORMATTED',ACCESS='SEQUENTIAL') - END Do + END DO + ELSEIF(formattype==22)THEN + ! APEK: Configuration designed for extracting data on a per time step basis + BACKSPACE(FILEIP(1)) + READ (FILEIP(1),*) StoreDataONOFF, formattype, iKinematics, nOutFiles + Allocate (Output(nOutFiles)) + IF (nOutFiles>10)THEN + print *, 'Max. 10 kinematics output files at this point.' + stop + END IF + print *, 'Kinematics output requested in ',nOutFiles,' file(s) named "Kinematics_**_XXXXX.bin".' + print *, ' ' + write(fileop(1),*) 'Kinematics output requested in ',nOutFiles,' file(s) named "Kinematics_**_XXXXX.bin".' + write(fileop(1),*) ' ' + Do i=1,nOutFiles + READ (FILEIP(1),*,err=110)Output(i)%x,Output(i)%y,Output(i)%tbeg,Output(i)%tend,Output(i)%tstride + print *, ' Location ',i,' : (x,y) = (',Output(i)%x,',',Output(i)%y,')' + ! + ! Check that the requested output ranges exist on this grid. + ! + if ( Output(i)%xLx ) THEN + Print *, 'ReadInputFileParameters: Kinematics x coordinate range is invalid.' + stop + end if + if ( Output(i)%yLy ) THEN + Print *, 'ReadInputFileParameters: Kinematics y coordinate range is invalid.' + stop + end if + if(Output(i)%tbeg<1 .or. Output(i)%tend>Nsteps .or. Output(i)%tbeg > Output(i)%tend) THEN + Print *, 'ReadInputFileParameters: Kinematics time range is invalid' + stop + end if + END DO ELSE iKinematics=0 END IF diff --git a/src/IO/StoreKinematicData.f90 b/src/IO/StoreKinematicData.f90 index ebd54a1..e97f6aa 100644 --- a/src/IO/StoreKinematicData.f90 +++ b/src/IO/StoreKinematicData.f90 @@ -22,7 +22,10 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) REAL(KIND=long), DIMENSION(:), POINTER :: z ! Automatic work space REAL(KIND=long) :: U(Nz,Nx,Ny), V(Nz,Nx,Ny), W(Nz,Nx,Ny), d(Nx,Ny) +REAL(KIND=long) :: tmpx(Nx), tmpy(Ny) CHARACTER(len=30) :: form +REAL(KIND=long) :: hint, etaint, dint +REAL(KIND=long) :: Uint(Nz), Vint(Nz) ! ! Assign the local pointers ! @@ -31,8 +34,48 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) ! ! Shift the horizontal grid point position to account for the ghost points. ! -i0=Output(io)%xbeg+GhostGridX; i1=Output(io)%xend+GhostGridX; is=Output(io)%xstride; -j0=Output(io)%ybeg+GhostGridY; j1=Output(io)%yend+GhostGridY; js=Output(io)%ystride; +IF(FORMATTYPE/=22)THEN + i0=Output(io)%xbeg+GhostGridX; i1=Output(io)%xend+GhostGridX; is=Output(io)%xstride; + j0=Output(io)%ybeg+GhostGridY; j1=Output(io)%yend+GhostGridY; js=Output(io)%ystride; +ELSE + PRINT*,'Storing kinematics data...' + ! determine indices for stencils + tmpx = x(1:Nx,1)-Output(io)%x + ! search + DO i=1,Nx + IF(tmpx(i)>0)THEN + Output(io)%idx(1) = i-1-alpha + Output(io)%idx(2) = i+alpha + EXIT ! Out of DO loop + END IF + END DO + IF(Ny>1)THEN + tmpy = y(1,1:Ny)-Output(io)%y + DO j=1,Ny + IF(tmpy(j)>0)THEN + Output(io)%idx(3) = j-1-beta + Output(io)%idx(4) = j+beta + EXIT ! Out of DO loop + END IF + END DO + ELSE + Output(io)%idx(3) = 1 + Output(io)%idx(4) = 1 + ENDIF + ! determine stencil weights for the interpolation + ALLOCATE( Output(io)%stencilx(2*alpha+1) ) + CALL TaylorFDStencils1DArbitrary(alpha,alpha,0,Output(io)%stencilx,Output(io)%x) + IF(Ny>1)THEN + ALLOCATE( Output(io)%stencily(2*beta+1) ) + ! weights in stream_func_wave_finite.f + CALL TaylorFDStencils1DArbitrary(beta,beta,0,Output(io)%stencily,Output(io)%y) + ENDIF + ! formattype=22 + i0=Output(io)%idx(1) ! xmin + i1=Output(io)%idx(2) ! xmax + j0=Output(io)%idx(3) ! ymin + j1=Output(io)%idx(4) ! ymax +END IF ! Determine fileoutput print*,'formattype=',formattype IF(formattype==21)THEN @@ -41,6 +84,12 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) FOUT = 22 ! file handle OPEN (unit=FOUT, file=filename,form=form) WRITE(*,FMT='(A,A)') ' File output = ',filename +ELSE IF(formattype==22)THEN + WRITE(unit=filename, FMT="(A,I2.2,A,I5.5,A)") "Kinematics_",io,"_",it,".bin" + form="unformatted" ! binary format chosen + FOUT = 22 ! file handle + OPEN (unit=FOUT, file=filename,form=form) + WRITE(*,FMT='(A,A)') ' File output = ',filename ELSE FOUT = FILEOP(io+1) WRITE(*,FMT='(A,I2)') ' File output = ',FOUT @@ -49,20 +98,130 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) ! ! Save the grid data on the first call ! - write (FOUT) Output(io)%xbeg,Output(io)%xend,Output(io)%xstride, & - Output(io)%ybeg, Output(io)%yend, Output(io)%ystride, & - Output(io)%tbeg,Output(io)%tend,Output(io)%tstride, dt, & - FineGrid%Nz+GhostGridZ - ! - WRITE (FOUT) ( ( x(i,j), y(i,j), h(i,j), hx(i,j), hy(i,j), & - i=i0,i1,is ), j=j0,j1,js ) - WRITE (FOUT) (z(i),i=1,Nz) - IF(curvilinearOnOff/=0)THEN - Print *, 'StoreKinematicData: Saving horizontal fluid velocities is not yet implemented for curvilinear grids.' + IF(formattype==22)THEN + WRITE (FOUT) Output(io)%x, Output(io)%y, Output(io)%tbeg,Output(io)%tend, & + Output(io)%tstride, dt, FineGrid%Nz+GhostGridZ + IF(FineGrid%Nx>1 .AND. FineGrid%Ny>1) THEN + PRINT*,'3D setup for formattype=22 in StoreKinematicData.f90 not setup yet.' + STOP +! hint = DOT_PRODUCT( Output(io)%stencilx,h(i0:i1,j0:j1) ) +! etaint = DOT_PRODUCT( Output(io)%stencilx,eta(i0:i1,j0:j1) ) +! dint = hint + etaint + WRITE (FOUT) hint, etaint, dint + ELSE IF(FineGrid%Nx>1) THEN + hint = DOT_PRODUCT( Output(io)%stencilx,h(i0:i1,1) ) + etaint = DOT_PRODUCT( Output(io)%stencilx,eta(i0:i1,1) ) + dint = hint + etaint + WRITE (FOUT) hint, etaint, dint + ELSE IF(FineGrid%Ny>1) THEN + PRINT*,'2D setup in y-direction for formattype=22 in StoreKinematicData.f90 not setup yet.' + STOP + END IF +! WRITE (FOUT) ( Output(io)%x, Output(io%y, hint ) +! WRITE (FOUT) ( ( x(i,j), y(i,j), h(i,j), hx(i,j), hy(i,j), & +! i=i0,i1,is ), j=j0,j1,js ) + ! are these z values the sigma values?? + WRITE (FOUT) (z(i),i=1,Nz) + IF(curvilinearOnOff/=0)THEN + Print *, 'StoreKinematicData: Saving horizontal fluid velocities is not yet implemented for curvilinear grids.' + END IF + ELSE + ! formattype != 22 + write (FOUT) Output(io)%xbeg,Output(io)%xend,Output(io)%xstride, & + Output(io)%ybeg, Output(io)%yend, Output(io)%ystride, & + Output(io)%tbeg,Output(io)%tend,Output(io)%tstride, dt, & + FineGrid%Nz+GhostGridZ + ! + WRITE (FOUT) ( ( x(i,j), y(i,j), h(i,j), hx(i,j), hy(i,j), & + i=i0,i1,is ), j=j0,j1,js ) + WRITE (FOUT) (z(i),i=1,Nz) + IF(curvilinearOnOff/=0)THEN + Print *, 'StoreKinematicData: Saving horizontal fluid velocities is not yet implemented for curvilinear grids.' + END IF END IF ELSE ! IF(curvilinearOnOff == 0)THEN + IF(formattype==22)THEN + ! + ! Dump free surface elevation, still water depth and kinematics to the output file. + ! Minimal no of variables and storage is output. + ! +! WRITE (FOUT) ( ( eta(i,j), i=i0,i1,is ), j=j0,j1,js) +! WRITE (FOUT) ( ( h(i,j), i=i0,i1,is ), j=j0,j1,js) + ! + ! The fluid thickness d=h+eta + ! + DO j=1,Ny + DO i=1,Nx + d(i,j)=h(i,j)+eta(i,j); + END DO + END DO + CALL DiffZArbitrary(phi,W,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & + FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,gamma) + ! Compute dphi/dsigma + ! + CALL DiffZArbitrary(phi,W,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & + FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,gamma) + IF (FineGrid%Nx>1) THEN + ! + ! Compute dphi/dx + ! + CALL DiffXEven(phi,U,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & + FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,alpha) + IF ( LinearOnOff /= 0) THEN + ! + ! Add in the chain rule contribution to get the velocity + ! + Do j=1,Ny + Do i=1,Nx + Do k=1,Nz + U(k,i,j) = U(k,i,j) + ((1-z(k))/d(i,j)*hx(i,j)-z(k)/d(i,j)*etax(i,j))*W(k,i,j) + END Do + END Do + END Do + END IF + ELSE + U=zero + END IF + ! Interpolate to point in question + DO k = 1, FineGrid%Nz+GhostGridZ + DO j=j0,j1 + Uint(k) = DOT_PRODUCT( Output(io)%stencilx,U(k,i0:i1,j) ) + END DO + END DO + WRITE (FOUT) Uint +! WRITE (FOUT) ( ( ( U(k,i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) + ! + IF (FineGrid%Ny>1) THEN + ! dphi/dy + CALL DiffYEven(phi,V,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & + FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,beta) + IF ( LinearOnOff /= 0) THEN + Do j=1,Ny + Do i=1,Nx + Do k=1,Nz + V(k,i,j) = V(k,i,j)+((1-z(k))/d(i,j)*hy(i,j)-z(k)/d(i,j)*etay(i,j))*W(k,i,j) + END Do + END Do + END Do + END IF +! WRITE (FOUT) ( ( ( V(k,i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) + ! Interpolate to point in question + DO k = 1, FineGrid%Nz+GhostGridZ + DO j=j0,j1 + Vint(k) = DOT_PRODUCT( Output(io)%stencilx,V(k,i0:i1,j) ) + END DO + END DO + WRITE (FOUT) Vint + ELSE + V=zero + END IF + ! + ! Write the vertical velocity + ! + ! WRITE (FOUT) ( ( ( W(k,i,j)/d(i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) + ELSE ! ! Dump this solution slice to the output file ! @@ -82,11 +241,11 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) ! ! The fluid thickness d=h+eta ! - Do j=1,Ny - Do i=1,Nx + DO j=1,Ny + DO i=1,Nx d(i,j)=h(i,j)+eta(i,j); - end Do - End Do + END DO + END DO ! ! Then the velocity potential at all points in this horizontal slice and at all sigma ! (vertical) locations. @@ -156,11 +315,9 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) CALL DiffZArbitrary(V,W,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,gamma) WRITE (FOUT) ( ( ( W(k,i,j)/d(i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) + END IF END IF END IF -IF(formattype==21)THEN - ! close file access - CLOSE(FOUT) -END IF +CLOSE(FOUT) END SUBROUTINE StoreKinematicData diff --git a/src/variabledefs/datatypes.f90 b/src/variabledefs/datatypes.f90 index 21b5084..c563246 100644 --- a/src/variabledefs/datatypes.f90 +++ b/src/variabledefs/datatypes.f90 @@ -171,6 +171,10 @@ MODULE DataTypes TYPE OutputParam INTEGER :: xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride + REAL(KIND=long) :: x,y ! coordinates for extracting kinematics in a water column + INTEGER :: idx(4) ! index list start stop [xmin xmax ymin ymax] + REAL(KIND=long), DIMENSION(:), POINTER :: stencilx ! coefficient values of interpolation stencil + REAL(KIND=long), DIMENSION(:), POINTER :: stencily ! coefficient values of interpolation stencil END TYPE OutputParam From beb5b980db46b3b037504e428c84f7766b922580 Mon Sep 17 00:00:00 2001 From: Allan Peter Engsig-Karup Date: Mon, 14 Nov 2016 23:49:28 +0100 Subject: [PATCH 36/56] update --- src/IO/StoreKinematicData.f90 | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/src/IO/StoreKinematicData.f90 b/src/IO/StoreKinematicData.f90 index e97f6aa..8f376db 100644 --- a/src/IO/StoreKinematicData.f90 +++ b/src/IO/StoreKinematicData.f90 @@ -19,7 +19,7 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) INTEGER :: i, j, k, i0, i1, is, j0, j1, js INTEGER :: FOUT REAL(KIND=long), DIMENSION(:,:), POINTER :: x, y, h, hx, hy, eta, etax, etay -REAL(KIND=long), DIMENSION(:), POINTER :: z +REAL(KIND=long), DIMENSION(:), POINTER :: z, tmpxval ! Automatic work space REAL(KIND=long) :: U(Nz,Nx,Ny), V(Nz,Nx,Ny), W(Nz,Nx,Ny), d(Nx,Ny) REAL(KIND=long) :: tmpx(Nx), tmpy(Ny) @@ -44,7 +44,7 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) ! search DO i=1,Nx IF(tmpx(i)>0)THEN - Output(io)%idx(1) = i-1-alpha + Output(io)%idx(1) = i-alpha Output(io)%idx(2) = i+alpha EXIT ! Out of DO loop END IF @@ -53,7 +53,7 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) tmpy = y(1,1:Ny)-Output(io)%y DO j=1,Ny IF(tmpy(j)>0)THEN - Output(io)%idx(3) = j-1-beta + Output(io)%idx(3) = j-beta Output(io)%idx(4) = j+beta EXIT ! Out of DO loop END IF @@ -64,7 +64,12 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) ENDIF ! determine stencil weights for the interpolation ALLOCATE( Output(io)%stencilx(2*alpha+1) ) - CALL TaylorFDStencils1DArbitrary(alpha,alpha,0,Output(io)%stencilx,Output(io)%x) + ALLOCATE( tmpxval(2*alpha+1) ) + tmpxval = x(Output(io)%idx(1) : Output(io)%idx(2),1) + tmpxval(alpha+1) = Output(io)%x + CALL TaylorFDStencils1DArbitrary(alpha,alpha,0,Output(io)%stencilx,tmpxval) +! Output(io)%stencilx = zero + print*,'stencilx = ',Output(io)%stencilx IF(Ny>1)THEN ALLOCATE( Output(io)%stencily(2*beta+1) ) ! weights in stream_func_wave_finite.f @@ -75,6 +80,10 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) i1=Output(io)%idx(2) ! xmax j0=Output(io)%idx(3) ! ymin j1=Output(io)%idx(4) ! ymax + print*,'i0=',i0 + print*,'i1=',i1 + print*,'j0=',j0 + print*,'j1=',j1 END IF ! Determine fileoutput print*,'formattype=',formattype @@ -99,6 +108,7 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) ! Save the grid data on the first call ! IF(formattype==22)THEN +! WRITE (FOUT) Nx,Ny,Nz WRITE (FOUT) Output(io)%x, Output(io)%y, Output(io)%tbeg,Output(io)%tend, & Output(io)%tstride, dt, FineGrid%Nz+GhostGridZ IF(FineGrid%Nx>1 .AND. FineGrid%Ny>1) THEN @@ -110,7 +120,9 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) WRITE (FOUT) hint, etaint, dint ELSE IF(FineGrid%Nx>1) THEN hint = DOT_PRODUCT( Output(io)%stencilx,h(i0:i1,1) ) + print*,'hint = ',hint etaint = DOT_PRODUCT( Output(io)%stencilx,eta(i0:i1,1) ) + print*,'eta = ',etaint dint = hint + etaint WRITE (FOUT) hint, etaint, dint ELSE IF(FineGrid%Ny>1) THEN @@ -122,6 +134,7 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) ! i=i0,i1,is ), j=j0,j1,js ) ! are these z values the sigma values?? WRITE (FOUT) (z(i),i=1,Nz) + print*,'z=',z IF(curvilinearOnOff/=0)THEN Print *, 'StoreKinematicData: Saving horizontal fluid velocities is not yet implemented for curvilinear grids.' END IF @@ -129,8 +142,7 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) ! formattype != 22 write (FOUT) Output(io)%xbeg,Output(io)%xend,Output(io)%xstride, & Output(io)%ybeg, Output(io)%yend, Output(io)%ystride, & - Output(io)%tbeg,Output(io)%tend,Output(io)%tstride, dt, & - FineGrid%Nz+GhostGridZ + Output(io)%tbeg,Output(io)%tend,Output(io)%tstride, dt, Nz ! WRITE (FOUT) ( ( x(i,j), y(i,j), h(i,j), hx(i,j), hy(i,j), & i=i0,i1,is ), j=j0,j1,js ) From 39054fdce9b64e567dc1e7285600cd482a39e812 Mon Sep 17 00:00:00 2001 From: Allan Peter Engsig-Karup Date: Tue, 15 Nov 2016 22:15:04 +0100 Subject: [PATCH 37/56] update related to kinematics storage --- src/IO/StoreKinematicData.f90 | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/src/IO/StoreKinematicData.f90 b/src/IO/StoreKinematicData.f90 index 8f376db..92c0282 100644 --- a/src/IO/StoreKinematicData.f90 +++ b/src/IO/StoreKinematicData.f90 @@ -69,7 +69,7 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) tmpxval(alpha+1) = Output(io)%x CALL TaylorFDStencils1DArbitrary(alpha,alpha,0,Output(io)%stencilx,tmpxval) ! Output(io)%stencilx = zero - print*,'stencilx = ',Output(io)%stencilx +! print*,'stencilx = ',Output(io)%stencilx IF(Ny>1)THEN ALLOCATE( Output(io)%stencily(2*beta+1) ) ! weights in stream_func_wave_finite.f @@ -80,13 +80,13 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) i1=Output(io)%idx(2) ! xmax j0=Output(io)%idx(3) ! ymin j1=Output(io)%idx(4) ! ymax - print*,'i0=',i0 - print*,'i1=',i1 - print*,'j0=',j0 - print*,'j1=',j1 +! print*,'i0=',i0 +! print*,'i1=',i1 +! print*,'j0=',j0 +! print*,'j1=',j1 END IF + ! Determine fileoutput -print*,'formattype=',formattype IF(formattype==21)THEN WRITE(unit=filename, FMT="(A,I2.2,A,I5.5,A)") "Kinematics_",io,"_",it,".bin" form="unformatted" ! binary format chosen @@ -103,6 +103,7 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) FOUT = FILEOP(io+1) WRITE(*,FMT='(A,I2)') ' File output = ',FOUT END IF + IF(it==0)THEN ! ! Save the grid data on the first call @@ -124,6 +125,7 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) etaint = DOT_PRODUCT( Output(io)%stencilx,eta(i0:i1,1) ) print*,'eta = ',etaint dint = hint + etaint + print*,'dint = ',dint WRITE (FOUT) hint, etaint, dint ELSE IF(FineGrid%Ny>1) THEN PRINT*,'2D setup in y-direction for formattype=22 in StoreKinematicData.f90 not setup yet.' @@ -151,7 +153,9 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) Print *, 'StoreKinematicData: Saving horizontal fluid velocities is not yet implemented for curvilinear grids.' END IF END IF + ELSE + ! IF(curvilinearOnOff == 0)THEN IF(formattype==22)THEN @@ -169,11 +173,11 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) d(i,j)=h(i,j)+eta(i,j); END DO END DO - CALL DiffZArbitrary(phi,W,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & - FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,gamma) +! CALL DiffZArbitrary(phi,W,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & +! FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,gamma) ! Compute dphi/dsigma ! - CALL DiffZArbitrary(phi,W,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & + CALL DiffZArbitrary(phi,W,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,gamma) IF (FineGrid%Nx>1) THEN ! @@ -203,6 +207,8 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) END DO END DO WRITE (FOUT) Uint +! print*,'Uint:stencilx=',Output(io)%stencilx +! print*,'Uint = ',Uint ! WRITE (FOUT) ( ( ( U(k,i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) ! IF (FineGrid%Ny>1) THEN From 8bed223638b6e24ec1e6940957fd3d22ff488415 Mon Sep 17 00:00:00 2001 From: Allan Peter Engsig-Karup Date: Sat, 21 Jan 2017 08:42:39 +0100 Subject: [PATCH 38/56] updated bathymetry handling --- src/main/OceanWave3DT0Setup.f90 | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/main/OceanWave3DT0Setup.f90 b/src/main/OceanWave3DT0Setup.f90 index 5c2ddf4..d41d5fe 100644 --- a/src/main/OceanWave3DT0Setup.f90 +++ b/src/main/OceanWave3DT0Setup.f90 @@ -361,10 +361,10 @@ SUBROUTINE OceanWave3DT0Setup ! Open(FILEOP(16),file='bathymetry.chk',status='unknown') Write(FILEOP(16),81) -81 FORMAT('% Bottom bathymetry: ((h(i,j),h_x,h_xx,h_y,h_yy),j=1,Ny),i=1,Nx)') - Do i=1,FineGrid%Nx+2*GhostGridX - Do j=1,FineGrid%Ny+2*GhostGridY - write(Fileop(16),82)FineGrid%h(i,j),FineGrid%hx(i,j),FineGrid%hxx(i,j), & +81 FORMAT('% Bottom bathymetry: ((x(i,j), y(i,j), h(i,j),h_x,h_xx,h_y,h_yy),j=1,Ny),i=1,Nx)') + Do j=1,FineGrid%Ny+2*GhostGridY + Do i=1,FineGrid%Nx+2*GhostGridX + write(Fileop(16),82) FineGrid%x(i,j),FineGrid%y(i,j),FineGrid%h(i,j),FineGrid%hx(i,j),FineGrid%hxx(i,j), & FineGrid%hy(i,j),FineGrid%hyy(i,j) end Do end Do @@ -610,6 +610,8 @@ SUBROUTINE OceanWave3DT0Setup '*** Original software library written in 2007 by ***',/,& '*** ***',/,& '*** Allan P. Engsig-Karup ***',/,& + '*** ***',/,& + '*** under supervision of ***',/,& '*** Harry B. Bingham ***',/,& '*** ***',/,& '*** At Department of Mechanical Engineering ***',/,& From cb8e5bdc73084901b4a4ed1fafc39341a037fbaf Mon Sep 17 00:00:00 2001 From: hbbi Date: Tue, 9 Jan 2018 15:18:52 +0100 Subject: [PATCH 39/56] Fixed some bugs in the multigrid preconditioning so it now seems to work properly again. -hbb --- src/functions/PreparePreconditioner.f90 | 5 +++-- src/main/OceanWave3DT0Setup.f90 | 2 +- src/multigrid/MGPreProcess.f90 | 17 +++++++++++------ src/utilities/build_coeff_3D_Cos.f90 | 2 +- .../visualization/ShowFreeSurfaceEvolution2D.m | 6 ++---- 5 files changed, 18 insertions(+), 14 deletions(-) diff --git a/src/functions/PreparePreconditioner.f90 b/src/functions/PreparePreconditioner.f90 index 0bcbf19..f739fe7 100644 --- a/src/functions/PreparePreconditioner.f90 +++ b/src/functions/PreparePreconditioner.f90 @@ -33,7 +33,7 @@ SUBROUTINE PreparePreconditioner(PreconditioningMatrix,FineGrid,GhostGridX, Ghos ! Determine linear sigma-coefficients ALLOCATE(FineGrid%dsigmanew(Nzg,Nxg,Nyg,5),STAT=iERR) CALL CheckError(iERR,11) - FineGrid%dsigmanew = zero + FineGrid%dsigmanew = zero CALL ALLOCATE_Wavefield_Type(tmp_wavefield, Nx, Ny, Nz, GhostGridX, GhostGridy, GhostGridZ, 0) @@ -87,7 +87,8 @@ SUBROUTINE PreparePreconditioner(PreconditioningMatrix,FineGrid,GhostGridX, Ghos ! print*,'Nzg=',Nzg ! read* CALL PrepareFullOperatorStencils(FineGrid%DiffStencils,FullRankStencils,alpha,beta,gamma,Nxg,Nyg,Nzg) ! table for generating linear system - CALL ALLOCATE_Wavefield_Type(tmp_wavefield, Nx, Ny, Nz, GhostGridX, GhostGridy, GhostGridZ, 0) + CALL ALLOCATE_Wavefield_Type(tmp_wavefield, Nx, Ny, Nz, GhostGridX, GhostGridy, GhostGridZ, 0) + CALL DetermineTransformationConstantsArray(Nxg,Nyg,Nzg,FineGrid,FineGrid%dsigmanew,tmp_wavefield) ! GD: Determine the cross derivatives coefficients CALL ConstructTableCrossDerivatives(FineGrid, FineGrid%DiffStencils, gamma, GhostGridX, GhostGridY, GhostGridZ, 1) diff --git a/src/main/OceanWave3DT0Setup.f90 b/src/main/OceanWave3DT0Setup.f90 index c94c926..f68bb7d 100644 --- a/src/main/OceanWave3DT0Setup.f90 +++ b/src/main/OceanWave3DT0Setup.f90 @@ -391,7 +391,7 @@ SUBROUTINE OceanWave3DT0Setup ! Prepare for Multigrid CALL MGPreProcess ( FineGrid, GhostGridX, GhostGridY, GhostGridZ, MGCoarseningStrategy, alphaprecond, betaprecond, & - gammaprecond, Precond, MGmaxgrids, CurvilinearONOFF) + gammaprecond, Precond, MGmaxgrids, CurvilinearONOFF,fileop(1)) ENDIF ! ! DETERMINE HIGH-ORDER FINITE DIFFERENCE STENCILS diff --git a/src/multigrid/MGPreProcess.f90 b/src/multigrid/MGPreProcess.f90 index aa0fe27..94a5476 100644 --- a/src/multigrid/MGPreProcess.f90 +++ b/src/multigrid/MGPreProcess.f90 @@ -4,13 +4,13 @@ !! Allan P. Engsig-Karup, 23 Aug 2007. !< SUBROUTINE MGPreProcess (FineGrid,GhostGridX,GhostGridY,GhostGridZ,MGCoarseningStrategy,alpha,beta,gamma,Precond,& - MGmaxgrids,CurvilinearONOFF) + MGmaxgrids,CurvilinearONOFF,fileop) USE Precision USE Constants USE MGLevels USE GlobalVariables, ONLY: filename, formattype IMPLICIT NONE -INTEGER :: k, GhostGridX, GhostGridY, GhostGridZ, alpha, beta, gamma, Precond, MGmaxgrids +INTEGER :: k, GhostGridX, GhostGridY, GhostGridZ, alpha, beta, gamma, Precond, MGmaxgrids, fileop INTEGER :: xcoarsen, ycoarsen, zcoarsen, MGCoarseningStrategy, CurvilinearONOFF INTEGER :: NFx, NFy, NFz, XFAC, YFAC, ZFAC TYPE (Level_def) :: FineGrid @@ -306,7 +306,12 @@ SUBROUTINE MGPreProcess (FineGrid,GhostGridX,GhostGridY,GhostGridZ,MGCoarseningS END IF ! FIXME: h is not defined on ghost points since it is not needed there arrLevels(k)%h(1+GhostGridX:arrLevels(k)%Nx+GhostGridX,1+GhostGridY:arrLevels(k)%Ny+GhostGridY) = & - arrLevels(k+1)%h(1+GhostGridX:arrLevels(k+1)%Nx+GhostGridX:XFAC,1+GhostGridY:arrLevels(k+1)%Ny+GhostGridY:YFAC) + arrLevels(k+1)%h(1+GhostGridX:arrLevels(k+1)%Nx+GhostGridX:XFAC,1+GhostGridY:arrLevels(k+1)%Ny+GhostGridY:YFAC) + !hbb I'm setting the depth on the ghost points here, as they are in fact used below + arrLevels(k)%h(1,:) = arrLevels(k)%h(1+GhostGridX,:) + arrLevels(k)%h(Nxg,:) = arrLevels(k)%h(Nxg-GhostGridX,:) + arrLevels(k)%h(:,1) = arrLevels(k)%h(:,1+GhostGridY) + arrLevels(k)%h(:,Nyg) = arrLevels(k)%h(:,Nyg-GhostGridY) WRITE (*,100) ' (Nx,Ny,Nz) = (',arrLevels(k)%Nx,',',arrLevels(k)%Ny,',',arrLevels(k)%Nz,')' @@ -323,7 +328,7 @@ SUBROUTINE MGPreProcess (FineGrid,GhostGridX,GhostGridY,GhostGridZ,MGCoarseningS !print*,'gamma=',gamma !print*,'CurvilinearONOFF=',CurvilinearONOFF CALL PreparePreconditioner(arrLevels(k)%PreconditioningMatrix,arrLevels(k),GhostGridX, GhostGridY, GhostGridZ, & - alpha, beta, gamma, 1, CurvilinearONOFF) + alpha, beta, gamma, 1, CurvilinearONOFF,fileop) IF (0==1) THEN WRITE(filename,'(a,i4.4,a4)') 'P',k,'.bin' @@ -336,9 +341,9 @@ SUBROUTINE MGPreProcess (FineGrid,GhostGridX,GhostGridY,GhostGridZ,MGCoarseningS IF (k==1) THEN ! Prepare for using direct LU-FACTORIZATION at coarsest gridlevel - ! we can only factor on one level with current setup due to global variables in LUFactor subroutine + ! we can only factor on one level with current setup due to global variables in LUFactor subroutine CALL FactorPreconditioner(arrLevels(k)%PreconditioningMatrix, & - (arrLevels(k)%Nx+2*GhostGridX)*(arrLevels(k)%Ny+2*GhostGridY)*(arrLevels(k)%Nz+GhostGridZ)) + (arrLevels(k)%Nx+2*GhostGridX)*(arrLevels(k)%Ny+2*GhostGridY)*(arrLevels(k)%Nz+GhostGridZ),fileop) ! END IF ! print*,'LU factorization of coarsest ceoffciient matrix in multigrid preconditinoing strategy done...' ! print*,'k=',k diff --git a/src/utilities/build_coeff_3D_Cos.f90 b/src/utilities/build_coeff_3D_Cos.f90 index 2ec2078..782c209 100644 --- a/src/utilities/build_coeff_3D_Cos.f90 +++ b/src/utilities/build_coeff_3D_Cos.f90 @@ -21,7 +21,7 @@ SUBROUTINE build_coeff_3D_Cos (ETA, beta, N, Hs, Tp, DELT, SEED, seed2, beta0, s COMPLEX(kind=long) :: phase EXTERNAL gasdev, ran1_b, jonswap_spectrum ! -! Open the file to write the spectral coeeficients out to +! Open the file to write the spectral coeficients out to ! open(unit=78,file='spectrum',status='unknown') write(78,79) diff --git a/utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m b/utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m index d061553..4a9df3e 100644 --- a/utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m +++ b/utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m @@ -21,8 +21,8 @@ %************************************************************************ % *** Set these values to correspond to the run at hand.*** initialstep = 0; -Nsteps = 20; %915; -jump = 2; +Nsteps = 1280; %915; +jump = 40; dt = .0245 g = 9.81; plotmethod = 2; % 1-> 2D, 2->3D @@ -142,8 +142,6 @@ mesh(X,Y,abs(E-P)*fac) end drawnow - %hold on - E' pause(0.3) % pause end From cb1013d1e86be840e44ec25e854f6172944661ab Mon Sep 17 00:00:00 2001 From: hbbi Date: Wed, 10 Jan 2018 12:12:25 +0100 Subject: [PATCH 40/56] No real changes. I just added a line to the screen but it seems to have fixed a strange behaviour in StoreKinematics.f90 -hbb --- common.mk | 4 ++-- src/main/OceanWave3DT0Setup.f90 | 1 + src/main/OceanWave3DTakeATimeStep.f90 | 2 +- utils/matlab/IO/ReadKinematics.m | 2 +- utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m | 8 ++++---- 5 files changed, 9 insertions(+), 8 deletions(-) diff --git a/common.mk b/common.mk index 51397aa..8a48da0 100644 --- a/common.mk +++ b/common.mk @@ -18,12 +18,12 @@ BUILDDIR = $(PWD)/build # flag, or by creating a block for a specific $USER. # Choose the Fortran compiler on this system # E.g. pathf90, f90, gfortran, gf90, ifort -FC = gfortran +#FC = gfortran #FC = gfortran44 #FC = gfortran-4.4 #FC = gf90 -USER = apek +USER = hbb # First the blocks based on compiler name: diff --git a/src/main/OceanWave3DT0Setup.f90 b/src/main/OceanWave3DT0Setup.f90 index c868e9a..4df57ab 100644 --- a/src/main/OceanWave3DT0Setup.f90 +++ b/src/main/OceanWave3DT0Setup.f90 @@ -544,6 +544,7 @@ SUBROUTINE OceanWave3DT0Setup ! Open and initialize the kinematics output file(s) if called for ! If(iKinematics/=0)THEN + Print *, 'Initial t=0 data to kinematics file...' Do i=1,nOutFiles CALL StoreKinematicData(FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & FineGrid%Nz+GhostGridZ,i,0) diff --git a/src/main/OceanWave3DTakeATimeStep.f90 b/src/main/OceanWave3DTakeATimeStep.f90 index 1c00f49..ee53cd8 100644 --- a/src/main/OceanWave3DTakeATimeStep.f90 +++ b/src/main/OceanWave3DTakeATimeStep.f90 @@ -186,10 +186,10 @@ SUBROUTINE OceanWave3DTakeATimeStep ! If kinematics output is requested save it ! IF(iKinematics/=0)THEN - WRITE(*,FMT='(A)') 'Writing kinematics output...' DO i=1,nOutFiles IF (tstep+1 >= Output(i)%tbeg .and. tstep+1 <= Output(i)%tend .and. & mod(tstep,Output(i)%tstride)==0 )THEN + WRITE(*,FMT='(A)') 'Writing kinematics output...' CALL StoreKinematicData(FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & FineGrid%Nz+GhostGridZ,i,tstep+1) END IF diff --git a/utils/matlab/IO/ReadKinematics.m b/utils/matlab/IO/ReadKinematics.m index 869497c..05e7a77 100644 --- a/utils/matlab/IO/ReadKinematics.m +++ b/utils/matlab/IO/ReadKinematics.m @@ -62,7 +62,7 @@ % % A scratch vector for reading the data % -tmp=zeros(nx*ny*max(nz,5)); +tmp=zeros(nx*ny*max(nz,5),1); % % The x-y grid, the depth and bottom gradients for this slice of data % diff --git a/utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m b/utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m index 69ef071..172a7a8 100644 --- a/utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m +++ b/utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m @@ -21,12 +21,12 @@ %************************************************************************ % *** Set these values to correspond to the run at hand.*** initialstep = 0; -Nsteps = 1280; %915; -jump = 40; +Nsteps = 400; %915; +jump = 20; dt = .0245 g = 9.81; -plotmethod = 2; % 1-> 2D, 2->3D -Amax=1.;%10*50*0.125; % To set the scale of the z-axis plot +plotmethod = 1; % 1-> 2D, 2->3D +Amax=.1;%10*50*0.125; % To set the scale of the z-axis plot IOmethod = 1; %0:binary ; 1:classical unformatted ; 2:unformatted ftn95 fac = 1; %1e-1; % From 5ace11e70a677a57df860301e7f3246260aa207b Mon Sep 17 00:00:00 2001 From: hbbi Date: Wed, 10 Jan 2018 14:50:54 +0100 Subject: [PATCH 41/56] Got the old kinematics data working again. File was being closed. -hbb --- src/IO/StoreKinematicData.f90 | 13 +++-- src/main/OceanWave3DT0Setup.f90 | 4 +- src/main/OceanWave3DTakeATimeStep.f90 | 3 +- utils/matlab/IO/ReadKinematics.m | 68 +++++++++++++++------------ 4 files changed, 52 insertions(+), 36 deletions(-) diff --git a/src/IO/StoreKinematicData.f90 b/src/IO/StoreKinematicData.f90 index 92c0282..71391c7 100644 --- a/src/IO/StoreKinematicData.f90 +++ b/src/IO/StoreKinematicData.f90 @@ -86,6 +86,7 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) ! print*,'j1=',j1 END IF + ! Determine fileoutput IF(formattype==21)THEN WRITE(unit=filename, FMT="(A,I2.2,A,I5.5,A)") "Kinematics_",io,"_",it,".bin" @@ -101,7 +102,7 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) WRITE(*,FMT='(A,A)') ' File output = ',filename ELSE FOUT = FILEOP(io+1) - WRITE(*,FMT='(A,I2)') ' File output = ',FOUT + WRITE(*,FMT='(A,I2)') ' File output unit number = ',FOUT END IF IF(it==0)THEN @@ -141,7 +142,7 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) Print *, 'StoreKinematicData: Saving horizontal fluid velocities is not yet implemented for curvilinear grids.' END IF ELSE - ! formattype != 22 + ! formattype /= 22 write (FOUT) Output(io)%xbeg,Output(io)%xend,Output(io)%xstride, & Output(io)%ybeg, Output(io)%yend, Output(io)%ystride, & Output(io)%tbeg,Output(io)%tend,Output(io)%tstride, dt, Nz @@ -239,7 +240,7 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) ! Write the vertical velocity ! ! WRITE (FOUT) ( ( ( W(k,i,j)/d(i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) - ELSE + ELSE ! ! Dump this solution slice to the output file ! @@ -333,9 +334,11 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) CALL DiffZArbitrary(V,W,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,gamma) WRITE (FOUT) ( ( ( W(k,i,j)/d(i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) - END IF END IF END IF +END IF -CLOSE(FOUT) +if (formattype == 22 .or. formattype == 21) then + CLOSE(FOUT) +end if END SUBROUTINE StoreKinematicData diff --git a/src/main/OceanWave3DT0Setup.f90 b/src/main/OceanWave3DT0Setup.f90 index 4df57ab..6dfbf3a 100644 --- a/src/main/OceanWave3DT0Setup.f90 +++ b/src/main/OceanWave3DT0Setup.f90 @@ -541,7 +541,9 @@ SUBROUTINE OceanWave3DT0Setup CALL StoreDataAscii(FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY,FineGrid%h,FineGrid%hx,FineGrid,899) ENDIF ! - ! Open and initialize the kinematics output file(s) if called for + ! Initialize the kinematics output file(s) if called for. For formattype=20, the files + ! have been opened in ReadInputFileParameters.f90, otherwise new files are opened for + ! each time-step. ! If(iKinematics/=0)THEN Print *, 'Initial t=0 data to kinematics file...' diff --git a/src/main/OceanWave3DTakeATimeStep.f90 b/src/main/OceanWave3DTakeATimeStep.f90 index ee53cd8..eed61b4 100644 --- a/src/main/OceanWave3DTakeATimeStep.f90 +++ b/src/main/OceanWave3DTakeATimeStep.f90 @@ -189,7 +189,8 @@ SUBROUTINE OceanWave3DTakeATimeStep DO i=1,nOutFiles IF (tstep+1 >= Output(i)%tbeg .and. tstep+1 <= Output(i)%tend .and. & mod(tstep,Output(i)%tstride)==0 )THEN - WRITE(*,FMT='(A)') 'Writing kinematics output...' + + WRITE(*,FMT='(A)') 'Writing kinematics output' CALL StoreKinematicData(FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & FineGrid%Nz+GhostGridZ,i,tstep+1) END IF diff --git a/utils/matlab/IO/ReadKinematics.m b/utils/matlab/IO/ReadKinematics.m index 05e7a77..1599b86 100644 --- a/utils/matlab/IO/ReadKinematics.m +++ b/utils/matlab/IO/ReadKinematics.m @@ -13,6 +13,11 @@ error('Set "Nbits"=32 or 64 and "idn"= kinematics file number to read'); end % +% Turn this flag on to compute time-derivatives and pressures. +% +% Pressure='yes'; +Pressure='no'; +% % Turn this flag on to plot up the data. What is plotted is controlled % after the reading block. % @@ -130,37 +135,42 @@ vz(it,:)=tmp; junk = fread(fid1,2,int_nbit); end -display(['Read ',num2str(it),' data points out of ',num2str(nt)]) -% t=[0:nt-1]*dt*tstride; % The time axis -% -% Compute the pressure and acceleration from the standard output -% kinematics. -% -% Build the 4th-order even grid time differentiation matrix -% -alpha=2; r=2*alpha+1; c=BuildStencilEven(alpha,1); -Dt=spdiags([ones(nt,1)*c(:,alpha+1)'],[-alpha:alpha],nt,nt); -for j=1:alpha - Dt(j,:)=0; Dt(j,1:r)=c(:,j)'; - Dt(nt-j+1,:)=0; Dt(nt-j+1,nt-r+1:nt)=c(:,r-j+1)'; -end -Dt=Dt/dt; -% -% Compute time-derivatives of eta, phi, and u and eta_tt -% -% ip=input('x point index to work with?'); -for ip=1:nx - etat(:,ip)=Dt*eta(:,ip); etatt(:,ip)=Dt*etat(:,ip); - % - for j=1:nz - phit(:,j,ip)=Dt*phi(:,j,ip)-w(:,j,ip).*sigma(j).*etat(:,ip); - p(:,j,ip)=-(phit(:,j,ip)+1/2*(u(:,j,ip).^2+w(:,j,ip).^2)); - ut(:,j,ip)=Dt*u(:,j,ip)-uz(:,j,ip).*sigma(j).*etat(:,ip); - end +display(['Read ',num2str(it),' data points out of ',num2str(nt)]) +%% +switch Pressure + case 'yes' + % + % Compute the pressure and acceleration from the standard output + % kinematics. This is only done along the first slice in y for 3D + % problems. + % + % Build the 4th-order even grid time differentiation matrix + % + alpha=2; r=2*alpha+1; c=BuildStencilEven(alpha,1); + Dt=spdiags([ones(nt,1)*c(:,alpha+1)'],[-alpha:alpha],nt,nt); + for j=1:alpha + Dt(j,:)=0; Dt(j,1:r)=c(:,j)'; + Dt(nt-j+1,:)=0; Dt(nt-j+1,nt-r+1:nt)=c(:,r-j+1)'; + end + Dt=Dt/dt; + % + % Compute time-derivatives of eta, phi, and u and eta_tt + % + % ip=input('x point index to work with?'); + etat=zeros(nt,nx); etatt=etat; phit=zeros(nt,nx,nz); p=phit; ut=p; + for ip=1:nx + etat(:,ip)=Dt*eta(:,ip); etatt(:,ip)=Dt*etat(:,ip); + % + for j=1:nz + phit(:,j,ip)=Dt*phi(:,j,ip)-w(:,j,ip).*sigma(j).*etat(:,ip); + p(:,j,ip)=-(phit(:,j,ip)+1/2*(u(:,j,ip).^2+w(:,j,ip).^2)); + ut(:,j,ip)=Dt*u(:,j,ip)-uz(:,j,ip).*sigma(j).*etat(:,ip); + end + end end -% -% Skip the following if no graphics are wanted. +%% +% A block for plotting the results % switch Plots case 'yes' From 53b0e25d81d50ef1def25742fa9a36bbc5a6794f Mon Sep 17 00:00:00 2001 From: hbbi Date: Wed, 10 Jan 2018 17:18:35 +0100 Subject: [PATCH 42/56] Cosmetic changes -hbb --- common.mk | 2 +- src/IO/ReadInputFileParameters.f90 | 2 +- utils/matlab/IO/ReadKinematics.m | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/common.mk b/common.mk index 8a48da0..61e27fc 100644 --- a/common.mk +++ b/common.mk @@ -75,7 +75,7 @@ endif # Then the blocks for specific users (this clobbers the above info.) ifeq ($(USER),hbb) - # hbb home machine + # hbb machine, gfortran FC=gfortran LIBDIRS = -L $(HOME)/lib/ LINLIB = -lharwell -lskit -llapack -lblas diff --git a/src/IO/ReadInputFileParameters.f90 b/src/IO/ReadInputFileParameters.f90 index 4ff3ccd..e117d0e 100644 --- a/src/IO/ReadInputFileParameters.f90 +++ b/src/IO/ReadInputFileParameters.f90 @@ -349,7 +349,7 @@ SUBROUTINE ReadInputFileParameters Print *, 'ReadInputFileParameters: Kinematics time range is invalid' stop end if -!! No need to open file in advanced, since we will be outputting data at requested times in files Kinematics_**_0000X.bin, where X is the time step no, cf. StoreKinematicsSpecific.f90 +!! No need to open file in advance, since we will be outputting data at requested times in files Kinematics_**_0000X.bin, where X is the time step no, cf. StoreKinematicsSpecific.f90 !! Open the required output files ! OPEN (UNIT=FILEOP(i+1),FILE='Kinematics'//fnt(i)//'.bin', & ! STATUS='UNKNOWN',FORM='UNFORMATTED',ACCESS='SEQUENTIAL') diff --git a/utils/matlab/IO/ReadKinematics.m b/utils/matlab/IO/ReadKinematics.m index 1599b86..e334956 100644 --- a/utils/matlab/IO/ReadKinematics.m +++ b/utils/matlab/IO/ReadKinematics.m @@ -46,7 +46,7 @@ % % Read the data from the file % These read statements must correspond exactly to what appears in the -% Fortran subroutine IO_routines.f90:StoreKinematicData +% Fortran subroutine: /src/IO/StoreKinematicData.f90 % junk = fread(fid1,1,int_nbit); % Read as a junk parameter xbeg = fread(fid1,1,'int'); % @@ -93,6 +93,7 @@ phi=zeros(nt,nz,nx,ny); w=zeros(nt,nz,nx,ny); u=zeros(nt,nz,nx,ny); uz=zeros(nt,nz,nx,ny); v=zeros(nt,nz,nx,ny); vz=zeros(nt,nz,nx,ny); +t=[0:nt-1]*dt*tstride; % The time axis % % Read in the solution variables eta, gradeta, phi, u, v, w, dudz, dvdz. % @@ -135,7 +136,6 @@ vz(it,:)=tmp; junk = fread(fid1,2,int_nbit); end -t=[0:nt-1]*dt*tstride; % The time axis display(['Read ',num2str(it),' data points out of ',num2str(nt)]) %% switch Pressure From f10c8553029ac9d795e20d88f8dff27e8cd24abf Mon Sep 17 00:00:00 2001 From: hbbi Date: Tue, 19 Mar 2019 10:34:54 +0800 Subject: [PATCH 43/56] Added uniform flux boundary currents as option IncWaveType=4. -hbb --- .../OceanWave3D.inp.RandomWave2D_FromFile | 27 + .../OceanWave3D.inp.RandomWave3D_Cos | 25 + .../OceanWave3D.inp.SFWaveAndFollowingCurrent | 20 + .../OceanWave3D.inp.SFWaveAndOpposingCurrent | 20 + .../inputfiles/SFWaveAndFollowingCurrent.init | 643 ++++++++++++++++++ .../inputfiles/SFWaveAndOpposingCurrent.init | 643 ++++++++++++++++++ src/IO/ReadInputFileParameters.f90 | 48 +- src/IO/StoreKinematicData.f90 | 8 +- src/initialization/GammaFunctions.f90 | 2 + .../PreprocessPDampingZones.f90 | 5 +- src/initialization/setupWavePaddle.f90 | 4 +- src/main/OceanWave3D.f90 | 2 +- src/main/OceanWave3DT0Setup.f90 | 7 + src/main/OceanWave3DTakeATimeStep.f90 | 23 +- src/pressure/funPressureTerm.f90 | 8 +- src/timeintegration/Runge_Kutta_4.f90 | 42 +- src/utilities/stream_func_wave_finite.f | 17 +- src/variabledefs/datatypes.f90 | 10 +- src/variabledefs/globalvariables.f90 | 4 + utils/matlab/IO/ReadKinematics.m | 11 +- 20 files changed, 1532 insertions(+), 37 deletions(-) create mode 100644 examples/inputfiles/OceanWave3D.inp.RandomWave2D_FromFile create mode 100644 examples/inputfiles/OceanWave3D.inp.RandomWave3D_Cos create mode 100644 examples/inputfiles/OceanWave3D.inp.SFWaveAndFollowingCurrent create mode 100644 examples/inputfiles/OceanWave3D.inp.SFWaveAndOpposingCurrent create mode 100644 examples/inputfiles/SFWaveAndFollowingCurrent.init create mode 100644 examples/inputfiles/SFWaveAndOpposingCurrent.init diff --git a/examples/inputfiles/OceanWave3D.inp.RandomWave2D_FromFile b/examples/inputfiles/OceanWave3D.inp.RandomWave2D_FromFile new file mode 100644 index 0000000..69608fd --- /dev/null +++ b/examples/inputfiles/OceanWave3D.inp.RandomWave2D_FromFile @@ -0,0 +1,27 @@ +An externally specified random wave in 2D shoaling on a 1:100 beach +0 2 1. <- Initial condition (0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 3=Whalin bar, ... see Initialization.f90:SetupInitialConditions); IncWaveType (0=none, 1=stream function, 2=linear irregular waves, 3=piston wave maker); w_t_acceleration_factor for local smoothing. +5500 1. -1. 2751 1 10 0 0 1 1 1 1 FromFile_bottom <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ (0=even,1=clustering) GhostGrid (0=off,1=on) +2 2 2 1 1 1 <- alpha, beta, gamma, alphaprecond, betaprecond, gammaprecond +110001 .2 1 0. 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, c based on the incident wave), RK4-ExtrapolationON/OFF +9.82 <- gravitational acceleration constant +1 0 23 1e-8 1e-6 1 V 1 1 2 <- GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), absolute tol, maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +4. 100. 100. 9. 0 0. 1 4 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter (This line is not used unless IncWaveType==1) +-2000 20 1 7 <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +1520 1520 1 1 1 1 1 110001 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride +1710 1710 1 1 1 1 1 110001 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride +1828 1828 1 1 1 1 1 110001 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride +1910 1910 1 1 1 1 1 110001 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride +2039 2039 1 1 1 1 1 110001 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride +2133 2133 1 1 1 1 1 110001 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride +2240 2240 1 1 1 1 1 110001 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride +1 0 <- 0/1=linear/nonlinear computations, Applied surface pressure: 0=none, 1=2D Gaussian. +1 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order +1 18. 2 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(= +/- 9,10; sign gives direction) param XorY WavegenONOFF XorYgen degrees(=IC rotation) +0. 100. 0. 1. 9 3.5 X 1 X 0. +100. 200. 0. 1. 10 3.5 X 1 X 0. +1 1 <- Damping pressure zone: PDampingOnOff=0 (off), number of zones. For each zone include the line: x1, x2, y1, y2 (bounds of the zone), gamma0 (dynamic FSBC), Gamma0 (kinematic FSBC), i_damperType (0=friction on the velocity, 1=friction on the potential). +5300. 5500. 0. 0. 1. 1. 0 +0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) +0 <- Curvilinear on/off +2 6.8 2.8 50. 150. -1 -34 100. 0. FromFile_IncidentWave <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, (inc_wave_file or gamma_JONSWAP, if ispec=2 or 3), (inc_wave_file,beta,S,gamma_JONSWAP if ispec>=30). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file, 3=>JONSWAP with input gamma; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. + diff --git a/examples/inputfiles/OceanWave3D.inp.RandomWave3D_Cos b/examples/inputfiles/OceanWave3D.inp.RandomWave3D_Cos new file mode 100644 index 0000000..b0c0734 --- /dev/null +++ b/examples/inputfiles/OceanWave3D.inp.RandomWave3D_Cos @@ -0,0 +1,25 @@ +A flat bottom, linear 3D JONSWAP spectrum with cos^2s directional spreading around beta=0., s=80. +0 2 <- Initial condition (0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 3=Whalin bar, ... see Initialization.f90:SetupInitialConditions); IncWaveType (0=none, 1=stream function, 2=linear regular or irregular waves) +15. 15. 0.5 200 200 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) +3 3 3 1 1 1 <- alpha, beta, gamma +20000 0.02 1 0.5 0 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-ExtrapolationON/OFF +9.82 <- gravitational acceleration constant +1 1 0 23 1e-8 1e-6 1 V 1 1 2 <- solver (0:DC, 1:GMRES), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +2 80.00 38.99296 5 0 0 1 6 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter +-100 20 1 2 <- StoreDataOnOff <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +30 60 2 80 120 2 1800 20000 1 +61 90 2 80 120 2 1800 20000 1 +1 0 <- 0/1=linear/nonlinear computations, Dynamic pressure term on/off +1 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order +1 5. 4 X 0.0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) +0 1.5 1 14 9 3.5 X 1 X 0.0 +0 15 0 1 -9 3.5 Y 0 Y 0.0 +0 15 14 15 9 3.5 Y 0 Y 0.0 +12 15 0 15 9 3.5 X 0 X 0.0 +0 0 <- Damping pressure zone: PDampingOnOff=0 (off), number of zones. For each zone include the line: x1, x2, y1, y2 (bounds of the zone), gamma0 (dynamic FSBC), Gamma0 (kinematic FSBC), i_damperType (0=friction on the velocity, 1=friction on the potential). + +0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) +0 <- Curvilinear on/off +34 1. 0.04 0.5 20. -1 -34 0 7.5 run06.el 0 80.0 3.3 <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, (inc_wave_file or gamma_JONSWAP, if ispec=2 or 3), (inc_wave_file,beta,S,gamma_JONSWAP if ispec>=30). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file, 3=>JONSWAP with input gamma; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. + + diff --git a/examples/inputfiles/OceanWave3D.inp.SFWaveAndFollowingCurrent b/examples/inputfiles/OceanWave3D.inp.SFWaveAndFollowingCurrent new file mode 100644 index 0000000..a67ae94 --- /dev/null +++ b/examples/inputfiles/OceanWave3D.inp.SFWaveAndFollowingCurrent @@ -0,0 +1,20 @@ +A stream function wave on constant following current, pressure damping for absorption, a mild SG filter for stability + local smoothing to prevent breaking. Initial conditions from file. +-1 4 1. <- Initial condition (0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 3=Whalin bar, ... see Initialization.f90:SetupInitialConditions); IncWaveType (0=none, 1=stream function, 2=linear regular or irregular waves, 3=flux-type at Western boundary, 4=SF + current), acceleration factor for the local smoothing filter "breaking model". +10. 1. 0.5 641 1 10 0 0 1 1 1 1 bottom_file <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ (0=even,1=clustering) GhostGrid (0=off,1=on) +3 3 3 1 1 1 <- alpha, beta, gamma, alphaprecond, betaprecond, gammaprecond +5121 .2 1 0.5 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, c based on the incident wave), RK4-ExtrapolationON/OFF +9.81 <- gravitational acceleration constant +1 1 0 23 1e-8 1e-6 1 V 1 1 2 <- GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), absolute tol, maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +.08 0.5 1. .7206986 0 0.1 0 6 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter (This line is not used unless IncWaveType==1) +-256 20 1 1 <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +1 641 1 1 1 1 1 5121 1 +1 0 <- 0/1=linear/nonlinear computations, Applied surface pressure: 0=none, 1=2D Gaussian. +1 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order, wieghts for the three Berland off-centered schemes near the boundaries +1 0. 2 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(= +/- 9,10; sign gives direction) param XorY WavegenONOFF XorYgen degrees(=IC rotation), PhiOnOff (=1: relax phi & eta (1) or =0: just eta). +0. 1. 0. 1. 9 3.5 X 1 X 0. 1 +1. 2. 0. 1. 10 3.5 X 1 X 0. 1 +1 1 <- Damping pressure zone: PDampingOnOff=0 (off), number of zones. For each zone include the line: x1, x2, y1, y2 (bounds of the zone), gamma0 (dynamic FSBC), Gamma0 (kinematic FSBC), i_damperType (0=friction on the velocity, 1=friction on the potential). +9. 10. 0. 0. 1. 1. 0 +0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) +0 <- Curvilinear on/off +0.05 <- Specify a constant flux through the domain for wave-current interaction, when IncWaveType==4 diff --git a/examples/inputfiles/OceanWave3D.inp.SFWaveAndOpposingCurrent b/examples/inputfiles/OceanWave3D.inp.SFWaveAndOpposingCurrent new file mode 100644 index 0000000..4211627 --- /dev/null +++ b/examples/inputfiles/OceanWave3D.inp.SFWaveAndOpposingCurrent @@ -0,0 +1,20 @@ +A stream function wave on constant opposing current, pressure damping for absorption, a mild SG filter for stability + local smoothing to prevent breaking. Initial conditions from file. +-1 4 1. <- Initial condition (0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 3=Whalin bar, ... see Initialization.f90:SetupInitialConditions); IncWaveType (0=none, 1=stream function, 2=linear regular or irregular waves, 3=flux-type at Western boundary, 4=SF + current), acceleration factor for the local smoothing filter "breaking model". +10. 1. 0.5 641 1 10 0 0 1 1 1 1 bottom_file <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ (0=even,1=clustering) GhostGrid (0=off,1=on) +3 3 3 1 1 1 <- alpha, beta, gamma, alphaprecond, betaprecond, gammaprecond +5121 .2 1 0.5 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, c based on the incident wave), RK4-ExtrapolationON/OFF +9.81 <- gravitational acceleration constant +1 1 0 23 1e-8 1e-6 1 V 1 1 2 <- GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), absolute tol, maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +.08 0.5 1. .7206986 0 -0.1 0 6 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter (This line is not used unless IncWaveType==1) +-256 20 1 1 <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +1 641 1 1 1 1 1 5121 1 +1 0 <- 0/1=linear/nonlinear computations, Applied surface pressure: 0=none, 1=2D Gaussian. +1 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order, wieghts for the three Berland off-centered schemes near the boundaries +1 0. 2 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(= +/- 9,10; sign gives direction) param XorY WavegenONOFF XorYgen degrees(=IC rotation), PhiOnOff (=1: relax phi & eta (1) or =0: just eta). +0. 1. 0. 1. 9 3.5 X 1 X 0. 1 +1. 2. 0. 1. 10 3.5 X 1 X 0. 1 +1 1 <- Damping pressure zone: PDampingOnOff=0 (off), number of zones. For each zone include the line: x1, x2, y1, y2 (bounds of the zone), gamma0 (dynamic FSBC), Gamma0 (kinematic FSBC), i_damperType (0=friction on the velocity, 1=friction on the potential). +9. 10. 0. 0. 1. 1. 0 +0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) +0 <- Curvilinear on/off +-0.05 <- Specify a constant flux through the domain for wave-current interaction, when IncWaveType==4 diff --git a/examples/inputfiles/SFWaveAndFollowingCurrent.init b/examples/inputfiles/SFWaveAndFollowingCurrent.init new file mode 100644 index 0000000..5053db0 --- /dev/null +++ b/examples/inputfiles/SFWaveAndFollowingCurrent.init @@ -0,0 +1,643 @@ +Uniform current initial conditions U=0.1. +1.000000e+01 0.000000e+00 641 1 0.000000e+00 +0.000000e+00 0.000000e+00 +0.000000e+00 1.562500e-03 +0.000000e+00 3.125000e-03 +0.000000e+00 4.687500e-03 +0.000000e+00 6.250000e-03 +0.000000e+00 7.812500e-03 +0.000000e+00 9.375000e-03 +0.000000e+00 1.093750e-02 +0.000000e+00 1.250000e-02 +0.000000e+00 1.406250e-02 +0.000000e+00 1.562500e-02 +0.000000e+00 1.718750e-02 +0.000000e+00 1.875000e-02 +0.000000e+00 2.031250e-02 +0.000000e+00 2.187500e-02 +0.000000e+00 2.343750e-02 +0.000000e+00 2.500000e-02 +0.000000e+00 2.656250e-02 +0.000000e+00 2.812500e-02 +0.000000e+00 2.968750e-02 +0.000000e+00 3.125000e-02 +0.000000e+00 3.281250e-02 +0.000000e+00 3.437500e-02 +0.000000e+00 3.593750e-02 +0.000000e+00 3.750000e-02 +0.000000e+00 3.906250e-02 +0.000000e+00 4.062500e-02 +0.000000e+00 4.218750e-02 +0.000000e+00 4.375000e-02 +0.000000e+00 4.531250e-02 +0.000000e+00 4.687500e-02 +0.000000e+00 4.843750e-02 +0.000000e+00 5.000000e-02 +0.000000e+00 5.156250e-02 +0.000000e+00 5.312500e-02 +0.000000e+00 5.468750e-02 +0.000000e+00 5.625000e-02 +0.000000e+00 5.781250e-02 +0.000000e+00 5.937500e-02 +0.000000e+00 6.093750e-02 +0.000000e+00 6.250000e-02 +0.000000e+00 6.406250e-02 +0.000000e+00 6.562500e-02 +0.000000e+00 6.718750e-02 +0.000000e+00 6.875000e-02 +0.000000e+00 7.031250e-02 +0.000000e+00 7.187500e-02 +0.000000e+00 7.343750e-02 +0.000000e+00 7.500000e-02 +0.000000e+00 7.656250e-02 +0.000000e+00 7.812500e-02 +0.000000e+00 7.968750e-02 +0.000000e+00 8.125000e-02 +0.000000e+00 8.281250e-02 +0.000000e+00 8.437500e-02 +0.000000e+00 8.593750e-02 +0.000000e+00 8.750000e-02 +0.000000e+00 8.906250e-02 +0.000000e+00 9.062500e-02 +0.000000e+00 9.218750e-02 +0.000000e+00 9.375000e-02 +0.000000e+00 9.531250e-02 +0.000000e+00 9.687500e-02 +0.000000e+00 9.843750e-02 +0.000000e+00 1.000000e-01 +0.000000e+00 1.015625e-01 +0.000000e+00 1.031250e-01 +0.000000e+00 1.046875e-01 +0.000000e+00 1.062500e-01 +0.000000e+00 1.078125e-01 +0.000000e+00 1.093750e-01 +0.000000e+00 1.109375e-01 +0.000000e+00 1.125000e-01 +0.000000e+00 1.140625e-01 +0.000000e+00 1.156250e-01 +0.000000e+00 1.171875e-01 +0.000000e+00 1.187500e-01 +0.000000e+00 1.203125e-01 +0.000000e+00 1.218750e-01 +0.000000e+00 1.234375e-01 +0.000000e+00 1.250000e-01 +0.000000e+00 1.265625e-01 +0.000000e+00 1.281250e-01 +0.000000e+00 1.296875e-01 +0.000000e+00 1.312500e-01 +0.000000e+00 1.328125e-01 +0.000000e+00 1.343750e-01 +0.000000e+00 1.359375e-01 +0.000000e+00 1.375000e-01 +0.000000e+00 1.390625e-01 +0.000000e+00 1.406250e-01 +0.000000e+00 1.421875e-01 +0.000000e+00 1.437500e-01 +0.000000e+00 1.453125e-01 +0.000000e+00 1.468750e-01 +0.000000e+00 1.484375e-01 +0.000000e+00 1.500000e-01 +0.000000e+00 1.515625e-01 +0.000000e+00 1.531250e-01 +0.000000e+00 1.546875e-01 +0.000000e+00 1.562500e-01 +0.000000e+00 1.578125e-01 +0.000000e+00 1.593750e-01 +0.000000e+00 1.609375e-01 +0.000000e+00 1.625000e-01 +0.000000e+00 1.640625e-01 +0.000000e+00 1.656250e-01 +0.000000e+00 1.671875e-01 +0.000000e+00 1.687500e-01 +0.000000e+00 1.703125e-01 +0.000000e+00 1.718750e-01 +0.000000e+00 1.734375e-01 +0.000000e+00 1.750000e-01 +0.000000e+00 1.765625e-01 +0.000000e+00 1.781250e-01 +0.000000e+00 1.796875e-01 +0.000000e+00 1.812500e-01 +0.000000e+00 1.828125e-01 +0.000000e+00 1.843750e-01 +0.000000e+00 1.859375e-01 +0.000000e+00 1.875000e-01 +0.000000e+00 1.890625e-01 +0.000000e+00 1.906250e-01 +0.000000e+00 1.921875e-01 +0.000000e+00 1.937500e-01 +0.000000e+00 1.953125e-01 +0.000000e+00 1.968750e-01 +0.000000e+00 1.984375e-01 +0.000000e+00 2.000000e-01 +0.000000e+00 2.015625e-01 +0.000000e+00 2.031250e-01 +0.000000e+00 2.046875e-01 +0.000000e+00 2.062500e-01 +0.000000e+00 2.078125e-01 +0.000000e+00 2.093750e-01 +0.000000e+00 2.109375e-01 +0.000000e+00 2.125000e-01 +0.000000e+00 2.140625e-01 +0.000000e+00 2.156250e-01 +0.000000e+00 2.171875e-01 +0.000000e+00 2.187500e-01 +0.000000e+00 2.203125e-01 +0.000000e+00 2.218750e-01 +0.000000e+00 2.234375e-01 +0.000000e+00 2.250000e-01 +0.000000e+00 2.265625e-01 +0.000000e+00 2.281250e-01 +0.000000e+00 2.296875e-01 +0.000000e+00 2.312500e-01 +0.000000e+00 2.328125e-01 +0.000000e+00 2.343750e-01 +0.000000e+00 2.359375e-01 +0.000000e+00 2.375000e-01 +0.000000e+00 2.390625e-01 +0.000000e+00 2.406250e-01 +0.000000e+00 2.421875e-01 +0.000000e+00 2.437500e-01 +0.000000e+00 2.453125e-01 +0.000000e+00 2.468750e-01 +0.000000e+00 2.484375e-01 +0.000000e+00 2.500000e-01 +0.000000e+00 2.515625e-01 +0.000000e+00 2.531250e-01 +0.000000e+00 2.546875e-01 +0.000000e+00 2.562500e-01 +0.000000e+00 2.578125e-01 +0.000000e+00 2.593750e-01 +0.000000e+00 2.609375e-01 +0.000000e+00 2.625000e-01 +0.000000e+00 2.640625e-01 +0.000000e+00 2.656250e-01 +0.000000e+00 2.671875e-01 +0.000000e+00 2.687500e-01 +0.000000e+00 2.703125e-01 +0.000000e+00 2.718750e-01 +0.000000e+00 2.734375e-01 +0.000000e+00 2.750000e-01 +0.000000e+00 2.765625e-01 +0.000000e+00 2.781250e-01 +0.000000e+00 2.796875e-01 +0.000000e+00 2.812500e-01 +0.000000e+00 2.828125e-01 +0.000000e+00 2.843750e-01 +0.000000e+00 2.859375e-01 +0.000000e+00 2.875000e-01 +0.000000e+00 2.890625e-01 +0.000000e+00 2.906250e-01 +0.000000e+00 2.921875e-01 +0.000000e+00 2.937500e-01 +0.000000e+00 2.953125e-01 +0.000000e+00 2.968750e-01 +0.000000e+00 2.984375e-01 +0.000000e+00 3.000000e-01 +0.000000e+00 3.015625e-01 +0.000000e+00 3.031250e-01 +0.000000e+00 3.046875e-01 +0.000000e+00 3.062500e-01 +0.000000e+00 3.078125e-01 +0.000000e+00 3.093750e-01 +0.000000e+00 3.109375e-01 +0.000000e+00 3.125000e-01 +0.000000e+00 3.140625e-01 +0.000000e+00 3.156250e-01 +0.000000e+00 3.171875e-01 +0.000000e+00 3.187500e-01 +0.000000e+00 3.203125e-01 +0.000000e+00 3.218750e-01 +0.000000e+00 3.234375e-01 +0.000000e+00 3.250000e-01 +0.000000e+00 3.265625e-01 +0.000000e+00 3.281250e-01 +0.000000e+00 3.296875e-01 +0.000000e+00 3.312500e-01 +0.000000e+00 3.328125e-01 +0.000000e+00 3.343750e-01 +0.000000e+00 3.359375e-01 +0.000000e+00 3.375000e-01 +0.000000e+00 3.390625e-01 +0.000000e+00 3.406250e-01 +0.000000e+00 3.421875e-01 +0.000000e+00 3.437500e-01 +0.000000e+00 3.453125e-01 +0.000000e+00 3.468750e-01 +0.000000e+00 3.484375e-01 +0.000000e+00 3.500000e-01 +0.000000e+00 3.515625e-01 +0.000000e+00 3.531250e-01 +0.000000e+00 3.546875e-01 +0.000000e+00 3.562500e-01 +0.000000e+00 3.578125e-01 +0.000000e+00 3.593750e-01 +0.000000e+00 3.609375e-01 +0.000000e+00 3.625000e-01 +0.000000e+00 3.640625e-01 +0.000000e+00 3.656250e-01 +0.000000e+00 3.671875e-01 +0.000000e+00 3.687500e-01 +0.000000e+00 3.703125e-01 +0.000000e+00 3.718750e-01 +0.000000e+00 3.734375e-01 +0.000000e+00 3.750000e-01 +0.000000e+00 3.765625e-01 +0.000000e+00 3.781250e-01 +0.000000e+00 3.796875e-01 +0.000000e+00 3.812500e-01 +0.000000e+00 3.828125e-01 +0.000000e+00 3.843750e-01 +0.000000e+00 3.859375e-01 +0.000000e+00 3.875000e-01 +0.000000e+00 3.890625e-01 +0.000000e+00 3.906250e-01 +0.000000e+00 3.921875e-01 +0.000000e+00 3.937500e-01 +0.000000e+00 3.953125e-01 +0.000000e+00 3.968750e-01 +0.000000e+00 3.984375e-01 +0.000000e+00 4.000000e-01 +0.000000e+00 4.015625e-01 +0.000000e+00 4.031250e-01 +0.000000e+00 4.046875e-01 +0.000000e+00 4.062500e-01 +0.000000e+00 4.078125e-01 +0.000000e+00 4.093750e-01 +0.000000e+00 4.109375e-01 +0.000000e+00 4.125000e-01 +0.000000e+00 4.140625e-01 +0.000000e+00 4.156250e-01 +0.000000e+00 4.171875e-01 +0.000000e+00 4.187500e-01 +0.000000e+00 4.203125e-01 +0.000000e+00 4.218750e-01 +0.000000e+00 4.234375e-01 +0.000000e+00 4.250000e-01 +0.000000e+00 4.265625e-01 +0.000000e+00 4.281250e-01 +0.000000e+00 4.296875e-01 +0.000000e+00 4.312500e-01 +0.000000e+00 4.328125e-01 +0.000000e+00 4.343750e-01 +0.000000e+00 4.359375e-01 +0.000000e+00 4.375000e-01 +0.000000e+00 4.390625e-01 +0.000000e+00 4.406250e-01 +0.000000e+00 4.421875e-01 +0.000000e+00 4.437500e-01 +0.000000e+00 4.453125e-01 +0.000000e+00 4.468750e-01 +0.000000e+00 4.484375e-01 +0.000000e+00 4.500000e-01 +0.000000e+00 4.515625e-01 +0.000000e+00 4.531250e-01 +0.000000e+00 4.546875e-01 +0.000000e+00 4.562500e-01 +0.000000e+00 4.578125e-01 +0.000000e+00 4.593750e-01 +0.000000e+00 4.609375e-01 +0.000000e+00 4.625000e-01 +0.000000e+00 4.640625e-01 +0.000000e+00 4.656250e-01 +0.000000e+00 4.671875e-01 +0.000000e+00 4.687500e-01 +0.000000e+00 4.703125e-01 +0.000000e+00 4.718750e-01 +0.000000e+00 4.734375e-01 +0.000000e+00 4.750000e-01 +0.000000e+00 4.765625e-01 +0.000000e+00 4.781250e-01 +0.000000e+00 4.796875e-01 +0.000000e+00 4.812500e-01 +0.000000e+00 4.828125e-01 +0.000000e+00 4.843750e-01 +0.000000e+00 4.859375e-01 +0.000000e+00 4.875000e-01 +0.000000e+00 4.890625e-01 +0.000000e+00 4.906250e-01 +0.000000e+00 4.921875e-01 +0.000000e+00 4.937500e-01 +0.000000e+00 4.953125e-01 +0.000000e+00 4.968750e-01 +0.000000e+00 4.984375e-01 +0.000000e+00 5.000000e-01 +0.000000e+00 5.015625e-01 +0.000000e+00 5.031250e-01 +0.000000e+00 5.046875e-01 +0.000000e+00 5.062500e-01 +0.000000e+00 5.078125e-01 +0.000000e+00 5.093750e-01 +0.000000e+00 5.109375e-01 +0.000000e+00 5.125000e-01 +0.000000e+00 5.140625e-01 +0.000000e+00 5.156250e-01 +0.000000e+00 5.171875e-01 +0.000000e+00 5.187500e-01 +0.000000e+00 5.203125e-01 +0.000000e+00 5.218750e-01 +0.000000e+00 5.234375e-01 +0.000000e+00 5.250000e-01 +0.000000e+00 5.265625e-01 +0.000000e+00 5.281250e-01 +0.000000e+00 5.296875e-01 +0.000000e+00 5.312500e-01 +0.000000e+00 5.328125e-01 +0.000000e+00 5.343750e-01 +0.000000e+00 5.359375e-01 +0.000000e+00 5.375000e-01 +0.000000e+00 5.390625e-01 +0.000000e+00 5.406250e-01 +0.000000e+00 5.421875e-01 +0.000000e+00 5.437500e-01 +0.000000e+00 5.453125e-01 +0.000000e+00 5.468750e-01 +0.000000e+00 5.484375e-01 +0.000000e+00 5.500000e-01 +0.000000e+00 5.515625e-01 +0.000000e+00 5.531250e-01 +0.000000e+00 5.546875e-01 +0.000000e+00 5.562500e-01 +0.000000e+00 5.578125e-01 +0.000000e+00 5.593750e-01 +0.000000e+00 5.609375e-01 +0.000000e+00 5.625000e-01 +0.000000e+00 5.640625e-01 +0.000000e+00 5.656250e-01 +0.000000e+00 5.671875e-01 +0.000000e+00 5.687500e-01 +0.000000e+00 5.703125e-01 +0.000000e+00 5.718750e-01 +0.000000e+00 5.734375e-01 +0.000000e+00 5.750000e-01 +0.000000e+00 5.765625e-01 +0.000000e+00 5.781250e-01 +0.000000e+00 5.796875e-01 +0.000000e+00 5.812500e-01 +0.000000e+00 5.828125e-01 +0.000000e+00 5.843750e-01 +0.000000e+00 5.859375e-01 +0.000000e+00 5.875000e-01 +0.000000e+00 5.890625e-01 +0.000000e+00 5.906250e-01 +0.000000e+00 5.921875e-01 +0.000000e+00 5.937500e-01 +0.000000e+00 5.953125e-01 +0.000000e+00 5.968750e-01 +0.000000e+00 5.984375e-01 +0.000000e+00 6.000000e-01 +0.000000e+00 6.015625e-01 +0.000000e+00 6.031250e-01 +0.000000e+00 6.046875e-01 +0.000000e+00 6.062500e-01 +0.000000e+00 6.078125e-01 +0.000000e+00 6.093750e-01 +0.000000e+00 6.109375e-01 +0.000000e+00 6.125000e-01 +0.000000e+00 6.140625e-01 +0.000000e+00 6.156250e-01 +0.000000e+00 6.171875e-01 +0.000000e+00 6.187500e-01 +0.000000e+00 6.203125e-01 +0.000000e+00 6.218750e-01 +0.000000e+00 6.234375e-01 +0.000000e+00 6.250000e-01 +0.000000e+00 6.265625e-01 +0.000000e+00 6.281250e-01 +0.000000e+00 6.296875e-01 +0.000000e+00 6.312500e-01 +0.000000e+00 6.328125e-01 +0.000000e+00 6.343750e-01 +0.000000e+00 6.359375e-01 +0.000000e+00 6.375000e-01 +0.000000e+00 6.390625e-01 +0.000000e+00 6.406250e-01 +0.000000e+00 6.421875e-01 +0.000000e+00 6.437500e-01 +0.000000e+00 6.453125e-01 +0.000000e+00 6.468750e-01 +0.000000e+00 6.484375e-01 +0.000000e+00 6.500000e-01 +0.000000e+00 6.515625e-01 +0.000000e+00 6.531250e-01 +0.000000e+00 6.546875e-01 +0.000000e+00 6.562500e-01 +0.000000e+00 6.578125e-01 +0.000000e+00 6.593750e-01 +0.000000e+00 6.609375e-01 +0.000000e+00 6.625000e-01 +0.000000e+00 6.640625e-01 +0.000000e+00 6.656250e-01 +0.000000e+00 6.671875e-01 +0.000000e+00 6.687500e-01 +0.000000e+00 6.703125e-01 +0.000000e+00 6.718750e-01 +0.000000e+00 6.734375e-01 +0.000000e+00 6.750000e-01 +0.000000e+00 6.765625e-01 +0.000000e+00 6.781250e-01 +0.000000e+00 6.796875e-01 +0.000000e+00 6.812500e-01 +0.000000e+00 6.828125e-01 +0.000000e+00 6.843750e-01 +0.000000e+00 6.859375e-01 +0.000000e+00 6.875000e-01 +0.000000e+00 6.890625e-01 +0.000000e+00 6.906250e-01 +0.000000e+00 6.921875e-01 +0.000000e+00 6.937500e-01 +0.000000e+00 6.953125e-01 +0.000000e+00 6.968750e-01 +0.000000e+00 6.984375e-01 +0.000000e+00 7.000000e-01 +0.000000e+00 7.015625e-01 +0.000000e+00 7.031250e-01 +0.000000e+00 7.046875e-01 +0.000000e+00 7.062500e-01 +0.000000e+00 7.078125e-01 +0.000000e+00 7.093750e-01 +0.000000e+00 7.109375e-01 +0.000000e+00 7.125000e-01 +0.000000e+00 7.140625e-01 +0.000000e+00 7.156250e-01 +0.000000e+00 7.171875e-01 +0.000000e+00 7.187500e-01 +0.000000e+00 7.203125e-01 +0.000000e+00 7.218750e-01 +0.000000e+00 7.234375e-01 +0.000000e+00 7.250000e-01 +0.000000e+00 7.265625e-01 +0.000000e+00 7.281250e-01 +0.000000e+00 7.296875e-01 +0.000000e+00 7.312500e-01 +0.000000e+00 7.328125e-01 +0.000000e+00 7.343750e-01 +0.000000e+00 7.359375e-01 +0.000000e+00 7.375000e-01 +0.000000e+00 7.390625e-01 +0.000000e+00 7.406250e-01 +0.000000e+00 7.421875e-01 +0.000000e+00 7.437500e-01 +0.000000e+00 7.453125e-01 +0.000000e+00 7.468750e-01 +0.000000e+00 7.484375e-01 +0.000000e+00 7.500000e-01 +0.000000e+00 7.515625e-01 +0.000000e+00 7.531250e-01 +0.000000e+00 7.546875e-01 +0.000000e+00 7.562500e-01 +0.000000e+00 7.578125e-01 +0.000000e+00 7.593750e-01 +0.000000e+00 7.609375e-01 +0.000000e+00 7.625000e-01 +0.000000e+00 7.640625e-01 +0.000000e+00 7.656250e-01 +0.000000e+00 7.671875e-01 +0.000000e+00 7.687500e-01 +0.000000e+00 7.703125e-01 +0.000000e+00 7.718750e-01 +0.000000e+00 7.734375e-01 +0.000000e+00 7.750000e-01 +0.000000e+00 7.765625e-01 +0.000000e+00 7.781250e-01 +0.000000e+00 7.796875e-01 +0.000000e+00 7.812500e-01 +0.000000e+00 7.828125e-01 +0.000000e+00 7.843750e-01 +0.000000e+00 7.859375e-01 +0.000000e+00 7.875000e-01 +0.000000e+00 7.890625e-01 +0.000000e+00 7.906250e-01 +0.000000e+00 7.921875e-01 +0.000000e+00 7.937500e-01 +0.000000e+00 7.953125e-01 +0.000000e+00 7.968750e-01 +0.000000e+00 7.984375e-01 +0.000000e+00 8.000000e-01 +0.000000e+00 8.015625e-01 +0.000000e+00 8.031250e-01 +0.000000e+00 8.046875e-01 +0.000000e+00 8.062500e-01 +0.000000e+00 8.078125e-01 +0.000000e+00 8.093750e-01 +0.000000e+00 8.109375e-01 +0.000000e+00 8.125000e-01 +0.000000e+00 8.140625e-01 +0.000000e+00 8.156250e-01 +0.000000e+00 8.171875e-01 +0.000000e+00 8.187500e-01 +0.000000e+00 8.203125e-01 +0.000000e+00 8.218750e-01 +0.000000e+00 8.234375e-01 +0.000000e+00 8.250000e-01 +0.000000e+00 8.265625e-01 +0.000000e+00 8.281250e-01 +0.000000e+00 8.296875e-01 +0.000000e+00 8.312500e-01 +0.000000e+00 8.328125e-01 +0.000000e+00 8.343750e-01 +0.000000e+00 8.359375e-01 +0.000000e+00 8.375000e-01 +0.000000e+00 8.390625e-01 +0.000000e+00 8.406250e-01 +0.000000e+00 8.421875e-01 +0.000000e+00 8.437500e-01 +0.000000e+00 8.453125e-01 +0.000000e+00 8.468750e-01 +0.000000e+00 8.484375e-01 +0.000000e+00 8.500000e-01 +0.000000e+00 8.515625e-01 +0.000000e+00 8.531250e-01 +0.000000e+00 8.546875e-01 +0.000000e+00 8.562500e-01 +0.000000e+00 8.578125e-01 +0.000000e+00 8.593750e-01 +0.000000e+00 8.609375e-01 +0.000000e+00 8.625000e-01 +0.000000e+00 8.640625e-01 +0.000000e+00 8.656250e-01 +0.000000e+00 8.671875e-01 +0.000000e+00 8.687500e-01 +0.000000e+00 8.703125e-01 +0.000000e+00 8.718750e-01 +0.000000e+00 8.734375e-01 +0.000000e+00 8.750000e-01 +0.000000e+00 8.765625e-01 +0.000000e+00 8.781250e-01 +0.000000e+00 8.796875e-01 +0.000000e+00 8.812500e-01 +0.000000e+00 8.828125e-01 +0.000000e+00 8.843750e-01 +0.000000e+00 8.859375e-01 +0.000000e+00 8.875000e-01 +0.000000e+00 8.890625e-01 +0.000000e+00 8.906250e-01 +0.000000e+00 8.921875e-01 +0.000000e+00 8.937500e-01 +0.000000e+00 8.953125e-01 +0.000000e+00 8.968750e-01 +0.000000e+00 8.984375e-01 +0.000000e+00 9.000000e-01 +0.000000e+00 9.015625e-01 +0.000000e+00 9.031250e-01 +0.000000e+00 9.046875e-01 +0.000000e+00 9.062500e-01 +0.000000e+00 9.078125e-01 +0.000000e+00 9.093750e-01 +0.000000e+00 9.109375e-01 +0.000000e+00 9.125000e-01 +0.000000e+00 9.140625e-01 +0.000000e+00 9.156250e-01 +0.000000e+00 9.171875e-01 +0.000000e+00 9.187500e-01 +0.000000e+00 9.203125e-01 +0.000000e+00 9.218750e-01 +0.000000e+00 9.234375e-01 +0.000000e+00 9.250000e-01 +0.000000e+00 9.265625e-01 +0.000000e+00 9.281250e-01 +0.000000e+00 9.296875e-01 +0.000000e+00 9.312500e-01 +0.000000e+00 9.328125e-01 +0.000000e+00 9.343750e-01 +0.000000e+00 9.359375e-01 +0.000000e+00 9.375000e-01 +0.000000e+00 9.390625e-01 +0.000000e+00 9.406250e-01 +0.000000e+00 9.421875e-01 +0.000000e+00 9.437500e-01 +0.000000e+00 9.453125e-01 +0.000000e+00 9.468750e-01 +0.000000e+00 9.484375e-01 +0.000000e+00 9.500000e-01 +0.000000e+00 9.515625e-01 +0.000000e+00 9.531250e-01 +0.000000e+00 9.546875e-01 +0.000000e+00 9.562500e-01 +0.000000e+00 9.578125e-01 +0.000000e+00 9.593750e-01 +0.000000e+00 9.609375e-01 +0.000000e+00 9.625000e-01 +0.000000e+00 9.640625e-01 +0.000000e+00 9.656250e-01 +0.000000e+00 9.671875e-01 +0.000000e+00 9.687500e-01 +0.000000e+00 9.703125e-01 +0.000000e+00 9.718750e-01 +0.000000e+00 9.734375e-01 +0.000000e+00 9.750000e-01 +0.000000e+00 9.765625e-01 +0.000000e+00 9.781250e-01 +0.000000e+00 9.796875e-01 +0.000000e+00 9.812500e-01 +0.000000e+00 9.828125e-01 +0.000000e+00 9.843750e-01 +0.000000e+00 9.859375e-01 +0.000000e+00 9.875000e-01 +0.000000e+00 9.890625e-01 +0.000000e+00 9.906250e-01 +0.000000e+00 9.921875e-01 +0.000000e+00 9.937500e-01 +0.000000e+00 9.953125e-01 +0.000000e+00 9.968750e-01 +0.000000e+00 9.984375e-01 +0.000000e+00 1.000000e+00 diff --git a/examples/inputfiles/SFWaveAndOpposingCurrent.init b/examples/inputfiles/SFWaveAndOpposingCurrent.init new file mode 100644 index 0000000..98771bf --- /dev/null +++ b/examples/inputfiles/SFWaveAndOpposingCurrent.init @@ -0,0 +1,643 @@ +Uniform current initial conditions U=-0.1. +1.000000e+01 0.000000e+00 641 1 0.000000e+00 +0.000000e+00 -0.000000e+00 +0.000000e+00 -1.562500e-03 +0.000000e+00 -3.125000e-03 +0.000000e+00 -4.687500e-03 +0.000000e+00 -6.250000e-03 +0.000000e+00 -7.812500e-03 +0.000000e+00 -9.375000e-03 +0.000000e+00 -1.093750e-02 +0.000000e+00 -1.250000e-02 +0.000000e+00 -1.406250e-02 +0.000000e+00 -1.562500e-02 +0.000000e+00 -1.718750e-02 +0.000000e+00 -1.875000e-02 +0.000000e+00 -2.031250e-02 +0.000000e+00 -2.187500e-02 +0.000000e+00 -2.343750e-02 +0.000000e+00 -2.500000e-02 +0.000000e+00 -2.656250e-02 +0.000000e+00 -2.812500e-02 +0.000000e+00 -2.968750e-02 +0.000000e+00 -3.125000e-02 +0.000000e+00 -3.281250e-02 +0.000000e+00 -3.437500e-02 +0.000000e+00 -3.593750e-02 +0.000000e+00 -3.750000e-02 +0.000000e+00 -3.906250e-02 +0.000000e+00 -4.062500e-02 +0.000000e+00 -4.218750e-02 +0.000000e+00 -4.375000e-02 +0.000000e+00 -4.531250e-02 +0.000000e+00 -4.687500e-02 +0.000000e+00 -4.843750e-02 +0.000000e+00 -5.000000e-02 +0.000000e+00 -5.156250e-02 +0.000000e+00 -5.312500e-02 +0.000000e+00 -5.468750e-02 +0.000000e+00 -5.625000e-02 +0.000000e+00 -5.781250e-02 +0.000000e+00 -5.937500e-02 +0.000000e+00 -6.093750e-02 +0.000000e+00 -6.250000e-02 +0.000000e+00 -6.406250e-02 +0.000000e+00 -6.562500e-02 +0.000000e+00 -6.718750e-02 +0.000000e+00 -6.875000e-02 +0.000000e+00 -7.031250e-02 +0.000000e+00 -7.187500e-02 +0.000000e+00 -7.343750e-02 +0.000000e+00 -7.500000e-02 +0.000000e+00 -7.656250e-02 +0.000000e+00 -7.812500e-02 +0.000000e+00 -7.968750e-02 +0.000000e+00 -8.125000e-02 +0.000000e+00 -8.281250e-02 +0.000000e+00 -8.437500e-02 +0.000000e+00 -8.593750e-02 +0.000000e+00 -8.750000e-02 +0.000000e+00 -8.906250e-02 +0.000000e+00 -9.062500e-02 +0.000000e+00 -9.218750e-02 +0.000000e+00 -9.375000e-02 +0.000000e+00 -9.531250e-02 +0.000000e+00 -9.687500e-02 +0.000000e+00 -9.843750e-02 +0.000000e+00 -1.000000e-01 +0.000000e+00 -1.015625e-01 +0.000000e+00 -1.031250e-01 +0.000000e+00 -1.046875e-01 +0.000000e+00 -1.062500e-01 +0.000000e+00 -1.078125e-01 +0.000000e+00 -1.093750e-01 +0.000000e+00 -1.109375e-01 +0.000000e+00 -1.125000e-01 +0.000000e+00 -1.140625e-01 +0.000000e+00 -1.156250e-01 +0.000000e+00 -1.171875e-01 +0.000000e+00 -1.187500e-01 +0.000000e+00 -1.203125e-01 +0.000000e+00 -1.218750e-01 +0.000000e+00 -1.234375e-01 +0.000000e+00 -1.250000e-01 +0.000000e+00 -1.265625e-01 +0.000000e+00 -1.281250e-01 +0.000000e+00 -1.296875e-01 +0.000000e+00 -1.312500e-01 +0.000000e+00 -1.328125e-01 +0.000000e+00 -1.343750e-01 +0.000000e+00 -1.359375e-01 +0.000000e+00 -1.375000e-01 +0.000000e+00 -1.390625e-01 +0.000000e+00 -1.406250e-01 +0.000000e+00 -1.421875e-01 +0.000000e+00 -1.437500e-01 +0.000000e+00 -1.453125e-01 +0.000000e+00 -1.468750e-01 +0.000000e+00 -1.484375e-01 +0.000000e+00 -1.500000e-01 +0.000000e+00 -1.515625e-01 +0.000000e+00 -1.531250e-01 +0.000000e+00 -1.546875e-01 +0.000000e+00 -1.562500e-01 +0.000000e+00 -1.578125e-01 +0.000000e+00 -1.593750e-01 +0.000000e+00 -1.609375e-01 +0.000000e+00 -1.625000e-01 +0.000000e+00 -1.640625e-01 +0.000000e+00 -1.656250e-01 +0.000000e+00 -1.671875e-01 +0.000000e+00 -1.687500e-01 +0.000000e+00 -1.703125e-01 +0.000000e+00 -1.718750e-01 +0.000000e+00 -1.734375e-01 +0.000000e+00 -1.750000e-01 +0.000000e+00 -1.765625e-01 +0.000000e+00 -1.781250e-01 +0.000000e+00 -1.796875e-01 +0.000000e+00 -1.812500e-01 +0.000000e+00 -1.828125e-01 +0.000000e+00 -1.843750e-01 +0.000000e+00 -1.859375e-01 +0.000000e+00 -1.875000e-01 +0.000000e+00 -1.890625e-01 +0.000000e+00 -1.906250e-01 +0.000000e+00 -1.921875e-01 +0.000000e+00 -1.937500e-01 +0.000000e+00 -1.953125e-01 +0.000000e+00 -1.968750e-01 +0.000000e+00 -1.984375e-01 +0.000000e+00 -2.000000e-01 +0.000000e+00 -2.015625e-01 +0.000000e+00 -2.031250e-01 +0.000000e+00 -2.046875e-01 +0.000000e+00 -2.062500e-01 +0.000000e+00 -2.078125e-01 +0.000000e+00 -2.093750e-01 +0.000000e+00 -2.109375e-01 +0.000000e+00 -2.125000e-01 +0.000000e+00 -2.140625e-01 +0.000000e+00 -2.156250e-01 +0.000000e+00 -2.171875e-01 +0.000000e+00 -2.187500e-01 +0.000000e+00 -2.203125e-01 +0.000000e+00 -2.218750e-01 +0.000000e+00 -2.234375e-01 +0.000000e+00 -2.250000e-01 +0.000000e+00 -2.265625e-01 +0.000000e+00 -2.281250e-01 +0.000000e+00 -2.296875e-01 +0.000000e+00 -2.312500e-01 +0.000000e+00 -2.328125e-01 +0.000000e+00 -2.343750e-01 +0.000000e+00 -2.359375e-01 +0.000000e+00 -2.375000e-01 +0.000000e+00 -2.390625e-01 +0.000000e+00 -2.406250e-01 +0.000000e+00 -2.421875e-01 +0.000000e+00 -2.437500e-01 +0.000000e+00 -2.453125e-01 +0.000000e+00 -2.468750e-01 +0.000000e+00 -2.484375e-01 +0.000000e+00 -2.500000e-01 +0.000000e+00 -2.515625e-01 +0.000000e+00 -2.531250e-01 +0.000000e+00 -2.546875e-01 +0.000000e+00 -2.562500e-01 +0.000000e+00 -2.578125e-01 +0.000000e+00 -2.593750e-01 +0.000000e+00 -2.609375e-01 +0.000000e+00 -2.625000e-01 +0.000000e+00 -2.640625e-01 +0.000000e+00 -2.656250e-01 +0.000000e+00 -2.671875e-01 +0.000000e+00 -2.687500e-01 +0.000000e+00 -2.703125e-01 +0.000000e+00 -2.718750e-01 +0.000000e+00 -2.734375e-01 +0.000000e+00 -2.750000e-01 +0.000000e+00 -2.765625e-01 +0.000000e+00 -2.781250e-01 +0.000000e+00 -2.796875e-01 +0.000000e+00 -2.812500e-01 +0.000000e+00 -2.828125e-01 +0.000000e+00 -2.843750e-01 +0.000000e+00 -2.859375e-01 +0.000000e+00 -2.875000e-01 +0.000000e+00 -2.890625e-01 +0.000000e+00 -2.906250e-01 +0.000000e+00 -2.921875e-01 +0.000000e+00 -2.937500e-01 +0.000000e+00 -2.953125e-01 +0.000000e+00 -2.968750e-01 +0.000000e+00 -2.984375e-01 +0.000000e+00 -3.000000e-01 +0.000000e+00 -3.015625e-01 +0.000000e+00 -3.031250e-01 +0.000000e+00 -3.046875e-01 +0.000000e+00 -3.062500e-01 +0.000000e+00 -3.078125e-01 +0.000000e+00 -3.093750e-01 +0.000000e+00 -3.109375e-01 +0.000000e+00 -3.125000e-01 +0.000000e+00 -3.140625e-01 +0.000000e+00 -3.156250e-01 +0.000000e+00 -3.171875e-01 +0.000000e+00 -3.187500e-01 +0.000000e+00 -3.203125e-01 +0.000000e+00 -3.218750e-01 +0.000000e+00 -3.234375e-01 +0.000000e+00 -3.250000e-01 +0.000000e+00 -3.265625e-01 +0.000000e+00 -3.281250e-01 +0.000000e+00 -3.296875e-01 +0.000000e+00 -3.312500e-01 +0.000000e+00 -3.328125e-01 +0.000000e+00 -3.343750e-01 +0.000000e+00 -3.359375e-01 +0.000000e+00 -3.375000e-01 +0.000000e+00 -3.390625e-01 +0.000000e+00 -3.406250e-01 +0.000000e+00 -3.421875e-01 +0.000000e+00 -3.437500e-01 +0.000000e+00 -3.453125e-01 +0.000000e+00 -3.468750e-01 +0.000000e+00 -3.484375e-01 +0.000000e+00 -3.500000e-01 +0.000000e+00 -3.515625e-01 +0.000000e+00 -3.531250e-01 +0.000000e+00 -3.546875e-01 +0.000000e+00 -3.562500e-01 +0.000000e+00 -3.578125e-01 +0.000000e+00 -3.593750e-01 +0.000000e+00 -3.609375e-01 +0.000000e+00 -3.625000e-01 +0.000000e+00 -3.640625e-01 +0.000000e+00 -3.656250e-01 +0.000000e+00 -3.671875e-01 +0.000000e+00 -3.687500e-01 +0.000000e+00 -3.703125e-01 +0.000000e+00 -3.718750e-01 +0.000000e+00 -3.734375e-01 +0.000000e+00 -3.750000e-01 +0.000000e+00 -3.765625e-01 +0.000000e+00 -3.781250e-01 +0.000000e+00 -3.796875e-01 +0.000000e+00 -3.812500e-01 +0.000000e+00 -3.828125e-01 +0.000000e+00 -3.843750e-01 +0.000000e+00 -3.859375e-01 +0.000000e+00 -3.875000e-01 +0.000000e+00 -3.890625e-01 +0.000000e+00 -3.906250e-01 +0.000000e+00 -3.921875e-01 +0.000000e+00 -3.937500e-01 +0.000000e+00 -3.953125e-01 +0.000000e+00 -3.968750e-01 +0.000000e+00 -3.984375e-01 +0.000000e+00 -4.000000e-01 +0.000000e+00 -4.015625e-01 +0.000000e+00 -4.031250e-01 +0.000000e+00 -4.046875e-01 +0.000000e+00 -4.062500e-01 +0.000000e+00 -4.078125e-01 +0.000000e+00 -4.093750e-01 +0.000000e+00 -4.109375e-01 +0.000000e+00 -4.125000e-01 +0.000000e+00 -4.140625e-01 +0.000000e+00 -4.156250e-01 +0.000000e+00 -4.171875e-01 +0.000000e+00 -4.187500e-01 +0.000000e+00 -4.203125e-01 +0.000000e+00 -4.218750e-01 +0.000000e+00 -4.234375e-01 +0.000000e+00 -4.250000e-01 +0.000000e+00 -4.265625e-01 +0.000000e+00 -4.281250e-01 +0.000000e+00 -4.296875e-01 +0.000000e+00 -4.312500e-01 +0.000000e+00 -4.328125e-01 +0.000000e+00 -4.343750e-01 +0.000000e+00 -4.359375e-01 +0.000000e+00 -4.375000e-01 +0.000000e+00 -4.390625e-01 +0.000000e+00 -4.406250e-01 +0.000000e+00 -4.421875e-01 +0.000000e+00 -4.437500e-01 +0.000000e+00 -4.453125e-01 +0.000000e+00 -4.468750e-01 +0.000000e+00 -4.484375e-01 +0.000000e+00 -4.500000e-01 +0.000000e+00 -4.515625e-01 +0.000000e+00 -4.531250e-01 +0.000000e+00 -4.546875e-01 +0.000000e+00 -4.562500e-01 +0.000000e+00 -4.578125e-01 +0.000000e+00 -4.593750e-01 +0.000000e+00 -4.609375e-01 +0.000000e+00 -4.625000e-01 +0.000000e+00 -4.640625e-01 +0.000000e+00 -4.656250e-01 +0.000000e+00 -4.671875e-01 +0.000000e+00 -4.687500e-01 +0.000000e+00 -4.703125e-01 +0.000000e+00 -4.718750e-01 +0.000000e+00 -4.734375e-01 +0.000000e+00 -4.750000e-01 +0.000000e+00 -4.765625e-01 +0.000000e+00 -4.781250e-01 +0.000000e+00 -4.796875e-01 +0.000000e+00 -4.812500e-01 +0.000000e+00 -4.828125e-01 +0.000000e+00 -4.843750e-01 +0.000000e+00 -4.859375e-01 +0.000000e+00 -4.875000e-01 +0.000000e+00 -4.890625e-01 +0.000000e+00 -4.906250e-01 +0.000000e+00 -4.921875e-01 +0.000000e+00 -4.937500e-01 +0.000000e+00 -4.953125e-01 +0.000000e+00 -4.968750e-01 +0.000000e+00 -4.984375e-01 +0.000000e+00 -5.000000e-01 +0.000000e+00 -5.015625e-01 +0.000000e+00 -5.031250e-01 +0.000000e+00 -5.046875e-01 +0.000000e+00 -5.062500e-01 +0.000000e+00 -5.078125e-01 +0.000000e+00 -5.093750e-01 +0.000000e+00 -5.109375e-01 +0.000000e+00 -5.125000e-01 +0.000000e+00 -5.140625e-01 +0.000000e+00 -5.156250e-01 +0.000000e+00 -5.171875e-01 +0.000000e+00 -5.187500e-01 +0.000000e+00 -5.203125e-01 +0.000000e+00 -5.218750e-01 +0.000000e+00 -5.234375e-01 +0.000000e+00 -5.250000e-01 +0.000000e+00 -5.265625e-01 +0.000000e+00 -5.281250e-01 +0.000000e+00 -5.296875e-01 +0.000000e+00 -5.312500e-01 +0.000000e+00 -5.328125e-01 +0.000000e+00 -5.343750e-01 +0.000000e+00 -5.359375e-01 +0.000000e+00 -5.375000e-01 +0.000000e+00 -5.390625e-01 +0.000000e+00 -5.406250e-01 +0.000000e+00 -5.421875e-01 +0.000000e+00 -5.437500e-01 +0.000000e+00 -5.453125e-01 +0.000000e+00 -5.468750e-01 +0.000000e+00 -5.484375e-01 +0.000000e+00 -5.500000e-01 +0.000000e+00 -5.515625e-01 +0.000000e+00 -5.531250e-01 +0.000000e+00 -5.546875e-01 +0.000000e+00 -5.562500e-01 +0.000000e+00 -5.578125e-01 +0.000000e+00 -5.593750e-01 +0.000000e+00 -5.609375e-01 +0.000000e+00 -5.625000e-01 +0.000000e+00 -5.640625e-01 +0.000000e+00 -5.656250e-01 +0.000000e+00 -5.671875e-01 +0.000000e+00 -5.687500e-01 +0.000000e+00 -5.703125e-01 +0.000000e+00 -5.718750e-01 +0.000000e+00 -5.734375e-01 +0.000000e+00 -5.750000e-01 +0.000000e+00 -5.765625e-01 +0.000000e+00 -5.781250e-01 +0.000000e+00 -5.796875e-01 +0.000000e+00 -5.812500e-01 +0.000000e+00 -5.828125e-01 +0.000000e+00 -5.843750e-01 +0.000000e+00 -5.859375e-01 +0.000000e+00 -5.875000e-01 +0.000000e+00 -5.890625e-01 +0.000000e+00 -5.906250e-01 +0.000000e+00 -5.921875e-01 +0.000000e+00 -5.937500e-01 +0.000000e+00 -5.953125e-01 +0.000000e+00 -5.968750e-01 +0.000000e+00 -5.984375e-01 +0.000000e+00 -6.000000e-01 +0.000000e+00 -6.015625e-01 +0.000000e+00 -6.031250e-01 +0.000000e+00 -6.046875e-01 +0.000000e+00 -6.062500e-01 +0.000000e+00 -6.078125e-01 +0.000000e+00 -6.093750e-01 +0.000000e+00 -6.109375e-01 +0.000000e+00 -6.125000e-01 +0.000000e+00 -6.140625e-01 +0.000000e+00 -6.156250e-01 +0.000000e+00 -6.171875e-01 +0.000000e+00 -6.187500e-01 +0.000000e+00 -6.203125e-01 +0.000000e+00 -6.218750e-01 +0.000000e+00 -6.234375e-01 +0.000000e+00 -6.250000e-01 +0.000000e+00 -6.265625e-01 +0.000000e+00 -6.281250e-01 +0.000000e+00 -6.296875e-01 +0.000000e+00 -6.312500e-01 +0.000000e+00 -6.328125e-01 +0.000000e+00 -6.343750e-01 +0.000000e+00 -6.359375e-01 +0.000000e+00 -6.375000e-01 +0.000000e+00 -6.390625e-01 +0.000000e+00 -6.406250e-01 +0.000000e+00 -6.421875e-01 +0.000000e+00 -6.437500e-01 +0.000000e+00 -6.453125e-01 +0.000000e+00 -6.468750e-01 +0.000000e+00 -6.484375e-01 +0.000000e+00 -6.500000e-01 +0.000000e+00 -6.515625e-01 +0.000000e+00 -6.531250e-01 +0.000000e+00 -6.546875e-01 +0.000000e+00 -6.562500e-01 +0.000000e+00 -6.578125e-01 +0.000000e+00 -6.593750e-01 +0.000000e+00 -6.609375e-01 +0.000000e+00 -6.625000e-01 +0.000000e+00 -6.640625e-01 +0.000000e+00 -6.656250e-01 +0.000000e+00 -6.671875e-01 +0.000000e+00 -6.687500e-01 +0.000000e+00 -6.703125e-01 +0.000000e+00 -6.718750e-01 +0.000000e+00 -6.734375e-01 +0.000000e+00 -6.750000e-01 +0.000000e+00 -6.765625e-01 +0.000000e+00 -6.781250e-01 +0.000000e+00 -6.796875e-01 +0.000000e+00 -6.812500e-01 +0.000000e+00 -6.828125e-01 +0.000000e+00 -6.843750e-01 +0.000000e+00 -6.859375e-01 +0.000000e+00 -6.875000e-01 +0.000000e+00 -6.890625e-01 +0.000000e+00 -6.906250e-01 +0.000000e+00 -6.921875e-01 +0.000000e+00 -6.937500e-01 +0.000000e+00 -6.953125e-01 +0.000000e+00 -6.968750e-01 +0.000000e+00 -6.984375e-01 +0.000000e+00 -7.000000e-01 +0.000000e+00 -7.015625e-01 +0.000000e+00 -7.031250e-01 +0.000000e+00 -7.046875e-01 +0.000000e+00 -7.062500e-01 +0.000000e+00 -7.078125e-01 +0.000000e+00 -7.093750e-01 +0.000000e+00 -7.109375e-01 +0.000000e+00 -7.125000e-01 +0.000000e+00 -7.140625e-01 +0.000000e+00 -7.156250e-01 +0.000000e+00 -7.171875e-01 +0.000000e+00 -7.187500e-01 +0.000000e+00 -7.203125e-01 +0.000000e+00 -7.218750e-01 +0.000000e+00 -7.234375e-01 +0.000000e+00 -7.250000e-01 +0.000000e+00 -7.265625e-01 +0.000000e+00 -7.281250e-01 +0.000000e+00 -7.296875e-01 +0.000000e+00 -7.312500e-01 +0.000000e+00 -7.328125e-01 +0.000000e+00 -7.343750e-01 +0.000000e+00 -7.359375e-01 +0.000000e+00 -7.375000e-01 +0.000000e+00 -7.390625e-01 +0.000000e+00 -7.406250e-01 +0.000000e+00 -7.421875e-01 +0.000000e+00 -7.437500e-01 +0.000000e+00 -7.453125e-01 +0.000000e+00 -7.468750e-01 +0.000000e+00 -7.484375e-01 +0.000000e+00 -7.500000e-01 +0.000000e+00 -7.515625e-01 +0.000000e+00 -7.531250e-01 +0.000000e+00 -7.546875e-01 +0.000000e+00 -7.562500e-01 +0.000000e+00 -7.578125e-01 +0.000000e+00 -7.593750e-01 +0.000000e+00 -7.609375e-01 +0.000000e+00 -7.625000e-01 +0.000000e+00 -7.640625e-01 +0.000000e+00 -7.656250e-01 +0.000000e+00 -7.671875e-01 +0.000000e+00 -7.687500e-01 +0.000000e+00 -7.703125e-01 +0.000000e+00 -7.718750e-01 +0.000000e+00 -7.734375e-01 +0.000000e+00 -7.750000e-01 +0.000000e+00 -7.765625e-01 +0.000000e+00 -7.781250e-01 +0.000000e+00 -7.796875e-01 +0.000000e+00 -7.812500e-01 +0.000000e+00 -7.828125e-01 +0.000000e+00 -7.843750e-01 +0.000000e+00 -7.859375e-01 +0.000000e+00 -7.875000e-01 +0.000000e+00 -7.890625e-01 +0.000000e+00 -7.906250e-01 +0.000000e+00 -7.921875e-01 +0.000000e+00 -7.937500e-01 +0.000000e+00 -7.953125e-01 +0.000000e+00 -7.968750e-01 +0.000000e+00 -7.984375e-01 +0.000000e+00 -8.000000e-01 +0.000000e+00 -8.015625e-01 +0.000000e+00 -8.031250e-01 +0.000000e+00 -8.046875e-01 +0.000000e+00 -8.062500e-01 +0.000000e+00 -8.078125e-01 +0.000000e+00 -8.093750e-01 +0.000000e+00 -8.109375e-01 +0.000000e+00 -8.125000e-01 +0.000000e+00 -8.140625e-01 +0.000000e+00 -8.156250e-01 +0.000000e+00 -8.171875e-01 +0.000000e+00 -8.187500e-01 +0.000000e+00 -8.203125e-01 +0.000000e+00 -8.218750e-01 +0.000000e+00 -8.234375e-01 +0.000000e+00 -8.250000e-01 +0.000000e+00 -8.265625e-01 +0.000000e+00 -8.281250e-01 +0.000000e+00 -8.296875e-01 +0.000000e+00 -8.312500e-01 +0.000000e+00 -8.328125e-01 +0.000000e+00 -8.343750e-01 +0.000000e+00 -8.359375e-01 +0.000000e+00 -8.375000e-01 +0.000000e+00 -8.390625e-01 +0.000000e+00 -8.406250e-01 +0.000000e+00 -8.421875e-01 +0.000000e+00 -8.437500e-01 +0.000000e+00 -8.453125e-01 +0.000000e+00 -8.468750e-01 +0.000000e+00 -8.484375e-01 +0.000000e+00 -8.500000e-01 +0.000000e+00 -8.515625e-01 +0.000000e+00 -8.531250e-01 +0.000000e+00 -8.546875e-01 +0.000000e+00 -8.562500e-01 +0.000000e+00 -8.578125e-01 +0.000000e+00 -8.593750e-01 +0.000000e+00 -8.609375e-01 +0.000000e+00 -8.625000e-01 +0.000000e+00 -8.640625e-01 +0.000000e+00 -8.656250e-01 +0.000000e+00 -8.671875e-01 +0.000000e+00 -8.687500e-01 +0.000000e+00 -8.703125e-01 +0.000000e+00 -8.718750e-01 +0.000000e+00 -8.734375e-01 +0.000000e+00 -8.750000e-01 +0.000000e+00 -8.765625e-01 +0.000000e+00 -8.781250e-01 +0.000000e+00 -8.796875e-01 +0.000000e+00 -8.812500e-01 +0.000000e+00 -8.828125e-01 +0.000000e+00 -8.843750e-01 +0.000000e+00 -8.859375e-01 +0.000000e+00 -8.875000e-01 +0.000000e+00 -8.890625e-01 +0.000000e+00 -8.906250e-01 +0.000000e+00 -8.921875e-01 +0.000000e+00 -8.937500e-01 +0.000000e+00 -8.953125e-01 +0.000000e+00 -8.968750e-01 +0.000000e+00 -8.984375e-01 +0.000000e+00 -9.000000e-01 +0.000000e+00 -9.015625e-01 +0.000000e+00 -9.031250e-01 +0.000000e+00 -9.046875e-01 +0.000000e+00 -9.062500e-01 +0.000000e+00 -9.078125e-01 +0.000000e+00 -9.093750e-01 +0.000000e+00 -9.109375e-01 +0.000000e+00 -9.125000e-01 +0.000000e+00 -9.140625e-01 +0.000000e+00 -9.156250e-01 +0.000000e+00 -9.171875e-01 +0.000000e+00 -9.187500e-01 +0.000000e+00 -9.203125e-01 +0.000000e+00 -9.218750e-01 +0.000000e+00 -9.234375e-01 +0.000000e+00 -9.250000e-01 +0.000000e+00 -9.265625e-01 +0.000000e+00 -9.281250e-01 +0.000000e+00 -9.296875e-01 +0.000000e+00 -9.312500e-01 +0.000000e+00 -9.328125e-01 +0.000000e+00 -9.343750e-01 +0.000000e+00 -9.359375e-01 +0.000000e+00 -9.375000e-01 +0.000000e+00 -9.390625e-01 +0.000000e+00 -9.406250e-01 +0.000000e+00 -9.421875e-01 +0.000000e+00 -9.437500e-01 +0.000000e+00 -9.453125e-01 +0.000000e+00 -9.468750e-01 +0.000000e+00 -9.484375e-01 +0.000000e+00 -9.500000e-01 +0.000000e+00 -9.515625e-01 +0.000000e+00 -9.531250e-01 +0.000000e+00 -9.546875e-01 +0.000000e+00 -9.562500e-01 +0.000000e+00 -9.578125e-01 +0.000000e+00 -9.593750e-01 +0.000000e+00 -9.609375e-01 +0.000000e+00 -9.625000e-01 +0.000000e+00 -9.640625e-01 +0.000000e+00 -9.656250e-01 +0.000000e+00 -9.671875e-01 +0.000000e+00 -9.687500e-01 +0.000000e+00 -9.703125e-01 +0.000000e+00 -9.718750e-01 +0.000000e+00 -9.734375e-01 +0.000000e+00 -9.750000e-01 +0.000000e+00 -9.765625e-01 +0.000000e+00 -9.781250e-01 +0.000000e+00 -9.796875e-01 +0.000000e+00 -9.812500e-01 +0.000000e+00 -9.828125e-01 +0.000000e+00 -9.843750e-01 +0.000000e+00 -9.859375e-01 +0.000000e+00 -9.875000e-01 +0.000000e+00 -9.890625e-01 +0.000000e+00 -9.906250e-01 +0.000000e+00 -9.921875e-01 +0.000000e+00 -9.937500e-01 +0.000000e+00 -9.953125e-01 +0.000000e+00 -9.968750e-01 +0.000000e+00 -9.984375e-01 +0.000000e+00 -1.000000e+00 diff --git a/src/IO/ReadInputFileParameters.f90 b/src/IO/ReadInputFileParameters.f90 index e117d0e..c47e63c 100644 --- a/src/IO/ReadInputFileParameters.f90 +++ b/src/IO/ReadInputFileParameters.f90 @@ -38,6 +38,15 @@ SUBROUTINE ReadInputFileParameters accel_tol_fact WRITE(fileop(1),FMT='(A//)') ' * g m/s^2. Theoretically breaking should occur between 0.5 and 1.' + ! + ! For IncWaveType==4, we add a current to the SF wave, so re-set IncWaveFlag to 1 and turn on the current flag. + ! + IF(IncWaveType==4)THEN + IncWaveType=1; CurrentFlux%Flag=1; + ELSE + CurrentFlux%Flag=0 + END IF + GO TO 24 ! If no parameters are specified after IC on the same line choose default values @@ -185,7 +194,7 @@ SUBROUTINE ReadInputFileParameters print *, 'Starting time for this run is ',time0 WRITE (*,902) ' Number of time steps chosen: ', Nsteps - write(fileop(1),*), 'Starting time for this run is ',time0 + write(fileop(1),*) 'Starting time for this run is ',time0 WRITE (fileop(1),902) ' Number of time steps chosen: ', Nsteps IF (CFL/=zero) THEN ! GD: FIXME for 2D-3D case with propagation along y... @@ -564,7 +573,6 @@ SUBROUTINE ReadInputFileParameters ! ! Linear mono-chromatic, random wave or flux boundary generation parameters. ! - IF (IncWaveType==3) THEN ! Wave generation with flux condition on western boundary READ(FILEIP(1),*,IOSTAT=ios) wave3DFlux%rampTime, wave3DFlux%order, wave3DFlux%inc_wave_file @@ -637,6 +645,40 @@ SUBROUTINE ReadInputFileParameters end IF END IF + IF(CurrentFlux%Flag >= 0) THEN + ! + ! Constant flux through the domain for wave-current interaction, plus a SF wave + ! + READ(FILEIP(1),*,IOSTAT=ios) CurrentFlux%Q + IF (ios>0) THEN + CurrentFlux%Q=zero; CurrentFlux%Ul=zero; CurrentFlux%Ur=zero + print *, ' ' + Print *, 'ReadInputFileParameters: Constant flux current is turned off.' + print *, ' ' + write(fileop(1), *)'ReadInputFileParameters: Constant flux current is turned off.' + ELSE + print *, ' ' + Print *, 'ReadInputFileParameters: Constant current corresponding to a flux of Q=', & + CurrentFlux%Q,' has been specified.' + print *, ' ' + write(fileop(1), *)'ReadInputFileParameters: Constant current corresponding to a flux of Q=', & + CurrentFlux%Q,' has been specified.' + ! + ! Check that the Eulerian velocity is consistent with the current flux if turned on + ! + IF(SFsol%i_euler_or_stokes/=0 .or. abs(SFsol%e_or_s_vel - CurrentFlux%Q/SFsol%h) >= 1.E-8) THEN + print *, ' ' + print *, '************************************************' + print *, '*** Your current flux and stream function solution are not consistent with each other!! ****' + print *, '************************************************' + print *, ' ' + write(fileop(1), *) '************************************************' + write(fileop(1), *) '*** Your current flux and stream function solution are not consistent with each other!! ****' + write(fileop(1), *) '************************************************' + END IF + END IF + END IF + ! ! IF (relaxONOFF==1) THEN ! GD: add this test in case of no relaxation zones defined @@ -673,6 +715,8 @@ SUBROUTINE ReadInputFileParameters ENDIF ENDIF + + RETURN ! ERROR CONTROL MESSAGES diff --git a/src/IO/StoreKinematicData.f90 b/src/IO/StoreKinematicData.f90 index 71391c7..337a6d3 100644 --- a/src/IO/StoreKinematicData.f90 +++ b/src/IO/StoreKinematicData.f90 @@ -38,7 +38,7 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) i0=Output(io)%xbeg+GhostGridX; i1=Output(io)%xend+GhostGridX; is=Output(io)%xstride; j0=Output(io)%ybeg+GhostGridY; j1=Output(io)%yend+GhostGridY; js=Output(io)%ystride; ELSE - PRINT*,'Storing kinematics data...' + ! PRINT*,'Storing kinematics data...' ! determine indices for stencils tmpx = x(1:Nx,1)-Output(io)%x ! search @@ -93,16 +93,16 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) form="unformatted" ! binary format chosen FOUT = 22 ! file handle OPEN (unit=FOUT, file=filename,form=form) - WRITE(*,FMT='(A,A)') ' File output = ',filename +! WRITE(*,FMT='(A,A)') ' File output = ',filename ELSE IF(formattype==22)THEN WRITE(unit=filename, FMT="(A,I2.2,A,I5.5,A)") "Kinematics_",io,"_",it,".bin" form="unformatted" ! binary format chosen FOUT = 22 ! file handle OPEN (unit=FOUT, file=filename,form=form) - WRITE(*,FMT='(A,A)') ' File output = ',filename +! WRITE(*,FMT='(A,A)') ' File output = ',filename ELSE FOUT = FILEOP(io+1) - WRITE(*,FMT='(A,I2)') ' File output unit number = ',FOUT +! WRITE(*,FMT='(A,I2)') ' File output unit number = ',FOUT END IF IF(it==0)THEN diff --git a/src/initialization/GammaFunctions.f90 b/src/initialization/GammaFunctions.f90 index f05def8..197d216 100644 --- a/src/initialization/GammaFunctions.f90 +++ b/src/initialization/GammaFunctions.f90 @@ -22,6 +22,8 @@ SUBROUTINE GammaFunctions(x,n,dir,ftype,gam,param) gam = three*tmp**2-two*tmp**3 CASE (11) gam=(exp(tmp**param)-1)/(exp(one)-one) + CASE (12) + gam=exp(-((x-x(n))/(x(n)-x(1)))**2/(2*param**2)) END SELECT IF (dir==-1) THEN ! REVERSE gam = gam(n:1:-1) ! FIXME: not just for x diff --git a/src/initialization/PreprocessPDampingZones.f90 b/src/initialization/PreprocessPDampingZones.f90 index d635efe..ad5dca0 100644 --- a/src/initialization/PreprocessPDampingZones.f90 +++ b/src/initialization/PreprocessPDampingZones.f90 @@ -52,7 +52,10 @@ Subroutine PreprocessPDampingZones Allocate(PDampZones(i)%gamPhi(nx*ny),PDampZones(i)%gamEta(nx*ny)) PDampZones(i)%gamPhi(1:nx*ny)=zero; PDampZones(i)%gamEta(1:nx*ny)=zero; ! - CAll GammaFunctions(tmpx(i1:i2),nd,1,11,gtmp,3.5d00) + !hbb CAll GammaFunctions(tmpx(i1:i2),nd,1,11,gtmp,3.5d00) + ! I replaced the exponential here with a Gaussian. The choice should be + ! moved to the input file. + CAll GammaFunctions(tmpx(i1:i2),nd,1,12,gtmp,0.25d00) PDampZones(i)%gamPhi(i1:i2)=two*pi*PDampZones(i)%g0Phi*gtmp(1:nxd) PDampZones(i)%gamEta(i1:i2)=two*pi*PDampZones(i)%g0Eta*gtmp(1:nxd) ! diff --git a/src/initialization/setupWavePaddle.f90 b/src/initialization/setupWavePaddle.f90 index 50ccbe6..e7942b5 100644 --- a/src/initialization/setupWavePaddle.f90 +++ b/src/initialization/setupWavePaddle.f90 @@ -44,8 +44,8 @@ SUBROUTINE setupwavepaddle READ(21,'(A)',err=15)header READ(21,*)dt_inc, nt, n2 ! Informative output - write(6,23),wave3DFlux%inc_wave_file,header - write(fileop(1),23),wave3DFlux%inc_wave_file,header + write(6,23) wave3DFlux%inc_wave_file,header + write(fileop(1),23) wave3DFlux%inc_wave_file,header 23 FORMAT('Reading the wall boundary flux from file: ',A,'with header ',/,A) ! ! Allocate fields diff --git a/src/main/OceanWave3D.f90 b/src/main/OceanWave3D.f90 index 276741e..9f6e037 100644 --- a/src/main/OceanWave3D.f90 +++ b/src/main/OceanWave3D.f90 @@ -35,7 +35,7 @@ PROGRAM OceanWave3D WRITE(*,FMT='(A)') 'Change the file name to OceanWave3D.init and change IC to -1 for a hot start.' CLOSE(fileip(3)) OPEN(fileip(3), file = 'OceanWave3D.end', status = 'unknown') - WRITE(fileip(3),*) 'Initial conditions outputted from a previous simulation.' ! Header + WRITE(fileip(3),*) 'Initial conditions output from a previous simulation.' ! Header WRITE(fileip(3),*) FineGrid%x(FineGrid%Nx,1)-FineGrid%x(1,1),FineGrid%y(FineGrid%Nx,1)-FineGrid%y(1,1), & FineGrid%Nx, FineGrid%Ny, time ! Domain size, number of grid points and ending time. DO j=1+GhostGridY,FineGrid%Ny+GhostGridY diff --git a/src/main/OceanWave3DT0Setup.f90 b/src/main/OceanWave3DT0Setup.f90 index 6dfbf3a..a492ddf 100644 --- a/src/main/OceanWave3DT0Setup.f90 +++ b/src/main/OceanWave3DT0Setup.f90 @@ -318,6 +318,13 @@ SUBROUTINE OceanWave3DT0Setup print *,'done with ICs' write(fileop(1),*)'done with ICs' ! + ! Set up the constant flux current boundary conditions. As with the flux-type wavemaker, + ! These values are always added to the RHS vector, but are zero unless the current is + ! turned on. At this point, uniform depth along y- is assumed. + ! + CurrentFlux%Ul=CurrentFlux%Q/FineGrid%h(1,1) + CurrentFlux%Ur=CurrentFlux%Q/FineGrid%h(FineGrid%Nx+GhostGridX,1) + ! ! Set up the Pressure Damping Zones if any. ! If (NDampZones /=0) THEN diff --git a/src/main/OceanWave3DTakeATimeStep.f90 b/src/main/OceanWave3DTakeATimeStep.f90 index eed61b4..d951698 100644 --- a/src/main/OceanWave3DTakeATimeStep.f90 +++ b/src/main/OceanWave3DTakeATimeStep.f90 @@ -13,12 +13,13 @@ SUBROUTINE OceanWave3DTakeATimeStep TOTALITEROLD = TOTALITER CALL SYSTEM_CLOCK(count_0, count_rate, count_max) - + + ! hbb I've taken this out as there is no need to do it twice and it's done below. ! Print the simulation time to the screen every 10 time steps. - IF(MOD(tstep,10)==0)THEN - WRITE(6,2000) tstep, time - WRITE(fileop(1),2000) tstep, time - END IF +! IF(MOD(tstep,10)==0)THEN +! WRITE(6,2000) tstep, time +! WRITE(fileop(1),2000) tstep, time +! END IF ! ! Use the free-surface conditions to step forward in time and get new ! values for eta and phi. @@ -104,8 +105,10 @@ SUBROUTINE OceanWave3DTakeATimeStep else ! Print the simulation time to the screen every 10 time steps. IF(MOD(tstep,10)==0)THEN - print *, 'time step number ',tstep,' t=',time - write(fileop(1),*) 'time step number ',tstep,' t=',time + WRITE(6,2000) tstep, time + WRITE(fileop(1),2000) tstep, time + ! print *, 'time step number ',tstep,' t=',time + ! write(fileop(1),*) 'time step number ',tstep,' t=',time IF (solver==0) THEN WRITE (6,2009) REAL(TOTALITER,long)/(RKSTAGES*REAL(tstep-1,long)) WRITE (fileop(1),2009) REAL(TOTALITER,long)/(RKSTAGES*REAL(tstep-1,long)) @@ -152,7 +155,9 @@ SUBROUTINE OceanWave3DTakeATimeStep FineGrid%Nx, FineGrid%Ny, time ! Domain size, number of grid points and ending time. DO j=1+GhostGridY,FineGrid%Ny+GhostGridY DO i=1+GhostGridX,FineGrid%Nx+GhostGridX - WRITE(fileip(3),*)WaveField%E(i,j),phi(FineGrid%Nz+GhostGridZ,i,j) +! k=(j-1)*FineGrid%Nx+i + WRITE(fileip(3),*)WaveField%E(i,j),Wavefield%P(i,j) +! WRITE(fileip(3),*)WaveField%E(i,j),phi(FineGrid%Nz+GhostGridZ,i,j) END DO END DO close(fileip(3)) @@ -190,7 +195,7 @@ SUBROUTINE OceanWave3DTakeATimeStep IF (tstep+1 >= Output(i)%tbeg .and. tstep+1 <= Output(i)%tend .and. & mod(tstep,Output(i)%tstride)==0 )THEN - WRITE(*,FMT='(A)') 'Writing kinematics output' + !WRITE(*,FMT='(A)') 'Writing kinematics output' CALL StoreKinematicData(FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & FineGrid%Nz+GhostGridZ,i,tstep+1) END IF diff --git a/src/pressure/funPressureTerm.f90 b/src/pressure/funPressureTerm.f90 index 12a4aff..b1c96d2 100644 --- a/src/pressure/funPressureTerm.f90 +++ b/src/pressure/funPressureTerm.f90 @@ -27,7 +27,8 @@ SUBROUTINE funPressureTerm(t,g,Nx,Ny,FineGrid,Wavefield) USE Precision USE Constants USE DataTypes - USE GlobalVariables, ONLY: PressureTermONOFF, Lz, NDampZones, PDampingOnOff, PDampZones, alpha + USE GlobalVariables, ONLY: PressureTermONOFF, Lz, NDampZones, PDampingOnOff, PDampZones, alpha, & + CurrentFlux IMPLICIT NONE INTEGER :: Nx,Ny, i, j, k, nd, rank, id0, job, id, idebug REAL(KIND=long) :: t, g, x0, y0, sigma, sigmay, Lx, Ly, dx, Fr, V, rhs(Nx*Ny), & @@ -166,10 +167,11 @@ SUBROUTINE funPressureTerm(t,g,Nx,Ny,FineGrid,Wavefield) ! CALL DfDx_1D_Uneven(tmp,nd,PDampZones(id)%Grad,rank,rhs) ! - ! Multiply by gamma and take the divergence + ! Multiply by gamma and take the divergence. Note here that we damp on the + ! difference between the flow velocity and the possible uniform current. ! Do i=1,nd - tmp(i)=PDampZones(id)%gamPhi(id0+i-1)*rhs(i) + tmp(i)=PDampZones(id)%gamPhi(id0+i-1)*(rhs(i)-CurrentFlux%Ur) END Do CALL DfDx_1D_Uneven(tmp,nd,PDampZones(id)%Grad,rank,rhs) ! diff --git a/src/timeintegration/Runge_Kutta_4.f90 b/src/timeintegration/Runge_Kutta_4.f90 index cbf8d98..ebb24c5 100644 --- a/src/timeintegration/Runge_Kutta_4.f90 +++ b/src/timeintegration/Runge_Kutta_4.f90 @@ -7,7 +7,7 @@ SUBROUTINE Runge_Kutta_4(rhsFreeSurface) RHS, relaxONOFF, LASTPHI, tstep, extrapolationONOFF, LinearONOFF, filteringONOFF, & filterALPHA, filterNP, filtercoefficients, GhostGridX, GhostGridY, & swenseONOFF, swenseDir, SFsol, Wavefield , curvilinearONOFF, Wavefield_tmp, & - filtercoefficients2, BreakMod, fileop, IncWaveType, Uneumann + filtercoefficients2, BreakMod, fileop, IncWaveType, Uneumann, CurrentFlux IMPLICIT NONE ! EXTERNAL rhsFreeSurface, BuildLinearSystem, BuildLinearSystemTransformedCurvilinear, DiffXEven, DiffYEven, FILTERING, & @@ -77,12 +77,20 @@ SUBROUTINE Runge_Kutta_4(rhsFreeSurface) ! If waves are generated by an inhomogeneous Neumann condition, we update the ! boundary condition in Uneumann(k,j). /botp + ! Note that this routine also updates the free-surface ghost point source values + ! Wavefield%sourcePx. + WaveField_tmp%sourcePx=zero IF (IncWaveType==3) THEN - CALL waveGenerationFromPaddleSignal(RKtime) + CALL waveGenerationFromPaddleSignal(RKtime) ENDIF + ! Add in the constant current. + WaveField_tmp%sourcePx(1+GhostGridX,:)=WaveField_tmp%sourcePx(1+GhostGridX,:) + CurrentFlux%Ul + WaveField_tmp%sourcePx(FineGrid%Nx+GhostGridX,:)=WaveField_tmp%sourcePx(FineGrid%Nx+GhostGridX,:) & + + CurrentFlux%Ur CALL DifferentiationsFreeSurfacePlane(Wavefield_tmp,GhostGridX,GhostGridY,FineGrid,alpha,beta) + IF (LinearONOFF==1) THEN ! CALL DetermineTransformationConstants(FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY,& ! FineGrid%Nz+GhostGridZ,FineGrid,FineGrid%dsigma,Wavefield_tmp) @@ -98,10 +106,14 @@ SUBROUTINE Runge_Kutta_4(rhsFreeSurface) RHS(FineGrid%Nz+GhostGridZ,1+GhostGridX:FineGrid%Nx+GhostGridX,1+GhostGridY:FineGrid%Ny+GhostGridY) = & Wavefield_tmp%P(1+GhostGridX:FineGrid%Nx+GhostGridX,1+GhostGridY:FineGrid%Ny+GhostGridY) ! - ! Put the wavemaker Western boundary flux Nuemann points into the RHS vector. + ! Put the wavemaker Western boundary flux Neumann points into the RHS vector and add in a possible constant current. ! RHS(1:FineGrid%Nz+GhostGridZ,1,1+GhostGridY:FineGrid%Ny+GhostGridY) = & - Uneumann(1:FineGrid%Nz+GhostGridZ,1+GhostGridY:FineGrid%Ny+GhostGridY) + Uneumann(1:FineGrid%Nz+GhostGridZ,1+GhostGridY:FineGrid%Ny+GhostGridY) + CurrentFlux%Ul + ! + ! Put in the Eastern boundary flux Neumann points + ! + RHS(1:FineGrid%Nz+GhostGridZ,FineGrid%Nx+2*GhostGridX,1+GhostGridY:FineGrid%Ny+GhostGridY) = CurrentFlux%Ur IF (extrapolationONOFF==1) THEN ! Improving initial guess for iterative solver PHI = 1.5_long*LASTPHI(:,:,:,idxnew) - LASTPHI(:,:,:,idxlast)*half @@ -117,6 +129,7 @@ SUBROUTINE Runge_Kutta_4(rhsFreeSurface) CALL iterative_solution(RHS,(FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ),& BuildLinearSystem,PHI,FineGrid) END IF + ! ! Get the vertical derivative on the free surface to complete the solution update at this stage. ! @@ -191,7 +204,10 @@ SUBROUTINE Runge_Kutta_4(rhsFreeSurface) Wavefield_tmp%P(1+GhostGridX:FineGrid%Nx+GhostGridX,1+GhostGridY:FineGrid%Ny+GhostGridY) RHS(1:FineGrid%Nz+GhostGridZ,1,1+GhostGridY:FineGrid%Ny+GhostGridY) = & - Uneumann(1:FineGrid%Nz+GhostGridZ,1+GhostGridY:FineGrid%Ny+GhostGridY) + Uneumann(1:FineGrid%Nz+GhostGridZ,1+GhostGridY:FineGrid%Ny+GhostGridY) + CurrentFlux%Ul + + RHS(1:FineGrid%Nz+GhostGridZ,FineGrid%Nx+2*GhostGridX,1+GhostGridY:FineGrid%Ny+GhostGridY) = CurrentFlux%Ur + IF (curvilinearONOFF==1) THEN CALL iterative_solution(RHS,(FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ),& @@ -244,9 +260,14 @@ SUBROUTINE Runge_Kutta_4(rhsFreeSurface) ! If waves are generated by an inhomogeneous Neumann condition, we update the ! boundary condition. /botp + WaveField_tmp%sourcePx=zero IF (IncWaveType==3) THEN CALL waveGenerationFromPaddleSignal(RKtime) ENDIF + ! Add in the constant current. + WaveField_tmp%sourcePx(1+GhostGridX,:)=WaveField_tmp%sourcePx(1+GhostGridX,:) + CurrentFlux%Ul + WaveField_tmp%sourcePx(FineGrid%Nx+GhostGridX,:)=WaveField_tmp%sourcePx(FineGrid%Nx+GhostGridX,:) & + + CurrentFlux%Ur CALL DifferentiationsFreeSurfacePlane(Wavefield_tmp,GhostGridX,GhostGridY,FineGrid,alpha,beta) IF (LinearONOFF==1) THEN @@ -267,7 +288,8 @@ SUBROUTINE Runge_Kutta_4(rhsFreeSurface) Wavefield_tmp%P(1+GhostGridX:FineGrid%Nx+GhostGridX,1+GhostGridY:FineGrid%Ny+GhostGridY) RHS(1:FineGrid%Nz+GhostGridZ,1,1+GhostGridY:FineGrid%Ny+GhostGridY) = & - Uneumann(1:FineGrid%Nz+GhostGridZ,1+GhostGridY:FineGrid%Ny+GhostGridY) + Uneumann(1:FineGrid%Nz+GhostGridZ,1+GhostGridY:FineGrid%Ny+GhostGridY) + CurrentFlux%Ul + RHS(1:FineGrid%Nz+GhostGridZ,FineGrid%Nx+2*GhostGridX,1+GhostGridY:FineGrid%Ny+GhostGridY) = CurrentFlux%Ur IF (extrapolationONOFF==1 .AND. tstep>1) THEN ! Improving initial guess for iterative solver ! PHI = (two*LASTPHI(:,:,:,idxnew) - LASTPHI(:,:,:,idxold)) @@ -359,9 +381,14 @@ SUBROUTINE Runge_Kutta_4(rhsFreeSurface) ! If waves are generated by an inhomogeneous Neumann condition, we update the ! boundary condition. /botp + WaveField%sourcePx=zero IF (IncWaveType==3) THEN CALL waveGenerationFromPaddleSignal(RKtime) ENDIF + ! Add in the constant current. + WaveField%sourcePx(1+GhostGridX,:)=WaveField%sourcePx(1+GhostGridX,:) + CurrentFlux%Ul + WaveField%sourcePx(FineGrid%Nx+GhostGridX,:)=WaveField%sourcePx(FineGrid%Nx+GhostGridX,:) & + + CurrentFlux%Ur CALL DifferentiationsFreeSurfacePlane(Wavefield,GhostGridX,GhostGridY,FineGrid,alpha,beta) @@ -382,7 +409,8 @@ SUBROUTINE Runge_Kutta_4(rhsFreeSurface) Wavefield%P(1+GhostGridX:FineGrid%Nx+GhostGridX,1+GhostGridY:FineGrid%Ny+GhostGridY) RHS(1:FineGrid%Nz+GhostGridZ,1,1+GhostGridY:FineGrid%Ny+GhostGridY) = & - Uneumann(1:FineGrid%Nz+GhostGridZ,1+GhostGridY:FineGrid%Ny+GhostGridY) + Uneumann(1:FineGrid%Nz+GhostGridZ,1+GhostGridY:FineGrid%Ny+GhostGridY) + CurrentFlux%Ul + RHS(1:FineGrid%Nz+GhostGridZ,FineGrid%Nx+2*GhostGridX,1+GhostGridY:FineGrid%Ny+GhostGridY) = CurrentFlux%Ur IF (curvilinearONOFF==1) THEN CALL iterative_solution(RHS,(FineGrid%Nx+2*GhostGridX)*(FineGrid%Ny+2*GhostGridY)*(FineGrid%Nz+GhostGridZ),& diff --git a/src/utilities/stream_func_wave_finite.f b/src/utilities/stream_func_wave_finite.f index 2abb29d..e71f3cf 100644 --- a/src/utilities/stream_func_wave_finite.f +++ b/src/utilities/stream_func_wave_finite.f @@ -41,7 +41,10 @@ subroutine stream_func_wave_finite(nfx,xp,tp,n_four_modes, ENDDO ph=0.D00 w=0.d00 -! ph=(zz(4)-zz(7))*xp(1,j) +! This orginal version had a bug and used the dimensional xp instead +! of the non-dimensional one. So I've gone back to this form which should +! be correct for either U_E or U_S versions. HBB - corrected 18/03/2019. + ph=(zz(4)-zz(7))*xp(j)*wavenum C Here phi, is computed on the free-surface etai. To get values C at another level of z, replace etai with z in the following two loops. DO m=1,n_four_modes @@ -57,7 +60,8 @@ subroutine stream_func_wave_finite(nfx,xp,tp,n_four_modes, etai(j)=kinv*etai(j) phi_s(j)=ph*pfactor ! Next line ADDED: APEK 01-07-2008, ! phi_s=uE*x+ph, uE=c-ubar, - phi_s(j)=phi_s(j) + xp(j)*(zz(5)*sqrt(grav/wavenum)) +! phi_s(j)=phi_s(j) + xp(j)*(zz(5)*sqrt(grav/wavenum)) +! HBB - corrected 18/03/2019. w=w*ufactor !hbb temporary output for checking the GOperator ! write(26,*)phi_s(j),w @@ -99,7 +103,11 @@ subroutine stream_func_wave_deep(nfx,xp,tp,n_four_modes, slope=slope-km*yy(m)*sin(km*kx) ENDDO ph=0.D00 -! ph=(zz(4)-zz(7))*xp(1,j) +! This orginal version had a bug and used the dimensional xp instead +! of the non-dimensional one. So I've gone back to this form which should +! be correct for either U_E or U_S versions. HBB - corrected 18/03/2019. + ph=(zz(4)-zz(7))*xp(j)*wavenum +! ph=-zz(7)*xp(j)*wavenum C Here phi is computed on the free-surface etai. To get values C at another level of z, replace etai with z in the following two loops. DO m=1,n_four_modes @@ -109,7 +117,8 @@ subroutine stream_func_wave_deep(nfx,xp,tp,n_four_modes, etai(j)=kinv*etai(j) phi_s(j)=ph*pfactor ! Next line ADDED: APEK 01-07-2008, ! phi_s=uE*x+ph, uE=c-ubar, - phi_s(j)=phi_s(j) + xp(j)*(zz(5)*sqrt(grav/wavenum)) +! phi_s(j)=phi_s(j) + xp(j)*(zz(5)*sqrt(grav/wavenum)) +! See note above, HBB 18/03/2019. END DO diff --git a/src/variabledefs/datatypes.f90 b/src/variabledefs/datatypes.f90 index c563246..d020ff1 100644 --- a/src/variabledefs/datatypes.f90 +++ b/src/variabledefs/datatypes.f90 @@ -151,6 +151,7 @@ MODULE DataTypes CHARACTER(len=30) inc_wave_file REAL(KIND=long), allocatable :: eta(:,:), Phis(:,:), eta0(:), Phis0(:), beta(:) END TYPE RandomWaveParam + ! DEFINE a structure for 3D random wave generation by flux condition, botp TYPE wave3DFluxStruct REAL(KIND=long) :: dt, rampTime @@ -158,8 +159,15 @@ MODULE DataTypes CHARACTER(len=30) inc_wave_file REAL(KIND=long), allocatable :: flux(:,:), y(:), time(:), etax(:,:) END TYPE wave3DFluxStruct -! DEFINE a Structure for the wave breaking model parameters +! DEFINE a structure for a constant flux through the domain (wave-current) +TYPE CurrentFluxStruct + INTEGER :: Flag + REAL(KIND=long) :: Ul, Ur, Q +END TYPE CurrentFluxStruct + + +! DEFINE a Structure for the wave breaking model parameters TYPE BreakingModelParam Integer :: i_breaking, n_rollers, i_break_time Integer, allocatable :: i_roller(:,:) diff --git a/src/variabledefs/globalvariables.f90 b/src/variabledefs/globalvariables.f90 index d509aeb..6bc15b4 100644 --- a/src/variabledefs/globalvariables.f90 +++ b/src/variabledefs/globalvariables.f90 @@ -120,4 +120,8 @@ MODULE GlobalVariables REAL(KIND=dp), DIMENSION(:,:), ALLOCATABLE :: Uneumann TYPE (wave3DFluxStruct) :: wave3DFlux +! A constant flux current through the domain for wave-current interaction +TYPE (CurrentFluxStruct) :: CurrentFlux + + END MODULE GlobalVariables diff --git a/utils/matlab/IO/ReadKinematics.m b/utils/matlab/IO/ReadKinematics.m index e334956..2a98d34 100644 --- a/utils/matlab/IO/ReadKinematics.m +++ b/utils/matlab/IO/ReadKinematics.m @@ -98,9 +98,14 @@ % Read in the solution variables eta, gradeta, phi, u, v, w, dudz, dvdz. % for it=1:nt - tmp(1:nx*ny)=fread(fid1,nx*ny,'double'); - eta(it,:)=tmp(1:nx*ny); - junk = fread(fid1,2,int_nbit); + try + tmp(1:nx*ny)=fread(fid1,nx*ny,'double'); + eta(it,:)=tmp(1:nx*ny); + junk = fread(fid1,2,int_nbit); + catch + warning(['Read failed at time step ',num2str(it)]); + break + end % tmp(1:nx*ny)=fread(fid1,nx*ny,'double'); etax(it,:)=tmp(1:nx*ny); From cec08f5ae283df575abcb1cba166013f71ecacf8 Mon Sep 17 00:00:00 2001 From: hbbi Date: Tue, 19 Mar 2019 11:07:21 +0800 Subject: [PATCH 44/56] Small bug fix... -hbb --- src/IO/ReadInputFileParameters.f90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/IO/ReadInputFileParameters.f90 b/src/IO/ReadInputFileParameters.f90 index c47e63c..fa59b30 100644 --- a/src/IO/ReadInputFileParameters.f90 +++ b/src/IO/ReadInputFileParameters.f90 @@ -645,7 +645,7 @@ SUBROUTINE ReadInputFileParameters end IF END IF - IF(CurrentFlux%Flag >= 0) THEN + IF(CurrentFlux%Flag > 0) THEN ! ! Constant flux through the domain for wave-current interaction, plus a SF wave ! From 13e022f960c279eea8fa12952dd6701e8fb8e925 Mon Sep 17 00:00:00 2001 From: hbbi Date: Wed, 20 Mar 2019 13:25:40 +0800 Subject: [PATCH 45/56] Added IncWaveType=5 for flux boundary wave generation combined with a constant flux. -hbb --- .../inputfiles/Mono2D_T1.25Eps05.wavemaker | 3129 +++++++++++++++++ .../OceanWave3D.init.FluxWavemakerWithCurrent | 403 +++ .../OceanWave3D.inp.FluxWavemaker2D | 20 + ...OceanWave3D.inp.FluxWavemaker2DWithCurrent | 21 + src/IO/ReadInputFileParameters.f90 | 34 +- src/functions/RelaxationModule_new.f90 | 12 +- src/initialization/GammaFunctions.f90 | 15 +- 7 files changed, 3611 insertions(+), 23 deletions(-) create mode 100644 examples/inputfiles/Mono2D_T1.25Eps05.wavemaker create mode 100644 examples/inputfiles/OceanWave3D.init.FluxWavemakerWithCurrent create mode 100644 examples/inputfiles/OceanWave3D.inp.FluxWavemaker2D create mode 100644 examples/inputfiles/OceanWave3D.inp.FluxWavemaker2DWithCurrent diff --git a/examples/inputfiles/Mono2D_T1.25Eps05.wavemaker b/examples/inputfiles/Mono2D_T1.25Eps05.wavemaker new file mode 100644 index 0000000..673f86f --- /dev/null +++ b/examples/inputfiles/Mono2D_T1.25Eps05.wavemaker @@ -0,0 +1,3129 @@ +Monochromatic wave with T=1.25, H=0.11924. +2.000000e-02 3126 1 +1.000000e+00 +0.000000e+00 0.000000e+00 +2.000000e-02 1.694723e-02 +4.000000e-02 3.372332e-02 +6.000000e-02 5.015888e-02 +8.000000e-02 6.608793e-02 +1.000000e-01 8.134963e-02 +1.200000e-01 9.578986e-02 +1.400000e-01 1.092628e-01 +1.600000e-01 1.216324e-01 +1.800000e-01 1.327738e-01 +2.000000e-01 1.425744e-01 +2.200000e-01 1.509354e-01 +2.400000e-01 1.577722e-01 +2.600000e-01 1.630158e-01 +2.800000e-01 1.666132e-01 +3.000000e-01 1.685283e-01 +3.200000e-01 1.687415e-01 +3.400000e-01 1.672508e-01 +3.600000e-01 1.640712e-01 +3.800000e-01 1.592348e-01 +4.000000e-01 1.527904e-01 +4.200000e-01 1.448032e-01 +4.400000e-01 1.353538e-01 +4.600000e-01 1.245375e-01 +4.800000e-01 1.124637e-01 +5.000000e-01 9.925428e-02 +5.200000e-01 8.504255e-02 +5.400000e-01 6.997207e-02 +5.600000e-01 5.419501e-02 +5.800000e-01 3.787069e-02 +6.000000e-01 2.116395e-02 +6.200000e-01 4.243505e-03 +6.400000e-01 -1.271979e-02 +6.600000e-01 -2.955465e-02 +6.800000e-01 -4.609106e-02 +7.000000e-01 -6.216205e-02 +7.200000e-01 -7.760533e-02 +7.400000e-01 -9.226495e-02 +7.600000e-01 -1.059929e-01 +7.800000e-01 -1.186505e-01 +8.000000e-01 -1.301100e-01 +8.200000e-01 -1.402556e-01 +8.400000e-01 -1.489850e-01 +8.600000e-01 -1.562099e-01 +8.800000e-01 -1.618574e-01 +9.000000e-01 -1.658705e-01 +9.200000e-01 -1.682086e-01 +9.400000e-01 -1.688481e-01 +9.600000e-01 -1.677827e-01 +9.800000e-01 -1.650229e-01 +1.000000e+00 -1.605968e-01 +1.020000e+00 -1.545490e-01 +1.040000e+00 -1.469405e-01 +1.060000e+00 -1.378482e-01 +1.080000e+00 -1.273640e-01 +1.100000e+00 -1.155936e-01 +1.120000e+00 -1.026560e-01 +1.140000e+00 -8.868176e-02 +1.160000e+00 -7.381201e-02 +1.180000e+00 -5.819691e-02 +1.200000e+00 -4.199414e-02 +1.220000e+00 -2.536731e-02 +1.240000e+00 -8.484329e-03 +1.260000e+00 8.484329e-03 +1.280000e+00 2.536731e-02 +1.300000e+00 4.199414e-02 +1.320000e+00 5.819691e-02 +1.340000e+00 7.381201e-02 +1.360000e+00 8.868176e-02 +1.380000e+00 1.026560e-01 +1.400000e+00 1.155936e-01 +1.420000e+00 1.273640e-01 +1.440000e+00 1.378482e-01 +1.460000e+00 1.469405e-01 +1.480000e+00 1.545490e-01 +1.500000e+00 1.605968e-01 +1.520000e+00 1.650229e-01 +1.540000e+00 1.677827e-01 +1.560000e+00 1.688481e-01 +1.580000e+00 1.682086e-01 +1.600000e+00 1.658705e-01 +1.620000e+00 1.618574e-01 +1.640000e+00 1.562099e-01 +1.660000e+00 1.489850e-01 +1.680000e+00 1.402556e-01 +1.700000e+00 1.301100e-01 +1.720000e+00 1.186505e-01 +1.740000e+00 1.059929e-01 +1.760000e+00 9.226495e-02 +1.780000e+00 7.760533e-02 +1.800000e+00 6.216205e-02 +1.820000e+00 4.609106e-02 +1.840000e+00 2.955465e-02 +1.860000e+00 1.271979e-02 +1.880000e+00 -4.243505e-03 +1.900000e+00 -2.116395e-02 +1.920000e+00 -3.787069e-02 +1.940000e+00 -5.419501e-02 +1.960000e+00 -6.997207e-02 +1.980000e+00 -8.504255e-02 +2.000000e+00 -9.925428e-02 +2.020000e+00 -1.124637e-01 +2.040000e+00 -1.245375e-01 +2.060000e+00 -1.353538e-01 +2.080000e+00 -1.448032e-01 +2.100000e+00 -1.527904e-01 +2.120000e+00 -1.592348e-01 +2.140000e+00 -1.640712e-01 +2.160000e+00 -1.672508e-01 +2.180000e+00 -1.687415e-01 +2.200000e+00 -1.685283e-01 +2.220000e+00 -1.666132e-01 +2.240000e+00 -1.630158e-01 +2.260000e+00 -1.577722e-01 +2.280000e+00 -1.509354e-01 +2.300000e+00 -1.425744e-01 +2.320000e+00 -1.327738e-01 +2.340000e+00 -1.216324e-01 +2.360000e+00 -1.092628e-01 +2.380000e+00 -9.578986e-02 +2.400000e+00 -8.134963e-02 +2.420000e+00 -6.608793e-02 +2.440000e+00 -5.015888e-02 +2.460000e+00 -3.372332e-02 +2.480000e+00 -1.694723e-02 +2.500000e+00 -8.271826e-17 +2.520000e+00 1.694723e-02 +2.540000e+00 3.372332e-02 +2.560000e+00 5.015888e-02 +2.580000e+00 6.608793e-02 +2.600000e+00 8.134963e-02 +2.620000e+00 9.578986e-02 +2.640000e+00 1.092628e-01 +2.660000e+00 1.216324e-01 +2.680000e+00 1.327738e-01 +2.700000e+00 1.425744e-01 +2.720000e+00 1.509354e-01 +2.740000e+00 1.577722e-01 +2.760000e+00 1.630158e-01 +2.780000e+00 1.666132e-01 +2.800000e+00 1.685283e-01 +2.820000e+00 1.687415e-01 +2.840000e+00 1.672508e-01 +2.860000e+00 1.640712e-01 +2.880000e+00 1.592348e-01 +2.900000e+00 1.527904e-01 +2.920000e+00 1.448032e-01 +2.940000e+00 1.353538e-01 +2.960000e+00 1.245375e-01 +2.980000e+00 1.124637e-01 +3.000000e+00 9.925428e-02 +3.020000e+00 8.504255e-02 +3.040000e+00 6.997207e-02 +3.060000e+00 5.419501e-02 +3.080000e+00 3.787069e-02 +3.100000e+00 2.116395e-02 +3.120000e+00 4.243505e-03 +3.140000e+00 -1.271979e-02 +3.160000e+00 -2.955465e-02 +3.180000e+00 -4.609106e-02 +3.200000e+00 -6.216205e-02 +3.220000e+00 -7.760533e-02 +3.240000e+00 -9.226495e-02 +3.260000e+00 -1.059929e-01 +3.280000e+00 -1.186505e-01 +3.300000e+00 -1.301100e-01 +3.320000e+00 -1.402556e-01 +3.340000e+00 -1.489850e-01 +3.360000e+00 -1.562099e-01 +3.380000e+00 -1.618574e-01 +3.400000e+00 -1.658705e-01 +3.420000e+00 -1.682086e-01 +3.440000e+00 -1.688481e-01 +3.460000e+00 -1.677827e-01 +3.480000e+00 -1.650229e-01 +3.500000e+00 -1.605968e-01 +3.520000e+00 -1.545490e-01 +3.540000e+00 -1.469405e-01 +3.560000e+00 -1.378482e-01 +3.580000e+00 -1.273640e-01 +3.600000e+00 -1.155936e-01 +3.620000e+00 -1.026560e-01 +3.640000e+00 -8.868176e-02 +3.660000e+00 -7.381201e-02 +3.680000e+00 -5.819691e-02 +3.700000e+00 -4.199414e-02 +3.720000e+00 -2.536731e-02 +3.740000e+00 -8.484329e-03 +3.760000e+00 8.484329e-03 +3.780000e+00 2.536731e-02 +3.800000e+00 4.199414e-02 +3.820000e+00 5.819691e-02 +3.840000e+00 7.381201e-02 +3.860000e+00 8.868176e-02 +3.880000e+00 1.026560e-01 +3.900000e+00 1.155936e-01 +3.920000e+00 1.273640e-01 +3.940000e+00 1.378482e-01 +3.960000e+00 1.469405e-01 +3.980000e+00 1.545490e-01 +4.000000e+00 1.605968e-01 +4.020000e+00 1.650229e-01 +4.040000e+00 1.677827e-01 +4.060000e+00 1.688481e-01 +4.080000e+00 1.682086e-01 +4.100000e+00 1.658705e-01 +4.120000e+00 1.618574e-01 +4.140000e+00 1.562099e-01 +4.160000e+00 1.489850e-01 +4.180000e+00 1.402556e-01 +4.200000e+00 1.301100e-01 +4.220000e+00 1.186505e-01 +4.240000e+00 1.059929e-01 +4.260000e+00 9.226495e-02 +4.280000e+00 7.760533e-02 +4.300000e+00 6.216205e-02 +4.320000e+00 4.609106e-02 +4.340000e+00 2.955465e-02 +4.360000e+00 1.271979e-02 +4.380000e+00 -4.243505e-03 +4.400000e+00 -2.116395e-02 +4.420000e+00 -3.787069e-02 +4.440000e+00 -5.419501e-02 +4.460000e+00 -6.997207e-02 +4.480000e+00 -8.504255e-02 +4.500000e+00 -9.925428e-02 +4.520000e+00 -1.124637e-01 +4.540000e+00 -1.245375e-01 +4.560000e+00 -1.353538e-01 +4.580000e+00 -1.448032e-01 +4.600000e+00 -1.527904e-01 +4.620000e+00 -1.592348e-01 +4.640000e+00 -1.640712e-01 +4.660000e+00 -1.672508e-01 +4.680000e+00 -1.687415e-01 +4.700000e+00 -1.685283e-01 +4.720000e+00 -1.666132e-01 +4.740000e+00 -1.630158e-01 +4.760000e+00 -1.577722e-01 +4.780000e+00 -1.509354e-01 +4.800000e+00 -1.425744e-01 +4.820000e+00 -1.327738e-01 +4.840000e+00 -1.216324e-01 +4.860000e+00 -1.092628e-01 +4.880000e+00 -9.578986e-02 +4.900000e+00 -8.134963e-02 +4.920000e+00 -6.608793e-02 +4.940000e+00 -5.015888e-02 +4.960000e+00 -3.372332e-02 +4.980000e+00 -1.694723e-02 +5.000000e+00 -1.654365e-16 +5.020000e+00 1.694723e-02 +5.040000e+00 3.372332e-02 +5.060000e+00 5.015888e-02 +5.080000e+00 6.608793e-02 +5.100000e+00 8.134963e-02 +5.120000e+00 9.578986e-02 +5.140000e+00 1.092628e-01 +5.160000e+00 1.216324e-01 +5.180000e+00 1.327738e-01 +5.200000e+00 1.425744e-01 +5.220000e+00 1.509354e-01 +5.240000e+00 1.577722e-01 +5.260000e+00 1.630158e-01 +5.280000e+00 1.666132e-01 +5.300000e+00 1.685283e-01 +5.320000e+00 1.687415e-01 +5.340000e+00 1.672508e-01 +5.360000e+00 1.640712e-01 +5.380000e+00 1.592348e-01 +5.400000e+00 1.527904e-01 +5.420000e+00 1.448032e-01 +5.440000e+00 1.353538e-01 +5.460000e+00 1.245375e-01 +5.480000e+00 1.124637e-01 +5.500000e+00 9.925428e-02 +5.520000e+00 8.504255e-02 +5.540000e+00 6.997207e-02 +5.560000e+00 5.419501e-02 +5.580000e+00 3.787069e-02 +5.600000e+00 2.116395e-02 +5.620000e+00 4.243505e-03 +5.640000e+00 -1.271979e-02 +5.660000e+00 -2.955465e-02 +5.680000e+00 -4.609106e-02 +5.700000e+00 -6.216205e-02 +5.720000e+00 -7.760533e-02 +5.740000e+00 -9.226495e-02 +5.760000e+00 -1.059929e-01 +5.780000e+00 -1.186505e-01 +5.800000e+00 -1.301100e-01 +5.820000e+00 -1.402556e-01 +5.840000e+00 -1.489850e-01 +5.860000e+00 -1.562099e-01 +5.880000e+00 -1.618574e-01 +5.900000e+00 -1.658705e-01 +5.920000e+00 -1.682086e-01 +5.940000e+00 -1.688481e-01 +5.960000e+00 -1.677827e-01 +5.980000e+00 -1.650229e-01 +6.000000e+00 -1.605968e-01 +6.020000e+00 -1.545490e-01 +6.040000e+00 -1.469405e-01 +6.060000e+00 -1.378482e-01 +6.080000e+00 -1.273640e-01 +6.100000e+00 -1.155936e-01 +6.120000e+00 -1.026560e-01 +6.140000e+00 -8.868176e-02 +6.160000e+00 -7.381201e-02 +6.180000e+00 -5.819691e-02 +6.200000e+00 -4.199414e-02 +6.220000e+00 -2.536731e-02 +6.240000e+00 -8.484329e-03 +6.260000e+00 8.484329e-03 +6.280000e+00 2.536731e-02 +6.300000e+00 4.199414e-02 +6.320000e+00 5.819691e-02 +6.340000e+00 7.381201e-02 +6.360000e+00 8.868176e-02 +6.380000e+00 1.026560e-01 +6.400000e+00 1.155936e-01 +6.420000e+00 1.273640e-01 +6.440000e+00 1.378482e-01 +6.460000e+00 1.469405e-01 +6.480000e+00 1.545490e-01 +6.500000e+00 1.605968e-01 +6.520000e+00 1.650229e-01 +6.540000e+00 1.677827e-01 +6.560000e+00 1.688481e-01 +6.580000e+00 1.682086e-01 +6.600000e+00 1.658705e-01 +6.620000e+00 1.618574e-01 +6.640000e+00 1.562099e-01 +6.660000e+00 1.489850e-01 +6.680000e+00 1.402556e-01 +6.700000e+00 1.301100e-01 +6.720000e+00 1.186505e-01 +6.740000e+00 1.059929e-01 +6.760000e+00 9.226495e-02 +6.780000e+00 7.760533e-02 +6.800000e+00 6.216205e-02 +6.820000e+00 4.609106e-02 +6.840000e+00 2.955465e-02 +6.860000e+00 1.271979e-02 +6.880000e+00 -4.243505e-03 +6.900000e+00 -2.116395e-02 +6.920000e+00 -3.787069e-02 +6.940000e+00 -5.419501e-02 +6.960000e+00 -6.997207e-02 +6.980000e+00 -8.504255e-02 +7.000000e+00 -9.925428e-02 +7.020000e+00 -1.124637e-01 +7.040000e+00 -1.245375e-01 +7.060000e+00 -1.353538e-01 +7.080000e+00 -1.448032e-01 +7.100000e+00 -1.527904e-01 +7.120000e+00 -1.592348e-01 +7.140000e+00 -1.640712e-01 +7.160000e+00 -1.672508e-01 +7.180000e+00 -1.687415e-01 +7.200000e+00 -1.685283e-01 +7.220000e+00 -1.666132e-01 +7.240000e+00 -1.630158e-01 +7.260000e+00 -1.577722e-01 +7.280000e+00 -1.509354e-01 +7.300000e+00 -1.425744e-01 +7.320000e+00 -1.327738e-01 +7.340000e+00 -1.216324e-01 +7.360000e+00 -1.092628e-01 +7.380000e+00 -9.578986e-02 +7.400000e+00 -8.134963e-02 +7.420000e+00 -6.608793e-02 +7.440000e+00 -5.015888e-02 +7.460000e+00 -3.372332e-02 +7.480000e+00 -1.694723e-02 +7.500000e+00 -2.481548e-16 +7.520000e+00 1.694723e-02 +7.540000e+00 3.372332e-02 +7.560000e+00 5.015888e-02 +7.580000e+00 6.608793e-02 +7.600000e+00 8.134963e-02 +7.620000e+00 9.578986e-02 +7.640000e+00 1.092628e-01 +7.660000e+00 1.216324e-01 +7.680000e+00 1.327738e-01 +7.700000e+00 1.425744e-01 +7.720000e+00 1.509354e-01 +7.740000e+00 1.577722e-01 +7.760000e+00 1.630158e-01 +7.780000e+00 1.666132e-01 +7.800000e+00 1.685283e-01 +7.820000e+00 1.687415e-01 +7.840000e+00 1.672508e-01 +7.860000e+00 1.640712e-01 +7.880000e+00 1.592348e-01 +7.900000e+00 1.527904e-01 +7.920000e+00 1.448032e-01 +7.940000e+00 1.353538e-01 +7.960000e+00 1.245375e-01 +7.980000e+00 1.124637e-01 +8.000000e+00 9.925428e-02 +8.020000e+00 8.504255e-02 +8.040000e+00 6.997207e-02 +8.060000e+00 5.419501e-02 +8.080000e+00 3.787069e-02 +8.100000e+00 2.116395e-02 +8.120000e+00 4.243505e-03 +8.140000e+00 -1.271979e-02 +8.160000e+00 -2.955465e-02 +8.180000e+00 -4.609106e-02 +8.200000e+00 -6.216205e-02 +8.220000e+00 -7.760533e-02 +8.240000e+00 -9.226495e-02 +8.260000e+00 -1.059929e-01 +8.280000e+00 -1.186505e-01 +8.300000e+00 -1.301100e-01 +8.320000e+00 -1.402556e-01 +8.340000e+00 -1.489850e-01 +8.360000e+00 -1.562099e-01 +8.380000e+00 -1.618574e-01 +8.400000e+00 -1.658705e-01 +8.420000e+00 -1.682086e-01 +8.440000e+00 -1.688481e-01 +8.460000e+00 -1.677827e-01 +8.480000e+00 -1.650229e-01 +8.500000e+00 -1.605968e-01 +8.520000e+00 -1.545490e-01 +8.540000e+00 -1.469405e-01 +8.560000e+00 -1.378482e-01 +8.580000e+00 -1.273640e-01 +8.600000e+00 -1.155936e-01 +8.620000e+00 -1.026560e-01 +8.640000e+00 -8.868176e-02 +8.660000e+00 -7.381201e-02 +8.680000e+00 -5.819691e-02 +8.700000e+00 -4.199414e-02 +8.720000e+00 -2.536731e-02 +8.740000e+00 -8.484329e-03 +8.760000e+00 8.484329e-03 +8.780000e+00 2.536731e-02 +8.800000e+00 4.199414e-02 +8.820000e+00 5.819691e-02 +8.840000e+00 7.381201e-02 +8.860000e+00 8.868176e-02 +8.880000e+00 1.026560e-01 +8.900000e+00 1.155936e-01 +8.920000e+00 1.273640e-01 +8.940000e+00 1.378482e-01 +8.960000e+00 1.469405e-01 +8.980000e+00 1.545490e-01 +9.000000e+00 1.605968e-01 +9.020000e+00 1.650229e-01 +9.040000e+00 1.677827e-01 +9.060000e+00 1.688481e-01 +9.080000e+00 1.682086e-01 +9.100000e+00 1.658705e-01 +9.120000e+00 1.618574e-01 +9.140000e+00 1.562099e-01 +9.160000e+00 1.489850e-01 +9.180000e+00 1.402556e-01 +9.200000e+00 1.301100e-01 +9.220000e+00 1.186505e-01 +9.240000e+00 1.059929e-01 +9.260000e+00 9.226495e-02 +9.280000e+00 7.760533e-02 +9.300000e+00 6.216205e-02 +9.320000e+00 4.609106e-02 +9.340000e+00 2.955465e-02 +9.360000e+00 1.271979e-02 +9.380000e+00 -4.243505e-03 +9.400000e+00 -2.116395e-02 +9.420000e+00 -3.787069e-02 +9.440000e+00 -5.419501e-02 +9.460000e+00 -6.997207e-02 +9.480000e+00 -8.504255e-02 +9.500000e+00 -9.925428e-02 +9.520000e+00 -1.124637e-01 +9.540000e+00 -1.245375e-01 +9.560000e+00 -1.353538e-01 +9.580000e+00 -1.448032e-01 +9.600000e+00 -1.527904e-01 +9.620000e+00 -1.592348e-01 +9.640000e+00 -1.640712e-01 +9.660000e+00 -1.672508e-01 +9.680000e+00 -1.687415e-01 +9.700000e+00 -1.685283e-01 +9.720000e+00 -1.666132e-01 +9.740000e+00 -1.630158e-01 +9.760000e+00 -1.577722e-01 +9.780000e+00 -1.509354e-01 +9.800000e+00 -1.425744e-01 +9.820000e+00 -1.327738e-01 +9.840000e+00 -1.216324e-01 +9.860000e+00 -1.092628e-01 +9.880000e+00 -9.578986e-02 +9.900000e+00 -8.134963e-02 +9.920000e+00 -6.608793e-02 +9.940000e+00 -5.015888e-02 +9.960000e+00 -3.372332e-02 +9.980000e+00 -1.694723e-02 +1.000000e+01 -3.308730e-16 +1.002000e+01 1.694723e-02 +1.004000e+01 3.372332e-02 +1.006000e+01 5.015888e-02 +1.008000e+01 6.608793e-02 +1.010000e+01 8.134963e-02 +1.012000e+01 9.578986e-02 +1.014000e+01 1.092628e-01 +1.016000e+01 1.216324e-01 +1.018000e+01 1.327738e-01 +1.020000e+01 1.425744e-01 +1.022000e+01 1.509354e-01 +1.024000e+01 1.577722e-01 +1.026000e+01 1.630158e-01 +1.028000e+01 1.666132e-01 +1.030000e+01 1.685283e-01 +1.032000e+01 1.687415e-01 +1.034000e+01 1.672508e-01 +1.036000e+01 1.640712e-01 +1.038000e+01 1.592348e-01 +1.040000e+01 1.527904e-01 +1.042000e+01 1.448032e-01 +1.044000e+01 1.353538e-01 +1.046000e+01 1.245375e-01 +1.048000e+01 1.124637e-01 +1.050000e+01 9.925428e-02 +1.052000e+01 8.504255e-02 +1.054000e+01 6.997207e-02 +1.056000e+01 5.419501e-02 +1.058000e+01 3.787069e-02 +1.060000e+01 2.116395e-02 +1.062000e+01 4.243505e-03 +1.064000e+01 -1.271979e-02 +1.066000e+01 -2.955465e-02 +1.068000e+01 -4.609106e-02 +1.070000e+01 -6.216205e-02 +1.072000e+01 -7.760533e-02 +1.074000e+01 -9.226495e-02 +1.076000e+01 -1.059929e-01 +1.078000e+01 -1.186505e-01 +1.080000e+01 -1.301100e-01 +1.082000e+01 -1.402556e-01 +1.084000e+01 -1.489850e-01 +1.086000e+01 -1.562099e-01 +1.088000e+01 -1.618574e-01 +1.090000e+01 -1.658705e-01 +1.092000e+01 -1.682086e-01 +1.094000e+01 -1.688481e-01 +1.096000e+01 -1.677827e-01 +1.098000e+01 -1.650229e-01 +1.100000e+01 -1.605968e-01 +1.102000e+01 -1.545490e-01 +1.104000e+01 -1.469405e-01 +1.106000e+01 -1.378482e-01 +1.108000e+01 -1.273640e-01 +1.110000e+01 -1.155936e-01 +1.112000e+01 -1.026560e-01 +1.114000e+01 -8.868176e-02 +1.116000e+01 -7.381201e-02 +1.118000e+01 -5.819691e-02 +1.120000e+01 -4.199414e-02 +1.122000e+01 -2.536731e-02 +1.124000e+01 -8.484329e-03 +1.126000e+01 8.484329e-03 +1.128000e+01 2.536731e-02 +1.130000e+01 4.199414e-02 +1.132000e+01 5.819691e-02 +1.134000e+01 7.381201e-02 +1.136000e+01 8.868176e-02 +1.138000e+01 1.026560e-01 +1.140000e+01 1.155936e-01 +1.142000e+01 1.273640e-01 +1.144000e+01 1.378482e-01 +1.146000e+01 1.469405e-01 +1.148000e+01 1.545490e-01 +1.150000e+01 1.605968e-01 +1.152000e+01 1.650229e-01 +1.154000e+01 1.677827e-01 +1.156000e+01 1.688481e-01 +1.158000e+01 1.682086e-01 +1.160000e+01 1.658705e-01 +1.162000e+01 1.618574e-01 +1.164000e+01 1.562099e-01 +1.166000e+01 1.489850e-01 +1.168000e+01 1.402556e-01 +1.170000e+01 1.301100e-01 +1.172000e+01 1.186505e-01 +1.174000e+01 1.059929e-01 +1.176000e+01 9.226495e-02 +1.178000e+01 7.760533e-02 +1.180000e+01 6.216205e-02 +1.182000e+01 4.609106e-02 +1.184000e+01 2.955465e-02 +1.186000e+01 1.271979e-02 +1.188000e+01 -4.243505e-03 +1.190000e+01 -2.116395e-02 +1.192000e+01 -3.787069e-02 +1.194000e+01 -5.419501e-02 +1.196000e+01 -6.997207e-02 +1.198000e+01 -8.504255e-02 +1.200000e+01 -9.925428e-02 +1.202000e+01 -1.124637e-01 +1.204000e+01 -1.245375e-01 +1.206000e+01 -1.353538e-01 +1.208000e+01 -1.448032e-01 +1.210000e+01 -1.527904e-01 +1.212000e+01 -1.592348e-01 +1.214000e+01 -1.640712e-01 +1.216000e+01 -1.672508e-01 +1.218000e+01 -1.687415e-01 +1.220000e+01 -1.685283e-01 +1.222000e+01 -1.666132e-01 +1.224000e+01 -1.630158e-01 +1.226000e+01 -1.577722e-01 +1.228000e+01 -1.509354e-01 +1.230000e+01 -1.425744e-01 +1.232000e+01 -1.327738e-01 +1.234000e+01 -1.216324e-01 +1.236000e+01 -1.092628e-01 +1.238000e+01 -9.578986e-02 +1.240000e+01 -8.134963e-02 +1.242000e+01 -6.608793e-02 +1.244000e+01 -5.015888e-02 +1.246000e+01 -3.372332e-02 +1.248000e+01 -1.694723e-02 +1.250000e+01 -4.135913e-16 +1.252000e+01 1.694723e-02 +1.254000e+01 3.372332e-02 +1.256000e+01 5.015888e-02 +1.258000e+01 6.608793e-02 +1.260000e+01 8.134963e-02 +1.262000e+01 9.578986e-02 +1.264000e+01 1.092628e-01 +1.266000e+01 1.216324e-01 +1.268000e+01 1.327738e-01 +1.270000e+01 1.425744e-01 +1.272000e+01 1.509354e-01 +1.274000e+01 1.577722e-01 +1.276000e+01 1.630158e-01 +1.278000e+01 1.666132e-01 +1.280000e+01 1.685283e-01 +1.282000e+01 1.687415e-01 +1.284000e+01 1.672508e-01 +1.286000e+01 1.640712e-01 +1.288000e+01 1.592348e-01 +1.290000e+01 1.527904e-01 +1.292000e+01 1.448032e-01 +1.294000e+01 1.353538e-01 +1.296000e+01 1.245375e-01 +1.298000e+01 1.124637e-01 +1.300000e+01 9.925428e-02 +1.302000e+01 8.504255e-02 +1.304000e+01 6.997207e-02 +1.306000e+01 5.419501e-02 +1.308000e+01 3.787069e-02 +1.310000e+01 2.116395e-02 +1.312000e+01 4.243505e-03 +1.314000e+01 -1.271979e-02 +1.316000e+01 -2.955465e-02 +1.318000e+01 -4.609106e-02 +1.320000e+01 -6.216205e-02 +1.322000e+01 -7.760533e-02 +1.324000e+01 -9.226495e-02 +1.326000e+01 -1.059929e-01 +1.328000e+01 -1.186505e-01 +1.330000e+01 -1.301100e-01 +1.332000e+01 -1.402556e-01 +1.334000e+01 -1.489850e-01 +1.336000e+01 -1.562099e-01 +1.338000e+01 -1.618574e-01 +1.340000e+01 -1.658705e-01 +1.342000e+01 -1.682086e-01 +1.344000e+01 -1.688481e-01 +1.346000e+01 -1.677827e-01 +1.348000e+01 -1.650229e-01 +1.350000e+01 -1.605968e-01 +1.352000e+01 -1.545490e-01 +1.354000e+01 -1.469405e-01 +1.356000e+01 -1.378482e-01 +1.358000e+01 -1.273640e-01 +1.360000e+01 -1.155936e-01 +1.362000e+01 -1.026560e-01 +1.364000e+01 -8.868176e-02 +1.366000e+01 -7.381201e-02 +1.368000e+01 -5.819691e-02 +1.370000e+01 -4.199414e-02 +1.372000e+01 -2.536731e-02 +1.374000e+01 -8.484329e-03 +1.376000e+01 8.484329e-03 +1.378000e+01 2.536731e-02 +1.380000e+01 4.199414e-02 +1.382000e+01 5.819691e-02 +1.384000e+01 7.381201e-02 +1.386000e+01 8.868176e-02 +1.388000e+01 1.026560e-01 +1.390000e+01 1.155936e-01 +1.392000e+01 1.273640e-01 +1.394000e+01 1.378482e-01 +1.396000e+01 1.469405e-01 +1.398000e+01 1.545490e-01 +1.400000e+01 1.605968e-01 +1.402000e+01 1.650229e-01 +1.404000e+01 1.677827e-01 +1.406000e+01 1.688481e-01 +1.408000e+01 1.682086e-01 +1.410000e+01 1.658705e-01 +1.412000e+01 1.618574e-01 +1.414000e+01 1.562099e-01 +1.416000e+01 1.489850e-01 +1.418000e+01 1.402556e-01 +1.420000e+01 1.301100e-01 +1.422000e+01 1.186505e-01 +1.424000e+01 1.059929e-01 +1.426000e+01 9.226495e-02 +1.428000e+01 7.760533e-02 +1.430000e+01 6.216205e-02 +1.432000e+01 4.609106e-02 +1.434000e+01 2.955465e-02 +1.436000e+01 1.271979e-02 +1.438000e+01 -4.243505e-03 +1.440000e+01 -2.116395e-02 +1.442000e+01 -3.787069e-02 +1.444000e+01 -5.419501e-02 +1.446000e+01 -6.997207e-02 +1.448000e+01 -8.504255e-02 +1.450000e+01 -9.925428e-02 +1.452000e+01 -1.124637e-01 +1.454000e+01 -1.245375e-01 +1.456000e+01 -1.353538e-01 +1.458000e+01 -1.448032e-01 +1.460000e+01 -1.527904e-01 +1.462000e+01 -1.592348e-01 +1.464000e+01 -1.640712e-01 +1.466000e+01 -1.672508e-01 +1.468000e+01 -1.687415e-01 +1.470000e+01 -1.685283e-01 +1.472000e+01 -1.666132e-01 +1.474000e+01 -1.630158e-01 +1.476000e+01 -1.577722e-01 +1.478000e+01 -1.509354e-01 +1.480000e+01 -1.425744e-01 +1.482000e+01 -1.327738e-01 +1.484000e+01 -1.216324e-01 +1.486000e+01 -1.092628e-01 +1.488000e+01 -9.578986e-02 +1.490000e+01 -8.134963e-02 +1.492000e+01 -6.608793e-02 +1.494000e+01 -5.015888e-02 +1.496000e+01 -3.372332e-02 +1.498000e+01 -1.694723e-02 +1.500000e+01 -4.963096e-16 +1.502000e+01 1.694723e-02 +1.504000e+01 3.372332e-02 +1.506000e+01 5.015888e-02 +1.508000e+01 6.608793e-02 +1.510000e+01 8.134963e-02 +1.512000e+01 9.578986e-02 +1.514000e+01 1.092628e-01 +1.516000e+01 1.216324e-01 +1.518000e+01 1.327738e-01 +1.520000e+01 1.425744e-01 +1.522000e+01 1.509354e-01 +1.524000e+01 1.577722e-01 +1.526000e+01 1.630158e-01 +1.528000e+01 1.666132e-01 +1.530000e+01 1.685283e-01 +1.532000e+01 1.687415e-01 +1.534000e+01 1.672508e-01 +1.536000e+01 1.640712e-01 +1.538000e+01 1.592348e-01 +1.540000e+01 1.527904e-01 +1.542000e+01 1.448032e-01 +1.544000e+01 1.353538e-01 +1.546000e+01 1.245375e-01 +1.548000e+01 1.124637e-01 +1.550000e+01 9.925428e-02 +1.552000e+01 8.504255e-02 +1.554000e+01 6.997207e-02 +1.556000e+01 5.419501e-02 +1.558000e+01 3.787069e-02 +1.560000e+01 2.116395e-02 +1.562000e+01 4.243505e-03 +1.564000e+01 -1.271979e-02 +1.566000e+01 -2.955465e-02 +1.568000e+01 -4.609106e-02 +1.570000e+01 -6.216205e-02 +1.572000e+01 -7.760533e-02 +1.574000e+01 -9.226495e-02 +1.576000e+01 -1.059929e-01 +1.578000e+01 -1.186505e-01 +1.580000e+01 -1.301100e-01 +1.582000e+01 -1.402556e-01 +1.584000e+01 -1.489850e-01 +1.586000e+01 -1.562099e-01 +1.588000e+01 -1.618574e-01 +1.590000e+01 -1.658705e-01 +1.592000e+01 -1.682086e-01 +1.594000e+01 -1.688481e-01 +1.596000e+01 -1.677827e-01 +1.598000e+01 -1.650229e-01 +1.600000e+01 -1.605968e-01 +1.602000e+01 -1.545490e-01 +1.604000e+01 -1.469405e-01 +1.606000e+01 -1.378482e-01 +1.608000e+01 -1.273640e-01 +1.610000e+01 -1.155936e-01 +1.612000e+01 -1.026560e-01 +1.614000e+01 -8.868176e-02 +1.616000e+01 -7.381201e-02 +1.618000e+01 -5.819691e-02 +1.620000e+01 -4.199414e-02 +1.622000e+01 -2.536731e-02 +1.624000e+01 -8.484329e-03 +1.626000e+01 8.484329e-03 +1.628000e+01 2.536731e-02 +1.630000e+01 4.199414e-02 +1.632000e+01 5.819691e-02 +1.634000e+01 7.381201e-02 +1.636000e+01 8.868176e-02 +1.638000e+01 1.026560e-01 +1.640000e+01 1.155936e-01 +1.642000e+01 1.273640e-01 +1.644000e+01 1.378482e-01 +1.646000e+01 1.469405e-01 +1.648000e+01 1.545490e-01 +1.650000e+01 1.605968e-01 +1.652000e+01 1.650229e-01 +1.654000e+01 1.677827e-01 +1.656000e+01 1.688481e-01 +1.658000e+01 1.682086e-01 +1.660000e+01 1.658705e-01 +1.662000e+01 1.618574e-01 +1.664000e+01 1.562099e-01 +1.666000e+01 1.489850e-01 +1.668000e+01 1.402556e-01 +1.670000e+01 1.301100e-01 +1.672000e+01 1.186505e-01 +1.674000e+01 1.059929e-01 +1.676000e+01 9.226495e-02 +1.678000e+01 7.760533e-02 +1.680000e+01 6.216205e-02 +1.682000e+01 4.609106e-02 +1.684000e+01 2.955465e-02 +1.686000e+01 1.271979e-02 +1.688000e+01 -4.243505e-03 +1.690000e+01 -2.116395e-02 +1.692000e+01 -3.787069e-02 +1.694000e+01 -5.419501e-02 +1.696000e+01 -6.997207e-02 +1.698000e+01 -8.504255e-02 +1.700000e+01 -9.925428e-02 +1.702000e+01 -1.124637e-01 +1.704000e+01 -1.245375e-01 +1.706000e+01 -1.353538e-01 +1.708000e+01 -1.448032e-01 +1.710000e+01 -1.527904e-01 +1.712000e+01 -1.592348e-01 +1.714000e+01 -1.640712e-01 +1.716000e+01 -1.672508e-01 +1.718000e+01 -1.687415e-01 +1.720000e+01 -1.685283e-01 +1.722000e+01 -1.666132e-01 +1.724000e+01 -1.630158e-01 +1.726000e+01 -1.577722e-01 +1.728000e+01 -1.509354e-01 +1.730000e+01 -1.425744e-01 +1.732000e+01 -1.327738e-01 +1.734000e+01 -1.216324e-01 +1.736000e+01 -1.092628e-01 +1.738000e+01 -9.578986e-02 +1.740000e+01 -8.134963e-02 +1.742000e+01 -6.608793e-02 +1.744000e+01 -5.015888e-02 +1.746000e+01 -3.372332e-02 +1.748000e+01 -1.694723e-02 +1.750000e+01 -5.790278e-16 +1.752000e+01 1.694723e-02 +1.754000e+01 3.372332e-02 +1.756000e+01 5.015888e-02 +1.758000e+01 6.608793e-02 +1.760000e+01 8.134963e-02 +1.762000e+01 9.578986e-02 +1.764000e+01 1.092628e-01 +1.766000e+01 1.216324e-01 +1.768000e+01 1.327738e-01 +1.770000e+01 1.425744e-01 +1.772000e+01 1.509354e-01 +1.774000e+01 1.577722e-01 +1.776000e+01 1.630158e-01 +1.778000e+01 1.666132e-01 +1.780000e+01 1.685283e-01 +1.782000e+01 1.687415e-01 +1.784000e+01 1.672508e-01 +1.786000e+01 1.640712e-01 +1.788000e+01 1.592348e-01 +1.790000e+01 1.527904e-01 +1.792000e+01 1.448032e-01 +1.794000e+01 1.353538e-01 +1.796000e+01 1.245375e-01 +1.798000e+01 1.124637e-01 +1.800000e+01 9.925428e-02 +1.802000e+01 8.504255e-02 +1.804000e+01 6.997207e-02 +1.806000e+01 5.419501e-02 +1.808000e+01 3.787069e-02 +1.810000e+01 2.116395e-02 +1.812000e+01 4.243505e-03 +1.814000e+01 -1.271979e-02 +1.816000e+01 -2.955465e-02 +1.818000e+01 -4.609106e-02 +1.820000e+01 -6.216205e-02 +1.822000e+01 -7.760533e-02 +1.824000e+01 -9.226495e-02 +1.826000e+01 -1.059929e-01 +1.828000e+01 -1.186505e-01 +1.830000e+01 -1.301100e-01 +1.832000e+01 -1.402556e-01 +1.834000e+01 -1.489850e-01 +1.836000e+01 -1.562099e-01 +1.838000e+01 -1.618574e-01 +1.840000e+01 -1.658705e-01 +1.842000e+01 -1.682086e-01 +1.844000e+01 -1.688481e-01 +1.846000e+01 -1.677827e-01 +1.848000e+01 -1.650229e-01 +1.850000e+01 -1.605968e-01 +1.852000e+01 -1.545490e-01 +1.854000e+01 -1.469405e-01 +1.856000e+01 -1.378482e-01 +1.858000e+01 -1.273640e-01 +1.860000e+01 -1.155936e-01 +1.862000e+01 -1.026560e-01 +1.864000e+01 -8.868176e-02 +1.866000e+01 -7.381201e-02 +1.868000e+01 -5.819691e-02 +1.870000e+01 -4.199414e-02 +1.872000e+01 -2.536731e-02 +1.874000e+01 -8.484329e-03 +1.876000e+01 8.484329e-03 +1.878000e+01 2.536731e-02 +1.880000e+01 4.199414e-02 +1.882000e+01 5.819691e-02 +1.884000e+01 7.381201e-02 +1.886000e+01 8.868176e-02 +1.888000e+01 1.026560e-01 +1.890000e+01 1.155936e-01 +1.892000e+01 1.273640e-01 +1.894000e+01 1.378482e-01 +1.896000e+01 1.469405e-01 +1.898000e+01 1.545490e-01 +1.900000e+01 1.605968e-01 +1.902000e+01 1.650229e-01 +1.904000e+01 1.677827e-01 +1.906000e+01 1.688481e-01 +1.908000e+01 1.682086e-01 +1.910000e+01 1.658705e-01 +1.912000e+01 1.618574e-01 +1.914000e+01 1.562099e-01 +1.916000e+01 1.489850e-01 +1.918000e+01 1.402556e-01 +1.920000e+01 1.301100e-01 +1.922000e+01 1.186505e-01 +1.924000e+01 1.059929e-01 +1.926000e+01 9.226495e-02 +1.928000e+01 7.760533e-02 +1.930000e+01 6.216205e-02 +1.932000e+01 4.609106e-02 +1.934000e+01 2.955465e-02 +1.936000e+01 1.271979e-02 +1.938000e+01 -4.243505e-03 +1.940000e+01 -2.116395e-02 +1.942000e+01 -3.787069e-02 +1.944000e+01 -5.419501e-02 +1.946000e+01 -6.997207e-02 +1.948000e+01 -8.504255e-02 +1.950000e+01 -9.925428e-02 +1.952000e+01 -1.124637e-01 +1.954000e+01 -1.245375e-01 +1.956000e+01 -1.353538e-01 +1.958000e+01 -1.448032e-01 +1.960000e+01 -1.527904e-01 +1.962000e+01 -1.592348e-01 +1.964000e+01 -1.640712e-01 +1.966000e+01 -1.672508e-01 +1.968000e+01 -1.687415e-01 +1.970000e+01 -1.685283e-01 +1.972000e+01 -1.666132e-01 +1.974000e+01 -1.630158e-01 +1.976000e+01 -1.577722e-01 +1.978000e+01 -1.509354e-01 +1.980000e+01 -1.425744e-01 +1.982000e+01 -1.327738e-01 +1.984000e+01 -1.216324e-01 +1.986000e+01 -1.092628e-01 +1.988000e+01 -9.578986e-02 +1.990000e+01 -8.134963e-02 +1.992000e+01 -6.608793e-02 +1.994000e+01 -5.015888e-02 +1.996000e+01 -3.372332e-02 +1.998000e+01 -1.694723e-02 +2.000000e+01 -6.617461e-16 +2.002000e+01 1.694723e-02 +2.004000e+01 3.372332e-02 +2.006000e+01 5.015888e-02 +2.008000e+01 6.608793e-02 +2.010000e+01 8.134963e-02 +2.012000e+01 9.578986e-02 +2.014000e+01 1.092628e-01 +2.016000e+01 1.216324e-01 +2.018000e+01 1.327738e-01 +2.020000e+01 1.425744e-01 +2.022000e+01 1.509354e-01 +2.024000e+01 1.577722e-01 +2.026000e+01 1.630158e-01 +2.028000e+01 1.666132e-01 +2.030000e+01 1.685283e-01 +2.032000e+01 1.687415e-01 +2.034000e+01 1.672508e-01 +2.036000e+01 1.640712e-01 +2.038000e+01 1.592348e-01 +2.040000e+01 1.527904e-01 +2.042000e+01 1.448032e-01 +2.044000e+01 1.353538e-01 +2.046000e+01 1.245375e-01 +2.048000e+01 1.124637e-01 +2.050000e+01 9.925428e-02 +2.052000e+01 8.504255e-02 +2.054000e+01 6.997207e-02 +2.056000e+01 5.419501e-02 +2.058000e+01 3.787069e-02 +2.060000e+01 2.116395e-02 +2.062000e+01 4.243505e-03 +2.064000e+01 -1.271979e-02 +2.066000e+01 -2.955465e-02 +2.068000e+01 -4.609106e-02 +2.070000e+01 -6.216205e-02 +2.072000e+01 -7.760533e-02 +2.074000e+01 -9.226495e-02 +2.076000e+01 -1.059929e-01 +2.078000e+01 -1.186505e-01 +2.080000e+01 -1.301100e-01 +2.082000e+01 -1.402556e-01 +2.084000e+01 -1.489850e-01 +2.086000e+01 -1.562099e-01 +2.088000e+01 -1.618574e-01 +2.090000e+01 -1.658705e-01 +2.092000e+01 -1.682086e-01 +2.094000e+01 -1.688481e-01 +2.096000e+01 -1.677827e-01 +2.098000e+01 -1.650229e-01 +2.100000e+01 -1.605968e-01 +2.102000e+01 -1.545490e-01 +2.104000e+01 -1.469405e-01 +2.106000e+01 -1.378482e-01 +2.108000e+01 -1.273640e-01 +2.110000e+01 -1.155936e-01 +2.112000e+01 -1.026560e-01 +2.114000e+01 -8.868176e-02 +2.116000e+01 -7.381201e-02 +2.118000e+01 -5.819691e-02 +2.120000e+01 -4.199414e-02 +2.122000e+01 -2.536731e-02 +2.124000e+01 -8.484329e-03 +2.126000e+01 8.484329e-03 +2.128000e+01 2.536731e-02 +2.130000e+01 4.199414e-02 +2.132000e+01 5.819691e-02 +2.134000e+01 7.381201e-02 +2.136000e+01 8.868176e-02 +2.138000e+01 1.026560e-01 +2.140000e+01 1.155936e-01 +2.142000e+01 1.273640e-01 +2.144000e+01 1.378482e-01 +2.146000e+01 1.469405e-01 +2.148000e+01 1.545490e-01 +2.150000e+01 1.605968e-01 +2.152000e+01 1.650229e-01 +2.154000e+01 1.677827e-01 +2.156000e+01 1.688481e-01 +2.158000e+01 1.682086e-01 +2.160000e+01 1.658705e-01 +2.162000e+01 1.618574e-01 +2.164000e+01 1.562099e-01 +2.166000e+01 1.489850e-01 +2.168000e+01 1.402556e-01 +2.170000e+01 1.301100e-01 +2.172000e+01 1.186505e-01 +2.174000e+01 1.059929e-01 +2.176000e+01 9.226495e-02 +2.178000e+01 7.760533e-02 +2.180000e+01 6.216205e-02 +2.182000e+01 4.609106e-02 +2.184000e+01 2.955465e-02 +2.186000e+01 1.271979e-02 +2.188000e+01 -4.243505e-03 +2.190000e+01 -2.116395e-02 +2.192000e+01 -3.787069e-02 +2.194000e+01 -5.419501e-02 +2.196000e+01 -6.997207e-02 +2.198000e+01 -8.504255e-02 +2.200000e+01 -9.925428e-02 +2.202000e+01 -1.124637e-01 +2.204000e+01 -1.245375e-01 +2.206000e+01 -1.353538e-01 +2.208000e+01 -1.448032e-01 +2.210000e+01 -1.527904e-01 +2.212000e+01 -1.592348e-01 +2.214000e+01 -1.640712e-01 +2.216000e+01 -1.672508e-01 +2.218000e+01 -1.687415e-01 +2.220000e+01 -1.685283e-01 +2.222000e+01 -1.666132e-01 +2.224000e+01 -1.630158e-01 +2.226000e+01 -1.577722e-01 +2.228000e+01 -1.509354e-01 +2.230000e+01 -1.425744e-01 +2.232000e+01 -1.327738e-01 +2.234000e+01 -1.216324e-01 +2.236000e+01 -1.092628e-01 +2.238000e+01 -9.578986e-02 +2.240000e+01 -8.134963e-02 +2.242000e+01 -6.608793e-02 +2.244000e+01 -5.015888e-02 +2.246000e+01 -3.372332e-02 +2.248000e+01 -1.694723e-02 +2.250000e+01 -7.444643e-16 +2.252000e+01 1.694723e-02 +2.254000e+01 3.372332e-02 +2.256000e+01 5.015888e-02 +2.258000e+01 6.608793e-02 +2.260000e+01 8.134963e-02 +2.262000e+01 9.578986e-02 +2.264000e+01 1.092628e-01 +2.266000e+01 1.216324e-01 +2.268000e+01 1.327738e-01 +2.270000e+01 1.425744e-01 +2.272000e+01 1.509354e-01 +2.274000e+01 1.577722e-01 +2.276000e+01 1.630158e-01 +2.278000e+01 1.666132e-01 +2.280000e+01 1.685283e-01 +2.282000e+01 1.687415e-01 +2.284000e+01 1.672508e-01 +2.286000e+01 1.640712e-01 +2.288000e+01 1.592348e-01 +2.290000e+01 1.527904e-01 +2.292000e+01 1.448032e-01 +2.294000e+01 1.353538e-01 +2.296000e+01 1.245375e-01 +2.298000e+01 1.124637e-01 +2.300000e+01 9.925428e-02 +2.302000e+01 8.504255e-02 +2.304000e+01 6.997207e-02 +2.306000e+01 5.419501e-02 +2.308000e+01 3.787069e-02 +2.310000e+01 2.116395e-02 +2.312000e+01 4.243505e-03 +2.314000e+01 -1.271979e-02 +2.316000e+01 -2.955465e-02 +2.318000e+01 -4.609106e-02 +2.320000e+01 -6.216205e-02 +2.322000e+01 -7.760533e-02 +2.324000e+01 -9.226495e-02 +2.326000e+01 -1.059929e-01 +2.328000e+01 -1.186505e-01 +2.330000e+01 -1.301100e-01 +2.332000e+01 -1.402556e-01 +2.334000e+01 -1.489850e-01 +2.336000e+01 -1.562099e-01 +2.338000e+01 -1.618574e-01 +2.340000e+01 -1.658705e-01 +2.342000e+01 -1.682086e-01 +2.344000e+01 -1.688481e-01 +2.346000e+01 -1.677827e-01 +2.348000e+01 -1.650229e-01 +2.350000e+01 -1.605968e-01 +2.352000e+01 -1.545490e-01 +2.354000e+01 -1.469405e-01 +2.356000e+01 -1.378482e-01 +2.358000e+01 -1.273640e-01 +2.360000e+01 -1.155936e-01 +2.362000e+01 -1.026560e-01 +2.364000e+01 -8.868176e-02 +2.366000e+01 -7.381201e-02 +2.368000e+01 -5.819691e-02 +2.370000e+01 -4.199414e-02 +2.372000e+01 -2.536731e-02 +2.374000e+01 -8.484329e-03 +2.376000e+01 8.484329e-03 +2.378000e+01 2.536731e-02 +2.380000e+01 4.199414e-02 +2.382000e+01 5.819691e-02 +2.384000e+01 7.381201e-02 +2.386000e+01 8.868176e-02 +2.388000e+01 1.026560e-01 +2.390000e+01 1.155936e-01 +2.392000e+01 1.273640e-01 +2.394000e+01 1.378482e-01 +2.396000e+01 1.469405e-01 +2.398000e+01 1.545490e-01 +2.400000e+01 1.605968e-01 +2.402000e+01 1.650229e-01 +2.404000e+01 1.677827e-01 +2.406000e+01 1.688481e-01 +2.408000e+01 1.682086e-01 +2.410000e+01 1.658705e-01 +2.412000e+01 1.618574e-01 +2.414000e+01 1.562099e-01 +2.416000e+01 1.489850e-01 +2.418000e+01 1.402556e-01 +2.420000e+01 1.301100e-01 +2.422000e+01 1.186505e-01 +2.424000e+01 1.059929e-01 +2.426000e+01 9.226495e-02 +2.428000e+01 7.760533e-02 +2.430000e+01 6.216205e-02 +2.432000e+01 4.609106e-02 +2.434000e+01 2.955465e-02 +2.436000e+01 1.271979e-02 +2.438000e+01 -4.243505e-03 +2.440000e+01 -2.116395e-02 +2.442000e+01 -3.787069e-02 +2.444000e+01 -5.419501e-02 +2.446000e+01 -6.997207e-02 +2.448000e+01 -8.504255e-02 +2.450000e+01 -9.925428e-02 +2.452000e+01 -1.124637e-01 +2.454000e+01 -1.245375e-01 +2.456000e+01 -1.353538e-01 +2.458000e+01 -1.448032e-01 +2.460000e+01 -1.527904e-01 +2.462000e+01 -1.592348e-01 +2.464000e+01 -1.640712e-01 +2.466000e+01 -1.672508e-01 +2.468000e+01 -1.687415e-01 +2.470000e+01 -1.685283e-01 +2.472000e+01 -1.666132e-01 +2.474000e+01 -1.630158e-01 +2.476000e+01 -1.577722e-01 +2.478000e+01 -1.509354e-01 +2.480000e+01 -1.425744e-01 +2.482000e+01 -1.327738e-01 +2.484000e+01 -1.216324e-01 +2.486000e+01 -1.092628e-01 +2.488000e+01 -9.578986e-02 +2.490000e+01 -8.134963e-02 +2.492000e+01 -6.608793e-02 +2.494000e+01 -5.015888e-02 +2.496000e+01 -3.372332e-02 +2.498000e+01 -1.694723e-02 +2.500000e+01 -8.271826e-16 +2.502000e+01 1.694723e-02 +2.504000e+01 3.372332e-02 +2.506000e+01 5.015888e-02 +2.508000e+01 6.608793e-02 +2.510000e+01 8.134963e-02 +2.512000e+01 9.578986e-02 +2.514000e+01 1.092628e-01 +2.516000e+01 1.216324e-01 +2.518000e+01 1.327738e-01 +2.520000e+01 1.425744e-01 +2.522000e+01 1.509354e-01 +2.524000e+01 1.577722e-01 +2.526000e+01 1.630158e-01 +2.528000e+01 1.666132e-01 +2.530000e+01 1.685283e-01 +2.532000e+01 1.687415e-01 +2.534000e+01 1.672508e-01 +2.536000e+01 1.640712e-01 +2.538000e+01 1.592348e-01 +2.540000e+01 1.527904e-01 +2.542000e+01 1.448032e-01 +2.544000e+01 1.353538e-01 +2.546000e+01 1.245375e-01 +2.548000e+01 1.124637e-01 +2.550000e+01 9.925428e-02 +2.552000e+01 8.504255e-02 +2.554000e+01 6.997207e-02 +2.556000e+01 5.419501e-02 +2.558000e+01 3.787069e-02 +2.560000e+01 2.116395e-02 +2.562000e+01 4.243505e-03 +2.564000e+01 -1.271979e-02 +2.566000e+01 -2.955465e-02 +2.568000e+01 -4.609106e-02 +2.570000e+01 -6.216205e-02 +2.572000e+01 -7.760533e-02 +2.574000e+01 -9.226495e-02 +2.576000e+01 -1.059929e-01 +2.578000e+01 -1.186505e-01 +2.580000e+01 -1.301100e-01 +2.582000e+01 -1.402556e-01 +2.584000e+01 -1.489850e-01 +2.586000e+01 -1.562099e-01 +2.588000e+01 -1.618574e-01 +2.590000e+01 -1.658705e-01 +2.592000e+01 -1.682086e-01 +2.594000e+01 -1.688481e-01 +2.596000e+01 -1.677827e-01 +2.598000e+01 -1.650229e-01 +2.600000e+01 -1.605968e-01 +2.602000e+01 -1.545490e-01 +2.604000e+01 -1.469405e-01 +2.606000e+01 -1.378482e-01 +2.608000e+01 -1.273640e-01 +2.610000e+01 -1.155936e-01 +2.612000e+01 -1.026560e-01 +2.614000e+01 -8.868176e-02 +2.616000e+01 -7.381201e-02 +2.618000e+01 -5.819691e-02 +2.620000e+01 -4.199414e-02 +2.622000e+01 -2.536731e-02 +2.624000e+01 -8.484329e-03 +2.626000e+01 8.484329e-03 +2.628000e+01 2.536731e-02 +2.630000e+01 4.199414e-02 +2.632000e+01 5.819691e-02 +2.634000e+01 7.381201e-02 +2.636000e+01 8.868176e-02 +2.638000e+01 1.026560e-01 +2.640000e+01 1.155936e-01 +2.642000e+01 1.273640e-01 +2.644000e+01 1.378482e-01 +2.646000e+01 1.469405e-01 +2.648000e+01 1.545490e-01 +2.650000e+01 1.605968e-01 +2.652000e+01 1.650229e-01 +2.654000e+01 1.677827e-01 +2.656000e+01 1.688481e-01 +2.658000e+01 1.682086e-01 +2.660000e+01 1.658705e-01 +2.662000e+01 1.618574e-01 +2.664000e+01 1.562099e-01 +2.666000e+01 1.489850e-01 +2.668000e+01 1.402556e-01 +2.670000e+01 1.301100e-01 +2.672000e+01 1.186505e-01 +2.674000e+01 1.059929e-01 +2.676000e+01 9.226495e-02 +2.678000e+01 7.760533e-02 +2.680000e+01 6.216205e-02 +2.682000e+01 4.609106e-02 +2.684000e+01 2.955465e-02 +2.686000e+01 1.271979e-02 +2.688000e+01 -4.243505e-03 +2.690000e+01 -2.116395e-02 +2.692000e+01 -3.787069e-02 +2.694000e+01 -5.419501e-02 +2.696000e+01 -6.997207e-02 +2.698000e+01 -8.504255e-02 +2.700000e+01 -9.925428e-02 +2.702000e+01 -1.124637e-01 +2.704000e+01 -1.245375e-01 +2.706000e+01 -1.353538e-01 +2.708000e+01 -1.448032e-01 +2.710000e+01 -1.527904e-01 +2.712000e+01 -1.592348e-01 +2.714000e+01 -1.640712e-01 +2.716000e+01 -1.672508e-01 +2.718000e+01 -1.687415e-01 +2.720000e+01 -1.685283e-01 +2.722000e+01 -1.666132e-01 +2.724000e+01 -1.630158e-01 +2.726000e+01 -1.577722e-01 +2.728000e+01 -1.509354e-01 +2.730000e+01 -1.425744e-01 +2.732000e+01 -1.327738e-01 +2.734000e+01 -1.216324e-01 +2.736000e+01 -1.092628e-01 +2.738000e+01 -9.578986e-02 +2.740000e+01 -8.134963e-02 +2.742000e+01 -6.608793e-02 +2.744000e+01 -5.015888e-02 +2.746000e+01 -3.372332e-02 +2.748000e+01 -1.694723e-02 +2.750000e+01 -3.309567e-15 +2.752000e+01 1.694723e-02 +2.754000e+01 3.372332e-02 +2.756000e+01 5.015888e-02 +2.758000e+01 6.608793e-02 +2.760000e+01 8.134963e-02 +2.762000e+01 9.578986e-02 +2.764000e+01 1.092628e-01 +2.766000e+01 1.216324e-01 +2.768000e+01 1.327738e-01 +2.770000e+01 1.425744e-01 +2.772000e+01 1.509354e-01 +2.774000e+01 1.577722e-01 +2.776000e+01 1.630158e-01 +2.778000e+01 1.666132e-01 +2.780000e+01 1.685283e-01 +2.782000e+01 1.687415e-01 +2.784000e+01 1.672508e-01 +2.786000e+01 1.640712e-01 +2.788000e+01 1.592348e-01 +2.790000e+01 1.527904e-01 +2.792000e+01 1.448032e-01 +2.794000e+01 1.353538e-01 +2.796000e+01 1.245375e-01 +2.798000e+01 1.124637e-01 +2.800000e+01 9.925428e-02 +2.802000e+01 8.504255e-02 +2.804000e+01 6.997207e-02 +2.806000e+01 5.419501e-02 +2.808000e+01 3.787069e-02 +2.810000e+01 2.116395e-02 +2.812000e+01 4.243505e-03 +2.814000e+01 -1.271979e-02 +2.816000e+01 -2.955465e-02 +2.818000e+01 -4.609106e-02 +2.820000e+01 -6.216205e-02 +2.822000e+01 -7.760533e-02 +2.824000e+01 -9.226495e-02 +2.826000e+01 -1.059929e-01 +2.828000e+01 -1.186505e-01 +2.830000e+01 -1.301100e-01 +2.832000e+01 -1.402556e-01 +2.834000e+01 -1.489850e-01 +2.836000e+01 -1.562099e-01 +2.838000e+01 -1.618574e-01 +2.840000e+01 -1.658705e-01 +2.842000e+01 -1.682086e-01 +2.844000e+01 -1.688481e-01 +2.846000e+01 -1.677827e-01 +2.848000e+01 -1.650229e-01 +2.850000e+01 -1.605968e-01 +2.852000e+01 -1.545490e-01 +2.854000e+01 -1.469405e-01 +2.856000e+01 -1.378482e-01 +2.858000e+01 -1.273640e-01 +2.860000e+01 -1.155936e-01 +2.862000e+01 -1.026560e-01 +2.864000e+01 -8.868176e-02 +2.866000e+01 -7.381201e-02 +2.868000e+01 -5.819691e-02 +2.870000e+01 -4.199414e-02 +2.872000e+01 -2.536731e-02 +2.874000e+01 -8.484329e-03 +2.876000e+01 8.484329e-03 +2.878000e+01 2.536731e-02 +2.880000e+01 4.199414e-02 +2.882000e+01 5.819691e-02 +2.884000e+01 7.381201e-02 +2.886000e+01 8.868176e-02 +2.888000e+01 1.026560e-01 +2.890000e+01 1.155936e-01 +2.892000e+01 1.273640e-01 +2.894000e+01 1.378482e-01 +2.896000e+01 1.469405e-01 +2.898000e+01 1.545490e-01 +2.900000e+01 1.605968e-01 +2.902000e+01 1.650229e-01 +2.904000e+01 1.677827e-01 +2.906000e+01 1.688481e-01 +2.908000e+01 1.682086e-01 +2.910000e+01 1.658705e-01 +2.912000e+01 1.618574e-01 +2.914000e+01 1.562099e-01 +2.916000e+01 1.489850e-01 +2.918000e+01 1.402556e-01 +2.920000e+01 1.301100e-01 +2.922000e+01 1.186505e-01 +2.924000e+01 1.059929e-01 +2.926000e+01 9.226495e-02 +2.928000e+01 7.760533e-02 +2.930000e+01 6.216205e-02 +2.932000e+01 4.609106e-02 +2.934000e+01 2.955465e-02 +2.936000e+01 1.271979e-02 +2.938000e+01 -4.243505e-03 +2.940000e+01 -2.116395e-02 +2.942000e+01 -3.787069e-02 +2.944000e+01 -5.419501e-02 +2.946000e+01 -6.997207e-02 +2.948000e+01 -8.504255e-02 +2.950000e+01 -9.925428e-02 +2.952000e+01 -1.124637e-01 +2.954000e+01 -1.245375e-01 +2.956000e+01 -1.353538e-01 +2.958000e+01 -1.448032e-01 +2.960000e+01 -1.527904e-01 +2.962000e+01 -1.592348e-01 +2.964000e+01 -1.640712e-01 +2.966000e+01 -1.672508e-01 +2.968000e+01 -1.687415e-01 +2.970000e+01 -1.685283e-01 +2.972000e+01 -1.666132e-01 +2.974000e+01 -1.630158e-01 +2.976000e+01 -1.577722e-01 +2.978000e+01 -1.509354e-01 +2.980000e+01 -1.425744e-01 +2.982000e+01 -1.327738e-01 +2.984000e+01 -1.216324e-01 +2.986000e+01 -1.092628e-01 +2.988000e+01 -9.578986e-02 +2.990000e+01 -8.134963e-02 +2.992000e+01 -6.608793e-02 +2.994000e+01 -5.015888e-02 +2.996000e+01 -3.372332e-02 +2.998000e+01 -1.694723e-02 +3.000000e+01 -9.926191e-16 +3.002000e+01 1.694723e-02 +3.004000e+01 3.372332e-02 +3.006000e+01 5.015888e-02 +3.008000e+01 6.608793e-02 +3.010000e+01 8.134963e-02 +3.012000e+01 9.578986e-02 +3.014000e+01 1.092628e-01 +3.016000e+01 1.216324e-01 +3.018000e+01 1.327738e-01 +3.020000e+01 1.425744e-01 +3.022000e+01 1.509354e-01 +3.024000e+01 1.577722e-01 +3.026000e+01 1.630158e-01 +3.028000e+01 1.666132e-01 +3.030000e+01 1.685283e-01 +3.032000e+01 1.687415e-01 +3.034000e+01 1.672508e-01 +3.036000e+01 1.640712e-01 +3.038000e+01 1.592348e-01 +3.040000e+01 1.527904e-01 +3.042000e+01 1.448032e-01 +3.044000e+01 1.353538e-01 +3.046000e+01 1.245375e-01 +3.048000e+01 1.124637e-01 +3.050000e+01 9.925428e-02 +3.052000e+01 8.504255e-02 +3.054000e+01 6.997207e-02 +3.056000e+01 5.419501e-02 +3.058000e+01 3.787069e-02 +3.060000e+01 2.116395e-02 +3.062000e+01 4.243505e-03 +3.064000e+01 -1.271979e-02 +3.066000e+01 -2.955465e-02 +3.068000e+01 -4.609106e-02 +3.070000e+01 -6.216205e-02 +3.072000e+01 -7.760533e-02 +3.074000e+01 -9.226495e-02 +3.076000e+01 -1.059929e-01 +3.078000e+01 -1.186505e-01 +3.080000e+01 -1.301100e-01 +3.082000e+01 -1.402556e-01 +3.084000e+01 -1.489850e-01 +3.086000e+01 -1.562099e-01 +3.088000e+01 -1.618574e-01 +3.090000e+01 -1.658705e-01 +3.092000e+01 -1.682086e-01 +3.094000e+01 -1.688481e-01 +3.096000e+01 -1.677827e-01 +3.098000e+01 -1.650229e-01 +3.100000e+01 -1.605968e-01 +3.102000e+01 -1.545490e-01 +3.104000e+01 -1.469405e-01 +3.106000e+01 -1.378482e-01 +3.108000e+01 -1.273640e-01 +3.110000e+01 -1.155936e-01 +3.112000e+01 -1.026560e-01 +3.114000e+01 -8.868176e-02 +3.116000e+01 -7.381201e-02 +3.118000e+01 -5.819691e-02 +3.120000e+01 -4.199414e-02 +3.122000e+01 -2.536731e-02 +3.124000e+01 -8.484329e-03 +3.126000e+01 8.484329e-03 +3.128000e+01 2.536731e-02 +3.130000e+01 4.199414e-02 +3.132000e+01 5.819691e-02 +3.134000e+01 7.381201e-02 +3.136000e+01 8.868176e-02 +3.138000e+01 1.026560e-01 +3.140000e+01 1.155936e-01 +3.142000e+01 1.273640e-01 +3.144000e+01 1.378482e-01 +3.146000e+01 1.469405e-01 +3.148000e+01 1.545490e-01 +3.150000e+01 1.605968e-01 +3.152000e+01 1.650229e-01 +3.154000e+01 1.677827e-01 +3.156000e+01 1.688481e-01 +3.158000e+01 1.682086e-01 +3.160000e+01 1.658705e-01 +3.162000e+01 1.618574e-01 +3.164000e+01 1.562099e-01 +3.166000e+01 1.489850e-01 +3.168000e+01 1.402556e-01 +3.170000e+01 1.301100e-01 +3.172000e+01 1.186505e-01 +3.174000e+01 1.059929e-01 +3.176000e+01 9.226495e-02 +3.178000e+01 7.760533e-02 +3.180000e+01 6.216205e-02 +3.182000e+01 4.609106e-02 +3.184000e+01 2.955465e-02 +3.186000e+01 1.271979e-02 +3.188000e+01 -4.243505e-03 +3.190000e+01 -2.116395e-02 +3.192000e+01 -3.787069e-02 +3.194000e+01 -5.419501e-02 +3.196000e+01 -6.997207e-02 +3.198000e+01 -8.504255e-02 +3.200000e+01 -9.925428e-02 +3.202000e+01 -1.124637e-01 +3.204000e+01 -1.245375e-01 +3.206000e+01 -1.353538e-01 +3.208000e+01 -1.448032e-01 +3.210000e+01 -1.527904e-01 +3.212000e+01 -1.592348e-01 +3.214000e+01 -1.640712e-01 +3.216000e+01 -1.672508e-01 +3.218000e+01 -1.687415e-01 +3.220000e+01 -1.685283e-01 +3.222000e+01 -1.666132e-01 +3.224000e+01 -1.630158e-01 +3.226000e+01 -1.577722e-01 +3.228000e+01 -1.509354e-01 +3.230000e+01 -1.425744e-01 +3.232000e+01 -1.327738e-01 +3.234000e+01 -1.216324e-01 +3.236000e+01 -1.092628e-01 +3.238000e+01 -9.578986e-02 +3.240000e+01 -8.134963e-02 +3.242000e+01 -6.608793e-02 +3.244000e+01 -5.015888e-02 +3.246000e+01 -3.372332e-02 +3.248000e+01 -1.694723e-02 +3.250000e+01 1.324328e-15 +3.252000e+01 1.694723e-02 +3.254000e+01 3.372332e-02 +3.256000e+01 5.015888e-02 +3.258000e+01 6.608793e-02 +3.260000e+01 8.134963e-02 +3.262000e+01 9.578986e-02 +3.264000e+01 1.092628e-01 +3.266000e+01 1.216324e-01 +3.268000e+01 1.327738e-01 +3.270000e+01 1.425744e-01 +3.272000e+01 1.509354e-01 +3.274000e+01 1.577722e-01 +3.276000e+01 1.630158e-01 +3.278000e+01 1.666132e-01 +3.280000e+01 1.685283e-01 +3.282000e+01 1.687415e-01 +3.284000e+01 1.672508e-01 +3.286000e+01 1.640712e-01 +3.288000e+01 1.592348e-01 +3.290000e+01 1.527904e-01 +3.292000e+01 1.448032e-01 +3.294000e+01 1.353538e-01 +3.296000e+01 1.245375e-01 +3.298000e+01 1.124637e-01 +3.300000e+01 9.925428e-02 +3.302000e+01 8.504255e-02 +3.304000e+01 6.997207e-02 +3.306000e+01 5.419501e-02 +3.308000e+01 3.787069e-02 +3.310000e+01 2.116395e-02 +3.312000e+01 4.243505e-03 +3.314000e+01 -1.271979e-02 +3.316000e+01 -2.955465e-02 +3.318000e+01 -4.609106e-02 +3.320000e+01 -6.216205e-02 +3.322000e+01 -7.760533e-02 +3.324000e+01 -9.226495e-02 +3.326000e+01 -1.059929e-01 +3.328000e+01 -1.186505e-01 +3.330000e+01 -1.301100e-01 +3.332000e+01 -1.402556e-01 +3.334000e+01 -1.489850e-01 +3.336000e+01 -1.562099e-01 +3.338000e+01 -1.618574e-01 +3.340000e+01 -1.658705e-01 +3.342000e+01 -1.682086e-01 +3.344000e+01 -1.688481e-01 +3.346000e+01 -1.677827e-01 +3.348000e+01 -1.650229e-01 +3.350000e+01 -1.605968e-01 +3.352000e+01 -1.545490e-01 +3.354000e+01 -1.469405e-01 +3.356000e+01 -1.378482e-01 +3.358000e+01 -1.273640e-01 +3.360000e+01 -1.155936e-01 +3.362000e+01 -1.026560e-01 +3.364000e+01 -8.868176e-02 +3.366000e+01 -7.381201e-02 +3.368000e+01 -5.819691e-02 +3.370000e+01 -4.199414e-02 +3.372000e+01 -2.536731e-02 +3.374000e+01 -8.484329e-03 +3.376000e+01 8.484329e-03 +3.378000e+01 2.536731e-02 +3.380000e+01 4.199414e-02 +3.382000e+01 5.819691e-02 +3.384000e+01 7.381201e-02 +3.386000e+01 8.868176e-02 +3.388000e+01 1.026560e-01 +3.390000e+01 1.155936e-01 +3.392000e+01 1.273640e-01 +3.394000e+01 1.378482e-01 +3.396000e+01 1.469405e-01 +3.398000e+01 1.545490e-01 +3.400000e+01 1.605968e-01 +3.402000e+01 1.650229e-01 +3.404000e+01 1.677827e-01 +3.406000e+01 1.688481e-01 +3.408000e+01 1.682086e-01 +3.410000e+01 1.658705e-01 +3.412000e+01 1.618574e-01 +3.414000e+01 1.562099e-01 +3.416000e+01 1.489850e-01 +3.418000e+01 1.402556e-01 +3.420000e+01 1.301100e-01 +3.422000e+01 1.186505e-01 +3.424000e+01 1.059929e-01 +3.426000e+01 9.226495e-02 +3.428000e+01 7.760533e-02 +3.430000e+01 6.216205e-02 +3.432000e+01 4.609106e-02 +3.434000e+01 2.955465e-02 +3.436000e+01 1.271979e-02 +3.438000e+01 -4.243505e-03 +3.440000e+01 -2.116395e-02 +3.442000e+01 -3.787069e-02 +3.444000e+01 -5.419501e-02 +3.446000e+01 -6.997207e-02 +3.448000e+01 -8.504255e-02 +3.450000e+01 -9.925428e-02 +3.452000e+01 -1.124637e-01 +3.454000e+01 -1.245375e-01 +3.456000e+01 -1.353538e-01 +3.458000e+01 -1.448032e-01 +3.460000e+01 -1.527904e-01 +3.462000e+01 -1.592348e-01 +3.464000e+01 -1.640712e-01 +3.466000e+01 -1.672508e-01 +3.468000e+01 -1.687415e-01 +3.470000e+01 -1.685283e-01 +3.472000e+01 -1.666132e-01 +3.474000e+01 -1.630158e-01 +3.476000e+01 -1.577722e-01 +3.478000e+01 -1.509354e-01 +3.480000e+01 -1.425744e-01 +3.482000e+01 -1.327738e-01 +3.484000e+01 -1.216324e-01 +3.486000e+01 -1.092628e-01 +3.488000e+01 -9.578986e-02 +3.490000e+01 -8.134963e-02 +3.492000e+01 -6.608793e-02 +3.494000e+01 -5.015888e-02 +3.496000e+01 -3.372332e-02 +3.498000e+01 -1.694723e-02 +3.500000e+01 -1.158056e-15 +3.502000e+01 1.694723e-02 +3.504000e+01 3.372332e-02 +3.506000e+01 5.015888e-02 +3.508000e+01 6.608793e-02 +3.510000e+01 8.134963e-02 +3.512000e+01 9.578986e-02 +3.514000e+01 1.092628e-01 +3.516000e+01 1.216324e-01 +3.518000e+01 1.327738e-01 +3.520000e+01 1.425744e-01 +3.522000e+01 1.509354e-01 +3.524000e+01 1.577722e-01 +3.526000e+01 1.630158e-01 +3.528000e+01 1.666132e-01 +3.530000e+01 1.685283e-01 +3.532000e+01 1.687415e-01 +3.534000e+01 1.672508e-01 +3.536000e+01 1.640712e-01 +3.538000e+01 1.592348e-01 +3.540000e+01 1.527904e-01 +3.542000e+01 1.448032e-01 +3.544000e+01 1.353538e-01 +3.546000e+01 1.245375e-01 +3.548000e+01 1.124637e-01 +3.550000e+01 9.925428e-02 +3.552000e+01 8.504255e-02 +3.554000e+01 6.997207e-02 +3.556000e+01 5.419501e-02 +3.558000e+01 3.787069e-02 +3.560000e+01 2.116395e-02 +3.562000e+01 4.243505e-03 +3.564000e+01 -1.271979e-02 +3.566000e+01 -2.955465e-02 +3.568000e+01 -4.609106e-02 +3.570000e+01 -6.216205e-02 +3.572000e+01 -7.760533e-02 +3.574000e+01 -9.226495e-02 +3.576000e+01 -1.059929e-01 +3.578000e+01 -1.186505e-01 +3.580000e+01 -1.301100e-01 +3.582000e+01 -1.402556e-01 +3.584000e+01 -1.489850e-01 +3.586000e+01 -1.562099e-01 +3.588000e+01 -1.618574e-01 +3.590000e+01 -1.658705e-01 +3.592000e+01 -1.682086e-01 +3.594000e+01 -1.688481e-01 +3.596000e+01 -1.677827e-01 +3.598000e+01 -1.650229e-01 +3.600000e+01 -1.605968e-01 +3.602000e+01 -1.545490e-01 +3.604000e+01 -1.469405e-01 +3.606000e+01 -1.378482e-01 +3.608000e+01 -1.273640e-01 +3.610000e+01 -1.155936e-01 +3.612000e+01 -1.026560e-01 +3.614000e+01 -8.868176e-02 +3.616000e+01 -7.381201e-02 +3.618000e+01 -5.819691e-02 +3.620000e+01 -4.199414e-02 +3.622000e+01 -2.536731e-02 +3.624000e+01 -8.484329e-03 +3.626000e+01 8.484329e-03 +3.628000e+01 2.536731e-02 +3.630000e+01 4.199414e-02 +3.632000e+01 5.819691e-02 +3.634000e+01 7.381201e-02 +3.636000e+01 8.868176e-02 +3.638000e+01 1.026560e-01 +3.640000e+01 1.155936e-01 +3.642000e+01 1.273640e-01 +3.644000e+01 1.378482e-01 +3.646000e+01 1.469405e-01 +3.648000e+01 1.545490e-01 +3.650000e+01 1.605968e-01 +3.652000e+01 1.650229e-01 +3.654000e+01 1.677827e-01 +3.656000e+01 1.688481e-01 +3.658000e+01 1.682086e-01 +3.660000e+01 1.658705e-01 +3.662000e+01 1.618574e-01 +3.664000e+01 1.562099e-01 +3.666000e+01 1.489850e-01 +3.668000e+01 1.402556e-01 +3.670000e+01 1.301100e-01 +3.672000e+01 1.186505e-01 +3.674000e+01 1.059929e-01 +3.676000e+01 9.226495e-02 +3.678000e+01 7.760533e-02 +3.680000e+01 6.216205e-02 +3.682000e+01 4.609106e-02 +3.684000e+01 2.955465e-02 +3.686000e+01 1.271979e-02 +3.688000e+01 -4.243505e-03 +3.690000e+01 -2.116395e-02 +3.692000e+01 -3.787069e-02 +3.694000e+01 -5.419501e-02 +3.696000e+01 -6.997207e-02 +3.698000e+01 -8.504255e-02 +3.700000e+01 -9.925428e-02 +3.702000e+01 -1.124637e-01 +3.704000e+01 -1.245375e-01 +3.706000e+01 -1.353538e-01 +3.708000e+01 -1.448032e-01 +3.710000e+01 -1.527904e-01 +3.712000e+01 -1.592348e-01 +3.714000e+01 -1.640712e-01 +3.716000e+01 -1.672508e-01 +3.718000e+01 -1.687415e-01 +3.720000e+01 -1.685283e-01 +3.722000e+01 -1.666132e-01 +3.724000e+01 -1.630158e-01 +3.726000e+01 -1.577722e-01 +3.728000e+01 -1.509354e-01 +3.730000e+01 -1.425744e-01 +3.732000e+01 -1.327738e-01 +3.734000e+01 -1.216324e-01 +3.736000e+01 -1.092628e-01 +3.738000e+01 -9.578986e-02 +3.740000e+01 -8.134963e-02 +3.742000e+01 -6.608793e-02 +3.744000e+01 -5.015888e-02 +3.746000e+01 -3.372332e-02 +3.748000e+01 -1.694723e-02 +3.750000e+01 -3.640440e-15 +3.752000e+01 1.694723e-02 +3.754000e+01 3.372332e-02 +3.756000e+01 5.015888e-02 +3.758000e+01 6.608793e-02 +3.760000e+01 8.134963e-02 +3.762000e+01 9.578986e-02 +3.764000e+01 1.092628e-01 +3.766000e+01 1.216324e-01 +3.768000e+01 1.327738e-01 +3.770000e+01 1.425744e-01 +3.772000e+01 1.509354e-01 +3.774000e+01 1.577722e-01 +3.776000e+01 1.630158e-01 +3.778000e+01 1.666132e-01 +3.780000e+01 1.685283e-01 +3.782000e+01 1.687415e-01 +3.784000e+01 1.672508e-01 +3.786000e+01 1.640712e-01 +3.788000e+01 1.592348e-01 +3.790000e+01 1.527904e-01 +3.792000e+01 1.448032e-01 +3.794000e+01 1.353538e-01 +3.796000e+01 1.245375e-01 +3.798000e+01 1.124637e-01 +3.800000e+01 9.925428e-02 +3.802000e+01 8.504255e-02 +3.804000e+01 6.997207e-02 +3.806000e+01 5.419501e-02 +3.808000e+01 3.787069e-02 +3.810000e+01 2.116395e-02 +3.812000e+01 4.243505e-03 +3.814000e+01 -1.271979e-02 +3.816000e+01 -2.955465e-02 +3.818000e+01 -4.609106e-02 +3.820000e+01 -6.216205e-02 +3.822000e+01 -7.760533e-02 +3.824000e+01 -9.226495e-02 +3.826000e+01 -1.059929e-01 +3.828000e+01 -1.186505e-01 +3.830000e+01 -1.301100e-01 +3.832000e+01 -1.402556e-01 +3.834000e+01 -1.489850e-01 +3.836000e+01 -1.562099e-01 +3.838000e+01 -1.618574e-01 +3.840000e+01 -1.658705e-01 +3.842000e+01 -1.682086e-01 +3.844000e+01 -1.688481e-01 +3.846000e+01 -1.677827e-01 +3.848000e+01 -1.650229e-01 +3.850000e+01 -1.605968e-01 +3.852000e+01 -1.545490e-01 +3.854000e+01 -1.469405e-01 +3.856000e+01 -1.378482e-01 +3.858000e+01 -1.273640e-01 +3.860000e+01 -1.155936e-01 +3.862000e+01 -1.026560e-01 +3.864000e+01 -8.868176e-02 +3.866000e+01 -7.381201e-02 +3.868000e+01 -5.819691e-02 +3.870000e+01 -4.199414e-02 +3.872000e+01 -2.536731e-02 +3.874000e+01 -8.484329e-03 +3.876000e+01 8.484329e-03 +3.878000e+01 2.536731e-02 +3.880000e+01 4.199414e-02 +3.882000e+01 5.819691e-02 +3.884000e+01 7.381201e-02 +3.886000e+01 8.868176e-02 +3.888000e+01 1.026560e-01 +3.890000e+01 1.155936e-01 +3.892000e+01 1.273640e-01 +3.894000e+01 1.378482e-01 +3.896000e+01 1.469405e-01 +3.898000e+01 1.545490e-01 +3.900000e+01 1.605968e-01 +3.902000e+01 1.650229e-01 +3.904000e+01 1.677827e-01 +3.906000e+01 1.688481e-01 +3.908000e+01 1.682086e-01 +3.910000e+01 1.658705e-01 +3.912000e+01 1.618574e-01 +3.914000e+01 1.562099e-01 +3.916000e+01 1.489850e-01 +3.918000e+01 1.402556e-01 +3.920000e+01 1.301100e-01 +3.922000e+01 1.186505e-01 +3.924000e+01 1.059929e-01 +3.926000e+01 9.226495e-02 +3.928000e+01 7.760533e-02 +3.930000e+01 6.216205e-02 +3.932000e+01 4.609106e-02 +3.934000e+01 2.955465e-02 +3.936000e+01 1.271979e-02 +3.938000e+01 -4.243505e-03 +3.940000e+01 -2.116395e-02 +3.942000e+01 -3.787069e-02 +3.944000e+01 -5.419501e-02 +3.946000e+01 -6.997207e-02 +3.948000e+01 -8.504255e-02 +3.950000e+01 -9.925428e-02 +3.952000e+01 -1.124637e-01 +3.954000e+01 -1.245375e-01 +3.956000e+01 -1.353538e-01 +3.958000e+01 -1.448032e-01 +3.960000e+01 -1.527904e-01 +3.962000e+01 -1.592348e-01 +3.964000e+01 -1.640712e-01 +3.966000e+01 -1.672508e-01 +3.968000e+01 -1.687415e-01 +3.970000e+01 -1.685283e-01 +3.972000e+01 -1.666132e-01 +3.974000e+01 -1.630158e-01 +3.976000e+01 -1.577722e-01 +3.978000e+01 -1.509354e-01 +3.980000e+01 -1.425744e-01 +3.982000e+01 -1.327738e-01 +3.984000e+01 -1.216324e-01 +3.986000e+01 -1.092628e-01 +3.988000e+01 -9.578986e-02 +3.990000e+01 -8.134963e-02 +3.992000e+01 -6.608793e-02 +3.994000e+01 -5.015888e-02 +3.996000e+01 -3.372332e-02 +3.998000e+01 -1.694723e-02 +4.000000e+01 -1.323492e-15 +4.002000e+01 1.694723e-02 +4.004000e+01 3.372332e-02 +4.006000e+01 5.015888e-02 +4.008000e+01 6.608793e-02 +4.010000e+01 8.134963e-02 +4.012000e+01 9.578986e-02 +4.014000e+01 1.092628e-01 +4.016000e+01 1.216324e-01 +4.018000e+01 1.327738e-01 +4.020000e+01 1.425744e-01 +4.022000e+01 1.509354e-01 +4.024000e+01 1.577722e-01 +4.026000e+01 1.630158e-01 +4.028000e+01 1.666132e-01 +4.030000e+01 1.685283e-01 +4.032000e+01 1.687415e-01 +4.034000e+01 1.672508e-01 +4.036000e+01 1.640712e-01 +4.038000e+01 1.592348e-01 +4.040000e+01 1.527904e-01 +4.042000e+01 1.448032e-01 +4.044000e+01 1.353538e-01 +4.046000e+01 1.245375e-01 +4.048000e+01 1.124637e-01 +4.050000e+01 9.925428e-02 +4.052000e+01 8.504255e-02 +4.054000e+01 6.997207e-02 +4.056000e+01 5.419501e-02 +4.058000e+01 3.787069e-02 +4.060000e+01 2.116395e-02 +4.062000e+01 4.243505e-03 +4.064000e+01 -1.271979e-02 +4.066000e+01 -2.955465e-02 +4.068000e+01 -4.609106e-02 +4.070000e+01 -6.216205e-02 +4.072000e+01 -7.760533e-02 +4.074000e+01 -9.226495e-02 +4.076000e+01 -1.059929e-01 +4.078000e+01 -1.186505e-01 +4.080000e+01 -1.301100e-01 +4.082000e+01 -1.402556e-01 +4.084000e+01 -1.489850e-01 +4.086000e+01 -1.562099e-01 +4.088000e+01 -1.618574e-01 +4.090000e+01 -1.658705e-01 +4.092000e+01 -1.682086e-01 +4.094000e+01 -1.688481e-01 +4.096000e+01 -1.677827e-01 +4.098000e+01 -1.650229e-01 +4.100000e+01 -1.605968e-01 +4.102000e+01 -1.545490e-01 +4.104000e+01 -1.469405e-01 +4.106000e+01 -1.378482e-01 +4.108000e+01 -1.273640e-01 +4.110000e+01 -1.155936e-01 +4.112000e+01 -1.026560e-01 +4.114000e+01 -8.868176e-02 +4.116000e+01 -7.381201e-02 +4.118000e+01 -5.819691e-02 +4.120000e+01 -4.199414e-02 +4.122000e+01 -2.536731e-02 +4.124000e+01 -8.484329e-03 +4.126000e+01 8.484329e-03 +4.128000e+01 2.536731e-02 +4.130000e+01 4.199414e-02 +4.132000e+01 5.819691e-02 +4.134000e+01 7.381201e-02 +4.136000e+01 8.868176e-02 +4.138000e+01 1.026560e-01 +4.140000e+01 1.155936e-01 +4.142000e+01 1.273640e-01 +4.144000e+01 1.378482e-01 +4.146000e+01 1.469405e-01 +4.148000e+01 1.545490e-01 +4.150000e+01 1.605968e-01 +4.152000e+01 1.650229e-01 +4.154000e+01 1.677827e-01 +4.156000e+01 1.688481e-01 +4.158000e+01 1.682086e-01 +4.160000e+01 1.658705e-01 +4.162000e+01 1.618574e-01 +4.164000e+01 1.562099e-01 +4.166000e+01 1.489850e-01 +4.168000e+01 1.402556e-01 +4.170000e+01 1.301100e-01 +4.172000e+01 1.186505e-01 +4.174000e+01 1.059929e-01 +4.176000e+01 9.226495e-02 +4.178000e+01 7.760533e-02 +4.180000e+01 6.216205e-02 +4.182000e+01 4.609106e-02 +4.184000e+01 2.955465e-02 +4.186000e+01 1.271979e-02 +4.188000e+01 -4.243505e-03 +4.190000e+01 -2.116395e-02 +4.192000e+01 -3.787069e-02 +4.194000e+01 -5.419501e-02 +4.196000e+01 -6.997207e-02 +4.198000e+01 -8.504255e-02 +4.200000e+01 -9.925428e-02 +4.202000e+01 -1.124637e-01 +4.204000e+01 -1.245375e-01 +4.206000e+01 -1.353538e-01 +4.208000e+01 -1.448032e-01 +4.210000e+01 -1.527904e-01 +4.212000e+01 -1.592348e-01 +4.214000e+01 -1.640712e-01 +4.216000e+01 -1.672508e-01 +4.218000e+01 -1.687415e-01 +4.220000e+01 -1.685283e-01 +4.222000e+01 -1.666132e-01 +4.224000e+01 -1.630158e-01 +4.226000e+01 -1.577722e-01 +4.228000e+01 -1.509354e-01 +4.230000e+01 -1.425744e-01 +4.232000e+01 -1.327738e-01 +4.234000e+01 -1.216324e-01 +4.236000e+01 -1.092628e-01 +4.238000e+01 -9.578986e-02 +4.240000e+01 -8.134963e-02 +4.242000e+01 -6.608793e-02 +4.244000e+01 -5.015888e-02 +4.246000e+01 -3.372332e-02 +4.248000e+01 -1.694723e-02 +4.250000e+01 9.934553e-16 +4.252000e+01 1.694723e-02 +4.254000e+01 3.372332e-02 +4.256000e+01 5.015888e-02 +4.258000e+01 6.608793e-02 +4.260000e+01 8.134963e-02 +4.262000e+01 9.578986e-02 +4.264000e+01 1.092628e-01 +4.266000e+01 1.216324e-01 +4.268000e+01 1.327738e-01 +4.270000e+01 1.425744e-01 +4.272000e+01 1.509354e-01 +4.274000e+01 1.577722e-01 +4.276000e+01 1.630158e-01 +4.278000e+01 1.666132e-01 +4.280000e+01 1.685283e-01 +4.282000e+01 1.687415e-01 +4.284000e+01 1.672508e-01 +4.286000e+01 1.640712e-01 +4.288000e+01 1.592348e-01 +4.290000e+01 1.527904e-01 +4.292000e+01 1.448032e-01 +4.294000e+01 1.353538e-01 +4.296000e+01 1.245375e-01 +4.298000e+01 1.124637e-01 +4.300000e+01 9.925428e-02 +4.302000e+01 8.504255e-02 +4.304000e+01 6.997207e-02 +4.306000e+01 5.419501e-02 +4.308000e+01 3.787069e-02 +4.310000e+01 2.116395e-02 +4.312000e+01 4.243505e-03 +4.314000e+01 -1.271979e-02 +4.316000e+01 -2.955465e-02 +4.318000e+01 -4.609106e-02 +4.320000e+01 -6.216205e-02 +4.322000e+01 -7.760533e-02 +4.324000e+01 -9.226495e-02 +4.326000e+01 -1.059929e-01 +4.328000e+01 -1.186505e-01 +4.330000e+01 -1.301100e-01 +4.332000e+01 -1.402556e-01 +4.334000e+01 -1.489850e-01 +4.336000e+01 -1.562099e-01 +4.338000e+01 -1.618574e-01 +4.340000e+01 -1.658705e-01 +4.342000e+01 -1.682086e-01 +4.344000e+01 -1.688481e-01 +4.346000e+01 -1.677827e-01 +4.348000e+01 -1.650229e-01 +4.350000e+01 -1.605968e-01 +4.352000e+01 -1.545490e-01 +4.354000e+01 -1.469405e-01 +4.356000e+01 -1.378482e-01 +4.358000e+01 -1.273640e-01 +4.360000e+01 -1.155936e-01 +4.362000e+01 -1.026560e-01 +4.364000e+01 -8.868176e-02 +4.366000e+01 -7.381201e-02 +4.368000e+01 -5.819691e-02 +4.370000e+01 -4.199414e-02 +4.372000e+01 -2.536731e-02 +4.374000e+01 -8.484329e-03 +4.376000e+01 8.484329e-03 +4.378000e+01 2.536731e-02 +4.380000e+01 4.199414e-02 +4.382000e+01 5.819691e-02 +4.384000e+01 7.381201e-02 +4.386000e+01 8.868176e-02 +4.388000e+01 1.026560e-01 +4.390000e+01 1.155936e-01 +4.392000e+01 1.273640e-01 +4.394000e+01 1.378482e-01 +4.396000e+01 1.469405e-01 +4.398000e+01 1.545490e-01 +4.400000e+01 1.605968e-01 +4.402000e+01 1.650229e-01 +4.404000e+01 1.677827e-01 +4.406000e+01 1.688481e-01 +4.408000e+01 1.682086e-01 +4.410000e+01 1.658705e-01 +4.412000e+01 1.618574e-01 +4.414000e+01 1.562099e-01 +4.416000e+01 1.489850e-01 +4.418000e+01 1.402556e-01 +4.420000e+01 1.301100e-01 +4.422000e+01 1.186505e-01 +4.424000e+01 1.059929e-01 +4.426000e+01 9.226495e-02 +4.428000e+01 7.760533e-02 +4.430000e+01 6.216205e-02 +4.432000e+01 4.609106e-02 +4.434000e+01 2.955465e-02 +4.436000e+01 1.271979e-02 +4.438000e+01 -4.243505e-03 +4.440000e+01 -2.116395e-02 +4.442000e+01 -3.787069e-02 +4.444000e+01 -5.419501e-02 +4.446000e+01 -6.997207e-02 +4.448000e+01 -8.504255e-02 +4.450000e+01 -9.925428e-02 +4.452000e+01 -1.124637e-01 +4.454000e+01 -1.245375e-01 +4.456000e+01 -1.353538e-01 +4.458000e+01 -1.448032e-01 +4.460000e+01 -1.527904e-01 +4.462000e+01 -1.592348e-01 +4.464000e+01 -1.640712e-01 +4.466000e+01 -1.672508e-01 +4.468000e+01 -1.687415e-01 +4.470000e+01 -1.685283e-01 +4.472000e+01 -1.666132e-01 +4.474000e+01 -1.630158e-01 +4.476000e+01 -1.577722e-01 +4.478000e+01 -1.509354e-01 +4.480000e+01 -1.425744e-01 +4.482000e+01 -1.327738e-01 +4.484000e+01 -1.216324e-01 +4.486000e+01 -1.092628e-01 +4.488000e+01 -9.578986e-02 +4.490000e+01 -8.134963e-02 +4.492000e+01 -6.608793e-02 +4.494000e+01 -5.015888e-02 +4.496000e+01 -3.372332e-02 +4.498000e+01 -1.694723e-02 +4.500000e+01 -1.488929e-15 +4.502000e+01 1.694723e-02 +4.504000e+01 3.372332e-02 +4.506000e+01 5.015888e-02 +4.508000e+01 6.608793e-02 +4.510000e+01 8.134963e-02 +4.512000e+01 9.578986e-02 +4.514000e+01 1.092628e-01 +4.516000e+01 1.216324e-01 +4.518000e+01 1.327738e-01 +4.520000e+01 1.425744e-01 +4.522000e+01 1.509354e-01 +4.524000e+01 1.577722e-01 +4.526000e+01 1.630158e-01 +4.528000e+01 1.666132e-01 +4.530000e+01 1.685283e-01 +4.532000e+01 1.687415e-01 +4.534000e+01 1.672508e-01 +4.536000e+01 1.640712e-01 +4.538000e+01 1.592348e-01 +4.540000e+01 1.527904e-01 +4.542000e+01 1.448032e-01 +4.544000e+01 1.353538e-01 +4.546000e+01 1.245375e-01 +4.548000e+01 1.124637e-01 +4.550000e+01 9.925428e-02 +4.552000e+01 8.504255e-02 +4.554000e+01 6.997207e-02 +4.556000e+01 5.419501e-02 +4.558000e+01 3.787069e-02 +4.560000e+01 2.116395e-02 +4.562000e+01 4.243505e-03 +4.564000e+01 -1.271979e-02 +4.566000e+01 -2.955465e-02 +4.568000e+01 -4.609106e-02 +4.570000e+01 -6.216205e-02 +4.572000e+01 -7.760533e-02 +4.574000e+01 -9.226495e-02 +4.576000e+01 -1.059929e-01 +4.578000e+01 -1.186505e-01 +4.580000e+01 -1.301100e-01 +4.582000e+01 -1.402556e-01 +4.584000e+01 -1.489850e-01 +4.586000e+01 -1.562099e-01 +4.588000e+01 -1.618574e-01 +4.590000e+01 -1.658705e-01 +4.592000e+01 -1.682086e-01 +4.594000e+01 -1.688481e-01 +4.596000e+01 -1.677827e-01 +4.598000e+01 -1.650229e-01 +4.600000e+01 -1.605968e-01 +4.602000e+01 -1.545490e-01 +4.604000e+01 -1.469405e-01 +4.606000e+01 -1.378482e-01 +4.608000e+01 -1.273640e-01 +4.610000e+01 -1.155936e-01 +4.612000e+01 -1.026560e-01 +4.614000e+01 -8.868176e-02 +4.616000e+01 -7.381201e-02 +4.618000e+01 -5.819691e-02 +4.620000e+01 -4.199414e-02 +4.622000e+01 -2.536731e-02 +4.624000e+01 -8.484329e-03 +4.626000e+01 8.484329e-03 +4.628000e+01 2.536731e-02 +4.630000e+01 4.199414e-02 +4.632000e+01 5.819691e-02 +4.634000e+01 7.381201e-02 +4.636000e+01 8.868176e-02 +4.638000e+01 1.026560e-01 +4.640000e+01 1.155936e-01 +4.642000e+01 1.273640e-01 +4.644000e+01 1.378482e-01 +4.646000e+01 1.469405e-01 +4.648000e+01 1.545490e-01 +4.650000e+01 1.605968e-01 +4.652000e+01 1.650229e-01 +4.654000e+01 1.677827e-01 +4.656000e+01 1.688481e-01 +4.658000e+01 1.682086e-01 +4.660000e+01 1.658705e-01 +4.662000e+01 1.618574e-01 +4.664000e+01 1.562099e-01 +4.666000e+01 1.489850e-01 +4.668000e+01 1.402556e-01 +4.670000e+01 1.301100e-01 +4.672000e+01 1.186505e-01 +4.674000e+01 1.059929e-01 +4.676000e+01 9.226495e-02 +4.678000e+01 7.760533e-02 +4.680000e+01 6.216205e-02 +4.682000e+01 4.609106e-02 +4.684000e+01 2.955465e-02 +4.686000e+01 1.271979e-02 +4.688000e+01 -4.243505e-03 +4.690000e+01 -2.116395e-02 +4.692000e+01 -3.787069e-02 +4.694000e+01 -5.419501e-02 +4.696000e+01 -6.997207e-02 +4.698000e+01 -8.504255e-02 +4.700000e+01 -9.925428e-02 +4.702000e+01 -1.124637e-01 +4.704000e+01 -1.245375e-01 +4.706000e+01 -1.353538e-01 +4.708000e+01 -1.448032e-01 +4.710000e+01 -1.527904e-01 +4.712000e+01 -1.592348e-01 +4.714000e+01 -1.640712e-01 +4.716000e+01 -1.672508e-01 +4.718000e+01 -1.687415e-01 +4.720000e+01 -1.685283e-01 +4.722000e+01 -1.666132e-01 +4.724000e+01 -1.630158e-01 +4.726000e+01 -1.577722e-01 +4.728000e+01 -1.509354e-01 +4.730000e+01 -1.425744e-01 +4.732000e+01 -1.327738e-01 +4.734000e+01 -1.216324e-01 +4.736000e+01 -1.092628e-01 +4.738000e+01 -9.578986e-02 +4.740000e+01 -8.134963e-02 +4.742000e+01 -6.608793e-02 +4.744000e+01 -5.015888e-02 +4.746000e+01 -3.372332e-02 +4.748000e+01 -1.694723e-02 +4.750000e+01 -3.971313e-15 +4.752000e+01 1.694723e-02 +4.754000e+01 3.372332e-02 +4.756000e+01 5.015888e-02 +4.758000e+01 6.608793e-02 +4.760000e+01 8.134963e-02 +4.762000e+01 9.578986e-02 +4.764000e+01 1.092628e-01 +4.766000e+01 1.216324e-01 +4.768000e+01 1.327738e-01 +4.770000e+01 1.425744e-01 +4.772000e+01 1.509354e-01 +4.774000e+01 1.577722e-01 +4.776000e+01 1.630158e-01 +4.778000e+01 1.666132e-01 +4.780000e+01 1.685283e-01 +4.782000e+01 1.687415e-01 +4.784000e+01 1.672508e-01 +4.786000e+01 1.640712e-01 +4.788000e+01 1.592348e-01 +4.790000e+01 1.527904e-01 +4.792000e+01 1.448032e-01 +4.794000e+01 1.353538e-01 +4.796000e+01 1.245375e-01 +4.798000e+01 1.124637e-01 +4.800000e+01 9.925428e-02 +4.802000e+01 8.504255e-02 +4.804000e+01 6.997207e-02 +4.806000e+01 5.419501e-02 +4.808000e+01 3.787069e-02 +4.810000e+01 2.116395e-02 +4.812000e+01 4.243505e-03 +4.814000e+01 -1.271979e-02 +4.816000e+01 -2.955465e-02 +4.818000e+01 -4.609106e-02 +4.820000e+01 -6.216205e-02 +4.822000e+01 -7.760533e-02 +4.824000e+01 -9.226495e-02 +4.826000e+01 -1.059929e-01 +4.828000e+01 -1.186505e-01 +4.830000e+01 -1.301100e-01 +4.832000e+01 -1.402556e-01 +4.834000e+01 -1.489850e-01 +4.836000e+01 -1.562099e-01 +4.838000e+01 -1.618574e-01 +4.840000e+01 -1.658705e-01 +4.842000e+01 -1.682086e-01 +4.844000e+01 -1.688481e-01 +4.846000e+01 -1.677827e-01 +4.848000e+01 -1.650229e-01 +4.850000e+01 -1.605968e-01 +4.852000e+01 -1.545490e-01 +4.854000e+01 -1.469405e-01 +4.856000e+01 -1.378482e-01 +4.858000e+01 -1.273640e-01 +4.860000e+01 -1.155936e-01 +4.862000e+01 -1.026560e-01 +4.864000e+01 -8.868176e-02 +4.866000e+01 -7.381201e-02 +4.868000e+01 -5.819691e-02 +4.870000e+01 -4.199414e-02 +4.872000e+01 -2.536731e-02 +4.874000e+01 -8.484329e-03 +4.876000e+01 8.484329e-03 +4.878000e+01 2.536731e-02 +4.880000e+01 4.199414e-02 +4.882000e+01 5.819691e-02 +4.884000e+01 7.381201e-02 +4.886000e+01 8.868176e-02 +4.888000e+01 1.026560e-01 +4.890000e+01 1.155936e-01 +4.892000e+01 1.273640e-01 +4.894000e+01 1.378482e-01 +4.896000e+01 1.469405e-01 +4.898000e+01 1.545490e-01 +4.900000e+01 1.605968e-01 +4.902000e+01 1.650229e-01 +4.904000e+01 1.677827e-01 +4.906000e+01 1.688481e-01 +4.908000e+01 1.682086e-01 +4.910000e+01 1.658705e-01 +4.912000e+01 1.618574e-01 +4.914000e+01 1.562099e-01 +4.916000e+01 1.489850e-01 +4.918000e+01 1.402556e-01 +4.920000e+01 1.301100e-01 +4.922000e+01 1.186505e-01 +4.924000e+01 1.059929e-01 +4.926000e+01 9.226495e-02 +4.928000e+01 7.760533e-02 +4.930000e+01 6.216205e-02 +4.932000e+01 4.609106e-02 +4.934000e+01 2.955465e-02 +4.936000e+01 1.271979e-02 +4.938000e+01 -4.243505e-03 +4.940000e+01 -2.116395e-02 +4.942000e+01 -3.787069e-02 +4.944000e+01 -5.419501e-02 +4.946000e+01 -6.997207e-02 +4.948000e+01 -8.504255e-02 +4.950000e+01 -9.925428e-02 +4.952000e+01 -1.124637e-01 +4.954000e+01 -1.245375e-01 +4.956000e+01 -1.353538e-01 +4.958000e+01 -1.448032e-01 +4.960000e+01 -1.527904e-01 +4.962000e+01 -1.592348e-01 +4.964000e+01 -1.640712e-01 +4.966000e+01 -1.672508e-01 +4.968000e+01 -1.687415e-01 +4.970000e+01 -1.685283e-01 +4.972000e+01 -1.666132e-01 +4.974000e+01 -1.630158e-01 +4.976000e+01 -1.577722e-01 +4.978000e+01 -1.509354e-01 +4.980000e+01 -1.425744e-01 +4.982000e+01 -1.327738e-01 +4.984000e+01 -1.216324e-01 +4.986000e+01 -1.092628e-01 +4.988000e+01 -9.578986e-02 +4.990000e+01 -8.134963e-02 +4.992000e+01 -6.608793e-02 +4.994000e+01 -5.015888e-02 +4.996000e+01 -3.372332e-02 +4.998000e+01 -1.694723e-02 +5.000000e+01 -1.654365e-15 +5.002000e+01 1.694723e-02 +5.004000e+01 3.372332e-02 +5.006000e+01 5.015888e-02 +5.008000e+01 6.608793e-02 +5.010000e+01 8.134963e-02 +5.012000e+01 9.578986e-02 +5.014000e+01 1.092628e-01 +5.016000e+01 1.216324e-01 +5.018000e+01 1.327738e-01 +5.020000e+01 1.425744e-01 +5.022000e+01 1.509354e-01 +5.024000e+01 1.577722e-01 +5.026000e+01 1.630158e-01 +5.028000e+01 1.666132e-01 +5.030000e+01 1.685283e-01 +5.032000e+01 1.687415e-01 +5.034000e+01 1.672508e-01 +5.036000e+01 1.640712e-01 +5.038000e+01 1.592348e-01 +5.040000e+01 1.527904e-01 +5.042000e+01 1.448032e-01 +5.044000e+01 1.353538e-01 +5.046000e+01 1.245375e-01 +5.048000e+01 1.124637e-01 +5.050000e+01 9.925428e-02 +5.052000e+01 8.504255e-02 +5.054000e+01 6.997207e-02 +5.056000e+01 5.419501e-02 +5.058000e+01 3.787069e-02 +5.060000e+01 2.116395e-02 +5.062000e+01 4.243505e-03 +5.064000e+01 -1.271979e-02 +5.066000e+01 -2.955465e-02 +5.068000e+01 -4.609106e-02 +5.070000e+01 -6.216205e-02 +5.072000e+01 -7.760533e-02 +5.074000e+01 -9.226495e-02 +5.076000e+01 -1.059929e-01 +5.078000e+01 -1.186505e-01 +5.080000e+01 -1.301100e-01 +5.082000e+01 -1.402556e-01 +5.084000e+01 -1.489850e-01 +5.086000e+01 -1.562099e-01 +5.088000e+01 -1.618574e-01 +5.090000e+01 -1.658705e-01 +5.092000e+01 -1.682086e-01 +5.094000e+01 -1.688481e-01 +5.096000e+01 -1.677827e-01 +5.098000e+01 -1.650229e-01 +5.100000e+01 -1.605968e-01 +5.102000e+01 -1.545490e-01 +5.104000e+01 -1.469405e-01 +5.106000e+01 -1.378482e-01 +5.108000e+01 -1.273640e-01 +5.110000e+01 -1.155936e-01 +5.112000e+01 -1.026560e-01 +5.114000e+01 -8.868176e-02 +5.116000e+01 -7.381201e-02 +5.118000e+01 -5.819691e-02 +5.120000e+01 -4.199414e-02 +5.122000e+01 -2.536731e-02 +5.124000e+01 -8.484329e-03 +5.126000e+01 8.484329e-03 +5.128000e+01 2.536731e-02 +5.130000e+01 4.199414e-02 +5.132000e+01 5.819691e-02 +5.134000e+01 7.381201e-02 +5.136000e+01 8.868176e-02 +5.138000e+01 1.026560e-01 +5.140000e+01 1.155936e-01 +5.142000e+01 1.273640e-01 +5.144000e+01 1.378482e-01 +5.146000e+01 1.469405e-01 +5.148000e+01 1.545490e-01 +5.150000e+01 1.605968e-01 +5.152000e+01 1.650229e-01 +5.154000e+01 1.677827e-01 +5.156000e+01 1.688481e-01 +5.158000e+01 1.682086e-01 +5.160000e+01 1.658705e-01 +5.162000e+01 1.618574e-01 +5.164000e+01 1.562099e-01 +5.166000e+01 1.489850e-01 +5.168000e+01 1.402556e-01 +5.170000e+01 1.301100e-01 +5.172000e+01 1.186505e-01 +5.174000e+01 1.059929e-01 +5.176000e+01 9.226495e-02 +5.178000e+01 7.760533e-02 +5.180000e+01 6.216205e-02 +5.182000e+01 4.609106e-02 +5.184000e+01 2.955465e-02 +5.186000e+01 1.271979e-02 +5.188000e+01 -4.243505e-03 +5.190000e+01 -2.116395e-02 +5.192000e+01 -3.787069e-02 +5.194000e+01 -5.419501e-02 +5.196000e+01 -6.997207e-02 +5.198000e+01 -8.504255e-02 +5.200000e+01 -9.925428e-02 +5.202000e+01 -1.124637e-01 +5.204000e+01 -1.245375e-01 +5.206000e+01 -1.353538e-01 +5.208000e+01 -1.448032e-01 +5.210000e+01 -1.527904e-01 +5.212000e+01 -1.592348e-01 +5.214000e+01 -1.640712e-01 +5.216000e+01 -1.672508e-01 +5.218000e+01 -1.687415e-01 +5.220000e+01 -1.685283e-01 +5.222000e+01 -1.666132e-01 +5.224000e+01 -1.630158e-01 +5.226000e+01 -1.577722e-01 +5.228000e+01 -1.509354e-01 +5.230000e+01 -1.425744e-01 +5.232000e+01 -1.327738e-01 +5.234000e+01 -1.216324e-01 +5.236000e+01 -1.092628e-01 +5.238000e+01 -9.578986e-02 +5.240000e+01 -8.134963e-02 +5.242000e+01 -6.608793e-02 +5.244000e+01 -5.015888e-02 +5.246000e+01 -3.372332e-02 +5.248000e+01 -1.694723e-02 +5.250000e+01 6.625823e-16 +5.252000e+01 1.694723e-02 +5.254000e+01 3.372332e-02 +5.256000e+01 5.015888e-02 +5.258000e+01 6.608793e-02 +5.260000e+01 8.134963e-02 +5.262000e+01 9.578986e-02 +5.264000e+01 1.092628e-01 +5.266000e+01 1.216324e-01 +5.268000e+01 1.327738e-01 +5.270000e+01 1.425744e-01 +5.272000e+01 1.509354e-01 +5.274000e+01 1.577722e-01 +5.276000e+01 1.630158e-01 +5.278000e+01 1.666132e-01 +5.280000e+01 1.685283e-01 +5.282000e+01 1.687415e-01 +5.284000e+01 1.672508e-01 +5.286000e+01 1.640712e-01 +5.288000e+01 1.592348e-01 +5.290000e+01 1.527904e-01 +5.292000e+01 1.448032e-01 +5.294000e+01 1.353538e-01 +5.296000e+01 1.245375e-01 +5.298000e+01 1.124637e-01 +5.300000e+01 9.925428e-02 +5.302000e+01 8.504255e-02 +5.304000e+01 6.997207e-02 +5.306000e+01 5.419501e-02 +5.308000e+01 3.787069e-02 +5.310000e+01 2.116395e-02 +5.312000e+01 4.243505e-03 +5.314000e+01 -1.271979e-02 +5.316000e+01 -2.955465e-02 +5.318000e+01 -4.609106e-02 +5.320000e+01 -6.216205e-02 +5.322000e+01 -7.760533e-02 +5.324000e+01 -9.226495e-02 +5.326000e+01 -1.059929e-01 +5.328000e+01 -1.186505e-01 +5.330000e+01 -1.301100e-01 +5.332000e+01 -1.402556e-01 +5.334000e+01 -1.489850e-01 +5.336000e+01 -1.562099e-01 +5.338000e+01 -1.618574e-01 +5.340000e+01 -1.658705e-01 +5.342000e+01 -1.682086e-01 +5.344000e+01 -1.688481e-01 +5.346000e+01 -1.677827e-01 +5.348000e+01 -1.650229e-01 +5.350000e+01 -1.605968e-01 +5.352000e+01 -1.545490e-01 +5.354000e+01 -1.469405e-01 +5.356000e+01 -1.378482e-01 +5.358000e+01 -1.273640e-01 +5.360000e+01 -1.155936e-01 +5.362000e+01 -1.026560e-01 +5.364000e+01 -8.868176e-02 +5.366000e+01 -7.381201e-02 +5.368000e+01 -5.819691e-02 +5.370000e+01 -4.199414e-02 +5.372000e+01 -2.536731e-02 +5.374000e+01 -8.484329e-03 +5.376000e+01 8.484329e-03 +5.378000e+01 2.536731e-02 +5.380000e+01 4.199414e-02 +5.382000e+01 5.819691e-02 +5.384000e+01 7.381201e-02 +5.386000e+01 8.868176e-02 +5.388000e+01 1.026560e-01 +5.390000e+01 1.155936e-01 +5.392000e+01 1.273640e-01 +5.394000e+01 1.378482e-01 +5.396000e+01 1.469405e-01 +5.398000e+01 1.545490e-01 +5.400000e+01 1.605968e-01 +5.402000e+01 1.650229e-01 +5.404000e+01 1.677827e-01 +5.406000e+01 1.688481e-01 +5.408000e+01 1.682086e-01 +5.410000e+01 1.658705e-01 +5.412000e+01 1.618574e-01 +5.414000e+01 1.562099e-01 +5.416000e+01 1.489850e-01 +5.418000e+01 1.402556e-01 +5.420000e+01 1.301100e-01 +5.422000e+01 1.186505e-01 +5.424000e+01 1.059929e-01 +5.426000e+01 9.226495e-02 +5.428000e+01 7.760533e-02 +5.430000e+01 6.216205e-02 +5.432000e+01 4.609106e-02 +5.434000e+01 2.955465e-02 +5.436000e+01 1.271979e-02 +5.438000e+01 -4.243505e-03 +5.440000e+01 -2.116395e-02 +5.442000e+01 -3.787069e-02 +5.444000e+01 -5.419501e-02 +5.446000e+01 -6.997207e-02 +5.448000e+01 -8.504255e-02 +5.450000e+01 -9.925428e-02 +5.452000e+01 -1.124637e-01 +5.454000e+01 -1.245375e-01 +5.456000e+01 -1.353538e-01 +5.458000e+01 -1.448032e-01 +5.460000e+01 -1.527904e-01 +5.462000e+01 -1.592348e-01 +5.464000e+01 -1.640712e-01 +5.466000e+01 -1.672508e-01 +5.468000e+01 -1.687415e-01 +5.470000e+01 -1.685283e-01 +5.472000e+01 -1.666132e-01 +5.474000e+01 -1.630158e-01 +5.476000e+01 -1.577722e-01 +5.478000e+01 -1.509354e-01 +5.480000e+01 -1.425744e-01 +5.482000e+01 -1.327738e-01 +5.484000e+01 -1.216324e-01 +5.486000e+01 -1.092628e-01 +5.488000e+01 -9.578986e-02 +5.490000e+01 -8.134963e-02 +5.492000e+01 -6.608793e-02 +5.494000e+01 -5.015888e-02 +5.496000e+01 -3.372332e-02 +5.498000e+01 -1.694723e-02 +5.500000e+01 -6.619133e-15 +5.502000e+01 1.694723e-02 +5.504000e+01 3.372332e-02 +5.506000e+01 5.015888e-02 +5.508000e+01 6.608793e-02 +5.510000e+01 8.134963e-02 +5.512000e+01 9.578986e-02 +5.514000e+01 1.092628e-01 +5.516000e+01 1.216324e-01 +5.518000e+01 1.327738e-01 +5.520000e+01 1.425744e-01 +5.522000e+01 1.509354e-01 +5.524000e+01 1.577722e-01 +5.526000e+01 1.630158e-01 +5.528000e+01 1.666132e-01 +5.530000e+01 1.685283e-01 +5.532000e+01 1.687415e-01 +5.534000e+01 1.672508e-01 +5.536000e+01 1.640712e-01 +5.538000e+01 1.592348e-01 +5.540000e+01 1.527904e-01 +5.542000e+01 1.448032e-01 +5.544000e+01 1.353538e-01 +5.546000e+01 1.245375e-01 +5.548000e+01 1.124637e-01 +5.550000e+01 9.925428e-02 +5.552000e+01 8.504255e-02 +5.554000e+01 6.997207e-02 +5.556000e+01 5.419501e-02 +5.558000e+01 3.787069e-02 +5.560000e+01 2.116395e-02 +5.562000e+01 4.243505e-03 +5.564000e+01 -1.271979e-02 +5.566000e+01 -2.955465e-02 +5.568000e+01 -4.609106e-02 +5.570000e+01 -6.216205e-02 +5.572000e+01 -7.760533e-02 +5.574000e+01 -9.226495e-02 +5.576000e+01 -1.059929e-01 +5.578000e+01 -1.186505e-01 +5.580000e+01 -1.301100e-01 +5.582000e+01 -1.402556e-01 +5.584000e+01 -1.489850e-01 +5.586000e+01 -1.562099e-01 +5.588000e+01 -1.618574e-01 +5.590000e+01 -1.658705e-01 +5.592000e+01 -1.682086e-01 +5.594000e+01 -1.688481e-01 +5.596000e+01 -1.677827e-01 +5.598000e+01 -1.650229e-01 +5.600000e+01 -1.605968e-01 +5.602000e+01 -1.545490e-01 +5.604000e+01 -1.469405e-01 +5.606000e+01 -1.378482e-01 +5.608000e+01 -1.273640e-01 +5.610000e+01 -1.155936e-01 +5.612000e+01 -1.026560e-01 +5.614000e+01 -8.868176e-02 +5.616000e+01 -7.381201e-02 +5.618000e+01 -5.819691e-02 +5.620000e+01 -4.199414e-02 +5.622000e+01 -2.536731e-02 +5.624000e+01 -8.484329e-03 +5.626000e+01 8.484329e-03 +5.628000e+01 2.536731e-02 +5.630000e+01 4.199414e-02 +5.632000e+01 5.819691e-02 +5.634000e+01 7.381201e-02 +5.636000e+01 8.868176e-02 +5.638000e+01 1.026560e-01 +5.640000e+01 1.155936e-01 +5.642000e+01 1.273640e-01 +5.644000e+01 1.378482e-01 +5.646000e+01 1.469405e-01 +5.648000e+01 1.545490e-01 +5.650000e+01 1.605968e-01 +5.652000e+01 1.650229e-01 +5.654000e+01 1.677827e-01 +5.656000e+01 1.688481e-01 +5.658000e+01 1.682086e-01 +5.660000e+01 1.658705e-01 +5.662000e+01 1.618574e-01 +5.664000e+01 1.562099e-01 +5.666000e+01 1.489850e-01 +5.668000e+01 1.402556e-01 +5.670000e+01 1.301100e-01 +5.672000e+01 1.186505e-01 +5.674000e+01 1.059929e-01 +5.676000e+01 9.226495e-02 +5.678000e+01 7.760533e-02 +5.680000e+01 6.216205e-02 +5.682000e+01 4.609106e-02 +5.684000e+01 2.955465e-02 +5.686000e+01 1.271979e-02 +5.688000e+01 -4.243505e-03 +5.690000e+01 -2.116395e-02 +5.692000e+01 -3.787069e-02 +5.694000e+01 -5.419501e-02 +5.696000e+01 -6.997207e-02 +5.698000e+01 -8.504255e-02 +5.700000e+01 -9.925428e-02 +5.702000e+01 -1.124637e-01 +5.704000e+01 -1.245375e-01 +5.706000e+01 -1.353538e-01 +5.708000e+01 -1.448032e-01 +5.710000e+01 -1.527904e-01 +5.712000e+01 -1.592348e-01 +5.714000e+01 -1.640712e-01 +5.716000e+01 -1.672508e-01 +5.718000e+01 -1.687415e-01 +5.720000e+01 -1.685283e-01 +5.722000e+01 -1.666132e-01 +5.724000e+01 -1.630158e-01 +5.726000e+01 -1.577722e-01 +5.728000e+01 -1.509354e-01 +5.730000e+01 -1.425744e-01 +5.732000e+01 -1.327738e-01 +5.734000e+01 -1.216324e-01 +5.736000e+01 -1.092628e-01 +5.738000e+01 -9.578986e-02 +5.740000e+01 -8.134963e-02 +5.742000e+01 -6.608793e-02 +5.744000e+01 -5.015888e-02 +5.746000e+01 -3.372332e-02 +5.748000e+01 -1.694723e-02 +5.750000e+01 -4.302186e-15 +5.752000e+01 1.694723e-02 +5.754000e+01 3.372332e-02 +5.756000e+01 5.015888e-02 +5.758000e+01 6.608793e-02 +5.760000e+01 8.134963e-02 +5.762000e+01 9.578986e-02 +5.764000e+01 1.092628e-01 +5.766000e+01 1.216324e-01 +5.768000e+01 1.327738e-01 +5.770000e+01 1.425744e-01 +5.772000e+01 1.509354e-01 +5.774000e+01 1.577722e-01 +5.776000e+01 1.630158e-01 +5.778000e+01 1.666132e-01 +5.780000e+01 1.685283e-01 +5.782000e+01 1.687415e-01 +5.784000e+01 1.672508e-01 +5.786000e+01 1.640712e-01 +5.788000e+01 1.592348e-01 +5.790000e+01 1.527904e-01 +5.792000e+01 1.448032e-01 +5.794000e+01 1.353538e-01 +5.796000e+01 1.245375e-01 +5.798000e+01 1.124637e-01 +5.800000e+01 9.925428e-02 +5.802000e+01 8.504255e-02 +5.804000e+01 6.997207e-02 +5.806000e+01 5.419501e-02 +5.808000e+01 3.787069e-02 +5.810000e+01 2.116395e-02 +5.812000e+01 4.243505e-03 +5.814000e+01 -1.271979e-02 +5.816000e+01 -2.955465e-02 +5.818000e+01 -4.609106e-02 +5.820000e+01 -6.216205e-02 +5.822000e+01 -7.760533e-02 +5.824000e+01 -9.226495e-02 +5.826000e+01 -1.059929e-01 +5.828000e+01 -1.186505e-01 +5.830000e+01 -1.301100e-01 +5.832000e+01 -1.402556e-01 +5.834000e+01 -1.489850e-01 +5.836000e+01 -1.562099e-01 +5.838000e+01 -1.618574e-01 +5.840000e+01 -1.658705e-01 +5.842000e+01 -1.682086e-01 +5.844000e+01 -1.688481e-01 +5.846000e+01 -1.677827e-01 +5.848000e+01 -1.650229e-01 +5.850000e+01 -1.605968e-01 +5.852000e+01 -1.545490e-01 +5.854000e+01 -1.469405e-01 +5.856000e+01 -1.378482e-01 +5.858000e+01 -1.273640e-01 +5.860000e+01 -1.155936e-01 +5.862000e+01 -1.026560e-01 +5.864000e+01 -8.868176e-02 +5.866000e+01 -7.381201e-02 +5.868000e+01 -5.819691e-02 +5.870000e+01 -4.199414e-02 +5.872000e+01 -2.536731e-02 +5.874000e+01 -8.484329e-03 +5.876000e+01 8.484329e-03 +5.878000e+01 2.536731e-02 +5.880000e+01 4.199414e-02 +5.882000e+01 5.819691e-02 +5.884000e+01 7.381201e-02 +5.886000e+01 8.868176e-02 +5.888000e+01 1.026560e-01 +5.890000e+01 1.155936e-01 +5.892000e+01 1.273640e-01 +5.894000e+01 1.378482e-01 +5.896000e+01 1.469405e-01 +5.898000e+01 1.545490e-01 +5.900000e+01 1.605968e-01 +5.902000e+01 1.650229e-01 +5.904000e+01 1.677827e-01 +5.906000e+01 1.688481e-01 +5.908000e+01 1.682086e-01 +5.910000e+01 1.658705e-01 +5.912000e+01 1.618574e-01 +5.914000e+01 1.562099e-01 +5.916000e+01 1.489850e-01 +5.918000e+01 1.402556e-01 +5.920000e+01 1.301100e-01 +5.922000e+01 1.186505e-01 +5.924000e+01 1.059929e-01 +5.926000e+01 9.226495e-02 +5.928000e+01 7.760533e-02 +5.930000e+01 6.216205e-02 +5.932000e+01 4.609106e-02 +5.934000e+01 2.955465e-02 +5.936000e+01 1.271979e-02 +5.938000e+01 -4.243505e-03 +5.940000e+01 -2.116395e-02 +5.942000e+01 -3.787069e-02 +5.944000e+01 -5.419501e-02 +5.946000e+01 -6.997207e-02 +5.948000e+01 -8.504255e-02 +5.950000e+01 -9.925428e-02 +5.952000e+01 -1.124637e-01 +5.954000e+01 -1.245375e-01 +5.956000e+01 -1.353538e-01 +5.958000e+01 -1.448032e-01 +5.960000e+01 -1.527904e-01 +5.962000e+01 -1.592348e-01 +5.964000e+01 -1.640712e-01 +5.966000e+01 -1.672508e-01 +5.968000e+01 -1.687415e-01 +5.970000e+01 -1.685283e-01 +5.972000e+01 -1.666132e-01 +5.974000e+01 -1.630158e-01 +5.976000e+01 -1.577722e-01 +5.978000e+01 -1.509354e-01 +5.980000e+01 -1.425744e-01 +5.982000e+01 -1.327738e-01 +5.984000e+01 -1.216324e-01 +5.986000e+01 -1.092628e-01 +5.988000e+01 -9.578986e-02 +5.990000e+01 -8.134963e-02 +5.992000e+01 -6.608793e-02 +5.994000e+01 -5.015888e-02 +5.996000e+01 -3.372332e-02 +5.998000e+01 -1.694723e-02 +6.000000e+01 -1.985238e-15 +6.002000e+01 1.694723e-02 +6.004000e+01 3.372332e-02 +6.006000e+01 5.015888e-02 +6.008000e+01 6.608793e-02 +6.010000e+01 8.134963e-02 +6.012000e+01 9.578986e-02 +6.014000e+01 1.092628e-01 +6.016000e+01 1.216324e-01 +6.018000e+01 1.327738e-01 +6.020000e+01 1.425744e-01 +6.022000e+01 1.509354e-01 +6.024000e+01 1.577722e-01 +6.026000e+01 1.630158e-01 +6.028000e+01 1.666132e-01 +6.030000e+01 1.685283e-01 +6.032000e+01 1.687415e-01 +6.034000e+01 1.672508e-01 +6.036000e+01 1.640712e-01 +6.038000e+01 1.592348e-01 +6.040000e+01 1.527904e-01 +6.042000e+01 1.448032e-01 +6.044000e+01 1.353538e-01 +6.046000e+01 1.245375e-01 +6.048000e+01 1.124637e-01 +6.050000e+01 9.925428e-02 +6.052000e+01 8.504255e-02 +6.054000e+01 6.997207e-02 +6.056000e+01 5.419501e-02 +6.058000e+01 3.787069e-02 +6.060000e+01 2.116395e-02 +6.062000e+01 4.243505e-03 +6.064000e+01 -1.271979e-02 +6.066000e+01 -2.955465e-02 +6.068000e+01 -4.609106e-02 +6.070000e+01 -6.216205e-02 +6.072000e+01 -7.760533e-02 +6.074000e+01 -9.226495e-02 +6.076000e+01 -1.059929e-01 +6.078000e+01 -1.186505e-01 +6.080000e+01 -1.301100e-01 +6.082000e+01 -1.402556e-01 +6.084000e+01 -1.489850e-01 +6.086000e+01 -1.562099e-01 +6.088000e+01 -1.618574e-01 +6.090000e+01 -1.658705e-01 +6.092000e+01 -1.682086e-01 +6.094000e+01 -1.688481e-01 +6.096000e+01 -1.677827e-01 +6.098000e+01 -1.650229e-01 +6.100000e+01 -1.605968e-01 +6.102000e+01 -1.545490e-01 +6.104000e+01 -1.469405e-01 +6.106000e+01 -1.378482e-01 +6.108000e+01 -1.273640e-01 +6.110000e+01 -1.155936e-01 +6.112000e+01 -1.026560e-01 +6.114000e+01 -8.868176e-02 +6.116000e+01 -7.381201e-02 +6.118000e+01 -5.819691e-02 +6.120000e+01 -4.199414e-02 +6.122000e+01 -2.536731e-02 +6.124000e+01 -8.484329e-03 +6.126000e+01 8.484329e-03 +6.128000e+01 2.536731e-02 +6.130000e+01 4.199414e-02 +6.132000e+01 5.819691e-02 +6.134000e+01 7.381201e-02 +6.136000e+01 8.868176e-02 +6.138000e+01 1.026560e-01 +6.140000e+01 1.155936e-01 +6.142000e+01 1.273640e-01 +6.144000e+01 1.378482e-01 +6.146000e+01 1.469405e-01 +6.148000e+01 1.545490e-01 +6.150000e+01 1.605968e-01 +6.152000e+01 1.650229e-01 +6.154000e+01 1.677827e-01 +6.156000e+01 1.688481e-01 +6.158000e+01 1.682086e-01 +6.160000e+01 1.658705e-01 +6.162000e+01 1.618574e-01 +6.164000e+01 1.562099e-01 +6.166000e+01 1.489850e-01 +6.168000e+01 1.402556e-01 +6.170000e+01 1.301100e-01 +6.172000e+01 1.186505e-01 +6.174000e+01 1.059929e-01 +6.176000e+01 9.226495e-02 +6.178000e+01 7.760533e-02 +6.180000e+01 6.216205e-02 +6.182000e+01 4.609106e-02 +6.184000e+01 2.955465e-02 +6.186000e+01 1.271979e-02 +6.188000e+01 -4.243505e-03 +6.190000e+01 -2.116395e-02 +6.192000e+01 -3.787069e-02 +6.194000e+01 -5.419501e-02 +6.196000e+01 -6.997207e-02 +6.198000e+01 -8.504255e-02 +6.200000e+01 -9.925428e-02 +6.202000e+01 -1.124637e-01 +6.204000e+01 -1.245375e-01 +6.206000e+01 -1.353538e-01 +6.208000e+01 -1.448032e-01 +6.210000e+01 -1.527904e-01 +6.212000e+01 -1.592348e-01 +6.214000e+01 -1.640712e-01 +6.216000e+01 -1.672508e-01 +6.218000e+01 -1.687415e-01 +6.220000e+01 -1.685283e-01 +6.222000e+01 -1.666132e-01 +6.224000e+01 -1.630158e-01 +6.226000e+01 -1.577722e-01 +6.228000e+01 -1.509354e-01 +6.230000e+01 -1.425744e-01 +6.232000e+01 -1.327738e-01 +6.234000e+01 -1.216324e-01 +6.236000e+01 -1.092628e-01 +6.238000e+01 -9.578986e-02 +6.240000e+01 -8.134963e-02 +6.242000e+01 -6.608793e-02 +6.244000e+01 -5.015888e-02 +6.246000e+01 -3.372332e-02 +6.248000e+01 -1.694723e-02 +6.250000e+01 3.317092e-16 diff --git a/examples/inputfiles/OceanWave3D.init.FluxWavemakerWithCurrent b/examples/inputfiles/OceanWave3D.init.FluxWavemakerWithCurrent new file mode 100644 index 0000000..12a8b6a --- /dev/null +++ b/examples/inputfiles/OceanWave3D.init.FluxWavemakerWithCurrent @@ -0,0 +1,403 @@ +Uniform current initial conditions U=0.29412. +3.000000e+01 0.000000e+00 401 1 0.000000e+00 +0.000000e+00 0.000000e+00 +0.000000e+00 2.205882e-02 +0.000000e+00 4.411765e-02 +0.000000e+00 6.617647e-02 +0.000000e+00 8.823529e-02 +0.000000e+00 1.102941e-01 +0.000000e+00 1.323529e-01 +0.000000e+00 1.544118e-01 +0.000000e+00 1.764706e-01 +0.000000e+00 1.985294e-01 +0.000000e+00 2.205882e-01 +0.000000e+00 2.426471e-01 +0.000000e+00 2.647059e-01 +0.000000e+00 2.867647e-01 +0.000000e+00 3.088235e-01 +0.000000e+00 3.308824e-01 +0.000000e+00 3.529412e-01 +0.000000e+00 3.750000e-01 +0.000000e+00 3.970588e-01 +0.000000e+00 4.191176e-01 +0.000000e+00 4.411765e-01 +0.000000e+00 4.632353e-01 +0.000000e+00 4.852941e-01 +0.000000e+00 5.073529e-01 +0.000000e+00 5.294118e-01 +0.000000e+00 5.514706e-01 +0.000000e+00 5.735294e-01 +0.000000e+00 5.955882e-01 +0.000000e+00 6.176471e-01 +0.000000e+00 6.397059e-01 +0.000000e+00 6.617647e-01 +0.000000e+00 6.838235e-01 +0.000000e+00 7.058824e-01 +0.000000e+00 7.279412e-01 +0.000000e+00 7.500000e-01 +0.000000e+00 7.720588e-01 +0.000000e+00 7.941176e-01 +0.000000e+00 8.161765e-01 +0.000000e+00 8.382353e-01 +0.000000e+00 8.602941e-01 +0.000000e+00 8.823529e-01 +0.000000e+00 9.044118e-01 +0.000000e+00 9.264706e-01 +0.000000e+00 9.485294e-01 +0.000000e+00 9.705882e-01 +0.000000e+00 9.926471e-01 +0.000000e+00 1.014706e+00 +0.000000e+00 1.036765e+00 +0.000000e+00 1.058824e+00 +0.000000e+00 1.080882e+00 +0.000000e+00 1.102941e+00 +0.000000e+00 1.125000e+00 +0.000000e+00 1.147059e+00 +0.000000e+00 1.169118e+00 +0.000000e+00 1.191176e+00 +0.000000e+00 1.213235e+00 +0.000000e+00 1.235294e+00 +0.000000e+00 1.257353e+00 +0.000000e+00 1.279412e+00 +0.000000e+00 1.301471e+00 +0.000000e+00 1.323529e+00 +0.000000e+00 1.345588e+00 +0.000000e+00 1.367647e+00 +0.000000e+00 1.389706e+00 +0.000000e+00 1.411765e+00 +0.000000e+00 1.433824e+00 +0.000000e+00 1.455882e+00 +0.000000e+00 1.477941e+00 +0.000000e+00 1.500000e+00 +0.000000e+00 1.522059e+00 +0.000000e+00 1.544118e+00 +0.000000e+00 1.566176e+00 +0.000000e+00 1.588235e+00 +0.000000e+00 1.610294e+00 +0.000000e+00 1.632353e+00 +0.000000e+00 1.654412e+00 +0.000000e+00 1.676471e+00 +0.000000e+00 1.698529e+00 +0.000000e+00 1.720588e+00 +0.000000e+00 1.742647e+00 +0.000000e+00 1.764706e+00 +0.000000e+00 1.786765e+00 +0.000000e+00 1.808824e+00 +0.000000e+00 1.830882e+00 +0.000000e+00 1.852941e+00 +0.000000e+00 1.875000e+00 +0.000000e+00 1.897059e+00 +0.000000e+00 1.919118e+00 +0.000000e+00 1.941176e+00 +0.000000e+00 1.963235e+00 +0.000000e+00 1.985294e+00 +0.000000e+00 2.007353e+00 +0.000000e+00 2.029412e+00 +0.000000e+00 2.051471e+00 +0.000000e+00 2.073529e+00 +0.000000e+00 2.095588e+00 +0.000000e+00 2.117647e+00 +0.000000e+00 2.139706e+00 +0.000000e+00 2.161765e+00 +0.000000e+00 2.183824e+00 +0.000000e+00 2.205882e+00 +0.000000e+00 2.227941e+00 +0.000000e+00 2.250000e+00 +0.000000e+00 2.272059e+00 +0.000000e+00 2.294118e+00 +0.000000e+00 2.316176e+00 +0.000000e+00 2.338235e+00 +0.000000e+00 2.360294e+00 +0.000000e+00 2.382353e+00 +0.000000e+00 2.404412e+00 +0.000000e+00 2.426471e+00 +0.000000e+00 2.448529e+00 +0.000000e+00 2.470588e+00 +0.000000e+00 2.492647e+00 +0.000000e+00 2.514706e+00 +0.000000e+00 2.536765e+00 +0.000000e+00 2.558824e+00 +0.000000e+00 2.580882e+00 +0.000000e+00 2.602941e+00 +0.000000e+00 2.625000e+00 +0.000000e+00 2.647059e+00 +0.000000e+00 2.669118e+00 +0.000000e+00 2.691176e+00 +0.000000e+00 2.713235e+00 +0.000000e+00 2.735294e+00 +0.000000e+00 2.757353e+00 +0.000000e+00 2.779412e+00 +0.000000e+00 2.801471e+00 +0.000000e+00 2.823529e+00 +0.000000e+00 2.845588e+00 +0.000000e+00 2.867647e+00 +0.000000e+00 2.889706e+00 +0.000000e+00 2.911765e+00 +0.000000e+00 2.933824e+00 +0.000000e+00 2.955882e+00 +0.000000e+00 2.977941e+00 +0.000000e+00 3.000000e+00 +0.000000e+00 3.022059e+00 +0.000000e+00 3.044118e+00 +0.000000e+00 3.066176e+00 +0.000000e+00 3.088235e+00 +0.000000e+00 3.110294e+00 +0.000000e+00 3.132353e+00 +0.000000e+00 3.154412e+00 +0.000000e+00 3.176471e+00 +0.000000e+00 3.198529e+00 +0.000000e+00 3.220588e+00 +0.000000e+00 3.242647e+00 +0.000000e+00 3.264706e+00 +0.000000e+00 3.286765e+00 +0.000000e+00 3.308824e+00 +0.000000e+00 3.330882e+00 +0.000000e+00 3.352941e+00 +0.000000e+00 3.375000e+00 +0.000000e+00 3.397059e+00 +0.000000e+00 3.419118e+00 +0.000000e+00 3.441176e+00 +0.000000e+00 3.463235e+00 +0.000000e+00 3.485294e+00 +0.000000e+00 3.507353e+00 +0.000000e+00 3.529412e+00 +0.000000e+00 3.551471e+00 +0.000000e+00 3.573529e+00 +0.000000e+00 3.595588e+00 +0.000000e+00 3.617647e+00 +0.000000e+00 3.639706e+00 +0.000000e+00 3.661765e+00 +0.000000e+00 3.683824e+00 +0.000000e+00 3.705882e+00 +0.000000e+00 3.727941e+00 +0.000000e+00 3.750000e+00 +0.000000e+00 3.772059e+00 +0.000000e+00 3.794118e+00 +0.000000e+00 3.816176e+00 +0.000000e+00 3.838235e+00 +0.000000e+00 3.860294e+00 +0.000000e+00 3.882353e+00 +0.000000e+00 3.904412e+00 +0.000000e+00 3.926471e+00 +0.000000e+00 3.948529e+00 +0.000000e+00 3.970588e+00 +0.000000e+00 3.992647e+00 +0.000000e+00 4.014706e+00 +0.000000e+00 4.036765e+00 +0.000000e+00 4.058824e+00 +0.000000e+00 4.080882e+00 +0.000000e+00 4.102941e+00 +0.000000e+00 4.125000e+00 +0.000000e+00 4.147059e+00 +0.000000e+00 4.169118e+00 +0.000000e+00 4.191176e+00 +0.000000e+00 4.213235e+00 +0.000000e+00 4.235294e+00 +0.000000e+00 4.257353e+00 +0.000000e+00 4.279412e+00 +0.000000e+00 4.301471e+00 +0.000000e+00 4.323529e+00 +0.000000e+00 4.345588e+00 +0.000000e+00 4.367647e+00 +0.000000e+00 4.389706e+00 +0.000000e+00 4.411765e+00 +0.000000e+00 4.433824e+00 +0.000000e+00 4.455882e+00 +0.000000e+00 4.477941e+00 +0.000000e+00 4.500000e+00 +0.000000e+00 4.522059e+00 +0.000000e+00 4.544118e+00 +0.000000e+00 4.566176e+00 +0.000000e+00 4.588235e+00 +0.000000e+00 4.610294e+00 +0.000000e+00 4.632353e+00 +0.000000e+00 4.654412e+00 +0.000000e+00 4.676471e+00 +0.000000e+00 4.698529e+00 +0.000000e+00 4.720588e+00 +0.000000e+00 4.742647e+00 +0.000000e+00 4.764706e+00 +0.000000e+00 4.786765e+00 +0.000000e+00 4.808824e+00 +0.000000e+00 4.830882e+00 +0.000000e+00 4.852941e+00 +0.000000e+00 4.875000e+00 +0.000000e+00 4.897059e+00 +0.000000e+00 4.919118e+00 +0.000000e+00 4.941176e+00 +0.000000e+00 4.963235e+00 +0.000000e+00 4.985294e+00 +0.000000e+00 5.007353e+00 +0.000000e+00 5.029412e+00 +0.000000e+00 5.051471e+00 +0.000000e+00 5.073529e+00 +0.000000e+00 5.095588e+00 +0.000000e+00 5.117647e+00 +0.000000e+00 5.139706e+00 +0.000000e+00 5.161765e+00 +0.000000e+00 5.183824e+00 +0.000000e+00 5.205882e+00 +0.000000e+00 5.227941e+00 +0.000000e+00 5.250000e+00 +0.000000e+00 5.272059e+00 +0.000000e+00 5.294118e+00 +0.000000e+00 5.316176e+00 +0.000000e+00 5.338235e+00 +0.000000e+00 5.360294e+00 +0.000000e+00 5.382353e+00 +0.000000e+00 5.404412e+00 +0.000000e+00 5.426471e+00 +0.000000e+00 5.448529e+00 +0.000000e+00 5.470588e+00 +0.000000e+00 5.492647e+00 +0.000000e+00 5.514706e+00 +0.000000e+00 5.536765e+00 +0.000000e+00 5.558824e+00 +0.000000e+00 5.580882e+00 +0.000000e+00 5.602941e+00 +0.000000e+00 5.625000e+00 +0.000000e+00 5.647059e+00 +0.000000e+00 5.669118e+00 +0.000000e+00 5.691176e+00 +0.000000e+00 5.713235e+00 +0.000000e+00 5.735294e+00 +0.000000e+00 5.757353e+00 +0.000000e+00 5.779412e+00 +0.000000e+00 5.801471e+00 +0.000000e+00 5.823529e+00 +0.000000e+00 5.845588e+00 +0.000000e+00 5.867647e+00 +0.000000e+00 5.889706e+00 +0.000000e+00 5.911765e+00 +0.000000e+00 5.933824e+00 +0.000000e+00 5.955882e+00 +0.000000e+00 5.977941e+00 +0.000000e+00 6.000000e+00 +0.000000e+00 6.022059e+00 +0.000000e+00 6.044118e+00 +0.000000e+00 6.066176e+00 +0.000000e+00 6.088235e+00 +0.000000e+00 6.110294e+00 +0.000000e+00 6.132353e+00 +0.000000e+00 6.154412e+00 +0.000000e+00 6.176471e+00 +0.000000e+00 6.198529e+00 +0.000000e+00 6.220588e+00 +0.000000e+00 6.242647e+00 +0.000000e+00 6.264706e+00 +0.000000e+00 6.286765e+00 +0.000000e+00 6.308824e+00 +0.000000e+00 6.330882e+00 +0.000000e+00 6.352941e+00 +0.000000e+00 6.375000e+00 +0.000000e+00 6.397059e+00 +0.000000e+00 6.419118e+00 +0.000000e+00 6.441176e+00 +0.000000e+00 6.463235e+00 +0.000000e+00 6.485294e+00 +0.000000e+00 6.507353e+00 +0.000000e+00 6.529412e+00 +0.000000e+00 6.551471e+00 +0.000000e+00 6.573529e+00 +0.000000e+00 6.595588e+00 +0.000000e+00 6.617647e+00 +0.000000e+00 6.639706e+00 +0.000000e+00 6.661765e+00 +0.000000e+00 6.683824e+00 +0.000000e+00 6.705882e+00 +0.000000e+00 6.727941e+00 +0.000000e+00 6.750000e+00 +0.000000e+00 6.772059e+00 +0.000000e+00 6.794118e+00 +0.000000e+00 6.816176e+00 +0.000000e+00 6.838235e+00 +0.000000e+00 6.860294e+00 +0.000000e+00 6.882353e+00 +0.000000e+00 6.904412e+00 +0.000000e+00 6.926471e+00 +0.000000e+00 6.948529e+00 +0.000000e+00 6.970588e+00 +0.000000e+00 6.992647e+00 +0.000000e+00 7.014706e+00 +0.000000e+00 7.036765e+00 +0.000000e+00 7.058824e+00 +0.000000e+00 7.080882e+00 +0.000000e+00 7.102941e+00 +0.000000e+00 7.125000e+00 +0.000000e+00 7.147059e+00 +0.000000e+00 7.169118e+00 +0.000000e+00 7.191176e+00 +0.000000e+00 7.213235e+00 +0.000000e+00 7.235294e+00 +0.000000e+00 7.257353e+00 +0.000000e+00 7.279412e+00 +0.000000e+00 7.301471e+00 +0.000000e+00 7.323529e+00 +0.000000e+00 7.345588e+00 +0.000000e+00 7.367647e+00 +0.000000e+00 7.389706e+00 +0.000000e+00 7.411765e+00 +0.000000e+00 7.433824e+00 +0.000000e+00 7.455882e+00 +0.000000e+00 7.477941e+00 +0.000000e+00 7.500000e+00 +0.000000e+00 7.522059e+00 +0.000000e+00 7.544118e+00 +0.000000e+00 7.566176e+00 +0.000000e+00 7.588235e+00 +0.000000e+00 7.610294e+00 +0.000000e+00 7.632353e+00 +0.000000e+00 7.654412e+00 +0.000000e+00 7.676471e+00 +0.000000e+00 7.698529e+00 +0.000000e+00 7.720588e+00 +0.000000e+00 7.742647e+00 +0.000000e+00 7.764706e+00 +0.000000e+00 7.786765e+00 +0.000000e+00 7.808824e+00 +0.000000e+00 7.830882e+00 +0.000000e+00 7.852941e+00 +0.000000e+00 7.875000e+00 +0.000000e+00 7.897059e+00 +0.000000e+00 7.919118e+00 +0.000000e+00 7.941176e+00 +0.000000e+00 7.963235e+00 +0.000000e+00 7.985294e+00 +0.000000e+00 8.007353e+00 +0.000000e+00 8.029412e+00 +0.000000e+00 8.051471e+00 +0.000000e+00 8.073529e+00 +0.000000e+00 8.095588e+00 +0.000000e+00 8.117647e+00 +0.000000e+00 8.139706e+00 +0.000000e+00 8.161765e+00 +0.000000e+00 8.183824e+00 +0.000000e+00 8.205882e+00 +0.000000e+00 8.227941e+00 +0.000000e+00 8.250000e+00 +0.000000e+00 8.272059e+00 +0.000000e+00 8.294118e+00 +0.000000e+00 8.316176e+00 +0.000000e+00 8.338235e+00 +0.000000e+00 8.360294e+00 +0.000000e+00 8.382353e+00 +0.000000e+00 8.404412e+00 +0.000000e+00 8.426471e+00 +0.000000e+00 8.448529e+00 +0.000000e+00 8.470588e+00 +0.000000e+00 8.492647e+00 +0.000000e+00 8.514706e+00 +0.000000e+00 8.536765e+00 +0.000000e+00 8.558824e+00 +0.000000e+00 8.580882e+00 +0.000000e+00 8.602941e+00 +0.000000e+00 8.625000e+00 +0.000000e+00 8.647059e+00 +0.000000e+00 8.669118e+00 +0.000000e+00 8.691176e+00 +0.000000e+00 8.713235e+00 +0.000000e+00 8.735294e+00 +0.000000e+00 8.757353e+00 +0.000000e+00 8.779412e+00 +0.000000e+00 8.801471e+00 +0.000000e+00 8.823529e+00 diff --git a/examples/inputfiles/OceanWave3D.inp.FluxWavemaker2D b/examples/inputfiles/OceanWave3D.inp.FluxWavemaker2D new file mode 100644 index 0000000..d0b2ee9 --- /dev/null +++ b/examples/inputfiles/OceanWave3D.inp.FluxWavemaker2D @@ -0,0 +1,20 @@ +A 2D monochromatic flux boundary wavemaker example. +0 3 1. <- Initial condition (0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 3=Whalin bar, ... see Initialization.f90:SetupInitialConditions); IncWaveType (0=none, 1=stream function, 2=linear regular or irregular waves, 3=flux-type at Western boundary, 4=SF + current, 5=flux wavemaker + current), acceleration factor for the local smoothing filter "breaking model". +30. 1 0.85 401 1 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) +3 3 3 1 1 1 <- alpha, beta, gamma +3001 0.02 1 0 0 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-ExtrapolationON/OFF +9.82 <- gravitational acceleration constant +1 1 0 23 1e-8 1e-6 1 V 1 1 2 <- solver (0:DC, 1:GMRES), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +0.2 0.82 5.84 2.3 0 0 1 6 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter +-150 20 1 1 <- StoreDataOnOff +1 401 1 1 1 1 1 3001 1 <- Whole domain +1 0 <- 0/1=linear/nonlinear computations, Dynamic pressure term on/off +1 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order +0 0 1 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) +1 1 <- Damping pressure zone: PDampingOnOff=0 (off), number of zones. For each zone include the line: x1, x2, y1, y2 (bounds of the zone), gamma0 (dynamic FSBC), Gamma0 (kinematic FSBC), i_damperType (0=friction on the velocity, 1=friction on the potential). +25 30 0 1 1 1 0 +0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) +0 <- Curvilinear on/off +0 1 Mono2D_T1.25Eps05.wavemaker <- RampTime, InterpolationOrder, Paddle signal file. + + diff --git a/examples/inputfiles/OceanWave3D.inp.FluxWavemaker2DWithCurrent b/examples/inputfiles/OceanWave3D.inp.FluxWavemaker2DWithCurrent new file mode 100644 index 0000000..675fdea --- /dev/null +++ b/examples/inputfiles/OceanWave3D.inp.FluxWavemaker2DWithCurrent @@ -0,0 +1,21 @@ +A 2D monochromatic flux boundary condition + a current, coarsely resolved in a long domain +-1 5 1. <- Initial condition (0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 3=Whalin bar, ... see Initialization.f90:SetupInitialConditions); IncWaveType (0=none, 1=stream function, 2=linear regular or irregular waves, 3=flux-type at Western boundary, 4=SF + current, 5=flux wavemaker + current), acceleration factor for the local smoothing filter "breaking model". +30. 1 0.85 401 1 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) +3 3 3 1 1 1 <- alpha, beta, gamma +1501 0.02 1 0 0 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-ExtrapolationON/OFF +9.82 <- gravitational acceleration constant +1 1 0 23 1e-8 1e-6 1 V 1 1 2 <- solver (0:DC, 1:GMRES), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +0.2 0.82 5.84 2.3 0 0 1 6 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter +-150 20 1 1 <- StoreDataOnOff +1 401 1 1 1 1 1 1501 1 <- Whole domain +1 0 <- 0/1=linear/nonlinear computations, Dynamic pressure term on/off +1 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order +0 0 1 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) +1 1 <- Damping pressure zone: PDampingOnOff=0 (off), number of zones. For each zone include the line: x1, x2, y1, y2 (bounds of the zone), gamma0 (dynamic FSBC), Gamma0 (kinematic FSBC), i_damperType (0=friction on the velocity, 1=friction on the potential). +25 30 0 1 1 1 0 +0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) +0 <- Curvilinear on/off +0 1 Mono2D_T1.25Eps05.wavemaker <- RampTime, InterpolationOrder, Paddle signal file. +0.25 <- Uniform flux + + diff --git a/src/IO/ReadInputFileParameters.f90 b/src/IO/ReadInputFileParameters.f90 index fa59b30..d27d3f5 100644 --- a/src/IO/ReadInputFileParameters.f90 +++ b/src/IO/ReadInputFileParameters.f90 @@ -39,10 +39,13 @@ SUBROUTINE ReadInputFileParameters WRITE(fileop(1),FMT='(A//)') ' * g m/s^2. Theoretically breaking should occur between 0.5 and 1.' ! - ! For IncWaveType==4, we add a current to the SF wave, so re-set IncWaveFlag to 1 and turn on the current flag. + ! For IncWaveType==4 or 5, we add a current to the SF wave, so re-set IncWaveFlag to + ! either 1 (for SF wave) or 3 (flux wavemaker), and turn on the current flag. ! IF(IncWaveType==4)THEN IncWaveType=1; CurrentFlux%Flag=1; + ELSEIF(IncWaveType==5) THEN + IncWaveType=3; CurrentFlux%Flag=1; ELSE CurrentFlux%Flag=0 END IF @@ -647,7 +650,8 @@ SUBROUTINE ReadInputFileParameters IF(CurrentFlux%Flag > 0) THEN ! - ! Constant flux through the domain for wave-current interaction, plus a SF wave + ! Constant flux through the domain for wave-current interaction, plus either + ! a SF wave or a flux wavemaker. ! READ(FILEIP(1),*,IOSTAT=ios) CurrentFlux%Q IF (ios>0) THEN @@ -663,18 +667,20 @@ SUBROUTINE ReadInputFileParameters print *, ' ' write(fileop(1), *)'ReadInputFileParameters: Constant current corresponding to a flux of Q=', & CurrentFlux%Q,' has been specified.' - ! - ! Check that the Eulerian velocity is consistent with the current flux if turned on - ! - IF(SFsol%i_euler_or_stokes/=0 .or. abs(SFsol%e_or_s_vel - CurrentFlux%Q/SFsol%h) >= 1.E-8) THEN - print *, ' ' - print *, '************************************************' - print *, '*** Your current flux and stream function solution are not consistent with each other!! ****' - print *, '************************************************' - print *, ' ' - write(fileop(1), *) '************************************************' - write(fileop(1), *) '*** Your current flux and stream function solution are not consistent with each other!! ****' - write(fileop(1), *) '************************************************' + IF (IncWaveType==1) THEN + ! + ! Check that the Eulerian velocity is consistent with the current flux if turned on + ! + IF(SFsol%i_euler_or_stokes/=0 .or. abs(SFsol%e_or_s_vel - CurrentFlux%Q/SFsol%h) >= 1.E-8) THEN + print *, ' ' + print *, '************************************************' + print *, '*** Your current flux and stream function solution are not consistent with each other!! ****' + print *, '************************************************' + print *, ' ' + write(fileop(1), *) '************************************************' + write(fileop(1), *) '*** Your current flux and stream function solution are not consistent with each other!! ****' + write(fileop(1), *) '************************************************' + END IF END IF END IF END IF diff --git a/src/functions/RelaxationModule_new.f90 b/src/functions/RelaxationModule_new.f90 index 549da32..c21d86c 100644 --- a/src/functions/RelaxationModule_new.f90 +++ b/src/functions/RelaxationModule_new.f90 @@ -5,7 +5,7 @@ SUBROUTINE RelaxationModule_new(E,P,RKtime,time) ! By Allan P. Engsig-Karup and Harry B. Bingham ! USE GlobalVariables, ONLY: RelaxZones, FineGrid, SFsol, g, relaxTransientTime, relaxNo, & - GhostGridX, GhostGridY, curvilinearONOFF, RandomWave, IncWaveType + GhostGridX, GhostGridY, curvilinearONOFF, RandomWave, IncWaveType, CurrentFlux USE Precision USE Constants IMPLICIT NONE @@ -14,7 +14,8 @@ SUBROUTINE RelaxationModule_new(E,P,RKtime,time) REAL(KIND=long), DIMENSION(FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY) :: E, P REAL(KIND=long) :: RKtime, time, FAC INTEGER :: i, j, k, j0, j1, k0, k1, krel -REAL(KIND=long) :: tmpx(FineGrid%Nx+2*GhostGridX), tmpy(FineGrid%Ny+2*GhostGridY) +REAL(KIND=long) :: tmpx(FineGrid%Nx+2*GhostGridX), tmpy(FineGrid%Ny+2*GhostGridY), & + tmph(FineGrid%Nx+2*GhostGridX) ! ! The ramp factor in time for smooth initialization of the wave generation. @@ -44,6 +45,7 @@ SUBROUTINE RelaxationModule_new(E,P,RKtime,time) tmpx(:) = FineGrid%x(:,1) tmpy(:) = FineGrid%y(1,:) ENDIF +tmph(:) = FineGrid%h(:,1) !hbb Not sure how this fits into curvilinear... ! ! FOR EACH RELAXATION ZONE ! @@ -57,14 +59,16 @@ SUBROUTINE RelaxationModule_new(E,P,RKtime,time) ! IF (RelaxZones(i)%XorY=='X' .AND. RelaxZones(i)%XorYgen=='X') THEN IF (RelaxZones(i)%WavegenONOFF==0) THEN - ! No incident wave -> damping zone + ! No incident wave -> damping zone. + ! HBB - If there is a current we damp to the current speed IF (RelaxZones(i)%PhiOnOff==1) THEN ! Relax both phi and eta DO j = k0,k1 E(j0:j1,j) = & E(j0:j1,j)*(RelaxZones(i)%gam) P(j0:j1,j) = & - P(j0:j1,j)*(RelaxZones(i)%gam) + P(j0:j1,j)*(RelaxZones(i)%gam) & + + FAC*CurrentFlux%Q/tmph(j0)*tmpx(j0:j1)*(one-RelaxZones(i)%gam) END DO ELSE ! Relax only eta diff --git a/src/initialization/GammaFunctions.f90 b/src/initialization/GammaFunctions.f90 index 197d216..156ed44 100644 --- a/src/initialization/GammaFunctions.f90 +++ b/src/initialization/GammaFunctions.f90 @@ -1,6 +1,7 @@ SUBROUTINE GammaFunctions(x,n,dir,ftype,gam,param) ! -! Gamma functions for relaxation +! Gamma functions for relaxation. +! HBB: added several other options. 3/2019 ! ! By Allan P. Engsig-Karup. USE Precision @@ -16,14 +17,18 @@ SUBROUTINE GammaFunctions(x,n,dir,ftype,gam,param) tmp = x ENDIF SELECT CASE (ABS(ftype)) - CASE (9) ! Allan's sponge filter + CASE (9) ! Allan's sponge filter: 1->0 gam = one - tmp**param - CASE (10) ! third order poly. with clamped BCs + CASE (10) ! third order poly. with clamped BCs: 0->1 gam = three*tmp**2-two*tmp**3 - CASE (11) + CASE (11) ! exponential: 0->1 gam=(exp(tmp**param)-1)/(exp(one)-one) - CASE (12) + CASE (12) ! gamma function, x0=x(n): 0->1 gam=exp(-((x-x(n))/(x(n)-x(1)))**2/(2*param**2)) + CASE (13) ! 1-gamma function, x0=x(n): 1->0 + gam=1-exp(-((x-x(n))/(x(n)-x(1)))**2/(2*param**2)) + CASE (14) ! exponential: 1->0 + gam=1-(exp(tmp**param)-1)/(exp(one)-one) END SELECT IF (dir==-1) THEN ! REVERSE gam = gam(n:1:-1) ! FIXME: not just for x From 55fd2741f0a7dd08b67ac36a91da31ffe2cd1fc9 Mon Sep 17 00:00:00 2001 From: hbbi Date: Sat, 14 Sep 2019 10:49:23 +0200 Subject: [PATCH 46/56] Bug fix on line 45 of PreprocessPDampingZones.f90 - hbb --- src/IO/ReadInputFileParameters.f90 | 2 +- src/initialization/PreprocessPDampingZones.f90 | 2 +- src/initialization/SetupInitialConditions.f90 | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/IO/ReadInputFileParameters.f90 b/src/IO/ReadInputFileParameters.f90 index d27d3f5..5810cce 100644 --- a/src/IO/ReadInputFileParameters.f90 +++ b/src/IO/ReadInputFileParameters.f90 @@ -671,7 +671,7 @@ SUBROUTINE ReadInputFileParameters ! ! Check that the Eulerian velocity is consistent with the current flux if turned on ! - IF(SFsol%i_euler_or_stokes/=0 .or. abs(SFsol%e_or_s_vel - CurrentFlux%Q/SFsol%h) >= 1.E-8) THEN + IF(SFsol%i_euler_or_stokes/=0 .or. abs(SFsol%e_or_s_vel - CurrentFlux%Q/SFsol%h) >= 1.E-6) THEN print *, ' ' print *, '************************************************' print *, '*** Your current flux and stream function solution are not consistent with each other!! ****' diff --git a/src/initialization/PreprocessPDampingZones.f90 b/src/initialization/PreprocessPDampingZones.f90 index ad5dca0..9928065 100644 --- a/src/initialization/PreprocessPDampingZones.f90 +++ b/src/initialization/PreprocessPDampingZones.f90 @@ -41,7 +41,7 @@ Subroutine PreprocessPDampingZones END IF PDampZones(i)%idx(3) = i3!-GhostGridY PDampZones(i)%idx(4) = i4!+GhostGridY - nyd=i3-i4+1; PDampZones(i)%ny=nyd; nd=nxd*nyd + nyd=i4-i3+1; PDampZones(i)%ny=nyd; nd=nxd*nyd print *, ' ' print *, 'Pressure damping zone ',i,' will be applied from x=',tmpx(i1),' to x=',tmpx(i2) print *, ' and from y=',tmpy(i3),' to y=',tmpy(i4) diff --git a/src/initialization/SetupInitialConditions.f90 b/src/initialization/SetupInitialConditions.f90 index 331f096..b150512 100644 --- a/src/initialization/SetupInitialConditions.f90 +++ b/src/initialization/SetupInitialConditions.f90 @@ -58,8 +58,8 @@ SUBROUTINE SetupInitialConditions Print *, ' Reading h and computing derivatives of h numerically.' write(fileop(1),*) ' Reading h and computing derivatives of h numerically.' ! Read in h(x,y) - do j=1,ny - DO i=1,nx + do j=1+GhostGridY,ny+GhostGridY + DO i=1+GhostGridX,nx+GhostGridX READ(fileip(4),*) FineGrid%h(i,j) END DO END do From 2c7e9b77826583b6d8923e820d7753835863eba2 Mon Sep 17 00:00:00 2001 From: hbbingham Date: Mon, 24 Feb 2020 19:01:58 +0100 Subject: [PATCH 47/56] Some cosmetic modification of the example input files plus a logic bug fix in ReadInputParameters. --- ...OceanWave3D.inp.FluxWavemaker2DWithCurrent | 6 ++--- .../OceanWave3D.inp.LinearTravellingWave | 6 ++--- .../OceanWave3D.inp.RandomWave2DShoaling | 2 +- .../inputfiles/OceanWave3D.inp.RandomWave3D | 4 ++-- src/IO/ReadInputFileParameters.f90 | 10 ++++----- src/initialization/Initialize.f90 | 22 +++++++++---------- .../PreprocessPDampingZones.f90 | 8 +++---- .../PreprocessRelaxationZones.f90 | 8 +++---- src/main/OceanWave3DT0Setup.f90 | 8 +++---- src/main/OceanWave3DTakeATimeStep.f90 | 6 ++--- src/variabledefs/globalvariables.f90 | 4 ++-- utils/matlab/IO/ReadKinematics.m | 10 +++++++-- 12 files changed, 50 insertions(+), 44 deletions(-) diff --git a/examples/inputfiles/OceanWave3D.inp.FluxWavemaker2DWithCurrent b/examples/inputfiles/OceanWave3D.inp.FluxWavemaker2DWithCurrent index 675fdea..10c5e2e 100644 --- a/examples/inputfiles/OceanWave3D.inp.FluxWavemaker2DWithCurrent +++ b/examples/inputfiles/OceanWave3D.inp.FluxWavemaker2DWithCurrent @@ -1,4 +1,4 @@ -A 2D monochromatic flux boundary condition + a current, coarsely resolved in a long domain +A 2D monochromatic flux boundary condition + a current. Initial conditions from the nonlinear shallow water equations are in "OceanWave3D.init.FluxWavemakerWithCurrent" which needs to be copied to "OceanWave3D.init" before running. -1 5 1. <- Initial condition (0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 3=Whalin bar, ... see Initialization.f90:SetupInitialConditions); IncWaveType (0=none, 1=stream function, 2=linear regular or irregular waves, 3=flux-type at Western boundary, 4=SF + current, 5=flux wavemaker + current), acceleration factor for the local smoothing filter "breaking model". 30. 1 0.85 401 1 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) 3 3 3 1 1 1 <- alpha, beta, gamma @@ -6,8 +6,8 @@ A 2D monochromatic flux boundary condition + a current, coarsely resolved in a l 9.82 <- gravitational acceleration constant 1 1 0 23 1e-8 1e-6 1 V 1 1 2 <- solver (0:DC, 1:GMRES), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven 0.2 0.82 5.84 2.3 0 0 1 6 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter --150 20 1 1 <- StoreDataOnOff -1 401 1 1 1 1 1 1501 1 <- Whole domain +-75 20 1 1 <- StoreDataOnOff +300 300 1 1 1 1 1 1501 1 <- Kinematics data 1 0 <- 0/1=linear/nonlinear computations, Dynamic pressure term on/off 1 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order 0 0 1 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) diff --git a/examples/inputfiles/OceanWave3D.inp.LinearTravellingWave b/examples/inputfiles/OceanWave3D.inp.LinearTravellingWave index cc56c1a..cdc2d06 100644 --- a/examples/inputfiles/OceanWave3D.inp.LinearTravellingWave +++ b/examples/inputfiles/OceanWave3D.inp.LinearTravellingWave @@ -1,4 +1,4 @@ -A linear wave in 2D +A linear wave in 2D generated using two relaxation zones and absorbed in a third one. 0 2 <- Initial condition (0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 3=Whalin bar, ... see Initialization.f90:SetupInitialConditions); IncWaveType (0=none, 1=stream function, 2=linear irregular, or regular waves) 16. 1. 2. 137 1 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ (0=even,1=clustering) GhostGrid (0=off,1=on) 3 3 3 1 1 1 <- alpha, beta, gamma, alphaprecond, betaprecond, gammaprecond @@ -7,7 +7,7 @@ A linear wave in 2D 1 1 0 23 1e-8 1e-6 1 V 1 1 2 <- solver (0:DC, 1:GMRES), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven 0.002 2. 2.0 1.0 0 0. 1 4 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter (This line is not used unless IncWaveType==1) -40 20 1 1 <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. -80 80 1 1 1 1 1 800 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride +80 80 1 1 1 1 1 801 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride 0 0 <- 0/1=linear/nonlinear computations, dummy variable 0 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order 1 1.6 3 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(= +/- 9,10; sign gives direction) param XorY WavegenONOFF XorYgen degrees(=IC rotation) @@ -16,6 +16,6 @@ A linear wave in 2D 12. 16. 0. 1. 9 3.5 X 0 X 0. 0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) 0 <- Curvilinear on/off --1 1.1312 2. 2. 35. -1 34 0. 0. run06.el 0.0 <- Linear random/regular wave parameters: i_spec, T_p, H_s, h_0, kh_max, seed, seed2, x_0, y_0, Incident_Wave_File (beta). ispec= -1->monochromatic, =0->PM, =1->JONSWAP, =2->Read from Incident_Wave_File, =-30->monochromatic at angle beta, =30->PM at angle beta, =31->JONSWAP at angle beta, =33->JONSWAP at angle beta with normal spreading. +-1 1.1312 2. 2. 35. -1 -34 0. 0. run06.el 0.0 <- Linear random/regular wave parameters: i_spec, T_p, H_s, h_0, kh_max, seed, seed2, x_0, y_0, Incident_Wave_File (beta). ispec= -1->monochromatic, =0->PM, =1->JONSWAP, =2->Read from Incident_Wave_File, =-30->monochromatic at angle beta, =30->PM at angle beta, =31->JONSWAP at angle beta, =33->JONSWAP at angle beta with normal spreading. diff --git a/examples/inputfiles/OceanWave3D.inp.RandomWave2DShoaling b/examples/inputfiles/OceanWave3D.inp.RandomWave2DShoaling index 0c3fde7..12e72cc 100644 --- a/examples/inputfiles/OceanWave3D.inp.RandomWave2DShoaling +++ b/examples/inputfiles/OceanWave3D.inp.RandomWave2DShoaling @@ -7,7 +7,7 @@ A linear random wave shoaling nonlinearly in 2D on a sloping bottom 1 0 23 1e-8 1e-6 1 V 1 1 2 <- GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), absolute tol, maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven 4. 100. 100. 9. 0 0. 1 4 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter (This line is not used unless IncWaveType==1) -50 20 1 1 <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. -1 137 1 1 1 1 1 1024 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride +80 80 1 1 1 1 1 1024 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride 1 0 <- 0/1=linear/nonlinear computations, Applied surface pressure: 0=none, 1=2D Gaussian. 0 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order 1 18. 2 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(= +/- 9,10; sign gives direction) param XorY WavegenONOFF XorYgen degrees(=IC rotation) diff --git a/examples/inputfiles/OceanWave3D.inp.RandomWave3D b/examples/inputfiles/OceanWave3D.inp.RandomWave3D index 19c142c..98e016f 100644 --- a/examples/inputfiles/OceanWave3D.inp.RandomWave3D +++ b/examples/inputfiles/OceanWave3D.inp.RandomWave3D @@ -6,8 +6,8 @@ A flat bottom, linear 3D JONSWAP spectrum with Normal directional spreading arou 9.82 <- gravitational acceleration constant 1 1 0 23 1e-8 1e-6 1 V 1 1 2 <- solver (0:DC, 1:GMRES), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven 0.05 1.00 1.84 2 0 0 1 6 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter --20 20 1 1 <- StoreDataOnOff <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. -1 151 1 10 10 1 1 500 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride +-25 20 1 1 <- StoreDataOnOff <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +80 80 1 10 10 1 1 500 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride 0 0 <- 0/1=linear/nonlinear computations, Dynamic pressure term on/off 0 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order 1 8. 3 X 0.0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) diff --git a/src/IO/ReadInputFileParameters.f90 b/src/IO/ReadInputFileParameters.f90 index 5810cce..0e98da6 100644 --- a/src/IO/ReadInputFileParameters.f90 +++ b/src/IO/ReadInputFileParameters.f90 @@ -302,8 +302,8 @@ SUBROUTINE ReadInputFileParameters BACKSPACE(FILEIP(1)) READ (FILEIP(1),*) StoreDataONOFF, formattype, iKinematics, nOutFiles Allocate (Output(nOutFiles)) - IF (nOutFiles>10)THEN - print *, 'Max. 10 kinematics output files at this point.' + IF (nOutFiles>20)THEN + print *, 'Max. 20 kinematics output files at this point.' stop END IF print *, 'Kinematics output requested in ',nOutFiles,' file(s) named "Kinematics_**.bin".' @@ -585,7 +585,7 @@ SUBROUTINE ReadInputFileParameters stop END IF - ELSEIF (IncWaveType == 2) THEN ! irregular waves + ELSEIF (IncWaveType == 2) THEN ! Monochromatic or irregular waves ! For irregular waves we have four options: ! 0) PM, ! 1) Normal JONSWAP with gamma = 3.3, @@ -596,7 +596,7 @@ SUBROUTINE ReadInputFileParameters READ(FILEIP(1),*,IOSTAT=ios) ispec Backspace(FILEIP(1)) - IF (ispec==0 .or. ispec==1) THEN !Normal PM or JONSWAP spectrum + IF (ispec>-2 .and. ispec<2) THEN !Mono-chromatic, normal PM or JONSWAP spectrum READ(FILEIP(1),*,IOSTAT=ios) ispec, Tp, Hs, h0, & kh_max, seed, seed2, x0, y0 gamma_jonswap = 3.3 @@ -610,7 +610,7 @@ SUBROUTINE ReadInputFileParameters READ(FILEIP(1),*,IOSTAT=ios) ispec, Tp, Hs, h0, & kh_max, seed, seed2, x0, y0, gamma_jonswap - ELSEIF (ispec>=30) THEN ! multi-directional irregular waves + ELSEIF (abs(ispec)>=30) THEN ! multi-directional regular or irregular waves READ(FILEIP(1),*,ERR=37,END=37,IOSTAT=ios) ispec, Tp, Hs, h0, & kh_max, seed, seed2, x0, y0, & inc_wave_file, beta0, s0, gamma_jonswap diff --git a/src/initialization/Initialize.f90 b/src/initialization/Initialize.f90 index 51e3040..57b25b0 100644 --- a/src/initialization/Initialize.f90 +++ b/src/initialization/Initialize.f90 @@ -25,21 +25,21 @@ SUBROUTINE Initialize ! ! OUTPUT !FILEOP(1) = 8 ! LOG.txt -FILEOP(1:16) = (/ (i,i=8,23) /) +FILEOP(1:26) = (/ (i,i=8,33) /) ! First file is the log file. OPEN (UNIT=FILEOP(1),FILE='LOG.txt',STATUS='UNKNOWN') -! Files 2:11 are possible kinematics output files opened and written to in +! Files 2:21 are possible kinematics output files opened and written to in ! subroutine StoreKinematicData, called by the main line. -fnt(1:10) = (/ '01','02','03','04','05','06','07','08','09','10' /) -! File 12 is 'local.smoothing' opened and written to by subroutine 'LocalSmoothing2D' -! called by the main line. -! File 13 is the file 'relax.chk' written to by subroutine PreprocessRelaxationZones +fnt(1:20) = (/ '01','02','03','04','05','06','07','08','09','10','11','12','13','14','15','16','17','18','19','20' /) +! File 22 is 'local.smoothing' opened and written to by subroutine 'LocalSmoothing2D' +! called by OceanWave3DTakeATimeStep. +! File 23 is the file 'relax.chk' written to by subroutine PreprocessRelaxationZones +! called by the OceanWave3DT0Setup. +! File 24 is the file 'roller.dat' written to by subroutine detect_breaking ! called by the main line. -! File 14 is the file 'roller.dat' written to by subroutine detect_breaking -! called by the main line. -! File 15 is the file 'Pdamp.chk' written to by subroutine PreprocessPDampingZones -! called by the main line. -! File 16 is the file 'bathymetry.chk' written to by OceanWave3DT0Setup +! File 25 is the file 'Pdamp.chk' written to by subroutine PreprocessPDampingZones +! called by the OceanWave3DT0Setup. +! File 26 is the file 'bathymetry.chk' written to by OceanWave3DT0Setup ! called by the main line. RETURN diff --git a/src/initialization/PreprocessPDampingZones.f90 b/src/initialization/PreprocessPDampingZones.f90 index 9928065..77462a0 100644 --- a/src/initialization/PreprocessPDampingZones.f90 +++ b/src/initialization/PreprocessPDampingZones.f90 @@ -170,16 +170,16 @@ Subroutine PreprocessPDampingZones ! ! Write out the damping functions for inspection. ! -Open(fileop(15),file='Pdamp.chk',status='unknown') -write(fileop(15),790)'% Pressure damping coefficients: x,y,gammaPhi,gammaEta' +Open(fileop(25),file='Pdamp.chk',status='unknown') +write(fileop(25),790)'% Pressure damping coefficients: x,y,gammaPhi,gammaEta' Do i=1,NDampZones Do j=1,nx - write(fileop(15),792)tmpx(j),tmpy(1),PDampZones(i)%gamPhi(j),PDampZones(i)%gamEta(j) + write(fileop(25),792)tmpx(j),tmpy(1),PDampZones(i)%gamPhi(j),PDampZones(i)%gamEta(j) END Do END Do 790 FORMAT(A) 792 FORMAT(4E16.6) -close(fileop(15)) +close(fileop(25)) CONTAINS diff --git a/src/initialization/PreprocessRelaxationZones.f90 b/src/initialization/PreprocessRelaxationZones.f90 index ed32c0e..94f3708 100644 --- a/src/initialization/PreprocessRelaxationZones.f90 +++ b/src/initialization/PreprocessRelaxationZones.f90 @@ -105,24 +105,24 @@ SUBROUTINE PreprocessRelaxationZones ! ! Write out the relaxation functions for inspection. ! -Open(fileop(13),file='relax.chk',status='unknown') +Open(fileop(23),file='relax.chk',status='unknown') Do i=1,relaxNo IF (RelaxZones(i)%XorY=='X') THEN k=0 Do j=RelaxZones(i)%idx(1),RelaxZones(i)%idx(2) k=k+1 - write(fileop(13),792)j,RelaxZones(i)%idx(3),RelaxZones(i)%gam(k) + write(fileop(23),792)j,RelaxZones(i)%idx(3),RelaxZones(i)%gam(k) END Do ELSE k=0 Do j=RelaxZones(i)%idx(3),RelaxZones(i)%idx(4) k=k+1 - write(fileop(13),792)RelaxZones(i)%idx(1),j,RelaxZones(i)%gam(k) + write(fileop(23),792)RelaxZones(i)%idx(1),j,RelaxZones(i)%gam(k) END Do END IF END Do 792 FORMAT(2i8,1E16.6) -Close(fileop(13)) +Close(fileop(23)) CONTAINS diff --git a/src/main/OceanWave3DT0Setup.f90 b/src/main/OceanWave3DT0Setup.f90 index a492ddf..4ae82ba 100644 --- a/src/main/OceanWave3DT0Setup.f90 +++ b/src/main/OceanWave3DT0Setup.f90 @@ -366,8 +366,8 @@ SUBROUTINE OceanWave3DT0Setup ! ! Now that we are sure that we have all bottom gradients, save the bathymetry data file. ! - Open(FILEOP(16),file='bathymetry.chk',status='unknown') - Write(FILEOP(16),81) + Open(FILEOP(26),file='bathymetry.chk',status='unknown') + Write(FILEOP(26),81) 81 FORMAT('% Bottom bathymetry: ((x(i,j), y(i,j), h(i,j),h_x,h_xx,h_y,h_yy),j=1,Ny),i=1,Nx)') Do j=1,FineGrid%Ny+2*GhostGridY Do i=1,FineGrid%Nx+2*GhostGridX @@ -375,8 +375,8 @@ SUBROUTINE OceanWave3DT0Setup FineGrid%hy(i,j),FineGrid%hyy(i,j) end Do end Do - close(FILEOP(16)) -82 FORMAT(5e16.6) + close(FILEOP(26)) +82 FORMAT(7e16.6) IF (Precond==1) THEN ! PREPARE FOR PRECONDITIONING ! DETERMINE LOW-ORDER FINITE DIFFERENCE STENCILS diff --git a/src/main/OceanWave3DTakeATimeStep.f90 b/src/main/OceanWave3DTakeATimeStep.f90 index d951698..d6c7f83 100644 --- a/src/main/OceanWave3DTakeATimeStep.f90 +++ b/src/main/OceanWave3DTakeATimeStep.f90 @@ -32,10 +32,10 @@ SUBROUTINE OceanWave3DTakeATimeStep ! IF(FineGrid%ny==1)THEN CALL LocalSmoothing2D( FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & - FineGrid%Nz+GhostGridZ,tstep,fileop(12) ) + FineGrid%Nz+GhostGridZ,tstep,fileop(22) ) ELSE CALL LocalSmoothing3D( FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & - FineGrid%Nz+GhostGridZ,tstep,fileop(12) ) + FineGrid%Nz+GhostGridZ,tstep,fileop(22) ) END IF ! ! Check for wave breaking at this step and if found update @@ -45,7 +45,7 @@ SUBROUTINE OceanWave3DTakeATimeStep IF(BreakMod%i_breaking>0 .and. FineGrid%ny==1) THEN ! Call the breaking routine to evolve the rollers and output their geometry. ! This is only implemented in 2D. - CALL detect_breaking(fileop(14),FineGrid%Nx+2*GhostGridX,Wavefield,1) + CALL detect_breaking(fileop(24),FineGrid%Nx+2*GhostGridX,Wavefield,1) end IF ! ! Check for an unstable solution and abort if found diff --git a/src/variabledefs/globalvariables.f90 b/src/variabledefs/globalvariables.f90 index 6bc15b4..a6cafdb 100644 --- a/src/variabledefs/globalvariables.f90 +++ b/src/variabledefs/globalvariables.f90 @@ -11,8 +11,8 @@ MODULE GlobalVariables IMPLICIT NONE ! I/O File handle arrays -INTEGER :: FILEIP(4), FILEOP(16) -CHARACTER(len=2) fnt(10) +INTEGER :: FILEIP(4), FILEOP(26) +CHARACTER(len=2) fnt(20) CHARACTER(LEN=40) :: filenameINPUT, filename, fname_bottom INTEGER :: STAT diff --git a/utils/matlab/IO/ReadKinematics.m b/utils/matlab/IO/ReadKinematics.m index 2a98d34..0fc8262 100644 --- a/utils/matlab/IO/ReadKinematics.m +++ b/utils/matlab/IO/ReadKinematics.m @@ -25,7 +25,11 @@ Plots='no'; % % Open the file -fname=['Kinematics0',num2str(idn),'.bin']; +if idn<10 + fname=['Kinematics0',num2str(idn),'.bin']; +else + fname=['Kinematics',num2str(idn),'.bin']; +end fid1 = fopen(fname); % File ID number for kinematics data % Check for problems @@ -131,7 +135,9 @@ w(it,:)=tmp; junk = fread(fid1,2,int_nbit); % - tmp=fread(fid1,nx*ny*nz,'double'); + [tmp,count]=fread(fid1,nx*ny*nz,'double'); + % Check for an incomplete run. + if count==0, it=it-1; break; end uz(it,:)=tmp; junk = fread(fid1,2,int_nbit); % From 077eb840d630aaaca6017317e17e7df2eaccb15c Mon Sep 17 00:00:00 2001 From: hbbi Date: Sun, 19 Apr 2020 11:16:21 +0200 Subject: [PATCH 48/56] Added the Matlab utility OW3D_LinearDispersionErrorsWith_kh.m to the package under utils/matlab/Analysis. --- .../OW3D_LinearDispersionErrorsWith_kh.m | 271 ++++++++++++++++++ 1 file changed, 271 insertions(+) create mode 100644 utils/matlab/Analysis/OW3D_LinearDispersionErrorsWith_kh.m diff --git a/utils/matlab/Analysis/OW3D_LinearDispersionErrorsWith_kh.m b/utils/matlab/Analysis/OW3D_LinearDispersionErrorsWith_kh.m new file mode 100644 index 0000000..e41618d --- /dev/null +++ b/utils/matlab/Analysis/OW3D_LinearDispersionErrorsWith_kh.m @@ -0,0 +1,271 @@ +function OW3D_LinearDispersionErrorsWith_kh +%% +% +% This utility function can be used to produce linear dispersion error +% plots as a function of kh for one value of nx points per wavelenth, one +% value of stencil 1/2-width alpha, and several values of vertical grid +% points nz. The vertical grid can be uniform or cosine-spaced towards the +% free-surface. +% +% See Engsig-Karup, Bingham and Lindberg, JCP (2009) Sec. 4.3 for a +% detailed discussion of the theory. +% +% Written by H. B. Bingham, DTU Mechanical Engineering. +% +%% +% +% Set nx, alpha, and max. kh and vertical grid spacing. +% +nx=8; % Number of grid points per wavelength. +alpha=3; % Stencil 1/2-width, r=2*alpha+1. 1 <= alpha <= 4. +p=2*alpha; r=p+1; +kh1=30; % kh_max +Spacing='Cosine'; % Vertical spacing can be 'Uniform' or 'Cosine'. +% +%% +% Solve for the dispersion errors and plot. +% +nkh=50; dkh=kh1/(nkh-1); kkh=[.01 [1:nkh-1]*dkh]; +k=2*pi; +% +switch Spacing + case 'Uniform' % Uniform grid + nnz=4; nzvec=[max(round(nx/2),2*alpha+1) nx 2*nx 4*nx]; + for iz=1:length(nzvec) + nz0=nzvec(iz); nz=nz0+1; + for ikh=1:length(kkh) + kh=kkh(ikh); h=kh/k; + dz=h/(nz0-1); z=-dz*[nz0-1:-1:0]; z=[z(1)-(z(2)-z(1)) z]; + + w=SolveForWk2PiGhost(nx,nz,alpha,z); + disp(ikh,iz)=w(nz)/k; + end + dispE=tanh(kkh); + end + case 'Cosine' % Clustered grid + nnz=4; + if alpha==1 + nzvec=[25 50 75 150]; + elseif alpha==2 + nzvec=[9 12 17 max(35,2*nx+1)]; + elseif alpha==3 + nzvec=[7 9 12 17]; + else + nzvec=[p p+2 p+4 2*p]; + end + for iz=1:length(nzvec) + nz0=nzvec(iz); nz=nz0+1; + for ikh=1:length(kkh) + kh=kkh(ikh); h=kh/k; + th0=0; + th1=pi/2; th=th1-th0; dth=th/(nz0-1); l0=sin(th0); l1=sin(th1); + l=l1-l0; zv=h*(-1+(-l0+sin(th0+dth*[0:nz0-1]))/l); + zv=[zv(1)-(zv(2)-zv(1)) zv]; + + w=SolveForWk2PiGhost(nx,nz,alpha,zv); + disp(ikh,iz)=w(nz)/k; + end + dispE=tanh(kkh); + end +end +% +% Plot the errors in dispersion. +% +ifig=0; +ifig=ifig+1;figure(ifig); clf; +plot(kkh,dispE,'-k',kkh,disp(:,1),kkh,disp(:,2),... + kkh,disp(:,3),kkh,disp(:,3)) +legend('Exact',['N_z=',num2str(nzvec(1))],['N_z=',num2str(nzvec(2))],... + ['N_z=',num2str(nzvec(3))],['N_z=',num2str(nzvec(4))],'Location','SouthWest'); +xlabel('kh'); ylabel('Dispersion');grid on; axis([0 kkh(end) 0 1.1]); +switch Spacing + case 'Uniform' + title(['p=',num2str(2*alpha),' uniform grid, N_x=',num2str(nx)]); + case 'Cosine' + title(['p=',num2str(2*alpha),' clustered grid, N_x=',num2str(nx)]); +end +% +ifig=ifig+1; figure(ifig); clf; plot(kkh,disp(:,1)-dispE',':',... + kkh,disp(:,2)-dispE','-.',... + kkh,disp(:,3)-dispE','--',kkh,disp(:,4)-dispE','-') +axis([0 kkh(end) -.02 .02]); +xlabel('kh'); ylabel('Relative dispersion error'); +legend(['N_z=',num2str(nzvec(1))],['N_z=',num2str(nzvec(2))],... + ['N_z=',num2str(nzvec(3))],['N_z=',num2str(nzvec(4))],'Location','NorthWest'); grid on; + +switch Spacing + case 'Uniform' + title(['r=',num2str(r),', uniform vertical grid, N_x=',num2str(nx)]); + case 'Cosine' + title(['r=',num2str(r),', clustered vertical grid, N_x=',num2str(nx)]); +end +%% +% Included functions +% + +function [w phi]=SolveForWk2PiGhost(nx,nz,alpha,z) +%% +% This function solves the discrete linear dispersion operator on a uniform +% horizontal grid using nx grid points per wavelength and a possibly +% non-uniform vertical grid spacing given by z(1:nz). The stencil-size +% of the finite-difference operators is r=2*alpha+1 and they are centered +% in the horizontal but off-centered towards the ends in the vertical. One +% ghost layer is assumed beneath the horizontal bottom to impose both the +% homogeneous Neumann condition and the Laplace equation there. +% +% Only implemented up to alpha=4 at this point. +% +% Written by H.B. Bingham, DTU Mechanical Engineering. +% +rank=2*alpha+1; +% +% The horizontal second-derivative operator. +% +if(alpha==1) + coeffx=nx^2*(-2+2*cos(2*pi/nx)); +elseif(alpha==2) + coeffx=nx^2*(-5/2+8/3*cos(2*pi/nx)-1/6*cos(4*pi/nx)); +elseif(alpha==3) + coeffx=nx^2*(-49/18+3*cos(2*pi/nx)-3/10*cos(4*pi/nx)+1/45*cos(6*pi/nx)); +elseif(alpha==4) + coeffx=nx^2*(-205/72+16/5*cos(2*pi/nx)-2/5*cos(4*pi/nx)+16/315*cos(6*pi/nx)... + -1/280*cos(8*pi/nx)); +else + error('This solution is only implemented up to alpha=4') +end +% +% The vertical first- and second-derivative operators. +% +dfdz=BuildStencilVariable(nz,alpha,z,1); +dfdzz=BuildStencilVariable(nz,alpha,z,2); +% +% Build the matrix for this line of vertical grid points. +% +A=zeros(nz); +A(1,1:rank)=dfdz(1:rank,2); % Bottom condition at grid point 2. +for im=2:alpha % Laplace equation + A(im,1:rank)=dfdzz(1:rank,im); +end +for im=alpha+1:nz-alpha + A(im,im-alpha:im+alpha)=dfdzz(1:rank,im); +end +for im=nz-alpha+1:nz-1 + A(im,nz-rank+1:nz)=dfdzz(1:rank,im); +end +A(nz,nz)=1; % Dirichlet condition at z=0 +% +% Add in the second x-derivative operator. +% +for im=2:nz-1 + A(im,im)=A(im,im)+coeffx; +end +% +% Solver for phi and w. +% +rhs=zeros(nz,1); rhs(nz,1)=1; +phi=A\rhs; +w=DfDxVariable(nz,alpha,phi',dfdz); + +function fx=BuildStencilVariable(N,alpha,x,der) +%% +% A function to compute finite-difference coefficients for the der'th +% derivative of a function on a variably spaced grid x(1:N) using +% 2*alpha+1 neighboring points. N sets of +% coefficients are returned where set 1,2,...,alpha are one-sided schemes +% at the left end, alpha+1,...,N-alpha are centered schemes, and +% N-alpha+1,...,N are one-sided schemes at the right end. +% +% Written by H.B. Bingham, DTU Mechanical Engineering. + +r=2*alpha+1; +% +% One-sided schemes for the left end-points. +% +for ip=1:alpha + c=FornbergInterpolate(x(ip),x(1:r),r,der); + fx(1:r,ip)=c(der+1,1:r)'; +end +% +% The centered schemes +% +for ip=alpha+1:N-alpha + c=FornbergInterpolate(x(ip),x(ip-alpha:ip+alpha),r,der); + fx(1:r,ip)=c(der+1,1:r)'; +end +% +% One-sided schemes for the right end-points. +% +for ip=N-alpha+1:N + c=FornbergInterpolate(x(ip),x(N-r+1:N),r,der); + fx(1:r,ip)=c(der+1,1:r)'; +end + + +function c=FornbergInterpolate(x0,x,n,m) +%% +% A matlab implementation of the algorithm of +% +% B. Fornberg, 1998. "Calculation of weights in finite difference +% formulas". SIAM Rev. Vol. 40, No. 3, pp. 685-691. +% +% for calculating arbitrary-order FD schemes on arbitrary 1-D grids for all +% applicable derivatives. The interpolations are found at the point x0, +% using the function positions x(1:n), for derivatives 0:m, m<=n-1; +% +% +% Written by H.B. Bingham +% Mech. Eng. +% Technical U. of Denmark +% +% This version: 2009 +% +%% +if m>n-1, error('Too many derivatives for this stencil, try again.'); end +% +c1=1; c4=x(1)-x0; +c=zeros(n,m+1); +c(1,1)=1; +for i=2:n + mn=min(i,m+1); c2=1; c5=c4; c4=x(i)-x0; + for j=1:i-1 + c3=x(i)-x(j); + c2=c2*c3; + if j==i-1 + for k=mn:-1:2 + c(k,i)=c1*((k-1)*c(k-1,i-1)-c5*c(k,i-1))/c2; + end + c(1,i)=-c1*c5*c(1,i-1)/c2; + end + for k=mn:-1:2 + c(k,j)=(c4*c(k,j)-(k-1)*c(k-1,j))/c3; + end + c(1,j)=c4*c(1,j)/c3; + end + c1=c2; +end +return + +function fprime=DfDxVariable(N,alpha,f,fx) +%% +% This function takes the first derivative of the vector +% f(1:N) using the N 2*alpha+1 point stencils in fx. +% The stencils are one-sided at the ends and centered in +% the middle. +% +% Written by H. B. Bingham, DTU Mechanical Engineering. +% +% +rank=2*alpha+1; + +% The left end points +for ip=1:alpha + fprime(ip)=f(1:rank)*fx(1:rank,ip); +end +% The mid-section +for ip=alpha+1:N-alpha + fprime(ip)=f(ip-alpha:ip+alpha)*fx(1:rank,ip); +end +%The right end points +for ip=N-alpha+1:N + fprime(ip)=f(N-rank+1:N)*fx(1:rank,ip); +end From f161a8e95ff7f3d02575dcdf6ad8dfc2b6135cf6 Mon Sep 17 00:00:00 2001 From: hbbi Date: Wed, 10 Jun 2020 18:34:54 +0200 Subject: [PATCH 49/56] Fixed a couple of logic bugs in order to get all example test cases to run without errors. --- examples/inputfiles/OceanWave3D.inp.ObliqueRegular1Beach | 5 +++-- examples/inputfiles/OceanWave3D.inp.ObliqueSF_1Beach | 3 ++- examples/inputfiles/OceanWave3D.inp.ObliqueSF_2Beach | 3 ++- examples/inputfiles/OceanWave3D.inp.SubmergedBar2D | 7 ++++--- src/IO/ReadInputFileParameters.f90 | 1 + src/initialization/SetupInitialConditions.f90 | 4 ++-- 6 files changed, 14 insertions(+), 9 deletions(-) diff --git a/examples/inputfiles/OceanWave3D.inp.ObliqueRegular1Beach b/examples/inputfiles/OceanWave3D.inp.ObliqueRegular1Beach index b51d842..c1cab7b 100644 --- a/examples/inputfiles/OceanWave3D.inp.ObliqueRegular1Beach +++ b/examples/inputfiles/OceanWave3D.inp.ObliqueRegular1Beach @@ -6,7 +6,8 @@ A flat bottom, 2D, linear monochromatic wave at an angle of beta=22.5 degrees. 9.82 <- gravitational acceleration constant 1 1 0 23 1e-8 1e-6 1 V 1 1 2 <- solver (0:DC, 1:GMRES), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven 5. 80.00 100. 8. 0 0 1 6 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter --60 0 1 1 <- StoreDataOnOff <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +-60 20 1 1 <- StoreDataOnOff <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +48 49 1 33 33 1 1 21 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride 0 0 <- 0/1=linear/nonlinear computations, Dynamic pressure term on/off 0 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order 1 0. 4 X 0.0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) @@ -17,4 +18,4 @@ A flat bottom, 2D, linear monochromatic wave at an angle of beta=22.5 degrees. 0 0 <- Damping pressure zone: PDampingOnOff=0 (off), number of zones. For each zone include the line: x1, x2, y1, y2 (bounds of the zone), gamma0 (dynamic FSBC), Gamma0 (kinematic FSBC), i_damperType (0=friction on the velocity, 1=friction on the potential). 0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) 0 <- Curvilinear on/off --30 8. 2. 80. 20. -1 34 0. 0. run06.el 22.5 1.0 <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, inc_wave_file, (beta, S if 3D). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. +-30 8. 2. 80. 20. -1 34 0. 0. run06.el 22.5 1.0 3.3 <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, inc_wave_file, (beta, S, gamma if 3D). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP gamma=3.3, 2=>Read from a file, 3=JONSWAP, input gamma; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. diff --git a/examples/inputfiles/OceanWave3D.inp.ObliqueSF_1Beach b/examples/inputfiles/OceanWave3D.inp.ObliqueSF_1Beach index aec0470..dbf81f4 100644 --- a/examples/inputfiles/OceanWave3D.inp.ObliqueSF_1Beach +++ b/examples/inputfiles/OceanWave3D.inp.ObliqueSF_1Beach @@ -6,7 +6,8 @@ A flat bottom, mildly-nonlinear SF wave at an angle of beta=22.5 degrees. Gener 9.82 <- gravitational acceleration constant 1 1 0 23 1e-8 1e-6 1 V 1 1 2 <- solver (0:DC, 1:GMRES), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven 5. 80.00 100. 8. 0 0 1 6 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter --20 0 1 1 <- StoreDataOnOff <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +-20 20 1 1 <- StoreDataOnOff <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +40 41 1 24 24 1 1 21 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride 1 0 <- 0/1=linear/nonlinear computations, Dynamic pressure term on/off 10 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order 1 0. 4 X 22.5 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) diff --git a/examples/inputfiles/OceanWave3D.inp.ObliqueSF_2Beach b/examples/inputfiles/OceanWave3D.inp.ObliqueSF_2Beach index 125f5e6..5ce65f6 100644 --- a/examples/inputfiles/OceanWave3D.inp.ObliqueSF_2Beach +++ b/examples/inputfiles/OceanWave3D.inp.ObliqueSF_2Beach @@ -6,7 +6,8 @@ A flat bottom SF wave at 10 degrees to the x-axis. Generation along 2 walls abso 9.82 <- gravitational acceleration constant 1 1 0 23 1e-8 1e-6 1 V 1 1 4 <- solver (0:DC, 1:GMRES), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven 0.08 1.0 1.0 2.0 0 0 1 6 24 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter --20 0 1 1 <- StoreDataOnOff <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +-20 20 1 1 <- StoreDataOnOff <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +40 41 1 48 48 1 1 21 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride 1 0 <- 0/1=linear/nonlinear computations, Dynamic pressure term on/off 1 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order 1 0. 4 X 10 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) diff --git a/examples/inputfiles/OceanWave3D.inp.SubmergedBar2D b/examples/inputfiles/OceanWave3D.inp.SubmergedBar2D index 5a3cf71..1ec0979 100644 --- a/examples/inputfiles/OceanWave3D.inp.SubmergedBar2D +++ b/examples/inputfiles/OceanWave3D.inp.SubmergedBar2D @@ -1,12 +1,13 @@ -2D submerged bar test +2D submerged bar test with internally generated bathymetry 15 1 <- Initial condition (0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 15=Submerged bar 2D, ... see Initialization.f90:SetupInitial Conditions); IncWaveType (0=none, 1=stream function, 2=linear irregular waves) 35 3 1 513 1 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) 3 3 3 1 1 1 <- alpha, beta, gamma -2000 0.025 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-Extrapolat\ ionON/OFF +2001 0.025 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-Extrapolat\ ionON/OFF 9.81 <- gravitational acceleration constant 1 1 0 35 1e-6 1e-4 1 F 1 1 5 <- Solve (DC=0,GMRES=1) GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven 0.02 0.4 2.0 2.01 1 0 1 4 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter -1 1 <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +-100 20 1 1 <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +200 201 1 1 1 1 1 2001 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride 1 0 <- 0=linear, 1=nonlinear computations 0 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order !1 5 2 0 1 5. 2 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) diff --git a/src/IO/ReadInputFileParameters.f90 b/src/IO/ReadInputFileParameters.f90 index 0e98da6..a458475 100644 --- a/src/IO/ReadInputFileParameters.f90 +++ b/src/IO/ReadInputFileParameters.f90 @@ -631,6 +631,7 @@ SUBROUTINE ReadInputFileParameters END IF STOP END IF +36 Continue ! ! Check that the seed values are negative and if not make them negative ! diff --git a/src/initialization/SetupInitialConditions.f90 b/src/initialization/SetupInitialConditions.f90 index b150512..2fef07f 100644 --- a/src/initialization/SetupInitialConditions.f90 +++ b/src/initialization/SetupInitialConditions.f90 @@ -361,7 +361,7 @@ SUBROUTINE SetupInitialConditions ! FIXME: to add ELSE CALL PreProcessDiffStencils(FineGrid,FineGrid%DiffStencils,GhostGridX,GhostGridY,GhostGridZ, & - alpha,beta,gamma) + alpha,beta,gamma,fileop(1)) IF (FineGrid%Nx>1) THEN CALL DiffXEven(Wavefield%E,Wavefield%Ex,1,FineGrid%Nx,FineGrid%Ny,1,FineGrid%DiffStencils,alpha) CALL DiffXEven(Wavefield%E,Wavefield%Exx,2,FineGrid%Nx,FineGrid%Ny,1,FineGrid%DiffStencils,alpha) @@ -871,7 +871,7 @@ SUBROUTINE SetupInitialConditions ! Calculate the derivatives of the initial condition numerically: !--------------------------------------------------------------------------- CALL PreProcessDiffStencils(FineGrid,FineGrid%DiffStencils,GhostGridX, & - GhostGridY,GhostGridZ,alpha,beta,gamma) + GhostGridY,GhostGridZ,alpha,beta,gamma,fileop(1)) CALL DiffXEven(Wavefield%E,Wavefield%Ex,1,FineGrid%Nx,FineGrid%Ny,1, & FineGrid%DiffStencils,alpha) CALL DiffXEven(Wavefield%E,Wavefield%Exx,2, & From 0e089c24b35149f3b922c2520ca3bd0031222f67 Mon Sep 17 00:00:00 2001 From: hbbi Date: Tue, 23 Jun 2020 16:19:15 +0200 Subject: [PATCH 50/56] Example imput file updated --- examples/inputfiles/OceanWave3D.inp.ObliqueRegular2beach | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/inputfiles/OceanWave3D.inp.ObliqueRegular2beach b/examples/inputfiles/OceanWave3D.inp.ObliqueRegular2beach index 843752c..bbc5fd3 100644 --- a/examples/inputfiles/OceanWave3D.inp.ObliqueRegular2beach +++ b/examples/inputfiles/OceanWave3D.inp.ObliqueRegular2beach @@ -17,4 +17,5 @@ A flat bottom, 2D, linear monochromatic wave at an angle of beta=22.5 degrees. 0 0 <- Damping pressure zone: PDampingOnOff=0 (off), number of zones. For each zone include the line: x1, x2, y1, y2 (bounds of the zone), gamma0 (dynamic FSBC), Gamma0 (kinematic FSBC), i_damperType (0=friction on the velocity, 1=friction on the potential). 0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) 0 <- Curvilinear on/off --30 8. 2. 80. 20. -1 34 0. 150. run06.el 22.5 1.0 <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, inc_wave_file, (beta, S if 3D). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP, 2=>Read from a file; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. +-30 8. 2. 80. 20. -1 34 0. 150. run06.el 22.5 1.0 3.3 <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, inc_wave_file, (beta, S, gamma if 3D). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP gamma=3.3, 2=>Read from a file, 3=JONSWAP, input gamma; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. + From ba452e1d8062029d7c170dd6753611db06f1c67d Mon Sep 17 00:00:00 2001 From: hbbi Date: Tue, 23 Jun 2020 16:24:11 +0200 Subject: [PATCH 51/56] Example imput files updated --- examples/inputfiles/FromFile_bottom | 2753 +++++++++++++++++++++++++++ 1 file changed, 2753 insertions(+) create mode 100644 examples/inputfiles/FromFile_bottom diff --git a/examples/inputfiles/FromFile_bottom b/examples/inputfiles/FromFile_bottom new file mode 100644 index 0000000..e0b0839 --- /dev/null +++ b/examples/inputfiles/FromFile_bottom @@ -0,0 +1,2753 @@ +% Smooth beach with nx=2751 L0=200 Lbeach=5300 h_0=50 and h_1=5 +0 0 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 0.000000e+00 -0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 -0.000000e+00 -0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+01 -8.624685e-285 -1.424154e-282 0.000000e+00 0.000000e+00 + 5.000000e+01 -3.094447e-189 -2.267554e-187 0.000000e+00 0.000000e+00 + 5.000000e+01 -1.564515e-141 -6.439014e-140 0.000000e+00 0.000000e+00 + 5.000000e+01 -5.927816e-113 -1.559038e-111 0.000000e+00 0.000000e+00 + 5.000000e+01 -6.254582e-94 -1.140616e-92 0.000000e+00 0.000000e+00 + 5.000000e+01 -2.309877e-80 -3.090136e-79 0.000000e+00 0.000000e+00 + 5.000000e+01 -3.339262e-70 -3.415043e-69 0.000000e+00 0.000000e+00 + 5.000000e+01 -2.593576e-62 -2.092570e-61 0.000000e+00 0.000000e+00 + 5.000000e+01 -5.205869e-56 -3.397027e-55 0.000000e+00 0.000000e+00 + 5.000000e+01 -7.333520e-51 -3.948864e-50 0.000000e+00 0.000000e+00 + 5.000000e+01 -1.410788e-46 -6.373575e-46 0.000000e+00 0.000000e+00 + 5.000000e+01 -5.874734e-43 -2.258000e-42 0.000000e+00 0.000000e+00 + 5.000000e+01 -7.357165e-40 -2.434527e-39 0.000000e+00 0.000000e+00 + 5.000000e+01 -3.526213e-37 -1.014901e-36 0.000000e+00 0.000000e+00 + 5.000000e+01 -7.749121e-35 -1.957254e-34 0.000000e+00 0.000000e+00 + 5.000000e+01 -8.964335e-33 -2.002587e-32 0.000000e+00 0.000000e+00 + 5.000000e+01 -6.077567e-31 -1.209183e-30 0.000000e+00 0.000000e+00 + 5.000000e+01 -2.628315e-29 -4.686117e-29 0.000000e+00 0.000000e+00 + 5.000000e+01 -7.758499e-28 -1.246510e-27 0.000000e+00 0.000000e+00 + 5.000000e+01 -1.651325e-26 -2.402739e-26 0.000000e+00 0.000000e+00 + 5.000000e+01 -2.650364e-25 -3.508386e-25 0.000000e+00 0.000000e+00 + 5.000000e+01 -3.328649e-24 -4.025253e-24 0.000000e+00 0.000000e+00 + 5.000000e+01 -3.373690e-23 -3.741080e-23 0.000000e+00 0.000000e+00 + 5.000000e+01 -2.831752e-22 -2.889499e-22 0.000000e+00 0.000000e+00 + 5.000000e+01 -2.011975e-21 -1.895203e-21 0.000000e+00 0.000000e+00 + 5.000000e+01 -1.232819e-20 -1.075186e-20 0.000000e+00 0.000000e+00 + 5.000000e+01 -6.619388e-20 -5.359762e-20 0.000000e+00 0.000000e+00 + 5.000000e+01 -3.157561e-19 -2.379747e-19 0.000000e+00 0.000000e+00 + 5.000000e+01 -1.354176e-18 -9.522226e-19 0.000000e+00 0.000000e+00 + 5.000000e+01 -5.275850e-18 -3.469008e-18 0.000000e+00 0.000000e+00 + 5.000000e+01 -1.884268e-17 -1.160938e-17 0.000000e+00 0.000000e+00 + 5.000000e+01 -6.218503e-17 -3.597111e-17 0.000000e+00 0.000000e+00 + 5.000000e+01 -1.909736e-16 -1.039060e-16 0.000000e+00 0.000000e+00 + 5.000000e+01 -5.491697e-16 -2.815298e-16 0.000000e+00 0.000000e+00 + 5.000000e+01 -1.486912e-15 -7.193870e-16 0.000000e+00 0.000000e+00 + 5.000000e+01 -3.809331e-15 -1.742030e-15 0.000000e+00 0.000000e+00 + 5.000000e+01 -9.274922e-15 -4.014958e-15 0.000000e+00 0.000000e+00 + 5.000000e+01 -2.154695e-14 -8.841416e-15 0.000000e+00 0.000000e+00 + 5.000000e+01 -4.793128e-14 -1.866771e-14 0.000000e+00 0.000000e+00 + 5.000000e+01 -1.024241e-13 -3.790995e-14 0.000000e+00 0.000000e+00 + 5.000000e+01 -2.108603e-13 -7.425760e-14 0.000000e+00 0.000000e+00 + 5.000000e+01 -4.193125e-13 -1.406602e-13 0.000000e+00 0.000000e+00 + 5.000000e+01 -8.073621e-13 -2.582610e-13 0.000000e+00 0.000000e+00 + 5.000000e+01 -1.508450e-12 -4.606031e-13 0.000000e+00 0.000000e+00 + 5.000000e+01 -2.740234e-12 -7.994981e-13 0.000000e+00 0.000000e+00 + 5.000000e+01 -4.848709e-12 -1.353008e-12 0.000000e+00 0.000000e+00 + 5.000000e+01 -8.370832e-12 -2.236042e-12 0.000000e+00 0.000000e+00 + 5.000000e+01 -1.412141e-11 -3.614126e-12 0.000000e+00 0.000000e+00 + 5.000000e+01 -2.331114e-11 -5.720898e-12 0.000000e+00 0.000000e+00 + 5.000000e+01 -3.770393e-11 -8.879938e-12 0.000000e+00 0.000000e+00 + 5.000000e+01 -5.982259e-11 -1.353146e-11 0.000000e+00 0.000000e+00 + 5.000000e+01 -9.321329e-11 -2.026444e-11 0.000000e+00 0.000000e+00 + 5.000000e+01 -1.427800e-10 -2.985453e-11 0.000000e+00 0.000000e+00 + 5.000000e+01 -2.152009e-10 -4.330827e-11 0.000000e+00 0.000000e+00 + 5.000000e+01 -3.194400e-10 -6.191367e-11 0.000000e+00 0.000000e+00 + 5.000000e+01 -4.673656e-10 -8.729741e-11 0.000000e+00 0.000000e+00 + 5.000000e+01 -6.744907e-10 -1.214884e-10 0.000000e+00 0.000000e+00 + 5.000000e+01 -9.608462e-10 -1.669880e-10 0.000000e+00 0.000000e+00 + 5.000000e+01 -1.352000e-09 -2.268453e-10 0.000000e+00 0.000000e+00 + 5.000000e+01 -1.880236e-09 -3.047389e-10 0.000000e+00 0.000000e+00 + 5.000000e+01 -2.585891e-09 -4.050621e-10 0.000000e+00 0.000000e+00 + 5.000000e+01 -3.518882e-09 -5.330128e-10 0.000000e+00 0.000000e+00 + 5.000000e+01 -4.740401e-09 -6.946852e-10 0.000000e+00 0.000000e+00 + 5.000000e+01 -6.324803e-09 -8.971640e-10 0.000000e+00 0.000000e+00 + 5.000000e+01 -8.361681e-09 -1.148618e-09 0.000000e+00 0.000000e+00 + 5.000000e+01 -1.095813e-08 -1.458394e-09 0.000000e+00 0.000000e+00 + 5.000000e+01 -1.424118e-08 -1.837105e-09 0.000000e+00 0.000000e+00 + 5.000000e+01 -1.836046e-08 -2.296723e-09 0.000000e+00 0.000000e+00 + 5.000000e+01 -2.349092e-08 -2.850655e-09 0.000000e+00 0.000000e+00 + 5.000000e+01 -2.983586e-08 -3.513822e-09 0.000000e+00 0.000000e+00 + 5.000000e+01 -3.762999e-08 -4.302727e-09 0.000000e+00 0.000000e+00 + 5.000000e+01 -4.714266e-08 -5.235517e-09 0.000000e+00 0.000000e+00 + 5.000000e+01 -5.868117e-08 -6.332030e-09 0.000000e+00 0.000000e+00 + 5.000000e+01 -7.259427e-08 -7.613837e-09 0.000000e+00 0.000000e+00 + 5.000000e+01 -8.927557e-08 -9.104269e-09 0.000000e+00 0.000000e+00 + 5.000000e+01 -1.091671e-07 -1.082844e-08 0.000000e+00 0.000000e+00 + 5.000000e+01 -1.327630e-07 -1.281323e-08 0.000000e+00 0.000000e+00 + 5.000000e+01 -1.606129e-07 -1.508733e-08 0.000000e+00 0.000000e+00 + 5.000000e+01 -1.933254e-07 -1.768114e-08 0.000000e+00 0.000000e+00 + 5.000000e+01 -2.315720e-07 -2.062681e-08 0.000000e+00 0.000000e+00 + 5.000000e+01 -2.760898e-07 -2.395815e-08 0.000000e+00 0.000000e+00 + 5.000000e+01 -3.276853e-07 -2.771060e-08 0.000000e+00 0.000000e+00 + 5.000000e+01 -3.872375e-07 -3.192114e-08 0.000000e+00 0.000000e+00 + 5.000000e+01 -4.557008e-07 -3.662820e-08 0.000000e+00 0.000000e+00 + 4.999999e+01 -5.341079e-07 -4.187161e-08 0.000000e+00 0.000000e+00 + 4.999999e+01 -6.235722e-07 -4.769244e-08 0.000000e+00 0.000000e+00 + 4.999999e+01 -7.252907e-07 -5.413296e-08 0.000000e+00 0.000000e+00 + 4.999999e+01 -8.405460e-07 -6.123643e-08 0.000000e+00 0.000000e+00 + 4.999999e+01 -9.707079e-07 -6.904707e-08 0.000000e+00 0.000000e+00 + 4.999999e+01 -1.117236e-06 -7.760986e-08 0.000000e+00 0.000000e+00 + 4.999998e+01 -1.281679e-06 -8.697041e-08 0.000000e+00 0.000000e+00 + 4.999998e+01 -1.465680e-06 -9.717487e-08 0.000000e+00 0.000000e+00 + 4.999998e+01 -1.670972e-06 -1.082697e-07 0.000000e+00 0.000000e+00 + 4.999997e+01 -1.899384e-06 -1.203016e-07 0.000000e+00 0.000000e+00 + 4.999997e+01 -2.152835e-06 -1.333174e-07 0.000000e+00 0.000000e+00 + 4.999997e+01 -2.433340e-06 -1.473636e-07 0.000000e+00 0.000000e+00 + 4.999996e+01 -2.743007e-06 -1.624867e-07 0.000000e+00 0.000000e+00 + 4.999995e+01 -3.084036e-06 -1.787328e-07 0.000000e+00 0.000000e+00 + 4.999995e+01 -3.458717e-06 -1.961473e-07 0.000000e+00 0.000000e+00 + 4.999994e+01 -3.869434e-06 -2.147751e-07 0.000000e+00 0.000000e+00 + 4.999993e+01 -4.318656e-06 -2.346602e-07 0.000000e+00 0.000000e+00 + 4.999992e+01 -4.808941e-06 -2.558455e-07 0.000000e+00 0.000000e+00 + 4.999991e+01 -5.342933e-06 -2.783733e-07 0.000000e+00 0.000000e+00 + 4.999990e+01 -5.923357e-06 -3.022841e-07 0.000000e+00 0.000000e+00 + 4.999989e+01 -6.553018e-06 -3.276175e-07 0.000000e+00 0.000000e+00 + 4.999988e+01 -7.234801e-06 -3.544116e-07 0.000000e+00 0.000000e+00 + 4.999986e+01 -7.971662e-06 -3.827028e-07 0.000000e+00 0.000000e+00 + 4.999984e+01 -8.766633e-06 -4.125260e-07 0.000000e+00 0.000000e+00 + 4.999983e+01 -9.622810e-06 -4.439144e-07 0.000000e+00 0.000000e+00 + 4.999981e+01 -1.054336e-05 -4.768994e-07 0.000000e+00 0.000000e+00 + 4.999978e+01 -1.153149e-05 -5.115103e-07 0.000000e+00 0.000000e+00 + 4.999976e+01 -1.259050e-05 -5.477748e-07 0.000000e+00 0.000000e+00 + 4.999973e+01 -1.372371e-05 -5.857183e-07 0.000000e+00 0.000000e+00 + 4.999970e+01 -1.493451e-05 -6.253643e-07 0.000000e+00 0.000000e+00 + 4.999967e+01 -1.622632e-05 -6.667341e-07 0.000000e+00 0.000000e+00 + 4.999964e+01 -1.760261e-05 -7.098471e-07 0.000000e+00 0.000000e+00 + 4.999960e+01 -1.906688e-05 -7.547201e-07 0.000000e+00 0.000000e+00 + 4.999956e+01 -2.062267e-05 -8.013681e-07 0.000000e+00 0.000000e+00 + 4.999952e+01 -2.227354e-05 -8.498036e-07 0.000000e+00 0.000000e+00 + 4.999947e+01 -2.402308e-05 -9.000372e-07 0.000000e+00 0.000000e+00 + 4.999942e+01 -2.587490e-05 -9.520769e-07 0.000000e+00 0.000000e+00 + 4.999937e+01 -2.783260e-05 -1.005929e-06 0.000000e+00 0.000000e+00 + 4.999931e+01 -2.989982e-05 -1.061597e-06 0.000000e+00 0.000000e+00 + 4.999925e+01 -3.208020e-05 -1.119082e-06 0.000000e+00 0.000000e+00 + 4.999918e+01 -3.437736e-05 -1.178384e-06 0.000000e+00 0.000000e+00 + 4.999911e+01 -3.679494e-05 -1.239500e-06 0.000000e+00 0.000000e+00 + 4.999904e+01 -3.933657e-05 -1.302425e-06 0.000000e+00 0.000000e+00 + 4.999896e+01 -4.200584e-05 -1.367153e-06 0.000000e+00 0.000000e+00 + 4.999887e+01 -4.480637e-05 -1.433674e-06 0.000000e+00 0.000000e+00 + 4.999878e+01 -4.774173e-05 -1.501977e-06 0.000000e+00 0.000000e+00 + 4.999868e+01 -5.081546e-05 -1.572049e-06 0.000000e+00 0.000000e+00 + 4.999857e+01 -5.403109e-05 -1.643875e-06 0.000000e+00 0.000000e+00 + 4.999846e+01 -5.739212e-05 -1.717439e-06 0.000000e+00 0.000000e+00 + 4.999834e+01 -6.090200e-05 -1.792722e-06 0.000000e+00 0.000000e+00 + 4.999822e+01 -6.456414e-05 -1.869704e-06 0.000000e+00 0.000000e+00 + 4.999808e+01 -6.838193e-05 -1.948363e-06 0.000000e+00 0.000000e+00 + 4.999794e+01 -7.235869e-05 -2.028675e-06 0.000000e+00 0.000000e+00 + 4.999780e+01 -7.649771e-05 -2.110614e-06 0.000000e+00 0.000000e+00 + 4.999764e+01 -8.080222e-05 -2.194156e-06 0.000000e+00 0.000000e+00 + 4.999747e+01 -8.527539e-05 -2.279270e-06 0.000000e+00 0.000000e+00 + 4.999730e+01 -8.992033e-05 -2.365929e-06 0.000000e+00 0.000000e+00 + 4.999711e+01 -9.474011e-05 -2.454101e-06 0.000000e+00 0.000000e+00 + 4.999692e+01 -9.973772e-05 -2.543754e-06 0.000000e+00 0.000000e+00 + 4.999671e+01 -1.049161e-04 -2.634856e-06 0.000000e+00 0.000000e+00 + 4.999650e+01 -1.102781e-04 -2.727371e-06 0.000000e+00 0.000000e+00 + 4.999627e+01 -1.158265e-04 -2.821265e-06 0.000000e+00 0.000000e+00 + 4.999603e+01 -1.215640e-04 -2.916502e-06 0.000000e+00 0.000000e+00 + 4.999579e+01 -1.274934e-04 -3.013044e-06 0.000000e+00 0.000000e+00 + 4.999552e+01 -1.336171e-04 -3.110854e-06 0.000000e+00 0.000000e+00 + 4.999525e+01 -1.399376e-04 -3.209893e-06 0.000000e+00 0.000000e+00 + 4.999496e+01 -1.464574e-04 -3.310122e-06 0.000000e+00 0.000000e+00 + 4.999466e+01 -1.531789e-04 -3.411500e-06 0.000000e+00 0.000000e+00 + 4.999435e+01 -1.601042e-04 -3.513987e-06 0.000000e+00 0.000000e+00 + 4.999402e+01 -1.672355e-04 -3.617543e-06 0.000000e+00 0.000000e+00 + 4.999368e+01 -1.745750e-04 -3.722125e-06 0.000000e+00 0.000000e+00 + 4.999333e+01 -1.821247e-04 -3.827691e-06 0.000000e+00 0.000000e+00 + 4.999295e+01 -1.898864e-04 -3.934200e-06 0.000000e+00 0.000000e+00 + 4.999257e+01 -1.978621e-04 -4.041609e-06 0.000000e+00 0.000000e+00 + 4.999216e+01 -2.060534e-04 -4.149875e-06 0.000000e+00 0.000000e+00 + 4.999174e+01 -2.144621e-04 -4.258956e-06 0.000000e+00 0.000000e+00 + 4.999130e+01 -2.230898e-04 -4.368807e-06 0.000000e+00 0.000000e+00 + 4.999085e+01 -2.319378e-04 -4.479387e-06 0.000000e+00 0.000000e+00 + 4.999038e+01 -2.410078e-04 -4.590651e-06 0.000000e+00 0.000000e+00 + 4.998989e+01 -2.503009e-04 -4.702557e-06 0.000000e+00 0.000000e+00 + 4.998938e+01 -2.598184e-04 -4.815063e-06 0.000000e+00 0.000000e+00 + 4.998885e+01 -2.695615e-04 -4.928124e-06 0.000000e+00 0.000000e+00 + 4.998830e+01 -2.795312e-04 -5.041698e-06 0.000000e+00 0.000000e+00 + 4.998773e+01 -2.897286e-04 -5.155742e-06 0.000000e+00 0.000000e+00 + 4.998714e+01 -3.001545e-04 -5.270215e-06 0.000000e+00 0.000000e+00 + 4.998653e+01 -3.108097e-04 -5.385074e-06 0.000000e+00 0.000000e+00 + 4.998589e+01 -3.216950e-04 -5.500277e-06 0.000000e+00 0.000000e+00 + 4.998524e+01 -3.328110e-04 -5.615783e-06 0.000000e+00 0.000000e+00 + 4.998456e+01 -3.441583e-04 -5.731550e-06 0.000000e+00 0.000000e+00 + 4.998386e+01 -3.557374e-04 -5.847538e-06 0.000000e+00 0.000000e+00 + 4.998314e+01 -3.675486e-04 -5.963707e-06 0.000000e+00 0.000000e+00 + 4.998239e+01 -3.795923e-04 -6.080017e-06 0.000000e+00 0.000000e+00 + 4.998162e+01 -3.918687e-04 -6.196428e-06 0.000000e+00 0.000000e+00 + 4.998083e+01 -4.043780e-04 -6.312901e-06 0.000000e+00 0.000000e+00 + 4.998000e+01 -4.171203e-04 -6.429398e-06 0.000000e+00 0.000000e+00 + 4.997916e+01 -4.300956e-04 -6.545881e-06 0.000000e+00 0.000000e+00 + 4.997828e+01 -4.433038e-04 -6.662314e-06 0.000000e+00 0.000000e+00 + 4.997738e+01 -4.567448e-04 -6.778658e-06 0.000000e+00 0.000000e+00 + 4.997646e+01 -4.704184e-04 -6.894878e-06 0.000000e+00 0.000000e+00 + 4.997550e+01 -4.843242e-04 -7.010938e-06 0.000000e+00 0.000000e+00 + 4.997452e+01 -4.984620e-04 -7.126804e-06 0.000000e+00 0.000000e+00 + 4.997351e+01 -5.128313e-04 -7.242441e-06 0.000000e+00 0.000000e+00 + 4.997247e+01 -5.274316e-04 -7.357816e-06 0.000000e+00 0.000000e+00 + 4.997140e+01 -5.422624e-04 -7.472894e-06 0.000000e+00 0.000000e+00 + 4.997030e+01 -5.573230e-04 -7.587645e-06 0.000000e+00 0.000000e+00 + 4.996917e+01 -5.726127e-04 -7.702036e-06 0.000000e+00 0.000000e+00 + 4.996801e+01 -5.881308e-04 -7.816037e-06 0.000000e+00 0.000000e+00 + 4.996682e+01 -6.038766e-04 -7.929616e-06 0.000000e+00 0.000000e+00 + 4.996559e+01 -6.198490e-04 -8.042745e-06 0.000000e+00 0.000000e+00 + 4.996434e+01 -6.360472e-04 -8.155394e-06 0.000000e+00 0.000000e+00 + 4.996305e+01 -6.524702e-04 -8.267535e-06 0.000000e+00 0.000000e+00 + 4.996173e+01 -6.691170e-04 -8.379140e-06 0.000000e+00 0.000000e+00 + 4.996037e+01 -6.859864e-04 -8.490183e-06 0.000000e+00 0.000000e+00 + 4.995898e+01 -7.030773e-04 -8.600637e-06 0.000000e+00 0.000000e+00 + 4.995756e+01 -7.203886e-04 -8.710477e-06 0.000000e+00 0.000000e+00 + 4.995610e+01 -7.379188e-04 -8.819678e-06 0.000000e+00 0.000000e+00 + 4.995461e+01 -7.556668e-04 -8.928215e-06 0.000000e+00 0.000000e+00 + 4.995308e+01 -7.736312e-04 -9.036067e-06 0.000000e+00 0.000000e+00 + 4.995151e+01 -7.918106e-04 -9.143209e-06 0.000000e+00 0.000000e+00 + 4.994991e+01 -8.102036e-04 -9.249619e-06 0.000000e+00 0.000000e+00 + 4.994827e+01 -8.288086e-04 -9.355277e-06 0.000000e+00 0.000000e+00 + 4.994659e+01 -8.476242e-04 -9.460162e-06 0.000000e+00 0.000000e+00 + 4.994488e+01 -8.666487e-04 -9.564254e-06 0.000000e+00 0.000000e+00 + 4.994313e+01 -8.858806e-04 -9.667532e-06 0.000000e+00 0.000000e+00 + 4.994134e+01 -9.053183e-04 -9.769980e-06 0.000000e+00 0.000000e+00 + 4.993951e+01 -9.249600e-04 -9.871578e-06 0.000000e+00 0.000000e+00 + 4.993764e+01 -9.448040e-04 -9.972309e-06 0.000000e+00 0.000000e+00 + 4.993573e+01 -9.648486e-04 -1.007216e-05 0.000000e+00 0.000000e+00 + 4.993378e+01 -9.850921e-04 -1.017111e-05 0.000000e+00 0.000000e+00 + 4.993179e+01 -1.005532e-03 -1.026914e-05 0.000000e+00 0.000000e+00 + 4.992975e+01 -1.026168e-03 -1.036624e-05 0.000000e+00 0.000000e+00 + 4.992768e+01 -1.046997e-03 -1.046240e-05 0.000000e+00 0.000000e+00 + 4.992557e+01 -1.068017e-03 -1.055761e-05 0.000000e+00 0.000000e+00 + 4.992341e+01 -1.089227e-03 -1.065184e-05 0.000000e+00 0.000000e+00 + 4.992121e+01 -1.110624e-03 -1.074509e-05 0.000000e+00 0.000000e+00 + 4.991897e+01 -1.132206e-03 -1.083734e-05 0.000000e+00 0.000000e+00 + 4.991668e+01 -1.153972e-03 -1.092859e-05 0.000000e+00 0.000000e+00 + 4.991435e+01 -1.175920e-03 -1.101882e-05 0.000000e+00 0.000000e+00 + 4.991198e+01 -1.198047e-03 -1.110803e-05 0.000000e+00 0.000000e+00 + 4.990956e+01 -1.220351e-03 -1.119620e-05 0.000000e+00 0.000000e+00 + 4.990710e+01 -1.242831e-03 -1.128333e-05 0.000000e+00 0.000000e+00 + 4.990459e+01 -1.265484e-03 -1.136940e-05 0.000000e+00 0.000000e+00 + 4.990203e+01 -1.288308e-03 -1.145441e-05 0.000000e+00 0.000000e+00 + 4.989943e+01 -1.311301e-03 -1.153835e-05 0.000000e+00 0.000000e+00 + 4.989679e+01 -1.334461e-03 -1.162121e-05 0.000000e+00 0.000000e+00 + 4.989410e+01 -1.357785e-03 -1.170300e-05 0.000000e+00 0.000000e+00 + 4.989136e+01 -1.381272e-03 -1.178369e-05 0.000000e+00 0.000000e+00 + 4.988857e+01 -1.404919e-03 -1.186329e-05 0.000000e+00 0.000000e+00 + 4.988574e+01 -1.428724e-03 -1.194179e-05 0.000000e+00 0.000000e+00 + 4.988286e+01 -1.452686e-03 -1.201919e-05 0.000000e+00 0.000000e+00 + 4.987993e+01 -1.476800e-03 -1.209548e-05 0.000000e+00 0.000000e+00 + 4.987695e+01 -1.501067e-03 -1.217066e-05 0.000000e+00 0.000000e+00 + 4.987392e+01 -1.525482e-03 -1.224473e-05 0.000000e+00 0.000000e+00 + 4.987085e+01 -1.550045e-03 -1.231768e-05 0.000000e+00 0.000000e+00 + 4.986772e+01 -1.574752e-03 -1.238951e-05 0.000000e+00 0.000000e+00 + 4.986455e+01 -1.599602e-03 -1.246021e-05 0.000000e+00 0.000000e+00 + 4.986132e+01 -1.624592e-03 -1.252980e-05 0.000000e+00 0.000000e+00 + 4.985805e+01 -1.649721e-03 -1.259826e-05 0.000000e+00 0.000000e+00 + 4.985472e+01 -1.674985e-03 -1.266559e-05 0.000000e+00 0.000000e+00 + 4.985135e+01 -1.700382e-03 -1.273180e-05 0.000000e+00 0.000000e+00 + 4.984792e+01 -1.725911e-03 -1.279688e-05 0.000000e+00 0.000000e+00 + 4.984444e+01 -1.751569e-03 -1.286083e-05 0.000000e+00 0.000000e+00 + 4.984092e+01 -1.777354e-03 -1.292366e-05 0.000000e+00 0.000000e+00 + 4.983734e+01 -1.803263e-03 -1.298537e-05 0.000000e+00 0.000000e+00 + 4.983370e+01 -1.829294e-03 -1.304595e-05 0.000000e+00 0.000000e+00 + 4.983002e+01 -1.855446e-03 -1.310541e-05 0.000000e+00 0.000000e+00 + 4.982628e+01 -1.881715e-03 -1.316374e-05 0.000000e+00 0.000000e+00 + 4.982249e+01 -1.908100e-03 -1.322096e-05 0.000000e+00 0.000000e+00 + 4.981865e+01 -1.934598e-03 -1.327707e-05 0.000000e+00 0.000000e+00 + 4.981475e+01 -1.961208e-03 -1.333206e-05 0.000000e+00 0.000000e+00 + 4.981080e+01 -1.987926e-03 -1.338594e-05 0.000000e+00 0.000000e+00 + 4.980680e+01 -2.014751e-03 -1.343871e-05 0.000000e+00 0.000000e+00 + 4.980274e+01 -2.041680e-03 -1.349037e-05 0.000000e+00 0.000000e+00 + 4.979863e+01 -2.068711e-03 -1.354094e-05 0.000000e+00 0.000000e+00 + 4.979447e+01 -2.095843e-03 -1.359041e-05 0.000000e+00 0.000000e+00 + 4.979025e+01 -2.123072e-03 -1.363879e-05 0.000000e+00 0.000000e+00 + 4.978598e+01 -2.150397e-03 -1.368608e-05 0.000000e+00 0.000000e+00 + 4.978165e+01 -2.177816e-03 -1.373228e-05 0.000000e+00 0.000000e+00 + 4.977727e+01 -2.205326e-03 -1.377740e-05 0.000000e+00 0.000000e+00 + 4.977283e+01 -2.232925e-03 -1.382146e-05 0.000000e+00 0.000000e+00 + 4.976833e+01 -2.260611e-03 -1.386444e-05 0.000000e+00 0.000000e+00 + 4.976379e+01 -2.288382e-03 -1.390635e-05 0.000000e+00 0.000000e+00 + 4.975918e+01 -2.316236e-03 -1.394721e-05 0.000000e+00 0.000000e+00 + 4.975452e+01 -2.344170e-03 -1.398702e-05 0.000000e+00 0.000000e+00 + 4.974980e+01 -2.372183e-03 -1.402578e-05 0.000000e+00 0.000000e+00 + 4.974503e+01 -2.400272e-03 -1.406349e-05 0.000000e+00 0.000000e+00 + 4.974020e+01 -2.428436e-03 -1.410018e-05 0.000000e+00 0.000000e+00 + 4.973532e+01 -2.456672e-03 -1.413583e-05 0.000000e+00 0.000000e+00 + 4.973038e+01 -2.484979e-03 -1.417046e-05 0.000000e+00 0.000000e+00 + 4.972538e+01 -2.513354e-03 -1.420407e-05 0.000000e+00 0.000000e+00 + 4.972032e+01 -2.541795e-03 -1.423668e-05 0.000000e+00 0.000000e+00 + 4.971521e+01 -2.570300e-03 -1.426828e-05 0.000000e+00 0.000000e+00 + 4.971004e+01 -2.598867e-03 -1.429889e-05 0.000000e+00 0.000000e+00 + 4.970481e+01 -2.627495e-03 -1.432851e-05 0.000000e+00 0.000000e+00 + 4.969953e+01 -2.656180e-03 -1.435715e-05 0.000000e+00 0.000000e+00 + 4.969419e+01 -2.684923e-03 -1.438481e-05 0.000000e+00 0.000000e+00 + 4.968879e+01 -2.713719e-03 -1.441150e-05 0.000000e+00 0.000000e+00 + 4.968334e+01 -2.742568e-03 -1.443724e-05 0.000000e+00 0.000000e+00 + 4.967782e+01 -2.771467e-03 -1.446203e-05 0.000000e+00 0.000000e+00 + 4.967225e+01 -2.800415e-03 -1.448586e-05 0.000000e+00 0.000000e+00 + 4.966662e+01 -2.829410e-03 -1.450877e-05 0.000000e+00 0.000000e+00 + 4.966093e+01 -2.858450e-03 -1.453074e-05 0.000000e+00 0.000000e+00 + 4.965519e+01 -2.887533e-03 -1.455179e-05 0.000000e+00 0.000000e+00 + 4.964938e+01 -2.916656e-03 -1.457193e-05 0.000000e+00 0.000000e+00 + 4.964352e+01 -2.945820e-03 -1.459117e-05 0.000000e+00 0.000000e+00 + 4.963760e+01 -2.975020e-03 -1.460950e-05 0.000000e+00 0.000000e+00 + 4.963162e+01 -3.004257e-03 -1.462695e-05 0.000000e+00 0.000000e+00 + 4.962558e+01 -3.033528e-03 -1.464352e-05 0.000000e+00 0.000000e+00 + 4.961948e+01 -3.062831e-03 -1.465921e-05 0.000000e+00 0.000000e+00 + 4.961333e+01 -3.092164e-03 -1.467404e-05 0.000000e+00 0.000000e+00 + 4.960712e+01 -3.121526e-03 -1.468801e-05 0.000000e+00 0.000000e+00 + 4.960084e+01 -3.150915e-03 -1.470113e-05 0.000000e+00 0.000000e+00 + 4.959451e+01 -3.180330e-03 -1.471341e-05 0.000000e+00 0.000000e+00 + 4.958812e+01 -3.209768e-03 -1.472486e-05 0.000000e+00 0.000000e+00 + 4.958167e+01 -3.239229e-03 -1.473548e-05 0.000000e+00 0.000000e+00 + 4.957517e+01 -3.268710e-03 -1.474529e-05 0.000000e+00 0.000000e+00 + 4.956860e+01 -3.298210e-03 -1.475430e-05 0.000000e+00 0.000000e+00 + 4.956197e+01 -3.327727e-03 -1.476250e-05 0.000000e+00 0.000000e+00 + 4.955529e+01 -3.357259e-03 -1.476992e-05 0.000000e+00 0.000000e+00 + 4.954854e+01 -3.386806e-03 -1.477655e-05 0.000000e+00 0.000000e+00 + 4.954174e+01 -3.416365e-03 -1.478241e-05 0.000000e+00 0.000000e+00 + 4.953488e+01 -3.445935e-03 -1.478750e-05 0.000000e+00 0.000000e+00 + 4.952796e+01 -3.475514e-03 -1.479184e-05 0.000000e+00 0.000000e+00 + 4.952098e+01 -3.505102e-03 -1.479543e-05 0.000000e+00 0.000000e+00 + 4.951394e+01 -3.534695e-03 -1.479828e-05 0.000000e+00 0.000000e+00 + 4.950684e+01 -3.564294e-03 -1.480040e-05 0.000000e+00 0.000000e+00 + 4.949968e+01 -3.593897e-03 -1.480180e-05 0.000000e+00 0.000000e+00 + 4.949246e+01 -3.623501e-03 -1.480248e-05 0.000000e+00 0.000000e+00 + 4.948518e+01 -3.653106e-03 -1.480245e-05 0.000000e+00 0.000000e+00 + 4.947785e+01 -3.682710e-03 -1.480173e-05 0.000000e+00 0.000000e+00 + 4.947045e+01 -3.712312e-03 -1.480032e-05 0.000000e+00 0.000000e+00 + 4.946300e+01 -3.741911e-03 -1.479823e-05 0.000000e+00 0.000000e+00 + 4.945549e+01 -3.771505e-03 -1.479546e-05 0.000000e+00 0.000000e+00 + 4.944791e+01 -3.801093e-03 -1.479203e-05 0.000000e+00 0.000000e+00 + 4.944028e+01 -3.830673e-03 -1.478795e-05 0.000000e+00 0.000000e+00 + 4.943259e+01 -3.860244e-03 -1.478322e-05 0.000000e+00 0.000000e+00 + 4.942484e+01 -3.889805e-03 -1.477784e-05 0.000000e+00 0.000000e+00 + 4.941703e+01 -3.919355e-03 -1.477184e-05 0.000000e+00 0.000000e+00 + 4.940916e+01 -3.948892e-03 -1.476521e-05 0.000000e+00 0.000000e+00 + 4.940124e+01 -3.978415e-03 -1.475797e-05 0.000000e+00 0.000000e+00 + 4.939325e+01 -4.007924e-03 -1.475012e-05 0.000000e+00 0.000000e+00 + 4.938520e+01 -4.037415e-03 -1.474167e-05 0.000000e+00 0.000000e+00 + 4.937710e+01 -4.066890e-03 -1.473264e-05 0.000000e+00 0.000000e+00 + 4.936894e+01 -4.096346e-03 -1.472301e-05 0.000000e+00 0.000000e+00 + 4.936072e+01 -4.125782e-03 -1.471282e-05 0.000000e+00 0.000000e+00 + 4.935243e+01 -4.155196e-03 -1.470205e-05 0.000000e+00 0.000000e+00 + 4.934409e+01 -4.184589e-03 -1.469073e-05 0.000000e+00 0.000000e+00 + 4.933570e+01 -4.213959e-03 -1.467886e-05 0.000000e+00 0.000000e+00 + 4.932724e+01 -4.243304e-03 -1.466644e-05 0.000000e+00 0.000000e+00 + 4.931872e+01 -4.272624e-03 -1.465349e-05 0.000000e+00 0.000000e+00 + 4.931015e+01 -4.301918e-03 -1.464001e-05 0.000000e+00 0.000000e+00 + 4.930151e+01 -4.331184e-03 -1.462601e-05 0.000000e+00 0.000000e+00 + 4.929282e+01 -4.360422e-03 -1.461149e-05 0.000000e+00 0.000000e+00 + 4.928407e+01 -4.389630e-03 -1.459648e-05 0.000000e+00 0.000000e+00 + 4.927526e+01 -4.418807e-03 -1.458096e-05 0.000000e+00 0.000000e+00 + 4.926640e+01 -4.447953e-03 -1.456495e-05 0.000000e+00 0.000000e+00 + 4.925747e+01 -4.477067e-03 -1.454846e-05 0.000000e+00 0.000000e+00 + 4.924849e+01 -4.506147e-03 -1.453150e-05 0.000000e+00 0.000000e+00 + 4.923945e+01 -4.535192e-03 -1.451407e-05 0.000000e+00 0.000000e+00 + 4.923035e+01 -4.564203e-03 -1.449618e-05 0.000000e+00 0.000000e+00 + 4.922119e+01 -4.593177e-03 -1.447783e-05 0.000000e+00 0.000000e+00 + 4.921198e+01 -4.622114e-03 -1.445904e-05 0.000000e+00 0.000000e+00 + 4.920270e+01 -4.651013e-03 -1.443981e-05 0.000000e+00 0.000000e+00 + 4.919337e+01 -4.679873e-03 -1.442014e-05 0.000000e+00 0.000000e+00 + 4.918398e+01 -4.708693e-03 -1.440006e-05 0.000000e+00 0.000000e+00 + 4.917454e+01 -4.737473e-03 -1.437955e-05 0.000000e+00 0.000000e+00 + 4.916503e+01 -4.766211e-03 -1.435863e-05 0.000000e+00 0.000000e+00 + 4.915547e+01 -4.794907e-03 -1.433731e-05 0.000000e+00 0.000000e+00 + 4.914585e+01 -4.823560e-03 -1.431559e-05 0.000000e+00 0.000000e+00 + 4.913618e+01 -4.852169e-03 -1.429349e-05 0.000000e+00 0.000000e+00 + 4.912645e+01 -4.880734e-03 -1.427099e-05 0.000000e+00 0.000000e+00 + 4.911666e+01 -4.909253e-03 -1.424812e-05 0.000000e+00 0.000000e+00 + 4.910681e+01 -4.937726e-03 -1.422488e-05 0.000000e+00 0.000000e+00 + 4.909690e+01 -4.966152e-03 -1.420128e-05 0.000000e+00 0.000000e+00 + 4.908694e+01 -4.994531e-03 -1.417731e-05 0.000000e+00 0.000000e+00 + 4.907693e+01 -5.022861e-03 -1.415300e-05 0.000000e+00 0.000000e+00 + 4.906685e+01 -5.051143e-03 -1.412834e-05 0.000000e+00 0.000000e+00 + 4.905672e+01 -5.079374e-03 -1.410334e-05 0.000000e+00 0.000000e+00 + 4.904654e+01 -5.107556e-03 -1.407802e-05 0.000000e+00 0.000000e+00 + 4.903629e+01 -5.135686e-03 -1.405236e-05 0.000000e+00 0.000000e+00 + 4.902599e+01 -5.163765e-03 -1.402638e-05 0.000000e+00 0.000000e+00 + 4.901564e+01 -5.191791e-03 -1.400010e-05 0.000000e+00 0.000000e+00 + 4.900523e+01 -5.219765e-03 -1.397350e-05 0.000000e+00 0.000000e+00 + 4.899476e+01 -5.247685e-03 -1.394660e-05 0.000000e+00 0.000000e+00 + 4.898423e+01 -5.275551e-03 -1.391940e-05 0.000000e+00 0.000000e+00 + 4.897366e+01 -5.303363e-03 -1.389192e-05 0.000000e+00 0.000000e+00 + 4.896302e+01 -5.331119e-03 -1.386415e-05 0.000000e+00 0.000000e+00 + 4.895233e+01 -5.358819e-03 -1.383610e-05 0.000000e+00 0.000000e+00 + 4.894159e+01 -5.386463e-03 -1.380778e-05 0.000000e+00 0.000000e+00 + 4.893079e+01 -5.414050e-03 -1.377919e-05 0.000000e+00 0.000000e+00 + 4.891993e+01 -5.441580e-03 -1.375034e-05 0.000000e+00 0.000000e+00 + 4.890902e+01 -5.469051e-03 -1.372124e-05 0.000000e+00 0.000000e+00 + 4.889805e+01 -5.496464e-03 -1.369188e-05 0.000000e+00 0.000000e+00 + 4.888703e+01 -5.523819e-03 -1.366228e-05 0.000000e+00 0.000000e+00 + 4.887596e+01 -5.551113e-03 -1.363243e-05 0.000000e+00 0.000000e+00 + 4.886483e+01 -5.578348e-03 -1.360236e-05 0.000000e+00 0.000000e+00 + 4.885365e+01 -5.605523e-03 -1.357205e-05 0.000000e+00 0.000000e+00 + 4.884241e+01 -5.632636e-03 -1.354152e-05 0.000000e+00 0.000000e+00 + 4.883111e+01 -5.659689e-03 -1.351077e-05 0.000000e+00 0.000000e+00 + 4.881977e+01 -5.686679e-03 -1.347981e-05 0.000000e+00 0.000000e+00 + 4.880837e+01 -5.713608e-03 -1.344863e-05 0.000000e+00 0.000000e+00 + 4.879691e+01 -5.740474e-03 -1.341726e-05 0.000000e+00 0.000000e+00 + 4.878541e+01 -5.767277e-03 -1.338568e-05 0.000000e+00 0.000000e+00 + 4.877384e+01 -5.794016e-03 -1.335391e-05 0.000000e+00 0.000000e+00 + 4.876223e+01 -5.820692e-03 -1.332195e-05 0.000000e+00 0.000000e+00 + 4.875056e+01 -5.847304e-03 -1.328981e-05 0.000000e+00 0.000000e+00 + 4.873884e+01 -5.873851e-03 -1.325748e-05 0.000000e+00 0.000000e+00 + 4.872707e+01 -5.900334e-03 -1.322498e-05 0.000000e+00 0.000000e+00 + 4.871524e+01 -5.926751e-03 -1.319231e-05 0.000000e+00 0.000000e+00 + 4.870336e+01 -5.953103e-03 -1.315947e-05 0.000000e+00 0.000000e+00 + 4.869143e+01 -5.979389e-03 -1.312647e-05 0.000000e+00 0.000000e+00 + 4.867944e+01 -6.005609e-03 -1.309332e-05 0.000000e+00 0.000000e+00 + 4.866740e+01 -6.031762e-03 -1.306001e-05 0.000000e+00 0.000000e+00 + 4.865532e+01 -6.057848e-03 -1.302655e-05 0.000000e+00 0.000000e+00 + 4.864317e+01 -6.083868e-03 -1.299294e-05 0.000000e+00 0.000000e+00 + 4.863098e+01 -6.109820e-03 -1.295920e-05 0.000000e+00 0.000000e+00 + 4.861873e+01 -6.135705e-03 -1.292532e-05 0.000000e+00 0.000000e+00 + 4.860644e+01 -6.161521e-03 -1.289131e-05 0.000000e+00 0.000000e+00 + 4.859409e+01 -6.187270e-03 -1.285717e-05 0.000000e+00 0.000000e+00 + 4.858169e+01 -6.212950e-03 -1.282290e-05 0.000000e+00 0.000000e+00 + 4.856924e+01 -6.238561e-03 -1.278852e-05 0.000000e+00 0.000000e+00 + 4.855673e+01 -6.264104e-03 -1.275402e-05 0.000000e+00 0.000000e+00 + 4.854418e+01 -6.289577e-03 -1.271941e-05 0.000000e+00 0.000000e+00 + 4.853158e+01 -6.314981e-03 -1.268469e-05 0.000000e+00 0.000000e+00 + 4.851892e+01 -6.340316e-03 -1.264986e-05 0.000000e+00 0.000000e+00 + 4.850621e+01 -6.365581e-03 -1.261493e-05 0.000000e+00 0.000000e+00 + 4.849346e+01 -6.390776e-03 -1.257991e-05 0.000000e+00 0.000000e+00 + 4.848065e+01 -6.415900e-03 -1.254479e-05 0.000000e+00 0.000000e+00 + 4.846779e+01 -6.440955e-03 -1.250959e-05 0.000000e+00 0.000000e+00 + 4.845489e+01 -6.465939e-03 -1.247429e-05 0.000000e+00 0.000000e+00 + 4.844193e+01 -6.490852e-03 -1.243892e-05 0.000000e+00 0.000000e+00 + 4.842892e+01 -6.515694e-03 -1.240346e-05 0.000000e+00 0.000000e+00 + 4.841587e+01 -6.540466e-03 -1.236793e-05 0.000000e+00 0.000000e+00 + 4.840276e+01 -6.565166e-03 -1.233232e-05 0.000000e+00 0.000000e+00 + 4.838961e+01 -6.589795e-03 -1.229665e-05 0.000000e+00 0.000000e+00 + 4.837640e+01 -6.614353e-03 -1.226091e-05 0.000000e+00 0.000000e+00 + 4.836315e+01 -6.638839e-03 -1.222510e-05 0.000000e+00 0.000000e+00 + 4.834985e+01 -6.663253e-03 -1.218924e-05 0.000000e+00 0.000000e+00 + 4.833650e+01 -6.687595e-03 -1.215332e-05 0.000000e+00 0.000000e+00 + 4.832310e+01 -6.711866e-03 -1.211734e-05 0.000000e+00 0.000000e+00 + 4.830965e+01 -6.736065e-03 -1.208132e-05 0.000000e+00 0.000000e+00 + 4.829615e+01 -6.760191e-03 -1.204524e-05 0.000000e+00 0.000000e+00 + 4.828261e+01 -6.784246e-03 -1.200913e-05 0.000000e+00 0.000000e+00 + 4.826902e+01 -6.808228e-03 -1.197297e-05 0.000000e+00 0.000000e+00 + 4.825538e+01 -6.832138e-03 -1.193677e-05 0.000000e+00 0.000000e+00 + 4.824169e+01 -6.855975e-03 -1.190053e-05 0.000000e+00 0.000000e+00 + 4.822795e+01 -6.879740e-03 -1.186427e-05 0.000000e+00 0.000000e+00 + 4.821417e+01 -6.903432e-03 -1.182797e-05 0.000000e+00 0.000000e+00 + 4.820034e+01 -6.927052e-03 -1.179164e-05 0.000000e+00 0.000000e+00 + 4.818646e+01 -6.950599e-03 -1.175529e-05 0.000000e+00 0.000000e+00 + 4.817254e+01 -6.974073e-03 -1.171892e-05 0.000000e+00 0.000000e+00 + 4.815856e+01 -6.997474e-03 -1.168253e-05 0.000000e+00 0.000000e+00 + 4.814455e+01 -7.020803e-03 -1.164611e-05 0.000000e+00 0.000000e+00 + 4.813048e+01 -7.044059e-03 -1.160969e-05 0.000000e+00 0.000000e+00 + 4.811637e+01 -7.067242e-03 -1.157325e-05 0.000000e+00 0.000000e+00 + 4.810221e+01 -7.090352e-03 -1.153680e-05 0.000000e+00 0.000000e+00 + 4.808801e+01 -7.113389e-03 -1.150035e-05 0.000000e+00 0.000000e+00 + 4.807376e+01 -7.136353e-03 -1.146389e-05 0.000000e+00 0.000000e+00 + 4.805946e+01 -7.159244e-03 -1.142742e-05 0.000000e+00 0.000000e+00 + 4.804512e+01 -7.182063e-03 -1.139096e-05 0.000000e+00 0.000000e+00 + 4.803074e+01 -7.204808e-03 -1.135450e-05 0.000000e+00 0.000000e+00 + 4.801630e+01 -7.227481e-03 -1.131804e-05 0.000000e+00 0.000000e+00 + 4.800183e+01 -7.250080e-03 -1.128159e-05 0.000000e+00 0.000000e+00 + 4.798730e+01 -7.272607e-03 -1.124514e-05 0.000000e+00 0.000000e+00 + 4.797273e+01 -7.295061e-03 -1.120871e-05 0.000000e+00 0.000000e+00 + 4.795812e+01 -7.317442e-03 -1.117229e-05 0.000000e+00 0.000000e+00 + 4.794347e+01 -7.339750e-03 -1.113588e-05 0.000000e+00 0.000000e+00 + 4.792876e+01 -7.361985e-03 -1.109949e-05 0.000000e+00 0.000000e+00 + 4.791402e+01 -7.384148e-03 -1.106312e-05 0.000000e+00 0.000000e+00 + 4.789923e+01 -7.406238e-03 -1.102677e-05 0.000000e+00 0.000000e+00 + 4.788439e+01 -7.428255e-03 -1.099044e-05 0.000000e+00 0.000000e+00 + 4.786951e+01 -7.450200e-03 -1.095414e-05 0.000000e+00 0.000000e+00 + 4.785459e+01 -7.472072e-03 -1.091786e-05 0.000000e+00 0.000000e+00 + 4.783963e+01 -7.493871e-03 -1.088161e-05 0.000000e+00 0.000000e+00 + 4.782462e+01 -7.515598e-03 -1.084539e-05 0.000000e+00 0.000000e+00 + 4.780956e+01 -7.537253e-03 -1.080921e-05 0.000000e+00 0.000000e+00 + 4.779447e+01 -7.558835e-03 -1.077305e-05 0.000000e+00 0.000000e+00 + 4.777933e+01 -7.580345e-03 -1.073693e-05 0.000000e+00 0.000000e+00 + 4.776415e+01 -7.601783e-03 -1.070085e-05 0.000000e+00 0.000000e+00 + 4.774892e+01 -7.623148e-03 -1.066481e-05 0.000000e+00 0.000000e+00 + 4.773365e+01 -7.644442e-03 -1.062880e-05 0.000000e+00 0.000000e+00 + 4.771834e+01 -7.665664e-03 -1.059284e-05 0.000000e+00 0.000000e+00 + 4.770299e+01 -7.686813e-03 -1.055692e-05 0.000000e+00 0.000000e+00 + 4.768760e+01 -7.707891e-03 -1.052105e-05 0.000000e+00 0.000000e+00 + 4.767216e+01 -7.728898e-03 -1.048522e-05 0.000000e+00 0.000000e+00 + 4.765668e+01 -7.749832e-03 -1.044944e-05 0.000000e+00 0.000000e+00 + 4.764116e+01 -7.770695e-03 -1.041371e-05 0.000000e+00 0.000000e+00 + 4.762560e+01 -7.791487e-03 -1.037803e-05 0.000000e+00 0.000000e+00 + 4.760999e+01 -7.812208e-03 -1.034240e-05 0.000000e+00 0.000000e+00 + 4.759435e+01 -7.832857e-03 -1.030682e-05 0.000000e+00 0.000000e+00 + 4.757866e+01 -7.853435e-03 -1.027130e-05 0.000000e+00 0.000000e+00 + 4.756294e+01 -7.873942e-03 -1.023584e-05 0.000000e+00 0.000000e+00 + 4.754717e+01 -7.894378e-03 -1.020043e-05 0.000000e+00 0.000000e+00 + 4.753136e+01 -7.914744e-03 -1.016508e-05 0.000000e+00 0.000000e+00 + 4.751551e+01 -7.935039e-03 -1.012980e-05 0.000000e+00 0.000000e+00 + 4.749962e+01 -7.955263e-03 -1.009457e-05 0.000000e+00 0.000000e+00 + 4.748369e+01 -7.975417e-03 -1.005940e-05 0.000000e+00 0.000000e+00 + 4.746772e+01 -7.995501e-03 -1.002430e-05 0.000000e+00 0.000000e+00 + 4.745170e+01 -8.015514e-03 -9.989265e-06 0.000000e+00 0.000000e+00 + 4.743565e+01 -8.035458e-03 -9.954294e-06 0.000000e+00 0.000000e+00 + 4.741956e+01 -8.055331e-03 -9.919390e-06 0.000000e+00 0.000000e+00 + 4.740343e+01 -8.075135e-03 -9.884554e-06 0.000000e+00 0.000000e+00 + 4.738726e+01 -8.094870e-03 -9.849787e-06 0.000000e+00 0.000000e+00 + 4.737105e+01 -8.114535e-03 -9.815090e-06 0.000000e+00 0.000000e+00 + 4.735480e+01 -8.134130e-03 -9.780464e-06 0.000000e+00 0.000000e+00 + 4.733852e+01 -8.153657e-03 -9.745911e-06 0.000000e+00 0.000000e+00 + 4.732219e+01 -8.173114e-03 -9.711430e-06 0.000000e+00 0.000000e+00 + 4.730582e+01 -8.192502e-03 -9.677024e-06 0.000000e+00 0.000000e+00 + 4.728942e+01 -8.211822e-03 -9.642692e-06 0.000000e+00 0.000000e+00 + 4.727298e+01 -8.231073e-03 -9.608437e-06 0.000000e+00 0.000000e+00 + 4.725650e+01 -8.250256e-03 -9.574258e-06 0.000000e+00 0.000000e+00 + 4.723998e+01 -8.269370e-03 -9.540157e-06 0.000000e+00 0.000000e+00 + 4.722342e+01 -8.288416e-03 -9.506134e-06 0.000000e+00 0.000000e+00 + 4.720682e+01 -8.307395e-03 -9.472191e-06 0.000000e+00 0.000000e+00 + 4.719019e+01 -8.326305e-03 -9.438328e-06 0.000000e+00 0.000000e+00 + 4.717352e+01 -8.345148e-03 -9.404546e-06 0.000000e+00 0.000000e+00 + 4.715681e+01 -8.363924e-03 -9.370846e-06 0.000000e+00 0.000000e+00 + 4.714006e+01 -8.382632e-03 -9.337228e-06 0.000000e+00 0.000000e+00 + 4.712328e+01 -8.401273e-03 -9.303694e-06 0.000000e+00 0.000000e+00 + 4.710646e+01 -8.419846e-03 -9.270244e-06 0.000000e+00 0.000000e+00 + 4.708960e+01 -8.438354e-03 -9.236878e-06 0.000000e+00 0.000000e+00 + 4.707270e+01 -8.456794e-03 -9.203598e-06 0.000000e+00 0.000000e+00 + 4.705577e+01 -8.475168e-03 -9.170403e-06 0.000000e+00 0.000000e+00 + 4.703880e+01 -8.493476e-03 -9.137296e-06 0.000000e+00 0.000000e+00 + 4.702180e+01 -8.511717e-03 -9.104276e-06 0.000000e+00 0.000000e+00 + 4.700476e+01 -8.529893e-03 -9.071344e-06 0.000000e+00 0.000000e+00 + 4.698768e+01 -8.548003e-03 -9.038500e-06 0.000000e+00 0.000000e+00 + 4.697056e+01 -8.566047e-03 -9.005746e-06 0.000000e+00 0.000000e+00 + 4.695341e+01 -8.584026e-03 -8.973081e-06 0.000000e+00 0.000000e+00 + 4.693623e+01 -8.601939e-03 -8.940507e-06 0.000000e+00 0.000000e+00 + 4.691901e+01 -8.619788e-03 -8.908023e-06 0.000000e+00 0.000000e+00 + 4.690175e+01 -8.637571e-03 -8.875631e-06 0.000000e+00 0.000000e+00 + 4.688446e+01 -8.655290e-03 -8.843331e-06 0.000000e+00 0.000000e+00 + 4.686713e+01 -8.672945e-03 -8.811123e-06 0.000000e+00 0.000000e+00 + 4.684976e+01 -8.690535e-03 -8.779009e-06 0.000000e+00 0.000000e+00 + 4.683237e+01 -8.708061e-03 -8.746987e-06 0.000000e+00 0.000000e+00 + 4.681493e+01 -8.725523e-03 -8.715059e-06 0.000000e+00 0.000000e+00 + 4.679746e+01 -8.742921e-03 -8.683226e-06 0.000000e+00 0.000000e+00 + 4.677996e+01 -8.760256e-03 -8.651487e-06 0.000000e+00 0.000000e+00 + 4.676242e+01 -8.777527e-03 -8.619843e-06 0.000000e+00 0.000000e+00 + 4.674485e+01 -8.794735e-03 -8.588294e-06 0.000000e+00 0.000000e+00 + 4.672724e+01 -8.811880e-03 -8.556842e-06 0.000000e+00 0.000000e+00 + 4.670960e+01 -8.828963e-03 -8.525486e-06 0.000000e+00 0.000000e+00 + 4.669193e+01 -8.845982e-03 -8.494226e-06 0.000000e+00 0.000000e+00 + 4.667422e+01 -8.862940e-03 -8.463063e-06 0.000000e+00 0.000000e+00 + 4.665648e+01 -8.879835e-03 -8.431998e-06 0.000000e+00 0.000000e+00 + 4.663870e+01 -8.896668e-03 -8.401030e-06 0.000000e+00 0.000000e+00 + 4.662089e+01 -8.913439e-03 -8.370160e-06 0.000000e+00 0.000000e+00 + 4.660305e+01 -8.930148e-03 -8.339388e-06 0.000000e+00 0.000000e+00 + 4.658517e+01 -8.946797e-03 -8.308714e-06 0.000000e+00 0.000000e+00 + 4.656726e+01 -8.963383e-03 -8.278140e-06 0.000000e+00 0.000000e+00 + 4.654932e+01 -8.979909e-03 -8.247664e-06 0.000000e+00 0.000000e+00 + 4.653134e+01 -8.996374e-03 -8.217287e-06 0.000000e+00 0.000000e+00 + 4.651333e+01 -9.012778e-03 -8.187010e-06 0.000000e+00 0.000000e+00 + 4.649529e+01 -9.029122e-03 -8.156833e-06 0.000000e+00 0.000000e+00 + 4.647721e+01 -9.045406e-03 -8.126756e-06 0.000000e+00 0.000000e+00 + 4.645911e+01 -9.061629e-03 -8.096779e-06 0.000000e+00 0.000000e+00 + 4.644097e+01 -9.077793e-03 -8.066902e-06 0.000000e+00 0.000000e+00 + 4.642280e+01 -9.093897e-03 -8.037126e-06 0.000000e+00 0.000000e+00 + 4.640459e+01 -9.109942e-03 -8.007450e-06 0.000000e+00 0.000000e+00 + 4.638636e+01 -9.125927e-03 -7.977875e-06 0.000000e+00 0.000000e+00 + 4.636809e+01 -9.141853e-03 -7.948401e-06 0.000000e+00 0.000000e+00 + 4.634979e+01 -9.157721e-03 -7.919029e-06 0.000000e+00 0.000000e+00 + 4.633146e+01 -9.173529e-03 -7.889757e-06 0.000000e+00 0.000000e+00 + 4.631309e+01 -9.189280e-03 -7.860587e-06 0.000000e+00 0.000000e+00 + 4.629470e+01 -9.204972e-03 -7.831519e-06 0.000000e+00 0.000000e+00 + 4.627627e+01 -9.220606e-03 -7.802552e-06 0.000000e+00 0.000000e+00 + 4.625782e+01 -9.236182e-03 -7.773687e-06 0.000000e+00 0.000000e+00 + 4.623933e+01 -9.251701e-03 -7.744924e-06 0.000000e+00 0.000000e+00 + 4.622081e+01 -9.267162e-03 -7.716263e-06 0.000000e+00 0.000000e+00 + 4.620226e+01 -9.282566e-03 -7.687704e-06 0.000000e+00 0.000000e+00 + 4.618368e+01 -9.297913e-03 -7.659246e-06 0.000000e+00 0.000000e+00 + 4.616507e+01 -9.313203e-03 -7.630891e-06 0.000000e+00 0.000000e+00 + 4.614643e+01 -9.328436e-03 -7.602638e-06 0.000000e+00 0.000000e+00 + 4.612776e+01 -9.343613e-03 -7.574487e-06 0.000000e+00 0.000000e+00 + 4.610905e+01 -9.358734e-03 -7.546439e-06 0.000000e+00 0.000000e+00 + 4.609032e+01 -9.373799e-03 -7.518492e-06 0.000000e+00 0.000000e+00 + 4.607156e+01 -9.388808e-03 -7.490648e-06 0.000000e+00 0.000000e+00 + 4.605277e+01 -9.403762e-03 -7.462906e-06 0.000000e+00 0.000000e+00 + 4.603394e+01 -9.418660e-03 -7.435266e-06 0.000000e+00 0.000000e+00 + 4.601509e+01 -9.433503e-03 -7.407729e-06 0.000000e+00 0.000000e+00 + 4.599621e+01 -9.448291e-03 -7.380294e-06 0.000000e+00 0.000000e+00 + 4.597730e+01 -9.463024e-03 -7.352961e-06 0.000000e+00 0.000000e+00 + 4.595836e+01 -9.477703e-03 -7.325730e-06 0.000000e+00 0.000000e+00 + 4.593939e+01 -9.492327e-03 -7.298601e-06 0.000000e+00 0.000000e+00 + 4.592039e+01 -9.506897e-03 -7.271575e-06 0.000000e+00 0.000000e+00 + 4.590136e+01 -9.521414e-03 -7.244650e-06 0.000000e+00 0.000000e+00 + 4.588230e+01 -9.535876e-03 -7.217828e-06 0.000000e+00 0.000000e+00 + 4.586322e+01 -9.550285e-03 -7.191107e-06 0.000000e+00 0.000000e+00 + 4.584410e+01 -9.564641e-03 -7.164488e-06 0.000000e+00 0.000000e+00 + 4.582496e+01 -9.578943e-03 -7.137972e-06 0.000000e+00 0.000000e+00 + 4.580579e+01 -9.593193e-03 -7.111556e-06 0.000000e+00 0.000000e+00 + 4.578658e+01 -9.607389e-03 -7.085243e-06 0.000000e+00 0.000000e+00 + 4.576736e+01 -9.621534e-03 -7.059031e-06 0.000000e+00 0.000000e+00 + 4.574810e+01 -9.635626e-03 -7.032920e-06 0.000000e+00 0.000000e+00 + 4.572881e+01 -9.649665e-03 -7.006911e-06 0.000000e+00 0.000000e+00 + 4.570950e+01 -9.663653e-03 -6.981003e-06 0.000000e+00 0.000000e+00 + 4.569016e+01 -9.677589e-03 -6.955196e-06 0.000000e+00 0.000000e+00 + 4.567079e+01 -9.691474e-03 -6.929490e-06 0.000000e+00 0.000000e+00 + 4.565139e+01 -9.705307e-03 -6.903884e-06 0.000000e+00 0.000000e+00 + 4.563197e+01 -9.719090e-03 -6.878380e-06 0.000000e+00 0.000000e+00 + 4.561252e+01 -9.732821e-03 -6.852976e-06 0.000000e+00 0.000000e+00 + 4.559304e+01 -9.746502e-03 -6.827673e-06 0.000000e+00 0.000000e+00 + 4.557353e+01 -9.760132e-03 -6.802470e-06 0.000000e+00 0.000000e+00 + 4.555400e+01 -9.773712e-03 -6.777367e-06 0.000000e+00 0.000000e+00 + 4.553444e+01 -9.787241e-03 -6.752364e-06 0.000000e+00 0.000000e+00 + 4.551485e+01 -9.800721e-03 -6.727461e-06 0.000000e+00 0.000000e+00 + 4.549523e+01 -9.814151e-03 -6.702657e-06 0.000000e+00 0.000000e+00 + 4.547559e+01 -9.827532e-03 -6.677953e-06 0.000000e+00 0.000000e+00 + 4.545592e+01 -9.840863e-03 -6.653349e-06 0.000000e+00 0.000000e+00 + 4.543623e+01 -9.854145e-03 -6.628843e-06 0.000000e+00 0.000000e+00 + 4.541651e+01 -9.867379e-03 -6.604437e-06 0.000000e+00 0.000000e+00 + 4.539676e+01 -9.880563e-03 -6.580129e-06 0.000000e+00 0.000000e+00 + 4.537698e+01 -9.893699e-03 -6.555920e-06 0.000000e+00 0.000000e+00 + 4.535718e+01 -9.906787e-03 -6.531809e-06 0.000000e+00 0.000000e+00 + 4.533736e+01 -9.919826e-03 -6.507796e-06 0.000000e+00 0.000000e+00 + 4.531750e+01 -9.932818e-03 -6.483882e-06 0.000000e+00 0.000000e+00 + 4.529763e+01 -9.945762e-03 -6.460065e-06 0.000000e+00 0.000000e+00 + 4.527772e+01 -9.958658e-03 -6.436346e-06 0.000000e+00 0.000000e+00 + 4.525779e+01 -9.971507e-03 -6.412724e-06 0.000000e+00 0.000000e+00 + 4.523784e+01 -9.984309e-03 -6.389199e-06 0.000000e+00 0.000000e+00 + 4.521785e+01 -9.997064e-03 -6.365772e-06 0.000000e+00 0.000000e+00 + 4.519785e+01 -1.000977e-02 -6.342441e-06 0.000000e+00 0.000000e+00 + 4.517781e+01 -1.002243e-02 -6.319206e-06 0.000000e+00 0.000000e+00 + 4.515776e+01 -1.003505e-02 -6.296068e-06 0.000000e+00 0.000000e+00 + 4.513767e+01 -1.004762e-02 -6.273025e-06 0.000000e+00 0.000000e+00 + 4.511757e+01 -1.006014e-02 -6.250079e-06 0.000000e+00 0.000000e+00 + 4.509743e+01 -1.007262e-02 -6.227228e-06 0.000000e+00 0.000000e+00 + 4.507728e+01 -1.008505e-02 -6.204472e-06 0.000000e+00 0.000000e+00 + 4.505709e+01 -1.009744e-02 -6.181812e-06 0.000000e+00 0.000000e+00 + 4.503689e+01 -1.010978e-02 -6.159246e-06 0.000000e+00 0.000000e+00 + 4.501665e+01 -1.012207e-02 -6.136775e-06 0.000000e+00 0.000000e+00 + 4.499640e+01 -1.013433e-02 -6.114398e-06 0.000000e+00 0.000000e+00 + 4.497612e+01 -1.014653e-02 -6.092115e-06 0.000000e+00 0.000000e+00 + 4.495581e+01 -1.015869e-02 -6.069926e-06 0.000000e+00 0.000000e+00 + 4.493548e+01 -1.017081e-02 -6.047830e-06 0.000000e+00 0.000000e+00 + 4.491513e+01 -1.018288e-02 -6.025828e-06 0.000000e+00 0.000000e+00 + 4.489475e+01 -1.019491e-02 -6.003919e-06 0.000000e+00 0.000000e+00 + 4.487435e+01 -1.020690e-02 -5.982102e-06 0.000000e+00 0.000000e+00 + 4.485392e+01 -1.021884e-02 -5.960378e-06 0.000000e+00 0.000000e+00 + 4.483347e+01 -1.023074e-02 -5.938746e-06 0.000000e+00 0.000000e+00 + 4.481300e+01 -1.024260e-02 -5.917206e-06 0.000000e+00 0.000000e+00 + 4.479250e+01 -1.025441e-02 -5.895758e-06 0.000000e+00 0.000000e+00 + 4.477198e+01 -1.026618e-02 -5.874401e-06 0.000000e+00 0.000000e+00 + 4.475144e+01 -1.027791e-02 -5.853135e-06 0.000000e+00 0.000000e+00 + 4.473087e+01 -1.028959e-02 -5.831960e-06 0.000000e+00 0.000000e+00 + 4.471028e+01 -1.030124e-02 -5.810876e-06 0.000000e+00 0.000000e+00 + 4.468967e+01 -1.031284e-02 -5.789881e-06 0.000000e+00 0.000000e+00 + 4.466903e+01 -1.032440e-02 -5.768977e-06 0.000000e+00 0.000000e+00 + 4.464837e+01 -1.033591e-02 -5.748162e-06 0.000000e+00 0.000000e+00 + 4.462769e+01 -1.034739e-02 -5.727437e-06 0.000000e+00 0.000000e+00 + 4.460698e+01 -1.035882e-02 -5.706801e-06 0.000000e+00 0.000000e+00 + 4.458625e+01 -1.037022e-02 -5.686253e-06 0.000000e+00 0.000000e+00 + 4.456550e+01 -1.038157e-02 -5.665794e-06 0.000000e+00 0.000000e+00 + 4.454472e+01 -1.039288e-02 -5.645423e-06 0.000000e+00 0.000000e+00 + 4.452393e+01 -1.040415e-02 -5.625140e-06 0.000000e+00 0.000000e+00 + 4.450311e+01 -1.041538e-02 -5.604945e-06 0.000000e+00 0.000000e+00 + 4.448227e+01 -1.042657e-02 -5.584837e-06 0.000000e+00 0.000000e+00 + 4.446140e+01 -1.043772e-02 -5.564815e-06 0.000000e+00 0.000000e+00 + 4.444051e+01 -1.044883e-02 -5.544881e-06 0.000000e+00 0.000000e+00 + 4.441961e+01 -1.045990e-02 -5.525033e-06 0.000000e+00 0.000000e+00 + 4.439868e+01 -1.047093e-02 -5.505271e-06 0.000000e+00 0.000000e+00 + 4.437772e+01 -1.048192e-02 -5.485595e-06 0.000000e+00 0.000000e+00 + 4.435675e+01 -1.049287e-02 -5.466004e-06 0.000000e+00 0.000000e+00 + 4.433575e+01 -1.050378e-02 -5.446498e-06 0.000000e+00 0.000000e+00 + 4.431473e+01 -1.051466e-02 -5.427077e-06 0.000000e+00 0.000000e+00 + 4.429369e+01 -1.052549e-02 -5.407741e-06 0.000000e+00 0.000000e+00 + 4.427263e+01 -1.053629e-02 -5.388488e-06 0.000000e+00 0.000000e+00 + 4.425155e+01 -1.054705e-02 -5.369320e-06 0.000000e+00 0.000000e+00 + 4.423044e+01 -1.055777e-02 -5.350235e-06 0.000000e+00 0.000000e+00 + 4.420932e+01 -1.056845e-02 -5.331234e-06 0.000000e+00 0.000000e+00 + 4.418817e+01 -1.057909e-02 -5.312315e-06 0.000000e+00 0.000000e+00 + 4.416700e+01 -1.058970e-02 -5.293479e-06 0.000000e+00 0.000000e+00 + 4.414581e+01 -1.060027e-02 -5.274725e-06 0.000000e+00 0.000000e+00 + 4.412460e+01 -1.061080e-02 -5.256053e-06 0.000000e+00 0.000000e+00 + 4.410337e+01 -1.062129e-02 -5.237463e-06 0.000000e+00 0.000000e+00 + 4.408211e+01 -1.063175e-02 -5.218955e-06 0.000000e+00 0.000000e+00 + 4.406084e+01 -1.064217e-02 -5.200527e-06 0.000000e+00 0.000000e+00 + 4.403955e+01 -1.065255e-02 -5.182180e-06 0.000000e+00 0.000000e+00 + 4.401823e+01 -1.066289e-02 -5.163913e-06 0.000000e+00 0.000000e+00 + 4.399689e+01 -1.067320e-02 -5.145727e-06 0.000000e+00 0.000000e+00 + 4.397554e+01 -1.068348e-02 -5.127620e-06 0.000000e+00 0.000000e+00 + 4.395416e+01 -1.069371e-02 -5.109592e-06 0.000000e+00 0.000000e+00 + 4.393276e+01 -1.070392e-02 -5.091644e-06 0.000000e+00 0.000000e+00 + 4.391134e+01 -1.071408e-02 -5.073774e-06 0.000000e+00 0.000000e+00 + 4.388991e+01 -1.072421e-02 -5.055983e-06 0.000000e+00 0.000000e+00 + 4.386845e+01 -1.073430e-02 -5.038270e-06 0.000000e+00 0.000000e+00 + 4.384697e+01 -1.074436e-02 -5.020634e-06 0.000000e+00 0.000000e+00 + 4.382547e+01 -1.075439e-02 -5.003076e-06 0.000000e+00 0.000000e+00 + 4.380395e+01 -1.076438e-02 -4.985595e-06 0.000000e+00 0.000000e+00 + 4.378241e+01 -1.077433e-02 -4.968191e-06 0.000000e+00 0.000000e+00 + 4.376085e+01 -1.078425e-02 -4.950864e-06 0.000000e+00 0.000000e+00 + 4.373928e+01 -1.079413e-02 -4.933612e-06 0.000000e+00 0.000000e+00 + 4.371768e+01 -1.080398e-02 -4.916437e-06 0.000000e+00 0.000000e+00 + 4.369606e+01 -1.081380e-02 -4.899337e-06 0.000000e+00 0.000000e+00 + 4.367442e+01 -1.082358e-02 -4.882312e-06 0.000000e+00 0.000000e+00 + 4.365277e+01 -1.083333e-02 -4.865362e-06 0.000000e+00 0.000000e+00 + 4.363109e+01 -1.084304e-02 -4.848486e-06 0.000000e+00 0.000000e+00 + 4.360939e+01 -1.085272e-02 -4.831685e-06 0.000000e+00 0.000000e+00 + 4.358768e+01 -1.086237e-02 -4.814957e-06 0.000000e+00 0.000000e+00 + 4.356594e+01 -1.087198e-02 -4.798303e-06 0.000000e+00 0.000000e+00 + 4.354419e+01 -1.088156e-02 -4.781723e-06 0.000000e+00 0.000000e+00 + 4.352242e+01 -1.089111e-02 -4.765215e-06 0.000000e+00 0.000000e+00 + 4.350063e+01 -1.090062e-02 -4.748779e-06 0.000000e+00 0.000000e+00 + 4.347881e+01 -1.091010e-02 -4.732416e-06 0.000000e+00 0.000000e+00 + 4.345699e+01 -1.091955e-02 -4.716125e-06 0.000000e+00 0.000000e+00 + 4.343514e+01 -1.092897e-02 -4.699905e-06 0.000000e+00 0.000000e+00 + 4.341327e+01 -1.093835e-02 -4.683757e-06 0.000000e+00 0.000000e+00 + 4.339138e+01 -1.094770e-02 -4.667679e-06 0.000000e+00 0.000000e+00 + 4.336948e+01 -1.095702e-02 -4.651672e-06 0.000000e+00 0.000000e+00 + 4.334756e+01 -1.096631e-02 -4.635736e-06 0.000000e+00 0.000000e+00 + 4.332561e+01 -1.097557e-02 -4.619869e-06 0.000000e+00 0.000000e+00 + 4.330365e+01 -1.098479e-02 -4.604072e-06 0.000000e+00 0.000000e+00 + 4.328167e+01 -1.099398e-02 -4.588344e-06 0.000000e+00 0.000000e+00 + 4.325968e+01 -1.100314e-02 -4.572685e-06 0.000000e+00 0.000000e+00 + 4.323766e+01 -1.101227e-02 -4.557095e-06 0.000000e+00 0.000000e+00 + 4.321563e+01 -1.102137e-02 -4.541573e-06 0.000000e+00 0.000000e+00 + 4.319358e+01 -1.103044e-02 -4.526119e-06 0.000000e+00 0.000000e+00 + 4.317151e+01 -1.103948e-02 -4.510733e-06 0.000000e+00 0.000000e+00 + 4.314942e+01 -1.104848e-02 -4.495414e-06 0.000000e+00 0.000000e+00 + 4.312731e+01 -1.105746e-02 -4.480162e-06 0.000000e+00 0.000000e+00 + 4.310519e+01 -1.106640e-02 -4.464977e-06 0.000000e+00 0.000000e+00 + 4.308305e+01 -1.107532e-02 -4.449858e-06 0.000000e+00 0.000000e+00 + 4.306089e+01 -1.108420e-02 -4.434805e-06 0.000000e+00 0.000000e+00 + 4.303871e+01 -1.109306e-02 -4.419818e-06 0.000000e+00 0.000000e+00 + 4.301652e+01 -1.110188e-02 -4.404896e-06 0.000000e+00 0.000000e+00 + 4.299430e+01 -1.111068e-02 -4.390040e-06 0.000000e+00 0.000000e+00 + 4.297207e+01 -1.111944e-02 -4.375248e-06 0.000000e+00 0.000000e+00 + 4.294982e+01 -1.112818e-02 -4.360521e-06 0.000000e+00 0.000000e+00 + 4.292756e+01 -1.113688e-02 -4.345858e-06 0.000000e+00 0.000000e+00 + 4.290528e+01 -1.114556e-02 -4.331258e-06 0.000000e+00 0.000000e+00 + 4.288298e+01 -1.115421e-02 -4.316723e-06 0.000000e+00 0.000000e+00 + 4.286066e+01 -1.116283e-02 -4.302250e-06 0.000000e+00 0.000000e+00 + 4.283833e+01 -1.117142e-02 -4.287840e-06 0.000000e+00 0.000000e+00 + 4.281597e+01 -1.117998e-02 -4.273493e-06 0.000000e+00 0.000000e+00 + 4.279361e+01 -1.118851e-02 -4.259208e-06 0.000000e+00 0.000000e+00 + 4.277122e+01 -1.119702e-02 -4.244985e-06 0.000000e+00 0.000000e+00 + 4.274882e+01 -1.120549e-02 -4.230824e-06 0.000000e+00 0.000000e+00 + 4.272640e+01 -1.121394e-02 -4.216723e-06 0.000000e+00 0.000000e+00 + 4.270396e+01 -1.122236e-02 -4.202684e-06 0.000000e+00 0.000000e+00 + 4.268151e+01 -1.123075e-02 -4.188706e-06 0.000000e+00 0.000000e+00 + 4.265904e+01 -1.123911e-02 -4.174788e-06 0.000000e+00 0.000000e+00 + 4.263655e+01 -1.124745e-02 -4.160930e-06 0.000000e+00 0.000000e+00 + 4.261405e+01 -1.125576e-02 -4.147131e-06 0.000000e+00 0.000000e+00 + 4.259153e+01 -1.126404e-02 -4.133393e-06 0.000000e+00 0.000000e+00 + 4.256899e+01 -1.127229e-02 -4.119713e-06 0.000000e+00 0.000000e+00 + 4.254644e+01 -1.128052e-02 -4.106092e-06 0.000000e+00 0.000000e+00 + 4.252387e+01 -1.128872e-02 -4.092529e-06 0.000000e+00 0.000000e+00 + 4.250129e+01 -1.129689e-02 -4.079025e-06 0.000000e+00 0.000000e+00 + 4.247868e+01 -1.130503e-02 -4.065579e-06 0.000000e+00 0.000000e+00 + 4.245607e+01 -1.131315e-02 -4.052190e-06 0.000000e+00 0.000000e+00 + 4.243343e+01 -1.132124e-02 -4.038859e-06 0.000000e+00 0.000000e+00 + 4.241078e+01 -1.132931e-02 -4.025584e-06 0.000000e+00 0.000000e+00 + 4.238811e+01 -1.133734e-02 -4.012366e-06 0.000000e+00 0.000000e+00 + 4.236543e+01 -1.134536e-02 -3.999205e-06 0.000000e+00 0.000000e+00 + 4.234273e+01 -1.135334e-02 -3.986100e-06 0.000000e+00 0.000000e+00 + 4.232002e+01 -1.136130e-02 -3.973050e-06 0.000000e+00 0.000000e+00 + 4.229729e+01 -1.136923e-02 -3.960056e-06 0.000000e+00 0.000000e+00 + 4.227454e+01 -1.137714e-02 -3.947117e-06 0.000000e+00 0.000000e+00 + 4.225178e+01 -1.138502e-02 -3.934233e-06 0.000000e+00 0.000000e+00 + 4.222900e+01 -1.139288e-02 -3.921404e-06 0.000000e+00 0.000000e+00 + 4.220621e+01 -1.140071e-02 -3.908629e-06 0.000000e+00 0.000000e+00 + 4.218340e+01 -1.140851e-02 -3.895907e-06 0.000000e+00 0.000000e+00 + 4.216057e+01 -1.141629e-02 -3.883240e-06 0.000000e+00 0.000000e+00 + 4.213773e+01 -1.142404e-02 -3.870626e-06 0.000000e+00 0.000000e+00 + 4.211488e+01 -1.143177e-02 -3.858065e-06 0.000000e+00 0.000000e+00 + 4.209201e+01 -1.143948e-02 -3.845557e-06 0.000000e+00 0.000000e+00 + 4.206912e+01 -1.144716e-02 -3.833101e-06 0.000000e+00 0.000000e+00 + 4.204622e+01 -1.145481e-02 -3.820698e-06 0.000000e+00 0.000000e+00 + 4.202330e+01 -1.146244e-02 -3.808347e-06 0.000000e+00 0.000000e+00 + 4.200037e+01 -1.147004e-02 -3.796047e-06 0.000000e+00 0.000000e+00 + 4.197742e+01 -1.147762e-02 -3.783799e-06 0.000000e+00 0.000000e+00 + 4.195446e+01 -1.148518e-02 -3.771601e-06 0.000000e+00 0.000000e+00 + 4.193148e+01 -1.149271e-02 -3.759455e-06 0.000000e+00 0.000000e+00 + 4.190849e+01 -1.150022e-02 -3.747359e-06 0.000000e+00 0.000000e+00 + 4.188548e+01 -1.150770e-02 -3.735313e-06 0.000000e+00 0.000000e+00 + 4.186246e+01 -1.151516e-02 -3.723317e-06 0.000000e+00 0.000000e+00 + 4.183942e+01 -1.152259e-02 -3.711371e-06 0.000000e+00 0.000000e+00 + 4.181637e+01 -1.153000e-02 -3.699475e-06 0.000000e+00 0.000000e+00 + 4.179330e+01 -1.153739e-02 -3.687627e-06 0.000000e+00 0.000000e+00 + 4.177022e+01 -1.154475e-02 -3.675828e-06 0.000000e+00 0.000000e+00 + 4.174712e+01 -1.155209e-02 -3.664078e-06 0.000000e+00 0.000000e+00 + 4.172401e+01 -1.155941e-02 -3.652376e-06 0.000000e+00 0.000000e+00 + 4.170088e+01 -1.156670e-02 -3.640722e-06 0.000000e+00 0.000000e+00 + 4.167774e+01 -1.157397e-02 -3.629116e-06 0.000000e+00 0.000000e+00 + 4.165459e+01 -1.158122e-02 -3.617557e-06 0.000000e+00 0.000000e+00 + 4.163142e+01 -1.158844e-02 -3.606046e-06 0.000000e+00 0.000000e+00 + 4.160823e+01 -1.159564e-02 -3.594581e-06 0.000000e+00 0.000000e+00 + 4.158503e+01 -1.160282e-02 -3.583163e-06 0.000000e+00 0.000000e+00 + 4.156182e+01 -1.160998e-02 -3.571791e-06 0.000000e+00 0.000000e+00 + 4.153859e+01 -1.161711e-02 -3.560465e-06 0.000000e+00 0.000000e+00 + 4.151535e+01 -1.162422e-02 -3.549185e-06 0.000000e+00 0.000000e+00 + 4.149210e+01 -1.163130e-02 -3.537951e-06 0.000000e+00 0.000000e+00 + 4.146883e+01 -1.163837e-02 -3.526762e-06 0.000000e+00 0.000000e+00 + 4.144554e+01 -1.164541e-02 -3.515618e-06 0.000000e+00 0.000000e+00 + 4.142225e+01 -1.165243e-02 -3.504519e-06 0.000000e+00 0.000000e+00 + 4.139893e+01 -1.165943e-02 -3.493464e-06 0.000000e+00 0.000000e+00 + 4.137561e+01 -1.166641e-02 -3.482453e-06 0.000000e+00 0.000000e+00 + 4.135227e+01 -1.167336e-02 -3.471487e-06 0.000000e+00 0.000000e+00 + 4.132891e+01 -1.168029e-02 -3.460564e-06 0.000000e+00 0.000000e+00 + 4.130555e+01 -1.168720e-02 -3.449685e-06 0.000000e+00 0.000000e+00 + 4.128217e+01 -1.169409e-02 -3.438848e-06 0.000000e+00 0.000000e+00 + 4.125877e+01 -1.170096e-02 -3.428055e-06 0.000000e+00 0.000000e+00 + 4.123536e+01 -1.170780e-02 -3.417304e-06 0.000000e+00 0.000000e+00 + 4.121194e+01 -1.171463e-02 -3.406596e-06 0.000000e+00 0.000000e+00 + 4.118850e+01 -1.172143e-02 -3.395930e-06 0.000000e+00 0.000000e+00 + 4.116505e+01 -1.172821e-02 -3.385305e-06 0.000000e+00 0.000000e+00 + 4.114159e+01 -1.173497e-02 -3.374723e-06 0.000000e+00 0.000000e+00 + 4.111811e+01 -1.174171e-02 -3.364181e-06 0.000000e+00 0.000000e+00 + 4.109462e+01 -1.174843e-02 -3.353681e-06 0.000000e+00 0.000000e+00 + 4.107112e+01 -1.175512e-02 -3.343222e-06 0.000000e+00 0.000000e+00 + 4.104760e+01 -1.176180e-02 -3.332804e-06 0.000000e+00 0.000000e+00 + 4.102407e+01 -1.176846e-02 -3.322425e-06 0.000000e+00 0.000000e+00 + 4.100053e+01 -1.177509e-02 -3.312087e-06 0.000000e+00 0.000000e+00 + 4.097697e+01 -1.178170e-02 -3.301789e-06 0.000000e+00 0.000000e+00 + 4.095340e+01 -1.178830e-02 -3.291531e-06 0.000000e+00 0.000000e+00 + 4.092982e+01 -1.179487e-02 -3.281312e-06 0.000000e+00 0.000000e+00 + 4.090622e+01 -1.180142e-02 -3.271132e-06 0.000000e+00 0.000000e+00 + 4.088261e+01 -1.180795e-02 -3.260991e-06 0.000000e+00 0.000000e+00 + 4.085899e+01 -1.181447e-02 -3.250888e-06 0.000000e+00 0.000000e+00 + 4.083536e+01 -1.182096e-02 -3.240824e-06 0.000000e+00 0.000000e+00 + 4.081171e+01 -1.182743e-02 -3.230799e-06 0.000000e+00 0.000000e+00 + 4.078805e+01 -1.183388e-02 -3.220811e-06 0.000000e+00 0.000000e+00 + 4.076437e+01 -1.184031e-02 -3.210861e-06 0.000000e+00 0.000000e+00 + 4.074068e+01 -1.184672e-02 -3.200948e-06 0.000000e+00 0.000000e+00 + 4.071698e+01 -1.185312e-02 -3.191073e-06 0.000000e+00 0.000000e+00 + 4.069327e+01 -1.185949e-02 -3.181235e-06 0.000000e+00 0.000000e+00 + 4.066955e+01 -1.186584e-02 -3.171433e-06 0.000000e+00 0.000000e+00 + 4.064581e+01 -1.187217e-02 -3.161668e-06 0.000000e+00 0.000000e+00 + 4.062206e+01 -1.187849e-02 -3.151940e-06 0.000000e+00 0.000000e+00 + 4.059829e+01 -1.188478e-02 -3.142247e-06 0.000000e+00 0.000000e+00 + 4.057452e+01 -1.189106e-02 -3.132590e-06 0.000000e+00 0.000000e+00 + 4.055073e+01 -1.189731e-02 -3.122969e-06 0.000000e+00 0.000000e+00 + 4.052693e+01 -1.190355e-02 -3.113383e-06 0.000000e+00 0.000000e+00 + 4.050312e+01 -1.190977e-02 -3.103833e-06 0.000000e+00 0.000000e+00 + 4.047929e+01 -1.191596e-02 -3.094317e-06 0.000000e+00 0.000000e+00 + 4.045545e+01 -1.192214e-02 -3.084837e-06 0.000000e+00 0.000000e+00 + 4.043160e+01 -1.192830e-02 -3.075390e-06 0.000000e+00 0.000000e+00 + 4.040774e+01 -1.193445e-02 -3.065978e-06 0.000000e+00 0.000000e+00 + 4.038386e+01 -1.194057e-02 -3.056600e-06 0.000000e+00 0.000000e+00 + 4.035998e+01 -1.194667e-02 -3.047256e-06 0.000000e+00 0.000000e+00 + 4.033608e+01 -1.195276e-02 -3.037945e-06 0.000000e+00 0.000000e+00 + 4.031217e+01 -1.195882e-02 -3.028668e-06 0.000000e+00 0.000000e+00 + 4.028824e+01 -1.196487e-02 -3.019424e-06 0.000000e+00 0.000000e+00 + 4.026431e+01 -1.197090e-02 -3.010213e-06 0.000000e+00 0.000000e+00 + 4.024036e+01 -1.197691e-02 -3.001035e-06 0.000000e+00 0.000000e+00 + 4.021640e+01 -1.198291e-02 -2.991889e-06 0.000000e+00 0.000000e+00 + 4.019243e+01 -1.198888e-02 -2.982776e-06 0.000000e+00 0.000000e+00 + 4.016844e+01 -1.199484e-02 -2.973694e-06 0.000000e+00 0.000000e+00 + 4.014445e+01 -1.200078e-02 -2.964645e-06 0.000000e+00 0.000000e+00 + 4.012044e+01 -1.200670e-02 -2.955627e-06 0.000000e+00 0.000000e+00 + 4.009642e+01 -1.201260e-02 -2.946641e-06 0.000000e+00 0.000000e+00 + 4.007239e+01 -1.201848e-02 -2.937685e-06 0.000000e+00 0.000000e+00 + 4.004835e+01 -1.202435e-02 -2.928761e-06 0.000000e+00 0.000000e+00 + 4.002429e+01 -1.203020e-02 -2.919868e-06 0.000000e+00 0.000000e+00 + 4.000023e+01 -1.203603e-02 -2.911006e-06 0.000000e+00 0.000000e+00 + 3.997615e+01 -1.204184e-02 -2.902174e-06 0.000000e+00 0.000000e+00 + 3.995206e+01 -1.204764e-02 -2.893372e-06 0.000000e+00 0.000000e+00 + 3.992796e+01 -1.205341e-02 -2.884600e-06 0.000000e+00 0.000000e+00 + 3.990385e+01 -1.205917e-02 -2.875858e-06 0.000000e+00 0.000000e+00 + 3.987972e+01 -1.206492e-02 -2.867146e-06 0.000000e+00 0.000000e+00 + 3.985559e+01 -1.207064e-02 -2.858463e-06 0.000000e+00 0.000000e+00 + 3.983144e+01 -1.207635e-02 -2.849809e-06 0.000000e+00 0.000000e+00 + 3.980728e+01 -1.208204e-02 -2.841184e-06 0.000000e+00 0.000000e+00 + 3.978311e+01 -1.208772e-02 -2.832588e-06 0.000000e+00 0.000000e+00 + 3.975893e+01 -1.209337e-02 -2.824021e-06 0.000000e+00 0.000000e+00 + 3.973474e+01 -1.209901e-02 -2.815482e-06 0.000000e+00 0.000000e+00 + 3.971053e+01 -1.210464e-02 -2.806971e-06 0.000000e+00 0.000000e+00 + 3.968632e+01 -1.211024e-02 -2.798489e-06 0.000000e+00 0.000000e+00 + 3.966209e+01 -1.211583e-02 -2.790034e-06 0.000000e+00 0.000000e+00 + 3.963786e+01 -1.212140e-02 -2.781607e-06 0.000000e+00 0.000000e+00 + 3.961361e+01 -1.212696e-02 -2.773207e-06 0.000000e+00 0.000000e+00 + 3.958935e+01 -1.213249e-02 -2.764835e-06 0.000000e+00 0.000000e+00 + 3.956508e+01 -1.213801e-02 -2.756490e-06 0.000000e+00 0.000000e+00 + 3.954080e+01 -1.214352e-02 -2.748172e-06 0.000000e+00 0.000000e+00 + 3.951650e+01 -1.214901e-02 -2.739880e-06 0.000000e+00 0.000000e+00 + 3.949220e+01 -1.215448e-02 -2.731615e-06 0.000000e+00 0.000000e+00 + 3.946788e+01 -1.215993e-02 -2.723376e-06 0.000000e+00 0.000000e+00 + 3.944356e+01 -1.216537e-02 -2.715164e-06 0.000000e+00 0.000000e+00 + 3.941922e+01 -1.217079e-02 -2.706977e-06 0.000000e+00 0.000000e+00 + 3.939488e+01 -1.217620e-02 -2.698816e-06 0.000000e+00 0.000000e+00 + 3.937052e+01 -1.218159e-02 -2.690681e-06 0.000000e+00 0.000000e+00 + 3.934615e+01 -1.218696e-02 -2.682571e-06 0.000000e+00 0.000000e+00 + 3.932177e+01 -1.219232e-02 -2.674487e-06 0.000000e+00 0.000000e+00 + 3.929738e+01 -1.219766e-02 -2.666428e-06 0.000000e+00 0.000000e+00 + 3.927298e+01 -1.220299e-02 -2.658393e-06 0.000000e+00 0.000000e+00 + 3.924857e+01 -1.220829e-02 -2.650383e-06 0.000000e+00 0.000000e+00 + 3.922415e+01 -1.221359e-02 -2.642398e-06 0.000000e+00 0.000000e+00 + 3.919971e+01 -1.221886e-02 -2.634437e-06 0.000000e+00 0.000000e+00 + 3.917527e+01 -1.222413e-02 -2.626500e-06 0.000000e+00 0.000000e+00 + 3.915082e+01 -1.222937e-02 -2.618588e-06 0.000000e+00 0.000000e+00 + 3.912635e+01 -1.223460e-02 -2.610699e-06 0.000000e+00 0.000000e+00 + 3.910188e+01 -1.223981e-02 -2.602834e-06 0.000000e+00 0.000000e+00 + 3.907739e+01 -1.224501e-02 -2.594992e-06 0.000000e+00 0.000000e+00 + 3.905290e+01 -1.225019e-02 -2.587174e-06 0.000000e+00 0.000000e+00 + 3.902839e+01 -1.225536e-02 -2.579378e-06 0.000000e+00 0.000000e+00 + 3.900388e+01 -1.226051e-02 -2.571606e-06 0.000000e+00 0.000000e+00 + 3.897935e+01 -1.226565e-02 -2.563857e-06 0.000000e+00 0.000000e+00 + 3.895482e+01 -1.227077e-02 -2.556130e-06 0.000000e+00 0.000000e+00 + 3.893027e+01 -1.227587e-02 -2.548426e-06 0.000000e+00 0.000000e+00 + 3.890571e+01 -1.228096e-02 -2.540744e-06 0.000000e+00 0.000000e+00 + 3.888115e+01 -1.228603e-02 -2.533084e-06 0.000000e+00 0.000000e+00 + 3.885657e+01 -1.229109e-02 -2.525447e-06 0.000000e+00 0.000000e+00 + 3.883198e+01 -1.229614e-02 -2.517831e-06 0.000000e+00 0.000000e+00 + 3.880738e+01 -1.230116e-02 -2.510237e-06 0.000000e+00 0.000000e+00 + 3.878278e+01 -1.230618e-02 -2.502664e-06 0.000000e+00 0.000000e+00 + 3.875816e+01 -1.231117e-02 -2.495113e-06 0.000000e+00 0.000000e+00 + 3.873353e+01 -1.231616e-02 -2.487583e-06 0.000000e+00 0.000000e+00 + 3.870889e+01 -1.232112e-02 -2.480074e-06 0.000000e+00 0.000000e+00 + 3.868425e+01 -1.232608e-02 -2.472585e-06 0.000000e+00 0.000000e+00 + 3.865959e+01 -1.233102e-02 -2.465118e-06 0.000000e+00 0.000000e+00 + 3.863492e+01 -1.233594e-02 -2.457671e-06 0.000000e+00 0.000000e+00 + 3.861025e+01 -1.234085e-02 -2.450245e-06 0.000000e+00 0.000000e+00 + 3.858556e+01 -1.234574e-02 -2.442839e-06 0.000000e+00 0.000000e+00 + 3.856086e+01 -1.235062e-02 -2.435452e-06 0.000000e+00 0.000000e+00 + 3.853616e+01 -1.235548e-02 -2.428086e-06 0.000000e+00 0.000000e+00 + 3.851144e+01 -1.236033e-02 -2.420740e-06 0.000000e+00 0.000000e+00 + 3.848672e+01 -1.236516e-02 -2.413414e-06 0.000000e+00 0.000000e+00 + 3.846198e+01 -1.236998e-02 -2.406106e-06 0.000000e+00 0.000000e+00 + 3.843724e+01 -1.237479e-02 -2.398819e-06 0.000000e+00 0.000000e+00 + 3.841248e+01 -1.237958e-02 -2.391550e-06 0.000000e+00 0.000000e+00 + 3.838772e+01 -1.238435e-02 -2.384301e-06 0.000000e+00 0.000000e+00 + 3.836294e+01 -1.238912e-02 -2.377070e-06 0.000000e+00 0.000000e+00 + 3.833816e+01 -1.239386e-02 -2.369859e-06 0.000000e+00 0.000000e+00 + 3.831337e+01 -1.239860e-02 -2.362665e-06 0.000000e+00 0.000000e+00 + 3.828857e+01 -1.240331e-02 -2.355491e-06 0.000000e+00 0.000000e+00 + 3.826376e+01 -1.240802e-02 -2.348335e-06 0.000000e+00 0.000000e+00 + 3.823893e+01 -1.241271e-02 -2.341196e-06 0.000000e+00 0.000000e+00 + 3.821410e+01 -1.241738e-02 -2.334076e-06 0.000000e+00 0.000000e+00 + 3.818927e+01 -1.242204e-02 -2.326974e-06 0.000000e+00 0.000000e+00 + 3.816442e+01 -1.242669e-02 -2.319890e-06 0.000000e+00 0.000000e+00 + 3.813956e+01 -1.243132e-02 -2.312823e-06 0.000000e+00 0.000000e+00 + 3.811469e+01 -1.243594e-02 -2.305774e-06 0.000000e+00 0.000000e+00 + 3.808981e+01 -1.244055e-02 -2.298742e-06 0.000000e+00 0.000000e+00 + 3.806493e+01 -1.244514e-02 -2.291728e-06 0.000000e+00 0.000000e+00 + 3.804003e+01 -1.244971e-02 -2.284730e-06 0.000000e+00 0.000000e+00 + 3.801513e+01 -1.245427e-02 -2.277750e-06 0.000000e+00 0.000000e+00 + 3.799022e+01 -1.245882e-02 -2.270786e-06 0.000000e+00 0.000000e+00 + 3.796529e+01 -1.246336e-02 -2.263839e-06 0.000000e+00 0.000000e+00 + 3.794036e+01 -1.246788e-02 -2.256909e-06 0.000000e+00 0.000000e+00 + 3.791542e+01 -1.247239e-02 -2.249995e-06 0.000000e+00 0.000000e+00 + 3.789047e+01 -1.247688e-02 -2.243097e-06 0.000000e+00 0.000000e+00 + 3.786552e+01 -1.248136e-02 -2.236216e-06 0.000000e+00 0.000000e+00 + 3.784055e+01 -1.248582e-02 -2.229350e-06 0.000000e+00 0.000000e+00 + 3.781557e+01 -1.249028e-02 -2.222501e-06 0.000000e+00 0.000000e+00 + 3.779059e+01 -1.249471e-02 -2.215667e-06 0.000000e+00 0.000000e+00 + 3.776559e+01 -1.249914e-02 -2.208849e-06 0.000000e+00 0.000000e+00 + 3.774059e+01 -1.250355e-02 -2.202046e-06 0.000000e+00 0.000000e+00 + 3.771558e+01 -1.250795e-02 -2.195259e-06 0.000000e+00 0.000000e+00 + 3.769056e+01 -1.251233e-02 -2.188487e-06 0.000000e+00 0.000000e+00 + 3.766553e+01 -1.251670e-02 -2.181730e-06 0.000000e+00 0.000000e+00 + 3.764049e+01 -1.252106e-02 -2.174988e-06 0.000000e+00 0.000000e+00 + 3.761545e+01 -1.252540e-02 -2.168262e-06 0.000000e+00 0.000000e+00 + 3.759039e+01 -1.252973e-02 -2.161549e-06 0.000000e+00 0.000000e+00 + 3.756533e+01 -1.253405e-02 -2.154852e-06 0.000000e+00 0.000000e+00 + 3.754025e+01 -1.253835e-02 -2.148169e-06 0.000000e+00 0.000000e+00 + 3.751517e+01 -1.254264e-02 -2.141501e-06 0.000000e+00 0.000000e+00 + 3.749008e+01 -1.254692e-02 -2.134847e-06 0.000000e+00 0.000000e+00 + 3.746499e+01 -1.255118e-02 -2.128207e-06 0.000000e+00 0.000000e+00 + 3.743988e+01 -1.255543e-02 -2.121581e-06 0.000000e+00 0.000000e+00 + 3.741476e+01 -1.255967e-02 -2.114969e-06 0.000000e+00 0.000000e+00 + 3.738964e+01 -1.256389e-02 -2.108370e-06 0.000000e+00 0.000000e+00 + 3.736451e+01 -1.256810e-02 -2.101786e-06 0.000000e+00 0.000000e+00 + 3.733937e+01 -1.257230e-02 -2.095215e-06 0.000000e+00 0.000000e+00 + 3.731422e+01 -1.257648e-02 -2.088658e-06 0.000000e+00 0.000000e+00 + 3.728906e+01 -1.258065e-02 -2.082114e-06 0.000000e+00 0.000000e+00 + 3.726390e+01 -1.258481e-02 -2.075583e-06 0.000000e+00 0.000000e+00 + 3.723872e+01 -1.258895e-02 -2.069066e-06 0.000000e+00 0.000000e+00 + 3.721354e+01 -1.259308e-02 -2.062561e-06 0.000000e+00 0.000000e+00 + 3.718835e+01 -1.259720e-02 -2.056069e-06 0.000000e+00 0.000000e+00 + 3.716315e+01 -1.260131e-02 -2.049591e-06 0.000000e+00 0.000000e+00 + 3.713795e+01 -1.260540e-02 -2.043124e-06 0.000000e+00 0.000000e+00 + 3.711273e+01 -1.260948e-02 -2.036671e-06 0.000000e+00 0.000000e+00 + 3.708751e+01 -1.261355e-02 -2.030230e-06 0.000000e+00 0.000000e+00 + 3.706228e+01 -1.261760e-02 -2.023801e-06 0.000000e+00 0.000000e+00 + 3.703704e+01 -1.262164e-02 -2.017385e-06 0.000000e+00 0.000000e+00 + 3.701179e+01 -1.262567e-02 -2.010981e-06 0.000000e+00 0.000000e+00 + 3.698653e+01 -1.262969e-02 -2.004588e-06 0.000000e+00 0.000000e+00 + 3.696127e+01 -1.263369e-02 -1.998208e-06 0.000000e+00 0.000000e+00 + 3.693600e+01 -1.263768e-02 -1.991840e-06 0.000000e+00 0.000000e+00 + 3.691072e+01 -1.264166e-02 -1.985483e-06 0.000000e+00 0.000000e+00 + 3.688543e+01 -1.264562e-02 -1.979138e-06 0.000000e+00 0.000000e+00 + 3.686014e+01 -1.264957e-02 -1.972805e-06 0.000000e+00 0.000000e+00 + 3.683484e+01 -1.265351e-02 -1.966483e-06 0.000000e+00 0.000000e+00 + 3.680952e+01 -1.265744e-02 -1.960172e-06 0.000000e+00 0.000000e+00 + 3.678421e+01 -1.266135e-02 -1.953873e-06 0.000000e+00 0.000000e+00 + 3.675888e+01 -1.266526e-02 -1.947585e-06 0.000000e+00 0.000000e+00 + 3.673354e+01 -1.266914e-02 -1.941307e-06 0.000000e+00 0.000000e+00 + 3.670820e+01 -1.267302e-02 -1.935041e-06 0.000000e+00 0.000000e+00 + 3.668285e+01 -1.267688e-02 -1.928786e-06 0.000000e+00 0.000000e+00 + 3.665749e+01 -1.268074e-02 -1.922541e-06 0.000000e+00 0.000000e+00 + 3.663213e+01 -1.268457e-02 -1.916307e-06 0.000000e+00 0.000000e+00 + 3.660676e+01 -1.268840e-02 -1.910083e-06 0.000000e+00 0.000000e+00 + 3.658138e+01 -1.269221e-02 -1.903870e-06 0.000000e+00 0.000000e+00 + 3.655599e+01 -1.269602e-02 -1.897667e-06 0.000000e+00 0.000000e+00 + 3.653059e+01 -1.269981e-02 -1.891475e-06 0.000000e+00 0.000000e+00 + 3.650519e+01 -1.270358e-02 -1.885293e-06 0.000000e+00 0.000000e+00 + 3.647978e+01 -1.270735e-02 -1.879121e-06 0.000000e+00 0.000000e+00 + 3.645436e+01 -1.271110e-02 -1.872959e-06 0.000000e+00 0.000000e+00 + 3.642893e+01 -1.271484e-02 -1.866806e-06 0.000000e+00 0.000000e+00 + 3.640350e+01 -1.271857e-02 -1.860664e-06 0.000000e+00 0.000000e+00 + 3.637806e+01 -1.272228e-02 -1.854531e-06 0.000000e+00 0.000000e+00 + 3.635261e+01 -1.272598e-02 -1.848408e-06 0.000000e+00 0.000000e+00 + 3.632715e+01 -1.272967e-02 -1.842294e-06 0.000000e+00 0.000000e+00 + 3.630169e+01 -1.273335e-02 -1.836190e-06 0.000000e+00 0.000000e+00 + 3.627622e+01 -1.273702e-02 -1.830095e-06 0.000000e+00 0.000000e+00 + 3.625074e+01 -1.274067e-02 -1.824010e-06 0.000000e+00 0.000000e+00 + 3.622526e+01 -1.274432e-02 -1.817934e-06 0.000000e+00 0.000000e+00 + 3.619977e+01 -1.274795e-02 -1.811866e-06 0.000000e+00 0.000000e+00 + 3.617427e+01 -1.275156e-02 -1.805808e-06 0.000000e+00 0.000000e+00 + 3.614876e+01 -1.275517e-02 -1.799759e-06 0.000000e+00 0.000000e+00 + 3.612325e+01 -1.275876e-02 -1.793719e-06 0.000000e+00 0.000000e+00 + 3.609773e+01 -1.276234e-02 -1.787687e-06 0.000000e+00 0.000000e+00 + 3.607220e+01 -1.276591e-02 -1.781664e-06 0.000000e+00 0.000000e+00 + 3.604666e+01 -1.276947e-02 -1.775650e-06 0.000000e+00 0.000000e+00 + 3.602112e+01 -1.277302e-02 -1.769644e-06 0.000000e+00 0.000000e+00 + 3.599557e+01 -1.277655e-02 -1.763646e-06 0.000000e+00 0.000000e+00 + 3.597001e+01 -1.278007e-02 -1.757657e-06 0.000000e+00 0.000000e+00 + 3.594445e+01 -1.278358e-02 -1.751677e-06 0.000000e+00 0.000000e+00 + 3.591888e+01 -1.278708e-02 -1.745704e-06 0.000000e+00 0.000000e+00 + 3.589330e+01 -1.279056e-02 -1.739739e-06 0.000000e+00 0.000000e+00 + 3.586772e+01 -1.279404e-02 -1.733783e-06 0.000000e+00 0.000000e+00 + 3.584212e+01 -1.279750e-02 -1.727835e-06 0.000000e+00 0.000000e+00 + 3.581653e+01 -1.280095e-02 -1.721894e-06 0.000000e+00 0.000000e+00 + 3.579092e+01 -1.280438e-02 -1.715961e-06 0.000000e+00 0.000000e+00 + 3.576531e+01 -1.280781e-02 -1.710036e-06 0.000000e+00 0.000000e+00 + 3.573969e+01 -1.281122e-02 -1.704119e-06 0.000000e+00 0.000000e+00 + 3.571406e+01 -1.281463e-02 -1.698209e-06 0.000000e+00 0.000000e+00 + 3.568843e+01 -1.281802e-02 -1.692306e-06 0.000000e+00 0.000000e+00 + 3.566279e+01 -1.282140e-02 -1.686411e-06 0.000000e+00 0.000000e+00 + 3.563715e+01 -1.282476e-02 -1.680524e-06 0.000000e+00 0.000000e+00 + 3.561149e+01 -1.282812e-02 -1.674643e-06 0.000000e+00 0.000000e+00 + 3.558583e+01 -1.283146e-02 -1.668770e-06 0.000000e+00 0.000000e+00 + 3.556017e+01 -1.283479e-02 -1.662904e-06 0.000000e+00 0.000000e+00 + 3.553449e+01 -1.283811e-02 -1.657045e-06 0.000000e+00 0.000000e+00 + 3.550881e+01 -1.284142e-02 -1.651193e-06 0.000000e+00 0.000000e+00 + 3.548313e+01 -1.284472e-02 -1.645348e-06 0.000000e+00 0.000000e+00 + 3.545744e+01 -1.284800e-02 -1.639510e-06 0.000000e+00 0.000000e+00 + 3.543174e+01 -1.285128e-02 -1.633679e-06 0.000000e+00 0.000000e+00 + 3.540603e+01 -1.285454e-02 -1.627854e-06 0.000000e+00 0.000000e+00 + 3.538032e+01 -1.285779e-02 -1.622036e-06 0.000000e+00 0.000000e+00 + 3.535460e+01 -1.286103e-02 -1.616224e-06 0.000000e+00 0.000000e+00 + 3.532887e+01 -1.286425e-02 -1.610419e-06 0.000000e+00 0.000000e+00 + 3.530314e+01 -1.286747e-02 -1.604621e-06 0.000000e+00 0.000000e+00 + 3.527740e+01 -1.287067e-02 -1.598828e-06 0.000000e+00 0.000000e+00 + 3.525166e+01 -1.287386e-02 -1.593042e-06 0.000000e+00 0.000000e+00 + 3.522591e+01 -1.287704e-02 -1.587263e-06 0.000000e+00 0.000000e+00 + 3.520015e+01 -1.288021e-02 -1.581489e-06 0.000000e+00 0.000000e+00 + 3.517439e+01 -1.288337e-02 -1.575722e-06 0.000000e+00 0.000000e+00 + 3.514862e+01 -1.288652e-02 -1.569960e-06 0.000000e+00 0.000000e+00 + 3.512284e+01 -1.288965e-02 -1.564205e-06 0.000000e+00 0.000000e+00 + 3.509706e+01 -1.289277e-02 -1.558456e-06 0.000000e+00 0.000000e+00 + 3.507127e+01 -1.289588e-02 -1.552712e-06 0.000000e+00 0.000000e+00 + 3.504548e+01 -1.289898e-02 -1.546974e-06 0.000000e+00 0.000000e+00 + 3.501967e+01 -1.290207e-02 -1.541242e-06 0.000000e+00 0.000000e+00 + 3.499387e+01 -1.290515e-02 -1.535515e-06 0.000000e+00 0.000000e+00 + 3.496805e+01 -1.290821e-02 -1.529795e-06 0.000000e+00 0.000000e+00 + 3.494223e+01 -1.291127e-02 -1.524079e-06 0.000000e+00 0.000000e+00 + 3.491641e+01 -1.291431e-02 -1.518369e-06 0.000000e+00 0.000000e+00 + 3.489058e+01 -1.291734e-02 -1.512665e-06 0.000000e+00 0.000000e+00 + 3.486474e+01 -1.292036e-02 -1.506966e-06 0.000000e+00 0.000000e+00 + 3.483890e+01 -1.292337e-02 -1.501272e-06 0.000000e+00 0.000000e+00 + 3.481305e+01 -1.292637e-02 -1.495584e-06 0.000000e+00 0.000000e+00 + 3.478719e+01 -1.292935e-02 -1.489900e-06 0.000000e+00 0.000000e+00 + 3.476133e+01 -1.293232e-02 -1.484222e-06 0.000000e+00 0.000000e+00 + 3.473546e+01 -1.293529e-02 -1.478549e-06 0.000000e+00 0.000000e+00 + 3.470959e+01 -1.293824e-02 -1.472881e-06 0.000000e+00 0.000000e+00 + 3.468371e+01 -1.294118e-02 -1.467218e-06 0.000000e+00 0.000000e+00 + 3.465782e+01 -1.294411e-02 -1.461560e-06 0.000000e+00 0.000000e+00 + 3.463193e+01 -1.294703e-02 -1.455906e-06 0.000000e+00 0.000000e+00 + 3.460604e+01 -1.294993e-02 -1.450258e-06 0.000000e+00 0.000000e+00 + 3.458013e+01 -1.295283e-02 -1.444614e-06 0.000000e+00 0.000000e+00 + 3.455422e+01 -1.295571e-02 -1.438975e-06 0.000000e+00 0.000000e+00 + 3.452831e+01 -1.295858e-02 -1.433340e-06 0.000000e+00 0.000000e+00 + 3.450239e+01 -1.296144e-02 -1.427710e-06 0.000000e+00 0.000000e+00 + 3.447646e+01 -1.296429e-02 -1.422085e-06 0.000000e+00 0.000000e+00 + 3.445053e+01 -1.296713e-02 -1.416464e-06 0.000000e+00 0.000000e+00 + 3.442460e+01 -1.296996e-02 -1.410847e-06 0.000000e+00 0.000000e+00 + 3.439865e+01 -1.297277e-02 -1.405235e-06 0.000000e+00 0.000000e+00 + 3.437270e+01 -1.297558e-02 -1.399628e-06 0.000000e+00 0.000000e+00 + 3.434675e+01 -1.297837e-02 -1.394024e-06 0.000000e+00 0.000000e+00 + 3.432079e+01 -1.298116e-02 -1.388425e-06 0.000000e+00 0.000000e+00 + 3.429483e+01 -1.298393e-02 -1.382830e-06 0.000000e+00 0.000000e+00 + 3.426885e+01 -1.298669e-02 -1.377239e-06 0.000000e+00 0.000000e+00 + 3.424288e+01 -1.298944e-02 -1.371652e-06 0.000000e+00 0.000000e+00 + 3.421690e+01 -1.299217e-02 -1.366069e-06 0.000000e+00 0.000000e+00 + 3.419091e+01 -1.299490e-02 -1.360490e-06 0.000000e+00 0.000000e+00 + 3.416492e+01 -1.299762e-02 -1.354915e-06 0.000000e+00 0.000000e+00 + 3.413892e+01 -1.300032e-02 -1.349344e-06 0.000000e+00 0.000000e+00 + 3.411292e+01 -1.300301e-02 -1.343776e-06 0.000000e+00 0.000000e+00 + 3.408691e+01 -1.300570e-02 -1.338213e-06 0.000000e+00 0.000000e+00 + 3.406089e+01 -1.300837e-02 -1.332653e-06 0.000000e+00 0.000000e+00 + 3.403487e+01 -1.301103e-02 -1.327097e-06 0.000000e+00 0.000000e+00 + 3.400885e+01 -1.301367e-02 -1.321545e-06 0.000000e+00 0.000000e+00 + 3.398282e+01 -1.301631e-02 -1.315996e-06 0.000000e+00 0.000000e+00 + 3.395678e+01 -1.301894e-02 -1.310451e-06 0.000000e+00 0.000000e+00 + 3.393074e+01 -1.302155e-02 -1.304909e-06 0.000000e+00 0.000000e+00 + 3.390470e+01 -1.302416e-02 -1.299371e-06 0.000000e+00 0.000000e+00 + 3.387865e+01 -1.302675e-02 -1.293836e-06 0.000000e+00 0.000000e+00 + 3.385259e+01 -1.302933e-02 -1.288305e-06 0.000000e+00 0.000000e+00 + 3.382653e+01 -1.303190e-02 -1.282777e-06 0.000000e+00 0.000000e+00 + 3.380046e+01 -1.303446e-02 -1.277252e-06 0.000000e+00 0.000000e+00 + 3.377439e+01 -1.303701e-02 -1.271731e-06 0.000000e+00 0.000000e+00 + 3.374832e+01 -1.303955e-02 -1.266212e-06 0.000000e+00 0.000000e+00 + 3.372223e+01 -1.304208e-02 -1.260697e-06 0.000000e+00 0.000000e+00 + 3.369615e+01 -1.304459e-02 -1.255185e-06 0.000000e+00 0.000000e+00 + 3.367006e+01 -1.304710e-02 -1.249677e-06 0.000000e+00 0.000000e+00 + 3.364396e+01 -1.304959e-02 -1.244171e-06 0.000000e+00 0.000000e+00 + 3.361786e+01 -1.305208e-02 -1.238668e-06 0.000000e+00 0.000000e+00 + 3.359175e+01 -1.305455e-02 -1.233168e-06 0.000000e+00 0.000000e+00 + 3.356564e+01 -1.305701e-02 -1.227672e-06 0.000000e+00 0.000000e+00 + 3.353952e+01 -1.305946e-02 -1.222178e-06 0.000000e+00 0.000000e+00 + 3.351340e+01 -1.306190e-02 -1.216687e-06 0.000000e+00 0.000000e+00 + 3.348727e+01 -1.306433e-02 -1.211198e-06 0.000000e+00 0.000000e+00 + 3.346114e+01 -1.306674e-02 -1.205713e-06 0.000000e+00 0.000000e+00 + 3.343501e+01 -1.306915e-02 -1.200230e-06 0.000000e+00 0.000000e+00 + 3.340887e+01 -1.307154e-02 -1.194751e-06 0.000000e+00 0.000000e+00 + 3.338272e+01 -1.307393e-02 -1.189273e-06 0.000000e+00 0.000000e+00 + 3.335657e+01 -1.307630e-02 -1.183799e-06 0.000000e+00 0.000000e+00 + 3.333042e+01 -1.307866e-02 -1.178327e-06 0.000000e+00 0.000000e+00 + 3.330426e+01 -1.308101e-02 -1.172857e-06 0.000000e+00 0.000000e+00 + 3.327809e+01 -1.308335e-02 -1.167390e-06 0.000000e+00 0.000000e+00 + 3.325192e+01 -1.308568e-02 -1.161926e-06 0.000000e+00 0.000000e+00 + 3.322575e+01 -1.308800e-02 -1.156464e-06 0.000000e+00 0.000000e+00 + 3.319957e+01 -1.309031e-02 -1.151005e-06 0.000000e+00 0.000000e+00 + 3.317339e+01 -1.309261e-02 -1.145548e-06 0.000000e+00 0.000000e+00 + 3.314720e+01 -1.309489e-02 -1.140093e-06 0.000000e+00 0.000000e+00 + 3.312101e+01 -1.309717e-02 -1.134641e-06 0.000000e+00 0.000000e+00 + 3.309481e+01 -1.309943e-02 -1.129191e-06 0.000000e+00 0.000000e+00 + 3.306861e+01 -1.310168e-02 -1.123743e-06 0.000000e+00 0.000000e+00 + 3.304241e+01 -1.310392e-02 -1.118297e-06 0.000000e+00 0.000000e+00 + 3.301620e+01 -1.310616e-02 -1.112854e-06 0.000000e+00 0.000000e+00 + 3.298998e+01 -1.310838e-02 -1.107413e-06 0.000000e+00 0.000000e+00 + 3.296376e+01 -1.311059e-02 -1.101974e-06 0.000000e+00 0.000000e+00 + 3.293754e+01 -1.311278e-02 -1.096537e-06 0.000000e+00 0.000000e+00 + 3.291131e+01 -1.311497e-02 -1.091102e-06 0.000000e+00 0.000000e+00 + 3.288508e+01 -1.311715e-02 -1.085670e-06 0.000000e+00 0.000000e+00 + 3.285884e+01 -1.311931e-02 -1.080239e-06 0.000000e+00 0.000000e+00 + 3.283260e+01 -1.312147e-02 -1.074810e-06 0.000000e+00 0.000000e+00 + 3.280636e+01 -1.312361e-02 -1.069383e-06 0.000000e+00 0.000000e+00 + 3.278011e+01 -1.312575e-02 -1.063959e-06 0.000000e+00 0.000000e+00 + 3.275385e+01 -1.312787e-02 -1.058536e-06 0.000000e+00 0.000000e+00 + 3.272760e+01 -1.312998e-02 -1.053115e-06 0.000000e+00 0.000000e+00 + 3.270133e+01 -1.313208e-02 -1.047696e-06 0.000000e+00 0.000000e+00 + 3.267507e+01 -1.313417e-02 -1.042278e-06 0.000000e+00 0.000000e+00 + 3.264880e+01 -1.313625e-02 -1.036863e-06 0.000000e+00 0.000000e+00 + 3.262252e+01 -1.313832e-02 -1.031449e-06 0.000000e+00 0.000000e+00 + 3.259624e+01 -1.314038e-02 -1.026037e-06 0.000000e+00 0.000000e+00 + 3.256996e+01 -1.314242e-02 -1.020626e-06 0.000000e+00 0.000000e+00 + 3.254367e+01 -1.314446e-02 -1.015218e-06 0.000000e+00 0.000000e+00 + 3.251738e+01 -1.314648e-02 -1.009811e-06 0.000000e+00 0.000000e+00 + 3.249109e+01 -1.314850e-02 -1.004406e-06 0.000000e+00 0.000000e+00 + 3.246479e+01 -1.315050e-02 -9.990018e-07 0.000000e+00 0.000000e+00 + 3.243849e+01 -1.315249e-02 -9.935997e-07 0.000000e+00 0.000000e+00 + 3.241218e+01 -1.315448e-02 -9.881991e-07 0.000000e+00 0.000000e+00 + 3.238587e+01 -1.315645e-02 -9.828000e-07 0.000000e+00 0.000000e+00 + 3.235955e+01 -1.315841e-02 -9.774025e-07 0.000000e+00 0.000000e+00 + 3.233323e+01 -1.316036e-02 -9.720065e-07 0.000000e+00 0.000000e+00 + 3.230691e+01 -1.316230e-02 -9.666119e-07 0.000000e+00 0.000000e+00 + 3.228059e+01 -1.316422e-02 -9.612187e-07 0.000000e+00 0.000000e+00 + 3.225425e+01 -1.316614e-02 -9.558270e-07 0.000000e+00 0.000000e+00 + 3.222792e+01 -1.316805e-02 -9.504367e-07 0.000000e+00 0.000000e+00 + 3.220158e+01 -1.316994e-02 -9.450477e-07 0.000000e+00 0.000000e+00 + 3.217524e+01 -1.317183e-02 -9.396601e-07 0.000000e+00 0.000000e+00 + 3.214890e+01 -1.317370e-02 -9.342738e-07 0.000000e+00 0.000000e+00 + 3.212255e+01 -1.317556e-02 -9.288888e-07 0.000000e+00 0.000000e+00 + 3.209619e+01 -1.317742e-02 -9.235051e-07 0.000000e+00 0.000000e+00 + 3.206984e+01 -1.317926e-02 -9.181227e-07 0.000000e+00 0.000000e+00 + 3.204348e+01 -1.318109e-02 -9.127415e-07 0.000000e+00 0.000000e+00 + 3.201711e+01 -1.318291e-02 -9.073615e-07 0.000000e+00 0.000000e+00 + 3.199074e+01 -1.318472e-02 -9.019827e-07 0.000000e+00 0.000000e+00 + 3.196437e+01 -1.318652e-02 -8.966051e-07 0.000000e+00 0.000000e+00 + 3.193800e+01 -1.318830e-02 -8.912287e-07 0.000000e+00 0.000000e+00 + 3.191162e+01 -1.319008e-02 -8.858534e-07 0.000000e+00 0.000000e+00 + 3.188524e+01 -1.319185e-02 -8.804792e-07 0.000000e+00 0.000000e+00 + 3.185885e+01 -1.319360e-02 -8.751061e-07 0.000000e+00 0.000000e+00 + 3.183246e+01 -1.319535e-02 -8.697341e-07 0.000000e+00 0.000000e+00 + 3.180607e+01 -1.319708e-02 -8.643631e-07 0.000000e+00 0.000000e+00 + 3.177968e+01 -1.319881e-02 -8.589932e-07 0.000000e+00 0.000000e+00 + 3.175328e+01 -1.320052e-02 -8.536243e-07 0.000000e+00 0.000000e+00 + 3.172687e+01 -1.320222e-02 -8.482564e-07 0.000000e+00 0.000000e+00 + 3.170047e+01 -1.320391e-02 -8.428895e-07 0.000000e+00 0.000000e+00 + 3.167406e+01 -1.320559e-02 -8.375235e-07 0.000000e+00 0.000000e+00 + 3.164764e+01 -1.320726e-02 -8.321585e-07 0.000000e+00 0.000000e+00 + 3.162123e+01 -1.320892e-02 -8.267945e-07 0.000000e+00 0.000000e+00 + 3.159481e+01 -1.321057e-02 -8.214313e-07 0.000000e+00 0.000000e+00 + 3.156839e+01 -1.321221e-02 -8.160691e-07 0.000000e+00 0.000000e+00 + 3.154196e+01 -1.321383e-02 -8.107077e-07 0.000000e+00 0.000000e+00 + 3.151553e+01 -1.321545e-02 -8.053472e-07 0.000000e+00 0.000000e+00 + 3.148910e+01 -1.321705e-02 -7.999876e-07 0.000000e+00 0.000000e+00 + 3.146266e+01 -1.321865e-02 -7.946287e-07 0.000000e+00 0.000000e+00 + 3.143622e+01 -1.322023e-02 -7.892707e-07 0.000000e+00 0.000000e+00 + 3.140978e+01 -1.322181e-02 -7.839135e-07 0.000000e+00 0.000000e+00 + 3.138334e+01 -1.322337e-02 -7.785571e-07 0.000000e+00 0.000000e+00 + 3.135689e+01 -1.322492e-02 -7.732014e-07 0.000000e+00 0.000000e+00 + 3.133044e+01 -1.322646e-02 -7.678465e-07 0.000000e+00 0.000000e+00 + 3.130398e+01 -1.322799e-02 -7.624924e-07 0.000000e+00 0.000000e+00 + 3.127753e+01 -1.322951e-02 -7.571389e-07 0.000000e+00 0.000000e+00 + 3.125106e+01 -1.323102e-02 -7.517862e-07 0.000000e+00 0.000000e+00 + 3.122460e+01 -1.323252e-02 -7.464342e-07 0.000000e+00 0.000000e+00 + 3.119813e+01 -1.323401e-02 -7.410828e-07 0.000000e+00 0.000000e+00 + 3.117167e+01 -1.323548e-02 -7.357321e-07 0.000000e+00 0.000000e+00 + 3.114519e+01 -1.323695e-02 -7.303821e-07 0.000000e+00 0.000000e+00 + 3.111872e+01 -1.323840e-02 -7.250327e-07 0.000000e+00 0.000000e+00 + 3.109224e+01 -1.323985e-02 -7.196840e-07 0.000000e+00 0.000000e+00 + 3.106576e+01 -1.324128e-02 -7.143358e-07 0.000000e+00 0.000000e+00 + 3.103927e+01 -1.324271e-02 -7.089883e-07 0.000000e+00 0.000000e+00 + 3.101279e+01 -1.324412e-02 -7.036413e-07 0.000000e+00 0.000000e+00 + 3.098630e+01 -1.324552e-02 -6.982949e-07 0.000000e+00 0.000000e+00 + 3.095980e+01 -1.324691e-02 -6.929491e-07 0.000000e+00 0.000000e+00 + 3.093331e+01 -1.324829e-02 -6.876038e-07 0.000000e+00 0.000000e+00 + 3.090681e+01 -1.324966e-02 -6.822591e-07 0.000000e+00 0.000000e+00 + 3.088031e+01 -1.325102e-02 -6.769149e-07 0.000000e+00 0.000000e+00 + 3.085381e+01 -1.325237e-02 -6.715712e-07 0.000000e+00 0.000000e+00 + 3.082730e+01 -1.325371e-02 -6.662281e-07 0.000000e+00 0.000000e+00 + 3.080079e+01 -1.325504e-02 -6.608854e-07 0.000000e+00 0.000000e+00 + 3.077428e+01 -1.325635e-02 -6.555432e-07 0.000000e+00 0.000000e+00 + 3.074777e+01 -1.325766e-02 -6.502015e-07 0.000000e+00 0.000000e+00 + 3.072125e+01 -1.325895e-02 -6.448602e-07 0.000000e+00 0.000000e+00 + 3.069473e+01 -1.326024e-02 -6.395194e-07 0.000000e+00 0.000000e+00 + 3.066821e+01 -1.326151e-02 -6.341790e-07 0.000000e+00 0.000000e+00 + 3.064169e+01 -1.326277e-02 -6.288390e-07 0.000000e+00 0.000000e+00 + 3.061516e+01 -1.326403e-02 -6.234995e-07 0.000000e+00 0.000000e+00 + 3.058863e+01 -1.326527e-02 -6.181604e-07 0.000000e+00 0.000000e+00 + 3.056210e+01 -1.326650e-02 -6.128217e-07 0.000000e+00 0.000000e+00 + 3.053556e+01 -1.326772e-02 -6.074834e-07 0.000000e+00 0.000000e+00 + 3.050903e+01 -1.326893e-02 -6.021454e-07 0.000000e+00 0.000000e+00 + 3.048249e+01 -1.327013e-02 -5.968078e-07 0.000000e+00 0.000000e+00 + 3.045595e+01 -1.327132e-02 -5.914706e-07 0.000000e+00 0.000000e+00 + 3.042940e+01 -1.327249e-02 -5.861338e-07 0.000000e+00 0.000000e+00 + 3.040286e+01 -1.327366e-02 -5.807973e-07 0.000000e+00 0.000000e+00 + 3.037631e+01 -1.327482e-02 -5.754611e-07 0.000000e+00 0.000000e+00 + 3.034976e+01 -1.327596e-02 -5.701252e-07 0.000000e+00 0.000000e+00 + 3.032320e+01 -1.327710e-02 -5.647897e-07 0.000000e+00 0.000000e+00 + 3.029665e+01 -1.327822e-02 -5.594545e-07 0.000000e+00 0.000000e+00 + 3.027009e+01 -1.327933e-02 -5.541196e-07 0.000000e+00 0.000000e+00 + 3.024353e+01 -1.328044e-02 -5.487850e-07 0.000000e+00 0.000000e+00 + 3.021697e+01 -1.328153e-02 -5.434506e-07 0.000000e+00 0.000000e+00 + 3.019041e+01 -1.328261e-02 -5.381166e-07 0.000000e+00 0.000000e+00 + 3.016384e+01 -1.328368e-02 -5.327828e-07 0.000000e+00 0.000000e+00 + 3.013727e+01 -1.328474e-02 -5.274493e-07 0.000000e+00 0.000000e+00 + 3.011070e+01 -1.328579e-02 -5.221160e-07 0.000000e+00 0.000000e+00 + 3.008413e+01 -1.328683e-02 -5.167830e-07 0.000000e+00 0.000000e+00 + 3.005755e+01 -1.328786e-02 -5.114503e-07 0.000000e+00 0.000000e+00 + 3.003098e+01 -1.328888e-02 -5.061178e-07 0.000000e+00 0.000000e+00 + 3.000440e+01 -1.328988e-02 -5.007855e-07 0.000000e+00 0.000000e+00 + 2.997782e+01 -1.329088e-02 -4.954534e-07 0.000000e+00 0.000000e+00 + 2.995123e+01 -1.329187e-02 -4.901216e-07 0.000000e+00 0.000000e+00 + 2.992465e+01 -1.329284e-02 -4.847899e-07 0.000000e+00 0.000000e+00 + 2.989806e+01 -1.329380e-02 -4.794585e-07 0.000000e+00 0.000000e+00 + 2.987147e+01 -1.329476e-02 -4.741273e-07 0.000000e+00 0.000000e+00 + 2.984488e+01 -1.329570e-02 -4.687963e-07 0.000000e+00 0.000000e+00 + 2.981829e+01 -1.329663e-02 -4.634654e-07 0.000000e+00 0.000000e+00 + 2.979170e+01 -1.329756e-02 -4.581347e-07 0.000000e+00 0.000000e+00 + 2.976510e+01 -1.329847e-02 -4.528043e-07 0.000000e+00 0.000000e+00 + 2.973850e+01 -1.329937e-02 -4.474740e-07 0.000000e+00 0.000000e+00 + 2.971190e+01 -1.330026e-02 -4.421438e-07 0.000000e+00 0.000000e+00 + 2.968530e+01 -1.330113e-02 -4.368138e-07 0.000000e+00 0.000000e+00 + 2.965870e+01 -1.330200e-02 -4.314840e-07 0.000000e+00 0.000000e+00 + 2.963209e+01 -1.330286e-02 -4.261543e-07 0.000000e+00 0.000000e+00 + 2.960549e+01 -1.330371e-02 -4.208248e-07 0.000000e+00 0.000000e+00 + 2.957888e+01 -1.330454e-02 -4.154954e-07 0.000000e+00 0.000000e+00 + 2.955227e+01 -1.330537e-02 -4.101662e-07 0.000000e+00 0.000000e+00 + 2.952566e+01 -1.330618e-02 -4.048370e-07 0.000000e+00 0.000000e+00 + 2.949904e+01 -1.330699e-02 -3.995080e-07 0.000000e+00 0.000000e+00 + 2.947243e+01 -1.330778e-02 -3.941792e-07 0.000000e+00 0.000000e+00 + 2.944581e+01 -1.330857e-02 -3.888504e-07 0.000000e+00 0.000000e+00 + 2.941920e+01 -1.330934e-02 -3.835218e-07 0.000000e+00 0.000000e+00 + 2.939258e+01 -1.331010e-02 -3.781933e-07 0.000000e+00 0.000000e+00 + 2.936596e+01 -1.331085e-02 -3.728649e-07 0.000000e+00 0.000000e+00 + 2.933933e+01 -1.331159e-02 -3.675366e-07 0.000000e+00 0.000000e+00 + 2.931271e+01 -1.331232e-02 -3.622084e-07 0.000000e+00 0.000000e+00 + 2.928608e+01 -1.331304e-02 -3.568803e-07 0.000000e+00 0.000000e+00 + 2.925946e+01 -1.331375e-02 -3.515523e-07 0.000000e+00 0.000000e+00 + 2.923283e+01 -1.331445e-02 -3.462243e-07 0.000000e+00 0.000000e+00 + 2.920620e+01 -1.331513e-02 -3.408965e-07 0.000000e+00 0.000000e+00 + 2.917957e+01 -1.331581e-02 -3.355688e-07 0.000000e+00 0.000000e+00 + 2.915294e+01 -1.331648e-02 -3.302411e-07 0.000000e+00 0.000000e+00 + 2.912630e+01 -1.331713e-02 -3.249135e-07 0.000000e+00 0.000000e+00 + 2.909967e+01 -1.331778e-02 -3.195860e-07 0.000000e+00 0.000000e+00 + 2.907303e+01 -1.331841e-02 -3.142585e-07 0.000000e+00 0.000000e+00 + 2.904639e+01 -1.331903e-02 -3.089312e-07 0.000000e+00 0.000000e+00 + 2.901975e+01 -1.331965e-02 -3.036039e-07 0.000000e+00 0.000000e+00 + 2.899311e+01 -1.332025e-02 -2.982766e-07 0.000000e+00 0.000000e+00 + 2.896647e+01 -1.332084e-02 -2.929494e-07 0.000000e+00 0.000000e+00 + 2.893983e+01 -1.332142e-02 -2.876223e-07 0.000000e+00 0.000000e+00 + 2.891319e+01 -1.332199e-02 -2.822952e-07 0.000000e+00 0.000000e+00 + 2.888654e+01 -1.332255e-02 -2.769682e-07 0.000000e+00 0.000000e+00 + 2.885990e+01 -1.332310e-02 -2.716413e-07 0.000000e+00 0.000000e+00 + 2.883325e+01 -1.332363e-02 -2.663143e-07 0.000000e+00 0.000000e+00 + 2.880660e+01 -1.332416e-02 -2.609875e-07 0.000000e+00 0.000000e+00 + 2.877995e+01 -1.332468e-02 -2.556607e-07 0.000000e+00 0.000000e+00 + 2.875330e+01 -1.332518e-02 -2.503339e-07 0.000000e+00 0.000000e+00 + 2.872665e+01 -1.332568e-02 -2.450071e-07 0.000000e+00 0.000000e+00 + 2.870000e+01 -1.332616e-02 -2.396805e-07 0.000000e+00 0.000000e+00 + 2.867335e+01 -1.332664e-02 -2.343538e-07 0.000000e+00 0.000000e+00 + 2.864670e+01 -1.332710e-02 -2.290272e-07 0.000000e+00 0.000000e+00 + 2.862004e+01 -1.332755e-02 -2.237006e-07 0.000000e+00 0.000000e+00 + 2.859339e+01 -1.332800e-02 -2.183740e-07 0.000000e+00 0.000000e+00 + 2.856673e+01 -1.332843e-02 -2.130475e-07 0.000000e+00 0.000000e+00 + 2.854007e+01 -1.332885e-02 -2.077210e-07 0.000000e+00 0.000000e+00 + 2.851341e+01 -1.332926e-02 -2.023945e-07 0.000000e+00 0.000000e+00 + 2.848675e+01 -1.332966e-02 -1.970681e-07 0.000000e+00 0.000000e+00 + 2.846009e+01 -1.333005e-02 -1.917417e-07 0.000000e+00 0.000000e+00 + 2.843343e+01 -1.333043e-02 -1.864153e-07 0.000000e+00 0.000000e+00 + 2.840677e+01 -1.333079e-02 -1.810889e-07 0.000000e+00 0.000000e+00 + 2.838011e+01 -1.333115e-02 -1.757626e-07 0.000000e+00 0.000000e+00 + 2.835345e+01 -1.333150e-02 -1.704363e-07 0.000000e+00 0.000000e+00 + 2.832679e+01 -1.333183e-02 -1.651100e-07 0.000000e+00 0.000000e+00 + 2.830012e+01 -1.333216e-02 -1.597837e-07 0.000000e+00 0.000000e+00 + 2.827346e+01 -1.333247e-02 -1.544574e-07 0.000000e+00 0.000000e+00 + 2.824679e+01 -1.333277e-02 -1.491312e-07 0.000000e+00 0.000000e+00 + 2.822013e+01 -1.333307e-02 -1.438049e-07 0.000000e+00 0.000000e+00 + 2.819346e+01 -1.333335e-02 -1.384787e-07 0.000000e+00 0.000000e+00 + 2.816679e+01 -1.333362e-02 -1.331525e-07 0.000000e+00 0.000000e+00 + 2.814012e+01 -1.333388e-02 -1.278263e-07 0.000000e+00 0.000000e+00 + 2.811346e+01 -1.333413e-02 -1.225001e-07 0.000000e+00 0.000000e+00 + 2.808679e+01 -1.333437e-02 -1.171740e-07 0.000000e+00 0.000000e+00 + 2.806012e+01 -1.333460e-02 -1.118478e-07 0.000000e+00 0.000000e+00 + 2.803345e+01 -1.333482e-02 -1.065217e-07 0.000000e+00 0.000000e+00 + 2.800678e+01 -1.333503e-02 -1.011955e-07 0.000000e+00 0.000000e+00 + 2.798011e+01 -1.333522e-02 -9.586941e-08 0.000000e+00 0.000000e+00 + 2.795344e+01 -1.333541e-02 -9.054329e-08 0.000000e+00 0.000000e+00 + 2.792677e+01 -1.333559e-02 -8.521718e-08 0.000000e+00 0.000000e+00 + 2.790010e+01 -1.333575e-02 -7.989107e-08 0.000000e+00 0.000000e+00 + 2.787342e+01 -1.333591e-02 -7.456497e-08 0.000000e+00 0.000000e+00 + 2.784675e+01 -1.333605e-02 -6.923888e-08 0.000000e+00 0.000000e+00 + 2.782008e+01 -1.333618e-02 -6.391279e-08 0.000000e+00 0.000000e+00 + 2.779341e+01 -1.333631e-02 -5.858671e-08 0.000000e+00 0.000000e+00 + 2.776674e+01 -1.333642e-02 -5.326063e-08 0.000000e+00 0.000000e+00 + 2.774006e+01 -1.333652e-02 -4.793455e-08 0.000000e+00 0.000000e+00 + 2.771339e+01 -1.333661e-02 -4.260848e-08 0.000000e+00 0.000000e+00 + 2.768672e+01 -1.333669e-02 -3.728242e-08 0.000000e+00 0.000000e+00 + 2.766004e+01 -1.333676e-02 -3.195635e-08 0.000000e+00 0.000000e+00 + 2.763337e+01 -1.333682e-02 -2.663029e-08 0.000000e+00 0.000000e+00 + 2.760670e+01 -1.333686e-02 -2.130423e-08 0.000000e+00 0.000000e+00 + 2.758002e+01 -1.333690e-02 -1.597817e-08 0.000000e+00 0.000000e+00 + 2.755335e+01 -1.333693e-02 -1.065211e-08 0.000000e+00 0.000000e+00 + 2.752667e+01 -1.333694e-02 -5.326056e-09 0.000000e+00 0.000000e+00 + 2.750000e+01 -1.333695e-02 -0.000000e+00 0.000000e+00 0.000000e+00 + 2.747333e+01 -1.333694e-02 5.326056e-09 0.000000e+00 0.000000e+00 + 2.744665e+01 -1.333693e-02 1.065211e-08 0.000000e+00 0.000000e+00 + 2.741998e+01 -1.333690e-02 1.597817e-08 0.000000e+00 0.000000e+00 + 2.739330e+01 -1.333686e-02 2.130423e-08 0.000000e+00 0.000000e+00 + 2.736663e+01 -1.333682e-02 2.663029e-08 0.000000e+00 0.000000e+00 + 2.733996e+01 -1.333676e-02 3.195635e-08 0.000000e+00 0.000000e+00 + 2.731328e+01 -1.333669e-02 3.728242e-08 0.000000e+00 0.000000e+00 + 2.728661e+01 -1.333661e-02 4.260848e-08 0.000000e+00 0.000000e+00 + 2.725994e+01 -1.333652e-02 4.793455e-08 0.000000e+00 0.000000e+00 + 2.723326e+01 -1.333642e-02 5.326063e-08 0.000000e+00 0.000000e+00 + 2.720659e+01 -1.333631e-02 5.858671e-08 0.000000e+00 0.000000e+00 + 2.717992e+01 -1.333618e-02 6.391279e-08 0.000000e+00 0.000000e+00 + 2.715325e+01 -1.333605e-02 6.923888e-08 0.000000e+00 0.000000e+00 + 2.712658e+01 -1.333591e-02 7.456497e-08 0.000000e+00 0.000000e+00 + 2.709990e+01 -1.333575e-02 7.989107e-08 0.000000e+00 0.000000e+00 + 2.707323e+01 -1.333559e-02 8.521718e-08 0.000000e+00 0.000000e+00 + 2.704656e+01 -1.333541e-02 9.054329e-08 0.000000e+00 0.000000e+00 + 2.701989e+01 -1.333522e-02 9.586941e-08 0.000000e+00 0.000000e+00 + 2.699322e+01 -1.333503e-02 1.011955e-07 0.000000e+00 0.000000e+00 + 2.696655e+01 -1.333482e-02 1.065217e-07 0.000000e+00 0.000000e+00 + 2.693988e+01 -1.333460e-02 1.118478e-07 0.000000e+00 0.000000e+00 + 2.691321e+01 -1.333437e-02 1.171740e-07 0.000000e+00 0.000000e+00 + 2.688654e+01 -1.333413e-02 1.225001e-07 0.000000e+00 0.000000e+00 + 2.685988e+01 -1.333388e-02 1.278263e-07 0.000000e+00 0.000000e+00 + 2.683321e+01 -1.333362e-02 1.331525e-07 0.000000e+00 0.000000e+00 + 2.680654e+01 -1.333335e-02 1.384787e-07 0.000000e+00 0.000000e+00 + 2.677987e+01 -1.333307e-02 1.438049e-07 0.000000e+00 0.000000e+00 + 2.675321e+01 -1.333277e-02 1.491312e-07 0.000000e+00 0.000000e+00 + 2.672654e+01 -1.333247e-02 1.544574e-07 0.000000e+00 0.000000e+00 + 2.669988e+01 -1.333216e-02 1.597837e-07 0.000000e+00 0.000000e+00 + 2.667321e+01 -1.333183e-02 1.651100e-07 0.000000e+00 0.000000e+00 + 2.664655e+01 -1.333150e-02 1.704363e-07 0.000000e+00 0.000000e+00 + 2.661989e+01 -1.333115e-02 1.757626e-07 0.000000e+00 0.000000e+00 + 2.659323e+01 -1.333079e-02 1.810889e-07 0.000000e+00 0.000000e+00 + 2.656657e+01 -1.333043e-02 1.864153e-07 0.000000e+00 0.000000e+00 + 2.653991e+01 -1.333005e-02 1.917417e-07 0.000000e+00 0.000000e+00 + 2.651325e+01 -1.332966e-02 1.970681e-07 0.000000e+00 0.000000e+00 + 2.648659e+01 -1.332926e-02 2.023945e-07 0.000000e+00 0.000000e+00 + 2.645993e+01 -1.332885e-02 2.077210e-07 0.000000e+00 0.000000e+00 + 2.643327e+01 -1.332843e-02 2.130475e-07 0.000000e+00 0.000000e+00 + 2.640661e+01 -1.332800e-02 2.183740e-07 0.000000e+00 0.000000e+00 + 2.637996e+01 -1.332755e-02 2.237006e-07 0.000000e+00 0.000000e+00 + 2.635330e+01 -1.332710e-02 2.290272e-07 0.000000e+00 0.000000e+00 + 2.632665e+01 -1.332664e-02 2.343538e-07 0.000000e+00 0.000000e+00 + 2.630000e+01 -1.332616e-02 2.396805e-07 0.000000e+00 0.000000e+00 + 2.627335e+01 -1.332568e-02 2.450071e-07 0.000000e+00 0.000000e+00 + 2.624670e+01 -1.332518e-02 2.503339e-07 0.000000e+00 0.000000e+00 + 2.622005e+01 -1.332468e-02 2.556607e-07 0.000000e+00 0.000000e+00 + 2.619340e+01 -1.332416e-02 2.609875e-07 0.000000e+00 0.000000e+00 + 2.616675e+01 -1.332363e-02 2.663143e-07 0.000000e+00 0.000000e+00 + 2.614010e+01 -1.332310e-02 2.716413e-07 0.000000e+00 0.000000e+00 + 2.611346e+01 -1.332255e-02 2.769682e-07 0.000000e+00 0.000000e+00 + 2.608681e+01 -1.332199e-02 2.822952e-07 0.000000e+00 0.000000e+00 + 2.606017e+01 -1.332142e-02 2.876223e-07 0.000000e+00 0.000000e+00 + 2.603353e+01 -1.332084e-02 2.929494e-07 0.000000e+00 0.000000e+00 + 2.600689e+01 -1.332025e-02 2.982766e-07 0.000000e+00 0.000000e+00 + 2.598025e+01 -1.331965e-02 3.036039e-07 0.000000e+00 0.000000e+00 + 2.595361e+01 -1.331903e-02 3.089312e-07 0.000000e+00 0.000000e+00 + 2.592697e+01 -1.331841e-02 3.142585e-07 0.000000e+00 0.000000e+00 + 2.590033e+01 -1.331778e-02 3.195860e-07 0.000000e+00 0.000000e+00 + 2.587370e+01 -1.331713e-02 3.249135e-07 0.000000e+00 0.000000e+00 + 2.584706e+01 -1.331648e-02 3.302411e-07 0.000000e+00 0.000000e+00 + 2.582043e+01 -1.331581e-02 3.355688e-07 0.000000e+00 0.000000e+00 + 2.579380e+01 -1.331513e-02 3.408965e-07 0.000000e+00 0.000000e+00 + 2.576717e+01 -1.331445e-02 3.462243e-07 0.000000e+00 0.000000e+00 + 2.574054e+01 -1.331375e-02 3.515523e-07 0.000000e+00 0.000000e+00 + 2.571392e+01 -1.331304e-02 3.568803e-07 0.000000e+00 0.000000e+00 + 2.568729e+01 -1.331232e-02 3.622084e-07 0.000000e+00 0.000000e+00 + 2.566067e+01 -1.331159e-02 3.675366e-07 0.000000e+00 0.000000e+00 + 2.563404e+01 -1.331085e-02 3.728649e-07 0.000000e+00 0.000000e+00 + 2.560742e+01 -1.331010e-02 3.781933e-07 0.000000e+00 0.000000e+00 + 2.558080e+01 -1.330934e-02 3.835218e-07 0.000000e+00 0.000000e+00 + 2.555419e+01 -1.330857e-02 3.888504e-07 0.000000e+00 0.000000e+00 + 2.552757e+01 -1.330778e-02 3.941792e-07 0.000000e+00 0.000000e+00 + 2.550096e+01 -1.330699e-02 3.995080e-07 0.000000e+00 0.000000e+00 + 2.547434e+01 -1.330618e-02 4.048370e-07 0.000000e+00 0.000000e+00 + 2.544773e+01 -1.330537e-02 4.101662e-07 0.000000e+00 0.000000e+00 + 2.542112e+01 -1.330454e-02 4.154954e-07 0.000000e+00 0.000000e+00 + 2.539451e+01 -1.330371e-02 4.208248e-07 0.000000e+00 0.000000e+00 + 2.536791e+01 -1.330286e-02 4.261543e-07 0.000000e+00 0.000000e+00 + 2.534130e+01 -1.330200e-02 4.314840e-07 0.000000e+00 0.000000e+00 + 2.531470e+01 -1.330113e-02 4.368138e-07 0.000000e+00 0.000000e+00 + 2.528810e+01 -1.330026e-02 4.421438e-07 0.000000e+00 0.000000e+00 + 2.526150e+01 -1.329937e-02 4.474740e-07 0.000000e+00 0.000000e+00 + 2.523490e+01 -1.329847e-02 4.528043e-07 0.000000e+00 0.000000e+00 + 2.520830e+01 -1.329756e-02 4.581347e-07 0.000000e+00 0.000000e+00 + 2.518171e+01 -1.329663e-02 4.634654e-07 0.000000e+00 0.000000e+00 + 2.515512e+01 -1.329570e-02 4.687963e-07 0.000000e+00 0.000000e+00 + 2.512853e+01 -1.329476e-02 4.741273e-07 0.000000e+00 0.000000e+00 + 2.510194e+01 -1.329380e-02 4.794585e-07 0.000000e+00 0.000000e+00 + 2.507535e+01 -1.329284e-02 4.847899e-07 0.000000e+00 0.000000e+00 + 2.504877e+01 -1.329187e-02 4.901216e-07 0.000000e+00 0.000000e+00 + 2.502218e+01 -1.329088e-02 4.954534e-07 0.000000e+00 0.000000e+00 + 2.499560e+01 -1.328988e-02 5.007855e-07 0.000000e+00 0.000000e+00 + 2.496902e+01 -1.328888e-02 5.061178e-07 0.000000e+00 0.000000e+00 + 2.494245e+01 -1.328786e-02 5.114503e-07 0.000000e+00 0.000000e+00 + 2.491587e+01 -1.328683e-02 5.167830e-07 0.000000e+00 0.000000e+00 + 2.488930e+01 -1.328579e-02 5.221160e-07 0.000000e+00 0.000000e+00 + 2.486273e+01 -1.328474e-02 5.274493e-07 0.000000e+00 0.000000e+00 + 2.483616e+01 -1.328368e-02 5.327828e-07 0.000000e+00 0.000000e+00 + 2.480959e+01 -1.328261e-02 5.381166e-07 0.000000e+00 0.000000e+00 + 2.478303e+01 -1.328153e-02 5.434506e-07 0.000000e+00 0.000000e+00 + 2.475647e+01 -1.328044e-02 5.487850e-07 0.000000e+00 0.000000e+00 + 2.472991e+01 -1.327933e-02 5.541196e-07 0.000000e+00 0.000000e+00 + 2.470335e+01 -1.327822e-02 5.594545e-07 0.000000e+00 0.000000e+00 + 2.467680e+01 -1.327710e-02 5.647897e-07 0.000000e+00 0.000000e+00 + 2.465024e+01 -1.327596e-02 5.701252e-07 0.000000e+00 0.000000e+00 + 2.462369e+01 -1.327482e-02 5.754611e-07 0.000000e+00 0.000000e+00 + 2.459714e+01 -1.327366e-02 5.807973e-07 0.000000e+00 0.000000e+00 + 2.457060e+01 -1.327249e-02 5.861338e-07 0.000000e+00 0.000000e+00 + 2.454405e+01 -1.327132e-02 5.914706e-07 0.000000e+00 0.000000e+00 + 2.451751e+01 -1.327013e-02 5.968078e-07 0.000000e+00 0.000000e+00 + 2.449097e+01 -1.326893e-02 6.021454e-07 0.000000e+00 0.000000e+00 + 2.446444e+01 -1.326772e-02 6.074834e-07 0.000000e+00 0.000000e+00 + 2.443790e+01 -1.326650e-02 6.128217e-07 0.000000e+00 0.000000e+00 + 2.441137e+01 -1.326527e-02 6.181604e-07 0.000000e+00 0.000000e+00 + 2.438484e+01 -1.326403e-02 6.234995e-07 0.000000e+00 0.000000e+00 + 2.435831e+01 -1.326277e-02 6.288390e-07 0.000000e+00 0.000000e+00 + 2.433179e+01 -1.326151e-02 6.341790e-07 0.000000e+00 0.000000e+00 + 2.430527e+01 -1.326024e-02 6.395194e-07 0.000000e+00 0.000000e+00 + 2.427875e+01 -1.325895e-02 6.448602e-07 0.000000e+00 0.000000e+00 + 2.425223e+01 -1.325766e-02 6.502015e-07 0.000000e+00 0.000000e+00 + 2.422572e+01 -1.325635e-02 6.555432e-07 0.000000e+00 0.000000e+00 + 2.419921e+01 -1.325504e-02 6.608854e-07 0.000000e+00 0.000000e+00 + 2.417270e+01 -1.325371e-02 6.662281e-07 0.000000e+00 0.000000e+00 + 2.414619e+01 -1.325237e-02 6.715712e-07 0.000000e+00 0.000000e+00 + 2.411969e+01 -1.325102e-02 6.769149e-07 0.000000e+00 0.000000e+00 + 2.409319e+01 -1.324966e-02 6.822591e-07 0.000000e+00 0.000000e+00 + 2.406669e+01 -1.324829e-02 6.876038e-07 0.000000e+00 0.000000e+00 + 2.404020e+01 -1.324691e-02 6.929491e-07 0.000000e+00 0.000000e+00 + 2.401370e+01 -1.324552e-02 6.982949e-07 0.000000e+00 0.000000e+00 + 2.398721e+01 -1.324412e-02 7.036413e-07 0.000000e+00 0.000000e+00 + 2.396073e+01 -1.324271e-02 7.089883e-07 0.000000e+00 0.000000e+00 + 2.393424e+01 -1.324128e-02 7.143358e-07 0.000000e+00 0.000000e+00 + 2.390776e+01 -1.323985e-02 7.196840e-07 0.000000e+00 0.000000e+00 + 2.388128e+01 -1.323840e-02 7.250327e-07 0.000000e+00 0.000000e+00 + 2.385481e+01 -1.323695e-02 7.303821e-07 0.000000e+00 0.000000e+00 + 2.382833e+01 -1.323548e-02 7.357321e-07 0.000000e+00 0.000000e+00 + 2.380187e+01 -1.323401e-02 7.410828e-07 0.000000e+00 0.000000e+00 + 2.377540e+01 -1.323252e-02 7.464342e-07 0.000000e+00 0.000000e+00 + 2.374894e+01 -1.323102e-02 7.517862e-07 0.000000e+00 0.000000e+00 + 2.372247e+01 -1.322951e-02 7.571389e-07 0.000000e+00 0.000000e+00 + 2.369602e+01 -1.322799e-02 7.624924e-07 0.000000e+00 0.000000e+00 + 2.366956e+01 -1.322646e-02 7.678465e-07 0.000000e+00 0.000000e+00 + 2.364311e+01 -1.322492e-02 7.732014e-07 0.000000e+00 0.000000e+00 + 2.361666e+01 -1.322337e-02 7.785571e-07 0.000000e+00 0.000000e+00 + 2.359022e+01 -1.322181e-02 7.839135e-07 0.000000e+00 0.000000e+00 + 2.356378e+01 -1.322023e-02 7.892707e-07 0.000000e+00 0.000000e+00 + 2.353734e+01 -1.321865e-02 7.946287e-07 0.000000e+00 0.000000e+00 + 2.351090e+01 -1.321705e-02 7.999876e-07 0.000000e+00 0.000000e+00 + 2.348447e+01 -1.321545e-02 8.053472e-07 0.000000e+00 0.000000e+00 + 2.345804e+01 -1.321383e-02 8.107077e-07 0.000000e+00 0.000000e+00 + 2.343161e+01 -1.321221e-02 8.160691e-07 0.000000e+00 0.000000e+00 + 2.340519e+01 -1.321057e-02 8.214313e-07 0.000000e+00 0.000000e+00 + 2.337877e+01 -1.320892e-02 8.267945e-07 0.000000e+00 0.000000e+00 + 2.335236e+01 -1.320726e-02 8.321585e-07 0.000000e+00 0.000000e+00 + 2.332594e+01 -1.320559e-02 8.375235e-07 0.000000e+00 0.000000e+00 + 2.329953e+01 -1.320391e-02 8.428895e-07 0.000000e+00 0.000000e+00 + 2.327313e+01 -1.320222e-02 8.482564e-07 0.000000e+00 0.000000e+00 + 2.324672e+01 -1.320052e-02 8.536243e-07 0.000000e+00 0.000000e+00 + 2.322032e+01 -1.319881e-02 8.589932e-07 0.000000e+00 0.000000e+00 + 2.319393e+01 -1.319708e-02 8.643631e-07 0.000000e+00 0.000000e+00 + 2.316754e+01 -1.319535e-02 8.697341e-07 0.000000e+00 0.000000e+00 + 2.314115e+01 -1.319360e-02 8.751061e-07 0.000000e+00 0.000000e+00 + 2.311476e+01 -1.319185e-02 8.804792e-07 0.000000e+00 0.000000e+00 + 2.308838e+01 -1.319008e-02 8.858534e-07 0.000000e+00 0.000000e+00 + 2.306200e+01 -1.318830e-02 8.912287e-07 0.000000e+00 0.000000e+00 + 2.303563e+01 -1.318652e-02 8.966051e-07 0.000000e+00 0.000000e+00 + 2.300926e+01 -1.318472e-02 9.019827e-07 0.000000e+00 0.000000e+00 + 2.298289e+01 -1.318291e-02 9.073615e-07 0.000000e+00 0.000000e+00 + 2.295652e+01 -1.318109e-02 9.127415e-07 0.000000e+00 0.000000e+00 + 2.293016e+01 -1.317926e-02 9.181227e-07 0.000000e+00 0.000000e+00 + 2.290381e+01 -1.317742e-02 9.235051e-07 0.000000e+00 0.000000e+00 + 2.287745e+01 -1.317556e-02 9.288888e-07 0.000000e+00 0.000000e+00 + 2.285110e+01 -1.317370e-02 9.342738e-07 0.000000e+00 0.000000e+00 + 2.282476e+01 -1.317183e-02 9.396601e-07 0.000000e+00 0.000000e+00 + 2.279842e+01 -1.316994e-02 9.450477e-07 0.000000e+00 0.000000e+00 + 2.277208e+01 -1.316805e-02 9.504367e-07 0.000000e+00 0.000000e+00 + 2.274575e+01 -1.316614e-02 9.558270e-07 0.000000e+00 0.000000e+00 + 2.271941e+01 -1.316422e-02 9.612187e-07 0.000000e+00 0.000000e+00 + 2.269309e+01 -1.316230e-02 9.666119e-07 0.000000e+00 0.000000e+00 + 2.266677e+01 -1.316036e-02 9.720065e-07 0.000000e+00 0.000000e+00 + 2.264045e+01 -1.315841e-02 9.774025e-07 0.000000e+00 0.000000e+00 + 2.261413e+01 -1.315645e-02 9.828000e-07 0.000000e+00 0.000000e+00 + 2.258782e+01 -1.315448e-02 9.881991e-07 0.000000e+00 0.000000e+00 + 2.256151e+01 -1.315249e-02 9.935997e-07 0.000000e+00 0.000000e+00 + 2.253521e+01 -1.315050e-02 9.990018e-07 0.000000e+00 0.000000e+00 + 2.250891e+01 -1.314850e-02 1.004406e-06 0.000000e+00 0.000000e+00 + 2.248262e+01 -1.314648e-02 1.009811e-06 0.000000e+00 0.000000e+00 + 2.245633e+01 -1.314446e-02 1.015218e-06 0.000000e+00 0.000000e+00 + 2.243004e+01 -1.314242e-02 1.020626e-06 0.000000e+00 0.000000e+00 + 2.240376e+01 -1.314038e-02 1.026037e-06 0.000000e+00 0.000000e+00 + 2.237748e+01 -1.313832e-02 1.031449e-06 0.000000e+00 0.000000e+00 + 2.235120e+01 -1.313625e-02 1.036863e-06 0.000000e+00 0.000000e+00 + 2.232493e+01 -1.313417e-02 1.042278e-06 0.000000e+00 0.000000e+00 + 2.229867e+01 -1.313208e-02 1.047696e-06 0.000000e+00 0.000000e+00 + 2.227240e+01 -1.312998e-02 1.053115e-06 0.000000e+00 0.000000e+00 + 2.224615e+01 -1.312787e-02 1.058536e-06 0.000000e+00 0.000000e+00 + 2.221989e+01 -1.312575e-02 1.063959e-06 0.000000e+00 0.000000e+00 + 2.219364e+01 -1.312361e-02 1.069383e-06 0.000000e+00 0.000000e+00 + 2.216740e+01 -1.312147e-02 1.074810e-06 0.000000e+00 0.000000e+00 + 2.214116e+01 -1.311931e-02 1.080239e-06 0.000000e+00 0.000000e+00 + 2.211492e+01 -1.311715e-02 1.085670e-06 0.000000e+00 0.000000e+00 + 2.208869e+01 -1.311497e-02 1.091102e-06 0.000000e+00 0.000000e+00 + 2.206246e+01 -1.311278e-02 1.096537e-06 0.000000e+00 0.000000e+00 + 2.203624e+01 -1.311059e-02 1.101974e-06 0.000000e+00 0.000000e+00 + 2.201002e+01 -1.310838e-02 1.107413e-06 0.000000e+00 0.000000e+00 + 2.198380e+01 -1.310616e-02 1.112854e-06 0.000000e+00 0.000000e+00 + 2.195759e+01 -1.310392e-02 1.118297e-06 0.000000e+00 0.000000e+00 + 2.193139e+01 -1.310168e-02 1.123743e-06 0.000000e+00 0.000000e+00 + 2.190519e+01 -1.309943e-02 1.129191e-06 0.000000e+00 0.000000e+00 + 2.187899e+01 -1.309717e-02 1.134641e-06 0.000000e+00 0.000000e+00 + 2.185280e+01 -1.309489e-02 1.140093e-06 0.000000e+00 0.000000e+00 + 2.182661e+01 -1.309261e-02 1.145548e-06 0.000000e+00 0.000000e+00 + 2.180043e+01 -1.309031e-02 1.151005e-06 0.000000e+00 0.000000e+00 + 2.177425e+01 -1.308800e-02 1.156464e-06 0.000000e+00 0.000000e+00 + 2.174808e+01 -1.308568e-02 1.161926e-06 0.000000e+00 0.000000e+00 + 2.172191e+01 -1.308335e-02 1.167390e-06 0.000000e+00 0.000000e+00 + 2.169574e+01 -1.308101e-02 1.172857e-06 0.000000e+00 0.000000e+00 + 2.166958e+01 -1.307866e-02 1.178327e-06 0.000000e+00 0.000000e+00 + 2.164343e+01 -1.307630e-02 1.183799e-06 0.000000e+00 0.000000e+00 + 2.161728e+01 -1.307393e-02 1.189273e-06 0.000000e+00 0.000000e+00 + 2.159113e+01 -1.307154e-02 1.194751e-06 0.000000e+00 0.000000e+00 + 2.156499e+01 -1.306915e-02 1.200230e-06 0.000000e+00 0.000000e+00 + 2.153886e+01 -1.306674e-02 1.205713e-06 0.000000e+00 0.000000e+00 + 2.151273e+01 -1.306433e-02 1.211198e-06 0.000000e+00 0.000000e+00 + 2.148660e+01 -1.306190e-02 1.216687e-06 0.000000e+00 0.000000e+00 + 2.146048e+01 -1.305946e-02 1.222178e-06 0.000000e+00 0.000000e+00 + 2.143436e+01 -1.305701e-02 1.227672e-06 0.000000e+00 0.000000e+00 + 2.140825e+01 -1.305455e-02 1.233168e-06 0.000000e+00 0.000000e+00 + 2.138214e+01 -1.305208e-02 1.238668e-06 0.000000e+00 0.000000e+00 + 2.135604e+01 -1.304959e-02 1.244171e-06 0.000000e+00 0.000000e+00 + 2.132994e+01 -1.304710e-02 1.249677e-06 0.000000e+00 0.000000e+00 + 2.130385e+01 -1.304459e-02 1.255185e-06 0.000000e+00 0.000000e+00 + 2.127777e+01 -1.304208e-02 1.260697e-06 0.000000e+00 0.000000e+00 + 2.125168e+01 -1.303955e-02 1.266212e-06 0.000000e+00 0.000000e+00 + 2.122561e+01 -1.303701e-02 1.271731e-06 0.000000e+00 0.000000e+00 + 2.119954e+01 -1.303446e-02 1.277252e-06 0.000000e+00 0.000000e+00 + 2.117347e+01 -1.303190e-02 1.282777e-06 0.000000e+00 0.000000e+00 + 2.114741e+01 -1.302933e-02 1.288305e-06 0.000000e+00 0.000000e+00 + 2.112135e+01 -1.302675e-02 1.293836e-06 0.000000e+00 0.000000e+00 + 2.109530e+01 -1.302416e-02 1.299371e-06 0.000000e+00 0.000000e+00 + 2.106926e+01 -1.302155e-02 1.304909e-06 0.000000e+00 0.000000e+00 + 2.104322e+01 -1.301894e-02 1.310451e-06 0.000000e+00 0.000000e+00 + 2.101718e+01 -1.301631e-02 1.315996e-06 0.000000e+00 0.000000e+00 + 2.099115e+01 -1.301367e-02 1.321545e-06 0.000000e+00 0.000000e+00 + 2.096513e+01 -1.301103e-02 1.327097e-06 0.000000e+00 0.000000e+00 + 2.093911e+01 -1.300837e-02 1.332653e-06 0.000000e+00 0.000000e+00 + 2.091309e+01 -1.300570e-02 1.338213e-06 0.000000e+00 0.000000e+00 + 2.088708e+01 -1.300301e-02 1.343776e-06 0.000000e+00 0.000000e+00 + 2.086108e+01 -1.300032e-02 1.349344e-06 0.000000e+00 0.000000e+00 + 2.083508e+01 -1.299762e-02 1.354915e-06 0.000000e+00 0.000000e+00 + 2.080909e+01 -1.299490e-02 1.360490e-06 0.000000e+00 0.000000e+00 + 2.078310e+01 -1.299217e-02 1.366069e-06 0.000000e+00 0.000000e+00 + 2.075712e+01 -1.298944e-02 1.371652e-06 0.000000e+00 0.000000e+00 + 2.073115e+01 -1.298669e-02 1.377239e-06 0.000000e+00 0.000000e+00 + 2.070517e+01 -1.298393e-02 1.382830e-06 0.000000e+00 0.000000e+00 + 2.067921e+01 -1.298116e-02 1.388425e-06 0.000000e+00 0.000000e+00 + 2.065325e+01 -1.297837e-02 1.394024e-06 0.000000e+00 0.000000e+00 + 2.062730e+01 -1.297558e-02 1.399628e-06 0.000000e+00 0.000000e+00 + 2.060135e+01 -1.297277e-02 1.405235e-06 0.000000e+00 0.000000e+00 + 2.057540e+01 -1.296996e-02 1.410847e-06 0.000000e+00 0.000000e+00 + 2.054947e+01 -1.296713e-02 1.416464e-06 0.000000e+00 0.000000e+00 + 2.052354e+01 -1.296429e-02 1.422085e-06 0.000000e+00 0.000000e+00 + 2.049761e+01 -1.296144e-02 1.427710e-06 0.000000e+00 0.000000e+00 + 2.047169e+01 -1.295858e-02 1.433340e-06 0.000000e+00 0.000000e+00 + 2.044578e+01 -1.295571e-02 1.438975e-06 0.000000e+00 0.000000e+00 + 2.041987e+01 -1.295283e-02 1.444614e-06 0.000000e+00 0.000000e+00 + 2.039396e+01 -1.294993e-02 1.450258e-06 0.000000e+00 0.000000e+00 + 2.036807e+01 -1.294703e-02 1.455906e-06 0.000000e+00 0.000000e+00 + 2.034218e+01 -1.294411e-02 1.461560e-06 0.000000e+00 0.000000e+00 + 2.031629e+01 -1.294118e-02 1.467218e-06 0.000000e+00 0.000000e+00 + 2.029041e+01 -1.293824e-02 1.472881e-06 0.000000e+00 0.000000e+00 + 2.026454e+01 -1.293529e-02 1.478549e-06 0.000000e+00 0.000000e+00 + 2.023867e+01 -1.293232e-02 1.484222e-06 0.000000e+00 0.000000e+00 + 2.021281e+01 -1.292935e-02 1.489900e-06 0.000000e+00 0.000000e+00 + 2.018695e+01 -1.292637e-02 1.495584e-06 0.000000e+00 0.000000e+00 + 2.016110e+01 -1.292337e-02 1.501272e-06 0.000000e+00 0.000000e+00 + 2.013526e+01 -1.292036e-02 1.506966e-06 0.000000e+00 0.000000e+00 + 2.010942e+01 -1.291734e-02 1.512665e-06 0.000000e+00 0.000000e+00 + 2.008359e+01 -1.291431e-02 1.518369e-06 0.000000e+00 0.000000e+00 + 2.005777e+01 -1.291127e-02 1.524079e-06 0.000000e+00 0.000000e+00 + 2.003195e+01 -1.290821e-02 1.529795e-06 0.000000e+00 0.000000e+00 + 2.000613e+01 -1.290515e-02 1.535515e-06 0.000000e+00 0.000000e+00 + 1.998033e+01 -1.290207e-02 1.541242e-06 0.000000e+00 0.000000e+00 + 1.995452e+01 -1.289898e-02 1.546974e-06 0.000000e+00 0.000000e+00 + 1.992873e+01 -1.289588e-02 1.552712e-06 0.000000e+00 0.000000e+00 + 1.990294e+01 -1.289277e-02 1.558456e-06 0.000000e+00 0.000000e+00 + 1.987716e+01 -1.288965e-02 1.564205e-06 0.000000e+00 0.000000e+00 + 1.985138e+01 -1.288652e-02 1.569960e-06 0.000000e+00 0.000000e+00 + 1.982561e+01 -1.288337e-02 1.575722e-06 0.000000e+00 0.000000e+00 + 1.979985e+01 -1.288021e-02 1.581489e-06 0.000000e+00 0.000000e+00 + 1.977409e+01 -1.287704e-02 1.587263e-06 0.000000e+00 0.000000e+00 + 1.974834e+01 -1.287386e-02 1.593042e-06 0.000000e+00 0.000000e+00 + 1.972260e+01 -1.287067e-02 1.598828e-06 0.000000e+00 0.000000e+00 + 1.969686e+01 -1.286747e-02 1.604621e-06 0.000000e+00 0.000000e+00 + 1.967113e+01 -1.286425e-02 1.610419e-06 0.000000e+00 0.000000e+00 + 1.964540e+01 -1.286103e-02 1.616224e-06 0.000000e+00 0.000000e+00 + 1.961968e+01 -1.285779e-02 1.622036e-06 0.000000e+00 0.000000e+00 + 1.959397e+01 -1.285454e-02 1.627854e-06 0.000000e+00 0.000000e+00 + 1.956826e+01 -1.285128e-02 1.633679e-06 0.000000e+00 0.000000e+00 + 1.954256e+01 -1.284800e-02 1.639510e-06 0.000000e+00 0.000000e+00 + 1.951687e+01 -1.284472e-02 1.645348e-06 0.000000e+00 0.000000e+00 + 1.949119e+01 -1.284142e-02 1.651193e-06 0.000000e+00 0.000000e+00 + 1.946551e+01 -1.283811e-02 1.657045e-06 0.000000e+00 0.000000e+00 + 1.943983e+01 -1.283479e-02 1.662904e-06 0.000000e+00 0.000000e+00 + 1.941417e+01 -1.283146e-02 1.668770e-06 0.000000e+00 0.000000e+00 + 1.938851e+01 -1.282812e-02 1.674643e-06 0.000000e+00 0.000000e+00 + 1.936285e+01 -1.282476e-02 1.680524e-06 0.000000e+00 0.000000e+00 + 1.933721e+01 -1.282140e-02 1.686411e-06 0.000000e+00 0.000000e+00 + 1.931157e+01 -1.281802e-02 1.692306e-06 0.000000e+00 0.000000e+00 + 1.928594e+01 -1.281463e-02 1.698209e-06 0.000000e+00 0.000000e+00 + 1.926031e+01 -1.281122e-02 1.704119e-06 0.000000e+00 0.000000e+00 + 1.923469e+01 -1.280781e-02 1.710036e-06 0.000000e+00 0.000000e+00 + 1.920908e+01 -1.280438e-02 1.715961e-06 0.000000e+00 0.000000e+00 + 1.918347e+01 -1.280095e-02 1.721894e-06 0.000000e+00 0.000000e+00 + 1.915788e+01 -1.279750e-02 1.727835e-06 0.000000e+00 0.000000e+00 + 1.913228e+01 -1.279404e-02 1.733783e-06 0.000000e+00 0.000000e+00 + 1.910670e+01 -1.279056e-02 1.739739e-06 0.000000e+00 0.000000e+00 + 1.908112e+01 -1.278708e-02 1.745704e-06 0.000000e+00 0.000000e+00 + 1.905555e+01 -1.278358e-02 1.751677e-06 0.000000e+00 0.000000e+00 + 1.902999e+01 -1.278007e-02 1.757657e-06 0.000000e+00 0.000000e+00 + 1.900443e+01 -1.277655e-02 1.763646e-06 0.000000e+00 0.000000e+00 + 1.897888e+01 -1.277302e-02 1.769644e-06 0.000000e+00 0.000000e+00 + 1.895334e+01 -1.276947e-02 1.775650e-06 0.000000e+00 0.000000e+00 + 1.892780e+01 -1.276591e-02 1.781664e-06 0.000000e+00 0.000000e+00 + 1.890227e+01 -1.276234e-02 1.787687e-06 0.000000e+00 0.000000e+00 + 1.887675e+01 -1.275876e-02 1.793719e-06 0.000000e+00 0.000000e+00 + 1.885124e+01 -1.275517e-02 1.799759e-06 0.000000e+00 0.000000e+00 + 1.882573e+01 -1.275156e-02 1.805808e-06 0.000000e+00 0.000000e+00 + 1.880023e+01 -1.274795e-02 1.811866e-06 0.000000e+00 0.000000e+00 + 1.877474e+01 -1.274432e-02 1.817934e-06 0.000000e+00 0.000000e+00 + 1.874926e+01 -1.274067e-02 1.824010e-06 0.000000e+00 0.000000e+00 + 1.872378e+01 -1.273702e-02 1.830095e-06 0.000000e+00 0.000000e+00 + 1.869831e+01 -1.273335e-02 1.836190e-06 0.000000e+00 0.000000e+00 + 1.867285e+01 -1.272967e-02 1.842294e-06 0.000000e+00 0.000000e+00 + 1.864739e+01 -1.272598e-02 1.848408e-06 0.000000e+00 0.000000e+00 + 1.862194e+01 -1.272228e-02 1.854531e-06 0.000000e+00 0.000000e+00 + 1.859650e+01 -1.271857e-02 1.860664e-06 0.000000e+00 0.000000e+00 + 1.857107e+01 -1.271484e-02 1.866806e-06 0.000000e+00 0.000000e+00 + 1.854564e+01 -1.271110e-02 1.872959e-06 0.000000e+00 0.000000e+00 + 1.852022e+01 -1.270735e-02 1.879121e-06 0.000000e+00 0.000000e+00 + 1.849481e+01 -1.270358e-02 1.885293e-06 0.000000e+00 0.000000e+00 + 1.846941e+01 -1.269981e-02 1.891475e-06 0.000000e+00 0.000000e+00 + 1.844401e+01 -1.269602e-02 1.897667e-06 0.000000e+00 0.000000e+00 + 1.841862e+01 -1.269221e-02 1.903870e-06 0.000000e+00 0.000000e+00 + 1.839324e+01 -1.268840e-02 1.910083e-06 0.000000e+00 0.000000e+00 + 1.836787e+01 -1.268457e-02 1.916307e-06 0.000000e+00 0.000000e+00 + 1.834251e+01 -1.268074e-02 1.922541e-06 0.000000e+00 0.000000e+00 + 1.831715e+01 -1.267688e-02 1.928786e-06 0.000000e+00 0.000000e+00 + 1.829180e+01 -1.267302e-02 1.935041e-06 0.000000e+00 0.000000e+00 + 1.826646e+01 -1.266914e-02 1.941307e-06 0.000000e+00 0.000000e+00 + 1.824112e+01 -1.266526e-02 1.947585e-06 0.000000e+00 0.000000e+00 + 1.821579e+01 -1.266135e-02 1.953873e-06 0.000000e+00 0.000000e+00 + 1.819048e+01 -1.265744e-02 1.960172e-06 0.000000e+00 0.000000e+00 + 1.816516e+01 -1.265351e-02 1.966483e-06 0.000000e+00 0.000000e+00 + 1.813986e+01 -1.264957e-02 1.972805e-06 0.000000e+00 0.000000e+00 + 1.811457e+01 -1.264562e-02 1.979138e-06 0.000000e+00 0.000000e+00 + 1.808928e+01 -1.264166e-02 1.985483e-06 0.000000e+00 0.000000e+00 + 1.806400e+01 -1.263768e-02 1.991840e-06 0.000000e+00 0.000000e+00 + 1.803873e+01 -1.263369e-02 1.998208e-06 0.000000e+00 0.000000e+00 + 1.801347e+01 -1.262969e-02 2.004588e-06 0.000000e+00 0.000000e+00 + 1.798821e+01 -1.262567e-02 2.010981e-06 0.000000e+00 0.000000e+00 + 1.796296e+01 -1.262164e-02 2.017385e-06 0.000000e+00 0.000000e+00 + 1.793772e+01 -1.261760e-02 2.023801e-06 0.000000e+00 0.000000e+00 + 1.791249e+01 -1.261355e-02 2.030230e-06 0.000000e+00 0.000000e+00 + 1.788727e+01 -1.260948e-02 2.036671e-06 0.000000e+00 0.000000e+00 + 1.786205e+01 -1.260540e-02 2.043124e-06 0.000000e+00 0.000000e+00 + 1.783685e+01 -1.260131e-02 2.049591e-06 0.000000e+00 0.000000e+00 + 1.781165e+01 -1.259720e-02 2.056069e-06 0.000000e+00 0.000000e+00 + 1.778646e+01 -1.259308e-02 2.062561e-06 0.000000e+00 0.000000e+00 + 1.776128e+01 -1.258895e-02 2.069066e-06 0.000000e+00 0.000000e+00 + 1.773610e+01 -1.258481e-02 2.075583e-06 0.000000e+00 0.000000e+00 + 1.771094e+01 -1.258065e-02 2.082114e-06 0.000000e+00 0.000000e+00 + 1.768578e+01 -1.257648e-02 2.088658e-06 0.000000e+00 0.000000e+00 + 1.766063e+01 -1.257230e-02 2.095215e-06 0.000000e+00 0.000000e+00 + 1.763549e+01 -1.256810e-02 2.101786e-06 0.000000e+00 0.000000e+00 + 1.761036e+01 -1.256389e-02 2.108370e-06 0.000000e+00 0.000000e+00 + 1.758524e+01 -1.255967e-02 2.114969e-06 0.000000e+00 0.000000e+00 + 1.756012e+01 -1.255543e-02 2.121581e-06 0.000000e+00 0.000000e+00 + 1.753501e+01 -1.255118e-02 2.128207e-06 0.000000e+00 0.000000e+00 + 1.750992e+01 -1.254692e-02 2.134847e-06 0.000000e+00 0.000000e+00 + 1.748483e+01 -1.254264e-02 2.141501e-06 0.000000e+00 0.000000e+00 + 1.745975e+01 -1.253835e-02 2.148169e-06 0.000000e+00 0.000000e+00 + 1.743467e+01 -1.253405e-02 2.154852e-06 0.000000e+00 0.000000e+00 + 1.740961e+01 -1.252973e-02 2.161549e-06 0.000000e+00 0.000000e+00 + 1.738455e+01 -1.252540e-02 2.168262e-06 0.000000e+00 0.000000e+00 + 1.735951e+01 -1.252106e-02 2.174988e-06 0.000000e+00 0.000000e+00 + 1.733447e+01 -1.251670e-02 2.181730e-06 0.000000e+00 0.000000e+00 + 1.730944e+01 -1.251233e-02 2.188487e-06 0.000000e+00 0.000000e+00 + 1.728442e+01 -1.250795e-02 2.195259e-06 0.000000e+00 0.000000e+00 + 1.725941e+01 -1.250355e-02 2.202046e-06 0.000000e+00 0.000000e+00 + 1.723441e+01 -1.249914e-02 2.208849e-06 0.000000e+00 0.000000e+00 + 1.720941e+01 -1.249471e-02 2.215667e-06 0.000000e+00 0.000000e+00 + 1.718443e+01 -1.249028e-02 2.222501e-06 0.000000e+00 0.000000e+00 + 1.715945e+01 -1.248582e-02 2.229350e-06 0.000000e+00 0.000000e+00 + 1.713448e+01 -1.248136e-02 2.236216e-06 0.000000e+00 0.000000e+00 + 1.710953e+01 -1.247688e-02 2.243097e-06 0.000000e+00 0.000000e+00 + 1.708458e+01 -1.247239e-02 2.249995e-06 0.000000e+00 0.000000e+00 + 1.705964e+01 -1.246788e-02 2.256909e-06 0.000000e+00 0.000000e+00 + 1.703471e+01 -1.246336e-02 2.263839e-06 0.000000e+00 0.000000e+00 + 1.700978e+01 -1.245882e-02 2.270786e-06 0.000000e+00 0.000000e+00 + 1.698487e+01 -1.245427e-02 2.277750e-06 0.000000e+00 0.000000e+00 + 1.695997e+01 -1.244971e-02 2.284730e-06 0.000000e+00 0.000000e+00 + 1.693507e+01 -1.244514e-02 2.291728e-06 0.000000e+00 0.000000e+00 + 1.691019e+01 -1.244055e-02 2.298742e-06 0.000000e+00 0.000000e+00 + 1.688531e+01 -1.243594e-02 2.305774e-06 0.000000e+00 0.000000e+00 + 1.686044e+01 -1.243132e-02 2.312823e-06 0.000000e+00 0.000000e+00 + 1.683558e+01 -1.242669e-02 2.319890e-06 0.000000e+00 0.000000e+00 + 1.681073e+01 -1.242204e-02 2.326974e-06 0.000000e+00 0.000000e+00 + 1.678590e+01 -1.241738e-02 2.334076e-06 0.000000e+00 0.000000e+00 + 1.676107e+01 -1.241271e-02 2.341196e-06 0.000000e+00 0.000000e+00 + 1.673624e+01 -1.240802e-02 2.348335e-06 0.000000e+00 0.000000e+00 + 1.671143e+01 -1.240331e-02 2.355491e-06 0.000000e+00 0.000000e+00 + 1.668663e+01 -1.239860e-02 2.362665e-06 0.000000e+00 0.000000e+00 + 1.666184e+01 -1.239386e-02 2.369859e-06 0.000000e+00 0.000000e+00 + 1.663706e+01 -1.238912e-02 2.377070e-06 0.000000e+00 0.000000e+00 + 1.661228e+01 -1.238435e-02 2.384301e-06 0.000000e+00 0.000000e+00 + 1.658752e+01 -1.237958e-02 2.391550e-06 0.000000e+00 0.000000e+00 + 1.656276e+01 -1.237479e-02 2.398819e-06 0.000000e+00 0.000000e+00 + 1.653802e+01 -1.236998e-02 2.406106e-06 0.000000e+00 0.000000e+00 + 1.651328e+01 -1.236516e-02 2.413414e-06 0.000000e+00 0.000000e+00 + 1.648856e+01 -1.236033e-02 2.420740e-06 0.000000e+00 0.000000e+00 + 1.646384e+01 -1.235548e-02 2.428086e-06 0.000000e+00 0.000000e+00 + 1.643914e+01 -1.235062e-02 2.435452e-06 0.000000e+00 0.000000e+00 + 1.641444e+01 -1.234574e-02 2.442839e-06 0.000000e+00 0.000000e+00 + 1.638975e+01 -1.234085e-02 2.450245e-06 0.000000e+00 0.000000e+00 + 1.636508e+01 -1.233594e-02 2.457671e-06 0.000000e+00 0.000000e+00 + 1.634041e+01 -1.233102e-02 2.465118e-06 0.000000e+00 0.000000e+00 + 1.631575e+01 -1.232608e-02 2.472585e-06 0.000000e+00 0.000000e+00 + 1.629111e+01 -1.232112e-02 2.480074e-06 0.000000e+00 0.000000e+00 + 1.626647e+01 -1.231616e-02 2.487583e-06 0.000000e+00 0.000000e+00 + 1.624184e+01 -1.231117e-02 2.495113e-06 0.000000e+00 0.000000e+00 + 1.621722e+01 -1.230618e-02 2.502664e-06 0.000000e+00 0.000000e+00 + 1.619262e+01 -1.230116e-02 2.510237e-06 0.000000e+00 0.000000e+00 + 1.616802e+01 -1.229614e-02 2.517831e-06 0.000000e+00 0.000000e+00 + 1.614343e+01 -1.229109e-02 2.525447e-06 0.000000e+00 0.000000e+00 + 1.611885e+01 -1.228603e-02 2.533084e-06 0.000000e+00 0.000000e+00 + 1.609429e+01 -1.228096e-02 2.540744e-06 0.000000e+00 0.000000e+00 + 1.606973e+01 -1.227587e-02 2.548426e-06 0.000000e+00 0.000000e+00 + 1.604518e+01 -1.227077e-02 2.556130e-06 0.000000e+00 0.000000e+00 + 1.602065e+01 -1.226565e-02 2.563857e-06 0.000000e+00 0.000000e+00 + 1.599612e+01 -1.226051e-02 2.571606e-06 0.000000e+00 0.000000e+00 + 1.597161e+01 -1.225536e-02 2.579378e-06 0.000000e+00 0.000000e+00 + 1.594710e+01 -1.225019e-02 2.587174e-06 0.000000e+00 0.000000e+00 + 1.592261e+01 -1.224501e-02 2.594992e-06 0.000000e+00 0.000000e+00 + 1.589812e+01 -1.223981e-02 2.602834e-06 0.000000e+00 0.000000e+00 + 1.587365e+01 -1.223460e-02 2.610699e-06 0.000000e+00 0.000000e+00 + 1.584918e+01 -1.222937e-02 2.618588e-06 0.000000e+00 0.000000e+00 + 1.582473e+01 -1.222413e-02 2.626500e-06 0.000000e+00 0.000000e+00 + 1.580029e+01 -1.221886e-02 2.634437e-06 0.000000e+00 0.000000e+00 + 1.577585e+01 -1.221359e-02 2.642398e-06 0.000000e+00 0.000000e+00 + 1.575143e+01 -1.220829e-02 2.650383e-06 0.000000e+00 0.000000e+00 + 1.572702e+01 -1.220299e-02 2.658393e-06 0.000000e+00 0.000000e+00 + 1.570262e+01 -1.219766e-02 2.666428e-06 0.000000e+00 0.000000e+00 + 1.567823e+01 -1.219232e-02 2.674487e-06 0.000000e+00 0.000000e+00 + 1.565385e+01 -1.218696e-02 2.682571e-06 0.000000e+00 0.000000e+00 + 1.562948e+01 -1.218159e-02 2.690681e-06 0.000000e+00 0.000000e+00 + 1.560512e+01 -1.217620e-02 2.698816e-06 0.000000e+00 0.000000e+00 + 1.558078e+01 -1.217079e-02 2.706977e-06 0.000000e+00 0.000000e+00 + 1.555644e+01 -1.216537e-02 2.715164e-06 0.000000e+00 0.000000e+00 + 1.553212e+01 -1.215993e-02 2.723376e-06 0.000000e+00 0.000000e+00 + 1.550780e+01 -1.215448e-02 2.731615e-06 0.000000e+00 0.000000e+00 + 1.548350e+01 -1.214901e-02 2.739880e-06 0.000000e+00 0.000000e+00 + 1.545920e+01 -1.214352e-02 2.748172e-06 0.000000e+00 0.000000e+00 + 1.543492e+01 -1.213801e-02 2.756490e-06 0.000000e+00 0.000000e+00 + 1.541065e+01 -1.213249e-02 2.764835e-06 0.000000e+00 0.000000e+00 + 1.538639e+01 -1.212696e-02 2.773207e-06 0.000000e+00 0.000000e+00 + 1.536214e+01 -1.212140e-02 2.781607e-06 0.000000e+00 0.000000e+00 + 1.533791e+01 -1.211583e-02 2.790034e-06 0.000000e+00 0.000000e+00 + 1.531368e+01 -1.211024e-02 2.798489e-06 0.000000e+00 0.000000e+00 + 1.528947e+01 -1.210464e-02 2.806971e-06 0.000000e+00 0.000000e+00 + 1.526526e+01 -1.209901e-02 2.815482e-06 0.000000e+00 0.000000e+00 + 1.524107e+01 -1.209337e-02 2.824021e-06 0.000000e+00 0.000000e+00 + 1.521689e+01 -1.208772e-02 2.832588e-06 0.000000e+00 0.000000e+00 + 1.519272e+01 -1.208204e-02 2.841184e-06 0.000000e+00 0.000000e+00 + 1.516856e+01 -1.207635e-02 2.849809e-06 0.000000e+00 0.000000e+00 + 1.514441e+01 -1.207064e-02 2.858463e-06 0.000000e+00 0.000000e+00 + 1.512028e+01 -1.206492e-02 2.867146e-06 0.000000e+00 0.000000e+00 + 1.509615e+01 -1.205917e-02 2.875858e-06 0.000000e+00 0.000000e+00 + 1.507204e+01 -1.205341e-02 2.884600e-06 0.000000e+00 0.000000e+00 + 1.504794e+01 -1.204764e-02 2.893372e-06 0.000000e+00 0.000000e+00 + 1.502385e+01 -1.204184e-02 2.902174e-06 0.000000e+00 0.000000e+00 + 1.499977e+01 -1.203603e-02 2.911006e-06 0.000000e+00 0.000000e+00 + 1.497571e+01 -1.203020e-02 2.919868e-06 0.000000e+00 0.000000e+00 + 1.495165e+01 -1.202435e-02 2.928761e-06 0.000000e+00 0.000000e+00 + 1.492761e+01 -1.201848e-02 2.937685e-06 0.000000e+00 0.000000e+00 + 1.490358e+01 -1.201260e-02 2.946641e-06 0.000000e+00 0.000000e+00 + 1.487956e+01 -1.200670e-02 2.955627e-06 0.000000e+00 0.000000e+00 + 1.485555e+01 -1.200078e-02 2.964645e-06 0.000000e+00 0.000000e+00 + 1.483156e+01 -1.199484e-02 2.973694e-06 0.000000e+00 0.000000e+00 + 1.480757e+01 -1.198888e-02 2.982776e-06 0.000000e+00 0.000000e+00 + 1.478360e+01 -1.198291e-02 2.991889e-06 0.000000e+00 0.000000e+00 + 1.475964e+01 -1.197691e-02 3.001035e-06 0.000000e+00 0.000000e+00 + 1.473569e+01 -1.197090e-02 3.010213e-06 0.000000e+00 0.000000e+00 + 1.471176e+01 -1.196487e-02 3.019424e-06 0.000000e+00 0.000000e+00 + 1.468783e+01 -1.195882e-02 3.028668e-06 0.000000e+00 0.000000e+00 + 1.466392e+01 -1.195276e-02 3.037945e-06 0.000000e+00 0.000000e+00 + 1.464002e+01 -1.194667e-02 3.047256e-06 0.000000e+00 0.000000e+00 + 1.461614e+01 -1.194057e-02 3.056600e-06 0.000000e+00 0.000000e+00 + 1.459226e+01 -1.193445e-02 3.065978e-06 0.000000e+00 0.000000e+00 + 1.456840e+01 -1.192830e-02 3.075390e-06 0.000000e+00 0.000000e+00 + 1.454455e+01 -1.192214e-02 3.084837e-06 0.000000e+00 0.000000e+00 + 1.452071e+01 -1.191596e-02 3.094317e-06 0.000000e+00 0.000000e+00 + 1.449688e+01 -1.190977e-02 3.103833e-06 0.000000e+00 0.000000e+00 + 1.447307e+01 -1.190355e-02 3.113383e-06 0.000000e+00 0.000000e+00 + 1.444927e+01 -1.189731e-02 3.122969e-06 0.000000e+00 0.000000e+00 + 1.442548e+01 -1.189106e-02 3.132590e-06 0.000000e+00 0.000000e+00 + 1.440171e+01 -1.188478e-02 3.142247e-06 0.000000e+00 0.000000e+00 + 1.437794e+01 -1.187849e-02 3.151940e-06 0.000000e+00 0.000000e+00 + 1.435419e+01 -1.187217e-02 3.161668e-06 0.000000e+00 0.000000e+00 + 1.433045e+01 -1.186584e-02 3.171433e-06 0.000000e+00 0.000000e+00 + 1.430673e+01 -1.185949e-02 3.181235e-06 0.000000e+00 0.000000e+00 + 1.428302e+01 -1.185312e-02 3.191073e-06 0.000000e+00 0.000000e+00 + 1.425932e+01 -1.184672e-02 3.200948e-06 0.000000e+00 0.000000e+00 + 1.423563e+01 -1.184031e-02 3.210861e-06 0.000000e+00 0.000000e+00 + 1.421195e+01 -1.183388e-02 3.220811e-06 0.000000e+00 0.000000e+00 + 1.418829e+01 -1.182743e-02 3.230799e-06 0.000000e+00 0.000000e+00 + 1.416464e+01 -1.182096e-02 3.240824e-06 0.000000e+00 0.000000e+00 + 1.414101e+01 -1.181447e-02 3.250888e-06 0.000000e+00 0.000000e+00 + 1.411739e+01 -1.180795e-02 3.260991e-06 0.000000e+00 0.000000e+00 + 1.409378e+01 -1.180142e-02 3.271132e-06 0.000000e+00 0.000000e+00 + 1.407018e+01 -1.179487e-02 3.281312e-06 0.000000e+00 0.000000e+00 + 1.404660e+01 -1.178830e-02 3.291531e-06 0.000000e+00 0.000000e+00 + 1.402303e+01 -1.178170e-02 3.301789e-06 0.000000e+00 0.000000e+00 + 1.399947e+01 -1.177509e-02 3.312087e-06 0.000000e+00 0.000000e+00 + 1.397593e+01 -1.176846e-02 3.322425e-06 0.000000e+00 0.000000e+00 + 1.395240e+01 -1.176180e-02 3.332804e-06 0.000000e+00 0.000000e+00 + 1.392888e+01 -1.175512e-02 3.343222e-06 0.000000e+00 0.000000e+00 + 1.390538e+01 -1.174843e-02 3.353681e-06 0.000000e+00 0.000000e+00 + 1.388189e+01 -1.174171e-02 3.364181e-06 0.000000e+00 0.000000e+00 + 1.385841e+01 -1.173497e-02 3.374723e-06 0.000000e+00 0.000000e+00 + 1.383495e+01 -1.172821e-02 3.385305e-06 0.000000e+00 0.000000e+00 + 1.381150e+01 -1.172143e-02 3.395930e-06 0.000000e+00 0.000000e+00 + 1.378806e+01 -1.171463e-02 3.406596e-06 0.000000e+00 0.000000e+00 + 1.376464e+01 -1.170780e-02 3.417304e-06 0.000000e+00 0.000000e+00 + 1.374123e+01 -1.170096e-02 3.428055e-06 0.000000e+00 0.000000e+00 + 1.371783e+01 -1.169409e-02 3.438848e-06 0.000000e+00 0.000000e+00 + 1.369445e+01 -1.168720e-02 3.449685e-06 0.000000e+00 0.000000e+00 + 1.367109e+01 -1.168029e-02 3.460564e-06 0.000000e+00 0.000000e+00 + 1.364773e+01 -1.167336e-02 3.471487e-06 0.000000e+00 0.000000e+00 + 1.362439e+01 -1.166641e-02 3.482453e-06 0.000000e+00 0.000000e+00 + 1.360107e+01 -1.165943e-02 3.493464e-06 0.000000e+00 0.000000e+00 + 1.357775e+01 -1.165243e-02 3.504519e-06 0.000000e+00 0.000000e+00 + 1.355446e+01 -1.164541e-02 3.515618e-06 0.000000e+00 0.000000e+00 + 1.353117e+01 -1.163837e-02 3.526762e-06 0.000000e+00 0.000000e+00 + 1.350790e+01 -1.163130e-02 3.537951e-06 0.000000e+00 0.000000e+00 + 1.348465e+01 -1.162422e-02 3.549185e-06 0.000000e+00 0.000000e+00 + 1.346141e+01 -1.161711e-02 3.560465e-06 0.000000e+00 0.000000e+00 + 1.343818e+01 -1.160998e-02 3.571791e-06 0.000000e+00 0.000000e+00 + 1.341497e+01 -1.160282e-02 3.583163e-06 0.000000e+00 0.000000e+00 + 1.339177e+01 -1.159564e-02 3.594581e-06 0.000000e+00 0.000000e+00 + 1.336858e+01 -1.158844e-02 3.606046e-06 0.000000e+00 0.000000e+00 + 1.334541e+01 -1.158122e-02 3.617557e-06 0.000000e+00 0.000000e+00 + 1.332226e+01 -1.157397e-02 3.629116e-06 0.000000e+00 0.000000e+00 + 1.329912e+01 -1.156670e-02 3.640722e-06 0.000000e+00 0.000000e+00 + 1.327599e+01 -1.155941e-02 3.652376e-06 0.000000e+00 0.000000e+00 + 1.325288e+01 -1.155209e-02 3.664078e-06 0.000000e+00 0.000000e+00 + 1.322978e+01 -1.154475e-02 3.675828e-06 0.000000e+00 0.000000e+00 + 1.320670e+01 -1.153739e-02 3.687627e-06 0.000000e+00 0.000000e+00 + 1.318363e+01 -1.153000e-02 3.699475e-06 0.000000e+00 0.000000e+00 + 1.316058e+01 -1.152259e-02 3.711371e-06 0.000000e+00 0.000000e+00 + 1.313754e+01 -1.151516e-02 3.723317e-06 0.000000e+00 0.000000e+00 + 1.311452e+01 -1.150770e-02 3.735313e-06 0.000000e+00 0.000000e+00 + 1.309151e+01 -1.150022e-02 3.747359e-06 0.000000e+00 0.000000e+00 + 1.306852e+01 -1.149271e-02 3.759455e-06 0.000000e+00 0.000000e+00 + 1.304554e+01 -1.148518e-02 3.771601e-06 0.000000e+00 0.000000e+00 + 1.302258e+01 -1.147762e-02 3.783799e-06 0.000000e+00 0.000000e+00 + 1.299963e+01 -1.147004e-02 3.796047e-06 0.000000e+00 0.000000e+00 + 1.297670e+01 -1.146244e-02 3.808347e-06 0.000000e+00 0.000000e+00 + 1.295378e+01 -1.145481e-02 3.820698e-06 0.000000e+00 0.000000e+00 + 1.293088e+01 -1.144716e-02 3.833101e-06 0.000000e+00 0.000000e+00 + 1.290799e+01 -1.143948e-02 3.845557e-06 0.000000e+00 0.000000e+00 + 1.288512e+01 -1.143177e-02 3.858065e-06 0.000000e+00 0.000000e+00 + 1.286227e+01 -1.142404e-02 3.870626e-06 0.000000e+00 0.000000e+00 + 1.283943e+01 -1.141629e-02 3.883240e-06 0.000000e+00 0.000000e+00 + 1.281660e+01 -1.140851e-02 3.895907e-06 0.000000e+00 0.000000e+00 + 1.279379e+01 -1.140071e-02 3.908629e-06 0.000000e+00 0.000000e+00 + 1.277100e+01 -1.139288e-02 3.921404e-06 0.000000e+00 0.000000e+00 + 1.274822e+01 -1.138502e-02 3.934233e-06 0.000000e+00 0.000000e+00 + 1.272546e+01 -1.137714e-02 3.947117e-06 0.000000e+00 0.000000e+00 + 1.270271e+01 -1.136923e-02 3.960056e-06 0.000000e+00 0.000000e+00 + 1.267998e+01 -1.136130e-02 3.973050e-06 0.000000e+00 0.000000e+00 + 1.265727e+01 -1.135334e-02 3.986100e-06 0.000000e+00 0.000000e+00 + 1.263457e+01 -1.134536e-02 3.999205e-06 0.000000e+00 0.000000e+00 + 1.261189e+01 -1.133734e-02 4.012366e-06 0.000000e+00 0.000000e+00 + 1.258922e+01 -1.132931e-02 4.025584e-06 0.000000e+00 0.000000e+00 + 1.256657e+01 -1.132124e-02 4.038859e-06 0.000000e+00 0.000000e+00 + 1.254393e+01 -1.131315e-02 4.052190e-06 0.000000e+00 0.000000e+00 + 1.252132e+01 -1.130503e-02 4.065579e-06 0.000000e+00 0.000000e+00 + 1.249871e+01 -1.129689e-02 4.079025e-06 0.000000e+00 0.000000e+00 + 1.247613e+01 -1.128872e-02 4.092529e-06 0.000000e+00 0.000000e+00 + 1.245356e+01 -1.128052e-02 4.106092e-06 0.000000e+00 0.000000e+00 + 1.243101e+01 -1.127229e-02 4.119713e-06 0.000000e+00 0.000000e+00 + 1.240847e+01 -1.126404e-02 4.133393e-06 0.000000e+00 0.000000e+00 + 1.238595e+01 -1.125576e-02 4.147131e-06 0.000000e+00 0.000000e+00 + 1.236345e+01 -1.124745e-02 4.160930e-06 0.000000e+00 0.000000e+00 + 1.234096e+01 -1.123911e-02 4.174788e-06 0.000000e+00 0.000000e+00 + 1.231849e+01 -1.123075e-02 4.188706e-06 0.000000e+00 0.000000e+00 + 1.229604e+01 -1.122236e-02 4.202684e-06 0.000000e+00 0.000000e+00 + 1.227360e+01 -1.121394e-02 4.216723e-06 0.000000e+00 0.000000e+00 + 1.225118e+01 -1.120549e-02 4.230824e-06 0.000000e+00 0.000000e+00 + 1.222878e+01 -1.119702e-02 4.244985e-06 0.000000e+00 0.000000e+00 + 1.220639e+01 -1.118851e-02 4.259208e-06 0.000000e+00 0.000000e+00 + 1.218403e+01 -1.117998e-02 4.273493e-06 0.000000e+00 0.000000e+00 + 1.216167e+01 -1.117142e-02 4.287840e-06 0.000000e+00 0.000000e+00 + 1.213934e+01 -1.116283e-02 4.302250e-06 0.000000e+00 0.000000e+00 + 1.211702e+01 -1.115421e-02 4.316723e-06 0.000000e+00 0.000000e+00 + 1.209472e+01 -1.114556e-02 4.331258e-06 0.000000e+00 0.000000e+00 + 1.207244e+01 -1.113688e-02 4.345858e-06 0.000000e+00 0.000000e+00 + 1.205018e+01 -1.112818e-02 4.360521e-06 0.000000e+00 0.000000e+00 + 1.202793e+01 -1.111944e-02 4.375248e-06 0.000000e+00 0.000000e+00 + 1.200570e+01 -1.111068e-02 4.390040e-06 0.000000e+00 0.000000e+00 + 1.198348e+01 -1.110188e-02 4.404896e-06 0.000000e+00 0.000000e+00 + 1.196129e+01 -1.109306e-02 4.419818e-06 0.000000e+00 0.000000e+00 + 1.193911e+01 -1.108420e-02 4.434805e-06 0.000000e+00 0.000000e+00 + 1.191695e+01 -1.107532e-02 4.449858e-06 0.000000e+00 0.000000e+00 + 1.189481e+01 -1.106640e-02 4.464977e-06 0.000000e+00 0.000000e+00 + 1.187269e+01 -1.105746e-02 4.480162e-06 0.000000e+00 0.000000e+00 + 1.185058e+01 -1.104848e-02 4.495414e-06 0.000000e+00 0.000000e+00 + 1.182849e+01 -1.103948e-02 4.510733e-06 0.000000e+00 0.000000e+00 + 1.180642e+01 -1.103044e-02 4.526119e-06 0.000000e+00 0.000000e+00 + 1.178437e+01 -1.102137e-02 4.541573e-06 0.000000e+00 0.000000e+00 + 1.176234e+01 -1.101227e-02 4.557095e-06 0.000000e+00 0.000000e+00 + 1.174032e+01 -1.100314e-02 4.572685e-06 0.000000e+00 0.000000e+00 + 1.171833e+01 -1.099398e-02 4.588344e-06 0.000000e+00 0.000000e+00 + 1.169635e+01 -1.098479e-02 4.604072e-06 0.000000e+00 0.000000e+00 + 1.167439e+01 -1.097557e-02 4.619869e-06 0.000000e+00 0.000000e+00 + 1.165244e+01 -1.096631e-02 4.635736e-06 0.000000e+00 0.000000e+00 + 1.163052e+01 -1.095702e-02 4.651672e-06 0.000000e+00 0.000000e+00 + 1.160862e+01 -1.094770e-02 4.667679e-06 0.000000e+00 0.000000e+00 + 1.158673e+01 -1.093835e-02 4.683757e-06 0.000000e+00 0.000000e+00 + 1.156486e+01 -1.092897e-02 4.699905e-06 0.000000e+00 0.000000e+00 + 1.154301e+01 -1.091955e-02 4.716125e-06 0.000000e+00 0.000000e+00 + 1.152119e+01 -1.091010e-02 4.732416e-06 0.000000e+00 0.000000e+00 + 1.149937e+01 -1.090062e-02 4.748779e-06 0.000000e+00 0.000000e+00 + 1.147758e+01 -1.089111e-02 4.765215e-06 0.000000e+00 0.000000e+00 + 1.145581e+01 -1.088156e-02 4.781723e-06 0.000000e+00 0.000000e+00 + 1.143406e+01 -1.087198e-02 4.798303e-06 0.000000e+00 0.000000e+00 + 1.141232e+01 -1.086237e-02 4.814957e-06 0.000000e+00 0.000000e+00 + 1.139061e+01 -1.085272e-02 4.831685e-06 0.000000e+00 0.000000e+00 + 1.136891e+01 -1.084304e-02 4.848486e-06 0.000000e+00 0.000000e+00 + 1.134723e+01 -1.083333e-02 4.865362e-06 0.000000e+00 0.000000e+00 + 1.132558e+01 -1.082358e-02 4.882312e-06 0.000000e+00 0.000000e+00 + 1.130394e+01 -1.081380e-02 4.899337e-06 0.000000e+00 0.000000e+00 + 1.128232e+01 -1.080398e-02 4.916437e-06 0.000000e+00 0.000000e+00 + 1.126072e+01 -1.079413e-02 4.933612e-06 0.000000e+00 0.000000e+00 + 1.123915e+01 -1.078425e-02 4.950864e-06 0.000000e+00 0.000000e+00 + 1.121759e+01 -1.077433e-02 4.968191e-06 0.000000e+00 0.000000e+00 + 1.119605e+01 -1.076438e-02 4.985595e-06 0.000000e+00 0.000000e+00 + 1.117453e+01 -1.075439e-02 5.003076e-06 0.000000e+00 0.000000e+00 + 1.115303e+01 -1.074436e-02 5.020634e-06 0.000000e+00 0.000000e+00 + 1.113155e+01 -1.073430e-02 5.038270e-06 0.000000e+00 0.000000e+00 + 1.111009e+01 -1.072421e-02 5.055983e-06 0.000000e+00 0.000000e+00 + 1.108866e+01 -1.071408e-02 5.073774e-06 0.000000e+00 0.000000e+00 + 1.106724e+01 -1.070392e-02 5.091644e-06 0.000000e+00 0.000000e+00 + 1.104584e+01 -1.069371e-02 5.109592e-06 0.000000e+00 0.000000e+00 + 1.102446e+01 -1.068348e-02 5.127620e-06 0.000000e+00 0.000000e+00 + 1.100311e+01 -1.067320e-02 5.145727e-06 0.000000e+00 0.000000e+00 + 1.098177e+01 -1.066289e-02 5.163913e-06 0.000000e+00 0.000000e+00 + 1.096045e+01 -1.065255e-02 5.182180e-06 0.000000e+00 0.000000e+00 + 1.093916e+01 -1.064217e-02 5.200527e-06 0.000000e+00 0.000000e+00 + 1.091789e+01 -1.063175e-02 5.218955e-06 0.000000e+00 0.000000e+00 + 1.089663e+01 -1.062129e-02 5.237463e-06 0.000000e+00 0.000000e+00 + 1.087540e+01 -1.061080e-02 5.256053e-06 0.000000e+00 0.000000e+00 + 1.085419e+01 -1.060027e-02 5.274725e-06 0.000000e+00 0.000000e+00 + 1.083300e+01 -1.058970e-02 5.293479e-06 0.000000e+00 0.000000e+00 + 1.081183e+01 -1.057909e-02 5.312315e-06 0.000000e+00 0.000000e+00 + 1.079068e+01 -1.056845e-02 5.331234e-06 0.000000e+00 0.000000e+00 + 1.076956e+01 -1.055777e-02 5.350235e-06 0.000000e+00 0.000000e+00 + 1.074845e+01 -1.054705e-02 5.369320e-06 0.000000e+00 0.000000e+00 + 1.072737e+01 -1.053629e-02 5.388488e-06 0.000000e+00 0.000000e+00 + 1.070631e+01 -1.052549e-02 5.407741e-06 0.000000e+00 0.000000e+00 + 1.068527e+01 -1.051466e-02 5.427077e-06 0.000000e+00 0.000000e+00 + 1.066425e+01 -1.050378e-02 5.446498e-06 0.000000e+00 0.000000e+00 + 1.064325e+01 -1.049287e-02 5.466004e-06 0.000000e+00 0.000000e+00 + 1.062228e+01 -1.048192e-02 5.485595e-06 0.000000e+00 0.000000e+00 + 1.060132e+01 -1.047093e-02 5.505271e-06 0.000000e+00 0.000000e+00 + 1.058039e+01 -1.045990e-02 5.525033e-06 0.000000e+00 0.000000e+00 + 1.055949e+01 -1.044883e-02 5.544881e-06 0.000000e+00 0.000000e+00 + 1.053860e+01 -1.043772e-02 5.564815e-06 0.000000e+00 0.000000e+00 + 1.051773e+01 -1.042657e-02 5.584837e-06 0.000000e+00 0.000000e+00 + 1.049689e+01 -1.041538e-02 5.604945e-06 0.000000e+00 0.000000e+00 + 1.047607e+01 -1.040415e-02 5.625140e-06 0.000000e+00 0.000000e+00 + 1.045528e+01 -1.039288e-02 5.645423e-06 0.000000e+00 0.000000e+00 + 1.043450e+01 -1.038157e-02 5.665794e-06 0.000000e+00 0.000000e+00 + 1.041375e+01 -1.037022e-02 5.686253e-06 0.000000e+00 0.000000e+00 + 1.039302e+01 -1.035882e-02 5.706801e-06 0.000000e+00 0.000000e+00 + 1.037231e+01 -1.034739e-02 5.727437e-06 0.000000e+00 0.000000e+00 + 1.035163e+01 -1.033591e-02 5.748162e-06 0.000000e+00 0.000000e+00 + 1.033097e+01 -1.032440e-02 5.768977e-06 0.000000e+00 0.000000e+00 + 1.031033e+01 -1.031284e-02 5.789881e-06 0.000000e+00 0.000000e+00 + 1.028972e+01 -1.030124e-02 5.810876e-06 0.000000e+00 0.000000e+00 + 1.026913e+01 -1.028959e-02 5.831960e-06 0.000000e+00 0.000000e+00 + 1.024856e+01 -1.027791e-02 5.853135e-06 0.000000e+00 0.000000e+00 + 1.022802e+01 -1.026618e-02 5.874401e-06 0.000000e+00 0.000000e+00 + 1.020750e+01 -1.025441e-02 5.895758e-06 0.000000e+00 0.000000e+00 + 1.018700e+01 -1.024260e-02 5.917206e-06 0.000000e+00 0.000000e+00 + 1.016653e+01 -1.023074e-02 5.938746e-06 0.000000e+00 0.000000e+00 + 1.014608e+01 -1.021884e-02 5.960378e-06 0.000000e+00 0.000000e+00 + 1.012565e+01 -1.020690e-02 5.982102e-06 0.000000e+00 0.000000e+00 + 1.010525e+01 -1.019491e-02 6.003919e-06 0.000000e+00 0.000000e+00 + 1.008487e+01 -1.018288e-02 6.025828e-06 0.000000e+00 0.000000e+00 + 1.006452e+01 -1.017081e-02 6.047830e-06 0.000000e+00 0.000000e+00 + 1.004419e+01 -1.015869e-02 6.069926e-06 0.000000e+00 0.000000e+00 + 1.002388e+01 -1.014653e-02 6.092115e-06 0.000000e+00 0.000000e+00 + 1.000360e+01 -1.013433e-02 6.114398e-06 0.000000e+00 0.000000e+00 + 9.983345e+00 -1.012207e-02 6.136775e-06 0.000000e+00 0.000000e+00 + 9.963113e+00 -1.010978e-02 6.159246e-06 0.000000e+00 0.000000e+00 + 9.942906e+00 -1.009744e-02 6.181812e-06 0.000000e+00 0.000000e+00 + 9.922723e+00 -1.008505e-02 6.204472e-06 0.000000e+00 0.000000e+00 + 9.902566e+00 -1.007262e-02 6.227228e-06 0.000000e+00 0.000000e+00 + 9.882433e+00 -1.006014e-02 6.250079e-06 0.000000e+00 0.000000e+00 + 9.862325e+00 -1.004762e-02 6.273025e-06 0.000000e+00 0.000000e+00 + 9.842243e+00 -1.003505e-02 6.296068e-06 0.000000e+00 0.000000e+00 + 9.822185e+00 -1.002243e-02 6.319206e-06 0.000000e+00 0.000000e+00 + 9.802153e+00 -1.000977e-02 6.342441e-06 0.000000e+00 0.000000e+00 + 9.782146e+00 -9.997064e-03 6.365772e-06 0.000000e+00 0.000000e+00 + 9.762165e+00 -9.984309e-03 6.389199e-06 0.000000e+00 0.000000e+00 + 9.742209e+00 -9.971507e-03 6.412724e-06 0.000000e+00 0.000000e+00 + 9.722279e+00 -9.958658e-03 6.436346e-06 0.000000e+00 0.000000e+00 + 9.702374e+00 -9.945762e-03 6.460065e-06 0.000000e+00 0.000000e+00 + 9.682496e+00 -9.932818e-03 6.483882e-06 0.000000e+00 0.000000e+00 + 9.662643e+00 -9.919826e-03 6.507796e-06 0.000000e+00 0.000000e+00 + 9.642816e+00 -9.906787e-03 6.531809e-06 0.000000e+00 0.000000e+00 + 9.623016e+00 -9.893699e-03 6.555920e-06 0.000000e+00 0.000000e+00 + 9.603242e+00 -9.880563e-03 6.580129e-06 0.000000e+00 0.000000e+00 + 9.583494e+00 -9.867379e-03 6.604437e-06 0.000000e+00 0.000000e+00 + 9.563772e+00 -9.854145e-03 6.628843e-06 0.000000e+00 0.000000e+00 + 9.544077e+00 -9.840863e-03 6.653349e-06 0.000000e+00 0.000000e+00 + 9.524409e+00 -9.827532e-03 6.677953e-06 0.000000e+00 0.000000e+00 + 9.504767e+00 -9.814151e-03 6.702657e-06 0.000000e+00 0.000000e+00 + 9.485152e+00 -9.800721e-03 6.727461e-06 0.000000e+00 0.000000e+00 + 9.465564e+00 -9.787241e-03 6.752364e-06 0.000000e+00 0.000000e+00 + 9.446003e+00 -9.773712e-03 6.777367e-06 0.000000e+00 0.000000e+00 + 9.426469e+00 -9.760132e-03 6.802470e-06 0.000000e+00 0.000000e+00 + 9.406963e+00 -9.746502e-03 6.827673e-06 0.000000e+00 0.000000e+00 + 9.387483e+00 -9.732821e-03 6.852976e-06 0.000000e+00 0.000000e+00 + 9.368031e+00 -9.719090e-03 6.878380e-06 0.000000e+00 0.000000e+00 + 9.348607e+00 -9.705307e-03 6.903884e-06 0.000000e+00 0.000000e+00 + 9.329210e+00 -9.691474e-03 6.929490e-06 0.000000e+00 0.000000e+00 + 9.309841e+00 -9.677589e-03 6.955196e-06 0.000000e+00 0.000000e+00 + 9.290500e+00 -9.663653e-03 6.981003e-06 0.000000e+00 0.000000e+00 + 9.271187e+00 -9.649665e-03 7.006911e-06 0.000000e+00 0.000000e+00 + 9.251901e+00 -9.635626e-03 7.032920e-06 0.000000e+00 0.000000e+00 + 9.232644e+00 -9.621534e-03 7.059031e-06 0.000000e+00 0.000000e+00 + 9.213415e+00 -9.607389e-03 7.085243e-06 0.000000e+00 0.000000e+00 + 9.194215e+00 -9.593193e-03 7.111556e-06 0.000000e+00 0.000000e+00 + 9.175042e+00 -9.578943e-03 7.137972e-06 0.000000e+00 0.000000e+00 + 9.155899e+00 -9.564641e-03 7.164488e-06 0.000000e+00 0.000000e+00 + 9.136784e+00 -9.550285e-03 7.191107e-06 0.000000e+00 0.000000e+00 + 9.117698e+00 -9.535876e-03 7.217828e-06 0.000000e+00 0.000000e+00 + 9.098640e+00 -9.521414e-03 7.244650e-06 0.000000e+00 0.000000e+00 + 9.079612e+00 -9.506897e-03 7.271575e-06 0.000000e+00 0.000000e+00 + 9.060613e+00 -9.492327e-03 7.298601e-06 0.000000e+00 0.000000e+00 + 9.041643e+00 -9.477703e-03 7.325730e-06 0.000000e+00 0.000000e+00 + 9.022702e+00 -9.463024e-03 7.352961e-06 0.000000e+00 0.000000e+00 + 9.003791e+00 -9.448291e-03 7.380294e-06 0.000000e+00 0.000000e+00 + 8.984909e+00 -9.433503e-03 7.407729e-06 0.000000e+00 0.000000e+00 + 8.966057e+00 -9.418660e-03 7.435266e-06 0.000000e+00 0.000000e+00 + 8.947234e+00 -9.403762e-03 7.462906e-06 0.000000e+00 0.000000e+00 + 8.928442e+00 -9.388808e-03 7.490648e-06 0.000000e+00 0.000000e+00 + 8.909679e+00 -9.373799e-03 7.518492e-06 0.000000e+00 0.000000e+00 + 8.890947e+00 -9.358734e-03 7.546439e-06 0.000000e+00 0.000000e+00 + 8.872244e+00 -9.343613e-03 7.574487e-06 0.000000e+00 0.000000e+00 + 8.853572e+00 -9.328436e-03 7.602638e-06 0.000000e+00 0.000000e+00 + 8.834931e+00 -9.313203e-03 7.630891e-06 0.000000e+00 0.000000e+00 + 8.816320e+00 -9.297913e-03 7.659246e-06 0.000000e+00 0.000000e+00 + 8.797739e+00 -9.282566e-03 7.687704e-06 0.000000e+00 0.000000e+00 + 8.779189e+00 -9.267162e-03 7.716263e-06 0.000000e+00 0.000000e+00 + 8.760670e+00 -9.251701e-03 7.744924e-06 0.000000e+00 0.000000e+00 + 8.742183e+00 -9.236182e-03 7.773687e-06 0.000000e+00 0.000000e+00 + 8.723726e+00 -9.220606e-03 7.802552e-06 0.000000e+00 0.000000e+00 + 8.705300e+00 -9.204972e-03 7.831519e-06 0.000000e+00 0.000000e+00 + 8.686906e+00 -9.189280e-03 7.860587e-06 0.000000e+00 0.000000e+00 + 8.668543e+00 -9.173529e-03 7.889757e-06 0.000000e+00 0.000000e+00 + 8.650212e+00 -9.157721e-03 7.919029e-06 0.000000e+00 0.000000e+00 + 8.631912e+00 -9.141853e-03 7.948401e-06 0.000000e+00 0.000000e+00 + 8.613644e+00 -9.125927e-03 7.977875e-06 0.000000e+00 0.000000e+00 + 8.595409e+00 -9.109942e-03 8.007450e-06 0.000000e+00 0.000000e+00 + 8.577205e+00 -9.093897e-03 8.037126e-06 0.000000e+00 0.000000e+00 + 8.559033e+00 -9.077793e-03 8.066902e-06 0.000000e+00 0.000000e+00 + 8.540894e+00 -9.061629e-03 8.096779e-06 0.000000e+00 0.000000e+00 + 8.522787e+00 -9.045406e-03 8.126756e-06 0.000000e+00 0.000000e+00 + 8.504712e+00 -9.029122e-03 8.156833e-06 0.000000e+00 0.000000e+00 + 8.486670e+00 -9.012778e-03 8.187010e-06 0.000000e+00 0.000000e+00 + 8.468661e+00 -8.996374e-03 8.217287e-06 0.000000e+00 0.000000e+00 + 8.450685e+00 -8.979909e-03 8.247664e-06 0.000000e+00 0.000000e+00 + 8.432741e+00 -8.963383e-03 8.278140e-06 0.000000e+00 0.000000e+00 + 8.414831e+00 -8.946797e-03 8.308714e-06 0.000000e+00 0.000000e+00 + 8.396954e+00 -8.930148e-03 8.339388e-06 0.000000e+00 0.000000e+00 + 8.379111e+00 -8.913439e-03 8.370160e-06 0.000000e+00 0.000000e+00 + 8.361300e+00 -8.896668e-03 8.401030e-06 0.000000e+00 0.000000e+00 + 8.343524e+00 -8.879835e-03 8.431998e-06 0.000000e+00 0.000000e+00 + 8.325781e+00 -8.862940e-03 8.463063e-06 0.000000e+00 0.000000e+00 + 8.308072e+00 -8.845982e-03 8.494226e-06 0.000000e+00 0.000000e+00 + 8.290397e+00 -8.828963e-03 8.525486e-06 0.000000e+00 0.000000e+00 + 8.272756e+00 -8.811880e-03 8.556842e-06 0.000000e+00 0.000000e+00 + 8.255150e+00 -8.794735e-03 8.588294e-06 0.000000e+00 0.000000e+00 + 8.237578e+00 -8.777527e-03 8.619843e-06 0.000000e+00 0.000000e+00 + 8.220040e+00 -8.760256e-03 8.651487e-06 0.000000e+00 0.000000e+00 + 8.202537e+00 -8.742921e-03 8.683226e-06 0.000000e+00 0.000000e+00 + 8.185068e+00 -8.725523e-03 8.715059e-06 0.000000e+00 0.000000e+00 + 8.167634e+00 -8.708061e-03 8.746987e-06 0.000000e+00 0.000000e+00 + 8.150236e+00 -8.690535e-03 8.779009e-06 0.000000e+00 0.000000e+00 + 8.132872e+00 -8.672945e-03 8.811123e-06 0.000000e+00 0.000000e+00 + 8.115544e+00 -8.655290e-03 8.843331e-06 0.000000e+00 0.000000e+00 + 8.098251e+00 -8.637571e-03 8.875631e-06 0.000000e+00 0.000000e+00 + 8.080994e+00 -8.619788e-03 8.908023e-06 0.000000e+00 0.000000e+00 + 8.063772e+00 -8.601939e-03 8.940507e-06 0.000000e+00 0.000000e+00 + 8.046586e+00 -8.584026e-03 8.973081e-06 0.000000e+00 0.000000e+00 + 8.029436e+00 -8.566047e-03 9.005746e-06 0.000000e+00 0.000000e+00 + 8.012322e+00 -8.548003e-03 9.038500e-06 0.000000e+00 0.000000e+00 + 7.995244e+00 -8.529893e-03 9.071344e-06 0.000000e+00 0.000000e+00 + 7.978203e+00 -8.511717e-03 9.104276e-06 0.000000e+00 0.000000e+00 + 7.961197e+00 -8.493476e-03 9.137296e-06 0.000000e+00 0.000000e+00 + 7.944229e+00 -8.475168e-03 9.170403e-06 0.000000e+00 0.000000e+00 + 7.927297e+00 -8.456794e-03 9.203598e-06 0.000000e+00 0.000000e+00 + 7.910402e+00 -8.438354e-03 9.236878e-06 0.000000e+00 0.000000e+00 + 7.893543e+00 -8.419846e-03 9.270244e-06 0.000000e+00 0.000000e+00 + 7.876722e+00 -8.401273e-03 9.303694e-06 0.000000e+00 0.000000e+00 + 7.859938e+00 -8.382632e-03 9.337228e-06 0.000000e+00 0.000000e+00 + 7.843192e+00 -8.363924e-03 9.370846e-06 0.000000e+00 0.000000e+00 + 7.826483e+00 -8.345148e-03 9.404546e-06 0.000000e+00 0.000000e+00 + 7.809811e+00 -8.326305e-03 9.438328e-06 0.000000e+00 0.000000e+00 + 7.793177e+00 -8.307395e-03 9.472191e-06 0.000000e+00 0.000000e+00 + 7.776582e+00 -8.288416e-03 9.506134e-06 0.000000e+00 0.000000e+00 + 7.760024e+00 -8.269370e-03 9.540157e-06 0.000000e+00 0.000000e+00 + 7.743504e+00 -8.250256e-03 9.574258e-06 0.000000e+00 0.000000e+00 + 7.727023e+00 -8.231073e-03 9.608437e-06 0.000000e+00 0.000000e+00 + 7.710580e+00 -8.211822e-03 9.642692e-06 0.000000e+00 0.000000e+00 + 7.694176e+00 -8.192502e-03 9.677024e-06 0.000000e+00 0.000000e+00 + 7.677810e+00 -8.173114e-03 9.711430e-06 0.000000e+00 0.000000e+00 + 7.661483e+00 -8.153657e-03 9.745911e-06 0.000000e+00 0.000000e+00 + 7.645195e+00 -8.134130e-03 9.780464e-06 0.000000e+00 0.000000e+00 + 7.628947e+00 -8.114535e-03 9.815090e-06 0.000000e+00 0.000000e+00 + 7.612737e+00 -8.094870e-03 9.849787e-06 0.000000e+00 0.000000e+00 + 7.596567e+00 -8.075135e-03 9.884554e-06 0.000000e+00 0.000000e+00 + 7.580437e+00 -8.055331e-03 9.919390e-06 0.000000e+00 0.000000e+00 + 7.564346e+00 -8.035458e-03 9.954294e-06 0.000000e+00 0.000000e+00 + 7.548295e+00 -8.015514e-03 9.989265e-06 0.000000e+00 0.000000e+00 + 7.532284e+00 -7.995501e-03 1.002430e-05 0.000000e+00 0.000000e+00 + 7.516313e+00 -7.975417e-03 1.005940e-05 0.000000e+00 0.000000e+00 + 7.500382e+00 -7.955263e-03 1.009457e-05 0.000000e+00 0.000000e+00 + 7.484492e+00 -7.935039e-03 1.012980e-05 0.000000e+00 0.000000e+00 + 7.468642e+00 -7.914744e-03 1.016508e-05 0.000000e+00 0.000000e+00 + 7.452833e+00 -7.894378e-03 1.020043e-05 0.000000e+00 0.000000e+00 + 7.437065e+00 -7.873942e-03 1.023584e-05 0.000000e+00 0.000000e+00 + 7.421337e+00 -7.853435e-03 1.027130e-05 0.000000e+00 0.000000e+00 + 7.405651e+00 -7.832857e-03 1.030682e-05 0.000000e+00 0.000000e+00 + 7.390006e+00 -7.812208e-03 1.034240e-05 0.000000e+00 0.000000e+00 + 7.374402e+00 -7.791487e-03 1.037803e-05 0.000000e+00 0.000000e+00 + 7.358840e+00 -7.770695e-03 1.041371e-05 0.000000e+00 0.000000e+00 + 7.343320e+00 -7.749832e-03 1.044944e-05 0.000000e+00 0.000000e+00 + 7.327841e+00 -7.728898e-03 1.048522e-05 0.000000e+00 0.000000e+00 + 7.312404e+00 -7.707891e-03 1.052105e-05 0.000000e+00 0.000000e+00 + 7.297009e+00 -7.686813e-03 1.055692e-05 0.000000e+00 0.000000e+00 + 7.281657e+00 -7.665664e-03 1.059284e-05 0.000000e+00 0.000000e+00 + 7.266347e+00 -7.644442e-03 1.062880e-05 0.000000e+00 0.000000e+00 + 7.251079e+00 -7.623148e-03 1.066481e-05 0.000000e+00 0.000000e+00 + 7.235854e+00 -7.601783e-03 1.070085e-05 0.000000e+00 0.000000e+00 + 7.220672e+00 -7.580345e-03 1.073693e-05 0.000000e+00 0.000000e+00 + 7.205533e+00 -7.558835e-03 1.077305e-05 0.000000e+00 0.000000e+00 + 7.190437e+00 -7.537253e-03 1.080921e-05 0.000000e+00 0.000000e+00 + 7.175384e+00 -7.515598e-03 1.084539e-05 0.000000e+00 0.000000e+00 + 7.160374e+00 -7.493871e-03 1.088161e-05 0.000000e+00 0.000000e+00 + 7.145408e+00 -7.472072e-03 1.091786e-05 0.000000e+00 0.000000e+00 + 7.130486e+00 -7.450200e-03 1.095414e-05 0.000000e+00 0.000000e+00 + 7.115608e+00 -7.428255e-03 1.099044e-05 0.000000e+00 0.000000e+00 + 7.100773e+00 -7.406238e-03 1.102677e-05 0.000000e+00 0.000000e+00 + 7.085983e+00 -7.384148e-03 1.106312e-05 0.000000e+00 0.000000e+00 + 7.071237e+00 -7.361985e-03 1.109949e-05 0.000000e+00 0.000000e+00 + 7.056535e+00 -7.339750e-03 1.113588e-05 0.000000e+00 0.000000e+00 + 7.041878e+00 -7.317442e-03 1.117229e-05 0.000000e+00 0.000000e+00 + 7.027265e+00 -7.295061e-03 1.120871e-05 0.000000e+00 0.000000e+00 + 7.012697e+00 -7.272607e-03 1.124514e-05 0.000000e+00 0.000000e+00 + 6.998175e+00 -7.250080e-03 1.128159e-05 0.000000e+00 0.000000e+00 + 6.983697e+00 -7.227481e-03 1.131804e-05 0.000000e+00 0.000000e+00 + 6.969265e+00 -7.204808e-03 1.135450e-05 0.000000e+00 0.000000e+00 + 6.954878e+00 -7.182063e-03 1.139096e-05 0.000000e+00 0.000000e+00 + 6.940537e+00 -7.159244e-03 1.142742e-05 0.000000e+00 0.000000e+00 + 6.926241e+00 -7.136353e-03 1.146389e-05 0.000000e+00 0.000000e+00 + 6.911991e+00 -7.113389e-03 1.150035e-05 0.000000e+00 0.000000e+00 + 6.897788e+00 -7.090352e-03 1.153680e-05 0.000000e+00 0.000000e+00 + 6.883630e+00 -7.067242e-03 1.157325e-05 0.000000e+00 0.000000e+00 + 6.869519e+00 -7.044059e-03 1.160969e-05 0.000000e+00 0.000000e+00 + 6.855454e+00 -7.020803e-03 1.164611e-05 0.000000e+00 0.000000e+00 + 6.841436e+00 -6.997474e-03 1.168253e-05 0.000000e+00 0.000000e+00 + 6.827464e+00 -6.974073e-03 1.171892e-05 0.000000e+00 0.000000e+00 + 6.813539e+00 -6.950599e-03 1.175529e-05 0.000000e+00 0.000000e+00 + 6.799662e+00 -6.927052e-03 1.179164e-05 0.000000e+00 0.000000e+00 + 6.785831e+00 -6.903432e-03 1.182797e-05 0.000000e+00 0.000000e+00 + 6.772048e+00 -6.879740e-03 1.186427e-05 0.000000e+00 0.000000e+00 + 6.758312e+00 -6.855975e-03 1.190053e-05 0.000000e+00 0.000000e+00 + 6.744624e+00 -6.832138e-03 1.193677e-05 0.000000e+00 0.000000e+00 + 6.730984e+00 -6.808228e-03 1.197297e-05 0.000000e+00 0.000000e+00 + 6.717391e+00 -6.784246e-03 1.200913e-05 0.000000e+00 0.000000e+00 + 6.703847e+00 -6.760191e-03 1.204524e-05 0.000000e+00 0.000000e+00 + 6.690351e+00 -6.736065e-03 1.208132e-05 0.000000e+00 0.000000e+00 + 6.676903e+00 -6.711866e-03 1.211734e-05 0.000000e+00 0.000000e+00 + 6.663503e+00 -6.687595e-03 1.215332e-05 0.000000e+00 0.000000e+00 + 6.650152e+00 -6.663253e-03 1.218924e-05 0.000000e+00 0.000000e+00 + 6.636850e+00 -6.638839e-03 1.222510e-05 0.000000e+00 0.000000e+00 + 6.623597e+00 -6.614353e-03 1.226091e-05 0.000000e+00 0.000000e+00 + 6.610393e+00 -6.589795e-03 1.229665e-05 0.000000e+00 0.000000e+00 + 6.597238e+00 -6.565166e-03 1.233232e-05 0.000000e+00 0.000000e+00 + 6.584132e+00 -6.540466e-03 1.236793e-05 0.000000e+00 0.000000e+00 + 6.571076e+00 -6.515694e-03 1.240346e-05 0.000000e+00 0.000000e+00 + 6.558069e+00 -6.490852e-03 1.243892e-05 0.000000e+00 0.000000e+00 + 6.545113e+00 -6.465939e-03 1.247429e-05 0.000000e+00 0.000000e+00 + 6.532206e+00 -6.440955e-03 1.250959e-05 0.000000e+00 0.000000e+00 + 6.519349e+00 -6.415900e-03 1.254479e-05 0.000000e+00 0.000000e+00 + 6.506542e+00 -6.390776e-03 1.257991e-05 0.000000e+00 0.000000e+00 + 6.493786e+00 -6.365581e-03 1.261493e-05 0.000000e+00 0.000000e+00 + 6.481080e+00 -6.340316e-03 1.264986e-05 0.000000e+00 0.000000e+00 + 6.468425e+00 -6.314981e-03 1.268469e-05 0.000000e+00 0.000000e+00 + 6.455820e+00 -6.289577e-03 1.271941e-05 0.000000e+00 0.000000e+00 + 6.443266e+00 -6.264104e-03 1.275402e-05 0.000000e+00 0.000000e+00 + 6.430764e+00 -6.238561e-03 1.278852e-05 0.000000e+00 0.000000e+00 + 6.418312e+00 -6.212950e-03 1.282290e-05 0.000000e+00 0.000000e+00 + 6.405912e+00 -6.187270e-03 1.285717e-05 0.000000e+00 0.000000e+00 + 6.393563e+00 -6.161521e-03 1.289131e-05 0.000000e+00 0.000000e+00 + 6.381266e+00 -6.135705e-03 1.292532e-05 0.000000e+00 0.000000e+00 + 6.369020e+00 -6.109820e-03 1.295920e-05 0.000000e+00 0.000000e+00 + 6.356827e+00 -6.083868e-03 1.299294e-05 0.000000e+00 0.000000e+00 + 6.344685e+00 -6.057848e-03 1.302655e-05 0.000000e+00 0.000000e+00 + 6.332595e+00 -6.031762e-03 1.306001e-05 0.000000e+00 0.000000e+00 + 6.320558e+00 -6.005609e-03 1.309332e-05 0.000000e+00 0.000000e+00 + 6.308573e+00 -5.979389e-03 1.312647e-05 0.000000e+00 0.000000e+00 + 6.296640e+00 -5.953103e-03 1.315947e-05 0.000000e+00 0.000000e+00 + 6.284760e+00 -5.926751e-03 1.319231e-05 0.000000e+00 0.000000e+00 + 6.272933e+00 -5.900334e-03 1.322498e-05 0.000000e+00 0.000000e+00 + 6.261159e+00 -5.873851e-03 1.325748e-05 0.000000e+00 0.000000e+00 + 6.249438e+00 -5.847304e-03 1.328981e-05 0.000000e+00 0.000000e+00 + 6.237770e+00 -5.820692e-03 1.332195e-05 0.000000e+00 0.000000e+00 + 6.226155e+00 -5.794016e-03 1.335391e-05 0.000000e+00 0.000000e+00 + 6.214594e+00 -5.767277e-03 1.338568e-05 0.000000e+00 0.000000e+00 + 6.203086e+00 -5.740474e-03 1.341726e-05 0.000000e+00 0.000000e+00 + 6.191632e+00 -5.713608e-03 1.344863e-05 0.000000e+00 0.000000e+00 + 6.180232e+00 -5.686679e-03 1.347981e-05 0.000000e+00 0.000000e+00 + 6.168885e+00 -5.659689e-03 1.351077e-05 0.000000e+00 0.000000e+00 + 6.157593e+00 -5.632636e-03 1.354152e-05 0.000000e+00 0.000000e+00 + 6.146355e+00 -5.605523e-03 1.357205e-05 0.000000e+00 0.000000e+00 + 6.135171e+00 -5.578348e-03 1.360236e-05 0.000000e+00 0.000000e+00 + 6.124042e+00 -5.551113e-03 1.363243e-05 0.000000e+00 0.000000e+00 + 6.112967e+00 -5.523819e-03 1.366228e-05 0.000000e+00 0.000000e+00 + 6.101946e+00 -5.496464e-03 1.369188e-05 0.000000e+00 0.000000e+00 + 6.090981e+00 -5.469051e-03 1.372124e-05 0.000000e+00 0.000000e+00 + 6.080070e+00 -5.441580e-03 1.375034e-05 0.000000e+00 0.000000e+00 + 6.069215e+00 -5.414050e-03 1.377919e-05 0.000000e+00 0.000000e+00 + 6.058414e+00 -5.386463e-03 1.380778e-05 0.000000e+00 0.000000e+00 + 6.047669e+00 -5.358819e-03 1.383610e-05 0.000000e+00 0.000000e+00 + 6.036979e+00 -5.331119e-03 1.386415e-05 0.000000e+00 0.000000e+00 + 6.026344e+00 -5.303363e-03 1.389192e-05 0.000000e+00 0.000000e+00 + 6.015765e+00 -5.275551e-03 1.391940e-05 0.000000e+00 0.000000e+00 + 6.005242e+00 -5.247685e-03 1.394660e-05 0.000000e+00 0.000000e+00 + 5.994775e+00 -5.219765e-03 1.397350e-05 0.000000e+00 0.000000e+00 + 5.984363e+00 -5.191791e-03 1.400010e-05 0.000000e+00 0.000000e+00 + 5.974008e+00 -5.163765e-03 1.402638e-05 0.000000e+00 0.000000e+00 + 5.963708e+00 -5.135686e-03 1.405236e-05 0.000000e+00 0.000000e+00 + 5.953465e+00 -5.107556e-03 1.407802e-05 0.000000e+00 0.000000e+00 + 5.943278e+00 -5.079374e-03 1.410334e-05 0.000000e+00 0.000000e+00 + 5.933147e+00 -5.051143e-03 1.412834e-05 0.000000e+00 0.000000e+00 + 5.923073e+00 -5.022861e-03 1.415300e-05 0.000000e+00 0.000000e+00 + 5.913056e+00 -4.994531e-03 1.417731e-05 0.000000e+00 0.000000e+00 + 5.903095e+00 -4.966152e-03 1.420128e-05 0.000000e+00 0.000000e+00 + 5.893191e+00 -4.937726e-03 1.422488e-05 0.000000e+00 0.000000e+00 + 5.883344e+00 -4.909253e-03 1.424812e-05 0.000000e+00 0.000000e+00 + 5.873554e+00 -4.880734e-03 1.427099e-05 0.000000e+00 0.000000e+00 + 5.863822e+00 -4.852169e-03 1.429349e-05 0.000000e+00 0.000000e+00 + 5.854146e+00 -4.823560e-03 1.431559e-05 0.000000e+00 0.000000e+00 + 5.844527e+00 -4.794907e-03 1.433731e-05 0.000000e+00 0.000000e+00 + 5.834966e+00 -4.766211e-03 1.435863e-05 0.000000e+00 0.000000e+00 + 5.825462e+00 -4.737473e-03 1.437955e-05 0.000000e+00 0.000000e+00 + 5.816016e+00 -4.708693e-03 1.440006e-05 0.000000e+00 0.000000e+00 + 5.806628e+00 -4.679873e-03 1.442014e-05 0.000000e+00 0.000000e+00 + 5.797297e+00 -4.651013e-03 1.443981e-05 0.000000e+00 0.000000e+00 + 5.788024e+00 -4.622114e-03 1.445904e-05 0.000000e+00 0.000000e+00 + 5.778808e+00 -4.593177e-03 1.447783e-05 0.000000e+00 0.000000e+00 + 5.769651e+00 -4.564203e-03 1.449618e-05 0.000000e+00 0.000000e+00 + 5.760552e+00 -4.535192e-03 1.451407e-05 0.000000e+00 0.000000e+00 + 5.751510e+00 -4.506147e-03 1.453150e-05 0.000000e+00 0.000000e+00 + 5.742527e+00 -4.477067e-03 1.454846e-05 0.000000e+00 0.000000e+00 + 5.733602e+00 -4.447953e-03 1.456495e-05 0.000000e+00 0.000000e+00 + 5.724735e+00 -4.418807e-03 1.458096e-05 0.000000e+00 0.000000e+00 + 5.715927e+00 -4.389630e-03 1.459648e-05 0.000000e+00 0.000000e+00 + 5.707177e+00 -4.360422e-03 1.461149e-05 0.000000e+00 0.000000e+00 + 5.698485e+00 -4.331184e-03 1.462601e-05 0.000000e+00 0.000000e+00 + 5.689852e+00 -4.301918e-03 1.464001e-05 0.000000e+00 0.000000e+00 + 5.681278e+00 -4.272624e-03 1.465349e-05 0.000000e+00 0.000000e+00 + 5.672762e+00 -4.243304e-03 1.466644e-05 0.000000e+00 0.000000e+00 + 5.664304e+00 -4.213959e-03 1.467886e-05 0.000000e+00 0.000000e+00 + 5.655906e+00 -4.184589e-03 1.469073e-05 0.000000e+00 0.000000e+00 + 5.647566e+00 -4.155196e-03 1.470205e-05 0.000000e+00 0.000000e+00 + 5.639285e+00 -4.125782e-03 1.471282e-05 0.000000e+00 0.000000e+00 + 5.631063e+00 -4.096346e-03 1.472301e-05 0.000000e+00 0.000000e+00 + 5.622900e+00 -4.066890e-03 1.473264e-05 0.000000e+00 0.000000e+00 + 5.614795e+00 -4.037415e-03 1.474167e-05 0.000000e+00 0.000000e+00 + 5.606750e+00 -4.007924e-03 1.475012e-05 0.000000e+00 0.000000e+00 + 5.598764e+00 -3.978415e-03 1.475797e-05 0.000000e+00 0.000000e+00 + 5.590836e+00 -3.948892e-03 1.476521e-05 0.000000e+00 0.000000e+00 + 5.582968e+00 -3.919355e-03 1.477184e-05 0.000000e+00 0.000000e+00 + 5.575159e+00 -3.889805e-03 1.477784e-05 0.000000e+00 0.000000e+00 + 5.567409e+00 -3.860244e-03 1.478322e-05 0.000000e+00 0.000000e+00 + 5.559718e+00 -3.830673e-03 1.478795e-05 0.000000e+00 0.000000e+00 + 5.552086e+00 -3.801093e-03 1.479203e-05 0.000000e+00 0.000000e+00 + 5.544514e+00 -3.771505e-03 1.479546e-05 0.000000e+00 0.000000e+00 + 5.537000e+00 -3.741911e-03 1.479823e-05 0.000000e+00 0.000000e+00 + 5.529546e+00 -3.712312e-03 1.480032e-05 0.000000e+00 0.000000e+00 + 5.522151e+00 -3.682710e-03 1.480173e-05 0.000000e+00 0.000000e+00 + 5.514815e+00 -3.653106e-03 1.480245e-05 0.000000e+00 0.000000e+00 + 5.507538e+00 -3.623501e-03 1.480248e-05 0.000000e+00 0.000000e+00 + 5.500321e+00 -3.593897e-03 1.480180e-05 0.000000e+00 0.000000e+00 + 5.493163e+00 -3.564294e-03 1.480040e-05 0.000000e+00 0.000000e+00 + 5.486064e+00 -3.534695e-03 1.479828e-05 0.000000e+00 0.000000e+00 + 5.479024e+00 -3.505102e-03 1.479543e-05 0.000000e+00 0.000000e+00 + 5.472044e+00 -3.475514e-03 1.479184e-05 0.000000e+00 0.000000e+00 + 5.465122e+00 -3.445935e-03 1.478750e-05 0.000000e+00 0.000000e+00 + 5.458260e+00 -3.416365e-03 1.478241e-05 0.000000e+00 0.000000e+00 + 5.451457e+00 -3.386806e-03 1.477655e-05 0.000000e+00 0.000000e+00 + 5.444713e+00 -3.357259e-03 1.476992e-05 0.000000e+00 0.000000e+00 + 5.438028e+00 -3.327727e-03 1.476250e-05 0.000000e+00 0.000000e+00 + 5.431402e+00 -3.298210e-03 1.475430e-05 0.000000e+00 0.000000e+00 + 5.424835e+00 -3.268710e-03 1.474529e-05 0.000000e+00 0.000000e+00 + 5.418327e+00 -3.239229e-03 1.473548e-05 0.000000e+00 0.000000e+00 + 5.411878e+00 -3.209768e-03 1.472486e-05 0.000000e+00 0.000000e+00 + 5.405488e+00 -3.180330e-03 1.471341e-05 0.000000e+00 0.000000e+00 + 5.399156e+00 -3.150915e-03 1.470113e-05 0.000000e+00 0.000000e+00 + 5.392884e+00 -3.121526e-03 1.468801e-05 0.000000e+00 0.000000e+00 + 5.386670e+00 -3.092164e-03 1.467404e-05 0.000000e+00 0.000000e+00 + 5.380515e+00 -3.062831e-03 1.465921e-05 0.000000e+00 0.000000e+00 + 5.374419e+00 -3.033528e-03 1.464352e-05 0.000000e+00 0.000000e+00 + 5.368381e+00 -3.004257e-03 1.462695e-05 0.000000e+00 0.000000e+00 + 5.362402e+00 -2.975020e-03 1.460950e-05 0.000000e+00 0.000000e+00 + 5.356481e+00 -2.945820e-03 1.459117e-05 0.000000e+00 0.000000e+00 + 5.350619e+00 -2.916656e-03 1.457193e-05 0.000000e+00 0.000000e+00 + 5.344814e+00 -2.887533e-03 1.455179e-05 0.000000e+00 0.000000e+00 + 5.339068e+00 -2.858450e-03 1.453074e-05 0.000000e+00 0.000000e+00 + 5.333381e+00 -2.829410e-03 1.450877e-05 0.000000e+00 0.000000e+00 + 5.327751e+00 -2.800415e-03 1.448586e-05 0.000000e+00 0.000000e+00 + 5.322179e+00 -2.771467e-03 1.446203e-05 0.000000e+00 0.000000e+00 + 5.316665e+00 -2.742568e-03 1.443724e-05 0.000000e+00 0.000000e+00 + 5.311209e+00 -2.713719e-03 1.441150e-05 0.000000e+00 0.000000e+00 + 5.305810e+00 -2.684923e-03 1.438481e-05 0.000000e+00 0.000000e+00 + 5.300469e+00 -2.656180e-03 1.435715e-05 0.000000e+00 0.000000e+00 + 5.295185e+00 -2.627495e-03 1.432851e-05 0.000000e+00 0.000000e+00 + 5.289959e+00 -2.598867e-03 1.429889e-05 0.000000e+00 0.000000e+00 + 5.284790e+00 -2.570300e-03 1.426828e-05 0.000000e+00 0.000000e+00 + 5.279678e+00 -2.541795e-03 1.423668e-05 0.000000e+00 0.000000e+00 + 5.274622e+00 -2.513354e-03 1.420407e-05 0.000000e+00 0.000000e+00 + 5.269624e+00 -2.484979e-03 1.417046e-05 0.000000e+00 0.000000e+00 + 5.264683e+00 -2.456672e-03 1.413583e-05 0.000000e+00 0.000000e+00 + 5.259797e+00 -2.428436e-03 1.410018e-05 0.000000e+00 0.000000e+00 + 5.254969e+00 -2.400272e-03 1.406349e-05 0.000000e+00 0.000000e+00 + 5.250196e+00 -2.372183e-03 1.402578e-05 0.000000e+00 0.000000e+00 + 5.245480e+00 -2.344170e-03 1.398702e-05 0.000000e+00 0.000000e+00 + 5.240820e+00 -2.316236e-03 1.394721e-05 0.000000e+00 0.000000e+00 + 5.236215e+00 -2.288382e-03 1.390635e-05 0.000000e+00 0.000000e+00 + 5.231666e+00 -2.260611e-03 1.386444e-05 0.000000e+00 0.000000e+00 + 5.227172e+00 -2.232925e-03 1.382146e-05 0.000000e+00 0.000000e+00 + 5.222734e+00 -2.205326e-03 1.377740e-05 0.000000e+00 0.000000e+00 + 5.218351e+00 -2.177816e-03 1.373228e-05 0.000000e+00 0.000000e+00 + 5.214023e+00 -2.150397e-03 1.368608e-05 0.000000e+00 0.000000e+00 + 5.209749e+00 -2.123072e-03 1.363879e-05 0.000000e+00 0.000000e+00 + 5.205531e+00 -2.095843e-03 1.359041e-05 0.000000e+00 0.000000e+00 + 5.201366e+00 -2.068711e-03 1.354094e-05 0.000000e+00 0.000000e+00 + 5.197256e+00 -2.041680e-03 1.349037e-05 0.000000e+00 0.000000e+00 + 5.193199e+00 -2.014751e-03 1.343871e-05 0.000000e+00 0.000000e+00 + 5.189197e+00 -1.987926e-03 1.338594e-05 0.000000e+00 0.000000e+00 + 5.185247e+00 -1.961208e-03 1.333206e-05 0.000000e+00 0.000000e+00 + 5.181352e+00 -1.934598e-03 1.327707e-05 0.000000e+00 0.000000e+00 + 5.177509e+00 -1.908100e-03 1.322096e-05 0.000000e+00 0.000000e+00 + 5.173719e+00 -1.881715e-03 1.316374e-05 0.000000e+00 0.000000e+00 + 5.169982e+00 -1.855446e-03 1.310541e-05 0.000000e+00 0.000000e+00 + 5.166297e+00 -1.829294e-03 1.304595e-05 0.000000e+00 0.000000e+00 + 5.162665e+00 -1.803263e-03 1.298537e-05 0.000000e+00 0.000000e+00 + 5.159084e+00 -1.777354e-03 1.292366e-05 0.000000e+00 0.000000e+00 + 5.155555e+00 -1.751569e-03 1.286083e-05 0.000000e+00 0.000000e+00 + 5.152078e+00 -1.725911e-03 1.279688e-05 0.000000e+00 0.000000e+00 + 5.148652e+00 -1.700382e-03 1.273180e-05 0.000000e+00 0.000000e+00 + 5.145276e+00 -1.674985e-03 1.266559e-05 0.000000e+00 0.000000e+00 + 5.141952e+00 -1.649721e-03 1.259826e-05 0.000000e+00 0.000000e+00 + 5.138677e+00 -1.624592e-03 1.252980e-05 0.000000e+00 0.000000e+00 + 5.135453e+00 -1.599602e-03 1.246021e-05 0.000000e+00 0.000000e+00 + 5.132279e+00 -1.574752e-03 1.238951e-05 0.000000e+00 0.000000e+00 + 5.129154e+00 -1.550045e-03 1.231768e-05 0.000000e+00 0.000000e+00 + 5.126078e+00 -1.525482e-03 1.224473e-05 0.000000e+00 0.000000e+00 + 5.123052e+00 -1.501067e-03 1.217066e-05 0.000000e+00 0.000000e+00 + 5.120074e+00 -1.476800e-03 1.209548e-05 0.000000e+00 0.000000e+00 + 5.117145e+00 -1.452686e-03 1.201919e-05 0.000000e+00 0.000000e+00 + 5.114263e+00 -1.428724e-03 1.194179e-05 0.000000e+00 0.000000e+00 + 5.111430e+00 -1.404919e-03 1.186329e-05 0.000000e+00 0.000000e+00 + 5.108643e+00 -1.381272e-03 1.178369e-05 0.000000e+00 0.000000e+00 + 5.105904e+00 -1.357785e-03 1.170300e-05 0.000000e+00 0.000000e+00 + 5.103212e+00 -1.334461e-03 1.162121e-05 0.000000e+00 0.000000e+00 + 5.100566e+00 -1.311301e-03 1.153835e-05 0.000000e+00 0.000000e+00 + 5.097967e+00 -1.288308e-03 1.145441e-05 0.000000e+00 0.000000e+00 + 5.095413e+00 -1.265484e-03 1.136940e-05 0.000000e+00 0.000000e+00 + 5.092905e+00 -1.242831e-03 1.128333e-05 0.000000e+00 0.000000e+00 + 5.090442e+00 -1.220351e-03 1.119620e-05 0.000000e+00 0.000000e+00 + 5.088023e+00 -1.198047e-03 1.110803e-05 0.000000e+00 0.000000e+00 + 5.085649e+00 -1.175920e-03 1.101882e-05 0.000000e+00 0.000000e+00 + 5.083320e+00 -1.153972e-03 1.092859e-05 0.000000e+00 0.000000e+00 + 5.081033e+00 -1.132206e-03 1.083734e-05 0.000000e+00 0.000000e+00 + 5.078791e+00 -1.110624e-03 1.074509e-05 0.000000e+00 0.000000e+00 + 5.076591e+00 -1.089227e-03 1.065184e-05 0.000000e+00 0.000000e+00 + 5.074434e+00 -1.068017e-03 1.055761e-05 0.000000e+00 0.000000e+00 + 5.072319e+00 -1.046997e-03 1.046240e-05 0.000000e+00 0.000000e+00 + 5.070245e+00 -1.026168e-03 1.036624e-05 0.000000e+00 0.000000e+00 + 5.068214e+00 -1.005532e-03 1.026914e-05 0.000000e+00 0.000000e+00 + 5.066223e+00 -9.850921e-04 1.017111e-05 0.000000e+00 0.000000e+00 + 5.064273e+00 -9.648486e-04 1.007216e-05 0.000000e+00 0.000000e+00 + 5.062364e+00 -9.448040e-04 9.972309e-06 0.000000e+00 0.000000e+00 + 5.060494e+00 -9.249600e-04 9.871578e-06 0.000000e+00 0.000000e+00 + 5.058664e+00 -9.053183e-04 9.769980e-06 0.000000e+00 0.000000e+00 + 5.056872e+00 -8.858806e-04 9.667532e-06 0.000000e+00 0.000000e+00 + 5.055120e+00 -8.666487e-04 9.564254e-06 0.000000e+00 0.000000e+00 + 5.053406e+00 -8.476242e-04 9.460162e-06 0.000000e+00 0.000000e+00 + 5.051729e+00 -8.288086e-04 9.355277e-06 0.000000e+00 0.000000e+00 + 5.050090e+00 -8.102036e-04 9.249619e-06 0.000000e+00 0.000000e+00 + 5.048488e+00 -7.918106e-04 9.143209e-06 0.000000e+00 0.000000e+00 + 5.046923e+00 -7.736312e-04 9.036067e-06 0.000000e+00 0.000000e+00 + 5.045394e+00 -7.556668e-04 8.928215e-06 0.000000e+00 0.000000e+00 + 5.043900e+00 -7.379188e-04 8.819678e-06 0.000000e+00 0.000000e+00 + 5.042442e+00 -7.203886e-04 8.710477e-06 0.000000e+00 0.000000e+00 + 5.041018e+00 -7.030773e-04 8.600637e-06 0.000000e+00 0.000000e+00 + 5.039629e+00 -6.859864e-04 8.490183e-06 0.000000e+00 0.000000e+00 + 5.038274e+00 -6.691170e-04 8.379140e-06 0.000000e+00 0.000000e+00 + 5.036953e+00 -6.524702e-04 8.267535e-06 0.000000e+00 0.000000e+00 + 5.035664e+00 -6.360472e-04 8.155394e-06 0.000000e+00 0.000000e+00 + 5.034409e+00 -6.198490e-04 8.042745e-06 0.000000e+00 0.000000e+00 + 5.033185e+00 -6.038766e-04 7.929616e-06 0.000000e+00 0.000000e+00 + 5.031993e+00 -5.881308e-04 7.816037e-06 0.000000e+00 0.000000e+00 + 5.030832e+00 -5.726127e-04 7.702036e-06 0.000000e+00 0.000000e+00 + 5.029702e+00 -5.573230e-04 7.587645e-06 0.000000e+00 0.000000e+00 + 5.028603e+00 -5.422624e-04 7.472894e-06 0.000000e+00 0.000000e+00 + 5.027533e+00 -5.274316e-04 7.357816e-06 0.000000e+00 0.000000e+00 + 5.026493e+00 -5.128313e-04 7.242441e-06 0.000000e+00 0.000000e+00 + 5.025482e+00 -4.984620e-04 7.126804e-06 0.000000e+00 0.000000e+00 + 5.024499e+00 -4.843242e-04 7.010938e-06 0.000000e+00 0.000000e+00 + 5.023544e+00 -4.704184e-04 6.894878e-06 0.000000e+00 0.000000e+00 + 5.022617e+00 -4.567448e-04 6.778658e-06 0.000000e+00 0.000000e+00 + 5.021717e+00 -4.433038e-04 6.662314e-06 0.000000e+00 0.000000e+00 + 5.020844e+00 -4.300956e-04 6.545881e-06 0.000000e+00 0.000000e+00 + 5.019996e+00 -4.171203e-04 6.429398e-06 0.000000e+00 0.000000e+00 + 5.019175e+00 -4.043780e-04 6.312901e-06 0.000000e+00 0.000000e+00 + 5.018379e+00 -3.918687e-04 6.196428e-06 0.000000e+00 0.000000e+00 + 5.017607e+00 -3.795923e-04 6.080017e-06 0.000000e+00 0.000000e+00 + 5.016860e+00 -3.675486e-04 5.963707e-06 0.000000e+00 0.000000e+00 + 5.016137e+00 -3.557374e-04 5.847538e-06 0.000000e+00 0.000000e+00 + 5.015437e+00 -3.441583e-04 5.731550e-06 0.000000e+00 0.000000e+00 + 5.014760e+00 -3.328110e-04 5.615783e-06 0.000000e+00 0.000000e+00 + 5.014106e+00 -3.216950e-04 5.500277e-06 0.000000e+00 0.000000e+00 + 5.013473e+00 -3.108097e-04 5.385074e-06 0.000000e+00 0.000000e+00 + 5.012862e+00 -3.001545e-04 5.270215e-06 0.000000e+00 0.000000e+00 + 5.012273e+00 -2.897286e-04 5.155742e-06 0.000000e+00 0.000000e+00 + 5.011703e+00 -2.795312e-04 5.041698e-06 0.000000e+00 0.000000e+00 + 5.011154e+00 -2.695615e-04 4.928124e-06 0.000000e+00 0.000000e+00 + 5.010625e+00 -2.598184e-04 4.815063e-06 0.000000e+00 0.000000e+00 + 5.010115e+00 -2.503009e-04 4.702557e-06 0.000000e+00 0.000000e+00 + 5.009624e+00 -2.410078e-04 4.590651e-06 0.000000e+00 0.000000e+00 + 5.009151e+00 -2.319378e-04 4.479387e-06 0.000000e+00 0.000000e+00 + 5.008696e+00 -2.230898e-04 4.368807e-06 0.000000e+00 0.000000e+00 + 5.008258e+00 -2.144621e-04 4.258956e-06 0.000000e+00 0.000000e+00 + 5.007838e+00 -2.060534e-04 4.149875e-06 0.000000e+00 0.000000e+00 + 5.007434e+00 -1.978621e-04 4.041609e-06 0.000000e+00 0.000000e+00 + 5.007046e+00 -1.898864e-04 3.934200e-06 0.000000e+00 0.000000e+00 + 5.006674e+00 -1.821247e-04 3.827691e-06 0.000000e+00 0.000000e+00 + 5.006317e+00 -1.745750e-04 3.722125e-06 0.000000e+00 0.000000e+00 + 5.005976e+00 -1.672355e-04 3.617543e-06 0.000000e+00 0.000000e+00 + 5.005648e+00 -1.601042e-04 3.513987e-06 0.000000e+00 0.000000e+00 + 5.005335e+00 -1.531789e-04 3.411500e-06 0.000000e+00 0.000000e+00 + 5.005035e+00 -1.464574e-04 3.310122e-06 0.000000e+00 0.000000e+00 + 5.004749e+00 -1.399376e-04 3.209893e-06 0.000000e+00 0.000000e+00 + 5.004476e+00 -1.336171e-04 3.110854e-06 0.000000e+00 0.000000e+00 + 5.004215e+00 -1.274934e-04 3.013044e-06 0.000000e+00 0.000000e+00 + 5.003965e+00 -1.215640e-04 2.916502e-06 0.000000e+00 0.000000e+00 + 5.003728e+00 -1.158265e-04 2.821265e-06 0.000000e+00 0.000000e+00 + 5.003502e+00 -1.102781e-04 2.727371e-06 0.000000e+00 0.000000e+00 + 5.003287e+00 -1.049161e-04 2.634856e-06 0.000000e+00 0.000000e+00 + 5.003082e+00 -9.973772e-05 2.543754e-06 0.000000e+00 0.000000e+00 + 5.002888e+00 -9.474011e-05 2.454101e-06 0.000000e+00 0.000000e+00 + 5.002703e+00 -8.992033e-05 2.365929e-06 0.000000e+00 0.000000e+00 + 5.002528e+00 -8.527539e-05 2.279270e-06 0.000000e+00 0.000000e+00 + 5.002362e+00 -8.080222e-05 2.194156e-06 0.000000e+00 0.000000e+00 + 5.002205e+00 -7.649771e-05 2.110614e-06 0.000000e+00 0.000000e+00 + 5.002056e+00 -7.235869e-05 2.028675e-06 0.000000e+00 0.000000e+00 + 5.001915e+00 -6.838193e-05 1.948363e-06 0.000000e+00 0.000000e+00 + 5.001782e+00 -6.456414e-05 1.869704e-06 0.000000e+00 0.000000e+00 + 5.001657e+00 -6.090200e-05 1.792722e-06 0.000000e+00 0.000000e+00 + 5.001539e+00 -5.739212e-05 1.717439e-06 0.000000e+00 0.000000e+00 + 5.001427e+00 -5.403109e-05 1.643875e-06 0.000000e+00 0.000000e+00 + 5.001322e+00 -5.081546e-05 1.572049e-06 0.000000e+00 0.000000e+00 + 5.001224e+00 -4.774173e-05 1.501977e-06 0.000000e+00 0.000000e+00 + 5.001131e+00 -4.480637e-05 1.433674e-06 0.000000e+00 0.000000e+00 + 5.001044e+00 -4.200584e-05 1.367153e-06 0.000000e+00 0.000000e+00 + 5.000963e+00 -3.933657e-05 1.302425e-06 0.000000e+00 0.000000e+00 + 5.000887e+00 -3.679494e-05 1.239500e-06 0.000000e+00 0.000000e+00 + 5.000816e+00 -3.437736e-05 1.178384e-06 0.000000e+00 0.000000e+00 + 5.000749e+00 -3.208020e-05 1.119082e-06 0.000000e+00 0.000000e+00 + 5.000687e+00 -2.989982e-05 1.061597e-06 0.000000e+00 0.000000e+00 + 5.000630e+00 -2.783260e-05 1.005929e-06 0.000000e+00 0.000000e+00 + 5.000576e+00 -2.587490e-05 9.520769e-07 0.000000e+00 0.000000e+00 + 5.000526e+00 -2.402308e-05 9.000372e-07 0.000000e+00 0.000000e+00 + 5.000480e+00 -2.227354e-05 8.498036e-07 0.000000e+00 0.000000e+00 + 5.000437e+00 -2.062267e-05 8.013681e-07 0.000000e+00 0.000000e+00 + 5.000397e+00 -1.906688e-05 7.547201e-07 0.000000e+00 0.000000e+00 + 5.000361e+00 -1.760261e-05 7.098471e-07 0.000000e+00 0.000000e+00 + 5.000327e+00 -1.622632e-05 6.667341e-07 0.000000e+00 0.000000e+00 + 5.000296e+00 -1.493451e-05 6.253643e-07 0.000000e+00 0.000000e+00 + 5.000267e+00 -1.372371e-05 5.857183e-07 0.000000e+00 0.000000e+00 + 5.000241e+00 -1.259050e-05 5.477748e-07 0.000000e+00 0.000000e+00 + 5.000217e+00 -1.153149e-05 5.115103e-07 0.000000e+00 0.000000e+00 + 5.000195e+00 -1.054336e-05 4.768994e-07 0.000000e+00 0.000000e+00 + 5.000174e+00 -9.622810e-06 4.439144e-07 0.000000e+00 0.000000e+00 + 5.000156e+00 -8.766633e-06 4.125260e-07 0.000000e+00 0.000000e+00 + 5.000139e+00 -7.971662e-06 3.827028e-07 0.000000e+00 0.000000e+00 + 5.000124e+00 -7.234801e-06 3.544116e-07 0.000000e+00 0.000000e+00 + 5.000110e+00 -6.553018e-06 3.276175e-07 0.000000e+00 0.000000e+00 + 5.000098e+00 -5.923357e-06 3.022841e-07 0.000000e+00 0.000000e+00 + 5.000087e+00 -5.342933e-06 2.783733e-07 0.000000e+00 0.000000e+00 + 5.000077e+00 -4.808941e-06 2.558455e-07 0.000000e+00 0.000000e+00 + 5.000067e+00 -4.318656e-06 2.346602e-07 0.000000e+00 0.000000e+00 + 5.000059e+00 -3.869434e-06 2.147751e-07 0.000000e+00 0.000000e+00 + 5.000052e+00 -3.458717e-06 1.961473e-07 0.000000e+00 0.000000e+00 + 5.000045e+00 -3.084036e-06 1.787328e-07 0.000000e+00 0.000000e+00 + 5.000040e+00 -2.743007e-06 1.624867e-07 0.000000e+00 0.000000e+00 + 5.000034e+00 -2.433340e-06 1.473636e-07 0.000000e+00 0.000000e+00 + 5.000030e+00 -2.152835e-06 1.333174e-07 0.000000e+00 0.000000e+00 + 5.000026e+00 -1.899384e-06 1.203016e-07 0.000000e+00 0.000000e+00 + 5.000022e+00 -1.670972e-06 1.082697e-07 0.000000e+00 0.000000e+00 + 5.000019e+00 -1.465680e-06 9.717487e-08 0.000000e+00 0.000000e+00 + 5.000016e+00 -1.281679e-06 8.697041e-08 0.000000e+00 0.000000e+00 + 5.000014e+00 -1.117236e-06 7.760986e-08 0.000000e+00 0.000000e+00 + 5.000012e+00 -9.707079e-07 6.904707e-08 0.000000e+00 0.000000e+00 + 5.000010e+00 -8.405460e-07 6.123643e-08 0.000000e+00 0.000000e+00 + 5.000008e+00 -7.252907e-07 5.413296e-08 0.000000e+00 0.000000e+00 + 5.000007e+00 -6.235722e-07 4.769244e-08 0.000000e+00 0.000000e+00 + 5.000006e+00 -5.341079e-07 4.187161e-08 0.000000e+00 0.000000e+00 + 5.000005e+00 -4.557008e-07 3.662820e-08 0.000000e+00 0.000000e+00 + 5.000004e+00 -3.872375e-07 3.192114e-08 0.000000e+00 0.000000e+00 + 5.000003e+00 -3.276853e-07 2.771060e-08 0.000000e+00 0.000000e+00 + 5.000003e+00 -2.760898e-07 2.395815e-08 0.000000e+00 0.000000e+00 + 5.000002e+00 -2.315720e-07 2.062681e-08 0.000000e+00 0.000000e+00 + 5.000002e+00 -1.933254e-07 1.768114e-08 0.000000e+00 0.000000e+00 + 5.000002e+00 -1.606129e-07 1.508733e-08 0.000000e+00 0.000000e+00 + 5.000001e+00 -1.327630e-07 1.281323e-08 0.000000e+00 0.000000e+00 + 5.000001e+00 -1.091671e-07 1.082844e-08 0.000000e+00 0.000000e+00 + 5.000001e+00 -8.927557e-08 9.104269e-09 0.000000e+00 0.000000e+00 + 5.000001e+00 -7.259427e-08 7.613837e-09 0.000000e+00 0.000000e+00 + 5.000000e+00 -5.868117e-08 6.332030e-09 0.000000e+00 0.000000e+00 + 5.000000e+00 -4.714266e-08 5.235517e-09 0.000000e+00 0.000000e+00 + 5.000000e+00 -3.762999e-08 4.302727e-09 0.000000e+00 0.000000e+00 + 5.000000e+00 -2.983586e-08 3.513822e-09 0.000000e+00 0.000000e+00 + 5.000000e+00 -2.349092e-08 2.850655e-09 0.000000e+00 0.000000e+00 + 5.000000e+00 -1.836046e-08 2.296723e-09 0.000000e+00 0.000000e+00 + 5.000000e+00 -1.424118e-08 1.837105e-09 0.000000e+00 0.000000e+00 + 5.000000e+00 -1.095813e-08 1.458394e-09 0.000000e+00 0.000000e+00 + 5.000000e+00 -8.361681e-09 1.148618e-09 0.000000e+00 0.000000e+00 + 5.000000e+00 -6.324803e-09 8.971640e-10 0.000000e+00 0.000000e+00 + 5.000000e+00 -4.740401e-09 6.946852e-10 0.000000e+00 0.000000e+00 + 5.000000e+00 -3.518882e-09 5.330128e-10 0.000000e+00 0.000000e+00 + 5.000000e+00 -2.585891e-09 4.050621e-10 0.000000e+00 0.000000e+00 + 5.000000e+00 -1.880236e-09 3.047389e-10 0.000000e+00 0.000000e+00 + 5.000000e+00 -1.352000e-09 2.268453e-10 0.000000e+00 0.000000e+00 + 5.000000e+00 -9.608462e-10 1.669880e-10 0.000000e+00 0.000000e+00 + 5.000000e+00 -6.744907e-10 1.214884e-10 0.000000e+00 0.000000e+00 + 5.000000e+00 -4.673656e-10 8.729741e-11 0.000000e+00 0.000000e+00 + 5.000000e+00 -3.194400e-10 6.191367e-11 0.000000e+00 0.000000e+00 + 5.000000e+00 -2.152009e-10 4.330827e-11 0.000000e+00 0.000000e+00 + 5.000000e+00 -1.427800e-10 2.985453e-11 0.000000e+00 0.000000e+00 + 5.000000e+00 -9.321329e-11 2.026444e-11 0.000000e+00 0.000000e+00 + 5.000000e+00 -5.982259e-11 1.353146e-11 0.000000e+00 0.000000e+00 + 5.000000e+00 -3.770393e-11 8.879938e-12 0.000000e+00 0.000000e+00 + 5.000000e+00 -2.331114e-11 5.720898e-12 0.000000e+00 0.000000e+00 + 5.000000e+00 -1.412141e-11 3.614126e-12 0.000000e+00 0.000000e+00 + 5.000000e+00 -8.370832e-12 2.236042e-12 0.000000e+00 0.000000e+00 + 5.000000e+00 -4.848709e-12 1.353008e-12 0.000000e+00 0.000000e+00 + 5.000000e+00 -2.740234e-12 7.994981e-13 0.000000e+00 0.000000e+00 + 5.000000e+00 -1.508450e-12 4.606031e-13 0.000000e+00 0.000000e+00 + 5.000000e+00 -8.073621e-13 2.582610e-13 0.000000e+00 0.000000e+00 + 5.000000e+00 -4.193125e-13 1.406602e-13 0.000000e+00 0.000000e+00 + 5.000000e+00 -2.108603e-13 7.425760e-14 0.000000e+00 0.000000e+00 + 5.000000e+00 -1.024241e-13 3.790995e-14 0.000000e+00 0.000000e+00 + 5.000000e+00 -4.793128e-14 1.866771e-14 0.000000e+00 0.000000e+00 + 5.000000e+00 -2.154695e-14 8.841416e-15 0.000000e+00 0.000000e+00 + 5.000000e+00 -9.274922e-15 4.014958e-15 0.000000e+00 0.000000e+00 + 5.000000e+00 -3.809331e-15 1.742030e-15 0.000000e+00 0.000000e+00 + 5.000000e+00 -1.486912e-15 7.193870e-16 0.000000e+00 0.000000e+00 + 5.000000e+00 -5.491697e-16 2.815298e-16 0.000000e+00 0.000000e+00 + 5.000000e+00 -1.909736e-16 1.039060e-16 0.000000e+00 0.000000e+00 + 5.000000e+00 -6.218503e-17 3.597111e-17 0.000000e+00 0.000000e+00 + 5.000000e+00 -1.884268e-17 1.160938e-17 0.000000e+00 0.000000e+00 + 5.000000e+00 -5.275850e-18 3.469008e-18 0.000000e+00 0.000000e+00 + 5.000000e+00 -1.354176e-18 9.522226e-19 0.000000e+00 0.000000e+00 + 5.000000e+00 -3.157561e-19 2.379747e-19 0.000000e+00 0.000000e+00 + 5.000000e+00 -6.619388e-20 5.359762e-20 0.000000e+00 0.000000e+00 + 5.000000e+00 -1.232819e-20 1.075186e-20 0.000000e+00 0.000000e+00 + 5.000000e+00 -2.011975e-21 1.895203e-21 0.000000e+00 0.000000e+00 + 5.000000e+00 -2.831752e-22 2.889499e-22 0.000000e+00 0.000000e+00 + 5.000000e+00 -3.373690e-23 3.741080e-23 0.000000e+00 0.000000e+00 + 5.000000e+00 -3.328649e-24 4.025253e-24 0.000000e+00 0.000000e+00 + 5.000000e+00 -2.650364e-25 3.508386e-25 0.000000e+00 0.000000e+00 + 5.000000e+00 -1.651325e-26 2.402739e-26 0.000000e+00 0.000000e+00 + 5.000000e+00 -7.758499e-28 1.246510e-27 0.000000e+00 0.000000e+00 + 5.000000e+00 -2.628315e-29 4.686117e-29 0.000000e+00 0.000000e+00 + 5.000000e+00 -6.077567e-31 1.209183e-30 0.000000e+00 0.000000e+00 + 5.000000e+00 -8.964335e-33 2.002587e-32 0.000000e+00 0.000000e+00 + 5.000000e+00 -7.749121e-35 1.957254e-34 0.000000e+00 0.000000e+00 + 5.000000e+00 -3.526213e-37 1.014901e-36 0.000000e+00 0.000000e+00 + 5.000000e+00 -7.357165e-40 2.434527e-39 0.000000e+00 0.000000e+00 + 5.000000e+00 -5.874734e-43 2.258000e-42 0.000000e+00 0.000000e+00 + 5.000000e+00 -1.410788e-46 6.373575e-46 0.000000e+00 0.000000e+00 + 5.000000e+00 -7.333520e-51 3.948864e-50 0.000000e+00 0.000000e+00 + 5.000000e+00 -5.205869e-56 3.397027e-55 0.000000e+00 0.000000e+00 + 5.000000e+00 -2.593576e-62 2.092570e-61 0.000000e+00 0.000000e+00 + 5.000000e+00 -3.339262e-70 3.415043e-69 0.000000e+00 0.000000e+00 + 5.000000e+00 -2.309877e-80 3.090136e-79 0.000000e+00 0.000000e+00 + 5.000000e+00 -6.254582e-94 1.140616e-92 0.000000e+00 0.000000e+00 + 5.000000e+00 -5.927816e-113 1.559038e-111 0.000000e+00 0.000000e+00 + 5.000000e+00 -1.564515e-141 6.439014e-140 0.000000e+00 0.000000e+00 + 5.000000e+00 -3.094447e-189 2.267554e-187 0.000000e+00 0.000000e+00 + 5.000000e+00 -8.624685e-285 1.424154e-282 0.000000e+00 0.000000e+00 + 5.000000e+00 -0.000000e+00 0.000000e+00 0.000000e+00 0.000000e+00 + 5.000000e+00 0.000000e+00 -0.000000e+00 0.000000e+00 0.000000e+00 From 0cb53561a4939d0892f092f06a55b1d6e0bcf15b Mon Sep 17 00:00:00 2001 From: hbbi Date: Wed, 24 Jun 2020 11:01:08 +0200 Subject: [PATCH 52/56] Added the StreamfunctionShoaling example --- .../OceanWave3D.inp.StreamFuncWaveShoaling | 87 +++++++++++ examples/inputfiles/SF_Shoaling_BottomFile | 139 ++++++++++++++++++ 2 files changed, 226 insertions(+) create mode 100644 examples/inputfiles/OceanWave3D.inp.StreamFuncWaveShoaling create mode 100644 examples/inputfiles/SF_Shoaling_BottomFile diff --git a/examples/inputfiles/OceanWave3D.inp.StreamFuncWaveShoaling b/examples/inputfiles/OceanWave3D.inp.StreamFuncWaveShoaling new file mode 100644 index 0000000..cb133b5 --- /dev/null +++ b/examples/inputfiles/OceanWave3D.inp.StreamFuncWaveShoaling @@ -0,0 +1,87 @@ +A stream function wave shoaling in 2D on a sloping bottom. Absorption by a pressure damping zone. +0 1 <- Initial condition (0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 3=Whalin bar, ... see Initialization.f90:SetupInitialConditions); IncWaveType (0=none, 1=stream function, 2=linear irregular waves) +800. 1. 0 137 1 9 0 0 1 1 1 1 SF_Shoaling_BottomFile <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ (0=even,1=clustering) GhostGrid (0=off,1=on), for Lz<=0 read bathymetry from a file. +3 3 3 1 1 1 <- alpha, beta, gamma, alphaprecond, betaprecond, gammaprecond +1024 .25 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, c based on the incident wave), RK4-ExtrapolationON/OFF +9.82 <- gravitational acceleration constant +1 0 23 1e-8 1e-6 1 V 1 1 2 <- GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), absolute tol, maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +4. 50. 50. 9. 1 0. 1 4 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter (This line is not used unless IncWaveType==1) +-50 20 1 1 <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +100 100 1 1 1 1 1 1024 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride +1 0 <- 0/1=linear/nonlinear computations, Applied surface pressure: 0=none, 1=2D Gaussian. +10 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order +1 18. 2 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(= +/- 9,10; sign gives direction) param XorY WavegenONOFF XorYgen degrees(=IC rotation) +0. 50. 0. 1. 9 3.5 X 1 X 0. +50. 100. 0. 1. 10 3.5 X 1 X 0. +1 1 <- Damping pressure zone: PDampingOnOff=0 (off), number of zones. For each zone include the line: x1, x2, y1, y2 (bounds of the zone), gamma0 (dynamic FSBC), Gamma0 (kinematic FSBC), i_damperType (0=friction on the velocity, 1=friction on the potential). +700. 800. 0. 0. 1. 1. 0 +0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) +0 <- Curvilinear on/off +1 9. 4. 50. 20. -1 34 0. 0. run06.el <- i_spec, T_p, H_s, h0, kh_max, seed, seed2, inc_wave_file. For a random wave, the spectrum: 0=P-M, 1=JONSWAP, 2=Read from a file + +Extra line for random wave generation should appear after Curvilinear on/off. +1 9. 4. 50. 20. -1 34 100. 0. run06.el <- i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, inc_wave_file. For a random wave. i_spec: 0=P-M, 1=JONSWAP, 2=Read from a file + +A relaxation zone line +0. 100. 0. 1. 9 3.5 X 1 X 0. + + +2D submerged bar test +15 <- Initial condition +35 3 1 513 1 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) +3 3 3 1 1 1 <- alpha, beta, gamma +2000 0.025 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-ExtrapolationON/OFF +9.81 <- gravitational acceleration constant +1 0 35 1e-6 1e-4 1 F 1 1 5 <- GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +0.02 0.4 2.0 2.01 1 0 1 4 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter +1 1 <- StoreDataOnOff +1 0 <- 0=linear, 1=nonlinear computations +0 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order !1 5 2 0 +1 5 2 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) +0 5 0 3 -9 5 X 0 X 0 ! Zone 1: Wave absorber (left) 0 5 0 3 10 5 X 1 X 0 ! Zone 1: Wave maker +30 35 0 3 9 5 X 0 X 0 ! Zone 2: Wave absorber (right) +1 5.0 1 0 0 0 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) +0 <- Curvilinear on/off + + + + + + + +Linear standing wave (3D) Curvilinear +8 <- Initial condition +2 2 1 17 17 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGridX, GhostGridY, GhostGridZ (0=off,1=on) +3 3 3 1 1 1 <- alpha, beta, gamma, (Preconditioner stencils:) alphaprecond,betaprecond,gammaprecond +1 1.345946927933294e-002 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-ExtrapolationON/OFF +9.81 <- gravitational acceleration constant +1 0 500 1e-6 1e-4 1 F 1 1 4 <- GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +2 2 2.0 2.0 0 0 1 4 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter +1 1 <- StoreDataOnOff +0 <- 0=linear, 1=nonlinear computations +0 9 6 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order +0 0 0 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) +0 2.0 1 1 1 1 1 <- SWENSE on/off, ramp in time, direction (1:+x ; -1:-x ; 2:+y ; -2:-y) (0=off,1=on) +0 <- Curvilinear on/off + + + +Test on flat bottom +7 <- Initial condition +8 7.5 1 65 129 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) +3 3 3 1 1 1 <- alpha, beta, gamma +640 0.0125 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-ExtrapolationON/OFF +9.81 <- gravitational acceleration constant +3 0 100 1e-7 1e-5 1 F 1 1 5 <- GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +0.1 1.0 1.0 3.0 0 0.0 1 4 24 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter +1 1 <- StoreDataOnOff +1 <- 0=linear, 1=nonlinear computations +0 6 10 0.02 0.02 0.2 <- SG-filtering on/off, filter half width, poly order !1 5 2 0 +1 0.0 4 X 10 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) +0 2 0 7.5 10 5 X 1 X 10 ! Zone 1: Wave maker (west) +0 8 0 2 10 5 Y 1 X 10 ! Zone 2: Wave maker (south) +0 8 5.5 7.5 -10 5 Y 1 X 10 ! Zone 3: Wave maker (north) +6 8 0 7.5 -10 5 X 1 X 10 ! Zone 4: Wave maker (east) +0 5.0 1 0 0 0 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) +0 <- Curvilinear on/off + diff --git a/examples/inputfiles/SF_Shoaling_BottomFile b/examples/inputfiles/SF_Shoaling_BottomFile new file mode 100644 index 0000000..ad023e1 --- /dev/null +++ b/examples/inputfiles/SF_Shoaling_BottomFile @@ -0,0 +1,139 @@ +% Smooth beach with nx=137 Lx=800 h_0=50 and h_1=15 +0 <- Bottom gradients flag, 0->input, 1->compute internally + 5.000000e+01 0.000000e+00 -0.000000e+00 0.000000e+00 0.000000e+00 <- h,h_x,h_xx,h_y,h_yy + 5.000000e+01 -7.316045e-28 -8.210482e-27 0.000000e+00 0.000000e+00 + 5.000000e+01 -1.083768e-13 -2.950757e-13 0.000000e+00 0.000000e+00 + 5.000000e+01 -4.090330e-09 -4.801678e-09 0.000000e+00 0.000000e+00 + 5.000000e+01 -6.763687e-07 -4.331582e-07 0.000000e+00 0.000000e+00 + 4.999997e+01 -1.319993e-05 -5.246157e-06 0.000000e+00 0.000000e+00 + 4.999972e+01 -9.005860e-05 -2.409989e-05 0.000000e+00 0.000000e+00 + 4.999857e+01 -3.403987e-04 -6.488574e-05 0.000000e+00 0.000000e+00 + 4.999512e+01 -8.950410e-04 -1.266410e-04 0.000000e+00 0.000000e+00 + 4.998724e+01 -1.855272e-03 -2.010756e-04 0.000000e+00 0.000000e+00 + 4.997241e+01 -3.265063e-03 -2.778375e-04 0.000000e+00 0.000000e+00 + 4.994797e+01 -5.111472e-03 -3.483480e-04 0.000000e+00 0.000000e+00 + 4.991152e+01 -7.340194e-03 -4.071887e-04 0.000000e+00 0.000000e+00 + 4.986102e+01 -9.874121e-03 -4.519216e-04 0.000000e+00 0.000000e+00 + 4.979492e+01 -1.262870e-02 -4.823092e-04 0.000000e+00 0.000000e+00 + 4.971217e+01 -1.552239e-02 -4.994835e-04 0.000000e+00 0.000000e+00 + 4.961218e+01 -1.848266e-02 -5.052822e-04 0.000000e+00 0.000000e+00 + 4.949472e+01 -2.144868e-02 -5.017914e-04 0.000000e+00 0.000000e+00 + 4.935992e+01 -2.437191e-02 -4.910636e-04 0.000000e+00 0.000000e+00 + 4.920815e+01 -2.721538e-02 -4.749627e-04 0.000000e+00 0.000000e+00 + 4.903995e+01 -2.995234e-02 -4.550950e-04 0.000000e+00 0.000000e+00 + 4.885601e+01 -3.256468e-02 -4.327921e-04 0.000000e+00 0.000000e+00 + 4.865710e+01 -3.504135e-02 -4.091225e-04 0.000000e+00 0.000000e+00 + 4.844404e+01 -3.737686e-02 -3.849200e-04 0.000000e+00 0.000000e+00 + 4.821766e+01 -3.957002e-02 -3.608158e-04 0.000000e+00 0.000000e+00 + 4.797878e+01 -4.162286e-02 -3.372733e-04 0.000000e+00 0.000000e+00 + 4.772824e+01 -4.353969e-02 -3.146187e-04 0.000000e+00 0.000000e+00 + 4.746681e+01 -4.532643e-02 -2.930692e-04 0.000000e+00 0.000000e+00 + 4.719523e+01 -4.698999e-02 -2.727572e-04 0.000000e+00 0.000000e+00 + 4.691421e+01 -4.853790e-02 -2.537496e-04 0.000000e+00 0.000000e+00 + 4.662441e+01 -4.997788e-02 -2.360642e-04 0.000000e+00 0.000000e+00 + 4.632643e+01 -5.131768e-02 -2.196829e-04 0.000000e+00 0.000000e+00 + 4.602085e+01 -5.256485e-02 -2.045620e-04 0.000000e+00 0.000000e+00 + 4.570819e+01 -5.372664e-02 -1.906403e-04 0.000000e+00 0.000000e+00 + 4.538893e+01 -5.480989e-02 -1.778454e-04 0.000000e+00 0.000000e+00 + 4.506351e+01 -5.582100e-02 -1.660981e-04 0.000000e+00 0.000000e+00 + 4.473234e+01 -5.676588e-02 -1.553166e-04 0.000000e+00 0.000000e+00 + 4.439579e+01 -5.764998e-02 -1.454187e-04 0.000000e+00 0.000000e+00 + 4.405422e+01 -5.847826e-02 -1.363239e-04 0.000000e+00 0.000000e+00 + 4.370792e+01 -5.925522e-02 -1.279545e-04 0.000000e+00 0.000000e+00 + 4.335719e+01 -5.998489e-02 -1.202368e-04 0.000000e+00 0.000000e+00 + 4.300230e+01 -6.067091e-02 -1.131015e-04 0.000000e+00 0.000000e+00 + 4.264349e+01 -6.131651e-02 -1.064840e-04 0.000000e+00 0.000000e+00 + 4.228100e+01 -6.192456e-02 -1.003246e-04 0.000000e+00 0.000000e+00 + 4.191504e+01 -6.249759e-02 -9.456843e-05 0.000000e+00 0.000000e+00 + 4.154580e+01 -6.303782e-02 -8.916533e-05 0.000000e+00 0.000000e+00 + 4.117347e+01 -6.354720e-02 -8.406979e-05 0.000000e+00 0.000000e+00 + 4.079824e+01 -6.402740e-02 -7.924063e-05 0.000000e+00 0.000000e+00 + 4.042027e+01 -6.447989e-02 -7.464082e-05 0.000000e+00 0.000000e+00 + 4.003971e+01 -6.490591e-02 -7.023720e-05 0.000000e+00 0.000000e+00 + 3.965672e+01 -6.530653e-02 -6.600023e-05 0.000000e+00 0.000000e+00 + 3.927144e+01 -6.568266e-02 -6.190371e-05 0.000000e+00 0.000000e+00 + 3.888403e+01 -6.603504e-02 -5.792458e-05 0.000000e+00 0.000000e+00 + 3.849460e+01 -6.636432e-02 -5.404259e-05 0.000000e+00 0.000000e+00 + 3.810331e+01 -6.667099e-02 -5.024015e-05 0.000000e+00 0.000000e+00 + 3.771028e+01 -6.695550e-02 -4.650205e-05 0.000000e+00 0.000000e+00 + 3.731564e+01 -6.721818e-02 -4.281526e-05 0.000000e+00 0.000000e+00 + 3.691952e+01 -6.745929e-02 -3.916874e-05 0.000000e+00 0.000000e+00 + 3.652205e+01 -6.767905e-02 -3.555322e-05 0.000000e+00 0.000000e+00 + 3.612334e+01 -6.787761e-02 -3.196104e-05 0.000000e+00 0.000000e+00 + 3.572353e+01 -6.805509e-02 -2.838598e-05 0.000000e+00 0.000000e+00 + 3.532273e+01 -6.821158e-02 -2.482306e-05 0.000000e+00 0.000000e+00 + 3.492108e+01 -6.834714e-02 -2.126842e-05 0.000000e+00 0.000000e+00 + 3.451869e+01 -6.846181e-02 -1.771914e-05 0.000000e+00 0.000000e+00 + 3.411569e+01 -6.855561e-02 -1.417313e-05 0.000000e+00 0.000000e+00 + 3.371220e+01 -6.862856e-02 -1.062894e-05 0.000000e+00 0.000000e+00 + 3.330833e+01 -6.868066e-02 -7.085656e-06 0.000000e+00 0.000000e+00 + 3.290423e+01 -6.871192e-02 -3.542763e-06 0.000000e+00 0.000000e+00 + 3.250000e+01 -6.872234e-02 -0.000000e+00 0.000000e+00 0.000000e+00 + 3.209577e+01 -6.871192e-02 3.542763e-06 0.000000e+00 0.000000e+00 + 3.169167e+01 -6.868066e-02 7.085656e-06 0.000000e+00 0.000000e+00 + 3.128780e+01 -6.862856e-02 1.062894e-05 0.000000e+00 0.000000e+00 + 3.088431e+01 -6.855561e-02 1.417313e-05 0.000000e+00 0.000000e+00 + 3.048131e+01 -6.846181e-02 1.771914e-05 0.000000e+00 0.000000e+00 + 3.007892e+01 -6.834714e-02 2.126842e-05 0.000000e+00 0.000000e+00 + 2.967727e+01 -6.821158e-02 2.482306e-05 0.000000e+00 0.000000e+00 + 2.927647e+01 -6.805509e-02 2.838598e-05 0.000000e+00 0.000000e+00 + 2.887666e+01 -6.787761e-02 3.196104e-05 0.000000e+00 0.000000e+00 + 2.847795e+01 -6.767905e-02 3.555322e-05 0.000000e+00 0.000000e+00 + 2.808048e+01 -6.745929e-02 3.916874e-05 0.000000e+00 0.000000e+00 + 2.768436e+01 -6.721818e-02 4.281526e-05 0.000000e+00 0.000000e+00 + 2.728972e+01 -6.695550e-02 4.650205e-05 0.000000e+00 0.000000e+00 + 2.689669e+01 -6.667099e-02 5.024015e-05 0.000000e+00 0.000000e+00 + 2.650540e+01 -6.636432e-02 5.404259e-05 0.000000e+00 0.000000e+00 + 2.611597e+01 -6.603504e-02 5.792458e-05 0.000000e+00 0.000000e+00 + 2.572856e+01 -6.568266e-02 6.190371e-05 0.000000e+00 0.000000e+00 + 2.534328e+01 -6.530653e-02 6.600023e-05 0.000000e+00 0.000000e+00 + 2.496029e+01 -6.490591e-02 7.023720e-05 0.000000e+00 0.000000e+00 + 2.457973e+01 -6.447989e-02 7.464082e-05 0.000000e+00 0.000000e+00 + 2.420176e+01 -6.402740e-02 7.924063e-05 0.000000e+00 0.000000e+00 + 2.382653e+01 -6.354720e-02 8.406979e-05 0.000000e+00 0.000000e+00 + 2.345420e+01 -6.303782e-02 8.916533e-05 0.000000e+00 0.000000e+00 + 2.308496e+01 -6.249759e-02 9.456843e-05 0.000000e+00 0.000000e+00 + 2.271900e+01 -6.192456e-02 1.003246e-04 0.000000e+00 0.000000e+00 + 2.235651e+01 -6.131651e-02 1.064840e-04 0.000000e+00 0.000000e+00 + 2.199770e+01 -6.067091e-02 1.131015e-04 0.000000e+00 0.000000e+00 + 2.164281e+01 -5.998489e-02 1.202368e-04 0.000000e+00 0.000000e+00 + 2.129208e+01 -5.925522e-02 1.279545e-04 0.000000e+00 0.000000e+00 + 2.094578e+01 -5.847826e-02 1.363239e-04 0.000000e+00 0.000000e+00 + 2.060421e+01 -5.764998e-02 1.454187e-04 0.000000e+00 0.000000e+00 + 2.026766e+01 -5.676588e-02 1.553166e-04 0.000000e+00 0.000000e+00 + 1.993649e+01 -5.582100e-02 1.660981e-04 0.000000e+00 0.000000e+00 + 1.961107e+01 -5.480989e-02 1.778454e-04 0.000000e+00 0.000000e+00 + 1.929181e+01 -5.372664e-02 1.906403e-04 0.000000e+00 0.000000e+00 + 1.897915e+01 -5.256485e-02 2.045620e-04 0.000000e+00 0.000000e+00 + 1.867357e+01 -5.131768e-02 2.196829e-04 0.000000e+00 0.000000e+00 + 1.837559e+01 -4.997788e-02 2.360642e-04 0.000000e+00 0.000000e+00 + 1.808579e+01 -4.853790e-02 2.537496e-04 0.000000e+00 0.000000e+00 + 1.780477e+01 -4.698999e-02 2.727572e-04 0.000000e+00 0.000000e+00 + 1.753319e+01 -4.532643e-02 2.930692e-04 0.000000e+00 0.000000e+00 + 1.727176e+01 -4.353969e-02 3.146187e-04 0.000000e+00 0.000000e+00 + 1.702122e+01 -4.162286e-02 3.372733e-04 0.000000e+00 0.000000e+00 + 1.678234e+01 -3.957002e-02 3.608158e-04 0.000000e+00 0.000000e+00 + 1.655596e+01 -3.737686e-02 3.849200e-04 0.000000e+00 0.000000e+00 + 1.634290e+01 -3.504135e-02 4.091225e-04 0.000000e+00 0.000000e+00 + 1.614399e+01 -3.256468e-02 4.327921e-04 0.000000e+00 0.000000e+00 + 1.596005e+01 -2.995234e-02 4.550950e-04 0.000000e+00 0.000000e+00 + 1.579185e+01 -2.721538e-02 4.749627e-04 0.000000e+00 0.000000e+00 + 1.564008e+01 -2.437191e-02 4.910636e-04 0.000000e+00 0.000000e+00 + 1.550528e+01 -2.144868e-02 5.017914e-04 0.000000e+00 0.000000e+00 + 1.538782e+01 -1.848266e-02 5.052822e-04 0.000000e+00 0.000000e+00 + 1.528783e+01 -1.552239e-02 4.994835e-04 0.000000e+00 0.000000e+00 + 1.520508e+01 -1.262870e-02 4.823092e-04 0.000000e+00 0.000000e+00 + 1.513898e+01 -9.874121e-03 4.519216e-04 0.000000e+00 0.000000e+00 + 1.508848e+01 -7.340194e-03 4.071887e-04 0.000000e+00 0.000000e+00 + 1.505203e+01 -5.111472e-03 3.483480e-04 0.000000e+00 0.000000e+00 + 1.502759e+01 -3.265063e-03 2.778375e-04 0.000000e+00 0.000000e+00 + 1.501276e+01 -1.855272e-03 2.010756e-04 0.000000e+00 0.000000e+00 + 1.500488e+01 -8.950410e-04 1.266410e-04 0.000000e+00 0.000000e+00 + 1.500143e+01 -3.403987e-04 6.488574e-05 0.000000e+00 0.000000e+00 + 1.500028e+01 -9.005860e-05 2.409989e-05 0.000000e+00 0.000000e+00 + 1.500003e+01 -1.319993e-05 5.246157e-06 0.000000e+00 0.000000e+00 + 1.500000e+01 -6.763687e-07 4.331582e-07 0.000000e+00 0.000000e+00 + 1.500000e+01 -4.090330e-09 4.801678e-09 0.000000e+00 0.000000e+00 + 1.500000e+01 -1.083768e-13 2.950757e-13 0.000000e+00 0.000000e+00 + 1.500000e+01 -7.316045e-28 8.210482e-27 0.000000e+00 0.000000e+00 + 1.500000e+01 0.000000e+00 -0.000000e+00 0.000000e+00 0.000000e+00 From 77051eaeb0f7d3eba8189334e0d727bde33e4cb6 Mon Sep 17 00:00:00 2001 From: hbbi Date: Thu, 25 Jun 2020 10:45:40 +0200 Subject: [PATCH 53/56] Updated more example input files for the validation script --- .../OceanWave3D.inp.ObliqueRandomWave2D | 3 ++- .../OceanWave3D.inp.ObliqueRandomWave3D_open | 3 ++- .../OceanWave3D.inp.ObliqueRegular2beach | 21 ------------------- .../OceanWave3D.inp.RandomWave3D_closed | 3 ++- .../OceanWave3D.inp.RandomWave3D_open | 3 ++- examples/inputfiles/OceanWave3D.inp.Vincent | 3 ++- 6 files changed, 10 insertions(+), 26 deletions(-) delete mode 100644 examples/inputfiles/OceanWave3D.inp.ObliqueRegular2beach diff --git a/examples/inputfiles/OceanWave3D.inp.ObliqueRandomWave2D b/examples/inputfiles/OceanWave3D.inp.ObliqueRandomWave2D index a1e0abf..722ba02 100644 --- a/examples/inputfiles/OceanWave3D.inp.ObliqueRandomWave2D +++ b/examples/inputfiles/OceanWave3D.inp.ObliqueRandomWave2D @@ -6,7 +6,8 @@ A flat bottom, 2D, JONSWAP spectrum wave at an angle of beta=22.5 degrees. Gene 9.82 <- gravitational acceleration constant 1 1 0 23 1e-8 1e-6 1 V 1 1 2 <- solver (0:DC, 1:GMRES), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven 5. 80.00 100. 8. 0 0 1 6 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter --60 0 1 1 <- StoreDataOnOff <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +-60 20 1 1 <- StoreDataOnOff <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +1 97 1 33 33 1 1 20 1 1 0 <- 0/1=linear/nonlinear computations, Dynamic pressure term on/off 10 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order 1 0. 4 X 0.0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) diff --git a/examples/inputfiles/OceanWave3D.inp.ObliqueRandomWave3D_open b/examples/inputfiles/OceanWave3D.inp.ObliqueRandomWave3D_open index f242cf1..5a4aec7 100644 --- a/examples/inputfiles/OceanWave3D.inp.ObliqueRandomWave3D_open +++ b/examples/inputfiles/OceanWave3D.inp.ObliqueRandomWave3D_open @@ -6,7 +6,8 @@ A flat bottom, 3D, JONSWAP spectrum with normal spreading around beta=10. Gener 9.82 <- gravitational acceleration constant 1 1 0 23 1e-8 1e-6 1 V 1 1 2 <- solver (0:DC, 1:GMRES), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven 5. 80.00 100. 8. 0 0 1 6 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter --60 0 1 1 <- StoreDataOnOff <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +-60 20 1 1 <- StoreDataOnOff <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +1 97 1 33 33 1 1 20 1 0 0 <- 0/1=linear/nonlinear computations, Dynamic pressure term on/off 0 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order 1 0. 5 X 0.0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) diff --git a/examples/inputfiles/OceanWave3D.inp.ObliqueRegular2beach b/examples/inputfiles/OceanWave3D.inp.ObliqueRegular2beach deleted file mode 100644 index bbc5fd3..0000000 --- a/examples/inputfiles/OceanWave3D.inp.ObliqueRegular2beach +++ /dev/null @@ -1,21 +0,0 @@ -A flat bottom, 2D, linear monochromatic wave at an angle of beta=22.5 degrees. Generation along 2 sides, absorption along 2 sides. -0 2 <- Initial condition (0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 3=Whalin bar, ... see SetupInitialConditions); IncWaveType (0=none, 1=stream function, 2=linear regular or irregular waves) -600. 400. 80. 96 64 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) -3 3 3 1 1 1 <- alpha, beta, gamma -1201 0.5 1 0.5 0 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-ExtrapolationON/OFF, (optional time0) -9.82 <- gravitational acceleration constant -1 1 0 23 1e-8 1e-6 1 V 1 1 2 <- solver (0:DC, 1:GMRES), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven -5. 80.00 100. 8. 0 0 1 6 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter --60 0 1 1 <- StoreDataOnOff <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. -0 0 <- 0/1=linear/nonlinear computations, Dynamic pressure term on/off -0 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order -1 0. 4 X 0.0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) -0. 100. 0 300. 10 3.5 X 1 X 0.0 <- Generation at the West boundary -0 500. 0 50. 10 3.5 Y 1 X 0.0 <- Generation at the South boundary -500. 600. 0 400. 9 3.5 X 0 X 0.0 <- Absorption at the East boundary -0. 600. 300. 400. 9 3.5 Y 0 X 0.0 <- Absorption at the North boundary -0 0 <- Damping pressure zone: PDampingOnOff=0 (off), number of zones. For each zone include the line: x1, x2, y1, y2 (bounds of the zone), gamma0 (dynamic FSBC), Gamma0 (kinematic FSBC), i_damperType (0=friction on the velocity, 1=friction on the potential). -0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) -0 <- Curvilinear on/off --30 8. 2. 80. 20. -1 34 0. 150. run06.el 22.5 1.0 3.3 <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, inc_wave_file, (beta, S, gamma if 3D). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP gamma=3.3, 2=>Read from a file, 3=JONSWAP, input gamma; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. - diff --git a/examples/inputfiles/OceanWave3D.inp.RandomWave3D_closed b/examples/inputfiles/OceanWave3D.inp.RandomWave3D_closed index cc0748d..248851f 100644 --- a/examples/inputfiles/OceanWave3D.inp.RandomWave3D_closed +++ b/examples/inputfiles/OceanWave3D.inp.RandomWave3D_closed @@ -6,7 +6,8 @@ A flat bottom, 3D, JONSWAP spectrum with normal spreading around beta=0. Closed 9.82 <- gravitational acceleration constant 1 1 0 23 1e-8 1e-6 1 V 1 1 2 <- solver (0:DC, 1:GMRES), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven 5. 80.00 100. 8. 0 0 1 6 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter --60 0 1 1 <- StoreDataOnOff <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +-60 20 1 1 <- StoreDataOnOff <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +1 97 1 33 33 1 1 20 1 0 0 <- 0/1=linear/nonlinear computations, Dynamic pressure term on/off 0 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order 1 0. 3 X 0.0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) diff --git a/examples/inputfiles/OceanWave3D.inp.RandomWave3D_open b/examples/inputfiles/OceanWave3D.inp.RandomWave3D_open index 9cedb65..4017fbe 100644 --- a/examples/inputfiles/OceanWave3D.inp.RandomWave3D_open +++ b/examples/inputfiles/OceanWave3D.inp.RandomWave3D_open @@ -6,7 +6,8 @@ A flat bottom, 3D, JONSWAP spectrum with normal spreading. Generation along 3 s 9.82 <- gravitational acceleration constant 1 1 0 23 1e-8 1e-6 1 V 1 1 2 <- solver (0:DC, 1:GMRES), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven 5. 80.00 100. 8. 0 0 1 6 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter --60 0 1 1 <- StoreDataOnOff <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +-60 20 1 1 <- StoreDataOnOff <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +1 97 1 33 33 1 1 20 1 0 0 <- 0/1=linear/nonlinear computations, Dynamic pressure term on/off 0 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order 1 0. 5 X 0.0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) diff --git a/examples/inputfiles/OceanWave3D.inp.Vincent b/examples/inputfiles/OceanWave3D.inp.Vincent index d111fbd..26926f8 100644 --- a/examples/inputfiles/OceanWave3D.inp.Vincent +++ b/examples/inputfiles/OceanWave3D.inp.Vincent @@ -6,7 +6,8 @@ Vincent and Briggs experiment (3D) (Release Version) 9.81 <- gravitational acceleration constant 1 1 0 14 1e-6 1e-4 1 V 1 1 2 <- solver (0:DC, 1:GMRES), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven 0.048 0.4572 1.0 1.3 1 0 1 8 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter --500 1 1 1 <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +-156 20 1 1 <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +1 257 1 65 65 1 1 20 1 1 0 <- 0/1=linear/nonlinear computations, Dynamic pressure term on/off 0 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order, sigma_filt(1:3) 1 3 2 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) From a61a1c2efe9c903186a996c027ce1ac598204527 Mon Sep 17 00:00:00 2001 From: hbbi Date: Thu, 25 Jun 2020 12:15:27 +0200 Subject: [PATCH 54/56] Lost file re-established... --- .../OceanWave3D.inp.ObliqueRegular2Beach | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 examples/inputfiles/OceanWave3D.inp.ObliqueRegular2Beach diff --git a/examples/inputfiles/OceanWave3D.inp.ObliqueRegular2Beach b/examples/inputfiles/OceanWave3D.inp.ObliqueRegular2Beach new file mode 100644 index 0000000..238ac72 --- /dev/null +++ b/examples/inputfiles/OceanWave3D.inp.ObliqueRegular2Beach @@ -0,0 +1,21 @@ +A flat bottom, 2D, linear monochromatic wave at an angle of beta=22.5 degrees. Generation along 2 sides, absorption along 2 sides. +0 2 <- Initial condition (0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 3=Whalin bar, ... see SetupInitialConditions); IncWaveType (0=none, 1=stream function, 2=linear regular or irregular waves) +600. 400. 80. 96 64 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) +3 3 3 1 1 1 <- alpha, beta, gamma +1201 0.5 1 0.5 0 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-ExtrapolationON/OFF, (optional time0) +9.82 <- gravitational acceleration constant +1 1 0 23 1e-8 1e-6 1 V 1 1 2 <- solver (0:DC, 1:GMRES), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +5. 80.00 100. 8. 0 0 1 6 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter +-60 20 1 1 <- StoreDataOnOff <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +1 96 1 33 33 1 1 20 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride +0 0 <- 0/1=linear/nonlinear computations, Dynamic pressure term on/off +0 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order +1 0. 4 X 0.0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) +0. 100. 0 300. 10 3.5 X 1 X 0.0 <- Generation at the West boundary +0 500. 0 50. 10 3.5 Y 1 X 0.0 <- Generation at the South boundary +500. 600. 0 400. 9 3.5 X 0 X 0.0 <- Absorption at the East boundary +0. 600. 300. 400. 9 3.5 Y 0 X 0.0 <- Absorption at the North boundary +0 0 <- Damping pressure zone: PDampingOnOff=0 (off), number of zones. For each zone include the line: x1, x2, y1, y2 (bounds of the zone), gamma0 (dynamic FSBC), Gamma0 (kinematic FSBC), i_damperType (0=friction on the velocity, 1=friction on the potential). +0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) +0 <- Curvilinear on/off +-30 8. 2. 80. 20. -1 34 0. 150. run06.el 22.5 1.0 3.3 <- Irregular/regular waves: i_spec, T_p, H_s, h0, kh_max, seed, seed2, x0, y0, inc_wave_file, (beta, S, gamma if 3D). For a random wave, the spectrum (i_spec=): -1=>Monochromatic, 0=>P-M, 1=>JONSWAP gamma=3.3, 2=>Read from a file, 3=JONSWAP, input gamma; +- 3* means 3D at angle beta -30=>Monochromatic, 30=>P-M, 31=>JONSWAP, 32=>Not yet implemented 33=>JONSWAP with Normal spreading, 34=> JONSWAP with cos^S spreading. From 91979da3ede3215b2ae65bffab89b695ff17f112 Mon Sep 17 00:00:00 2001 From: hbbi Date: Fri, 11 Sep 2020 17:09:50 +0200 Subject: [PATCH 55/56] Added dw/dz to the kinematics output data and updated ReadKinematics.m to support the new data --- src/IO/StoreKinematicData.f90 | 6 +++++- utils/matlab/IO/ReadKinematics.m | 10 ++++++++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/src/IO/StoreKinematicData.f90 b/src/IO/StoreKinematicData.f90 index 337a6d3..0cb51f8 100644 --- a/src/IO/StoreKinematicData.f90 +++ b/src/IO/StoreKinematicData.f90 @@ -21,7 +21,7 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) REAL(KIND=long), DIMENSION(:,:), POINTER :: x, y, h, hx, hy, eta, etax, etay REAL(KIND=long), DIMENSION(:), POINTER :: z, tmpxval ! Automatic work space -REAL(KIND=long) :: U(Nz,Nx,Ny), V(Nz,Nx,Ny), W(Nz,Nx,Ny), d(Nx,Ny) +REAL(KIND=long) :: U(Nz,Nx,Ny), V(Nz,Nx,Ny), W(Nz,Nx,Ny), Wz(Nz,Nx,Ny), d(Nx,Ny) REAL(KIND=long) :: tmpx(Nx), tmpy(Ny) CHARACTER(len=30) :: form REAL(KIND=long) :: hint, etaint, dint @@ -327,6 +327,10 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) ! ! Compute du/dsigma and write du/dz to disc ! + CALL DiffZArbitrary(W,Wz,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & + FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,gamma) + WRITE (FOUT) ( ( ( Wz(k,i,j)/d(i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) + ! CALL DiffZArbitrary(U,W,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,gamma) WRITE (FOUT) ( ( ( W(k,i,j)/d(i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) diff --git a/utils/matlab/IO/ReadKinematics.m b/utils/matlab/IO/ReadKinematics.m index 0fc8262..171df38 100644 --- a/utils/matlab/IO/ReadKinematics.m +++ b/utils/matlab/IO/ReadKinematics.m @@ -96,7 +96,7 @@ eta=zeros(nt,nx,ny); etax=zeros(nt,nx,ny); etay=zeros(nt,nx,ny); phi=zeros(nt,nz,nx,ny); w=zeros(nt,nz,nx,ny); u=zeros(nt,nz,nx,ny); uz=zeros(nt,nz,nx,ny); -v=zeros(nt,nz,nx,ny); vz=zeros(nt,nz,nx,ny); +v=zeros(nt,nz,nx,ny); vz=zeros(nt,nz,nx,ny); wz=zeros(nt,nz,nx,ny); t=[0:nt-1]*dt*tstride; % The time axis % % Read in the solution variables eta, gradeta, phi, u, v, w, dudz, dvdz. @@ -138,6 +138,12 @@ [tmp,count]=fread(fid1,nx*ny*nz,'double'); % Check for an incomplete run. if count==0, it=it-1; break; end + wz(it,:)=tmp; + junk = fread(fid1,2,int_nbit); + % + [tmp,count]=fread(fid1,nx*ny*nz,'double'); + % Check for an incomplete run. + if count==0, it=it-1; break; end uz(it,:)=tmp; junk = fread(fid1,2,int_nbit); % @@ -169,7 +175,7 @@ % Compute time-derivatives of eta, phi, and u and eta_tt % % ip=input('x point index to work with?'); - etat=zeros(nt,nx); etatt=etat; phit=zeros(nt,nx,nz); p=phit; ut=p; + etat=zeros(nt,nx); etatt=etat; phit=zeros(nt,nz,nx); p=phit; ut=p; for ip=1:nx etat(:,ip)=Dt*eta(:,ip); etatt(:,ip)=Dt*etat(:,ip); % From a021ad456973f62b634f75aeebf91a3474e8c9a2 Mon Sep 17 00:00:00 2001 From: hbbi Date: Sun, 21 Aug 2022 16:42:17 +0200 Subject: [PATCH 56/56] I've added all velocity derivatives to the kinematics output so that Lagrangian particle accelerations can be computed. I've also added a Matlab utility which checks the Kinematics output with the exact solution for a moderately steep SF wave. --- examples/inputfiles/OceanWave3D.inp | 26 +- .../inputfiles/OceanWave3D.inp.StreamFuncWave | 14 +- src/IO/ReadInputFileParameters.f90 | 3 + src/IO/StoreKinematicData.f90 | 142 +++++++++- src/initialization/SetupInitialConditions.f90 | 8 + src/pressure/funPressureTerm.f90 | 188 +++++++------ src/utilities/spreading.f90 | 183 +++++++------ utils/matlab/Analysis/SF_KinematicsCheck.m | 246 ++++++++++++++++++ .../Analysis/StreamFunctionCoefficients.m | 182 +++++++++++++ utils/matlab/IO/ReadKinematics.m | 64 ++++- .../ShowFreeSurfaceEvolution2D.m | 10 +- 11 files changed, 835 insertions(+), 231 deletions(-) create mode 100644 utils/matlab/Analysis/SF_KinematicsCheck.m create mode 100644 utils/matlab/Analysis/StreamFunctionCoefficients.m diff --git a/examples/inputfiles/OceanWave3D.inp b/examples/inputfiles/OceanWave3D.inp index f35989d..83ad787 100644 --- a/examples/inputfiles/OceanWave3D.inp +++ b/examples/inputfiles/OceanWave3D.inp @@ -1,15 +1,19 @@ -Nonlinear standing wave (2D) (Release Version) -1 <- Initial condition -2 1 1 65 1 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ(0=even,1=clustering) GhostGrid (0=off,1=on) -2 2 2 1 1 1 <- alpha, beta, gamma -10 0.0016 1 0.5 0 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, assume c=sqrt(g*hdeep)), RK4-ExtrapolationON/OFF +A moderately nonlinear stream function wave in 2D with no smoothing +0 1 1000. <- Initial condition (-1, read from file, 0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 3=Whalin bar, ... see Initialization.f90:SetupInitialConditions); IncWaveType (0=none, 1=stream function, 2=linear irregular waves); accel_tol_fact (Optional local filtering based on free-surface acceleration to prevent breaking. Turned off if this value does not appear) +8. 1. 1. 129 1 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ (0=even,1=clustering) GhostGrid (0=off,1=on) +3 3 3 1 1 1 <- alpha, beta, gamma, alphaprecond, betaprecond, gammaprecond +641 0.024333598256338 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, c based on the incident wave), RK4-ExtrapolationON/OFF 9.82 <- gravitational acceleration constant -1 1 0 23 1e-8 1e-6 1 V 1 1 2 <- solver (0:DC, 1:GMRES), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven -0.0525 0.0796 1.0 2.0 0 0 1 4 32 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter -1 1 <- StoreDataOnOff -1 0 <- 0/1=linear/nonlinear computations, Dynamic pressure term on/off +1 1 0 23 1e-8 1e-6 1 V 1 1 20 <- solver (0:DC, 1:GMRES), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +0.08 1. 1.0 1.0 0 0. 1 6 24 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter (This line is not used unless IncWaveType==1) +-32 20 1 1 <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +1 129 1 1 1 1 1 641 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride +1 0 <- 0/1=linear/nonlinear computations, dummy variable 0 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order -0 0 1 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(=relaxation function) param XorY WavegenONOFF Degrees(=IC rotation) +1 0. 2 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(= +/- 9,10; sign gives direction) param XorY WavegenONOFF XorYgen degrees(=IC rotation) +0. 1. 0. 1. 9 3.5 X 1 X 0. +1. 2. 0. 1. 10 3.5 X 1 X 0. +1 1 <- Damping pressure zone: PDampingOnOff=0 (off), number of zones. For each zone include the line: x1, x2, y1, y2 (bounds of the zone), gamma0 (dynamic FSBC), Gamma0 (kinematic FSBC), i_damperType (0=friction on the velocity, 1=friction on the potential). +6. 8. 0. 0. 1. 1. 0 0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) 0 <- Curvilinear on/off - diff --git a/examples/inputfiles/OceanWave3D.inp.StreamFuncWave b/examples/inputfiles/OceanWave3D.inp.StreamFuncWave index 7dac200..83ad787 100644 --- a/examples/inputfiles/OceanWave3D.inp.StreamFuncWave +++ b/examples/inputfiles/OceanWave3D.inp.StreamFuncWave @@ -1,18 +1,18 @@ A moderately nonlinear stream function wave in 2D with no smoothing 0 1 1000. <- Initial condition (-1, read from file, 0=defined by funPressureTerm.f90, 1=NL standing wave, 2=shoaling on a smooth beach, 3=Whalin bar, ... see Initialization.f90:SetupInitialConditions); IncWaveType (0=none, 1=stream function, 2=linear irregular waves); accel_tol_fact (Optional local filtering based on free-surface acceleration to prevent breaking. Turned off if this value does not appear) -8. 1. 1. 150 1 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ (0=even,1=clustering) GhostGrid (0=off,1=on) +8. 1. 1. 129 1 9 0 0 1 1 1 1 <- Lx Ly Lz Nx Ny Nz GridX GridY GridZ (0=even,1=clustering) GhostGrid (0=off,1=on) 3 3 3 1 1 1 <- alpha, beta, gamma, alphaprecond, betaprecond, gammaprecond -401 .0245 1 0.5 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, c based on the incident wave), RK4-ExtrapolationON/OFF +641 0.024333598256338 1 0 1 <- Nsteps, dt, timeintegration scheme (1=RK4,2=lowstorage-RK45), CFL (if CFL/=0 then dt=CFL*dxmin/c, c based on the incident wave), RK4-ExtrapolationON/OFF 9.82 <- gravitational acceleration constant -1 1 0 23 1e-8 1e-6 1 V 1 1 2 <- solver (0:DC, 1:GMRES), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven +1 1 0 23 1e-8 1e-6 1 V 1 1 20 <- solver (0:DC, 1:GMRES), GMRES Preconditioning (0=none (Matrix free,DIRECT),1=Linear LU(no elimination),2=Linear LU(ghostpoints eliminated),3=Multigrid (no elimination) ), Coarsening Strategy (0=Allan's, 1=Ole's), GMRESmaxiterations, relative tolerance (reltol), maxit, cyclet, pre-smoothings, post-smoothings, MGmaxgrids, DOF breakeven 0.08 1. 1.0 1.0 0 0. 1 6 24 <- Stream function solution parameters: H, h, L, T, WAVELorPER, uEorS, EorS, nsteps, maxiter (This line is not used unless IncWaveType==1) --20 20 1 1 <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. -1 129 1 1 1 1 1 401 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride +-32 20 1 1 <- StoreDataOnOff, formattype, (StoreDataOnOff=0 -> no output, StoreDataOnOff=+stride-> binary, StoreDataOnOff=-stride -> ascii every stride time steps. formattype=0, binary; =1, unformatted) If formattype=20, then the line should read: StoreDataOnOff, iKinematics, formattype, nOutFiles; and nOutFiles lines should appear below defining [xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride] for each file. +1 129 1 1 1 1 1 641 1 <- xbeg, xend, xstride, ybeg, yend, ystride, tbeg, tend, tstride 1 0 <- 0/1=linear/nonlinear computations, dummy variable 0 6 10 0.08 0.08 0.4 <- SG-filtering on/off, filter half width, poly order 1 0. 2 X 0 <- relaxation zones on/off, transient time, no. zones. For each zone define on following lines: x1 x2 y1 y2 ftype(= +/- 9,10; sign gives direction) param XorY WavegenONOFF XorYgen degrees(=IC rotation) -0. 1. 0. 1. 9 3.5 X 1 X 0. -1. 2. 0. 1. 10 3.5 X 1 X 0. +0. 1. 0. 1. 9 3.5 X 1 X 0. +1. 2. 0. 1. 10 3.5 X 1 X 0. 1 1 <- Damping pressure zone: PDampingOnOff=0 (off), number of zones. For each zone include the line: x1, x2, y1, y2 (bounds of the zone), gamma0 (dynamic FSBC), Gamma0 (kinematic FSBC), i_damperType (0=friction on the velocity, 1=friction on the potential). 6. 8. 0. 0. 1. 1. 0 0 2.0 2 0 0 1 0 <- SWENSE on/off, ramp in time, wf direction (1:+x ; -1:-x ; 2:+y ; -2:-y ; >3: angle of the 3D wavefield), Reflexion of incident wf: West, East, North, South (0=off,1=on) diff --git a/src/IO/ReadInputFileParameters.f90 b/src/IO/ReadInputFileParameters.f90 index a458475..f824dc3 100644 --- a/src/IO/ReadInputFileParameters.f90 +++ b/src/IO/ReadInputFileParameters.f90 @@ -429,6 +429,9 @@ SUBROUTINE ReadInputFileParameters ELSEIF(PressureTermOnOff==3)THEN WRITE(*,'(A/)') ' A 3D tanh surface pressure is being applied. (See "funPressureTerm.f90".)' WRITE(fileop(1),'(A/)') ' A 3D tanh surface pressure is being applied. (See "funPressureTerm.f90".)' + ELSEIF(PressureTermOnOff==4)THEN + WRITE(*,'(A/)') ' A 3D cos^2 surface pressure is being applied. (See "funPressureTerm.f90".)' + WRITE(fileop(1),'(A/)') ' A 3D cos^2 surface pressure is being applied. (See "funPressureTerm.f90".)' ELSE Print *, 'No pressure field defined for PressureTermOnOff=',PressureTermOnOff stop diff --git a/src/IO/StoreKinematicData.f90 b/src/IO/StoreKinematicData.f90 index 0cb51f8..d5678c4 100644 --- a/src/IO/StoreKinematicData.f90 +++ b/src/IO/StoreKinematicData.f90 @@ -21,7 +21,7 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) REAL(KIND=long), DIMENSION(:,:), POINTER :: x, y, h, hx, hy, eta, etax, etay REAL(KIND=long), DIMENSION(:), POINTER :: z, tmpxval ! Automatic work space -REAL(KIND=long) :: U(Nz,Nx,Ny), V(Nz,Nx,Ny), W(Nz,Nx,Ny), Wz(Nz,Nx,Ny), d(Nx,Ny) +REAL(KIND=long) :: U(Nz,Nx,Ny), V(Nz,Nx,Ny), W(Nz,Nx,Ny), Ux(Nz,Nx,Ny), Wz(Nz,Nx,Ny), d(Nx,Ny) REAL(KIND=long) :: tmpx(Nx), tmpy(Ny) CHARACTER(len=30) :: form REAL(KIND=long) :: hint, etaint, dint @@ -325,19 +325,149 @@ SUBROUTINE StoreKinematicData(Nx,Ny,Nz,io,it) ! WRITE (FOUT) ( ( ( W(k,i,j)/d(i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) ! - ! Compute du/dsigma and write du/dz to disc + ! Compute the velocity gradients and write to disc. Note that we're re-using the variables Ux and Wz here for all components. + ! + ! First dw/dz ! CALL DiffZArbitrary(W,Wz,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,gamma) WRITE (FOUT) ( ( ( Wz(k,i,j)/d(i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) + IF (FineGrid%Nx>1) THEN + ! + ! Compute dw/dx + ! + CALL DiffXEven(W,Ux,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & + FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,alpha) + IF ( LinearOnOff /= 0) THEN + ! + ! Add in the chain rule contribution to get the velocity + ! + Do j=1,Ny + Do i=1,Nx + Do k=1,Nz + Ux(k,i,j) = Ux(k,i,j) + ((1-z(k))/d(i,j)*hx(i,j)-z(k)/d(i,j)*etax(i,j))*Wz(k,i,j) + END Do + END Do + END Do + END IF + ELSE + Ux=zero + END IF + ! + WRITE (FOUT) ( ( ( Ux(k,i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) + ! + IF (FineGrid%Ny>1) THEN + ! dw/dy + CALL DiffYEven(W,Ux,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & + FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,beta) + IF ( LinearOnOff /= 0) THEN + Do j=1,Ny + Do i=1,Nx + Do k=1,Nz + Ux(k,i,j) = Ux(k,i,j)+((1-z(k))/d(i,j)*hy(i,j)-z(k)/d(i,j)*etay(i,j))*Wz(k,i,j) + END Do + END Do + END Do + END IF + ELSE + Ux=zero + END IF + WRITE (FOUT) ( ( ( Ux(k,i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) ! - CALL DiffZArbitrary(U,W,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & + ! du/dz + ! + CALL DiffZArbitrary(U,Wz,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,gamma) - WRITE (FOUT) ( ( ( W(k,i,j)/d(i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) + WRITE (FOUT) ( ( ( Wz(k,i,j)/d(i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) + ! + ! Compute du/dx + ! + IF (FineGrid%Nx>1) THEN + CALL DiffXEven(U,Ux,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & + FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,alpha) + IF ( LinearOnOff /= 0) THEN + ! + ! Add in the chain rule contribution to get the velocity + ! + Do j=1,Ny + Do i=1,Nx + Do k=1,Nz + Ux(k,i,j) = Ux(k,i,j) + ((1-z(k))/d(i,j)*hx(i,j)-z(k)/d(i,j)*etax(i,j))*Wz(k,i,j) + END Do + END Do + END Do + END IF + ELSE + Ux=zero + END IF ! - CALL DiffZArbitrary(V,W,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & + WRITE (FOUT) ( ( ( Ux(k,i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) + ! + IF (FineGrid%Ny>1) THEN + ! du/dy + CALL DiffYEven(U,Ux,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & + FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,beta) + IF ( LinearOnOff /= 0) THEN + Do j=1,Ny + Do i=1,Nx + Do k=1,Nz + Ux(k,i,j) = Ux(k,i,j)+((1-z(k))/d(i,j)*hy(i,j)-z(k)/d(i,j)*etay(i,j))*Wz(k,i,j) + END Do + END Do + END Do + END IF + ELSE + Ux=zero + END IF + WRITE (FOUT) ( ( ( Ux(k,i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) + ! + ! dv/dz + ! + CALL DiffZArbitrary(V,Wz,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,gamma) - WRITE (FOUT) ( ( ( W(k,i,j)/d(i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) + WRITE (FOUT) ( ( ( Wz(k,i,j)/d(i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) + IF (FineGrid%Nx>1) THEN + ! + ! Compute dv/dx + ! + CALL DiffXEven(V,Ux,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & + FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,alpha) + IF ( LinearOnOff /= 0) THEN + ! + ! Add in the chain rule contribution to get the velocity + ! + Do j=1,Ny + Do i=1,Nx + Do k=1,Nz + Ux(k,i,j) = Ux(k,i,j) + ((1-z(k))/d(i,j)*hx(i,j)-z(k)/d(i,j)*etax(i,j))*Wz(k,i,j) + END Do + END Do + END Do + END IF + ELSE + Ux=zero + END IF + ! + WRITE (FOUT) ( ( ( Ux(k,i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) + ! + IF (FineGrid%Ny>1) THEN + ! dv/dy + CALL DiffYEven(V,Ux,1,FineGrid%Nx+2*GhostGridX,FineGrid%Ny+2*GhostGridY, & + FineGrid%Nz+GhostGridZ,FineGrid%DiffStencils,beta) + IF ( LinearOnOff /= 0) THEN + Do j=1,Ny + Do i=1,Nx + Do k=1,Nz + Ux(k,i,j) = Ux(k,i,j)+((1-z(k))/d(i,j)*hy(i,j)-z(k)/d(i,j)*etay(i,j))*Wz(k,i,j) + END Do + END Do + END Do + END IF + ELSE + Ux=zero + END IF + WRITE (FOUT) ( ( ( Ux(k,i,j), k=1,FineGrid%Nz+GhostGridZ), i=i0,i1,is), j=j0,j1,js) + END IF END IF END IF diff --git a/src/initialization/SetupInitialConditions.f90 b/src/initialization/SetupInitialConditions.f90 index 2fef07f..70c3bb3 100644 --- a/src/initialization/SetupInitialConditions.f90 +++ b/src/initialization/SetupInitialConditions.f90 @@ -36,9 +36,17 @@ SUBROUTINE SetupInitialConditions ELSEIF(PressureTermOnOff==2)THEN print *, 'Initial condition determined by PressureTermOnOff is a 3D moving Gaussian hump' write(fileop(1),*) 'Initial condition determined by PressureTermOnOff is a 3D moving Gaussian hump' + ELSEIF(PressureTermOnOff==3)THEN + print *, 'Initial condition determined by PressureTermOnOff is a 3D moving tanh hump' + write(fileop(1),*) 'Initial condition determined by PressureTermOnOff is a 3D moving tanh hump' + ELSEIF(PressureTermOnOff==4)THEN + print *, 'Initial condition determined by PressureTermOnOff is a 3D moving cos^2 ship-like shape' + write(fileop(1),*) 'Initial condition determined by PressureTermOnOff is a 3D moving cos^2 ship-like shape' END IF Call funInitialFreeSurfaceElevation(g,FineGrid%Nx+2*GhostGridX,& FineGrid%Ny+2*GhostGridY,FineGrid,WaveField) + + END IF IF (Lz <= 0)THEN ! Read in the bottom contours from a file. diff --git a/src/pressure/funPressureTerm.f90 b/src/pressure/funPressureTerm.f90 index b1c96d2..ec4cbee 100644 --- a/src/pressure/funPressureTerm.f90 +++ b/src/pressure/funPressureTerm.f90 @@ -30,9 +30,9 @@ SUBROUTINE funPressureTerm(t,g,Nx,Ny,FineGrid,Wavefield) USE GlobalVariables, ONLY: PressureTermONOFF, Lz, NDampZones, PDampingOnOff, PDampZones, alpha, & CurrentFlux IMPLICIT NONE - INTEGER :: Nx,Ny, i, j, k, nd, rank, id0, job, id, idebug + INTEGER :: Nx,Ny, i, j, k, nd, rank, id0, job, id, idebug, i0,i1,j0,j1 REAL(KIND=long) :: t, g, x0, y0, sigma, sigmay, Lx, Ly, dx, Fr, V, rhs(Nx*Ny), & - tmp(Nx*Ny), magk + tmp(Nx*Ny), magk, L, W, draft, a, b, U0, T0, xs, xp, yp, ffunc, gfunc !REAL(KIND=long), DIMENSION(Nx,Ny), INTENT(OUT) :: term ! includes ghost points TYPE (Level_def), INTENT(IN) :: FineGrid TYPE (Wavefield_FS), INTENT(OUT) :: Wavefield @@ -42,6 +42,8 @@ SUBROUTINE funPressureTerm(t,g,Nx,Ny,FineGrid,Wavefield) ! PressureTermOnOff=0 -> No pressure (default) ! PressureTermOnOff=1 -> Stationary 2D Gaussian hump ! PressureTermOnOff=2 -> Moving 3D Gaussian hump + ! PressureTermOnOff=3 -> Moving 3D tanh hump + ! PressureTermOnOff=4 -> Moving 3D cos^2 ship-like form ! ! If (PressureTermOnOff==1) Then @@ -105,7 +107,7 @@ SUBROUTINE funPressureTerm(t,g,Nx,Ny,FineGrid,Wavefield) Ly=one endif ! - ! The center and variance of the Gaussian. + ! The center and variance of the function. ! Fr=0.9; V=Fr*sqrt(g*Lz); @@ -134,11 +136,86 @@ SUBROUTINE funPressureTerm(t,g,Nx,Ny,FineGrid,Wavefield) *(TANH(FineGrid%y(i,j)-y0+2)-TANH(FineGrid%y(i,j)-y0-2)) END DO END DO + ELSEIf (PressureTermOnOff==4) Then + ! + ! Apply a moving cos^2 ship-like form in 3D + ! + Lx=FineGrid%x(Nx-1,1)-FineGrid%x(2,1); dx=FineGrid%x(2,1)-FineGrid%x(1,1); + Ly=FineGrid%y(1,Ny-1)-FineGrid%y(1,2); + ! + if(Lx .lt. 1.e-14) then + Lx=one + endif + if(Ly .lt. 1.e-14) then + Ly=one + endif + ! + ! The center and distribution of the moving pressure function. + ! +! U0=13.5; L=266.; W=42.; draft=6.8; a=0.5; b=0.25; T0=213.; x0=500.; y0=zero + U0=13.5; L=266.; W=42.; draft=6.8; a=0.5; b=0.25; T0=50.; x0=500.; y0=zero + + if (t0. + ! + i0=nint(xs-half*L); i1=nint(xs+half*L); + j0=1; j1=nint(half*W); + if (t>zero)then + Do j=j0,j1 + do i=i0,i1 + Wavefield%P0(i,j) = (half*(Wavefield%Px(i,j)**2+Wavefield%Py(i,j)**2-Wavefield%W(i,j)**2*(one + Wavefield%Ex(i,j)**2 + Wavefield%Ey(i,j)**2))+g*Wavefield%E(i,j)) + !Wavefield%P0(i,j) = (g*Wavefield%E(i,j)) + end do + end do + ! + ! Smooth the pressure patch + ! + do j=2,Ny-1 + Wavefield%P0(i,j)=0.25_long*Wavefield%P0(i,j-1)+half*Wavefield%P0(i,j)+0.25_long*Wavefield%P0(i,j+1) + do i=2,Nx-1 + Wavefield%P0(i,j)=0.25_long*Wavefield%P0(i-1,j)+half*Wavefield%P0(i,j)+0.25_long*Wavefield%P0(i+1,j) + end do + end do + end if endif ! ! Pressure damping terms. ! - If (PDampingOnOff /= 0) Then + If (PDampingOnOff /= 0 .and. t>0) Then id=1 IF(PDampZones(id)%type==0) THEN ! @@ -246,8 +323,7 @@ END SUBROUTINE funPressureTerm !! with rho the density of the fluid and p the free surface pressure. !! !! This function needs to be updated and recompiled for -!! changes to take effect and it should be synched with the applied -!! pressure subroutine "funPressureTerm". +!! changes to take effect. !< SUBROUTINE funInitialFreeSurfaceElevation(g,Nx,Ny,FineGrid,WaveField) USE Precision @@ -261,98 +337,20 @@ SUBROUTINE funInitialFreeSurfaceElevation(g,Nx,Ny,FineGrid,WaveField) TYPE (Wavefield_FS), INTENT(OUT) :: Wavefield ! ! - ! PressureTermOnOff=0 -> No pressure (default) - ! PressureTermOnOff=1 -> Stationary 2D Gaussian hump + ! This routine should only be called when PressureTerOnOff/=0. ! + ! Get the initial pressure and compute the elevation. ! - If (PressureTermOnOff==1) Then - ! - ! Apply a stationary Gaussian hump in 2D - ! - Lx=FineGrid%x(Nx-1,1)-FineGrid%x(2,1); - if(Lx .lt. 1.e-14) then - Lx=one - endif - x0=Lx/2; sigma=Lx/8; - ! - DO j = 1, Ny ! ghost points implicitly assumed to be included - DO i = 1 , Nx ! ghost points implicitly assumed to be included - ! This following line defines the pressure forcing for each point - Wavefield%P0(i,j) = -.01*g*Exp(-(FineGrid%x(i,j)-x0)**2/(2*sigma**2)) - Wavefield%E(i,j) = Wavefield%P0(i,j)/g - Wavefield%P(i,j)=zero; Wavefield%W(i,j)=zero - END DO - END DO - ELSEIf (PressureTermOnOff==2) Then - ! - ! Apply a stationary Gaussian hump in 3D - ! - Lx=FineGrid%x(Nx-1,1)-FineGrid%x(2,1); dx=FineGrid%x(2,1)-FineGrid%x(1,1); - Ly=FineGrid%y(1,Ny-1)-FineGrid%y(1,2); - ! - if(Lx .lt. 1.e-14) then - Lx=one - endif - if(Ly .lt. 1.e-14) then - Ly=one - endif - ! - ! The variance and center of the Gaussian - ! - sigma=sqrt(3*dx); x0=3*sigma**2; - y0=0; sigmay=sigma/2; - ! - DO j = 1, Ny ! ghost points implicitly assumed to be included - DO i = 1 , Nx-1 ! ghost points implicitly assumed to be included - ! This line defines the pressure forcing for each point - Wavefield%P0(i,j) =-0.01*g*Exp(-(FineGrid%x(i,j)-x0)**2/(2*sigma**2) & - -(FineGrid%y(i,j)-y0)**2/(2*sigmay**2)) - Wavefield%E(i,j) = Wavefield%P0(i,j)/g - Wavefield%P(i,j)=zero; Wavefield%W(i,j)=zero - END DO - END DO - ELSEIf (PressureTermOnOff==3) Then - ! - ! Apply a stationary tanh hump in 3D - ! - Lx=FineGrid%x(Nx-1,1)-FineGrid%x(2,1); dx=FineGrid%x(2,1)-FineGrid%x(1,1); - Ly=FineGrid%y(1,Ny-1)-FineGrid%y(1,2); - ! - if(Lx .lt. 1.e-14) then - Lx=one - endif - if(Ly .lt. 1.e-14) then - Ly=one - endif - ! - ! The variance and center of the Gaussian - ! - sigma=sqrt(3*dx); x0=3*sigma**2; - y0=0; sigmay=sigma/2; - ! - DO j = 1, Ny ! ghost points implicitly assumed to be included - DO i = 1 , Nx-1 ! ghost points implicitly assumed to be included - ! This line defines the pressure forcing for each point - ! Wavefield%P0(i,j) =-0.05*g*Exp(-(FineGrid%x(i,j)-x0)**2/(2*sigma**2) & - ! -(FineGrid%y(i,j)-y0)**2/(2*sigmay**2)) - !! Li and Sclavounos -!If ((FineGrid%x(i,j)-x0) .lt. (2*10.25)) then - ! Wavefield%P0(i,j) =-g*0.735*((COS(Pi*(FineGrid%x(i,j)-x0)/(2*10.25)))**2) & -!*((COS(Pi*(FineGrid%y(i,j)-y0)/(2*1.825)))**2) -!else -!Wavefield%P0(i,j) =0 -!endif -! - ! Sung & Grilli (2005) - ! - Wavefield%P0(i,j) =-g*0.01*(TANH(FineGrid%x(i,j)-x0+2)-TANH(FineGrid%x(i,j)-x0-2)) & - *(TANH(FineGrid%y(i,j)-y0+2)-TANH(FineGrid%y(i,j)-y0-2)) - ! - Wavefield%E(i,j) = Wavefield%P0(i,j)/g - Wavefield%P(i,j)=zero; Wavefield%W(i,j)=zero - END DO + ! + call funPressureTerm(zero,g,Nx,Ny,FineGrid,Wavefield) + + DO j = 1, Ny + DO i = 1 , Nx + Wavefield%E(i,j) = Wavefield%P0(i,j)/g + Wavefield%P(i,j)=zero; Wavefield%W(i,j)=zero END DO - endif + END DO + END SUBROUTINE funInitialFreeSurfaceElevation diff --git a/src/utilities/spreading.f90 b/src/utilities/spreading.f90 index e085aab..59a924e 100644 --- a/src/utilities/spreading.f90 +++ b/src/utilities/spreading.f90 @@ -1,98 +1,89 @@ -SUBROUTINE SPREADING(BETA1,PI,S0,CTA0,SEED2,NCTA) - -INTEGER S,I,J,NT,NCTA,NCTA1,SEED2 -REAL*8 CTAMAX,CTAMIN,DCTA,CTA0,IPOW,DS,SUM1,AAA,DCTA1,S0,PI,SPM -REAL*8 CTA(16384),COSINT(16384),CC1(16384),BETA1(NCTA),PS(16384) - - - - IPOW=2*S0 - - NCTA1=16384 - -!!!!! out put -! OPEN(1110,FILE='spreading.dat') - -! write(1110,*) s0,cta0,ncta - -! close(1110) - - CTAMAX=CTA0+0.5*PI - CTAMIN=CTA0-0.5*PI - -!FOR THE MULTIDIRECTIONAL SPREADING 'G0' - - - DCTA1=(CTAMAX-CTAMIN)/FLOAT(NCTA1-1) - - DO I=1,NCTA1 - CC1(I)=CTAMIN+(I-1)*DCTA1 - END DO - - SUM1=0.0 - DO I=1,NCTA1 - AAA=CC1(I) - - SUM1=SUM1+((COS((AAA-CTA0)/2.))**IPOW)*DCTA1 - END DO - SPM=1./SUM1 - - - - - CTA(1)=CTAMIN - CTA(NCTA)=CTAMAX - - DS=0.0 - - DCTA=PI/REAL(NCTA) -! OPEN(1,FILE='1 ',status='unknown') -! OPEN(2,FILE='2.TXT') - DO I=1,NCTA - - CTA(I)=CTAMIN+(I-1)*DCTA - - DS=DS+((COS((CTA(I)-CTA0)/2.0))**IPOW)*DCTA - - COSINT(I)=DS*SPM -! WRITE(*,*) i -! WRITE(1,*) CTA(I) ,i - END DO - -! OPEN(4,FILE='4.TXT') -! OPEN(3,FILE='3.TXT') - DO J=1,NCTA - - - PS(J)=RAN1_b(SEED2) -! WRITE(2,*) PS(J),SEED2,J,spm - DO I=1,NCTA - - IF (COSINT(I).GE.PS(J)) then -! WRITE(4,*) CTA(I),COSINT(I),PS(J),I - GO TO 100 - - end if - - - - END DO - - 100 BETA1(J)=CTA(I) - - - ! WRITE(3,*) CTA(I),COSINT(I),PS(J),I - - END DO - -!!!! output -! OPEN(1110,FILE='anglespreading') -! do i=1,ncta -! write(1110,*) beta1(i) -! end do -! close(1110) - - return - END SUBROUTINE SPREADING +SUBROUTINE SPREADING(BETA,PI,S0,BETA0,SEED2,NCTA) + ! + ! This is a very simple implementation of assigning a random heading angle + ! to each wave component based on the cosine spreading function. + ! + IMPLICIT none + integer, parameter :: long=selected_real_kind(12,99) + + INTEGER S,I,J,NT,NCTA,SEED2 + + REAL ran1_b + REAL(kind=long) :: CTAMAX,CTAMIN,DCTA,BETA0,IPOW,DS,SUM1,AAA,DCTA1,S0,PI,SPM + REAL(kind=long) :: CTA(ncta),COSINT(ncta),CC1(ncta),BETA(NCTA),PS(ncta) + + EXTERNAL ran1_b + + + + IPOW=2*S0 + + CTAMAX=BETA0+0.5*PI + CTAMIN=BETA0-0.5*PI + + !FOR THE MULTIDIRECTIONAL SPREADING 'G0' + + DCTA1=(CTAMAX-CTAMIN)/FLOAT(NCTA-1) + + DO I=1,NCTA + CC1(I)=CTAMIN+(I-1)*DCTA1 + END DO + + SUM1=0.0 + DO I=1,NCTA + AAA=CC1(I) + + SUM1=SUM1+((COS((AAA-BETA0)/2.))**IPOW)*DCTA1 + END DO + SPM=1./SUM1 + + + + + CTA(1)=CTAMIN + CTA(NCTA)=CTAMAX + + DS=0.0 + + DCTA=PI/REAL(NCTA) + ! + ! Build the discrete probability function as a function of heading angle. + ! + DO I=1,NCTA + + CTA(I)=CTAMIN+(I-1)*DCTA + + DS=DS+((COS((CTA(I)-BETA0)/2.0))**IPOW)*DCTA + + COSINT(I)=DS*SPM + END DO + + ! + ! Loop over each component, give it a random probability between 0 and 1, and find + ! the associated heading angle. + ! + DO J=1,NCTA + + PS(J)=RAN1_b(SEED2) + + ! + ! This should be replaced by a more efficient root-finding routine. + ! + DO I=1,NCTA + + IF (COSINT(I).GE.PS(J)) then + GO TO 100 + + end if + + END DO + +100 BETA(J)=CTA(I) + + END DO + + + return + END SUBROUTINE SPREADING diff --git a/utils/matlab/Analysis/SF_KinematicsCheck.m b/utils/matlab/Analysis/SF_KinematicsCheck.m new file mode 100644 index 0000000..31559e1 --- /dev/null +++ b/utils/matlab/Analysis/SF_KinematicsCheck.m @@ -0,0 +1,246 @@ +% +% Validation of the kinematics for a stream function wave. This check is +% for the test case set up in OceanWave3D.inp.StreamFuncWave and compares +% the kinematics at peak u and w points with those computed directly from +% the function 'StreamFunctionCoefficients.m', which must be in the path. +% +% The OW3D utility 'ReadKinematics.m' must also be in the path. +% +% Written by H.B. Bingham, DTU, August 21, 2022 +% +%% +% +clear all; +% +Nbits=32; idn=1; ifig=0; +% +% Read the kinematics file from the OW3D run. +% +ReadKinematics +% +% Compare the calculations with the OceanWave3D.inp.StreamFuncWave case +% for a Stream function wave H/L=0.08, kh=2pi, U_Stokes=0. +% +g=9.82; H=.08; L=1; k=2*pi/L; h0=1; kh=k*h0; nSF=24; nsteps=6; uEorS=0; +EorS='Stokes'; TorL='L'; +% +% Compute all the Stream Function Theory parameters for this case. +% +[cSF q R k etaN Bsf(:,1)]=StreamFunctionCoefficients(nSF,H,... + h0,L,TorL,uEorS,EorS,nsteps,g); +% +% Get the Fourier coefficients of the elevation so it can be evaluated at +% arbitrary x-positions. +% +js=[1:nSF-1]; dx=L/(2*nSF); +for i=1:nSF + Asf(i,1)=2/nSF*(.5*(etaN(1)+etaN(nSF+1)*cos(k*i*L/2)) ... + + sum(etaN(2:nSF).*cos(js*k*i*dx))); +end +% Multiply Nyquist by 1/2 so that straight sums can be +% used later. +% +Asf(nSF,1)=1/2*Asf(nSF,1); +% +% Form the full j-vector for computing the kinematics. +% +js=[1:nSF]'; +% +% The wave period and frequency. +% +T=L/cSF; om=2*pi/T; +%% +% These are the resolutions from the OceanWave3D.inp file. Pick out one +% wavelength at the center of the domain at the last time step. +% +ppw=16; ip0=(nx-1)/2-ppw/2+1; ip=[ip0:ip0+ppw]; +it=nt; +time=t(it); +% +% Compute the surface values and compare. +% +for i=1:length(ip) + eta2(i,1)=sum(Asf.*cos(js*k*(x(ip(i))-cSF*time))); + phiS2(i,1)=((cSF-Bsf(1,1))*x(ip(i))... + +sum(Bsf(2:nSF+1,1)./(js*k).*cosh(k*js.*(eta2(i,1)+h0))... + ./cosh(js*k*h0) .*sin(k*js*(x(ip(i))-cSF*time)))); + uS2(i,1)=((cSF-Bsf(1,1))... + +sum(Bsf(2:nSF+1,1).*cosh(k*js.*(eta2(i,1)+h0))... + ./cosh(js*k*h0) .*cos(k*js*(x(ip(i))-cSF*time)))); + wS2(i,1)=sum(Bsf(2:nSF+1,1).*sinh(k*js.*(eta2(i,1)+h0))... + ./cosh(js*k*h0) .*sin(k*js*(x(ip(i))-cSF*time))); +end + +ifig=ifig+1; figure(ifig); +plot(x(ip),eta(it,ip)/H,'-+',x(ip),eta2(:,1)/H,'o'); grid on; +xlabel('x/L'); ylabel('\eta/H') +legend('OW3D','SF') +title(['t=',num2str(t(it))]); + +ifig=ifig+1; figure(ifig); +plot(x(ip),squeeze(phi(it,nz,ip)),'-+',x(ip),phiS2(:,1),'o'); grid on; +xlabel('x/L'); ylabel('\phi_S') +legend('OW3D','SF') +title(['t=',num2str(t(it))]); + +ifig=ifig+1; figure(ifig); +plot(x(ip),squeeze(u(it,nz,ip)),'-+',x(ip),uS2(:,1),'o'); grid on; +xlabel('x/L'); ylabel('u_S') +legend('OW3D','SF') +title(['t=',num2str(t(it))]); + +ifig=ifig+1; figure(ifig); +plot(x(ip),squeeze(w(it,nz,ip)),'-+',x(ip),wS2(:,1),'o'); grid on; +xlabel('x/L'); ylabel('w_S') +legend('OW3D','SF') +title(['t=',num2str(t(it))]); + +%% +% Compare the kinematics under the wave crest. +% +ipc=ip0+ppw/2; +z=sigma*(h(ipc,1)+eta(it,ipc))-h(ipc,1); x0=x(ipc,1); eta0=eta2(ppw/2+1,1); +for i=2:length(z) + phiSF(i-1,1)=((cSF-Bsf(1,1))*x0... + +sum(Bsf(2:nSF+1,1)./(js*k).*cosh(k*js.*(z(i)+h0))... + ./cosh(js*k*h0) .*sin(k*js*(x0-cSF*time)))); + uSF(i-1,1)=((cSF-Bsf(1,1))... + +sum(Bsf(2:nSF+1,1).*cosh(k*js.*(z(i)+h0))... + ./cosh(js*k*h0) .*cos(k*js*(x0-cSF*time)))); + uxSF(i-1,1)=(-sum(k*js.*Bsf(2:nSF+1,1).*cosh(k*js.*(z(i)+h0))... + ./cosh(js*k*h0) .*sin(k*js*(x0-cSF*time)))); + uzSF(i-1,1)=sum(k*js.*Bsf(2:nSF+1,1).*sinh(k*js.*(z(i)+h0))... + ./cosh(js*k*h0) .*cos(k*js*(x0-cSF*time))); + wSF(i-1,1)=sum(Bsf(2:nSF+1,1).*sinh(k*js.*(z(i)+h0))... + ./cosh(js*k*h0) .*sin(k*js*(x0-cSF*time))); + wxSF(i-1,1)=sum(k*js.*Bsf(2:nSF+1,1).*sinh(k*js.*(z(i)+h0))... + ./cosh(js*k*h0) .*cos(k*js*(x0-cSF*time))); + wzSF(i-1,1)=sum(k*js.*Bsf(2:nSF+1,1).*cosh(k*js.*(z(i)+h0))... + ./cosh(js*k*h0) .*sin(k*js*(x0-cSF*time))); + pSF(i-1,1)=-(-sum(cSF*Bsf(2:nSF+1,1).*cosh(k*js.*(z(i)+h0))... + ./cosh(js*k*h0) .*cos(k*js*(x0-cSF*time))) + .5*(uSF(i-1,1).^2 ... + + wSF(i-1,1).^2)); + % Lagrangian particle accelerations in the horizontal and vertical: + utSF(i-1,1)=sum(om*js.*Bsf(2:nSF+1,1).*cosh(k*js.*(z(i)+h0))... + ./cosh(js*k*h0) .*sin(k*js*(x0-cSF*time))) + uSF(i-1,1)*uxSF(i-1,1) ... + + wSF(i-1,1)*uzSF(i-1,1); + wtSF(i-1,1)=-sum(om*js.*Bsf(2:nSF+1,1).*cosh(k*js.*(z(i)+h0))... + ./cosh(js*k*h0) .*cos(k*js*(x0-cSF*time))) + uSF(i-1,1)*wxSF(i-1,1) ... + + wSF(i-1,1)*wzSF(i-1,1); +end +% +% Potential and velocities +% +ifig=ifig+1; figure(ifig); +plot(phi(it,2:nz,ipc),z(2:nz),'-+',phiSF(:,1),z(2:nz),'o',... + u(it,2:nz,ipc),z(2:nz),'-+',uSF(:,1),z(2:nz),'o',... + w(it,2:nz,ipc),z(2:nz),'-+',wSF(:,1),z(2:nz),'o') +legend('\phi','\phi_e','u','u_e','w','w_e','Location','SouthEast'); +ylabel('z/L'); +title('Crest values'); grid on +% +% Gradient of the velocities +% +ifig=ifig+1; figure(ifig); +plot(uz(it,2:nz,ipc),z(2:nz),'-+',uzSF(:,1),z(2:nz),'o',... + ux(it,2:nz,ipc),z(2:nz),'-+',uxSF(:,1),z(2:nz),'o',... + wz(it,2:nz,ipc),z(2:nz),'-+',wzSF(:,1),z(2:nz),'o',... + wx(it,2:nz,ipc),z(2:nz),'-+',wxSF(:,1),z(2:nz),'o'); +legend('u_z','(u_z)_e','u_x','(u_x)_e','w_z','(w_z)_e','w_x','(w_x)_e','Location','SouthEast'); +ylabel('z/L'); +title('Crest values'); grid on +% +% Errors in the Laplacian of phi and cross derivatives. +% +ifig=ifig+1; figure(ifig); +plot(ux(it,2:nz,ipc)+wz(it,2:nz,ipc),z(2:nz),'-+',... + uz(it,2:nz,ipc)-wx(it,2:nz,ipc),z(2:nz),'-+'); +legend('Errors in u_x+w_z','Errors in u_z-w_x','Location','SouthEast'); +ylabel('z/L'); +title('Crest values'); grid on +% +% Pressure and Lagrangian particle acceleration +% +utL=ut+u.*ux+w.*uz; +wtL=wt+u.*wx+w.*wz; +% +ifig=ifig+1; figure(ifig); +plot(p(it,2:nz,ipc),z(2:nz),'-+',pSF(:,1),z(2:nz),'o',... + utL(it,2:nz,ipc),z(2:nz),'-+',utSF(:,1),z(2:nz),'o',... + wtL(it,2:nz,ipc),z(2:nz),'-+',wtSF(:,1),z(2:nz),'o') +legend('p','p_e','u_t','(u_t)_e','w_t','(w_t)_e','Location','SouthWest'); +ylabel('z/L'); +title('Crest values of p and Lagrangian accelerations'); grid on + +%% +% Compare the kinematics near the peak vertical velocity. This is +% hard-coded to the 16 points per wavelength resolution. +% +ipc=ip0+ppw/2+4; +z=sigma*(h(ipc,1)+eta(it,ipc))-h(ipc,1); x0=x(ipc,1); eta0=eta2(ppw/2+5,1); +for i=2:length(z) + phiSF(i-1,1)=((cSF-Bsf(1,1))*x0... + +sum(Bsf(2:nSF+1,1)./(js*k).*cosh(k*js.*(z(i)+h0))... + ./cosh(js*k*h0) .*sin(k*js*(x0-cSF*time)))); + uSF(i-1,1)=((cSF-Bsf(1,1))... + +sum(Bsf(2:nSF+1,1).*cosh(k*js.*(z(i)+h0))... + ./cosh(js*k*h0) .*cos(k*js*(x0-cSF*time)))); + uxSF(i-1,1)=(-sum(k*js.*Bsf(2:nSF+1,1).*cosh(k*js.*(z(i)+h0))... + ./cosh(js*k*h0) .*sin(k*js*(x0-cSF*time)))); + uzSF(i-1,1)=sum(k*js.*Bsf(2:nSF+1,1).*sinh(k*js.*(z(i)+h0))... + ./cosh(js*k*h0) .*cos(k*js*(x0-cSF*time))); + wSF(i-1,1)=sum(Bsf(2:nSF+1,1).*sinh(k*js.*(z(i)+h0))... + ./cosh(js*k*h0) .*sin(k*js*(x0-cSF*time))); + wxSF(i-1,1)=sum(k*js.*Bsf(2:nSF+1,1).*sinh(k*js.*(z(i)+h0))... + ./cosh(js*k*h0) .*cos(k*js*(x0-cSF*time))); + wzSF(i-1,1)=sum(k*js.*Bsf(2:nSF+1,1).*cosh(k*js.*(z(i)+h0))... + ./cosh(js*k*h0) .*sin(k*js*(x0-cSF*time))); + pSF(i-1,1)=-(-sum(cSF*Bsf(2:nSF+1,1).*cosh(k*js.*(z(i)+h0))... + ./cosh(js*k*h0) .*cos(k*js*(x0-cSF*time))) + .5*(uSF(i-1,1).^2 ... + + wSF(i-1,1).^2)); + % Lagrangian particle accelerations in the horizontal and vertical: + utSF(i-1,1)=sum(om*js.*Bsf(2:nSF+1,1).*cosh(k*js.*(z(i)+h0))... + ./cosh(js*k*h0) .*sin(k*js*(x0-cSF*time))) + uSF(i-1,1)*uxSF(i-1,1) ... + + wSF(i-1,1)*uzSF(i-1,1); + wtSF(i-1,1)=-sum(om*js.*Bsf(2:nSF+1,1).*cosh(k*js.*(z(i)+h0))... + ./cosh(js*k*h0) .*cos(k*js*(x0-cSF*time))) + uSF(i-1,1)*wxSF(i-1,1) ... + + wSF(i-1,1)*wzSF(i-1,1); +end + +ifig=ifig+1; figure(ifig); +plot(phi(it,2:nz,ipc),z(2:nz),'-+',phiSF(:,1),z(2:nz),'o',... + u(it,2:nz,ipc),z(2:nz),'-+',uSF(:,1),z(2:nz),'o',... + w(it,2:nz,ipc),z(2:nz),'-+',wSF(:,1),z(2:nz),'o') +legend('\phi','\phi_e','u','u_e','w','w_e','Location','SouthEast'); +ylabel('z/L'); +title('Near the peak vertical vel.'); grid on + +ifig=ifig+1; figure(ifig); +plot(uz(it,2:nz,ipc),z(2:nz),'-+',uzSF(:,1),z(2:nz),'o',... + ux(it,2:nz,ipc),z(2:nz),'-+',uxSF(:,1),z(2:nz),'o',... + wz(it,2:nz,ipc),z(2:nz),'-+',wzSF(:,1),z(2:nz),'o',... + wx(it,2:nz,ipc),z(2:nz),'-+',wxSF(:,1),z(2:nz),'o'); +legend('u_z','(u_z)_e','u_x','(u_x)_e','w_z','(w_z)_e','w_x','(w_x)_e','Location','SouthEast'); + +ylabel('z/L'); +title('Near the peak vertical vel.'); grid on + +ifig=ifig+1; figure(ifig); +plot(ux(it,2:nz,ipc)+wz(it,2:nz,ipc),z(2:nz),'-+',... + uz(it,2:nz,ipc)-wx(it,2:nz,ipc),z(2:nz),'-+'); +legend('Errors in u_x+w_z','Errors in u_z-w_x','Location','SouthEast'); +ylabel('z/L'); +title('Near the peak vertical vel.'); grid on +% +% Pressure and Lagrangian acceleration +% +utL=ut+u.*ux+w.*uz; +wtL=wt+u.*wx+w.*wz; +% +ifig=ifig+1; figure(ifig); +plot(p(it,2:nz,ipc),z(2:nz),'-+',pSF(:,1),z(2:nz),'o',... + utL(it,2:nz,ipc),z(2:nz),'-+',utSF(:,1),z(2:nz),'o',... + wtL(it,2:nz,ipc),z(2:nz),'-+',wtSF(:,1),z(2:nz),'o') +legend('p','p_e','u_t','(u_t)_e','w_t','(w_t)_e','Location','SouthEast'); +ylabel('z/L'); +title('p and Lagrangian acceleration near peak w'); grid on diff --git a/utils/matlab/Analysis/StreamFunctionCoefficients.m b/utils/matlab/Analysis/StreamFunctionCoefficients.m new file mode 100644 index 0000000..45f89c5 --- /dev/null +++ b/utils/matlab/Analysis/StreamFunctionCoefficients.m @@ -0,0 +1,182 @@ +function [c,q,R,k,eta,B,exitflag]=StreamFunctionCoefficients(n,H,h,... + TorL,intype,uEorS,EorS,nsteps,g) +% +% This function computes the stream function theory solution for a wave of +% period T or wavelength L, height H, and mean Stokes drift/Eulerian +% velocity uEorS in water depth h using n modes and nsteps +% in nonlinearity. +% +% intype='T' treats TorL as an input wave period T. +% intype='L' treats TorL as an input wavelength L. +% +% EorS='Euler' treats uEorS as the Eulerian mean velocity. +% EorS='Stokes' treats uEorS as the Stokes drift velocity. +% +% The returned solution is the celerity c, the flux q, the Bernoulli +% constant R, the wavenumber k, eta(1:n+1) the elevation at n+1 evenly +% spaced points from crest to trough, and the coefficients B(1:n+1)=B_j, +% j=0:n where +% +% psi(x,z) = -B_0 z +% + sum_{j=1}^n B_j/(jk) sinh(jk(z+h))/cosh(jkh) cos(jkx) +% +% is the stream function. The corresponding velocity components are +% obtained by differentiating this expression: +% +% (u,w)=(dpsi/dz, -dpsi/dx). +% +% The implementation follows the theory described in: J.D. Fenton. +% The numerical solution of steady water wave problems. +% Comput. Geosci. 14:3, 357-68. 1988. +% +% Written by Harry B. Bingham. Modified by Raphael Mounet to support both +% wave length and period as input. +% +% This version: 20.04.2020 + +switch intype + case 'T' + T = TorL; omega = 2*pi/T; + syms k; k0 = eval(vpasolve(omega^2-g*k*tanh(k*h)==0,k,0.05)); + clear k; + L0 = 2*pi/k0; c0 = L0/T; + % + % The variables are ordered: x=[c,q,R,(eta_j,j=0:n),(B_j,j=0:n),k] + % Provide the initial guess based on linear theory: + % + H0=H; H=H0/nsteps; + x0=[c0 0 g/(2*k0)*tanh(k0*h) H/2*cos((0:n).*pi/n) ... + c0 g*H/2*T/L0 zeros(1,n-1) k0]; + + case 'L' + L = TorL; k = 2*pi/L; + T0 = 2*pi/sqrt(g*k*tanh(k*h)); c0 = L/T0; + % + % The variables are ordered: x=[c,q,R,(eta_j,j=0:n),(B_j,j=0:n)] + % Provide the initial guess based on linear theory: + % + H0=H; H=H0/nsteps; + x0=[c0 0 g/(2*k)*tanh(k*h) H/2*cos([0:n]*pi/n) ... + c0 g*H/2*T0/L zeros(1,n-1)]; + + otherwise + error('intype must be either "T" or "L".'); +end +% +% Find the solution using a "paramatrized" function to work out the +% right hand sides of the stream function theory solution: +% +options=optimset('MaxFunEvals',5000,'MaxIter',2000); +[x,fval,exitflag]=fsolve(@(x) ... + fStreamFunc(x,n,H,h,TorL,intype,uEorS,EorS,g),x0,options); +% +% Iterate up to the full height in nsteps, with the initial guess +% extrapolated from the previous solution. +% +for is=2:nsteps + H=is*H0/nsteps; x0=2*x-x0; + [x,fval,exitflag]=fsolve(@(x) ... + fStreamFunc(x,n,H,h,TorL,intype,uEorS,EorS,g),x0,options); +end +% +% Extract the solution from the final solution vector: +% +c=x(1); q=x(2); R=x(3); +eta=x(4:4+n); B=x(n+5:2*n+5); +if length(x)==2*n+6 + k=x(end); +end + + function F=fStreamFunc(x,n,H,h,TorL,intype,uEorS,EorS,g) + % + % A function to evaluate the stream function theory right hand sides + % + % The variables are: + % x = [c,q,R,(eta_j,j=0:n),(B_j,j=0:n),k] if k is unknown (case + % with intype = 'T'), + % or x = [c,q,R,(eta_j,j=0:n),(B_j,j=0:n)] if k is already + % specified (case with intype = 'L') + % + % The equations are: + % eta_0-eta_n-H=0 + % eta_0+eta_n+sum_{j=1}^{n-1} eta_j = 0 + % for EorS='Euler' + % -c + uEorS + B_0 = 0 + % for EorS='Stokes' + % (-c + uEorS + B_0)h = q + % + % Equations 4:4+n are the kinematic conditions at each x: + % psi(eta) = q + % + % Equations 4+n+1:2n+5 are the dynamic conditions at each x: + % g eta + 1/2(u^2+w^2) = R + % + % Equation 2n+6 is involved only if k is unknown and it + % corresponds to the definition of the phase velocity c: + % k-2*pi/(c*T) = 0 + % + + js=1:n; + + F(1)=x(4)-x(4+n)-H; + F(2)=x(4)+x(4+n)+2*sum(x(5:4+n-1)); + + switch EorS + case 'Euler' + F(3)=-x(1)+uEorS+x(n+5); + case 'Stokes' + F(3)=(-x(1)+uEorS+x(n+5))*h-x(2); + otherwise + error('EorS must be either "Euler" or "Stokes".'); + end + + switch intype + case 'T' + T = TorL; + % Loop over the n-points from crest (x=0) to trough (x=L/2) + for i=0:n + % The stream function and velocity at this point x: + psi=-x(n+5)*x(4+i)... + +sum(x(n+6:2*n+5)./(js*x(end)).*sinh(x(end)*js.*... + (x(4+i)+h))./cosh(js*x(end)*h).*cos(js*i*pi/n)); + u=-x(n+5) ... + +sum(x(n+6:2*n+5).*cosh(x(end)*js.*(x(4+i)+h))... + ./cosh(js*x(end)*h).*cos(js*i*pi/n)); + w= sum(x(n+6:2*n+5).*sinh(x(end)*js.*(x(4+i)+h))... + ./cosh(js*x(end)*h).*sin(js*i*pi/n)); + + % The kinematic condition: psi(eta)=q + F(4+i)=psi-x(2); + + % The dynamic condition: g eta + 1/2(u^2+w^2)=R + F(4+n+1+i)=g*x(4+i) + 1/2*(u^2 + w^2) - x(3); + end + F(2*n+6)=x(end)-2*pi/(x(1)*T); + + case 'L' + k = 2*pi/TorL; + % Loop over the n-points from crest (x=0) to trough (x=L/2) + for i=0:n + + % The stream function and velocity at this point x + psi=-x(n+5)*x(4+i)... + +sum(x(n+6:2*n+5)./(js*k).*sinh(k*js.*(x(4+i)+h))... + ./cosh(js*k*h).*cos(js*i*pi/n)); + u=-x(n+5) ... + +sum(x(n+6:2*n+5).*cosh(k*js.*(x(4+i)+h))... + ./cosh(js*k*h).*cos(js*i*pi/n)); + w= sum(x(n+6:2*n+5).*sinh(k*js.*(x(4+i)+h))... + ./cosh(js*k*h).*sin(js*i*pi/n)); + + % The kinematic condition: psi(eta)=q + F(4+i)=psi-x(2); + + % The dynamic condition: g eta + 1/2(u^2+w^2)=R + F(4+n+1+i)=g*x(4+i) + 1/2*(u^2 + w^2) - x(3); + end + + otherwise + error('intype must be either "T" or "L".'); + end + end +end \ No newline at end of file diff --git a/utils/matlab/IO/ReadKinematics.m b/utils/matlab/IO/ReadKinematics.m index 171df38..6968f4f 100644 --- a/utils/matlab/IO/ReadKinematics.m +++ b/utils/matlab/IO/ReadKinematics.m @@ -15,8 +15,8 @@ % % Turn this flag on to compute time-derivatives and pressures. % -% Pressure='yes'; -Pressure='no'; +Pressure='yes'; +% Pressure='no'; % % Turn this flag on to plot up the data. What is plotted is controlled % after the reading block. @@ -95,8 +95,9 @@ % eta=zeros(nt,nx,ny); etax=zeros(nt,nx,ny); etay=zeros(nt,nx,ny); phi=zeros(nt,nz,nx,ny); w=zeros(nt,nz,nx,ny); -u=zeros(nt,nz,nx,ny); uz=zeros(nt,nz,nx,ny); -v=zeros(nt,nz,nx,ny); vz=zeros(nt,nz,nx,ny); wz=zeros(nt,nz,nx,ny); +u=zeros(nt,nz,nx,ny); uz=zeros(nt,nz,nx,ny); ux=u; uy=u; +v=zeros(nt,nz,nx,ny); vz=zeros(nt,nz,nx,ny); vx=v;vy=v; +wz=zeros(nt,nz,nx,ny); wx=w; wy=w; t=[0:nt-1]*dt*tstride; % The time axis % % Read in the solution variables eta, gradeta, phi, u, v, w, dudz, dvdz. @@ -144,38 +145,78 @@ [tmp,count]=fread(fid1,nx*ny*nz,'double'); % Check for an incomplete run. if count==0, it=it-1; break; end + wx(it,:)=tmp; + junk = fread(fid1,2,int_nbit); + % + [tmp,count]=fread(fid1,nx*ny*nz,'double'); + % Check for an incomplete run. + if count==0, it=it-1; break; end + wy(it,:)=tmp; + junk = fread(fid1,2,int_nbit); + % + [tmp,count]=fread(fid1,nx*ny*nz,'double'); + % Check for an incomplete run. + if count==0, it=it-1; break; end uz(it,:)=tmp; junk = fread(fid1,2,int_nbit); % [tmp,count]=fread(fid1,nx*ny*nz,'double'); % Check for an incomplete run. if count==0, it=it-1; break; end + ux(it,:)=tmp; + junk = fread(fid1,2,int_nbit); + % + [tmp,count]=fread(fid1,nx*ny*nz,'double'); + % Check for an incomplete run. + if count==0, it=it-1; break; end + uy(it,:)=tmp; + junk = fread(fid1,2,int_nbit); + % + [tmp,count]=fread(fid1,nx*ny*nz,'double'); + % Check for an incomplete run. + if count==0, it=it-1; break; end vz(it,:)=tmp; junk = fread(fid1,2,int_nbit); + % + [tmp,count]=fread(fid1,nx*ny*nz,'double'); + % Check for an incomplete run. + if count==0, it=it-1; break; end + vx(it,:)=tmp; + junk = fread(fid1,2,int_nbit); + % + [tmp,count]=fread(fid1,nx*ny*nz,'double'); + % Check for an incomplete run. + if count==0, it=it-1; break; end + vy(it,:)=tmp; + junk = fread(fid1,2,int_nbit); end display(['Read ',num2str(it),' data points out of ',num2str(nt)]) %% switch Pressure case 'yes' % - % Compute the pressure and acceleration from the standard output - % kinematics. This is only done along the first slice in y for 3D - % problems. + % Compute the pressure and fluid acceleration from the standard + % output kinematics. This is only done along the first slice in y + % for 3D problems. % - % Build the 4th-order even grid time differentiation matrix + % Build the 4th-order, even grid time-differentiation matrix % alpha=2; r=2*alpha+1; c=BuildStencilEven(alpha,1); + % Put in the centered schemes everywhere: Dt=spdiags([ones(nt,1)*c(:,alpha+1)'],[-alpha:alpha],nt,nt); + % Correct the boundary points with one-sided schemes: for j=1:alpha Dt(j,:)=0; Dt(j,1:r)=c(:,j)'; Dt(nt-j+1,:)=0; Dt(nt-j+1,nt-r+1:nt)=c(:,r-j+1)'; end - Dt=Dt/dt; + Dt=Dt/dt; % Scale with dt. % - % Compute time-derivatives of eta, phi, and u and eta_tt + % Compute the Eulerian time-derivatives of eta, phi, u, w, the + % second time-derivative of eta, and the pressure. % - % ip=input('x point index to work with?'); etat=zeros(nt,nx); etatt=etat; phit=zeros(nt,nz,nx); p=phit; ut=p; + wt=p; + for ip=1:nx etat(:,ip)=Dt*eta(:,ip); etatt(:,ip)=Dt*etat(:,ip); % @@ -183,6 +224,7 @@ phit(:,j,ip)=Dt*phi(:,j,ip)-w(:,j,ip).*sigma(j).*etat(:,ip); p(:,j,ip)=-(phit(:,j,ip)+1/2*(u(:,j,ip).^2+w(:,j,ip).^2)); ut(:,j,ip)=Dt*u(:,j,ip)-uz(:,j,ip).*sigma(j).*etat(:,ip); + wt(:,j,ip)=Dt*w(:,j,ip)-wz(:,j,ip).*sigma(j).*etat(:,ip); end end end diff --git a/utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m b/utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m index 172a7a8..33e5d4b 100644 --- a/utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m +++ b/utils/matlab/visualization/ShowFreeSurfaceEvolution2D.m @@ -21,13 +21,13 @@ %************************************************************************ % *** Set these values to correspond to the run at hand.*** initialstep = 0; -Nsteps = 400; %915; -jump = 20; -dt = .0245 +Nsteps = 600; %915; +jump = 30; +dt = .0525; g = 9.81; -plotmethod = 1; % 1-> 2D, 2->3D +plotmethod = 2; % 1-> 2D, 2->3D Amax=.1;%10*50*0.125; % To set the scale of the z-axis plot -IOmethod = 1; %0:binary ; 1:classical unformatted ; 2:unformatted ftn95 +IOmethod = 0; %0:binary ; 1:classical unformatted ; 2:unformatted ftn95 fac = 1; %1e-1; % %************************************************************************