diff --git a/docs/documentation/acousticSubstepping.md b/docs/documentation/acousticSubstepping.md new file mode 100644 index 0000000000..14ed71df93 --- /dev/null +++ b/docs/documentation/acousticSubstepping.md @@ -0,0 +1,266 @@ +@page acousticSubstepping Split-Explicit Acoustic Substepping (Low-Mach) + +# Split-Explicit Acoustic Substepping + +This page describes the `acoustic_substepping` time integrator, which relaxes the +acoustic-CFL time-step restriction at low Mach number without introducing any global +(elliptic / pressure-Poisson) solve. For the parameters that activate it, see +@ref case "Case Files". + +## Motivation + +An explicit compressible solver is limited by the acoustic CFL condition, + +\f[ \Delta t \;\lesssim\; \frac{\Delta x}{|u| + c}, \f] + +where \f$c\f$ is the sound speed. When \f$c \gg |u|\f$ (low Mach number \f$M = |u|/c \ll 1\f$), +this step is a factor of \f$\sim 1/M\f$ smaller than the time scale on which the flow +itself evolves, \f$\Delta x/|u|\f$. The solver then spends almost all of its work +resolving fast acoustic waves that carry little of the dynamics. + +Pressure-projection and implicit-acoustic methods remove this restriction but require a +global elliptic solve for the pressure each step. The associated global reductions and +sparse linear solves scale poorly on GPU clusters. Acoustic substepping keeps the solver +fully explicit, with the same nearest-neighbor halo-exchange communication pattern as the +standard time stepper, and is well suited to GPU/exascale hardware. + +The scheme follows the split-explicit approach of atmospheric dynamical cores +(Klemp, Wicker & Skamarock; Wicker & Skamarock, *Mon. Wea. Rev.* 2002), adapted to MFC's +Godunov finite-volume framework after Nazari & Nair, *J. Adv. Model. Earth Syst.* 2017. + +## Method + +Each SSP-RK3 stage splits the governing equations into a **slow** (advective) part, +advanced once at the large advective step \f$\Delta t \sim \Delta x / |u|\f$, and a +**fast** (acoustic) part subcycled on \f$n_s \approx (|u|+c)/|u|\f$ micro-steps of size +\f$\Delta\tau = \Delta t / n_s\f$: + +| Term | Mode | Discretization | +|------|------|----------------| +| Momentum advection \f$\nabla\!\cdot(\rho \mathbf{u}\otimes\mathbf{u})\f$ | slow | WENO + Riemann (contact-speed dissipation) | +| Volume-fraction and viscous/source terms | slow | existing schemes | +| Mass transport \f$\nabla\!\cdot(\alpha_k\rho_k \mathbf{u})\f$ | fast | 2nd-order centered, subcycled | +| Energy transport \f$\nabla\!\cdot((\rho E + p)\mathbf{u})\f$ | fast | 2nd-order centered, subcycled | +| Pressure gradient \f$\nabla p\f$ (momentum) | fast | 2nd-order centered, subcycled | + +The expensive WENO + Riemann flux is evaluated once per RK stage and held frozen during +the subcycle, while each acoustic micro-step is a low-order stencil. Because the costly +work runs at the advective rate rather than the acoustic rate, the wall-clock cost drops +by roughly \f$O(1/M)\f$ relative to the standard explicit scheme. + +### Slow flux + +The slow flux reuses the HLLC Riemann solver with two modifications, both active only +when `acoustic_substepping` is set: the pressure term is removed from the momentum and +energy flux (it is handled by the subcycle), and the numerical dissipation is capped to +the contact wave speed \f$s_\star\f$. The latter is essential: the standard HLLC +dissipation scales with \f$|u| \pm c\f$, which is unstable at the advective time step; +restricting it to \f$s_\star\f$ makes the convective flux \f$|u|\f$-stable. Low-Mach +accuracy of the convective flux is handled by the existing `low_Mach` correction. + +### Acoustic substep + +The acoustic micro-step (`s_acoustic_substep` in `src/simulation/m_acoustic_substep.fpp`) +performs a forward–backward update: mass and energy transport are advanced first, the +pressure is recomputed from the equation of state, and the momentum is then advanced with +the new pressure gradient. The frozen slow forcing is added as a \f$\Delta\tau\f$-scaled +source at each micro-step. To suppress the acoustic noise that a centered scheme would +otherwise accumulate, a grad–div divergence damping term is applied; its discrete operator +is rank-one and therefore annihilates discretely divergence-free (vortical) modes, damping +only the compressive/acoustic content. The forward sweep computes flux divergences from a +frozen snapshot of the conserved state and applies them afterward, which keeps the scheme +species-mass conservative. + +### Two-tier flux at discontinuities + +A purely centered acoustic substep rings at a sharp jump. To handle embedded +discontinuities the substep runs **two tiers**, selected per face each RK stage by a +discontinuity criterion: + +- **Smooth tier (default).** The cheap 2nd-order centered transport above, used wherever + the flow is smooth. This is the low-Mach-accurate, low-cost path and is bit-identical to + the pre-shock-capture scheme on a smooth field. +- **Robust tier (flagged faces).** At a flagged face the centered mass and energy + convective fluxes are replaced by the **full HLLC** flux (the convective Riemann flux + `s_convective_face_flux` plus the acoustic star-pressure flux `s_acoustic_face_flux`) + built on one consistently WENO-reconstructed left/right state. The per-component delta is + applied through the same single-valued telescoping structure, so species mass and total + energy remain exactly conservative. Total energy at the face is rebuilt from the + reconstructed primitives via the stiffened-gas mixture EOS. + +The robust tier replaces the **mass, energy, and momentum** convective transport with full +HLLC. Mass and energy are made live directly from the reconstructed left/right state. The +**convective momentum** flux is also made live, but through a live-minus-frozen delta: the +slow (HLLC) path already computes an exact per-face convective-momentum flux at the RK stage +state, which `s_compute_rhs` stores; the substep subtracts that stored flux and adds the +live `s_convective_face_flux` value. Subtracting the *stored* stage-entry flux (rather than a +reconstruction of it) makes the slow/frozen cancellation exact on every RK stage, which is +what keeps the scheme stable when convective momentum transport is leading order — i.e. at a +**propagating shock**. The transverse (off-normal) momentum slots of the rotated HLLC flux +are mapped back into the stored global-component flux through the same single-valued +telescoping delta, so transverse momentum is transported consistently in multiple +dimensions (validated in 2D, below). Only the acoustic star-pressure momentum, which the +slow path omits under `acoustic_substepping`, is added on top. + +With this, **propagating shocks and shock–interface interactions are captured** in split +mode, not merely material contacts. The per-component delta is applied through a +single-valued telescoping face flux, so species mass and total energy remain exactly +conservative (drift \f$\sim 10^{-16}\f$). Total energy at the face is rebuilt from the +reconstructed primitives via the stiffened-gas mixture EOS. + +The criterion (`s_acoustic_flag`) flags a face when either +- the largest per-cell pressure jump over the 4-point stencil exceeds \f$\sim 1\%\f$ of the + local pressure scale (a scale-invariant, `weno_eps`-independent max-indicator test), or +- the volume-fraction variation \f$|\Delta\alpha|\f$ across the face exceeds a small + threshold (the material-interface flag). + +The flag mask is computed once from the stage-entry state and held fixed for that stage's +microsteps; the reconstruction is **conditional** (skipped entirely when no face on the +rank is flagged), so the smooth-flow cost — and the \f$O(1/M)\f$ speedup — is preserved. +Because both flux entries hardcode the direct wave-speed estimate, the robust tier requires +``wave_speeds = 'direct'`` (enforced at input checking). + +### Time step + +`s_compute_dt` sets \f$\Delta t\f$ from the advective CFL (using \f$|u|\f$, not +\f$|u|+c\f$) and computes \f$n_s\f$ from a domain-maximum reduction of +\f$(|u|+c)/|u|\f$. The only global collective is that existing time-step reduction. + +### Temporal accuracy + +The Wicker–Skamarock RK3 macro coupling is **second-order accurate in the advective +step** \f$\Delta t\f$ when the acoustic micro-step \f$\Delta\tau\f$ is held fixed (i.e. +\f$n_s\f$ scaled with \f$\Delta t\f$ so the acoustic CFL is constant). A fixed-grid +\f$\Delta t\f$-refinement of a smooth translating low-Mach vortex gives an \f$L_2\f$ +convergence rate of the conserved vector of \f$\approx 2.0\f$ in this regime +(see `examples/2D_isentropic_vortex_lowmach_tconv`). + +The forward–backward acoustic micro-step is itself a symplectic-Euler update, which is +first-order accurate in \f$\Delta\tau\f$. With the recommended auto substep count +(\f$n_s \approx (|u|+c)/|u|\f$ set by the Mach number), \f$\Delta\tau \propto \Delta t\f$, +so refining \f$\Delta t\f$ refines \f$\Delta\tau\f$ in lockstep and the practical +convergence rate is first order — the standard behaviour of a split-explicit / +forward-backward scheme. The acoustic substep is therefore well suited to its design +purpose (resolving the fast waves cheaply at a fixed acoustic CFL) rather than to +asymptotic \f$\Delta t \to 0\f$ refinement. + +## Usage + +| Parameter | Type | Description | +|-----------|------|-------------| +| `acoustic_substepping` | Logical | Enable the split-explicit low-Mach integrator | +| `n_acoustic_substeps` | Integer | Fixed substep count; `0` auto-computes it each step (recommended) | +| `acoustic_div_damp` | Real | Dimensionless grad–div damping coefficient (default `0.1`; stable for \f$\lesssim 0.5/\text{num\_dims}\f$) | + +The mode requires `model_eqns = 2` (5-equation model), a CFL-based time step +(`cfl_adap_dt` or `cfl_const_dt`), and `time_stepper = 3` (SSP-RK3). These constraints are +enforced at input checking. It is incompatible with Lagrangian bubbles, QBMM, immersed +boundaries, (hypo/hyper)elasticity, chemistry, and phase change. Euler-Euler bubbles are +supported in a restricted regime (`adv_n = T`); see *Euler-Euler bubbles* below. + +```python +"model_eqns": 2, +"time_stepper": 3, +"cfl_adap_dt": "T", +"cfl_target": 0.5, +"acoustic_substepping": "T", +"n_acoustic_substeps": 0, +"acoustic_div_damp": 0.1, +``` + +Multiple fluids (`num_fluids > 1`) are supported: the subcycle uses the stiffened-gas +mixture equation of state and mixture velocity, and advects the volume fractions on the +slow step. For `num_fluids = 1` the path reduces exactly to the single-fluid expressions. + +The mode runs on CPU and on GPU through both OpenACC and OpenMP target offload, using the +backend-agnostic `GPU_*` macros (see @ref gpuParallelization "GPU Parallelization"). + +## Scope and limitations + +- **Smooth low-Mach flow** and **material interfaces** are in scope. On a smooth field the + scheme is bit-identical to the standard solver on the smooth tier and recovers the full + \f$O(1/M)\f$ per-step speedup (a smooth 2D \f$M=0.1\f$ case measures \f$\approx 5.9\times\f$ + overall, with the blended cost ratio back near the all-smooth value once the conditional + reconstruction skips the unflagged field). At a material interface — resolved or + 1-cell-sharp — the robust tier keeps the solution non-oscillatory (bounded few-percent + pressure ringing) and species mass exactly conservative (drift \f$\sim 10^{-16}\f$), with + the interface slightly more diffused than full HLLC. +- **Propagating shocks and shock–interface interactions are now captured** at flagged faces + via the live full-HLLC two-tier flux (mass, energy, and convective momentum all live; see + *Two-tier flux at discontinuities*). Validated cases (all with stable BCs, see below): + - A 1D periodic shock tube (`examples/1D_shock_periodic_lowmach`): stable, non-oscillatory, + species mass conserved to \f$\sim 10^{-16}\f$, matching full HLLC at the same resolution + to \f$\approx 3\text{–}5\%\f$ \f$L_2\f$ on the conserved fields. + - A 2D periodic shock with transverse shear (`examples/2D_shock_transverse_lowmach`), + which exercises the off-normal momentum path: **both** momentum components match full + HLLC to \f$\approx 5\text{–}7\%\f$ \f$L_2\f$, the transverse velocity stays uniform in + the homogeneous direction to \f$\sim 10^{-15}\f$ (no spurious transverse momentum from + the rotated-flux mapping), mass drift \f$\sim 10^{-16}\f$, no overshoot. + - A 2D periodic multifluid shock–droplet (`examples/2D_shockdroplet_lowmach`, + `num_fluids = 2`): stable, non-oscillatory, per-species mass conserved to + \f$\sim 10^{-16}\f$, volume fraction bounded, matching full HLLC to \f$\approx 4\text{–}7\%\f$ + \f$L_2\f$. + Accuracy caveat: because each acoustic micro-step is first-order in \f$\Delta\tau\f$ (the + forward–backward update is symplectic-Euler; the macro coupling is 2nd-order — see + *Temporal accuracy*), the captured front is a few cells more dissipative than full HLLC, + and the dissipation accumulates over a long run (the multifluid droplet, run for many more + steps, shows the largest peak-amplitude loss). For `num_fluids > 1` the face EOS is rebuilt + from the **cell** volume fractions (exact only for `num_fluids = 1`); this does not + destabilize or introduce oscillations at the tested multifluid shock, but it adds + dissipation there — reconstructing the mixture EOS coefficients at the face is a future + accuracy refinement. +- **The centered smooth tier is unstable at extrapolation/outflow boundaries with a + background flow.** A uniform outflow cell carrying a mean flow can go NaN, because the + centered (non-upwind) acoustic transport has no boundary dissipation there. This is + independent of the shock-capture machinery. Keep discontinuities away from outflow + boundaries, or use stable BCs (periodic, or reflecting/slip walls) near them; all of the + validated cases above are periodic for this reason. Robustifying the smooth tier at + outflow boundaries is future work. +- The macro (WS-RK3) coupling is second-order in the advective step at fixed acoustic CFL; + with auto substeps (\f$\Delta\tau \propto \Delta t\f$) the symplectic-Euler micro-step + makes the practical convergence first order (see *Temporal accuracy* above). Spatial + order is unaffected. +- Restricted to `model_eqns = 2`. + +### Euler-Euler bubbles + +Euler-Euler (volume-averaged) bubbles are supported in a **restricted regime**. When +`bubbles_euler = T`, the bubble dynamics are **co-subcycled** with the acoustic substep: +each acoustic micro-step advances the bubble Rayleigh-Plesset/Keller-Miksis state on the +*live* (post-substep) pressure using the live velocity divergence, and the bubble-aware +equation of state feeds the void fraction back before the next micro-step. The co-subcycle +requires `adv_n = T` (the void fraction is recovered from the transported number density); +this is enforced at input checking. A worked case is +`examples/1D_bubble_acoustic_lowmach` (run it with `MFC_SPLIT=T` vs `MFC_SPLIT=F`). + +Intended use is **moderately driven, spatially smooth, dilute bubbly low-Mach flow**. +Within that regime the scheme is stable, keeps the void fraction bounded and positive, and +conserves carrier mass and total energy to machine precision (the substep transport is +telescoping, so conservation is unaffected by the bubbles). The acoustically driven +**equivalent radius** \f$R(t)\f$ tracks the standard adaptive bubble solver in sign, +magnitude, and time-trend. + +Known limitations (validated, not yet addressed): +- **Violent single-bubble collapse is out of scope.** Strong forcing drives the adaptive + bubble sub-integrator to a stiffness convergence failure (`Adaptive time stepping failed + to converge`) regardless of the acoustic substep count — raising `n_acoustic_substeps` + does not cure it, because the failure is bubble-ODE stiffness, not an acoustic-CFL issue. +- **Sharp void-fraction discontinuities (bubble screens) are out of scope.** A bubbly + layer with a step change in void fraction drives the co-subcycle to non-convergence on + the first large advective step, even at gentle forcing and high substep counts. Keep the + void fraction spatially smooth. +- **Void-fraction response lags.** The bubble *radius* is co-subcycled, but the bubble + *number density* rides only the slow advective transport, so the part of the void-fraction + response that comes from carrier compression is under-resolved at the acoustic rate; the + co-subcycled \f$\alpha(t)\f$ therefore under-responds relative to the standard solver + while \f$R(t)\f$ tracks it. Co-subcycling the number-density compression is future work. +- **No per-step speedup for bubbly flow.** The per-micro-step bubble integration (plus the + bubble-only halo refresh and primitive rebuild) dominates the cost, so the split step is + much more expensive than a standard step; the \f$O(1/M)\f$ reduction in step count does + not survive it. The acoustic-substep speedup is a bubble-free-flow result. + +## Source files + +- `src/simulation/m_acoustic_substep.fpp` — forward–backward subcycle kernel +- `src/simulation/m_time_steppers.fpp` — `s_split_explicit_rk` orchestration and the two-CFL `s_compute_dt` +- `src/simulation/m_riemann_solver_hllc.fpp` — slow-flux variant diff --git a/docs/documentation/case.md b/docs/documentation/case.md index 295b157315..3391970e42 100644 --- a/docs/documentation/case.md +++ b/docs/documentation/case.md @@ -488,6 +488,9 @@ See @ref equations "Equations" for the mathematical models these parameters cont | `ic_beta` | Real | Interface compression sharpness parameter (default: 1.6) | | `riemann_solver` | Integer | Riemann solver algorithm: [1] HLL*; [2] HLLC; [3] Exact*; [4] HLLD (only for MHD) | | `low_Mach` | Integer | Low Mach number correction for HLLC Riemann solver: [0] None; [1] Pressure (\cite Chen22); [2] Velocity (\cite Thornber08) | +| `acoustic_substepping` | Logical | Enable split-explicit acoustic substepping for low-Mach flows | +| `n_acoustic_substeps` | Integer | Number of acoustic substeps per flow step (0 = auto) | +| `acoustic_div_damp` | Real | Dimensionless grad-div divergence damping coefficient for acoustic substepping (default 0.1; stable for <~ 0.5/num_dims) | | `avg_state` | Integer | Averaged state evaluation method: [1] Roe average*; [2] Arithmetic mean | | `wave_speeds` | Integer | Wave-speed estimation: [1] Direct (\cite Batten97); [2] Pressure-velocity* (\cite Toro09) | | `weno_Re_flux` | Logical | Compute velocity gradient using scalar divergence theorem | diff --git a/docs/module_categories.json b/docs/module_categories.json index 1391908cad..87d663e9a3 100644 --- a/docs/module_categories.json +++ b/docs/module_categories.json @@ -4,6 +4,7 @@ "modules": [ "m_rhs", "m_time_steppers", + "m_acoustic_substep", "m_weno", "m_riemann_solvers", "m_riemann_state", diff --git a/examples/1D_acoustic_lowmach/case.py b/examples/1D_acoustic_lowmach/case.py new file mode 100644 index 0000000000..069ff9f509 --- /dev/null +++ b/examples/1D_acoustic_lowmach/case.py @@ -0,0 +1,110 @@ +#!/usr/bin/env python3 +""" +1D weakly-compressible acoustic pulse (M ≈ 0.01) — baseline harness for +acoustic_substepping (split-explicit low-Mach time integrator). + +Physics: + - Single-fluid stiffened-gas air (gamma=1.4, pi_inf=0) on a periodic domain. + - Background state: p0=101325 Pa, rho0=1.204 kg/m^3. + - Sound speed: c0 = sqrt(gamma*p0/rho0) ≈ 343 m/s. + - Background velocity: u0 = M*c0 with M=0.01 ≈ 3.43 m/s (low-Mach). + - Initial condition: small Gaussian pressure perturbation dp = 1e-3 * p0. + +Set acoustic_substepping = 'T' (and build the numerics in later tasks) to +exercise the split-explicit pathway. Default here is 'F' (baseline RK3). +""" + +import json +import math + +# Physical parameters +gamma = 1.4 +p0 = 101325.0 # background pressure [Pa] +rho0 = 1.204 # background density [kg/m^3] +c0 = math.sqrt(gamma * p0 / rho0) # ~343 m/s +Mach = 0.01 +u0 = Mach * c0 # background velocity ~3.43 m/s + +# Domain +L = 1.0 # domain length [m] +Nx = 199 # cells (m parameter) +dx = L / (Nx + 1) + +# CFL-based time stepping. In split-explicit (acoustic_substepping) mode the +# timestep is set from the ADVECTIVE CFL (uses |u|, not |u|+c), so it is ~1/Mach +# larger than the acoustic CFL; the acoustic waves are resolved by the internal +# substeps. CFL-based dt is required for split mode (it is how n_substeps is +# computed) and also works for the baseline (acoustic_substepping='F') path. +CFL = 0.5 +dt = CFL * dx / c0 # initial dt guess; the solver recomputes from cfl_target each step +t_end = L / c0 # one acoustic transit + +# Gaussian pressure pulse: dp = eps_p * p0 * exp(-((x-0.5)/sigma)^2) +# sigma = 0.05 * L (narrow pulse, well-resolved on the grid) +# Written as an analytic IC expression evaluated at cell centers. +eps_p = 1.0e-3 +sigma = 0.05 * L + +# Stiffened-gas EOS: Gamma = 1/(gamma-1), pi_inf = 0 for ideal gas +Gamma = 1.0 / (gamma - 1.0) +pi_inf = 0.0 + +print( + json.dumps( + { + # Logistics + "run_time_info": "T", + # Computational Domain Parameters + "x_domain%beg": 0.0, + "x_domain%end": L, + "m": Nx, + "n": 0, + "p": 0, + "dt": dt, + "cfl_adap_dt": "T", + "cfl_target": CFL, + "t_step_start": 0, + "n_start": 0, + "t_stop": t_end, + "t_save": t_end / 10.0, + # Simulation Algorithm Parameters + "num_patches": 1, + "model_eqns": 2, + "num_fluids": 1, + "alt_soundspeed": "F", + "mpp_lim": "F", + "mixture_err": "F", + "time_stepper": "rk3", + "weno_order": 5, + "weno_eps": 1.0e-16, + "mp_weno": "F", + "weno_avg": "F", + "mapped_weno": "F", + "null_weights": "F", + "riemann_solver": "hllc", + "wave_speeds": "direct", + "avg_state": "arithmetic", + "bc_x%beg": -1, + "bc_x%end": -1, + # Acoustic substepping (split-explicit low-Mach). Set to 'T' to exercise + # the split-explicit pathway; CFL-based dt above supports both modes. + "acoustic_substepping": "T", + # Formatted Database Files Structure Parameters + "format": "binary", + "precision": "double", + "prim_vars_wrt": "T", + "parallel_io": "F", + # Patch 1: uniform background + small Gaussian pressure pulse + "patch_icpp(1)%geometry": 1, + "patch_icpp(1)%x_centroid": 0.5 * L, + "patch_icpp(1)%length_x": L, + "patch_icpp(1)%vel(1)": u0, + "patch_icpp(1)%pres": f"{p0} + {eps_p * p0} * exp(-((x - {0.5 * L}) / {sigma})**2)", + "patch_icpp(1)%alpha_rho(1)": rho0, + "patch_icpp(1)%alpha(1)": 1.0, + # Fluid physical parameters (stiffened-gas air, ideal limit) + "fluid_pp(1)%gamma": Gamma, + "fluid_pp(1)%pi_inf": pi_inf, + } + ) +) diff --git a/examples/1D_bubble_acoustic_lowmach/case.py b/examples/1D_bubble_acoustic_lowmach/case.py new file mode 100644 index 0000000000..798beb79df --- /dev/null +++ b/examples/1D_bubble_acoustic_lowmach/case.py @@ -0,0 +1,132 @@ +#!/usr/bin/env python3 +""" +1D Euler-Euler bubble, acoustically driven, at low Mach -- acoustic-substep validation. + +Physics: + - Single carrier fluid (model_eqns=2, num_fluids=1) seeded with a dilute population of + Euler-Euler bubbles (bubbles_euler='T', adv_n='T', polytropic Rayleigh-Plesset). + - Uniform bubbly background (void fraction vf0) on a periodic [0,1] domain with a small + Gaussian pressure pulse centered at x=0.5. The pulse drives a gentle bubble response + (compression/expansion) -- a MODERATE forcing, the regime the co-subcycle targets. + - Low Mach: u0 = M*c with M=0.1 (c=sqrt(gamma)~1.18, normalised p0=rho0=1), so the split + integrator takes the advective-CFL outer step and resolves acoustics + co-subcycles the + bubble dynamics on the micro-steps. + +Primary validation (R(t)/alpha(t) match): + Run split (MFC_SPLIT=T -> acoustic_substepping='T') vs standard (MFC_SPLIT=F, the full + RK3 + adaptive bubble Strang split) at the SAME resolution and physical t_stop, and + compare the acoustically driven bubble response at the pulse-center probe. The + co-subcycled equivalent radius R(t) tracks the standard solver in sign, magnitude, and + time-trend; the void fraction alpha(t) under-responds because the bubble number density + rides the slow advective transport (see docs/documentation/acousticSubstepping.md, + "Euler-Euler bubbles"). Conservation (carrier mass + total energy) is exact and the void + fraction stays bounded and positive. + + Diagnostics (read from /D/ 1D ASCII): void fraction (prim slot eqn_idx%alf) and the + bubble radius moment at the center cell over the save sequence. + +Toggle baseline vs split via the MFC_SPLIT env var: + MFC_SPLIT=F -> acoustic_substepping='F' (standard RK3 + adaptive bubble integrator) [default] + MFC_SPLIT=T -> acoustic_substepping='T' (split-explicit, bubble dynamics co-subcycled) + +NOTE on scope: this is MODERATE forcing (0.5% pulse). A violent single-bubble collapse +(strong forcing) drives the adaptive bubble sub-integrator to a stiffness convergence +failure regardless of the acoustic substep count -- documented out of scope (see +docs/documentation/acousticSubstepping.md, "Euler-Euler bubbles"). +""" + +import json +import math +import os + +split = os.environ.get("MFC_SPLIT", "F").upper() +acoustic_substepping = "T" if split == "T" else "F" + +gamma = 1.4 +c0 = math.sqrt(gamma) # carrier sound speed ~1.183 (normalised p0=rho0=1) +Mach = 0.1 +u0 = Mach * c0 # uniform mean flow + +L = 1.0 +Nx = 99 # 100 cells, dx = 1/100 +dx = L / (Nx + 1) + +CFL = 0.5 +dt_init = CFL * dx / c0 # acoustic-CFL initial guess (cfl_adap_dt refines it) + +vf0 = 1.0e-3 # background void fraction (dilute) +pulse = 0.005 # 0.5% Gaussian pressure pulse -> MODERATE bubble forcing + +print( + json.dumps( + { + "run_time_info": "T", + "m": Nx, + "n": 0, + "p": 0, + "x_domain%beg": 0.0, + "x_domain%end": 1.0, + "bc_x%beg": -1, + "bc_x%end": -1, + "dt": dt_init, + "cfl_adap_dt": "T", + "cfl_target": CFL, + "n_start": 0, + "t_stop": 0.15, + "t_save": 0.01, + "num_patches": 1, + "model_eqns": 2, + "num_fluids": 1, + "alt_soundspeed": "F", + "mpp_lim": "F", + "mixture_err": "F", + "time_stepper": 3, + "weno_order": 5, + "weno_eps": 1.0e-16, + "mapped_weno": "F", + "null_weights": "F", + "mp_weno": "F", + "riemann_solver": 2, + "wave_speeds": 1, + "avg_state": 2, + "acoustic_substepping": acoustic_substepping, + "n_acoustic_substeps": 20, + "acoustic_div_damp": 0.4, + "format": "silo", + "precision": "double", + "prim_vars_wrt": "T", + "parallel_io": "F", + "fd_order": 1, + "probe_wrt": "T", + "num_probes": 1, + "probe(1)%x": 0.5, + # Patch 1: uniform bubbly background + Gaussian pressure pulse + "patch_icpp(1)%geometry": 1, + "patch_icpp(1)%x_centroid": 0.5, + "patch_icpp(1)%length_x": 1.0, + "patch_icpp(1)%vel(1)": u0, + "patch_icpp(1)%pres": f"1.0 + {pulse} * exp(-((x - 0.5) / 0.15)**2)", + "patch_icpp(1)%alpha_rho(1)": (1.0 - vf0) * 1.0, + "patch_icpp(1)%alpha(1)": vf0, + "patch_icpp(1)%r0": 1.0, + "patch_icpp(1)%v0": 0.0, + "fluid_pp(1)%gamma": 1.0 / (gamma - 1.0), + "fluid_pp(1)%pi_inf": 0.0, + # Euler-Euler bubbles (co-subcycled with the acoustic substep when split) + "bubbles_euler": "T", + "bubble_model": 2, + "polytropic": "T", + "adv_n": "T", + "polydisperse": "F", + "thermal": 3, + "nb": 1, + "bub_pp%R0ref": 1.0, + "bub_pp%p0ref": 1.0, + "bub_pp%rho0ref": 1.0, + "bub_pp%ss": 0.0, + "bub_pp%pv": 0.0, + "bub_pp%mu_l": 0.1, + "bub_pp%gam_g": 1.4, + } + ) +) diff --git a/examples/1D_material_interface_lowmach/case.py b/examples/1D_material_interface_lowmach/case.py new file mode 100644 index 0000000000..3d17ceac29 --- /dev/null +++ b/examples/1D_material_interface_lowmach/case.py @@ -0,0 +1,128 @@ +#!/usr/bin/env python3 +""" +1D material-interface advection at low Mach — two-tier acoustic-substep validation +(split-explicit low-Mach integrator). + +Physics: + - Two ideal gases (model_eqns=2, num_fluids=2) on a periodic [0,1] domain. + - A heavy-fluid slab (fluid 2, rho=3) in a light ambient (fluid 1, rho=1) forms a + crisp material interface (sharp alpha / density contrast). The interface is RESOLVED + over a few cells (tanh, half-width w ~ 4 dx): a centered transport scheme advects a + resolved profile without Gibbs ringing, whereas a 1-cell-sharp contact would ring + (the substep's convective mass/energy transport is centered, not upwinded — see the + task report; the robust tier protects the acoustic pressure flux, not mass transport). + - Pressure and velocity are UNIFORM (p0, u0), so the exact solution is the slab advecting + at u0 with p kept flat; any pressure deviation at the interface is numerical ringing. + - Low Mach: u0 = M*c with M=0.05 (c ~ O(1)), so the split integrator takes the + advective-CFL outer step and resolves acoustics by the substep loop. + +Two-tier check: the alpha-jump criterion flags the interface band, so the robust +WENO+HLLC-acoustic tier acts there while the uniform far field uses the cheap centered tier. + +Diagnostics (read from /D/ ASCII files, 1D): + 1. Non-oscillatory: pressure (prim slot E) stays ~p0 across the interface (no ringing). + 2. Per-species mass conservation: sum_x of each partial density (cons slots 1,2) is + invariant in time to ~machine precision (periodic BCs, pure advection). + +Toggle baseline (full HLLC) vs split via the MFC_SPLIT env var: + MFC_SPLIT=F -> acoustic_substepping='F' (standard RK3 + full HLLC) [default] + MFC_SPLIT=T -> acoustic_substepping='T' (split-explicit two-tier) +Run both at the SAME resolution for the baseline-vs-split comparison. +""" + +import json +import math +import os + +split = os.environ.get("MFC_SPLIT", "F").upper() +acoustic_substepping = "T" if split == "T" else "F" + +# Two distinct ideal gases (exercises the mixture gamma/pi_inf sums) +gamma1 = 1.4 +gamma2 = 2.4 +eps = 1.0e-6 # minority volume fraction (keeps mixture EOS well-defined) + +p0 = 1.0 +rho1 = 1.0 # light ambient fluid +rho2 = 3.0 # heavy slab fluid (material density contrast) + +c1 = math.sqrt(gamma1 * p0 / rho1) # light-fluid sound speed ~1.183 +Mach = 0.05 +u0 = Mach * c1 # uniform advection velocity + +L = 1.0 +Nx = 199 # 200 cells, dx = 1/200 +dx = L / (Nx + 1) +w = 4.0 * dx # interface half-width (resolved over a few cells) + +CFL = 0.5 +dt_init = CFL * dx / c1 + +# Advect the slab ~0.25 of the domain so the interface is well resolved; short run. +T_stop = 0.25 / u0 +t_save = T_stop / 5.0 + +# Resolved slab indicator phi(x) ~ 1 inside [0.4,0.6], ~0 outside (tanh shoulders). +phi = f"(0.5*(tanh((x - 0.4)/{w}) - tanh((x - 0.6)/{w})))" +a2 = f"({eps} + {1.0 - 2.0 * eps}*{phi})" # fluid-2 volume fraction +a1 = f"(1.0 - {a2})" + +print( + json.dumps( + { + "run_time_info": "T", + "x_domain%beg": 0.0, + "x_domain%end": L, + "m": Nx, + "n": 0, + "p": 0, + "dt": dt_init, + "cfl_adap_dt": "T", + "cfl_target": CFL, + "t_step_start": 0, + "n_start": 0, + "t_stop": T_stop, + "t_save": t_save, + "num_patches": 1, + "model_eqns": 2, + "num_fluids": 2, + "alt_soundspeed": "F", + "mpp_lim": "F", + "mixture_err": "F", + "time_stepper": "rk3", + "weno_order": 5, + "weno_eps": 1.0e-6, + "mp_weno": "F", + "weno_avg": "F", + "mapped_weno": "F", + "null_weights": "F", + "riemann_solver": "hllc", + "wave_speeds": "direct", + "avg_state": "arithmetic", + "bc_x%beg": -1, + "bc_x%end": -1, + "acoustic_substepping": acoustic_substepping, + "n_acoustic_substeps": 0, + "acoustic_div_damp": 0.1, + "format": "binary", + "precision": "double", + "prim_vars_wrt": "T", + "cons_vars_wrt": "T", + "parallel_io": "F", + # Patch 1: resolved heavy slab in light ambient (analytic tanh profiles) + "patch_icpp(1)%geometry": 1, + "patch_icpp(1)%x_centroid": 0.5 * L, + "patch_icpp(1)%length_x": L, + "patch_icpp(1)%vel(1)": u0, + "patch_icpp(1)%pres": p0, + "patch_icpp(1)%alpha_rho(1)": f"{rho1}*{a1}", + "patch_icpp(1)%alpha_rho(2)": f"{rho2}*{a2}", + "patch_icpp(1)%alpha(1)": a1, + "patch_icpp(1)%alpha(2)": a2, + "fluid_pp(1)%gamma": 1.0 / (gamma1 - 1.0), + "fluid_pp(1)%pi_inf": 0.0, + "fluid_pp(2)%gamma": 1.0 / (gamma2 - 1.0), + "fluid_pp(2)%pi_inf": 0.0, + } + ) +) diff --git a/examples/1D_shock_interface_lowmach/case.py b/examples/1D_shock_interface_lowmach/case.py new file mode 100644 index 0000000000..6d7f3be30a --- /dev/null +++ b/examples/1D_shock_interface_lowmach/case.py @@ -0,0 +1,153 @@ +#!/usr/bin/env python3 +""" +1D shock-interface interaction (moderate Mach) — two-tier acoustic-substep robust-tier +validation (split-explicit low-Mach integrator). + +Physics: + - Two ideal gases (model_eqns=2, num_fluids=2) on [0,1]. + - A Sod-type pressure discontinuity at x=0.4 launches a right-running shock + (shock Mach ~1.6, moderate) into a light ambient (fluid 1). The shock then impinges + on a heavy material interface (fluid 2, rho=1.0 vs ambient 0.125) at x=0.65, producing + reflected + transmitted waves through the interface. + - The whole field carries a moderate background mean flow u_bg (ambient Mach ~0.3). This + is REQUIRED for split mode: the outer step is the advective CFL ~dx/|u|, which is + unbounded for a quiescent (u=0) shock tube; a nonzero mean flow bounds it. It also makes + this a genuinely discontinuity-rich, moderate-Mach blended-cost case. + - This is the discontinuity-rich stress case for the two-tier substep. + +Two-tier robust flux: both the BASELINE full-HLLC solver (acoustic_substepping='F', the +default here) and SPLIT mode (acoustic_substepping='T') capture this shock-interface +interaction. The robust tier makes the mass, energy, AND convective-momentum transport full +HLLC at flagged faces; the convective momentum is made live through a live-minus-frozen delta +(the slow path's stored stage-entry convective flux is subtracted and the live HLLC flux +added), which keeps the slow/frozen cancellation exact on every RK stage and stays stable +when momentum advection is leading order — i.e. at a propagating shock. See +docs/documentation/acousticSubstepping.md. + +Note on boundaries: the centered SMOOTH tier is unstable at extrapolation/outflow boundaries +carrying a mean flow (independent of shock capture; see the docs). This case uses +non-reflecting BCs (bc_x=-3), so for a clean split-mode run keep the structure interior over +the test window, or prefer a stable-BC case such as examples/1D_shock_periodic_lowmach. + +Diagnostics: + - Read from /D/ ASCII (1D): prim.4 = pressure, prim.3 = velocity, + prim.1/prim.2 = partial densities, prim.5/prim.6 = volume fractions. + +Toggle baseline (full HLLC) vs split via the MFC_SPLIT env var: + MFC_SPLIT=F -> acoustic_substepping='F' (standard RK3 + full HLLC) [default] + MFC_SPLIT=T -> acoustic_substepping='T' (split-explicit two-tier) +""" + +import json +import math +import os + +split = os.environ.get("MFC_SPLIT", "F").upper() +acoustic_substepping = "T" if split == "T" else "F" + +gamma1 = 1.4 # ambient / driver (air-like) +gamma2 = 1.6 # interface fluid +eps = 1.0e-6 + +# Sod-like driver vs ambient (drives a moderate, right-running shock) +p_drive, rho_drive = 1.0, 1.0 +p_amb, rho_amb = 0.1, 0.125 +# Heavy material interface fluid at the ambient pressure +p_int, rho_int = 0.1, 1.0 + +c_amb = math.sqrt(gamma1 * p_amb / rho_amb) # ambient sound speed ~1.06 +u_bg = 0.3 * c_amb # moderate background mean flow (ambient Mach ~0.3) + +L = 1.0 +Nx = 399 # 400 cells +dx = L / (Nx + 1) + +CFL = 0.4 +dt_init = CFL * dx / (u_bg + math.sqrt(gamma1 * p_drive / rho_drive)) + +# Run until the shock has crossed the interface and the reflected/transmitted +# structure is established (lab-frame shock reaches x=0.65 around t~0.12). +T_stop = 0.15 +t_save = T_stop / 5.0 + +print( + json.dumps( + { + "run_time_info": "T", + "x_domain%beg": 0.0, + "x_domain%end": L, + "m": Nx, + "n": 0, + "p": 0, + "dt": dt_init, + "cfl_adap_dt": "T", + "cfl_target": CFL, + "t_step_start": 0, + "n_start": 0, + "t_stop": T_stop, + "t_save": t_save, + "num_patches": 3, + "model_eqns": 2, + "num_fluids": 2, + "alt_soundspeed": "F", + "mpp_lim": "F", + "mixture_err": "F", + "time_stepper": "rk3", + "weno_order": 5, + "weno_eps": 1.0e-6, + "mp_weno": "F", + "weno_avg": "F", + "mapped_weno": "F", + "null_weights": "F", + "riemann_solver": "hllc", + "wave_speeds": "direct", + "avg_state": "arithmetic", + "bc_x%beg": -3, + "bc_x%end": -3, + "acoustic_substepping": acoustic_substepping, + "n_acoustic_substeps": 0, + "acoustic_div_damp": 0.1, + "format": "binary", + "precision": "double", + "prim_vars_wrt": "T", + "cons_vars_wrt": "T", + "parallel_io": "F", + # Patch 1: light ambient fluid 1 filling the domain + "patch_icpp(1)%geometry": 1, + "patch_icpp(1)%x_centroid": 0.5 * L, + "patch_icpp(1)%length_x": L, + "patch_icpp(1)%vel(1)": u_bg, + "patch_icpp(1)%pres": p_amb, + "patch_icpp(1)%alpha_rho(1)": (1.0 - eps) * rho_amb, + "patch_icpp(1)%alpha_rho(2)": eps * rho_int, + "patch_icpp(1)%alpha(1)": 1.0 - eps, + "patch_icpp(1)%alpha(2)": eps, + # Patch 2: high-pressure driver (x < 0.4), fluid 1 + "patch_icpp(2)%geometry": 1, + "patch_icpp(2)%alter_patch(1)": "T", + "patch_icpp(2)%x_centroid": 0.2 * L, + "patch_icpp(2)%length_x": 0.4 * L, + "patch_icpp(2)%vel(1)": u_bg, + "patch_icpp(2)%pres": p_drive, + "patch_icpp(2)%alpha_rho(1)": (1.0 - eps) * rho_drive, + "patch_icpp(2)%alpha_rho(2)": eps * rho_int, + "patch_icpp(2)%alpha(1)": 1.0 - eps, + "patch_icpp(2)%alpha(2)": eps, + # Patch 3: heavy material interface fluid 2 (x > 0.65) + "patch_icpp(3)%geometry": 1, + "patch_icpp(3)%alter_patch(1)": "T", + "patch_icpp(3)%x_centroid": 0.825 * L, + "patch_icpp(3)%length_x": 0.35 * L, + "patch_icpp(3)%vel(1)": u_bg, + "patch_icpp(3)%pres": p_int, + "patch_icpp(3)%alpha_rho(1)": eps * rho_amb, + "patch_icpp(3)%alpha_rho(2)": (1.0 - eps) * rho_int, + "patch_icpp(3)%alpha(1)": eps, + "patch_icpp(3)%alpha(2)": 1.0 - eps, + "fluid_pp(1)%gamma": 1.0 / (gamma1 - 1.0), + "fluid_pp(1)%pi_inf": 0.0, + "fluid_pp(2)%gamma": 1.0 / (gamma2 - 1.0), + "fluid_pp(2)%pi_inf": 0.0, + } + ) +) diff --git a/examples/1D_shock_periodic_lowmach/case.py b/examples/1D_shock_periodic_lowmach/case.py new file mode 100644 index 0000000000..e23bc9fdd5 --- /dev/null +++ b/examples/1D_shock_periodic_lowmach/case.py @@ -0,0 +1,109 @@ +#!/usr/bin/env python3 +""" +1D periodic shock tube (single fluid, moderate Mach) — interior shock-stability gate +for the split-explicit low-Mach two-tier acoustic substep (acoustic_substepping). + +Stable-BC by construction: PERIODIC boundaries (bc_x = -1), so there is no outflow +boundary and the separate centered-smooth-tier outflow instability cannot occur. A +uniform background mean flow u_bg bounds the advective CFL (the outer step is ~dx/|u|, +unbounded for a quiescent tube). A Sod-like high-pressure region launches a right-running +shock into the interior; over the short test window the shock stays well inside the domain. + +This isolates the convective-momentum fix: split mode (acoustic_substepping='T') must no +longer NaN / collapse dt in the INTERIOR, and the shock must be captured. Compare against +the full-HLLC baseline (acoustic_substepping='F') at the same resolution. + +Toggle via MFC_SPLIT env var: MFC_SPLIT=T -> split, otherwise -> baseline full HLLC. +""" + +import json +import math +import os + +split = os.environ.get("MFC_SPLIT", "F").upper() +acoustic_substepping = "T" if split == "T" else "F" + +gamma = 1.4 + +# Sod-like driver vs ambient +p_drive, rho_drive = 1.0, 1.0 +p_amb, rho_amb = 0.1, 0.125 + +c_amb = math.sqrt(gamma * p_amb / rho_amb) +u_bg = 0.4 * c_amb # background mean flow, ambient Mach ~0.4 (bounds the advective CFL) + +L = 1.0 +Nx = 199 # 200 cells, tiny +dx = L / (Nx + 1) + +CFL = 0.4 +dt_init = CFL * dx / (u_bg + math.sqrt(gamma * p_drive / rho_drive)) + +# Short window: shock has formed and propagated a few tens of cells but stays interior. +T_stop = 0.06 +t_save = T_stop / 6.0 + +print( + json.dumps( + { + "run_time_info": "T", + "x_domain%beg": 0.0, + "x_domain%end": L, + "m": Nx, + "n": 0, + "p": 0, + "dt": dt_init, + "cfl_adap_dt": "T", + "cfl_target": CFL, + "t_step_start": 0, + "n_start": 0, + "t_stop": T_stop, + "t_save": t_save, + "num_patches": 2, + "model_eqns": 2, + "num_fluids": 1, + "alt_soundspeed": "F", + "mpp_lim": "F", + "mixture_err": "F", + "time_stepper": "rk3", + "weno_order": 5, + "weno_eps": 1.0e-6, + "mp_weno": "F", + "weno_avg": "F", + "mapped_weno": "F", + "null_weights": "F", + "riemann_solver": "hllc", + "wave_speeds": "direct", + "avg_state": "arithmetic", + "bc_x%beg": -1, + "bc_x%end": -1, + "acoustic_substepping": acoustic_substepping, + "n_acoustic_substeps": 0, + "acoustic_div_damp": 0.1, + "format": "binary", + "precision": "double", + "prim_vars_wrt": "T", + "cons_vars_wrt": "T", + "parallel_io": "F", + # Patch 1: ambient filling the domain + "patch_icpp(1)%geometry": 1, + "patch_icpp(1)%x_centroid": 0.5 * L, + "patch_icpp(1)%length_x": L, + "patch_icpp(1)%vel(1)": u_bg, + "patch_icpp(1)%pres": p_amb, + "patch_icpp(1)%alpha_rho(1)": rho_amb, + "patch_icpp(1)%alpha(1)": 1.0, + # Patch 2: high-pressure driver (0.15 < x < 0.35) + "patch_icpp(2)%geometry": 1, + "patch_icpp(2)%alter_patch(1)": "T", + "patch_icpp(2)%x_centroid": 0.25 * L, + "patch_icpp(2)%length_x": 0.2 * L, + "patch_icpp(2)%vel(1)": u_bg, + "patch_icpp(2)%pres": p_drive, + "patch_icpp(2)%alpha_rho(1)": rho_drive, + "patch_icpp(2)%alpha(1)": 1.0, + "fluid_pp(1)%gamma": 1.0 / (gamma - 1.0), + "fluid_pp(1)%pi_inf": 0.0, + } + ) +) diff --git a/examples/1D_uniform_advect_lowmach/case.py b/examples/1D_uniform_advect_lowmach/case.py new file mode 100644 index 0000000000..32804213b5 --- /dev/null +++ b/examples/1D_uniform_advect_lowmach/case.py @@ -0,0 +1,108 @@ +#!/usr/bin/env python3 +""" +1D uniform advection — slow-flux HLLC regression for acoustic_substepping +(split-explicit low-Mach time integrator), Task 3. + +Physics / purpose: + - Single-fluid stiffened-gas air (gamma=1.4, pi_inf=0) on a periodic domain. + - Perfectly uniform initial state: constant density rho0, constant pressure p0, + constant velocity u0 everywhere (no perturbation of any kind). + - With acoustic_substepping = 'T', the HLLC flux returns ONLY the slow + (advective) part: mass and total-energy face fluxes are zero (deferred to a + later acoustic substep), and the momentum face flux is the pure contact- + upwinded convective flux rho*u0**2 (no pressure term, no acoustic u+-c + dissipation, no low-Mach pcorr). + - For a uniform field every face sees identical left/right states, so the + momentum flux is the same constant rho0*u0**2 at every face; its divergence + is zero. Mass and energy fluxes are identically zero. Hence the uniform state + must remain uniform to round-off after a few steps (pure, distortion-free + translation). NOTE: at this task there is no acoustic substep yet, so only the + slow momentum flux is exercised; full split-explicit dynamics arrive later. +""" + +import json +import math + +# Physical parameters +gamma = 1.4 +p0 = 101325.0 # background pressure [Pa] +rho0 = 1.204 # background density [kg/m^3] +c0 = math.sqrt(gamma * p0 / rho0) # ~343 m/s +Mach = 0.01 +u0 = Mach * c0 # background velocity ~3.43 m/s (low-Mach) + +# Domain +L = 1.0 # domain length [m] +Nx = 99 # cells (m parameter) +dx = L / (Nx + 1) + +# CFL-based time stepping. Split-explicit (acoustic_substepping) mode requires +# CFL-based dt: the advective CFL sets dt and n_substeps is derived from the +# acoustic-to-advective wave-speed ratio. dt below is just the initial guess. +CFL = 0.5 +dt = CFL * dx / c0 +# Run a few advective steps (t_stop ~ a couple of advective dt). +t_stop = 3.0 * (CFL * dx / u0) + +# Stiffened-gas EOS: Gamma = 1/(gamma-1), pi_inf = 0 for ideal gas +Gamma = 1.0 / (gamma - 1.0) +pi_inf = 0.0 + +print( + json.dumps( + { + # Logistics + "run_time_info": "T", + # Computational Domain Parameters + "x_domain%beg": 0.0, + "x_domain%end": L, + "m": Nx, + "n": 0, + "p": 0, + "dt": dt, + "cfl_adap_dt": "T", + "cfl_target": CFL, + "t_step_start": 0, + "n_start": 0, + "t_stop": t_stop, + "t_save": t_stop / 2.0, + # Simulation Algorithm Parameters + "num_patches": 1, + "model_eqns": 2, + "num_fluids": 1, + "alt_soundspeed": "F", + "mpp_lim": "F", + "mixture_err": "F", + "time_stepper": "rk3", + "weno_order": 5, + "weno_eps": 1.0e-16, + "mp_weno": "F", + "weno_avg": "F", + "mapped_weno": "F", + "null_weights": "F", + "riemann_solver": "hllc", + "wave_speeds": "direct", + "avg_state": "arithmetic", + "bc_x%beg": -1, + "bc_x%end": -1, + # Acoustic substepping (split-explicit low-Mach): ON — exercises slow flux. + "acoustic_substepping": "T", + # Formatted Database Files Structure Parameters + "format": "binary", + "precision": "double", + "prim_vars_wrt": "T", + "parallel_io": "F", + # Patch 1: perfectly uniform background (constant rho, p, u) + "patch_icpp(1)%geometry": 1, + "patch_icpp(1)%x_centroid": 0.5 * L, + "patch_icpp(1)%length_x": L, + "patch_icpp(1)%vel(1)": u0, + "patch_icpp(1)%pres": p0, + "patch_icpp(1)%alpha_rho(1)": rho0, + "patch_icpp(1)%alpha(1)": 1.0, + # Fluid physical parameters (stiffened-gas air, ideal limit) + "fluid_pp(1)%gamma": Gamma, + "fluid_pp(1)%pi_inf": pi_inf, + } + ) +) diff --git a/examples/2D_gresho_lowmach/case.py b/examples/2D_gresho_lowmach/case.py new file mode 100644 index 0000000000..3a928ab50c --- /dev/null +++ b/examples/2D_gresho_lowmach/case.py @@ -0,0 +1,150 @@ +#!/usr/bin/env python3 +""" +2D Gresho vortex at M ≈ 0.01 — low-Mach validation for acoustic_substepping. + +Physics: + - Single-fluid ideal gas (gamma=1.4, pi_inf=0) on a [0,1]^2 periodic domain. + - Gresho vortex IC (hcid=203): rotating vortex with pressure balanced by + centrifugal acceleration. The exact incompressible solution is steady, so + any temporal drift measures numerical dissipation/dispersion. + - Mach ≈ 0.001 set via vel(2)=Ma0 (the hcid=203 Mach-number parameter). + +Usage: + Baseline (acoustic-CFL dt, acoustic_substepping='F'): + ./mfc.sh run examples/2D_gresho_lowmach/case.py -n 1 -t pre_process simulation + + Split-explicit (acoustic_substepping='T'): + Edit ACOUSTIC_SUBSTEPPING to 'T' and re-run. + +Concerns probed: + 1. Multi-D substep count: auto n_substeps uses sum(|vel|) in the denominator + but the outer dt is set by the per-dimension max wave speed. In a 2D + rotating vortex (|u| ~ |v|) this may under-count substeps => acoustic-CFL + violation. Test with N_ACOUSTIC_SUBSTEPS=0 (auto), then 2x and 4x manual. + 2. Odd-even / checkerboard: acoustic_div_damp (default 0.1) is the mitigation. + Increase to 0.2 if checkerboard arises in the split-mode pressure field. +""" + +import json +import math + +# ── Physical parameters ─────────────────────────────────────────────────────── +gamma = 1.4 +pi_inf = 0.0 + +# hcid=203 uses vel(2) as the vortex Mach number Ma0: +# umax = 2*pi*rmax * (vel(2) * c0), where c0=sqrt(gamma) in normalised units. +# Setting Ma0=1e-3 gives M ~ 0.001 (low Mach, acoustic substepping relevant). +Ma0 = 1.0e-3 # vortex Mach number + +# Normalised sound speed: with p0=1, rho0=1 the EOS gives c0=sqrt(gamma*p/rho) +c0 = math.sqrt(gamma) # ≈ 1.183 in normalised units + +# ── Grid ───────────────────────────────────────────────────────────────────── +# 32x32 keeps baseline feasible; increase to 64+ for production accuracy. +Nx = 32 +Ny = 32 +dx = 1.0 / Nx + +# ── CFL-based time stepping ─────────────────────────────────────────────────── +# BASELINE mode: outer dt ~ CFL*dx/(c0+umax) ≈ CFL*dx/c0 (umax << c0). +# SPLIT mode: outer dt ~ CFL*dx/umax = CFL*dx/(Ma0*c0), ~1/Ma0 = 1000x larger. +# n_substeps (auto) ~ 1/Ma0 = 1000 per outer step in split mode. +CFL = 0.5 +dt_acoustic = CFL * dx / c0 # ~0.013 (acoustic CFL, baseline outer dt) +dt_advect = CFL * dx / (Ma0 * c0) # ~13.2 (advective CFL, split-mode outer dt) + +# Physical time: run for 5 split-mode outer steps (= 5 * dt_advect ≈ 66). +# Baseline will do ~5000 acoustic-CFL steps over the same physical time. +T_stop = 5.0 * dt_advect # ~66 normalised time units +t_save = T_stop / 5.0 # 5 save points + +# Initial dt guess (recomputed each step by the solver from cfl_target) +dt_init = dt_acoustic + +# ── Acoustic substepping toggle ─────────────────────────────────────────────── +# ACOUSTIC_SUBSTEPPING = 'F' -> baseline (acoustic-CFL outer step, standard RK3) +# ACOUSTIC_SUBSTEPPING = 'T' -> split-explicit (advective-CFL outer step, substepped) +ACOUSTIC_SUBSTEPPING = "F" # change to 'T' for split mode (requires cfl_adap_dt) + +# N_ACOUSTIC_SUBSTEPS: 0 = auto (from local u/c ratio); >0 = manual override. +# Concern #1: in 2D rotating vortex auto may under-count. Try 0, then 2x, 4x. +N_ACOUSTIC_SUBSTEPS = 0 # 0 = auto (adapt to outer dt each step) + +# Divergence damping coefficient (default 0.1). +# Concern #2: increase if checkerboard noise appears in pressure/velocity. +ACOUSTIC_DIV_DAMP = 0.1 + +# ── Case dictionary ─────────────────────────────────────────────────────────── +print( + json.dumps( + { + # Logistics + "run_time_info": "T", + # Computational Domain + "x_domain%beg": 0.0, + "x_domain%end": 1.0, + "y_domain%beg": 0.0, + "y_domain%end": 1.0, + "m": Nx, + "n": Ny, + "p": 0, + # Time stepping (CFL-based — required for acoustic_substepping) + "dt": dt_init, + "cfl_adap_dt": "T", + "cfl_target": CFL, + "t_step_start": 0, + "n_start": 0, + "t_stop": T_stop, + "t_save": t_save, + # Simulation algorithm + "num_patches": 1, + "model_eqns": 2, + "num_fluids": 1, + "alt_soundspeed": "F", + "mpp_lim": "F", + "mixture_err": "F", + "time_stepper": "rk3", + "weno_order": 5, + "weno_eps": 1.0e-16, + "mp_weno": "F", + "weno_avg": "F", + "mapped_weno": "F", + "null_weights": "F", + "riemann_solver": "hllc", + "wave_speeds": "direct", + "avg_state": "arithmetic", + # Periodic boundary conditions + "bc_x%beg": -1, + "bc_x%end": -1, + "bc_y%beg": -1, + "bc_y%end": -1, + # Acoustic substepping (split-explicit low-Mach) + "acoustic_substepping": ACOUSTIC_SUBSTEPPING, + "n_acoustic_substeps": N_ACOUSTIC_SUBSTEPS, + "acoustic_div_damp": ACOUSTIC_DIV_DAMP, + # Output + "format": "binary", + "precision": "double", + "prim_vars_wrt": "T", + "cons_vars_wrt": "T", + "parallel_io": "F", + # Patch 1: Gresho vortex with density correction (hcid=203) + # vel(2)=Ma0 is the Mach-number parameter used by the IC formula. + "patch_icpp(1)%geometry": 3, + "patch_icpp(1)%hcid": 203, + "patch_icpp(1)%x_centroid": 0.5, + "patch_icpp(1)%y_centroid": 0.5, + "patch_icpp(1)%length_x": 1.0, + "patch_icpp(1)%length_y": 1.0, + "patch_icpp(1)%alpha_rho(1)": 1.0, + "patch_icpp(1)%alpha(1)": 1.0, + "patch_icpp(1)%vel(1)": 0.0, + "patch_icpp(1)%vel(2)": Ma0, + "patch_icpp(1)%pres": 1.0, + # Fluid physical parameters (stiffened-gas, ideal limit) + "fluid_pp(1)%gamma": 1.0 / (gamma - 1.0), + "fluid_pp(1)%pi_inf": pi_inf, + } + ) +) diff --git a/examples/2D_isentropic_vortex_lowmach/case.py b/examples/2D_isentropic_vortex_lowmach/case.py new file mode 100644 index 0000000000..8766c42b09 --- /dev/null +++ b/examples/2D_isentropic_vortex_lowmach/case.py @@ -0,0 +1,167 @@ +#!/usr/bin/env python3 +""" +2D translating isentropic vortex at M ≈ 0.1 — low-Mach validation for +acoustic_substepping (split-explicit low-Mach time integrator). + +Physics: + - Single-fluid ideal gas (gamma=1.4, pi_inf=0) on a [-3,3]^2 periodic domain. + - Isentropic vortex IC (hcid=283): Gauss-averaged cell values eliminating + O(h^2) quadrature error in the nonlinear prim->cons conversion. + - Mean flow at M_inf=0.1 (vel(1)=U0) translates the vortex. + - Vortex strength eps=0.5 gives max perturbation velocity ~M_pert≈0.08, + keeping the total Mach number below 0.2 everywhere. + +Baseline mode (acoustic_substepping='F'): + Outer dt is set by the acoustic CFL: dt ≈ CFL*dx/c0 ~ 0.01 (M-independent). + +Split-explicit mode (acoustic_substepping='T'): + Outer dt is set by the advective CFL: dt ≈ CFL*dx/U0 ~ 0.10 (~10x larger). + Acoustic waves are resolved by ~10 forward-backward substeps per outer step. + Expected wall-clock speedup ≈ M_inf^{-1} = 10 for this case. + +Divergence damping (acoustic_div_damp=0.1) is active: the translating vortex +has nonzero divergence in the compressible regime, which the divergence-damping +term in the acoustic substep suppresses. + +Usage: + Baseline (acoustic-CFL dt, acoustic_substepping='F'): + ./mfc.sh run examples/2D_isentropic_vortex_lowmach/case.py -n 1 -t pre_process simulation + + Split-explicit (acoustic_substepping='T'): + Set ACOUSTIC_SUBSTEPPING = 'T' below and re-run. + +Diagnostics probed: + 1. Stability: no NaN in any field. + 2. Mass conservation: |rho_total(t) - rho_total(0)| / rho_total(0) < 1e-12. + 3. Vortex accuracy: vortex center position vs. U0*t; kinetic energy drift. + 4. Divergence damping active: nonzero div(u) in baseline translating flow. +""" + +import json +import math + +# ── Physical parameters ─────────────────────────────────────────────────────── +gamma = 1.4 +pi_inf = 0.0 + +# Normalised sound speed: p0=1, rho0=1 → c0 = sqrt(gamma) +c0 = math.sqrt(gamma) # ≈ 1.1832 + +# Mean flow: M_inf = 0.1 +M_inf = 0.1 +U0 = M_inf * c0 # ≈ 0.1183 (x-velocity) +V0 = 0.0 # no mean y-velocity + +# Vortex strength (epsilon): max velocity perturbation ≈ eps*exp(0.5)/(2*pi*sqrt(2)) ≈ 0.186*eps +# eps=0.5 → M_pert ≈ 0.08, total M_max ≈ 0.18 +epsilon = 0.5 + +# ── Grid ───────────────────────────────────────────────────────────────────── +# Domain: [-3, 3]^2 — vortex decays to exp(1-9)≈3e-4 at midpoint edges (r=3) +# so periodic BCs are satisfied to high accuracy. +Ldom = 6.0 # domain side length +Nx = 32 +Ny = 32 +dx = Ldom / Nx # 0.1875 — vortex core (r<2) resolved by ~10 cells + +# ── CFL-based time stepping ─────────────────────────────────────────────────── +CFL = 0.5 +dt_acoustic = CFL * dx / c0 # ≈ 0.0792 (baseline outer dt) +dt_advect = CFL * dx / U0 # ≈ 0.792 (split-mode outer dt, ~10x acoustic) + +# Physical time: 0.5 (short, ~6 acoustic-CFL steps baseline or ~1 advective step split) +T_stop = 0.5 +t_save = 0.1 # 5 save points + +# Initial dt guess (adapted each step from cfl_target) +dt_init = dt_acoustic + +# ── Acoustic substepping toggle ─────────────────────────────────────────────── +# 'F' = baseline (acoustic-CFL outer step, standard SSP-RK3) +# 'T' = split-explicit (advective-CFL outer step, acoustic substep loop) +ACOUSTIC_SUBSTEPPING = "F" + +# 0 = auto-compute n_substeps from outer dt / acoustic-CFL dt each step +N_ACOUSTIC_SUBSTEPS = 0 + +# Divergence damping coefficient (0.1 default); active for translating vortex +# where div(u) != 0 away from the vortex center. +ACOUSTIC_DIV_DAMP = 0.1 + +# ── Case dictionary ─────────────────────────────────────────────────────────── +print( + json.dumps( + { + # Logistics + "run_time_info": "T", + # Computational Domain + "x_domain%beg": -3.0, + "x_domain%end": 3.0, + "y_domain%beg": -3.0, + "y_domain%end": 3.0, + "m": Nx, + "n": Ny, + "p": 0, + # CFL-based time stepping (required for acoustic_substepping) + "dt": dt_init, + "cfl_adap_dt": "T", + "cfl_target": CFL, + "t_step_start": 0, + "n_start": 0, + "t_stop": T_stop, + "t_save": t_save, + # Simulation algorithm + "num_patches": 1, + "model_eqns": 2, + "num_fluids": 1, + "alt_soundspeed": "F", + "mpp_lim": "F", + "mixture_err": "F", + "time_stepper": "rk3", + "weno_order": 5, + "weno_eps": 1.0e-16, + "mp_weno": "F", + "weno_avg": "F", + "mapped_weno": "F", + "null_weights": "F", + "riemann_solver": "hllc", + "wave_speeds": "direct", + "avg_state": "arithmetic", + # Periodic boundary conditions + "bc_x%beg": -1, + "bc_x%end": -1, + "bc_y%beg": -1, + "bc_y%end": -1, + # Acoustic substepping (split-explicit low-Mach) + "acoustic_substepping": ACOUSTIC_SUBSTEPPING, + "n_acoustic_substeps": N_ACOUSTIC_SUBSTEPS, + "acoustic_div_damp": ACOUSTIC_DIV_DAMP, + # Output + "format": "binary", + "precision": "double", + "prim_vars_wrt": "T", + "cons_vars_wrt": "T", + "parallel_io": "F", + # Patch 1: Gauss-averaged isentropic vortex IC (hcid=283) + # vel(1) = U0 added to the vortex velocity by hcid=283 code + # vel(2) = V0 = 0 (no mean y-flow) + # epsilon = vortex strength (read by hcid=283 from patch_icpp%epsilon) + # Background state: rho0=1, p0=1 (overridden by hcid for r << 3) + "patch_icpp(1)%geometry": 3, + "patch_icpp(1)%x_centroid": 0.0, + "patch_icpp(1)%y_centroid": 0.0, + "patch_icpp(1)%length_x": Ldom, + "patch_icpp(1)%length_y": Ldom, + "patch_icpp(1)%hcid": 283, + "patch_icpp(1)%epsilon": epsilon, + "patch_icpp(1)%vel(1)": U0, + "patch_icpp(1)%vel(2)": V0, + "patch_icpp(1)%pres": 1.0, + "patch_icpp(1)%alpha_rho(1)": 1.0, + "patch_icpp(1)%alpha(1)": 1.0, + # Fluid: ideal gas (stiffened-gas limit with pi_inf=0) + "fluid_pp(1)%gamma": 1.0 / (gamma - 1.0), + "fluid_pp(1)%pi_inf": pi_inf, + } + ) +) diff --git a/examples/2D_isentropic_vortex_lowmach_tconv/case.py b/examples/2D_isentropic_vortex_lowmach_tconv/case.py new file mode 100644 index 0000000000..48878b778c --- /dev/null +++ b/examples/2D_isentropic_vortex_lowmach_tconv/case.py @@ -0,0 +1,126 @@ +#!/usr/bin/env python3 +""" +Temporal-convergence study for the split-explicit low-Mach integrator +(acoustic_substepping). Smooth translating isentropic vortex at M_inf=0.1 on a +periodic [-3,3]^2 domain — the same physics as 2D_isentropic_vortex_lowmach, but +configured as a fixed-grid Delta t-refinement harness. + +Method (successive-difference Richardson, fixed 32x32 grid): + The spatial discretization is identical across runs, so it cancels in the + difference of two solutions and ||u_{Δt} - u_{Δt/2}|| isolates the TEMPORAL + error. cfl_const_dt gives uniform macro steps; the final step is clipped to + land exactly on t_stop, so every run reaches the same final time. + +Two regimes (select via env vars; both refine the advective/macro Δt by 2x): + + 1. ACOUSTIC CFL HELD FIXED (the design measurement). + Hold the acoustic micro-step Δτ fixed by scaling n_acoustic_substeps with + Δt, so only the macro (Wicker–Skamarock RK3) coupling is refined: + MFC_CFL=0.40 MFC_NSUB=96 MFC_DAMP=0.0 + MFC_CFL=0.20 MFC_NSUB=48 MFC_DAMP=0.0 + MFC_CFL=0.10 MFC_NSUB=24 MFC_DAMP=0.0 + MFC_CFL=0.05 MFC_NSUB=12 MFC_DAMP=0.0 + Measured L2 rate of the conserved vector: ~2.00, 1.98 -> SECOND ORDER. + The split-explicit WS-RK3 macro scheme is 2nd-order in the advective step. + + 2. AUTO SUBSTEPS (Δτ ∝ Δt, n_substeps≈(|u|+c)/|u| set by the Mach number). + MFC_CFL=0.4,0.2,0.1,0.05 MFC_NSUB=0 MFC_DAMP=0.0 + Measured rate trends to ~1.0: the forward-backward (symplectic-Euler) + acoustic micro-step is 1st-order in Δτ, so refining Δτ together with Δt + limits the practical rate to first order. This is the expected behaviour of + a split-explicit / forward-backward scheme and is documented in + docs/documentation/acousticSubstepping.md. + + acoustic_div_damp must be 0 for the study: it is a per-micro-step fixed + fraction (not Δτ-scaled), so it does not vanish under refinement and would + otherwise mask the temporal error. + +Compare cons..00.000001.dat (final dump, ASCII "x y value") across runs. +""" + +import json +import math +import os + +gamma = 1.4 +pi_inf = 0.0 +c0 = math.sqrt(gamma) +M_inf = 0.1 +U0 = M_inf * c0 +V0 = 0.0 +epsilon = 0.5 + +Ldom = 6.0 +Nx = 32 +Ny = 32 +dx = Ldom / Nx + +CFL = float(os.environ.get("MFC_CFL", "0.4")) +NSUB = int(os.environ.get("MFC_NSUB", "96")) +DAMP = float(os.environ.get("MFC_DAMP", "0.0")) +T_stop = float(os.environ.get("MFC_TSTOP", "5.0")) +dt_init = CFL * dx / c0 + +print( + json.dumps( + { + "run_time_info": "F", + "x_domain%beg": -3.0, + "x_domain%end": 3.0, + "y_domain%beg": -3.0, + "y_domain%end": 3.0, + "m": Nx, + "n": Ny, + "p": 0, + "dt": dt_init, + "cfl_const_dt": "T", + "cfl_target": CFL, + "t_step_start": 0, + "n_start": 0, + "t_stop": T_stop, + "t_save": T_stop, + "num_patches": 1, + "model_eqns": 2, + "num_fluids": 1, + "alt_soundspeed": "F", + "mpp_lim": "F", + "mixture_err": "F", + "time_stepper": "rk3", + "weno_order": 5, + "weno_eps": 1.0e-16, + "mp_weno": "F", + "weno_avg": "F", + "mapped_weno": "F", + "null_weights": "F", + "riemann_solver": "hllc", + "wave_speeds": "direct", + "avg_state": "arithmetic", + "bc_x%beg": -1, + "bc_x%end": -1, + "bc_y%beg": -1, + "bc_y%end": -1, + "acoustic_substepping": "T", + "n_acoustic_substeps": NSUB, + "acoustic_div_damp": DAMP, + "format": "binary", + "precision": "double", + "prim_vars_wrt": "T", + "cons_vars_wrt": "T", + "parallel_io": "F", + "patch_icpp(1)%geometry": 3, + "patch_icpp(1)%x_centroid": 0.0, + "patch_icpp(1)%y_centroid": 0.0, + "patch_icpp(1)%length_x": Ldom, + "patch_icpp(1)%length_y": Ldom, + "patch_icpp(1)%hcid": 283, + "patch_icpp(1)%epsilon": epsilon, + "patch_icpp(1)%vel(1)": U0, + "patch_icpp(1)%vel(2)": V0, + "patch_icpp(1)%pres": 1.0, + "patch_icpp(1)%alpha_rho(1)": 1.0, + "patch_icpp(1)%alpha(1)": 1.0, + "fluid_pp(1)%gamma": 1.0 / (gamma - 1.0), + "fluid_pp(1)%pi_inf": pi_inf, + } + ) +) diff --git a/examples/2D_shock_transverse_lowmach/case.py b/examples/2D_shock_transverse_lowmach/case.py new file mode 100644 index 0000000000..014748dca6 --- /dev/null +++ b/examples/2D_shock_transverse_lowmach/case.py @@ -0,0 +1,133 @@ +#!/usr/bin/env python3 +""" +2D periodic shock + transverse shear (single fluid, moderate Mach) — TRANSVERSE-MOMENTUM +validation for the split-explicit low-Mach two-tier acoustic substep (acoustic_substepping). + +Why this case exists +-------------------- +The 1D shock-stability gate (examples/1D_shock_periodic_lowmach) only exercises the +FACE-NORMAL convective momentum of the robust (full-HLLC) tier. The robust tier also maps +the live HLLC rotated-flux TRANSVERSE slot (d != i) back into the stored global-component +frozen flux; that path is correct by inspection but was empirically unexercised. This case +forces it: an x-normal Sod-like driver launches a right-running shock through a field that +carries a TRANSVERSE velocity component (vel(2)) which JUMPS across the driver interface. +At every flagged x-face the transverse momentum rho*u*v is then nonzero and varies, so the +d=2 (transverse) flux slot of the live HLLC flux is actively transported. + +Stable-BC by construction: PERIODIC in both directions (no outflow boundary, so the +separate centered-smooth-tier outflow instability cannot occur). A uniform background mean +flow u_bg bounds the advective outer step (~dx/|u|). The field is uniform in y, so the +exact transverse-momentum behaviour is a clean diagnostic: with no y-gradients and no +transverse pressure gradient, rho*v is advected as a contact quantity and must stay uniform +in y. Any frame/sign error in the d != i mapping would break y-uniformity or disagree with +the full-HLLC baseline. + +Toggle via MFC_SPLIT env var: MFC_SPLIT=T -> split, otherwise -> baseline full HLLC. +""" + +import json +import math +import os + +split = os.environ.get("MFC_SPLIT", "F").upper() +acoustic_substepping = "T" if split == "T" else "F" + +gamma = 1.4 + +# Sod-like driver vs ambient +p_drive, rho_drive = 1.0, 1.0 +p_amb, rho_amb = 0.1, 0.125 + +c_amb = math.sqrt(gamma * p_amb / rho_amb) +u_bg = 0.4 * c_amb # background mean flow in x (ambient Mach ~0.4) +# Transverse velocity JUMPS across the driver interface (shear): this is what makes the +# transverse momentum nonzero and varying at the flagged x-faces. +v_amb = 0.15 * c_amb +v_drive = -0.15 * c_amb + +L = 1.0 +Nx = 199 # 200 cells in x +Ny = 31 # 32 cells in y (uniform-in-y field; >= num_stcls_min*weno_order cells per dim) +dx = L / (Nx + 1) + +CFL = 0.4 +umag = math.sqrt(u_bg**2 + max(abs(v_amb), abs(v_drive)) ** 2) +dt_init = CFL * dx / (umag + math.sqrt(gamma * p_drive / rho_drive)) + +T_stop = 0.06 +t_save = T_stop / 6.0 + +print( + json.dumps( + { + "run_time_info": "T", + "x_domain%beg": 0.0, + "x_domain%end": L, + "y_domain%beg": 0.0, + "y_domain%end": L * (Ny + 1) / (Nx + 1), + "m": Nx, + "n": Ny, + "p": 0, + "dt": dt_init, + "cfl_adap_dt": "T", + "cfl_target": CFL, + "t_step_start": 0, + "n_start": 0, + "t_stop": T_stop, + "t_save": t_save, + "num_patches": 2, + "model_eqns": 2, + "num_fluids": 1, + "alt_soundspeed": "F", + "mpp_lim": "F", + "mixture_err": "F", + "time_stepper": "rk3", + "weno_order": 5, + "weno_eps": 1.0e-6, + "mp_weno": "F", + "weno_avg": "F", + "mapped_weno": "F", + "null_weights": "F", + "riemann_solver": "hllc", + "wave_speeds": "direct", + "avg_state": "arithmetic", + "bc_x%beg": -1, + "bc_x%end": -1, + "bc_y%beg": -1, + "bc_y%end": -1, + "acoustic_substepping": acoustic_substepping, + "n_acoustic_substeps": 0, + "acoustic_div_damp": 0.1, + "format": "binary", + "precision": "double", + "prim_vars_wrt": "T", + "cons_vars_wrt": "T", + "parallel_io": "F", + # Patch 1: ambient filling the domain (transverse velocity v_amb) + "patch_icpp(1)%geometry": 3, + "patch_icpp(1)%x_centroid": 0.5 * L, + "patch_icpp(1)%y_centroid": 0.5 * L, + "patch_icpp(1)%length_x": L, + "patch_icpp(1)%length_y": 2.0 * L, + "patch_icpp(1)%vel(1)": u_bg, + "patch_icpp(1)%vel(2)": v_amb, + "patch_icpp(1)%pres": p_amb, + "patch_icpp(1)%alpha_rho(1)": rho_amb, + "patch_icpp(1)%alpha(1)": 1.0, + # Patch 2: high-pressure driver band (0.15 < x < 0.35), transverse velocity v_drive + "patch_icpp(2)%geometry": 3, + "patch_icpp(2)%alter_patch(1)": "T", + "patch_icpp(2)%x_centroid": 0.25 * L, + "patch_icpp(2)%y_centroid": 0.5 * L, + "patch_icpp(2)%length_x": 0.2 * L, + "patch_icpp(2)%length_y": 2.0 * L, + "patch_icpp(2)%vel(1)": u_bg, + "patch_icpp(2)%vel(2)": v_drive, + "patch_icpp(2)%pres": p_drive, + "patch_icpp(2)%alpha_rho(1)": rho_drive, + "patch_icpp(2)%alpha(1)": 1.0, + "fluid_pp(1)%gamma": 1.0 / (gamma - 1.0), + "fluid_pp(1)%pi_inf": 0.0, + } + ) +) diff --git a/examples/2D_shockdroplet_lowmach/case.py b/examples/2D_shockdroplet_lowmach/case.py new file mode 100644 index 0000000000..a084c79156 --- /dev/null +++ b/examples/2D_shockdroplet_lowmach/case.py @@ -0,0 +1,155 @@ +#!/usr/bin/env python3 +""" +2D periodic shock-droplet (two fluids, moderate Mach) — MULTIFLUID shock-interface +validation for the split-explicit low-Mach two-tier acoustic substep (acoustic_substepping). + +Why this case exists +-------------------- +The robust (full-HLLC) tier rebuilds the stiffened-gas mixture EOS at a flagged face from +the CELL volume fractions (exact only for num_fluids == 1). This case stresses that +approximation at a genuine num_fluids > 1 shock-interface and also provides a genuinely +2D transverse-momentum exercise: a planar shock launched in x diffracts around a circular +heavy-fluid droplet, producing nonzero transverse (y) momentum at the curved, flagged +shock + interface faces. + +Stable-BC by construction: PERIODIC in both directions (no outflow boundary, avoiding the +separate centered-smooth-tier outflow instability). A uniform background mean flow u_bg in +x bounds the advective outer step. The droplet is sized/placed so the shock interacts with +it well inside the short test window. + +Diagnostics: stability (no NaN, no dt collapse), non-oscillatory capture of the shock and +the droplet interface, per-species mass conservation, and L2/Linf of all conserved fields +vs the full-HLLC baseline at the same resolution. + +Toggle via MFC_SPLIT env var: MFC_SPLIT=T -> split, otherwise -> baseline full HLLC. +""" + +import json +import math +import os + +split = os.environ.get("MFC_SPLIT", "F").upper() +acoustic_substepping = "T" if split == "T" else "F" + +gamma1 = 1.4 # ambient / driver (light gas) +gamma2 = 1.6 # droplet fluid (heavier gas) +eps = 1.0e-6 + +# Sod-like driver vs ambient (drives a moderate, right-running shock) +p_drive, rho_drive = 1.0, 1.0 +p_amb, rho_amb = 0.1, 0.125 +# Heavy droplet fluid at ambient pressure (density contrast ~16 vs ambient) +p_int, rho_int = 0.1, 2.0 + +c_amb = math.sqrt(gamma1 * p_amb / rho_amb) +u_bg = 0.3 * c_amb # background mean flow in x (ambient Mach ~0.3) + +Lx = 2.0 +Ly = 1.0 +Nx = 159 # 160 cells in x +Ny = 79 # 80 cells in y +dx = Lx / (Nx + 1) + +R = 0.15 # droplet radius +x_drop = 1.2 # droplet centre (right half; shock launched from left reaches it) +y_drop = 0.5 * Ly + +CFL = 0.4 +dt_init = CFL * dx / (u_bg + math.sqrt(gamma1 * p_drive / rho_drive)) + +T_stop = 0.5 +t_save = T_stop / 5.0 + +print( + json.dumps( + { + "run_time_info": "T", + "x_domain%beg": 0.0, + "x_domain%end": Lx, + "y_domain%beg": 0.0, + "y_domain%end": Ly, + "m": Nx, + "n": Ny, + "p": 0, + "dt": dt_init, + "cfl_adap_dt": "T", + "cfl_target": CFL, + "t_step_start": 0, + "n_start": 0, + "t_stop": T_stop, + "t_save": t_save, + "num_patches": 3, + "model_eqns": 2, + "num_fluids": 2, + "alt_soundspeed": "F", + "mpp_lim": "F", + "mixture_err": "F", + "time_stepper": "rk3", + "weno_order": 5, + "weno_eps": 1.0e-6, + "mp_weno": "F", + "weno_avg": "F", + "mapped_weno": "F", + "null_weights": "F", + "riemann_solver": "hllc", + "wave_speeds": "direct", + "avg_state": "arithmetic", + "bc_x%beg": -1, + "bc_x%end": -1, + "bc_y%beg": -1, + "bc_y%end": -1, + "acoustic_substepping": acoustic_substepping, + "n_acoustic_substeps": 0, + "acoustic_div_damp": 0.1, + "format": "binary", + "precision": "double", + "prim_vars_wrt": "T", + "cons_vars_wrt": "T", + "parallel_io": "F", + # Patch 1: light ambient fluid 1 filling the domain + "patch_icpp(1)%geometry": 3, + "patch_icpp(1)%x_centroid": 0.5 * Lx, + "patch_icpp(1)%y_centroid": 0.5 * Ly, + "patch_icpp(1)%length_x": Lx, + "patch_icpp(1)%length_y": Ly, + "patch_icpp(1)%vel(1)": u_bg, + "patch_icpp(1)%vel(2)": 0.0, + "patch_icpp(1)%pres": p_amb, + "patch_icpp(1)%alpha_rho(1)": (1.0 - eps) * rho_amb, + "patch_icpp(1)%alpha_rho(2)": eps * rho_int, + "patch_icpp(1)%alpha(1)": 1.0 - eps, + "patch_icpp(1)%alpha(2)": eps, + # Patch 2: high-pressure driver band (x < 0.4), fluid 1 + "patch_icpp(2)%geometry": 3, + "patch_icpp(2)%alter_patch(1)": "T", + "patch_icpp(2)%x_centroid": 0.2, + "patch_icpp(2)%y_centroid": 0.5 * Ly, + "patch_icpp(2)%length_x": 0.4, + "patch_icpp(2)%length_y": Ly, + "patch_icpp(2)%vel(1)": u_bg, + "patch_icpp(2)%vel(2)": 0.0, + "patch_icpp(2)%pres": p_drive, + "patch_icpp(2)%alpha_rho(1)": (1.0 - eps) * rho_drive, + "patch_icpp(2)%alpha_rho(2)": eps * rho_int, + "patch_icpp(2)%alpha(1)": 1.0 - eps, + "patch_icpp(2)%alpha(2)": eps, + # Patch 3: heavy circular droplet of fluid 2 + "patch_icpp(3)%geometry": 2, + "patch_icpp(3)%alter_patch(1)": "T", + "patch_icpp(3)%x_centroid": x_drop, + "patch_icpp(3)%y_centroid": y_drop, + "patch_icpp(3)%radius": R, + "patch_icpp(3)%vel(1)": u_bg, + "patch_icpp(3)%vel(2)": 0.0, + "patch_icpp(3)%pres": p_int, + "patch_icpp(3)%alpha_rho(1)": eps * rho_amb, + "patch_icpp(3)%alpha_rho(2)": (1.0 - eps) * rho_int, + "patch_icpp(3)%alpha(1)": eps, + "patch_icpp(3)%alpha(2)": 1.0 - eps, + "fluid_pp(1)%gamma": 1.0 / (gamma1 - 1.0), + "fluid_pp(1)%pi_inf": 0.0, + "fluid_pp(2)%gamma": 1.0 / (gamma2 - 1.0), + "fluid_pp(2)%pi_inf": 0.0, + } + ) +) diff --git a/examples/2D_twofluid_lowmach/case.py b/examples/2D_twofluid_lowmach/case.py new file mode 100644 index 0000000000..a5ef37526b --- /dev/null +++ b/examples/2D_twofluid_lowmach/case.py @@ -0,0 +1,123 @@ +#!/usr/bin/env python3 +""" +2D two-fluid low-Mach acoustic pulse — correctness check for acoustic_substepping +with num_fluids > 1 (split-explicit low-Mach time integrator). + +Physics: + - Two ideal-gas fluids (model_eqns=2, num_fluids=2) on a periodic [-1,1]^2 domain. + - A spatially UNIFORM two-fluid mixture (alpha_1 = alpha_2 = 0.5 everywhere), + advecting at a uniform low-Mach mean flow, with a small Gaussian acoustic + pressure pulse (hcid=264, dp/p = 1e-3) superposed. + - The uniform mixture exercises the generalized mixture stiffened-gas EOS + (gamma = sum_k alpha_k*gammas(k), with gamma_1 != gamma_2) and the new + num_fluids>1 volume-fraction advance in the acoustic substep, without a sharp + material interface — so per-fluid mass conservation is a clean diagnostic. + +Diagnostics: + 1. Stability: no NaN in any field over a few hundred outer steps. + 2. Per-fluid mass conservation: sum_x alpha_k*rho_k constant (periodic BCs). + 3. Volume fraction stays uniform in [0,1] (alpha_k ~ 0.5, advected sanely). +""" + +import json +import math + +# Two ideal gases with distinct gamma (exercises the mixture gamma/pi_inf/qv sums) +gamma1 = 1.4 +gamma2 = 2.4 +piinf1 = 0.0 +piinf2 = 0.0 + +p0 = 1.0 +rho1 = 1.0 +rho2 = 1.0 +a1 = 0.5 # uniform volume fraction of fluid 1 +a2 = 0.5 # uniform volume fraction of fluid 2 + +# Mixture EOS gamma_mix = a1*1/(g1-1) + a2*1/(g2-1); effective sound speed ~ O(1) +c0 = math.sqrt(gamma1 * (p0 + piinf1) / rho1) +M_inf = 0.1 +U0 = M_inf * c0 +V0 = 0.5 * U0 + +Ldom = 2.0 +Nx = 64 +Ny = 64 +dx = Ldom / Nx + +CFL = 0.5 +dt_advect = CFL * dx / math.sqrt(U0**2 + V0**2) +dt_init = dt_advect + +T_stop = 300.0 * dt_advect # ~ a few hundred outer steps (each runs the acoustic substep loop) +t_save = T_stop / 5.0 + +print( + json.dumps( + { + "run_time_info": "T", + "x_domain%beg": -1.0, + "x_domain%end": 1.0, + "y_domain%beg": -1.0, + "y_domain%end": 1.0, + "m": Nx, + "n": Ny, + "p": 0, + "dt": dt_init, + "cfl_adap_dt": "T", + "cfl_target": CFL, + "t_step_start": 0, + "n_start": 0, + "t_stop": T_stop, + "t_save": t_save, + "num_patches": 1, + "model_eqns": 2, + "num_fluids": 2, + "alt_soundspeed": "F", + "mpp_lim": "F", + "mixture_err": "F", + "time_stepper": "rk3", + "weno_order": 5, + "weno_eps": 1.0e-16, + "mp_weno": "F", + "weno_avg": "F", + "mapped_weno": "F", + "null_weights": "F", + "riemann_solver": "hllc", + "wave_speeds": "direct", + "avg_state": "arithmetic", + "bc_x%beg": -1, + "bc_x%end": -1, + "bc_y%beg": -1, + "bc_y%end": -1, + # Acoustic substepping (split-explicit low-Mach, multi-fluid) + "acoustic_substepping": "T", + "n_acoustic_substeps": 0, + "acoustic_div_damp": 0.1, + "format": "binary", + "precision": "double", + "prim_vars_wrt": "T", + "cons_vars_wrt": "T", + "parallel_io": "F", + # Patch 1: uniform two-fluid mixture filling the whole domain, + # with a small Gaussian acoustic pressure pulse via hcid=264. + "patch_icpp(1)%geometry": 3, + "patch_icpp(1)%x_centroid": 0.0, + "patch_icpp(1)%y_centroid": 0.0, + "patch_icpp(1)%length_x": Ldom, + "patch_icpp(1)%length_y": Ldom, + "patch_icpp(1)%hcid": 264, + "patch_icpp(1)%vel(1)": U0, + "patch_icpp(1)%vel(2)": V0, + "patch_icpp(1)%pres": p0, + "patch_icpp(1)%alpha_rho(1)": a1 * rho1, + "patch_icpp(1)%alpha_rho(2)": a2 * rho2, + "patch_icpp(1)%alpha(1)": a1, + "patch_icpp(1)%alpha(2)": a2, + "fluid_pp(1)%gamma": 1.0 / (gamma1 - 1.0), + "fluid_pp(1)%pi_inf": gamma1 * piinf1 / (gamma1 - 1.0), + "fluid_pp(2)%gamma": 1.0 / (gamma2 - 1.0), + "fluid_pp(2)%pi_inf": gamma2 * piinf2 / (gamma2 - 1.0), + } + ) +) diff --git a/examples/3D_acoustic_pulse_lowmach_gpu/case.py b/examples/3D_acoustic_pulse_lowmach_gpu/case.py new file mode 100644 index 0000000000..e4f8430e08 --- /dev/null +++ b/examples/3D_acoustic_pulse_lowmach_gpu/case.py @@ -0,0 +1,120 @@ +#!/usr/bin/env python3 +""" +3D smooth low-Mach acoustic pulse (single fluid, periodic) — the SMOOTH-FLOW companion to +examples/3D_shock_lowmach_gpu for the split-explicit low-Mach acoustic substep +(acoustic_substepping) on V100/OpenACC. + +Why this case exists +-------------------- +A localized strong shock raises the local Mach number and limits the advective-dt speedup +of the split scheme (it can be near break-even in shock-dominated cases). The big speedup +lives in the SMOOTH low-Mach bulk, where the robust (full-HLLC) shock-capture tier never +fires and the whole domain advances on the cheap centered/acoustic-substep path with an +advective-CFL outer step (~c/u ~ 1/M larger than the acoustic-CFL step of full HLLC). + +Setup: a single uniform low-Mach background (rho0=1, p0=1, mean flow u_bg = 0.1*c0 in x) on +a periodic cube, with a tiny smooth Gaussian pressure pulse (dp = 1e-3 * p0, sigma = 0.05) +added by hardcoded IC hcid=304. The perturbation is smooth and infinitesimal, so the shock +sensor never trips: this is the large-speedup regime. + +Toggle via MFC_SPLIT env var: MFC_SPLIT=T -> split, otherwise -> baseline full HLLC. +""" + +import json +import math +import os + +split = os.environ.get("MFC_SPLIT", "F").upper() +acoustic_substepping = "T" if split == "T" else "F" + +gamma = 1.4 +p0, rho0 = 1.0, 1.0 +c0 = math.sqrt(gamma * p0 / rho0) # ~1.1832 +u_bg = 0.1 * c0 # background Mach 0.1 + +# Domain: small cube so the fixed sigma=0.05 pulse (set inside hcid=304) is well resolved. +L = 0.5 +Nx = 47 # 48^3 = 110592 cells; small for fast GPU turnaround +Ny = 47 +Nz = 47 +dx = L / (Nx + 1) + +CFL = 0.4 +# Acoustic-CFL outer dt (baseline / initial guess); split mode grows dt to the advective CFL. +dt_init = CFL * dx / (u_bg + c0) + +T_stop = 0.6 +t_save = T_stop / 4.0 + +print( + json.dumps( + { + "run_time_info": "T", + "x_domain%beg": 0.0, + "x_domain%end": L, + "y_domain%beg": 0.0, + "y_domain%end": L, + "z_domain%beg": 0.0, + "z_domain%end": L, + "m": Nx, + "n": Ny, + "p": Nz, + "dt": dt_init, + "cfl_adap_dt": "T", + "cfl_target": CFL, + "t_step_start": 0, + "n_start": 0, + "t_stop": T_stop, + "t_save": t_save, + "num_patches": 1, + "model_eqns": 2, + "num_fluids": 1, + "alt_soundspeed": "F", + "mpp_lim": "F", + "mixture_err": "F", + "time_stepper": "rk3", + "weno_order": 5, + "weno_eps": 1.0e-6, + "mp_weno": "F", + "weno_avg": "F", + "mapped_weno": "F", + "null_weights": "F", + "riemann_solver": "hllc", + "wave_speeds": "direct", + "avg_state": "arithmetic", + "bc_x%beg": -1, + "bc_x%end": -1, + "bc_y%beg": -1, + "bc_y%end": -1, + "bc_z%beg": -1, + "bc_z%end": -1, + "acoustic_substepping": acoustic_substepping, + "n_acoustic_substeps": 0, + "acoustic_div_damp": 0.1, + "format": "binary", + "precision": "double", + "prim_vars_wrt": "T", + "cons_vars_wrt": "T", + "parallel_io": "F", + # Patch 1: uniform low-Mach background filling the periodic cube. + # hcid=304 overlays a smooth Gaussian pressure pulse (dp=1e-3*pres, sigma=0.05) + # centered at the patch centroid. + "patch_icpp(1)%geometry": 9, + "patch_icpp(1)%x_centroid": 0.5 * L, + "patch_icpp(1)%y_centroid": 0.5 * L, + "patch_icpp(1)%z_centroid": 0.5 * L, + "patch_icpp(1)%length_x": L, + "patch_icpp(1)%length_y": L, + "patch_icpp(1)%length_z": L, + "patch_icpp(1)%vel(1)": u_bg, + "patch_icpp(1)%vel(2)": 0.0, + "patch_icpp(1)%vel(3)": 0.0, + "patch_icpp(1)%pres": p0, + "patch_icpp(1)%alpha_rho(1)": rho0, + "patch_icpp(1)%alpha(1)": 1.0, + "patch_icpp(1)%hcid": 304, + "fluid_pp(1)%gamma": 1.0 / (gamma - 1.0), + "fluid_pp(1)%pi_inf": 0.0, + } + ) +) diff --git a/examples/3D_shock_lowmach_gpu/case.py b/examples/3D_shock_lowmach_gpu/case.py new file mode 100644 index 0000000000..1e1b88ee35 --- /dev/null +++ b/examples/3D_shock_lowmach_gpu/case.py @@ -0,0 +1,153 @@ +#!/usr/bin/env python3 +""" +3D low-Mach background + localized shock driver (single fluid) — the V100/OpenACC GPU +demonstrator for the split-explicit low-Mach two-tier acoustic substep +(acoustic_substepping). + +This is a GPU-turnaround variant of examples/3D_shock_periodic_lowmach: same periodic, +single-fluid, transverse-shear, Sod-like-driver structure, but the BACKGROUND is made +genuinely low-Mach (u_bg ~ 0.1*c_amb, total background Mach ~0.12) so the smooth bulk sits +in the low-Mach regime where the split scheme's advective outer step is large. A localized +high-pressure slab still launches a right-running shock, so the robust (full-HLLC) tier +flags at the shock faces and the two-tier shock capture is exercised in 3D. + +Demonstrates (compare MFC_SPLIT=T vs =F at identical resolution): + - Stability: runs to completion with acoustic_substepping='T', no NaN, no dt collapse. + - Correctness: split solution matches full-HLLC (L2/Linf of conserved fields); shock + captured non-oscillatorily (no spurious overshoot). + - Conservation: total mass, energy, and all three momenta to ~machine precision. + - GPU performance: per-step "Time Avg" and total time split vs full-HLLC on the V100. + +Toggle via MFC_SPLIT env var: MFC_SPLIT=T -> split, otherwise -> baseline full HLLC. +""" + +import json +import math +import os + +split = os.environ.get("MFC_SPLIT", "F").upper() +acoustic_substepping = "T" if split == "T" else "F" + +gamma = 1.4 + +# Moderate (2:1) pressure driver vs ambient. A full 10:1 Sod jump pushes the local Mach to +# order 1 (no longer "low-Mach") and is smeared markedly more by the substepped scheme than +# by tiny-dt full HLLC; a moderate jump keeps the local Mach modest, still launches a genuine +# shock that flags the robust (full-HLLC) tier, and keeps split and full in close agreement. +p_drive, rho_drive = 1.0, 1.0 +p_amb, rho_amb = 0.5, 0.5 + +c_amb = math.sqrt(gamma * p_amb / rho_amb) +# Genuinely low-Mach background: mean flow Mach ~0.1, modest transverse shear ~0.05. +u_bg = 0.1 * c_amb +# Transverse velocities JUMP across the driver interface (shear in BOTH y and z): keeps both +# off-normal momentum slots nonzero and varying at the flagged x-faces, while staying low Mach. +v_amb = 0.05 * c_amb +v_drive = -0.05 * c_amb +w_amb = -0.05 * c_amb +w_drive = 0.05 * c_amb + +L = 1.0 +Nx = 47 # 48 cells in x +Ny = 47 # 48 cells in y +Nz = 47 # 48 cells in z (48^3 = 110592 cells; small for fast GPU turnaround) +dx = L / (Nx + 1) +Ly = L * (Ny + 1) / (Nx + 1) # cubic cells (dy = dz = dx) +Lz = L * (Nz + 1) / (Nx + 1) + +# Outer-step CFL (env-overridable). With a strong embedded shock the split scheme's +# advective-CFL outer step must stay modest for stability, so the demonstrator uses a +# conservative CFL shared by both split and full-HLLC for an apples-to-apples comparison. +CFL = float(os.environ.get("MFC_CFL", "0.4")) +umag = math.sqrt(u_bg**2 + max(abs(v_amb), abs(v_drive)) ** 2 + max(abs(w_amb), abs(w_drive)) ** 2) +dt_init = CFL * dx / (umag + math.sqrt(gamma * p_drive / rho_drive)) + +# Keep the run short enough that the shock stays localized (does not traverse the periodic +# domain), so the split-vs-full pointwise comparison is clean (no wrap-around mixing). +T_stop = 0.3 +t_save = T_stop / 6.0 + +print( + json.dumps( + { + "run_time_info": "T", + "x_domain%beg": 0.0, + "x_domain%end": L, + "y_domain%beg": 0.0, + "y_domain%end": Ly, + "z_domain%beg": 0.0, + "z_domain%end": Lz, + "m": Nx, + "n": Ny, + "p": Nz, + "dt": dt_init, + "cfl_adap_dt": "T", + "cfl_target": CFL, + "t_step_start": 0, + "n_start": 0, + "t_stop": T_stop, + "t_save": t_save, + "num_patches": 2, + "model_eqns": 2, + "num_fluids": 1, + "alt_soundspeed": "F", + "mpp_lim": "F", + "mixture_err": "F", + "time_stepper": "rk3", + "weno_order": 5, + "weno_eps": 1.0e-6, + "mp_weno": "F", + "weno_avg": "F", + "mapped_weno": "F", + "null_weights": "F", + "riemann_solver": "hllc", + "wave_speeds": "direct", + "avg_state": "arithmetic", + "bc_x%beg": -1, + "bc_x%end": -1, + "bc_y%beg": -1, + "bc_y%end": -1, + "bc_z%beg": -1, + "bc_z%end": -1, + "acoustic_substepping": acoustic_substepping, + "n_acoustic_substeps": 0, + "acoustic_div_damp": 0.1, + "format": "binary", + "precision": "double", + "prim_vars_wrt": "T", + "cons_vars_wrt": "T", + "parallel_io": "F", + # Patch 1: ambient filling the domain (transverse velocities v_amb, w_amb) + "patch_icpp(1)%geometry": 9, + "patch_icpp(1)%x_centroid": 0.5 * L, + "patch_icpp(1)%y_centroid": 0.5 * Ly, + "patch_icpp(1)%z_centroid": 0.5 * Lz, + "patch_icpp(1)%length_x": L, + "patch_icpp(1)%length_y": 2.0 * Ly, + "patch_icpp(1)%length_z": 2.0 * Lz, + "patch_icpp(1)%vel(1)": u_bg, + "patch_icpp(1)%vel(2)": v_amb, + "patch_icpp(1)%vel(3)": w_amb, + "patch_icpp(1)%pres": p_amb, + "patch_icpp(1)%alpha_rho(1)": rho_amb, + "patch_icpp(1)%alpha(1)": 1.0, + # Patch 2: high-pressure driver slab (0.15 < x < 0.35), transverse v_drive, w_drive + "patch_icpp(2)%geometry": 9, + "patch_icpp(2)%alter_patch(1)": "T", + "patch_icpp(2)%x_centroid": 0.25 * L, + "patch_icpp(2)%y_centroid": 0.5 * Ly, + "patch_icpp(2)%z_centroid": 0.5 * Lz, + "patch_icpp(2)%length_x": 0.2 * L, + "patch_icpp(2)%length_y": 2.0 * Ly, + "patch_icpp(2)%length_z": 2.0 * Lz, + "patch_icpp(2)%vel(1)": u_bg, + "patch_icpp(2)%vel(2)": v_drive, + "patch_icpp(2)%vel(3)": w_drive, + "patch_icpp(2)%pres": p_drive, + "patch_icpp(2)%alpha_rho(1)": rho_drive, + "patch_icpp(2)%alpha(1)": 1.0, + "fluid_pp(1)%gamma": 1.0 / (gamma - 1.0), + "fluid_pp(1)%pi_inf": 0.0, + } + ) +) diff --git a/examples/3D_shock_periodic_lowmach/case.py b/examples/3D_shock_periodic_lowmach/case.py new file mode 100644 index 0000000000..a725cfe3ce --- /dev/null +++ b/examples/3D_shock_periodic_lowmach/case.py @@ -0,0 +1,153 @@ +#!/usr/bin/env python3 +""" +3D periodic shock + dual transverse shear (single fluid, moderate Mach) — the 3D +TRANSVERSE-MOMENTUM validation for the split-explicit low-Mach two-tier acoustic +substep (acoustic_substepping). + +Why this case exists +-------------------- +The 2D shock-transverse gate (examples/2D_shock_transverse_lowmach) exercises only ONE +off-normal momentum slot per face. A 3D x-normal face has TWO off-normal components +(rho*u*v and rho*u*w), and the robust (full-HLLC) tier must map BOTH live HLLC +rotated-flux transverse slots (d != i) back into the stored global-component frozen +flux. A direction-indexing error in that 3D transverse mapping, in the per-direction +reconstruction, or in the 3-direction delta apply would only surface here. + +This case forces both transverse slots: an x-normal Sod-like driver launches a +right-running shock through a field that carries transverse velocity components in BOTH +y (vel(2)) and z (vel(3)) which JUMP across the driver interface. At every flagged +x-face the transverse momenta rho*u*v and rho*u*w are then nonzero and varying, so the +d=2 AND d=3 transverse slots of the live HLLC flux are actively transported. + +Stable-BC by construction: PERIODIC in all three directions (no outflow boundary, so the +separate centered-smooth-tier outflow instability cannot occur). A uniform background +mean flow u_bg in x bounds the advective outer step (~dx/|u|). The field is UNIFORM in y +and z, so the exact transverse behaviour is a clean diagnostic: with no y/z gradients and +no transverse pressure gradient, rho*v and rho*w are advected as contact quantities and +must stay UNIFORM in y and z. Any frame/sign/index error in the 3D d != i mapping would +break y/z-uniformity or disagree with the full-HLLC baseline. + +Toggle via MFC_SPLIT env var: MFC_SPLIT=T -> split, otherwise -> baseline full HLLC. +""" + +import json +import math +import os + +split = os.environ.get("MFC_SPLIT", "F").upper() +acoustic_substepping = "T" if split == "T" else "F" + +gamma = 1.4 + +# Sod-like driver vs ambient +p_drive, rho_drive = 1.0, 1.0 +p_amb, rho_amb = 0.1, 0.125 + +c_amb = math.sqrt(gamma * p_amb / rho_amb) +u_bg = 0.4 * c_amb # background mean flow in x (ambient Mach ~0.4) +# Transverse velocities JUMP across the driver interface (shear in BOTH y and z): this is +# what makes BOTH off-normal momentum slots nonzero and varying at the flagged x-faces. +v_amb = 0.15 * c_amb +v_drive = -0.15 * c_amb +w_amb = -0.10 * c_amb +w_drive = 0.10 * c_amb + +L = 1.0 +Nx = 47 # 48 cells in x +Ny = 31 # 32 cells in y (uniform-in-y,z field) +Nz = 31 # 32 cells in z +dx = L / (Nx + 1) +Ly = L * (Ny + 1) / (Nx + 1) # cubic cells (dy = dz = dx) +Lz = L * (Nz + 1) / (Nx + 1) + +CFL = 0.4 +umag = math.sqrt(u_bg**2 + max(abs(v_amb), abs(v_drive)) ** 2 + max(abs(w_amb), abs(w_drive)) ** 2) +dt_init = CFL * dx / (umag + math.sqrt(gamma * p_drive / rho_drive)) + +T_stop = 0.04 +t_save = T_stop / 4.0 + +print( + json.dumps( + { + "run_time_info": "T", + "x_domain%beg": 0.0, + "x_domain%end": L, + "y_domain%beg": 0.0, + "y_domain%end": Ly, + "z_domain%beg": 0.0, + "z_domain%end": Lz, + "m": Nx, + "n": Ny, + "p": Nz, + "dt": dt_init, + "cfl_adap_dt": "T", + "cfl_target": CFL, + "t_step_start": 0, + "n_start": 0, + "t_stop": T_stop, + "t_save": t_save, + "num_patches": 2, + "model_eqns": 2, + "num_fluids": 1, + "alt_soundspeed": "F", + "mpp_lim": "F", + "mixture_err": "F", + "time_stepper": "rk3", + "weno_order": 5, + "weno_eps": 1.0e-6, + "mp_weno": "F", + "weno_avg": "F", + "mapped_weno": "F", + "null_weights": "F", + "riemann_solver": "hllc", + "wave_speeds": "direct", + "avg_state": "arithmetic", + "bc_x%beg": -1, + "bc_x%end": -1, + "bc_y%beg": -1, + "bc_y%end": -1, + "bc_z%beg": -1, + "bc_z%end": -1, + "acoustic_substepping": acoustic_substepping, + "n_acoustic_substeps": 0, + "acoustic_div_damp": 0.1, + "format": "binary", + "precision": "double", + "prim_vars_wrt": "T", + "cons_vars_wrt": "T", + "parallel_io": "F", + # Patch 1: ambient filling the domain (transverse velocities v_amb, w_amb) + "patch_icpp(1)%geometry": 9, + "patch_icpp(1)%x_centroid": 0.5 * L, + "patch_icpp(1)%y_centroid": 0.5 * Ly, + "patch_icpp(1)%z_centroid": 0.5 * Lz, + "patch_icpp(1)%length_x": L, + "patch_icpp(1)%length_y": 2.0 * Ly, + "patch_icpp(1)%length_z": 2.0 * Lz, + "patch_icpp(1)%vel(1)": u_bg, + "patch_icpp(1)%vel(2)": v_amb, + "patch_icpp(1)%vel(3)": w_amb, + "patch_icpp(1)%pres": p_amb, + "patch_icpp(1)%alpha_rho(1)": rho_amb, + "patch_icpp(1)%alpha(1)": 1.0, + # Patch 2: high-pressure driver slab (0.15 < x < 0.35), transverse v_drive, w_drive + "patch_icpp(2)%geometry": 9, + "patch_icpp(2)%alter_patch(1)": "T", + "patch_icpp(2)%x_centroid": 0.25 * L, + "patch_icpp(2)%y_centroid": 0.5 * Ly, + "patch_icpp(2)%z_centroid": 0.5 * Lz, + "patch_icpp(2)%length_x": 0.2 * L, + "patch_icpp(2)%length_y": 2.0 * Ly, + "patch_icpp(2)%length_z": 2.0 * Lz, + "patch_icpp(2)%vel(1)": u_bg, + "patch_icpp(2)%vel(2)": v_drive, + "patch_icpp(2)%vel(3)": w_drive, + "patch_icpp(2)%pres": p_drive, + "patch_icpp(2)%alpha_rho(1)": rho_drive, + "patch_icpp(2)%alpha(1)": 1.0, + "fluid_pp(1)%gamma": 1.0 / (gamma - 1.0), + "fluid_pp(1)%pi_inf": 0.0, + } + ) +) diff --git a/src/common/include/1dHardcodedIC.fpp b/src/common/include/1dHardcodedIC.fpp index 0be970cbd3..cfc9c43500 100644 --- a/src/common/include/1dHardcodedIC.fpp +++ b/src/common/include/1dHardcodedIC.fpp @@ -1,6 +1,7 @@ #:def Hardcoded1DVariables() ! Place any declaration of intermediate variables here real(wp) :: x_mid_diffu, width_sq, profile_shape, temp, molar_mass_inv, y1, y2, y3, y4 + real(wp) :: r2 ! squared distance from pulse centroid (hcid 183) #:enddef #:def Hardcoded1D() @@ -64,6 +65,12 @@ molar_mass_inv = 1.0_wp/2.01588_wp q_prim_vf(eqn_idx%cont%beg)%sf(i, 0, 0) = 101325.0_wp/(temp*8.3144626_wp*1000.0_wp*molar_mass_inv) + case (183) ! Parameterized low-Mach Gaussian acoustic pressure pulse (benchmark / split-explicit) + ! Uniform background (rho, vel, p) come from the patch params; this adds a Gaussian + ! pressure perturbation dp = 1e-3 * pres * exp(-r^2/sigma^2), sigma = 0.05, centered at + ! the patch x_centroid. No analytic IC string -> no case.fpp codegen -> no per-case rebuild. + r2 = (x_cc(i) - patch_icpp(patch_id)%x_centroid)**2 + q_prim_vf(eqn_idx%E)%sf(i, 0, 0) = patch_icpp(patch_id)%pres*(1._wp + 1.e-3_wp*exp(-r2/(0.05_wp**2))) case default call s_int_to_str(patch_id, iStr) call s_mpi_abort("Invalid hcid specified for patch " // trim(iStr)) diff --git a/src/common/include/2dHardcodedIC.fpp b/src/common/include/2dHardcodedIC.fpp index 8ac29f95ca..65d7007686 100644 --- a/src/common/include/2dHardcodedIC.fpp +++ b/src/common/include/2dHardcodedIC.fpp @@ -385,6 +385,11 @@ q_prim_vf(eqn_idx%E)%sf(i, j, 0) = P_atm q_prim_vf(eqn_idx%species%beg)%sf(i, j, 0) = Y_O2 q_prim_vf(eqn_idx%species%end)%sf(i, j, 0) = Y_N2 + case (264) ! Parameterized low-Mach Gaussian acoustic pressure pulse (benchmark / split-explicit) + ! Uniform background (rho, vel, p) from patch params; adds dp = 1e-3 * pres * exp(-r^2/sigma^2), + ! sigma = 0.05, centered at (x_centroid, y_centroid). Numeric hcid -> no case.fpp codegen -> no rebuild. + r2 = (x_cc(i) - patch_icpp(patch_id)%x_centroid)**2 + (y_cc(j) - patch_icpp(patch_id)%y_centroid)**2 + q_prim_vf(eqn_idx%E)%sf(i, j, 0) = patch_icpp(patch_id)%pres*(1._wp + 1.e-3_wp*exp(-r2/(0.05_wp**2))) case default if (proc_rank == 0) then call s_int_to_str(patch_id, iStr) diff --git a/src/common/include/3dHardcodedIC.fpp b/src/common/include/3dHardcodedIC.fpp index 6f4be25f56..53f212035b 100644 --- a/src/common/include/3dHardcodedIC.fpp +++ b/src/common/include/3dHardcodedIC.fpp @@ -2,6 +2,7 @@ ! Place any declaration of intermediate variables here real(wp) :: rhoH, rhoL, pRef, pInt, h, lam, wl, amp, intH, alph, Mach real(wp) :: eps + real(wp) :: r2 ! squared distance from pulse centroid (hcid 304) ! IGR Jets Arrays to stor position and radii of jets from input file real(wp), dimension(:), allocatable :: y_th_arr, z_th_arr, r_th_arr @@ -178,6 +179,12 @@ q_prim_vf(eqn_idx%mom%beg + 0)%sf(i, j, k) = Mach*376.636429464809*sin(x_cc(i)/1)*cos(y_cc(j)/1)*sin(z_cc(k)/1) q_prim_vf(eqn_idx%mom%beg + 1)%sf(i, j, k) = -Mach*376.636429464809*cos(x_cc(i)/1)*sin(y_cc(j)/1)*sin(z_cc(k)/1) end if + case (304) ! Parameterized low-Mach Gaussian acoustic pressure pulse (benchmark / split-explicit) + ! Uniform background (rho, vel, p) from patch params; adds dp = 1e-3 * pres * exp(-r^2/sigma^2), + ! sigma = 0.05, centered at the patch centroid. Numeric hcid -> no case.fpp codegen -> no rebuild. + r2 = (x_cc(i) - patch_icpp(patch_id)%x_centroid)**2 + (y_cc(j) - patch_icpp(patch_id)%y_centroid)**2 + (z_cc(k) & + & - patch_icpp(patch_id)%z_centroid)**2 + q_prim_vf(eqn_idx%E)%sf(i, j, k) = patch_icpp(patch_id)%pres*(1._wp + 1.e-3_wp*exp(-r2/(0.05_wp**2))) case default call s_int_to_str(patch_id, iStr) call s_mpi_abort("Invalid hcid specified for patch " // trim(iStr)) diff --git a/src/simulation/m_acoustic_substep.fpp b/src/simulation/m_acoustic_substep.fpp new file mode 100644 index 0000000000..e33b09d562 --- /dev/null +++ b/src/simulation/m_acoustic_substep.fpp @@ -0,0 +1,1221 @@ +!> +!! @file m_acoustic_substep.fpp +!! @brief Contains module m_acoustic_substep + +#:include 'macros.fpp' +#:include 'case.fpp' + +!> @brief Cheap forward-backward acoustic substep kernel for the split-explicit low-Mach time integrator (acoustic_substepping). +!! +!! In split mode the HLLC solver returns only the slow (advective) flux: +!! contact-upwinded momentum advection and the volume-fraction flux; the mass +!! and total-energy face fluxes are zeroed there. This module advances the +!! conserved state by `n_micro` cheap second-order forward-backward microsteps +!! that transport mass and total energy and perform the acoustic (pressure) +!! work, with the slow forcing held frozen. +!! +!! Per microstep (5-equation model, total-energy formulation, step size dtau): +!! 1. narrow halo exchange of the conserved field +!! 2. forward : advance alpha_k*rho_k and rho*E by the second-order centered +!! divergence of (alpha_k*rho_k * u) and ((rho*E + p) * u), using +!! the current (frozen-this-microstep) velocity u, plus +!! dtau * rhs_slow +!! 3. EOS : recompute the cell pressure p from the updated conserved state +!! 4a. divergence: build div_sf = centered div(rho*u) over the interior + one ghost layer +!! 4b. backward: advance rho*u by -dtau*grad(p_new) + dtau*rhs_slow_mom +!! + acoustic_div_damp*[Dx_i^2 * d/dx_i(div(rho*u))] (grad-div divergence damping) +!! +!! The divergence damping is a grad-div smoother that suppresses ONLY compressive +!! (nonzero-divergence) acoustic noise. The damping increment is the CENTERED gradient of +!! the CENTERED momentum divergence div_sf, so the two share one discrete stencil: the +!! resulting operator is exactly -v v^T in Fourier space (rank one), giving a zero eigenvalue +!! on every discretely divergence-free mode -> vortical flow is left untouched to machine +!! precision (a per-component Laplacian would instead dissipate it). acoustic_div_damp is +!! DIMENSIONLESS: the Dx_i^2 normalization cancels the grid spacing (raw differences on a +!! uniform grid), NOT scaled by dtau and NOT divided by Dx^2. The discrete operator's most +!! negative eigenvalue is -num_dims, so the explicit-smoother stability bound is +!! acoustic_div_damp <= 2/num_dims per microstep (default 0.1 is well inside this for 1-3D). +!! +!! The mixture coefficients (gamma, pi_inf, qv) come from the cell-local volume +!! fractions and partial densities. For num_fluids>1 the volume fractions evolve by +!! pure slow (material) advection (dtau*rhs_slow_vf(%adv) each microstep); their +!! acoustic div(u) coupling is O(M^2) and dropped in the low-Mach limit. The EOS +!! pressure is therefore cell-local and cheap. +module m_acoustic_substep + + use m_derived_types + use m_global_parameters + use m_mpi_proxy + use m_variables_conversion + use m_boundary_common + use m_weno, only: s_weno + use m_riemann_solver_hllc, only: s_acoustic_face_flux, s_convective_face_flux + use m_constants, only: BC_GHOST_EXTRAP, BC_RIEMANN_EXTRAP, BC_CHAR_NR_SUB_OUTFLOW, BC_CHAR_FF_SUB_OUTFLOW, & + & BC_CHAR_CP_SUB_OUTFLOW, BC_CHAR_SUP_OUTFLOW, BC_DIRICHLET + use m_bubbles_EE, only: divu, rs, s_advance_bubbles_EE, s_comp_alpha_from_n, s_compute_bubbles_EE_rhs + use m_helper, only: s_comp_n_from_cons + + implicit none + + private + public :: s_initialize_acoustic_substep_module, s_acoustic_substep, s_finalize_acoustic_substep_module, frozen_conv_mom_face + + !> Cell pressure scratch (working precision), spanning the buffered domain. + real(wp), allocatable, dimension(:,:,:) :: p_sf + $:GPU_DECLARE(create='[p_sf]') + + !> Momentum-divergence scratch div(rho*u) (working precision), spanning the buffered domain. Built from the halo-valid momentum + !! each microstep, so its centered gradient (the grad-div damping) shares the divergence stencil and exactly annihilates + !! divergence-free vortical modes. + real(wp), allocatable, dimension(:,:,:) :: div_sf + $:GPU_DECLARE(create='[div_sf]') + + !> Start-of-microstep snapshot of the transported conserved vars (partial densities 1:num_fluids, then total energy in slot + !! num_fluids+1), spanning the buffered domain. The forward sweep reads its centered flux stencil ONLY from this frozen state, + !! so the flux divergence telescopes and species mass is conserved for any num_fluids (no in-place read hazard). + real(wp), allocatable, dimension(:,:,:,:) :: q_snap + $:GPU_DECLARE(create='[q_snap]') + + !> Primitive acoustic sub-vector reconstructed at faces: slot 1 = pressure, slot 2 = direction-normal velocity, slot 3 = mixture + !! density. These are exactly what the flagged-face acoustic flux consumes (sound speed is derived from p and rho, not + !! reconstructed separately). + integer, parameter :: n_acoustic = 3 + integer, parameter :: acou_p = 1, acou_u = 2, acou_rho = 3 + + !> Primitive acoustic sub-vector over the buffered domain, rebuilt each microstep as the WENO reconstruction input (pressure and + !! density once, normal velocity refreshed per direction). + type(scalar_field), allocatable, dimension(:) :: q_acoustic_vf + $:GPU_DECLARE(create='[q_acoustic_vf]') + + !> Full primitive face-reconstruction vector over the buffered domain, slots 1..eqn_idx%adv%end in the standard primitive layout + !! (partial densities at %cont, ALL velocity components at %mom, pressure at %E, volume fractions at %adv) -- mirrors m_rhs's + !! q_prim_qp%vf so the flagged-face convective HLLC flux consumes states in the same slot order, and the flagged-face mixture + !! EOS rebuild reads the volume fractions reconstructed AT the face (not the cell). Rebuilt only on flagged microsteps. + type(scalar_field), allocatable, dimension(:) :: q_prim_vf + $:GPU_DECLARE(create='[q_prim_vf]') + + !> Live primitive view consumed by the EE bubble co-subcycle (s_advance_bubbles_EE): cell velocities (for the velocity + !! divergence div(u)), live bubble-aware pressure, void fraction, number density, and the bubble moments (R, V, and pb/mv when + !! non-polytropic). Only the slots the bubble integrator and the reused div(u) builder read are allocated; built (and the array + !! allocated) only when bubbles_euler, so the no-bubble path never touches it. + type(scalar_field), allocatable, dimension(:) :: q_prim_bub_vf + $:GPU_DECLARE(create='[q_prim_bub_vf]') + + !> WENO-reconstructed left/right FULL primitive face states (slots 1..eqn_idx%adv%end, layout matching q_prim_vf and m_rhs's + !! qL_rsx_vf/qR_rsx_vf), reused per direction; consumed by the flagged-face convective HLLC flux. Reconstruction is gated by + !! any_flagged so it is skipped entirely on smooth flow. + real(wp), allocatable, dimension(:,:,:,:) :: qL_rs_vf, qR_rs_vf + $:GPU_DECLARE(create='[qL_rs_vf, qR_rs_vf]') + + !> Per-face discontinuity mask (1 = flagged -> robust WENO+HLLC-acoustic tier, 0 = smooth -> cheap centered tier), last index = + !! face-normal direction (1=x, 2=y, 3=z), addressed at cell (j,k,l) for the face between (j,k,l) and its +dir neighbour. + !! Produced in the flag pass and consumed by the flux tier selection; integer is the cheapest GPU-portable form of a per-face + !! boolean. + integer, allocatable, dimension(:,:,:,:) :: acoustic_flag + $:GPU_DECLARE(create='[acoustic_flag]') + + !> Robust-tier face-flux deltas at flagged faces, stored per face-normal direction so the per-direction WENO buffers + !! (qL_rs_vf/qR_rs_vf, overwritten each direction) can be reused. dEflux = full live HLLC energy face flux (convective E*u + + !! acoustic pressure work) MINUS the full centered energy face flux (the energy delta consumed by the forward sweep); + !! dmassflux(:,:,:,dir,f) = live HLLC partial-density (alpha*rho_k) face flux MINUS the centered convective mass flux, per fluid + !! (the mass delta consumed by the forward sweep). flux_mom_rob = robust normal-momentum (acoustic star-pressure) flux consumed + !! by the backward sweep; the convective normal+transverse momentum transport stays in the frozen slow forcing rhs_slow_vf + !! (already contact-upwinded HLLC, frozen at stage entry). All are addressed at cell (j,k,l) for the +dir face and are exactly + !! zero at unflagged (smooth) faces, so the centered tier is left bit-identical there. + real(wp), allocatable, dimension(:,:,:,:) :: dEflux, flux_mom_rob + $:GPU_DECLARE(create='[dEflux, flux_mom_rob]') + real(wp), allocatable, dimension(:,:,:,:,:) :: dmassflux + $:GPU_DECLARE(create='[dmassflux]') + + !> Live momentum machinery at flagged faces (per face-normal direction, per velocity component). frozen_conv_mom_face = the + !! EXACT per-face slow momentum flux the slow (advective) HLLC path computed at the RK stage state U^(s-1) -- whose divergence + !! IS the momentum part of the frozen slow forcing rhs_slow_vf(mom). Under acoustic_substepping the HLLC slow variant emits a + !! CONVECTIVE-ONLY momentum flux (contact-upwinded rho*u_n*u_d, with NO star-pressure p_Star, no acoustic dissipation, no pcorr + !! -- those are deferred to the acoustic tier), so frozen_conv_mom_face is a faithful copy of that convective flux, NOT a full + !! slow flux. The star-pressure (acoustic) momentum is supplied LIVE and separately by flux_mom_rob, so it must NOT also be + !! present here. The LOAD-BEARING invariant is that frozen_conv_mom_face EXACTLY mirrors the flux_n(mom) whose divergence is + !! rhs_slow_vf(mom), so the two divergences cancel on every RK stage. It is PUBLIC and populated by m_rhs (s_compute_rhs) + !! directly from flux_n(dir)%vf(mom) each stage, in GLOBAL momentum-component layout (component d = + !! flux_n(dir)%vf(mom%beg+d-1)), addressed at cell (j,k,l) for the +dir face -- the same convention as dmomflux below. Storing + !! the slow path's actual flux (not a reconstruction from U^n) makes the cancellation exact on EVERY RK stage. dmomflux = live + !! HLLC convective momentum flux (re-evaluated each microstep, mapped from flux_mom's rotated slots: slot 1 = face-normal, 2..nv + !! = transverse) MINUS frozen_conv_mom_face, the per-face delta consumed by the backward sweep so the NET convective momentum + !! becomes live full-HLLC (the frozen part cancels the slow-forcing convective momentum) while viscous/source momentum stays + !! frozen-slow. dmomflux is exactly zero at smooth faces so the centered tier is left bit-identical there. + real(wp), allocatable, dimension(:,:,:,:,:) :: frozen_conv_mom_face, dmomflux + $:GPU_DECLARE(create='[frozen_conv_mom_face, dmomflux]') + + !> Dimensionless max-indicator-dominance ratio above which a face's pressure stencil is judged discontinuous. The face test + !! compares the LARGEST WENO smoothness indicator beta_max = max(beta_m, beta_0, beta_p) (squared cell differences of the + !! acoustic pressure; Borges et al. 2008) to the relative pressure-squared floor beta_floor = (eps_rel*p_scale)^2 (see eps_rel), + !! never to weno_eps, so the ratio is dimensionless, pressure-scale-invariant, and independent of the user's WENO epsilon. The + !! ratio equals (d_max/p_scale)^2 / eps_rel^2: a face is flagged once the largest per-cell pressure jump exceeds + !! sqrt(disc_ratio_thresh)*eps_rel of the local pressure scale. This is the max-indicator form (NOT the WENO-Z spread tau_z = + !! |beta_p - beta_m|, which is exactly 0 at a face-centered 1-cell jump where beta_m ~ beta_p ~ 0 and so MISSES a sharp shock): + !! the dominance form fires on a sharp jump (a prior experiment measured ~8.1e11 at the shock) while staying ~0 on smooth flow. + !! At disc_ratio_thresh=1e8 the flag fires when the per-cell pressure jump exceeds 1% of the local pressure scale: far above the + !! smooth golden 7F8ED027 (M~0.01 acoustic pulse, dp/p ~ 1e-4 -> ratio ~1e4, zero flags, bit-identical) and far below a genuine + !! shock (~1e11). The relative floor makes the whole test invariant to the pressure normalization. + real(wp), parameter :: disc_ratio_thresh = 1.e8_wp + + !> Dimensionless relative-roundoff fraction for the face test. A face is a candidate only if its across-face pressure gradient + !! exceeds eps_rel of the local pressure scale (max |p| over the 4-point stencil); below that the gradient is floating-point + !! roundoff, not a resolved feature. It sets the relative median floor (eps_rel*p_scale)^2 and the candidate guard, making both + !! scale as pressure^2 so the whole test is invariant to the pressure normalization. This is a roundoff-rejection threshold, NOT + !! a tuned shock sensor. + real(wp), parameter :: eps_rel = 1.e-6_wp + + !> Volume-fraction jump tolerance flagging a material interface. alpha in [0,1] is dimensionless, so this is a pure jump in a + !! [0,1] field: far above roundoff, far below any real interface jump (O(0.1-1)). For num_fluids==1 alpha==1 everywhere, so the + !! jump is ~0 and this flag stays false. + real(wp), parameter :: eps_alpha = 1.e-6_wp + +contains + + !> Allocate scratch storage for the acoustic substep kernel. + impure subroutine s_initialize_acoustic_substep_module + + integer :: i !< Acoustic sub-vector / primitive slot iterator + !> Number of reconstructed full-primitive variables (= eqn_idx%adv%end: partial densities, velocities, pressure, volume + !! fractions) + integer :: nfull + + nfull = eqn_idx%adv%end + + @:ALLOCATE(p_sf(idwbuff(1)%beg:idwbuff(1)%end, idwbuff(2)%beg:idwbuff(2)%end, idwbuff(3)%beg:idwbuff(3)%end)) + @:ALLOCATE(div_sf(idwbuff(1)%beg:idwbuff(1)%end, idwbuff(2)%beg:idwbuff(2)%end, idwbuff(3)%beg:idwbuff(3)%end)) + @:ALLOCATE(q_snap(idwbuff(1)%beg:idwbuff(1)%end, idwbuff(2)%beg:idwbuff(2)%end, idwbuff(3)%beg:idwbuff(3)%end, & + & 1:num_fluids + 1)) + + @:ALLOCATE(q_acoustic_vf(1:n_acoustic)) + do i = 1, n_acoustic + @:ALLOCATE(q_acoustic_vf(i)%sf(idwbuff(1)%beg:idwbuff(1)%end, idwbuff(2)%beg:idwbuff(2)%end, & + & idwbuff(3)%beg:idwbuff(3)%end)) + @:ACC_SETUP_SFs(q_acoustic_vf(i)) + end do + @:ALLOCATE(q_prim_vf(1:nfull)) + do i = 1, nfull + @:ALLOCATE(q_prim_vf(i)%sf(idwbuff(1)%beg:idwbuff(1)%end, idwbuff(2)%beg:idwbuff(2)%end, idwbuff(3)%beg:idwbuff(3)%end)) + @:ACC_SETUP_SFs(q_prim_vf(i)) + end do + @:ALLOCATE(qL_rs_vf(idwbuff(1)%beg:idwbuff(1)%end, idwbuff(2)%beg:idwbuff(2)%end, idwbuff(3)%beg:idwbuff(3)%end, 1:nfull)) + @:ALLOCATE(qR_rs_vf(idwbuff(1)%beg:idwbuff(1)%end, idwbuff(2)%beg:idwbuff(2)%end, idwbuff(3)%beg:idwbuff(3)%end, 1:nfull)) + + @:ALLOCATE(acoustic_flag(idwbuff(1)%beg:idwbuff(1)%end, idwbuff(2)%beg:idwbuff(2)%end, idwbuff(3)%beg:idwbuff(3)%end, & + & 1:num_dims)) + @:ALLOCATE(dEflux(idwbuff(1)%beg:idwbuff(1)%end, idwbuff(2)%beg:idwbuff(2)%end, idwbuff(3)%beg:idwbuff(3)%end, 1:num_dims)) + @:ALLOCATE(flux_mom_rob(idwbuff(1)%beg:idwbuff(1)%end, idwbuff(2)%beg:idwbuff(2)%end, idwbuff(3)%beg:idwbuff(3)%end, & + & 1:num_dims)) + @:ALLOCATE(dmassflux(idwbuff(1)%beg:idwbuff(1)%end, idwbuff(2)%beg:idwbuff(2)%end, idwbuff(3)%beg:idwbuff(3)%end, & + & 1:num_dims, 1:num_fluids)) + @:ALLOCATE(frozen_conv_mom_face(idwbuff(1)%beg:idwbuff(1)%end, idwbuff(2)%beg:idwbuff(2)%end, & + & idwbuff(3)%beg:idwbuff(3)%end, 1:num_dims, 1:num_vels)) + @:ALLOCATE(dmomflux(idwbuff(1)%beg:idwbuff(1)%end, idwbuff(2)%beg:idwbuff(2)%end, idwbuff(3)%beg:idwbuff(3)%end, & + & 1:num_dims, 1:num_vels)) + + ! Bubble co-subcycle primitive view (only the slots the integrator and the div(u) builder read). + if (bubbles_euler) then + @:ALLOCATE(q_prim_bub_vf(1:sys_size)) + do i = eqn_idx%mom%beg, eqn_idx%mom%end + @:ALLOCATE(q_prim_bub_vf(i)%sf(idwbuff(1)%beg:idwbuff(1)%end, idwbuff(2)%beg:idwbuff(2)%end, & + & idwbuff(3)%beg:idwbuff(3)%end)) + @:ACC_SETUP_SFs(q_prim_bub_vf(i)) + end do + @:ALLOCATE(q_prim_bub_vf(eqn_idx%E)%sf(idwbuff(1)%beg:idwbuff(1)%end, idwbuff(2)%beg:idwbuff(2)%end, & + & idwbuff(3)%beg:idwbuff(3)%end)) + @:ACC_SETUP_SFs(q_prim_bub_vf(eqn_idx%E)) + @:ALLOCATE(q_prim_bub_vf(eqn_idx%alf)%sf(idwbuff(1)%beg:idwbuff(1)%end, idwbuff(2)%beg:idwbuff(2)%end, & + & idwbuff(3)%beg:idwbuff(3)%end)) + @:ACC_SETUP_SFs(q_prim_bub_vf(eqn_idx%alf)) + if (adv_n) then + @:ALLOCATE(q_prim_bub_vf(eqn_idx%n)%sf(idwbuff(1)%beg:idwbuff(1)%end, idwbuff(2)%beg:idwbuff(2)%end, & + & idwbuff(3)%beg:idwbuff(3)%end)) + @:ACC_SETUP_SFs(q_prim_bub_vf(eqn_idx%n)) + end if + do i = eqn_idx%bub%beg, eqn_idx%bub%end + @:ALLOCATE(q_prim_bub_vf(i)%sf(idwbuff(1)%beg:idwbuff(1)%end, idwbuff(2)%beg:idwbuff(2)%end, & + & idwbuff(3)%beg:idwbuff(3)%end)) + @:ACC_SETUP_SFs(q_prim_bub_vf(i)) + end do + end if + + end subroutine s_initialize_acoustic_substep_module + + !> Advance the conserved field in place by `n_micro` forward-backward acoustic microsteps. + !! @param q_cons_vf Conserved field (advanced in place). + !! @param rhs_slow_vf Frozen slow (advective) forcing, added dtau-scaled each microstep. + !! @param bc_type Boundary-condition type fields for the halo exchange. + !! @param dtau Microstep size (= dt_stage / n_substeps_stage). + !! @param n_micro Number of microsteps to take. + impure subroutine s_acoustic_substep(q_cons_vf, rhs_slow_vf, bc_type, dtau, n_micro) + + type(scalar_field), dimension(sys_size), intent(inout) :: q_cons_vf + type(scalar_field), dimension(sys_size), intent(in) :: rhs_slow_vf + type(integer_field), dimension(1:num_dims,1:2), intent(in) :: bc_type + real(wp), intent(in) :: dtau + integer, intent(in) :: n_micro + real(wp) :: rho !< Mixture density max(sum_k alpha_k*rho_k, sgm_eps) + !> Frozen mixture stiffened-gas coefficients (sum_k alpha_k*{gammas,pi_infs}, sum_k alpha_rho_k*qvs) + real(wp) :: gamma, pinf, qv + real(wp) :: rho_n !< Neighbour-cell mixture density (velocity denominator) + real(wp) :: dyn_p !< Dynamic pressure 0.5*rho*|u|^2 + real(wp) :: alf !< Void (bubble volume) fraction for the bubbles_euler mixture-pressure correction + real(wp) :: nbub !< Bubble number density for the co-subcycle conserved-to-primitive moment recovery + real(wp) :: div !< Centered flux divergence accumulator + real(wp) :: dpdx !< Centered pressure-gradient component + real(wp) :: damp !< Grad-div divergence-damping stencil accumulator + real(wp) :: inv_2dx, inv_2dy, inv_2dz !< 1/(2*dx) etc. for centered first differences + real(wp) :: u_xp, u_xm, u_yp, u_ym, u_zp, u_zm !< Stencil-neighbour cell-center velocities (computed once per cell) + integer :: q !< Microstep iterator + integer :: qb !< Bubble-bin / bubble-equation-slot iterator for the co-subcycle + integer :: f !< Fluid iterator (mixture sums) + integer :: i, j, k, l !< Generic / spatial iterators + integer :: momxb, momxe, contb !< First/last momentum and first continuity equation indices + integer :: esnap !< Total-energy slot in the q_snap snapshot (= num_fluids + 1) + integer :: db_x, de_x, db_y, de_y, db_z, de_z !< div_sf loop bounds (interior + one ghost layer) + integer :: advb, adve !< First/last volume-fraction (advection) equation indices + integer :: joff, koff, loff !< +1 face-neighbour offset for the current direction (one nonzero) + real(wp) :: p_m4, p_0c, p_p1, p_p2 !< Acoustic pressures over the 4-point face stencil (j-off, j, j+off, j+2off) + real(wp) :: p_scale, beta_floor !< Local pressure scale max|p| and the relative floor (eps_rel*p_scale)^2 + real(wp) :: d_m, d_0, d_p !< Acoustic-pressure first differences across the face stencil + real(wp) :: beta_m, beta_0, beta_p !< WENO smoothness indicators (squared differences) of the stencil + real(wp) :: beta_max !< Largest stencil indicator max(beta_m, beta_0, beta_p) for the max-indicator-dominance test + logical :: flag_disc !< Combined per-face discontinuity flag + real(wp) :: gam_a, pin_a, gam_b, pin_b !< Left/right cell mixture stiffened-gas coefficients for the face EOS + real(wp) :: pres_a, rho_a, c_a !< Left reconstructed face state (pressure, mixture density) + sound speed + real(wp) :: pres_b, rho_b, c_b !< Right reconstructed face state + sound speed + real(wp) :: qv_a, qv_b, ke_a, ke_b, E_a, E_b !< Left/right qv-sum, kinetic energy, and rebuilt total-energy density (EOS) + real(wp) :: flmom, flE !< HLLC acoustic face fluxes (normal momentum, pressure work) + real(wp) :: flux_E_c !< HLLC convective energy face flux (E*u contact-upwinded) + real(wp) :: se_face, se_conv !< Centered pressure-work and centered convective-energy face fluxes the robust tier replaces + real(wp) :: u_a, u_b, cm !< Cell-center normal velocities at the two face cells and the centered per-fluid mass face flux + integer :: nv, ic, d !< Velocity-component count, transverse-fill counter, component iterator + + #:if not MFC_CASE_OPTIMIZATION and USING_AMD + !> Reconstructed L/R partial densities + HLLC convective mass flux + real(wp), dimension(3) :: rhoYks_a, rhoYks_b, flux_cont + !> L/R velocities (slot 1 = normal) + HLLC convective mom flux + real(wp), dimension(3) :: vel_a_arr, vel_b_arr, flux_mom_c + real(wp), dimension(3) :: nRtmp !< Conserved bubble-radii moments for the per-cell number-density recovery + #:else + !> Reconstructed L/R partial densities + conv mass flux + real(wp), dimension(num_fluids) :: rhoYks_a, rhoYks_b, flux_cont + real(wp), dimension(num_dims) :: vel_a_arr, vel_b_arr, flux_mom_c !< L/R velocities (slot 1 = normal) + conv mom flux + real(wp), dimension(nb) :: nRtmp !< Conserved bubble-radii moments for the per-cell number-density recovery + #:endif + real(wp) :: sm_r, sm_l, gd_r, gd_l, dfm_r, dfm_l !< Backward momentum robust-correction face pressures/damping/deltas + integer :: flg_r, flg_l !< Right/left face discontinuity flags (backward momentum correction) + integer :: fb_x, fb_y, fb_z !< Flag/flux loop low bounds (one ghost below interior on the normal axis) + integer :: bcc !< Per-face boundary code (bc_type%sf) at the boundary-adjacent face (negative only at a physical open edge) + integer :: any_flag_max !< Per-microstep MAX reduction of acoustic_flag (>0 iff any face flagged); gates reconstruction + logical :: any_flagged !< .true. iff some interior(+ghost) face is flagged this microstep -> reconstruction must run + + momxb = eqn_idx%mom%beg + momxe = eqn_idx%mom%end + contb = eqn_idx%cont%beg + esnap = num_fluids + 1 + advb = eqn_idx%adv%beg + adve = eqn_idx%adv%end + nv = momxe - momxb + 1 ! Number of velocity/momentum components (= num_dims for model_eqns=2) + + ! div_sf is needed one ghost layer beyond the interior so its centered gradient can be taken + ! at interior cells; momentum carries >= 2 ghost layers, so this layer is always halo-valid. + db_x = idwint(1)%beg - 1; de_x = idwint(1)%end + 1 + if (n > 0) then; db_y = idwint(2)%beg - 1; de_y = idwint(2)%end + 1; else; db_y = 0; de_y = 0; end if + if (p > 0) then; db_z = idwint(3)%beg - 1; de_z = idwint(3)%end + 1; else; db_z = 0; de_z = 0; end if + + do q = 1, n_micro + ! 1. Narrow halo exchange of the conserved field (alpha_k*rho_k, rho*u, rho*E + ! are all carried in q_cons_vf; the centered stencil needs one ghost cell). + call s_populate_variables_buffers(bc_type, q_cons_vf) + + ! 2a. Cell pressure from the CURRENT conserved state (used by the energy flux), via the + ! direct mixture stiffened-gas EOS (model_eqns=2): inverting + ! rho*E = gamma*p + pi_inf + 0.5*rho*|u|^2 + qv with frozen mixture coefficients + ! rho=sum_k alpha_rho_k, gamma=sum_k alpha_k*gammas(k), pi_inf=sum_k alpha_k*pi_infs(k), + ! qv=sum_k alpha_rho_k*qvs(k) (matches s_convert_species_to_mixture_variables_acc). + $:GPU_PARALLEL_LOOP(collapse=3, private='[i, j, k, l, f, rho, gamma, pinf, qv, dyn_p, alf]') + do l = idwbuff(3)%beg, idwbuff(3)%end + do k = idwbuff(2)%beg, idwbuff(2)%end + do j = idwbuff(1)%beg, idwbuff(1)%end + rho = 0._wp; gamma = 0._wp; pinf = 0._wp; qv = 0._wp + $:GPU_LOOP(parallelism='[seq]') + do f = 1, num_fluids + rho = rho + q_cons_vf(eqn_idx%cont%beg + f - 1)%sf(j, k, l) + qv = qv + q_cons_vf(eqn_idx%cont%beg + f - 1)%sf(j, k, l)*qvs(f) + gamma = gamma + q_cons_vf(eqn_idx%adv%beg + f - 1)%sf(j, k, l)*gammas(f) + pinf = pinf + q_cons_vf(eqn_idx%adv%beg + f - 1)%sf(j, k, l)*pi_infs(f) + end do + ! Single-fluid Euler-Euler bubbles: the lone advection slot is the void fraction (not a + ! material alpha summing to 1), so the mixture coefficients are the liquid's directly -- + ! mirrors s_convert_species_to_mixture_variables_acc's (num_fluids==1 .and. bubbles_euler) branch. + if (num_fluids == 1 .and. bubbles_euler) then + gamma = gammas(1); pinf = pi_infs(1); qv = qvs(1) + end if + rho = max(rho, sgm_eps) + + dyn_p = 0._wp + $:GPU_LOOP(parallelism='[seq]') + do i = momxb, momxe + dyn_p = dyn_p + 0.5_wp*q_cons_vf(i)%sf(j, k, l)*q_cons_vf(i)%sf(j, k, l)/rho + end do + + ! Bubble-aware mixture pressure: the void fraction (eqn_idx%alf) dilutes the liquid energy, + ! p = ((rho*E - dyn_p)/(1 - alf) - pi_inf - qv)/gamma -- the same EOS branch s_compute_pressure + ! uses when bubbles_euler, so the pressure driving the acoustics tracks the current void fraction. + if (bubbles_euler) then + alf = q_cons_vf(eqn_idx%alf)%sf(j, k, l) + p_sf(j, k, l) = ((q_cons_vf(eqn_idx%E)%sf(j, k, l) - dyn_p)/(1._wp - alf) - pinf - qv)/gamma + else + p_sf(j, k, l) = (q_cons_vf(eqn_idx%E)%sf(j, k, l) - dyn_p - pinf - qv)/gamma + end if + + ! Freeze the transported conserved state for the forward sweep's flux stencil. Reading the + ! divergence from this snapshot (never an in-place-updated neighbour) makes it telescope, so + ! species mass and energy are conserved for any num_fluids. + $:GPU_LOOP(parallelism='[seq]') + do f = 1, num_fluids + q_snap(j, k, l, f) = q_cons_vf(eqn_idx%cont%beg + f - 1)%sf(j, k, l) + end do + q_snap(j, k, l, esnap) = q_cons_vf(eqn_idx%E)%sf(j, k, l) + end do + end do + end do + $:END_GPU_PARALLEL_LOOP() + + ! p_sf is filled over the full buffered range (idwbuff) from the already-exchanged + ! q_cons_vf, so the centered energy flux at interior edges sees a consistent p in + ! the one ghost cell it touches. No separate pressure halo exchange is needed. + + ! 2b'. Two-tier acoustic substep, from the FROZEN pre-forward state so it pairs with the snapshot the forward sweep + ! transports (pre-forward pressure p_sf and frozen momentum). Build the cell-centered acoustic pressure / mixture + ! density, flag the discontinuous faces per direction (cell values only, no reconstruction), then -- ONLY if some + ! face is flagged this microstep -- WENO-reconstruct the acoustic sub-vector AND the full primitive state and + ! evaluate the flagged-face flux. dEflux carries the robust-minus-centered pressure-work delta consumed by the + ! forward energy sweep; flux_mom_rob carries the robust normal-momentum flux consumed by the backward sweep. Both + ! are exactly zero at smooth faces, so the centered tier is left bit-identical there; and on smooth flow no face is + ! flagged, so the (unused) reconstruction is skipped entirely -- bit-identical AND cheaper. + $:GPU_PARALLEL_LOOP(collapse=3, private='[j, k, l, f, rho]') + do l = idwbuff(3)%beg, idwbuff(3)%end + do k = idwbuff(2)%beg, idwbuff(2)%end + do j = idwbuff(1)%beg, idwbuff(1)%end + rho = 0._wp + $:GPU_LOOP(parallelism='[seq]') + do f = 1, num_fluids + rho = rho + q_cons_vf(eqn_idx%cont%beg + f - 1)%sf(j, k, l) + end do + q_acoustic_vf(acou_p)%sf(j, k, l) = p_sf(j, k, l) + q_acoustic_vf(acou_rho)%sf(j, k, l) = max(rho, sgm_eps) + end do + end do + end do + $:END_GPU_PARALLEL_LOOP() + + ! FLAG PASS (FROZEN per RK stage -- computed once, on the first microstep q==1, from the stage-entry state, then held + ! fixed for q>1): cheaper than per-microstep, consistent with the frozen slow flux, and the discontinuity moves < 1 cell + ! per stage (advective CFL). Per direction it marks discontinuous faces from CELL values only (no reconstruction) and + ! zeros the robust-tier face deltas (dEflux/flux_mom_rob/dmassflux), while MAX-reducing any_flag_max (per-RANK + ! reduction: + ! processor-boundary faces flag identically via the halo, so no MPI collective is needed). The loop runs one cell below + ! the interior on the normal axis so every interior cell's lower (-dir) face also has a stored flag/flux. The shock test + ! is the MAX-INDICATOR DOMINANCE form on the acoustic-pressure stencil: beta_m/beta_0/beta_p are squared cell + ! differences + ! (pressure^2; Borges et al. 2008) and a face is flagged when the LARGEST, beta_max = max(beta_m, beta_0, beta_p), + ! exceeds disc_ratio_thresh times the relative roundoff floor beta_floor = (eps_rel*p_scale)^2. beta_max and beta_floor + ! are both pressure^2, so the ratio is invariant to the pressure scale and free of weno_eps; it stays ~0 where the + ! pressure is smooth and explodes across a genuine jump -- crucially it FIRES on a face-centered 1-cell jump (where the + ! WENO-Z spread tau_z=|beta_p-beta_m| would be ~0 and miss the shock). A volume-fraction jump also flags the face. + ! Zeroing + ! the deltas once here is sufficient: the FLUX PASS overwrites only flagged faces each microstep, smooth faces stay 0. + if (q == 1) then + any_flag_max = 0 + do i = 1, num_dims + joff = 0; koff = 0; loff = 0 + if (i == 1) then; joff = 1; else if (i == 2) then; koff = 1; else; loff = 1; end if + fb_x = idwint(1)%beg; fb_y = idwint(2)%beg; fb_z = idwint(3)%beg + if (i == 1) then; fb_x = idwint(1)%beg - 1; else if (i == 2) then; fb_y = idwint(2)%beg & + & - 1; else; fb_z = idwint(3)%beg - 1; end if + $:GPU_PARALLEL_LOOP(collapse=3, private='[j, k, l, f, d, p_m4, p_0c, p_p1, p_p2, p_scale, beta_floor, d_m, & + & d_0, d_p, beta_m, beta_0, beta_p, beta_max, flag_disc, bcc]', & + & reduction='[[any_flag_max]]', reductionOp='[MAX]', copy='[any_flag_max]') + do l = fb_z, idwint(3)%end + do k = fb_y, idwint(2)%end + do j = fb_x, idwint(1)%end + p_m4 = q_acoustic_vf(acou_p)%sf(j - joff, k - koff, l - loff) + p_0c = q_acoustic_vf(acou_p)%sf(j, k, l) + p_p1 = q_acoustic_vf(acou_p)%sf(j + joff, k + koff, l + loff) + p_p2 = q_acoustic_vf(acou_p)%sf(j + 2*joff, k + 2*koff, l + 2*loff) + d_m = p_0c - p_m4; d_0 = p_p1 - p_0c; d_p = p_p2 - p_p1 + beta_m = d_m*d_m; beta_0 = d_0*d_0; beta_p = d_p*d_p + p_scale = max(abs(p_m4), abs(p_0c), abs(p_p1), abs(p_p2)) + beta_floor = (eps_rel*p_scale)*(eps_rel*p_scale) + beta_max = max(beta_m, beta_0, beta_p) + flag_disc = beta_max > disc_ratio_thresh*beta_floor + + ! Volume-fraction (material-interface) variation across the face, any fluid. + $:GPU_LOOP(parallelism='[seq]') + do f = advb, adve + if (abs(q_cons_vf(f)%sf(j + joff, k + koff, l + loff) - q_cons_vf(f)%sf(j, k, & + & l)) > eps_alpha) then + flag_disc = .true. + end if + end do + + ! Open/outflow physical boundary faces: the centered smooth tier advects the + ! extrapolated mean-flow ghost with no upwind dissipation (FTCS-at-boundary + ! instability), so flag the boundary-adjacent face onto the robust upwind HLLC + ! tier. Read the PER-FACE code from bc_type(dir,loc)%sf (loc 1 = -dir/begin + ! face, 2 = +dir/end face; plane indexed exactly as s_populate_bc_direction -- + ! x: (0,k,l), y: (j,0,l), z: (j,k,0)) so non-uniform / patch boundaries (a BC + ! type that varies along one edge, e.g. half-wall half-outflow) are covered + ! face-by-face, which the per-rank scalar bc_{x,y,z} could not do. The codes are + ! <= 0 at a physical edge (>= 0 = MPI neighbour or periodic, never flagged), and + ! bc_type is GPU_DECLARE'd so the per-face device read is portable. Only the + ! open/outflow codes (extrapolation, characteristic OUTFLOW, dirichlet) carry an + ! advectable normal mean flow out of the domain. + bcc = 0 + if (i == 1) then + if (j == idwint(1)%beg - 1) then; bcc = bc_type(1, 1)%sf(0, k, & + & l); else if (j == idwint(1)%end) then + bcc = bc_type(1, 2)%sf(0, k, l); end if + else if (i == 2) then + if (k == idwint(2)%beg - 1) then; bcc = bc_type(2, 1)%sf(j, 0, & + & l); else if (k == idwint(2)%end) then + bcc = bc_type(2, 2)%sf(j, 0, l); end if + else + if (l == idwint(3)%beg - 1) then; bcc = bc_type(3, 1)%sf(j, k, & + & 0); else if (l == idwint(3)%end) then + bcc = bc_type(3, 2)%sf(j, k, 0); end if + end if + if (bcc == BC_GHOST_EXTRAP .or. bcc == BC_RIEMANN_EXTRAP & + & .or. bcc == BC_CHAR_NR_SUB_OUTFLOW .or. bcc == BC_CHAR_FF_SUB_OUTFLOW & + & .or. bcc == BC_CHAR_CP_SUB_OUTFLOW .or. bcc == BC_CHAR_SUP_OUTFLOW & + & .or. bcc == BC_DIRICHLET) then + flag_disc = .true. + end if + + if (flag_disc) then + acoustic_flag(j, k, l, i) = 1 + else + acoustic_flag(j, k, l, i) = 0 + end if + dEflux(j, k, l, i) = 0._wp + flux_mom_rob(j, k, l, i) = 0._wp + $:GPU_LOOP(parallelism='[seq]') + do f = 1, num_fluids + dmassflux(j, k, l, i, f) = 0._wp + end do + $:GPU_LOOP(parallelism='[seq]') + do d = 1, num_dims + dmomflux(j, k, l, i, d) = 0._wp + end do + any_flag_max = max(any_flag_max, acoustic_flag(j, k, l, i)) + end do + end do + end do + $:END_GPU_PARALLEL_LOOP() + end do + any_flagged = any_flag_max > 0 + end if + + ! FLUX PASS (only when the stage has any flagged face; runs LIVE each microstep so the deltas track the + ! evolving shock): + ! build the full primitive vector, reconstruct both the acoustic sub-vector and the full primitive state per + ! direction, + ! and at each flagged face assemble the FULL live HLLC face flux F_full = s_convective_face_flux + + ! s_acoustic_face_flux + ! into the robust-tier deltas (smooth faces stay at the zeros set in the FLAG PASS). The net flagged-face + ! update per + ! microstep is pure live full HLLC: for MASS and ENERGY the slow flux is exactly zero (the HLLC slow flux + ! zeroes the + ! mass + ! and total-energy faces), so the delta replaces the full CENTERED flux with the live HLLC flux (dmassflux + ! for each + ! alpha*rho_k, dEflux for convective E*u + acoustic pressure work). For MOMENTUM the convective + ! normal+transverse + ! transport already rides the frozen slow forcing (rhs_slow_vf, contact-upwinded HLLC frozen at stage + ! entry), so only + ! the + ! CENTERED acoustic momentum is replaced by the live HLLC acoustic star-pressure flux flux_mom_rob -- the + ! frozen-slow + ! convective momentum is the inherent split lag (< 1 cell/stage), not retransported here. + if (any_flagged) then + ! Full primitive vector over the buffered domain in m_rhs slot order: partial densities at %cont (= + ! conserved for + ! the + ! 5-equation model), ALL velocity components at %mom (mom/rho), pressure at %E, volume fractions at %adv + ! (= conserved for the 5-equation model) so the EOS rebuild can use face-reconstructed alpha. Rebuilt + ! each + ! flagged microstep. + $:GPU_PARALLEL_LOOP(collapse=3, private='[i, j, k, l, f]') + do l = idwbuff(3)%beg, idwbuff(3)%end + do k = idwbuff(2)%beg, idwbuff(2)%end + do j = idwbuff(1)%beg, idwbuff(1)%end + $:GPU_LOOP(parallelism='[seq]') + do f = 1, num_fluids + q_prim_vf(eqn_idx%cont%beg + f - 1)%sf(j, k, & + & l) = q_cons_vf(eqn_idx%cont%beg + f - 1)%sf(j, k, l) + end do + $:GPU_LOOP(parallelism='[seq]') + do i = 1, num_dims + q_prim_vf(momxb + i - 1)%sf(j, k, l) = q_cons_vf(momxb + i - 1)%sf(j, k, & + & l)/q_acoustic_vf(acou_rho)%sf(j, k, l) + end do + q_prim_vf(eqn_idx%E)%sf(j, k, l) = p_sf(j, k, l) + $:GPU_LOOP(parallelism='[seq]') + do f = 1, num_fluids + q_prim_vf(advb + f - 1)%sf(j, k, l) = q_cons_vf(advb + f - 1)%sf(j, k, l) + end do + end do + end do + end do + $:END_GPU_PARALLEL_LOOP() + + do i = 1, num_dims + $:GPU_PARALLEL_LOOP(collapse=3, private='[j, k, l]') + do l = idwbuff(3)%beg, idwbuff(3)%end + do k = idwbuff(2)%beg, idwbuff(2)%end + do j = idwbuff(1)%beg, idwbuff(1)%end + q_acoustic_vf(acou_u)%sf(j, k, l) = q_cons_vf(momxb + i - 1)%sf(j, k, & + & l)/q_acoustic_vf(acou_rho)%sf(j, k, l) + end do + end do + end do + $:END_GPU_PARALLEL_LOOP() + + call s_reconstruct_boundary_values(q_prim_vf, qL_rs_vf, qR_rs_vf, i) + + joff = 0; koff = 0; loff = 0 + if (i == 1) then; joff = 1; else if (i == 2) then; koff = 1; else; loff = 1; end if + fb_x = idwint(1)%beg; fb_y = idwint(2)%beg; fb_z = idwint(3)%beg + if (i == 1) then; fb_x = idwint(1)%beg - 1; else if (i == 2) then; fb_y = idwint(2)%beg & + & - 1; else; fb_z = idwint(3)%beg - 1; end if + $:GPU_PARALLEL_LOOP(collapse=3, private='[j, k, l, f, d, ic, gam_a, pin_a, gam_b, pin_b, pres_a, & + & rho_a, c_a, pres_b, rho_b, c_b, qv_a, qv_b, ke_a, ke_b, E_a, E_b, flmom, & + & flE, flux_E_c, se_face, se_conv, u_a, u_b, cm, rhoYks_a, rhoYks_b, & + & vel_a_arr, vel_b_arr, flux_cont, flux_mom_c]') + do l = fb_z, idwint(3)%end + do k = fb_y, idwint(2)%end + do j = fb_x, idwint(1)%end + if (acoustic_flag(j, k, l, i) == 1) then + ! Mixture stiffened-gas coefficients of the two states straddling the face, built + ! from the volume fractions reconstructed AT the face (qL/qR_rs_vf %adv slots) + ! rather + ! than the cell values, so a material interface is not smeared for num_fluids>1 (for + ! num_fluids==1 alpha==1 reconstructs to 1, so this is bit-identical to the cell + ! value); sound speed and total-energy density rebuilt from the SAME EOS as the + ! pressure recompute: c^2 = (1/gamma + 1)(p + pi_inf/(gamma+1))/rho and + ! rho*E = gamma*p + pi_inf + qv + 0.5*rho*|u|^2. + gam_a = 0._wp; pin_a = 0._wp; gam_b = 0._wp; pin_b = 0._wp + $:GPU_LOOP(parallelism='[seq]') + do f = 1, num_fluids + gam_a = gam_a + qL_rs_vf(j, k, l, advb + f - 1)*gammas(f) + pin_a = pin_a + qL_rs_vf(j, k, l, advb + f - 1)*pi_infs(f) + gam_b = gam_b + qR_rs_vf(j + joff, k + koff, l + loff, advb + f - 1)*gammas(f) + pin_b = pin_b + qR_rs_vf(j + joff, k + koff, l + loff, advb + f - 1)*pi_infs(f) + end do + + ! Reconstructed L/R partial densities (qL/qR_rs_vf %cont slots) and the + ! qv-coefficient sums. + rho_a = 0._wp; rho_b = 0._wp; qv_a = 0._wp; qv_b = 0._wp + $:GPU_LOOP(parallelism='[seq]') + do f = 1, num_fluids + rhoYks_a(f) = qL_rs_vf(j, k, l, contb + f - 1) + rhoYks_b(f) = qR_rs_vf(j + joff, k + koff, l + loff, contb + f - 1) + rho_a = rho_a + rhoYks_a(f); rho_b = rho_b + rhoYks_b(f) + qv_a = qv_a + rhoYks_a(f)*qvs(f); qv_b = qv_b + rhoYks_b(f)*qvs(f) + end do + rho_a = max(rho_a, sgm_eps); rho_b = max(rho_b, sgm_eps) + + ! Velocity arrays with slot 1 = face-normal (component i), 2..nv = transverse (any + ! order; only + ! flux_cont and flux_E -- which read slot 1 -- are consumed, but the full kinetic + ! energy below + ! sums all components). + vel_a_arr(1) = qL_rs_vf(j, k, l, momxb + i - 1) + vel_b_arr(1) = qR_rs_vf(j + joff, k + koff, l + loff, momxb + i - 1) + ic = 1 + $:GPU_LOOP(parallelism='[seq]') + do d = 1, num_dims + if (d /= i) then + ic = ic + 1 + vel_a_arr(ic) = qL_rs_vf(j, k, l, momxb + d - 1) + vel_b_arr(ic) = qR_rs_vf(j + joff, k + koff, l + loff, momxb + d - 1) + end if + end do + + pres_a = qL_rs_vf(j, k, l, eqn_idx%E) + pres_b = qR_rs_vf(j + joff, k + koff, l + loff, eqn_idx%E) + c_a = sqrt(max((1._wp/gam_a + 1._wp)*(pres_a + pin_a/(gam_a + 1._wp))/rho_a, & + & sgm_eps)) + c_b = sqrt(max((1._wp/gam_b + 1._wp)*(pres_b + pin_b/(gam_b + 1._wp))/rho_b, & + & sgm_eps)) + ke_a = 0._wp; ke_b = 0._wp + $:GPU_LOOP(parallelism='[seq]') + do d = 1, nv + ke_a = ke_a + 0.5_wp*rho_a*vel_a_arr(d)*vel_a_arr(d) + ke_b = ke_b + 0.5_wp*rho_b*vel_b_arr(d)*vel_b_arr(d) + end do + E_a = gam_a*pres_a + pin_a + qv_a + ke_a + E_b = gam_b*pres_b + pin_b + qv_b + ke_b + + ! Full live HLLC face flux = convective (mass alpha*rho_k*u, energy E*u) + acoustic + ! (normal-mom + ! star pressure, energy pressure work), on a single consistent reconstructed L/R + ! state. + call s_acoustic_face_flux(pres_a, vel_a_arr(1), rho_a, c_a, pres_b, vel_b_arr(1), & + & rho_b, c_b, flmom, flE) + call s_convective_face_flux(num_fluids, nv, rhoYks_a, vel_a_arr, rho_a, c_a, & + & pres_a, E_a, rhoYks_b, vel_b_arr, rho_b, c_b, & + & pres_b, E_b, flux_cont, flux_mom_c, flux_E_c) + + ! Centered face fluxes the forward sweep applies, from the same frozen snapshot + ! (q_snap), + ! pre-forward pressure and cell normal velocity u = mom_i/rho the sweep uses: + ! convective mass 0.5*(arho_j u_j + arho_{j+1} u_{j+1}), convective energy 0.5*(E_j + ! u_j + + ! E_{j+1} u_{j+1}), pressure work 0.5*(p_j u_j + p_{j+1} u_{j+1}). Each delta + ! replaces that + ! centered face flux with the live HLLC flux; smooth faces (zeroed in the FLAG PASS) + ! stay + ! bit-identical, and each delta is single-valued per face so mass and energy + ! telescope. + u_a = q_acoustic_vf(acou_u)%sf(j, k, l) + u_b = q_acoustic_vf(acou_u)%sf(j + joff, k + koff, l + loff) + se_face = 0.5_wp*(q_acoustic_vf(acou_p)%sf(j, k, & + & l)*u_a + q_acoustic_vf(acou_p)%sf(j + joff, k + koff, & + & l + loff)*u_b) + se_conv = 0.5_wp*(q_snap(j, k, l, esnap)*u_a + q_snap(j + joff, k + koff, & + & l + loff, esnap)*u_b) + flux_mom_rob(j, k, l, i) = flmom + dEflux(j, k, l, i) = (flux_E_c + flE) - (se_conv + se_face) + $:GPU_LOOP(parallelism='[seq]') + do f = 1, num_fluids + cm = 0.5_wp*(q_snap(j, k, l, f)*u_a + q_snap(j + joff, k + koff, l + loff, & + & f)*u_b) + dmassflux(j, k, l, i, f) = flux_cont(f) - cm + end do + + ! Live convective-momentum delta = live HLLC convective momentum flux (flux_mom_c) + ! MINUS the + ! frozen slow per-face flux frozen_conv_mom_face (populated by m_rhs from the slow + ! path's + ! flux_n(mom) at the RK stage state U^(s-1)), mapping the rotated live flux (slot 1 + ! = face-normal + ! component i, slots 2..nv = transverse) back to the global velocity component. + ! Subtracting the + ! slow path's ACTUAL flux makes the frozen part cancel the convective momentum + ! carried by + ! rhs_slow_vf(mom) EXACTLY on every RK stage, so the net convective momentum is live + ! full HLLC. + dmomflux(j, k, l, i, i) = flux_mom_c(1) - frozen_conv_mom_face(j, k, l, i, i) + ic = 1 + $:GPU_LOOP(parallelism='[seq]') + do d = 1, num_dims + if (d /= i) then + ic = ic + 1 + dmomflux(j, k, l, i, d) = flux_mom_c(ic) - frozen_conv_mom_face(j, k, l, & + & i, d) + end if + end do + end if + end do + end do + end do + $:END_GPU_PARALLEL_LOOP() + end do + end if + + ! 2b. FORWARD: advance alpha_k*rho_k and rho*E by the centered divergence of + ! (alpha_k*rho_k * u) and ((rho*E + p) * u), plus dtau*rhs_slow. Velocity u + ! is held frozen (computed from the current momentum) for this forward sweep. + inv_2dx = 0._wp; inv_2dy = 0._wp; inv_2dz = 0._wp + $:GPU_PARALLEL_LOOP(collapse=3, private='[i, j, k, l, f, rho_n, div, inv_2dx, inv_2dy, inv_2dz, u_xp, & + & u_xm, u_yp, u_ym, u_zp, u_zm]') + do l = idwint(3)%beg, idwint(3)%end + do k = idwint(2)%beg, idwint(2)%end + do j = idwint(1)%beg, idwint(1)%end + inv_2dx = 1._wp/(2._wp*dx(j)) + + ! Stencil-neighbour velocities u = mom/rho_mix, formed once per cell from the FROZEN snapshot + ! mixture density (sum_k alpha_k*rho_k) and reused by the mass and energy fluxes. Momentum is + ! untouched by the forward sweep, so mom == its frozen value; reading rho from the snapshot + ! makes u_j a single-valued function of the frozen state, which is what lets the flux telescope. + rho_n = 0._wp + $:GPU_LOOP(parallelism='[seq]') + do f = 1, num_fluids + rho_n = rho_n + q_snap(j + 1, k, l, f) + end do + u_xp = q_cons_vf(momxb)%sf(j + 1, k, l)/max(rho_n, sgm_eps) + rho_n = 0._wp + $:GPU_LOOP(parallelism='[seq]') + do f = 1, num_fluids + rho_n = rho_n + q_snap(j - 1, k, l, f) + end do + u_xm = q_cons_vf(momxb)%sf(j - 1, k, l)/max(rho_n, sgm_eps) + if (n > 0) then + rho_n = 0._wp + $:GPU_LOOP(parallelism='[seq]') + do f = 1, num_fluids + rho_n = rho_n + q_snap(j, k + 1, l, f) + end do + u_yp = q_cons_vf(momxb + 1)%sf(j, k + 1, l)/max(rho_n, sgm_eps) + rho_n = 0._wp + $:GPU_LOOP(parallelism='[seq]') + do f = 1, num_fluids + rho_n = rho_n + q_snap(j, k - 1, l, f) + end do + u_ym = q_cons_vf(momxb + 1)%sf(j, k - 1, l)/max(rho_n, sgm_eps) + end if + if (p > 0) then + rho_n = 0._wp + $:GPU_LOOP(parallelism='[seq]') + do f = 1, num_fluids + rho_n = rho_n + q_snap(j, k, l + 1, f) + end do + u_zp = q_cons_vf(momxe)%sf(j, k, l + 1)/max(rho_n, sgm_eps) + rho_n = 0._wp + $:GPU_LOOP(parallelism='[seq]') + do f = 1, num_fluids + rho_n = rho_n + q_snap(j, k, l - 1, f) + end do + u_zm = q_cons_vf(momxe)%sf(j, k, l - 1)/max(rho_n, sgm_eps) + end if + + ! Mass equations: d/dt(alpha_k*rho_k) = -div(alpha_k*rho_k * u) + slow. + ! Flux stencil reads the frozen snapshot; apply onto the live field from the frozen center + ! value. + $:GPU_LOOP(parallelism='[seq]') + do f = 1, num_fluids + div = inv_2dx*(u_xp*q_snap(j + 1, k, l, f) - u_xm*q_snap(j - 1, k, l, f)) + if (n > 0) then + inv_2dy = 1._wp/(2._wp*dy(k)) + div = div + inv_2dy*(u_yp*q_snap(j, k + 1, l, f) - u_ym*q_snap(j, k - 1, l, f)) + end if + if (p > 0) then + inv_2dz = 1._wp/(2._wp*dz(l)) + div = div + inv_2dz*(u_zp*q_snap(j, k, l + 1, f) - u_zm*q_snap(j, k, l - 1, f)) + end if + i = eqn_idx%cont%beg + f - 1 + q_cons_vf(i)%sf(j, k, l) = q_snap(j, k, l, f) + dtau*(-div + rhs_slow_vf(i)%sf(j, k, l)) + end do + + ! Robust-tier mass correction: -dtau*div(dmassflux), where dmassflux(:,:,:,dir,f) = live HLLC + ! alpha*rho_k + ! face flux - centered convective mass flux at flagged faces and 0 at smooth faces. This swaps + ! the centered + ! convective alpha*rho_k transport just applied for the upwinded HLLC one (the slow mass flux is + ! zero, so + ! there is nothing else to subtract); the divergence is single-valued per face so species mass + ! stays + ! conserved, and at smooth faces it adds exactly zero -> the centered mass update is + ! bit-identical. + ! Skipped entirely on unflagged stages: the deltas are exactly 0 there (zeroed in the FLAG + ! PASS, never overwritten), so omitting the apply is bit-identical and removes the zero-delta + ! memory traffic on smooth flow. any_flagged is a stage-invariant scalar -> uniform branch. + if (any_flagged) then + $:GPU_LOOP(parallelism='[seq]') + do f = 1, num_fluids + i = eqn_idx%cont%beg + f - 1 + q_cons_vf(i)%sf(j, k, l) = q_cons_vf(i)%sf(j, k, l) - dtau*(dmassflux(j, k, l, 1, & + & f) - dmassflux(j - 1, k, l, 1, f))/dx(j) + if (n > 0) q_cons_vf(i)%sf(j, k, l) = q_cons_vf(i)%sf(j, k, l) - dtau*(dmassflux(j, & + & k, l, 2, f) - dmassflux(j, k - 1, l, 2, f))/dy(k) + if (p > 0) q_cons_vf(i)%sf(j, k, l) = q_cons_vf(i)%sf(j, k, l) - dtau*(dmassflux(j, & + & k, l, 3, f) - dmassflux(j, k, l - 1, 3, f))/dz(l) + end do + end if + + ! Total-energy equation: d/dt(rho*E) = -div((rho*E + p) * u) + slow. p_sf is the frozen + ! cell pressure (built from the same pre-sweep state as q_snap), so the energy flux is + ! consistent. + div = inv_2dx*((q_snap(j + 1, k, l, esnap) + p_sf(j + 1, k, l))*u_xp - (q_snap(j - 1, k, l, & + & esnap) + p_sf(j - 1, k, l))*u_xm) + if (n > 0) then + inv_2dy = 1._wp/(2._wp*dy(k)) + div = div + inv_2dy*((q_snap(j, k + 1, l, esnap) + p_sf(j, k + 1, l))*u_yp - (q_snap(j, & + & k - 1, l, esnap) + p_sf(j, k - 1, l))*u_ym) + end if + if (p > 0) then + inv_2dz = 1._wp/(2._wp*dz(l)) + div = div + inv_2dz*((q_snap(j, k, l + 1, esnap) + p_sf(j, k, l + 1))*u_zp - (q_snap(j, & + & k, l - 1, esnap) + p_sf(j, k, l - 1))*u_zm) + end if + q_cons_vf(eqn_idx%E)%sf(j, k, l) = q_snap(j, k, l, & + & esnap) + dtau*(-div + rhs_slow_vf(eqn_idx%E)%sf(j, k, l)) + + ! Robust-tier energy correction: -dtau*div(dEflux), where dEflux = full live HLLC energy flux + ! (convective + ! E*u + ! + acoustic pressure work) - full centered energy flux at flagged faces and 0 at smooth faces. + ! This swaps + ! BOTH the convective rho*E transport and the pressure work just applied (the slow energy flux + ! is zero) for + ! the upwinded HLLC energy flux; the divergence is single-valued per face (same value seen by + ! both adjacent + ! cells) so energy stays conserved, and at smooth faces it adds exactly zero -> bit-identical. + if (any_flagged) then + q_cons_vf(eqn_idx%E)%sf(j, k, l) = q_cons_vf(eqn_idx%E)%sf(j, k, l) - dtau*(dEflux(j, k, & + & l, 1) - dEflux(j - 1, k, l, 1))/dx(j) + if (n > 0) q_cons_vf(eqn_idx%E)%sf(j, k, l) = q_cons_vf(eqn_idx%E)%sf(j, k, & + & l) - dtau*(dEflux(j, k, l, 2) - dEflux(j, k - 1, l, 2))/dy(k) + if (p > 0) q_cons_vf(eqn_idx%E)%sf(j, k, l) = q_cons_vf(eqn_idx%E)%sf(j, k, & + & l) - dtau*(dEflux(j, k, l, 3) - dEflux(j, k, l - 1, 3))/dz(l) + end if + + ! Volume fractions: pure slow (material) advection. The frozen slow forcing + ! rhs_slow_vf(%adv) already holds the contact-upwinded HLLC volume-fraction + ! flux, integrating to dt_stage*rhs_slow over the stage. The acoustic div(u) + ! coupling to alpha is O(M^2) and intentionally dropped in the low-Mach limit. + if (num_fluids > 1) then + $:GPU_LOOP(parallelism='[seq]') + do i = eqn_idx%adv%beg, eqn_idx%adv%end + q_cons_vf(i)%sf(j, k, l) = q_cons_vf(i)%sf(j, k, l) + dtau*rhs_slow_vf(i)%sf(j, k, l) + end do + end if + end do + end do + end do + $:END_GPU_PARALLEL_LOOP() + + ! 3. Halo exchange + EOS on the UPDATED state, so the backward pressure gradient + ! sees the freshly advanced mass and energy. + call s_populate_variables_buffers(bc_type, q_cons_vf) + + $:GPU_PARALLEL_LOOP(collapse=3, private='[i, j, k, l, f, rho, gamma, pinf, qv, dyn_p, alf]') + do l = idwbuff(3)%beg, idwbuff(3)%end + do k = idwbuff(2)%beg, idwbuff(2)%end + do j = idwbuff(1)%beg, idwbuff(1)%end + rho = 0._wp; gamma = 0._wp; pinf = 0._wp; qv = 0._wp + $:GPU_LOOP(parallelism='[seq]') + do f = 1, num_fluids + rho = rho + q_cons_vf(eqn_idx%cont%beg + f - 1)%sf(j, k, l) + qv = qv + q_cons_vf(eqn_idx%cont%beg + f - 1)%sf(j, k, l)*qvs(f) + gamma = gamma + q_cons_vf(eqn_idx%adv%beg + f - 1)%sf(j, k, l)*gammas(f) + pinf = pinf + q_cons_vf(eqn_idx%adv%beg + f - 1)%sf(j, k, l)*pi_infs(f) + end do + if (num_fluids == 1 .and. bubbles_euler) then + gamma = gammas(1); pinf = pi_infs(1); qv = qvs(1) + end if + rho = max(rho, sgm_eps) + + dyn_p = 0._wp + $:GPU_LOOP(parallelism='[seq]') + do i = momxb, momxe + dyn_p = dyn_p + 0.5_wp*q_cons_vf(i)%sf(j, k, l)*q_cons_vf(i)%sf(j, k, l)/rho + end do + + if (bubbles_euler) then + alf = q_cons_vf(eqn_idx%alf)%sf(j, k, l) + p_sf(j, k, l) = ((q_cons_vf(eqn_idx%E)%sf(j, k, l) - dyn_p)/(1._wp - alf) - pinf - qv)/gamma + else + p_sf(j, k, l) = (q_cons_vf(eqn_idx%E)%sf(j, k, l) - dyn_p - pinf - qv)/gamma + end if + end do + end do + end do + $:END_GPU_PARALLEL_LOOP() + + ! 4a. DIVERGENCE: build div_sf = centered div(rho*u) over the interior + one ghost + ! layer. The momentum halo is current from the exchange above and was untouched + ! by the forward sweep, so all neighbours are valid. + $:GPU_PARALLEL_LOOP(collapse=3, private='[j, k, l, div, inv_2dx, inv_2dy, inv_2dz]') + do l = db_z, de_z + do k = db_y, de_y + do j = db_x, de_x + inv_2dx = 1._wp/(2._wp*dx(j)) + div = inv_2dx*(q_cons_vf(momxb)%sf(j + 1, k, l) - q_cons_vf(momxb)%sf(j - 1, k, l)) + if (n > 0) then + inv_2dy = 1._wp/(2._wp*dy(k)) + div = div + inv_2dy*(q_cons_vf(momxb + 1)%sf(j, k + 1, l) - q_cons_vf(momxb + 1)%sf(j, & + & k - 1, l)) + end if + if (p > 0) then + inv_2dz = 1._wp/(2._wp*dz(l)) + div = div + inv_2dz*(q_cons_vf(momxe)%sf(j, k, l + 1) - q_cons_vf(momxe)%sf(j, k, l - 1)) + end if + div_sf(j, k, l) = div + end do + end do + end do + $:END_GPU_PARALLEL_LOOP() + + ! 4b. BACKWARD: advance rho*u by -dtau*grad(p_new) + dtau*rhs_slow_mom + ! + acoustic_div_damp*[Dx_i^2 * d/dx_i(div(rho*u))] (grad-div divergence damping). + ! The damping is the centered gradient of div_sf scaled by Dx_i^2 so that + ! acoustic_div_damp is dimensionless; sharing the divergence stencil makes the + ! operator annihilate divergence-free vortical modes exactly. + $:GPU_PARALLEL_LOOP(collapse=3, private='[i, j, k, l, d, dpdx, damp, inv_2dx, inv_2dy, inv_2dz, flg_r, & + & flg_l, sm_r, sm_l, gd_r, gd_l, dfm_r, dfm_l]') + do l = idwint(3)%beg, idwint(3)%end + do k = idwint(2)%beg, idwint(2)%end + do j = idwint(1)%beg, idwint(1)%end + inv_2dx = 1._wp/(2._wp*dx(j)) + + ! x-momentum + dpdx = inv_2dx*(p_sf(j + 1, k, l) - p_sf(j - 1, k, l)) + damp = 0.5_wp*dx(j)*(div_sf(j + 1, k, l) - div_sf(j - 1, k, l)) + q_cons_vf(momxb)%sf(j, k, l) = q_cons_vf(momxb)%sf(j, k, & + & l) + dtau*(-dpdx + rhs_slow_vf(momxb)%sf(j, k, l)) + acoustic_div_damp*damp + + ! y-momentum + if (n > 0) then + inv_2dy = 1._wp/(2._wp*dy(k)) + dpdx = inv_2dy*(p_sf(j, k + 1, l) - p_sf(j, k - 1, l)) + damp = 0.5_wp*dy(k)*(div_sf(j, k + 1, l) - div_sf(j, k - 1, l)) + q_cons_vf(momxb + 1)%sf(j, k, l) = q_cons_vf(momxb + 1)%sf(j, k, & + & l) + dtau*(-dpdx + rhs_slow_vf(momxb + 1)%sf(j, k, l)) + acoustic_div_damp*damp + end if + + ! z-momentum + if (p > 0) then + inv_2dz = 1._wp/(2._wp*dz(l)) + dpdx = inv_2dz*(p_sf(j, k, l + 1) - p_sf(j, k, l - 1)) + damp = 0.5_wp*dz(l)*(div_sf(j, k, l + 1) - div_sf(j, k, l - 1)) + q_cons_vf(momxe)%sf(j, k, l) = q_cons_vf(momxe)%sf(j, k, & + & l) + dtau*(-dpdx + rhs_slow_vf(momxe)%sf(j, k, l)) + acoustic_div_damp*damp + end if + + ! Robust-tier normal-momentum correction. At a flagged face replace the centered acoustic + ! momentum flux + ! (dtau*p_centered minus the grad-div damping flux gd) by the HLLC star-pressure flux + ! dtau*flux_mom_rob and + ! drop the damping. Written as a single-valued face-flux delta dfm = flag*(dtau*flux_mom_rob - + ! dtau*p_avg + + ! gd): + ! the centered pressure gradient (Sm) and damping (gd) here are the exact face-flux equivalents + ! of the + ! centered backward sweep above (using the post-forward p_sf / div_sf it used), so subtracting + ! them removes + ! the centered contribution of that face and the -div(dfm) update stays momentum-conservative. + ! flag and + ! flux_mom_rob are zero at smooth faces, so this adds exactly zero there (centered tier + ! bit-identical). + ! Robust-tier momentum corrections (normal acoustic + convective): skipped entirely on + ! unflagged stages, where flux_mom_rob/dmomflux and every flag are exactly 0 (FLAG PASS) so the + ! face-flux deltas dfm_r/dfm_l and the dmomflux divergence are exactly 0 -> omitting the apply + ! is + ! bit-identical and removes the zero-delta memory traffic on smooth flow. any_flagged is a + ! stage-invariant scalar -> uniform branch. + if (any_flagged) then + flg_r = acoustic_flag(j, k, l, 1); flg_l = acoustic_flag(j - 1, k, l, 1) + sm_r = 0.5_wp*(p_sf(j, k, l) + p_sf(j + 1, k, l)); sm_l = 0.5_wp*(p_sf(j - 1, k, & + & l) + p_sf(j, k, l)) + gd_r = acoustic_div_damp*0.5_wp*dx(j)*dx(j)*(div_sf(j, k, l) + div_sf(j + 1, k, l)) + gd_l = acoustic_div_damp*0.5_wp*dx(j - 1)*dx(j - 1)*(div_sf(j - 1, k, l) + div_sf(j, k, l)) + dfm_r = real(flg_r, wp)*(dtau*flux_mom_rob(j, k, l, 1) - dtau*sm_r + gd_r) + dfm_l = real(flg_l, wp)*(dtau*flux_mom_rob(j - 1, k, l, 1) - dtau*sm_l + gd_l) + q_cons_vf(momxb)%sf(j, k, l) = q_cons_vf(momxb)%sf(j, k, l) - (dfm_r - dfm_l)/dx(j) + + if (n > 0) then + flg_r = acoustic_flag(j, k, l, 2); flg_l = acoustic_flag(j, k - 1, l, 2) + sm_r = 0.5_wp*(p_sf(j, k, l) + p_sf(j, k + 1, l)); sm_l = 0.5_wp*(p_sf(j, k - 1, & + & l) + p_sf(j, k, l)) + gd_r = acoustic_div_damp*0.5_wp*dy(k)*dy(k)*(div_sf(j, k, l) + div_sf(j, k + 1, l)) + gd_l = acoustic_div_damp*0.5_wp*dy(k - 1)*dy(k - 1)*(div_sf(j, k - 1, l) + div_sf(j, & + & k, l)) + dfm_r = real(flg_r, wp)*(dtau*flux_mom_rob(j, k, l, 2) - dtau*sm_r + gd_r) + dfm_l = real(flg_l, wp)*(dtau*flux_mom_rob(j, k - 1, l, 2) - dtau*sm_l + gd_l) + q_cons_vf(momxb + 1)%sf(j, k, l) = q_cons_vf(momxb + 1)%sf(j, k, & + & l) - (dfm_r - dfm_l)/dy(k) + end if + + if (p > 0) then + flg_r = acoustic_flag(j, k, l, 3); flg_l = acoustic_flag(j, k, l - 1, 3) + sm_r = 0.5_wp*(p_sf(j, k, l) + p_sf(j, k, l + 1)); sm_l = 0.5_wp*(p_sf(j, k, & + & l - 1) + p_sf(j, k, l)) + gd_r = acoustic_div_damp*0.5_wp*dz(l)*dz(l)*(div_sf(j, k, l) + div_sf(j, k, l + 1)) + gd_l = acoustic_div_damp*0.5_wp*dz(l - 1)*dz(l - 1)*(div_sf(j, k, l - 1) + div_sf(j, & + & k, l)) + dfm_r = real(flg_r, wp)*(dtau*flux_mom_rob(j, k, l, 3) - dtau*sm_r + gd_r) + dfm_l = real(flg_l, wp)*(dtau*flux_mom_rob(j, k, l - 1, 3) - dtau*sm_l + gd_l) + q_cons_vf(momxe)%sf(j, k, l) = q_cons_vf(momxe)%sf(j, k, l) - (dfm_r - dfm_l)/dz(l) + end if + + ! Robust-tier convective-momentum correction: -dtau*div(dmomflux), where + ! dmomflux(:,:,:,dir,d) = live HLLC + ! convective momentum flux (normal + transverse) MINUS the frozen stage-entry HLLC + ! convective + ! momentum flux + ! at flagged faces (0 at smooth faces). The frozen part cancels the convective momentum + ! already carried by + ! the frozen slow forcing rhs_slow_vf(mom), so the NET convective momentum becomes live full + ! HLLC while the + ! viscous/source momentum stays frozen-slow (correct). The divergence is single-valued per + ! face (cell j + ! right + ! face = cell j+1 left face) so momentum telescopes/conserves; at smooth faces it adds + ! exactly + ! zero so the + ! centered tier (pressure gradient + grad-div damping) is left bit-identical. + $:GPU_LOOP(parallelism='[seq]') + do d = 1, num_dims + i = momxb + d - 1 + q_cons_vf(i)%sf(j, k, l) = q_cons_vf(i)%sf(j, k, l) - dtau*(dmomflux(j, k, l, 1, & + & d) - dmomflux(j - 1, k, l, 1, d))/dx(j) + if (n > 0) q_cons_vf(i)%sf(j, k, l) = q_cons_vf(i)%sf(j, k, l) - dtau*(dmomflux(j, k, & + & l, 2, d) - dmomflux(j, k - 1, l, 2, d))/dy(k) + if (p > 0) q_cons_vf(i)%sf(j, k, l) = q_cons_vf(i)%sf(j, k, l) - dtau*(dmomflux(j, k, & + & l, 3, d) - dmomflux(j, k, l - 1, 3, d))/dz(l) + end do + end if + end do + end do + end do + $:END_GPU_PARALLEL_LOOP() + + ! 5. Co-subcycle the Euler-Euler bubble dynamics by the FULL microstep dtau on the LIVE state + ! (operator-split Lie step, once per microstep). Run AFTER the acoustic mass/energy/momentum + ! update and the bubble-aware pressure recompute, so the bubble radial dynamics see the live + ! acoustic pressure and the updated void fraction feeds the NEXT microstep's bubble-aware EOS. + ! Across the stage's n_micro microsteps the bubble state advances the full stage time (the + ! WS-RK3 stages restart from U^n via the 1:sys_size save/restore). The advance is cell-local + ! (no flux/conservation change) and does not touch the conservative face fluxes. The whole + ! block is guarded by bubbles_euler so the no-bubble path is bit-identical. + if (bubbles_euler) then + ! Refresh the conserved halo so the velocity-divergence stencil is valid at the + ! boundary-adjacent interior cells (the backward sweep updated only the interior momentum). + call s_populate_variables_buffers(bc_type, q_cons_vf) + + ! Cell velocities u = mom/rho_mix over the buffered domain into the bubble primitive view, plus + ! the live bubble-aware pressure. The velocity slots let the reused s_compute_bubbles_EE_rhs + ! build the SAME div(u) the standard bubble source consumes -- div(u), NOT the momentum + ! divergence div(rho*u) carried by div_sf (the bubble model wants the velocity divergence). + $:GPU_PARALLEL_LOOP(collapse=3, private='[i, j, k, l, f, rho]') + do l = idwbuff(3)%beg, idwbuff(3)%end + do k = idwbuff(2)%beg, idwbuff(2)%end + do j = idwbuff(1)%beg, idwbuff(1)%end + rho = 0._wp + $:GPU_LOOP(parallelism='[seq]') + do f = 1, num_fluids + rho = rho + q_cons_vf(eqn_idx%cont%beg + f - 1)%sf(j, k, l) + end do + rho = max(rho, sgm_eps) + $:GPU_LOOP(parallelism='[seq]') + do i = 1, num_dims + q_prim_bub_vf(momxb + i - 1)%sf(j, k, l) = q_cons_vf(momxb + i - 1)%sf(j, k, l)/rho + end do + q_prim_bub_vf(eqn_idx%E)%sf(j, k, l) = p_sf(j, k, l) + end do + end do + end do + $:END_GPU_PARALLEL_LOOP() + + ! Recover the bubble primitive moments (R, V, and pb/mv when non-polytropic) and the number + ! density over the interior, mirroring the bubbles branch of + ! s_convert_conservative_to_primitive_variables: divide the carried conserved bubble moments by + ! the bubble number density nbub. + $:GPU_PARALLEL_LOOP(collapse=3, private='[j, k, l, qb, nbub, nRtmp]') + do l = 0, p + do k = 0, n + do j = 0, m + q_prim_bub_vf(eqn_idx%alf)%sf(j, k, l) = q_cons_vf(eqn_idx%alf)%sf(j, k, l) + if (adv_n) then + nbub = q_cons_vf(eqn_idx%n)%sf(j, k, l) + q_prim_bub_vf(eqn_idx%n)%sf(j, k, l) = nbub + else + $:GPU_LOOP(parallelism='[seq]') + do qb = 1, nb + nRtmp(qb) = q_cons_vf(rs(qb))%sf(j, k, l) + end do + call s_comp_n_from_cons(q_cons_vf(eqn_idx%alf)%sf(j, k, l), nRtmp, nbub, weight) + end if + $:GPU_LOOP(parallelism='[seq]') + do qb = eqn_idx%bub%beg, eqn_idx%bub%end + q_prim_bub_vf(qb)%sf(j, k, l) = q_cons_vf(qb)%sf(j, k, l)/nbub + end do + end do + end do + end do + $:END_GPU_PARALLEL_LOOP() + + ! Live velocity divergence (reuses the standard bubble-source div(u) builder per direction). + do i = 1, num_dims + call s_compute_bubbles_EE_rhs(i, q_prim_bub_vf, divu) + end do + + ! Advance the bubble dynamics by the full microstep dtau, then refresh the void fraction from the + ! transported number density so the next microstep's bubble-aware EOS reads the updated alpha. + ! s_comp_alpha_from_n recovers alpha from the number-density equation (q_cons(eqn_idx%n)), so -- + ! like the standard solver (m_time_steppers ~L563) -- it is gated on adv_n. + call s_advance_bubbles_EE(q_cons_vf, q_prim_bub_vf, divu, dtau) + if (adv_n) call s_comp_alpha_from_n(q_cons_vf) + end if + end do + + end subroutine s_acoustic_substep + + !> WENO-reconstruct a primitive vector's L/R face states for one direction. Mirrors m_rhs's + !! s_reconstruct_cell_boundary_values: pick the per-direction reconstruction bounds (interior trimmed by weno_polyn + !! on the normal axis) and dispatch to s_weno (which reconstructs ubound(v_vf,1) variables). Used for both the + !! acoustic sub-vector and the full primitive vector. + !! @param v_vf Primitive vector (acoustic sub-vector, or full state in m_rhs slot order). + !! @param vL/vR Reconstructed left/right face states (slot index matches v_vf). + !! @param norm_dir Reconstruction direction (1=x, 2=y, 3=z). + subroutine s_reconstruct_boundary_values(v_vf, vL, vR, norm_dir) + + type(scalar_field), dimension(1:), intent(in) :: v_vf + real(wp), dimension(idwbuff(1)%beg:,idwbuff(2)%beg:,idwbuff(3)%beg:,1:), intent(inout) :: vL, vR + integer, intent(in) :: norm_dir + type(int_bounds_info) :: is1, is2, is3 + integer :: recon_dir + + if (norm_dir == 1) then + is1 = idwbuff(1); is2 = idwbuff(2); is3 = idwbuff(3); recon_dir = 1 + else if (norm_dir == 2) then + is1 = idwbuff(2); is2 = idwbuff(1); is3 = idwbuff(3); recon_dir = 2 + else + is1 = idwbuff(3); is2 = idwbuff(2); is3 = idwbuff(1); recon_dir = 3 + end if + is1%beg = is1%beg + weno_polyn; is1%end = is1%end - weno_polyn + + call s_weno(v_vf, vL, vR, recon_dir, is1, is2, is3) + + end subroutine s_reconstruct_boundary_values + + !> Deallocate scratch storage. + impure subroutine s_finalize_acoustic_substep_module + + integer :: i !< Acoustic sub-vector slot iterator + + @:DEALLOCATE(p_sf) + @:DEALLOCATE(div_sf) + @:DEALLOCATE(q_snap) + + do i = 1, n_acoustic + @:DEALLOCATE(q_acoustic_vf(i)%sf) + end do + @:DEALLOCATE(q_acoustic_vf) + + do i = 1, size(q_prim_vf) + @:DEALLOCATE(q_prim_vf(i)%sf) + end do + @:DEALLOCATE(q_prim_vf) + @:DEALLOCATE(qL_rs_vf) + @:DEALLOCATE(qR_rs_vf) + + @:DEALLOCATE(acoustic_flag) + @:DEALLOCATE(dEflux) + @:DEALLOCATE(flux_mom_rob) + @:DEALLOCATE(dmassflux) + @:DEALLOCATE(frozen_conv_mom_face) + @:DEALLOCATE(dmomflux) + + if (bubbles_euler) then + do i = eqn_idx%mom%beg, eqn_idx%mom%end + @:DEALLOCATE(q_prim_bub_vf(i)%sf) + end do + @:DEALLOCATE(q_prim_bub_vf(eqn_idx%E)%sf) + @:DEALLOCATE(q_prim_bub_vf(eqn_idx%alf)%sf) + if (adv_n) then + @:DEALLOCATE(q_prim_bub_vf(eqn_idx%n)%sf) + end if + do i = eqn_idx%bub%beg, eqn_idx%bub%end + @:DEALLOCATE(q_prim_bub_vf(i)%sf) + end do + @:DEALLOCATE(q_prim_bub_vf) + end if + + end subroutine s_finalize_acoustic_substep_module + + end module m_acoustic_substep diff --git a/src/simulation/m_bubbles.fpp b/src/simulation/m_bubbles.fpp index 42d7a7a8ac..5f8320a5ec 100644 --- a/src/simulation/m_bubbles.fpp +++ b/src/simulation/m_bubbles.fpp @@ -333,7 +333,7 @@ contains !> Adaptive time stepping routine for subgrid bubbles (See Heirer, E. Hairer S.P.Norsett G. Wanner, Solving Ordinary !! Differential Equations I, Chapter II.4) subroutine s_advance_step(fRho, fP, fR, fV, fR0, fpb, fpbdot, alf, fntait, fBtait, f_bub_adv_src, f_divu, bub_id, fmass_v, & - & fmass_g, fbeta_c, fbeta_t, fCson, adap_dt_stop) + & fmass_g, fbeta_c, fbeta_t, fCson, adap_dt_stop, fdt) $:GPU_ROUTINE(function_name='s_advance_step',parallelism='[seq]', cray_inline=True) real(wp), intent(inout) :: fR, fV, fpb, fmass_v @@ -342,6 +342,7 @@ contains integer, intent(in) :: bub_id real(wp), intent(in) :: fmass_g, fbeta_c, fbeta_t, fCson integer, intent(inout) :: adap_dt_stop + real(wp), intent(in) :: fdt !< Time interval to advance the bubble state over real(wp), dimension(5) :: err !< Error estimates for adaptive time stepping real(wp) :: t_new !< Updated time step size real(wp) :: h0, h !< Time step size @@ -359,8 +360,8 @@ contains adap_dt_stop = 0 do - if (t_new + h > 0.5_wp*dt) then - h = 0.5_wp*dt - t_new + if (t_new + h > fdt) then + h = fdt - t_new end if ! Advancing one sub-step @@ -432,7 +433,7 @@ contains end do ! Exit the loop if the final time reached dt - if (f_approx_equal(t_new, 0.5_wp*dt) .or. iter_count >= adap_dt_max_iters) exit + if (f_approx_equal(t_new, fdt) .or. iter_count >= adap_dt_max_iters) exit end do if (iter_count >= adap_dt_max_iters) adap_dt_stop = 1 diff --git a/src/simulation/m_bubbles_EE.fpp b/src/simulation/m_bubbles_EE.fpp index a15156405b..b9b3f64e5d 100644 --- a/src/simulation/m_bubbles_EE.fpp +++ b/src/simulation/m_bubbles_EE.fpp @@ -277,7 +277,7 @@ contains call s_advance_step(myRho, myP, myR, myV, R0(q), pb_local, pbdot, alf, n_tait, B_tait, & & bub_adv_src(j, k, l), divu_in%sf(j, k, l), dmBub_id, dmMass_v, dmMass_n, & - & dmBeta_c, dmBeta_t, dmCson, adap_dt_stop) + & dmBeta_c, dmBeta_t, dmCson, adap_dt_stop, 0.5_wp*dt) q_cons_vf(rs(q))%sf(j, k, l) = nbub*myR q_cons_vf(vs(q))%sf(j, k, l) = nbub*myV @@ -323,4 +323,120 @@ contains end subroutine s_compute_bubble_EE_source + !> Advance the Euler-Euler bubble dynamics in place by an explicit step dtau on the given primitive state and velocity + !! divergence, reusing the adaptive per-cell s_advance_step integration. Intended for co-subcycling the bubble radial dynamics + !! with the acoustic substep (acoustic_substepping). + impure subroutine s_advance_bubbles_EE(q_cons_vf, q_prim_vf, divu_in, dtau) + + type(scalar_field), dimension(sys_size), intent(inout) :: q_cons_vf + type(scalar_field), dimension(sys_size), intent(in) :: q_prim_vf + type(scalar_field), intent(in) :: divu_in !< matrix for div(u) + real(wp), intent(in) :: dtau !< Step to advance the bubble state over + real(wp) :: pb_local, mv_local, vflux, pbdot + real(wp) :: n_tait, B_tait + + #:if not MFC_CASE_OPTIMIZATION and USING_AMD + real(wp), dimension(3) :: Rtmp + real(wp), dimension(3) :: myalpha, myalpha_rho + #:else + real(wp), dimension(nb) :: Rtmp + real(wp), dimension(num_fluids) :: myalpha, myalpha_rho + #:endif + real(wp) :: myR, myV, alf, myP, myRho, R3 + real(wp) :: nbub !< Bubble number density + integer :: j, k, l, q, ii !< Loop variables + integer :: adap_dt_stop_max, adap_dt_stop !< Fail-safe exit if max iteration count reached + integer :: dmBub_id !< Dummy variables for unified subgrid bubble subroutines + real(wp) :: dmMass_v, dmMass_n, dmBeta_c, dmBeta_t, dmCson + + adap_dt_stop_max = 0 + $:GPU_PARALLEL_LOOP(private='[j, k, l, Rtmp, myalpha_rho, myalpha, myR, myV, alf, myP, myRho, R3, nbub, pb_local, & + & mv_local, vflux, pbdot, n_tait, B_tait]', collapse=3, reduction = '[[adap_dt_stop_max]]', & + & reductionOp = '[MAX]', copy = '[adap_dt_stop_max]') + do l = 0, p + do k = 0, n + do j = 0, m + if (adv_n) then + nbub = q_prim_vf(eqn_idx%n)%sf(j, k, l) + else + $:GPU_LOOP(parallelism='[seq]') + do q = 1, nb + Rtmp(q) = q_prim_vf(rs(q))%sf(j, k, l) + end do + + R3 = 0._wp + + $:GPU_LOOP(parallelism='[seq]') + do q = 1, nb + R3 = R3 + weight(q)*Rtmp(q)**3._wp + end do + + nbub = (3._wp/(4._wp*pi))*q_prim_vf(eqn_idx%alf)%sf(j, k, l)/R3 + end if + + $:GPU_LOOP(parallelism='[seq]') + do q = 1, nb + $:GPU_LOOP(parallelism='[seq]') + do ii = 1, num_fluids + myalpha_rho(ii) = q_cons_vf(ii)%sf(j, k, l) + myalpha(ii) = q_cons_vf(eqn_idx%adv%beg + ii - 1)%sf(j, k, l) + end do + + if (num_fluids == 1) then + myRho = myalpha_rho(1) + n_tait = gammas(1) + B_tait = pi_infs(1)/pi_fac + else + myRho = 0._wp + n_tait = 0._wp + B_tait = 0._wp + + $:GPU_LOOP(parallelism='[seq]') + do ii = 1, num_fluids + myRho = myRho + myalpha_rho(ii) + n_tait = n_tait + myalpha(ii)*gammas(ii) + B_tait = B_tait + myalpha(ii)*pi_infs(ii)/pi_fac + end do + end if + + n_tait = 1._wp/n_tait + 1._wp ! make this the usual little 'gamma' + B_tait = B_tait*(n_tait - 1)/n_tait ! make this the usual pi_inf + + myP = q_prim_vf(eqn_idx%E)%sf(j, k, l) + alf = q_prim_vf(eqn_idx%alf)%sf(j, k, l) + myR = q_prim_vf(rs(q))%sf(j, k, l) + myV = q_prim_vf(vs(q))%sf(j, k, l) + + if (alf >= small_alf) then + if (.not. polytropic) then + pb_local = q_prim_vf(ps(q))%sf(j, k, l) + mv_local = q_prim_vf(ms(q))%sf(j, k, l) + call s_bwproperty(pb_local, q, chi_vw, k_mw, rho_mw) + call s_vflux(myR, myV, pb_local, mv_local, q, vflux) + pbdot = f_bpres_dot(vflux, myR, myV, pb_local, mv_local, q) + else + pb_local = 0._wp; mv_local = 0._wp; vflux = 0._wp; pbdot = 0._wp + end if + + adap_dt_stop = 0 + + call s_advance_step(myRho, myP, myR, myV, R0(q), pb_local, pbdot, alf, n_tait, B_tait, 0._wp, & + & divu_in%sf(j, k, l), dmBub_id, dmMass_v, dmMass_n, dmBeta_c, dmBeta_t, dmCson, & + & adap_dt_stop, dtau) + + q_cons_vf(rs(q))%sf(j, k, l) = nbub*myR + q_cons_vf(vs(q))%sf(j, k, l) = nbub*myV + + adap_dt_stop_max = max(adap_dt_stop_max, adap_dt_stop) + end if + end do + end do + end do + end do + $:END_GPU_PARALLEL_LOOP() + + if (adap_dt_stop_max > 0) call s_mpi_abort("Adaptive time stepping failed to converge.") + + end subroutine s_advance_bubbles_EE + end module m_bubbles_EE diff --git a/src/simulation/m_bubbles_EL.fpp b/src/simulation/m_bubbles_EL.fpp index 4a84874119..f83e8efad1 100644 --- a/src/simulation/m_bubbles_EL.fpp +++ b/src/simulation/m_bubbles_EL.fpp @@ -567,7 +567,7 @@ contains if (adap_dt) then call s_advance_step(myRho, myPinf, myR, myV, myR0, myPb, myPbdot, dmalf, dmntait, dmBtait, dm_bub_adv_src, & - & dm_divu, k, myMass_v, myMass_n, myBeta_c, myBeta_t, myCson, adap_dt_stop) + & dm_divu, k, myMass_v, myMass_n, myBeta_c, myBeta_t, myCson, adap_dt_stop, 0.5_wp*dt) ! Update bubble state intfc_rad(k, 1) = myR diff --git a/src/simulation/m_checker.fpp b/src/simulation/m_checker.fpp index 2b933bb676..4a257ad80b 100644 --- a/src/simulation/m_checker.fpp +++ b/src/simulation/m_checker.fpp @@ -12,7 +12,7 @@ module m_checker use m_mpi_proxy use m_helper use m_helper_basic - use m_constants, only: recon_type_weno, recon_type_muscl, muscl_order_first_order + use m_constants, only: recon_type_weno, recon_type_muscl, muscl_order_first_order, time_stepper_rk3, wave_speeds_direct implicit none @@ -98,6 +98,27 @@ contains @:PROHIBIT(dt <= 0) end if + if (acoustic_substepping) then + @:PROHIBIT(model_eqns /= 2, "acoustic_substepping requires model_eqns = 2") + @:PROHIBIT(bubbles_lagrange, "acoustic_substepping is incompatible with Lagrangian bubbles") + @:PROHIBIT(bubbles_euler .and. .not. adv_n, & + & "acoustic_substepping with Euler-Euler bubbles requires adv_n = T (the co-subcycle recovers void fraction from number density)") + @:PROHIBIT(qbmm, "acoustic_substepping is incompatible with qbmm") + @:PROHIBIT(ib, "acoustic_substepping is incompatible with immersed boundaries") + @:PROHIBIT(hypoelasticity .or. hyperelasticity, "acoustic_substepping is incompatible with elasticity") + @:PROHIBIT(chemistry, "acoustic_substepping is incompatible with chemistry") + @:PROHIBIT(relax, "acoustic_substepping is incompatible with phase change") + @:PROHIBIT(igr, "acoustic_substepping is incompatible with the information geometric regularization (igr) solver") + @:PROHIBIT(.not. cfl_dt, "acoustic_substepping requires CFL-based time stepping (set cfl_adap_dt or cfl_const_dt)") + @:PROHIBIT(time_stepper /= time_stepper_rk3, "acoustic_substepping requires time_stepper = 3 (SSP-RK3)") + @:PROHIBIT(wave_speeds /= wave_speeds_direct, & + & "acoustic_substepping requires wave_speeds = 1 (direct); the substep robust tier uses the direct-wave-speed HLLC flux") + @:PROHIBIT(recon_type /= recon_type_weno, & + & "acoustic_substepping requires WENO reconstruction; the substep reconstructs with s_weno") + @:PROHIBIT(n_acoustic_substeps < 0, "n_acoustic_substeps must be >= 0 (0 = auto)") + @:PROHIBIT(acoustic_div_damp < 0._wp, "acoustic_div_damp must be >= 0") + end if + end subroutine s_check_inputs_time_stepping !> Validate NVIDIA unified virtual memory configuration parameters diff --git a/src/simulation/m_data_output.fpp b/src/simulation/m_data_output.fpp index a05b62d5a5..89646f7bb8 100644 --- a/src/simulation/m_data_output.fpp +++ b/src/simulation/m_data_output.fpp @@ -269,7 +269,10 @@ contains if (.not. f_approx_equal(icfl_max_glb, icfl_max_glb)) then call s_mpi_abort('ICFL is NaN. Exiting.') - else if (icfl_max_glb > 1._wp) then + else if (icfl_max_glb > 1._wp .and. .not. acoustic_substepping) then + ! In split-explicit low-Mach mode the timestep is set by the advective + ! CFL and is intentionally above the acoustic CFL, so this inviscid + ! (acoustic) ICFL exceeding 1 is expected and must not abort. print *, 'icfl', icfl_max_glb call s_mpi_abort('ICFL is greater than 1.0. Exiting.') end if diff --git a/src/simulation/m_global_parameters.fpp b/src/simulation/m_global_parameters.fpp index 7e22e8736a..439c27b523 100644 --- a/src/simulation/m_global_parameters.fpp +++ b/src/simulation/m_global_parameters.fpp @@ -342,6 +342,9 @@ contains weno_Re_flux = .false. riemann_solver = dflt_int low_Mach = 0 + acoustic_substepping = .false. + n_acoustic_substeps = 0 + acoustic_div_damp = 0.1_wp wave_speeds = dflt_int avg_state = dflt_int alt_soundspeed = .false. diff --git a/src/simulation/m_rhs.fpp b/src/simulation/m_rhs.fpp index 0ab59a8454..54d04be761 100644 --- a/src/simulation/m_rhs.fpp +++ b/src/simulation/m_rhs.fpp @@ -36,6 +36,7 @@ module m_rhs use m_igr use m_thinc use m_pressure_relaxation + use m_acoustic_substep, only: frozen_conv_mom_face implicit none @@ -482,6 +483,7 @@ contains integer, intent(in) :: stage real(wp) :: t_start, t_finish integer :: id + integer :: fb_x, fb_y, fb_z !< Slow-flux snapshot lower bounds (one ghost below interior on the normal axis) integer(kind=8) :: i, j, k, l, q !< Generic loop iterators ! RHS: halo exchange -> reconstruct -> Riemann solve -> flux difference -> source terms @@ -722,6 +724,37 @@ contains & flux_gsrc_n(id)%vf, id, irx, iry, irz) call nvtxEndRange + ! Split-explicit low-Mach: snapshot the per-face slow momentum flux just computed by the HLLC slow path, whose + ! divergence is the momentum part of rhs_vf(mom), for the acoustic substep's live-minus-frozen momentum delta. + ! Under acoustic_substepping the HLLC slow variant (m_riemann_solver_hllc) emits a momentum face flux that is + ! CONVECTIVE-ONLY -- contact-upwinded rho*u_n*u_d, with NO star-pressure p_Star, no acoustic (u+-c) dissipation, + ! and no low-Mach pcorr (those are deferred to the acoustic tier). frozen_conv_mom_face is therefore a faithful + ! per-face copy of that convective flux_n(mom); the substep's live convective delta is flux_mom_c(live) minus + ! frozen_conv_mom_face, and the star-pressure (acoustic) momentum is supplied LIVE and separately by flux_mom_rob, + ! so it must NOT also be present in this frozen/convective flux. The LOAD-BEARING invariant is that + ! frozen_conv_mom_face EXACTLY mirrors the flux_n(mom) whose divergence is rhs_slow(mom), so the two divergences + ! cancel on every RK stage. flux_n(id)%vf(mom%beg+d-1) is global momentum component d at the +id face of + ! cell (j,k,l); stored in the same layout/convention as the substep's dmomflux. Bounds match the substep's + ! flag/flux passes (one ghost below the interior on the normal axis). + ! Guarded so the standard solver path is byte-for-byte untouched. + if (acoustic_substepping) then + fb_x = idwint(1)%beg; fb_y = idwint(2)%beg; fb_z = idwint(3)%beg + if (id == 1) then; fb_x = idwint(1)%beg - 1; else if (id == 2) then; fb_y = idwint(2)%beg & + & - 1; else; fb_z = idwint(3)%beg - 1; end if + $:GPU_PARALLEL_LOOP(collapse=3, private='[j, k, l]') + do l = fb_z, idwint(3)%end + do k = fb_y, idwint(2)%end + do j = fb_x, idwint(1)%end + $:GPU_LOOP(parallelism='[seq]') + do i = 1, num_dims + frozen_conv_mom_face(j, k, l, id, i) = flux_n(id)%vf(eqn_idx%mom%beg + i - 1)%sf(j, k, l) + end do + end do + end do + end do + $:END_GPU_PARALLEL_LOOP() + end if + ! Additional physics and source terms RHS addition for advection source call nvtxStartRange("RHS-ADVECTION-SRC") call s_compute_advection_source_term(id, rhs_vf, q_cons_qp, q_prim_qp, flux_src_n(id)) diff --git a/src/simulation/m_riemann_solver_hllc.fpp b/src/simulation/m_riemann_solver_hllc.fpp index 0a7dade518..a27e38879c 100644 --- a/src/simulation/m_riemann_solver_hllc.fpp +++ b/src/simulation/m_riemann_solver_hllc.fpp @@ -1470,35 +1470,65 @@ contains pcorr = 0._wp end if - ! COMPUTING THE HLLC FLUXES MASS FLUX. - $:GPU_LOOP(parallelism='[seq]') - do i = 1, eqn_idx%cont%end - flux_rsx_vf(${SF('')}$, i) = xi_M*qL_prim_rsx_vf(${SF('')}$, & - & i)*(vel_L(dir_idx(1)) + s_M*xi_L_m1) + xi_P*qR_prim_rsx_vf(${SF(' + 1')}$, & - & i)*(vel_R(dir_idx(1)) + s_P*xi_R_m1) - end do + ! NOTE: Split-explicit low-Mach mode (acoustic_substepping) is handled in this + ! general 5eq block only; the 6eq, 4eq, and 5eq+bubbles flux blocks are + ! unreachable under acoustic_substepping (enforced by m_checker.fpp, which + ! @:PROHIBITs split mode unless model_eqns==2 with no bubbles/elasticity/etc.). + if (acoustic_substepping) then + ! Slow (advective) flux only. Mass and total-energy transport, and the + ! acoustic/pressure work, are deferred to the acoustic substep, so their + ! face fluxes are zero here. The momentum face flux keeps only the + ! contact-upwinded convective part rho*u*u (dissipation scales with |u|): + ! no pressure term, no acoustic (u+-c) dissipation, no low-Mach pcorr. + + ! COMPUTING THE HLLC FLUXES MASS FLUX. (deferred to acoustic substep) + $:GPU_LOOP(parallelism='[seq]') + do i = 1, eqn_idx%cont%end + flux_rsx_vf(${SF('')}$, i) = 0._wp + end do - ! MOMENTUM FLUX. f = \rho u u - \sigma, q = \rho u, q_star = \xi * \rho*(s_star, v, w) identity: - ! xi*(dir_flg*s_S+(1-dir_flg)*u_i)-u_i = (dir_flg*s_L/R+(1-dir_flg)*u_i)*xi_m1 - $:GPU_LOOP(parallelism='[seq]') - do i = 1, num_dims - flux_rsx_vf(${SF('')}$, & - & eqn_idx%cont%end + dir_idx(i)) = xi_M*(rho_L*(vel_L(dir_idx(1))*vel_L(dir_idx(i) & - & ) + s_M*(dir_flg(dir_idx(i))*s_L + (1._wp - dir_flg(dir_idx(i))) & - & *vel_L(dir_idx(i)))*xi_L_m1) + dir_flg(dir_idx(i))*(pres_L)) & - & + xi_P*(rho_R*(vel_R(dir_idx(1))*vel_R(dir_idx(i)) + s_P*(dir_flg(dir_idx(i)) & - & *s_R + (1._wp - dir_flg(dir_idx(i)))*vel_R(dir_idx(i)))*xi_R_m1) & - & + dir_flg(dir_idx(i))*(pres_R)) + (s_M/s_L)*(s_P/s_R)*dir_flg(dir_idx(i))*pcorr - end do + ! MOMENTUM FLUX. Slow part only: contact-upwinded rho*u*u advection. + $:GPU_LOOP(parallelism='[seq]') + do i = 1, num_dims + flux_rsx_vf(${SF('')}$, & + & eqn_idx%cont%end + dir_idx(i)) = xi_M*rho_L*vel_L(dir_idx(1)) & + & *vel_L(dir_idx(i)) + xi_P*rho_R*vel_R(dir_idx(1))*vel_R(dir_idx(i)) + end do - ! ENERGY FLUX. f = u*(E-\sigma), q = E, q_star = \xi*E+(s-u)(\rho s_star - \sigma/(s-u)) - ! xi*(E+expr)-E = E*xi_m1 + xi*expr avoids E*(xi-1) cancellation - flux_rsx_vf(${SF('')}$, & - & eqn_idx%E) = xi_M*(vel_L(dir_idx(1))*(E_L + pres_L) + s_M*(E_L*xi_L_m1 + xi_L*(s_S & - & - vel_L(dir_idx(1)))*(rho_L*s_S + pres_L/(s_L - vel_L(dir_idx(1)))))) & - & + xi_P*(vel_R(dir_idx(1))*(E_R + pres_R) + s_P*(E_R*xi_R_m1 + xi_R*(s_S & - & - vel_R(dir_idx(1)))*(rho_R*s_S + pres_R/(s_R - vel_R(dir_idx(1)))))) + (s_M/s_L) & - & *(s_P/s_R)*pcorr*s_S + ! ENERGY FLUX. (deferred to acoustic substep) + flux_rsx_vf(${SF('')}$, eqn_idx%E) = 0._wp + else + ! COMPUTING THE HLLC FLUXES MASS FLUX. + $:GPU_LOOP(parallelism='[seq]') + do i = 1, eqn_idx%cont%end + flux_rsx_vf(${SF('')}$, i) = xi_M*qL_prim_rsx_vf(${SF('')}$, & + & i)*(vel_L(dir_idx(1)) + s_M*xi_L_m1) + xi_P*qR_prim_rsx_vf(${SF(' + 1')}$, & + & i)*(vel_R(dir_idx(1)) + s_P*xi_R_m1) + end do + + ! MOMENTUM FLUX. f = \rho u u - \sigma, q = \rho u, q_star = \xi * \rho*(s_star, v, w) identity: + ! xi*(dir_flg*s_S+(1-dir_flg)*u_i)-u_i = (dir_flg*s_L/R+(1-dir_flg)*u_i)*xi_m1 + $:GPU_LOOP(parallelism='[seq]') + do i = 1, num_dims + flux_rsx_vf(${SF('')}$, & + & eqn_idx%cont%end + dir_idx(i)) = xi_M*(rho_L*(vel_L(dir_idx(1)) & + & *vel_L(dir_idx(i)) + s_M*(dir_flg(dir_idx(i))*s_L + (1._wp & + & - dir_flg(dir_idx(i)))*vel_L(dir_idx(i)))*xi_L_m1) + dir_flg(dir_idx(i)) & + & *(pres_L)) + xi_P*(rho_R*(vel_R(dir_idx(1))*vel_R(dir_idx(i)) & + & + s_P*(dir_flg(dir_idx(i))*s_R + (1._wp - dir_flg(dir_idx(i))) & + & *vel_R(dir_idx(i)))*xi_R_m1) + dir_flg(dir_idx(i))*(pres_R)) + (s_M/s_L) & + & *(s_P/s_R)*dir_flg(dir_idx(i))*pcorr + end do + + ! ENERGY FLUX. f = u*(E-\sigma), q = E, q_star = \xi*E+(s-u)(\rho s_star - \sigma/(s-u)) + ! xi*(E+expr)-E = E*xi_m1 + xi*expr avoids E*(xi-1) cancellation + flux_rsx_vf(${SF('')}$, & + & eqn_idx%E) = xi_M*(vel_L(dir_idx(1))*(E_L + pres_L) + s_M*(E_L*xi_L_m1 & + & + xi_L*(s_S - vel_L(dir_idx(1)))*(rho_L*s_S + pres_L/(s_L - vel_L(dir_idx(1))))) & + & ) + xi_P*(vel_R(dir_idx(1))*(E_R + pres_R) + s_P*(E_R*xi_R_m1 + xi_R*(s_S & + & - vel_R(dir_idx(1)))*(rho_R*s_S + pres_R/(s_R - vel_R(dir_idx(1)))))) & + & + (s_M/s_L)*(s_P/s_R)*pcorr*s_S + end if ! ELASTICITY. Elastic shear stress additions for the momentum and energy flux if (elasticity) then @@ -1660,4 +1690,136 @@ contains end subroutine s_hllc_riemann_solver + !> Acoustic part of the general 5eq HLLC flux at a single face, for the split-explicit low-Mach (acoustic_substepping) robust + !! tier. Returns exactly the pressure/acoustic terms the slow-flux variant removes: the star pressure in the normal-momentum + !! equation and the pressure work in the total-energy equation, each carrying the s_M/s_P (+-c) acoustic dissipation. The + !! rho*u*u convective momentum transport stays in the slow flux and is NOT included here. Device-callable and fully + !! self-contained: every input is a scalar passed by value (no module-level state), so it can be evaluated at flagged faces from + !! inside the acoustic substep on host or device. + !! @param pres_L Left-state pressure + !! @param vel_L Left-state face-normal velocity + !! @param rho_L Left-state mixture density + !! @param c_L Left-state sound speed + !! @param pres_R Right-state pressure + !! @param vel_R Right-state face-normal velocity + !! @param rho_R Right-state mixture density + !! @param c_R Right-state sound speed + !! @param flux_mom Acoustic normal-momentum flux (star pressure + s_M/s_P dissipation) + !! @param flux_E Acoustic total-energy flux (pressure work + s_M/s_P dissipation) + pure subroutine s_acoustic_face_flux(pres_L, vel_L, rho_L, c_L, pres_R, vel_R, rho_R, c_R, flux_mom, flux_E) + + $:GPU_ROUTINE(parallelism='[seq]') + real(wp), intent(in) :: pres_L, vel_L, rho_L, c_L + real(wp), intent(in) :: pres_R, vel_R, rho_R, c_R + real(wp), intent(out) :: flux_mom, flux_E + real(wp) :: s_L, s_R, s_M, s_P, s_S + real(wp) :: xi_L_m1, xi_R_m1, xi_M, xi_P + + ! Direct (Davis/Einfeldt) acoustic wave speeds; mirrors wave_speeds_direct in + ! s_hllc_riemann_solver restricted to the face-normal acoustic state. + s_L = min(vel_L - c_L, vel_R - c_R) + s_R = max(vel_R + c_R, vel_L + c_L) + s_S = (pres_R - pres_L + rho_L*vel_L*(s_L - vel_L) - rho_R*vel_R*(s_R - vel_R))/(rho_L*(s_L - vel_L) - rho_R*(s_R - vel_R)) + + ! Einfeldt s_M/s_P = min/max(0, s_L/R); xi_L/R - 1 without cancellation; contact upwind. + s_M = min(0._wp, s_L); s_P = max(0._wp, s_R) + xi_L_m1 = (s_S - vel_L)/min(s_L - s_S, -sgm_eps) + xi_R_m1 = (s_S - vel_R)/max(s_R - s_S, sgm_eps) + xi_M = 5.e-1_wp + sign(5.e-1_wp, s_S) + xi_P = 5.e-1_wp - sign(5.e-1_wp, s_S) + + ! MOMENTUM: star pressure with the acoustic (+-c) dissipation. This is the pressure + ! term dir_flg*pres_{L,R} plus the s_M/s_P*xi_{L,R}_m1 dissipation the slow-flux variant + ! drops; the rho*u*u convective part is left in the slow flux. + flux_mom = xi_M*(pres_L + rho_L*s_M*s_L*xi_L_m1) + xi_P*(pres_R + rho_R*s_P*s_R*xi_R_m1) + + ! ENERGY: pressure work with the acoustic dissipation. Equals the pressure-bearing part + ! of the HLLC energy flux (the u*E convective transport is deferred to the slow flux), + ! using the identity xi_{L,R}*(s_S - vel_{L,R})/(s_{L,R} - vel_{L,R}) == xi_{L,R}_m1. + flux_E = xi_M*pres_L*(vel_L + s_M*xi_L_m1) + xi_P*pres_R*(vel_R + s_P*xi_R_m1) + + end subroutine s_acoustic_face_flux + + !> Convective part of the general 5eq HLLC flux at a single face, for the split-explicit low-Mach (acoustic_substepping) robust + !! tier. Returns exactly the contact-speed-advected terms that complement s_acoustic_face_flux: the upwinded mass transport + !! (alpha*rho_k*u for each fluid), the convective momentum transport (rho*u*u with the contact-speed dissipation, both normal + !! and transverse), and the convective energy transport (E*u with the contact-speed star term). It contains no pressure/acoustic + !! work and no (u+-c) acoustic dissipation -- those are in s_acoustic_face_flux. By construction s_convective_face_flux + + !! s_acoustic_face_flux reproduces the full non-split HLLC physical flux on the GIVEN (live) L/R state. Device-callable and + !! fully self-contained: every input is a scalar or a fixed-shape array passed by value (no module-level state), so flagged + !! faces can assemble the full HLLC flux from inside the acoustic substep on host or device. Array layout: velocity index 1 is + !! the face-normal component (2,3 transverse); fluid index runs 1..nf over the continuity equations; flux_mom is returned in the + !! same component order as the velocities. + !! @param nf Number of fluids / continuity equations (length of the partial-density and continuity-flux arrays) + !! @param nv Number of velocity components (length of the velocity and momentum-flux arrays) + !! @param rhoYks_L Left-state partial densities alpha*rho_k (one per fluid) + !! @param vel_L Left-state velocity components (index 1 = face-normal) + !! @param rho_L Left-state mixture density + !! @param c_L Left-state sound speed + !! @param pres_L Left-state pressure (used only for the wave-speed estimates, not transported here) + !! @param E_L Left-state total energy density + !! @param rhoYks_R Right-state partial densities alpha*rho_k (one per fluid) + !! @param vel_R Right-state velocity components (index 1 = face-normal) + !! @param rho_R Right-state mixture density + !! @param c_R Right-state sound speed + !! @param pres_R Right-state pressure (used only for the wave-speed estimates, not transported here) + !! @param E_R Right-state total energy density + !! @param flux_cont Convective continuity flux, one per fluid (contact-upwinded alpha*rho_k*u) + !! @param flux_mom Convective momentum flux per component (rho*u*u with contact dissipation, no pressure) + !! @param flux_E Convective total-energy flux (E*u with the contact-speed star term, no pressure work) + pure subroutine s_convective_face_flux(nf, nv, rhoYks_L, vel_L, rho_L, c_L, pres_L, E_L, rhoYks_R, vel_R, rho_R, c_R, pres_R, & + & E_R, flux_cont, flux_mom, flux_E) + + $:GPU_ROUTINE(parallelism='[seq]') + integer, intent(in) :: nf, nv + real(wp), dimension(nf), intent(in) :: rhoYks_L, rhoYks_R + real(wp), dimension(nv), intent(in) :: vel_L, vel_R + real(wp), intent(in) :: rho_L, c_L, pres_L, E_L + real(wp), intent(in) :: rho_R, c_R, pres_R, E_R + real(wp), dimension(nf), intent(out) :: flux_cont + real(wp), dimension(nv), intent(out) :: flux_mom + real(wp), intent(out) :: flux_E + real(wp) :: s_L, s_R, s_M, s_P, s_S + real(wp) :: xi_L, xi_R, xi_L_m1, xi_R_m1, xi_M, xi_P + integer :: i + + ! Direct (Davis/Einfeldt) acoustic wave speeds and contact speed; mirrors wave_speeds_direct in + ! s_hllc_riemann_solver restricted to the face-normal state (velocity index 1). + s_L = min(vel_L(1) - c_L, vel_R(1) - c_R) + s_R = max(vel_R(1) + c_R, vel_L(1) + c_L) + s_S = (pres_R - pres_L + rho_L*vel_L(1)*(s_L - vel_L(1)) - rho_R*vel_R(1)*(s_R - vel_R(1)))/(rho_L*(s_L - vel_L(1)) & + & - rho_R*(s_R - vel_R(1))) + + ! Einfeldt s_M/s_P = min/max(0, s_L/R); contact-upwind xi factors without cancellation. + s_M = min(0._wp, s_L); s_P = max(0._wp, s_R) + xi_L = (s_L - vel_L(1))/min(s_L - s_S, -sgm_eps) + xi_R = (s_R - vel_R(1))/max(s_R - s_S, sgm_eps) + xi_L_m1 = (s_S - vel_L(1))/min(s_L - s_S, -sgm_eps) + xi_R_m1 = (s_S - vel_R(1))/max(s_R - s_S, sgm_eps) + xi_M = 5.e-1_wp + sign(5.e-1_wp, s_S) + xi_P = 5.e-1_wp - sign(5.e-1_wp, s_S) + + ! MASS: contact-upwinded partial-density advection alpha*rho_k*u (full HLLC mass flux; the acoustic + ! part carries no mass transport). + do i = 1, nf + flux_cont(i) = xi_M*rhoYks_L(i)*(vel_L(1) + s_M*xi_L_m1) + xi_P*rhoYks_R(i)*(vel_R(1) + s_P*xi_R_m1) + end do + + ! MOMENTUM: convective rho*u*u transport with the contact-speed dissipation, no pressure term. Equals the + ! full HLLC momentum flux minus the star-pressure carried by s_acoustic_face_flux. Component 1 (normal) + ! keeps only rho*u*u (its s_M*s_L dissipation went to the acoustic part); transverse components keep the + ! rho*u*v advection plus their s_M*v*xi_m1 contact dissipation. + flux_mom(1) = xi_M*rho_L*vel_L(1)*vel_L(1) + xi_P*rho_R*vel_R(1)*vel_R(1) + do i = 2, nv + flux_mom(i) = xi_M*rho_L*(vel_L(1)*vel_L(i) + s_M*vel_L(i)*xi_L_m1) + xi_P*rho_R*(vel_R(1)*vel_R(i) + s_P*vel_R(i) & + & *xi_R_m1) + end do + + ! ENERGY: convective E*u transport with the contact-speed star term, no pressure work. Equals the full HLLC + ! energy flux minus the pressure work carried by s_acoustic_face_flux, using xi*(s_S-vel)/(s-vel) == xi_m1. + flux_E = xi_M*(vel_L(1)*E_L + s_M*(E_L*xi_L_m1 + xi_L*(s_S - vel_L(1))*rho_L*s_S)) + xi_P*(vel_R(1)*E_R & + & + s_P*(E_R*xi_R_m1 + xi_R*(s_S - vel_R(1))*rho_R*s_S)) + + end subroutine s_convective_face_flux + end module m_riemann_solver_hllc diff --git a/src/simulation/m_riemann_solvers.fpp b/src/simulation/m_riemann_solvers.fpp index 95a6aead76..e2afea74e5 100644 --- a/src/simulation/m_riemann_solvers.fpp +++ b/src/simulation/m_riemann_solvers.fpp @@ -20,7 +20,8 @@ module m_riemann_solvers implicit none private; public :: s_initialize_riemann_solvers_module, s_riemann_solver, s_hll_riemann_solver, s_hllc_riemann_solver, & - & s_hlld_riemann_solver, s_lf_riemann_solver, s_finalize_riemann_solvers_module + & s_hlld_riemann_solver, s_lf_riemann_solver, s_acoustic_face_flux, s_convective_face_flux, & + & s_finalize_riemann_solvers_module contains diff --git a/src/simulation/m_sim_helpers.fpp b/src/simulation/m_sim_helpers.fpp index 4a0978919e..f5e393bb11 100644 --- a/src/simulation/m_sim_helpers.fpp +++ b/src/simulation/m_sim_helpers.fpp @@ -14,7 +14,7 @@ module m_sim_helpers implicit none - private; public :: s_compute_enthalpy, s_compute_stability_from_dt, s_compute_dt_from_cfl + private; public :: s_compute_enthalpy, s_compute_stability_from_dt, s_compute_dt_from_cfl, f_compute_multidim_cfl_terms contains @@ -69,6 +69,36 @@ contains end function f_compute_multidim_cfl_terms + !> Computes advective-only CFL terms for multi-dimensional cases (2D/3D only). Uses per-dimension velocity magnitude with + !! sgm_eps guard (no sound speed). + function f_compute_multidim_advective_cfl_terms(vel, j, k, l) result(cfl_terms) + + $:GPU_ROUTINE(parallelism='[seq]') + real(wp), dimension(num_vels), intent(in) :: vel + integer, intent(in) :: j, k, l + real(wp) :: cfl_terms + real(wp) :: fltr_dtheta + + fltr_dtheta = f_compute_filtered_dtheta(k, l) + + if (p > 0) then + ! 3D + #:if not MFC_CASE_OPTIMIZATION or num_dims > 2 + if (grid_geometry == 3) then + cfl_terms = min(dx(j)/max(abs(vel(1)), sgm_eps), dy(k)/max(abs(vel(2)), sgm_eps), & + & fltr_dtheta/max(abs(vel(3)), sgm_eps)) + else + cfl_terms = min(dx(j)/max(abs(vel(1)), sgm_eps), dy(k)/max(abs(vel(2)), sgm_eps), dz(l)/max(abs(vel(3)), & + & sgm_eps)) + end if + #:endif + else + ! 2D + cfl_terms = min(dx(j)/max(abs(vel(1)), sgm_eps), dy(k)/max(abs(vel(2)), sgm_eps)) + end if + + end function f_compute_multidim_advective_cfl_terms + !> Computes enthalpy subroutine s_compute_enthalpy(q_prim_vf, pres, rho, gamma, pi_inf, Re, H, alpha, vel, vel_sum, qv, j, k, l) @@ -187,8 +217,11 @@ contains end subroutine s_compute_stability_from_dt - !> Computes dt for a specified CFL number - subroutine s_compute_dt_from_cfl(vel, c, max_dt, rho, Re_l, j, k, l) + !> Computes dt for a specified CFL number. When acoustic_substepping is true, icfl_dt is the per-dimension advective CFL limit + !! (dropping the sound speed c); the caller (s_compute_dt) separately fills acou_dt_sf with the per-cell acoustic CFL dt limit + !! min_i dx_i/(|u_i|+c) inline (keeping a single 3-D array, max_dt, in this routine's signature). Only the scalar acoustic_sub + !! selects the advective-vs-acoustic inviscid speed here. + subroutine s_compute_dt_from_cfl(vel, c, max_dt, rho, Re_l, j, k, l, acoustic_sub) $:GPU_ROUTINE(parallelism='[seq]') real(wp), dimension(num_vels), intent(in) :: vel @@ -196,16 +229,33 @@ contains real(wp), dimension(0:m,0:n,0:p), intent(inout) :: max_dt real(wp), dimension(2), intent(in) :: Re_l integer, intent(in) :: j, k, l - real(wp) :: icfl_dt, vcfl_dt - real(wp) :: fltr_dtheta + ! Passed by value (not read from the module) so this `acc routine seq` does not require the + ! acoustic_substepping module variable to be in `acc declare create` (nvfortran W-1054 -> nvlink undefined ref). + logical, intent(in) :: acoustic_sub + real(wp) :: icfl_dt, vcfl_dt + real(wp) :: fltr_dtheta + real(wp) :: adv_speed !< sum(|vel|) for 1D advective CFL ! Inviscid CFL calculation - if (p > 0 .or. n > 0) then - ! 2D/3D cases - icfl_dt = cfl_target*f_compute_multidim_cfl_terms(vel, c, j, k, l) + if (acoustic_sub) then + ! Advective-only wave speed: drop the sound speed c. In multi-D the limit is the per-dimension min + ! dx_i/|u_i| (NOT dx/sum(|vel|)). + if (p > 0 .or. n > 0) then + ! 2D/3D: per-dimension advective CFL (no sound speed) + icfl_dt = cfl_target*f_compute_multidim_advective_cfl_terms(vel, j, k, l) + else + ! 1D case + adv_speed = sum(abs(vel(1:num_vels))) + icfl_dt = cfl_target*(dx(j)/max(adv_speed, sgm_eps)) + end if else - ! 1D case - icfl_dt = cfl_target*(dx(j)/(abs(vel(1)) + c)) + if (p > 0 .or. n > 0) then + ! 2D/3D cases + icfl_dt = cfl_target*f_compute_multidim_cfl_terms(vel, c, j, k, l) + else + ! 1D case + icfl_dt = cfl_target*(dx(j)/(abs(vel(1)) + c)) + end if end if ! Viscous calculations diff --git a/src/simulation/m_start_up.fpp b/src/simulation/m_start_up.fpp index 6bb59e7a64..81a7bb613a 100644 --- a/src/simulation/m_start_up.fpp +++ b/src/simulation/m_start_up.fpp @@ -24,6 +24,7 @@ module m_start_up use m_chemistry use m_data_output use m_time_steppers + use m_acoustic_substep use m_qbmm use m_derived_variables use m_hypoelastic @@ -621,7 +622,9 @@ contains end if ! Total-variation-diminishing (TVD) Runge-Kutta (RK) time-steppers - if (any(time_stepper == (/time_stepper_rk1, time_stepper_rk2, time_stepper_rk3/))) then + if (acoustic_substepping) then + call s_split_explicit_rk(t_step, time_avg) + else if (any(time_stepper == (/time_stepper_rk1, time_stepper_rk2, time_stepper_rk3/))) then call s_tvd_rk(t_step, time_avg, time_stepper) end if @@ -840,6 +843,7 @@ contains call s_initialize_data_output_module() call s_initialize_derived_variables_module() call s_initialize_time_steppers_module() + if (acoustic_substepping) call s_initialize_acoustic_substep_module() call s_initialize_boundary_common_module() @@ -1071,6 +1075,7 @@ contains impure subroutine s_finalize_modules call s_finalize_time_steppers_module() + if (acoustic_substepping) call s_finalize_acoustic_substep_module() if (hypoelasticity) call s_finalize_hypoelastic_module() if (hyperelasticity) call s_finalize_hyperelastic_module() call s_finalize_derived_variables_module() diff --git a/src/simulation/m_time_steppers.fpp b/src/simulation/m_time_steppers.fpp index 53b6db6740..050209c5c1 100644 --- a/src/simulation/m_time_steppers.fpp +++ b/src/simulation/m_time_steppers.fpp @@ -27,6 +27,7 @@ module m_time_steppers use m_body_forces use m_derived_variables use m_constants, only: model_eqns_6eq, time_stepper_rk1, time_stepper_rk2, time_stepper_rk3 + use m_acoustic_substep implicit none @@ -40,12 +41,16 @@ module m_time_steppers type(scalar_field) :: q_T_sf !< Cell-average temperature variables at the current time-stage real(wp), allocatable, dimension(:,:,:,:,:) :: rhs_mv real(wp), allocatable, dimension(:,:,:) :: max_dt - integer, private :: num_ts !< Number of time stages in the time-stepping scheme - integer :: stor !< storage index - real(wp), allocatable, dimension(:,:) :: rk_coef - integer, private :: num_probe_ts + !> Per-cell acoustic CFL dt limit min_i dx_i/(|u_i|+c) (acoustic substepping) + real(wp), allocatable, dimension(:,:,:) :: acou_dt_sf + integer, private :: num_ts !< Number of time stages in the time-stepping scheme + integer :: stor !< storage index + integer :: n_substeps !< Acoustic substep count for split-explicit low-Mach mode + real(wp), allocatable, dimension(:,:) :: rk_coef + integer, private :: num_probe_ts - $:GPU_DECLARE(create='[q_cons_ts, q_prim_vf, q_T_sf, rhs_vf, q_prim_ts1, q_prim_ts2, rhs_mv, rhs_pb, max_dt, rk_coef, stor, bc_type]') + $:GPU_DECLARE(create='[q_cons_ts, q_prim_vf, q_T_sf, rhs_vf, q_prim_ts1, q_prim_ts2, rhs_mv, rhs_pb, max_dt, acou_dt_sf, & + & rk_coef, stor, bc_type]') !> @cond #if defined(__NVCOMPILER_GPU_UNIFIED_MEM) @@ -74,6 +79,10 @@ contains integer :: i, j !< Generic loop iterators ! Setting number of time-stages for selected time-stepping scheme + ! Defensive default: the acoustic substep count is computed in s_compute_dt + ! (only reached under CFL-based dt, which the checker enforces for split mode). + n_substeps = 0 + if (time_stepper == time_stepper_rk1) then num_ts = 1 else if (any(time_stepper == (/time_stepper_rk2, time_stepper_rk3/))) then @@ -397,6 +406,10 @@ contains if (cfl_dt) then @:ALLOCATE(max_dt(0:m, 0:n, 0:p)) + ! acou_dt_sf is always allocated under cfl_dt; it is written directly in s_compute_dt's GPU loop + ! (only when acoustic_substepping) and reduced afterwards, rather than being passed into the + ! s_compute_dt_from_cfl device routine. + @:ALLOCATE(acou_dt_sf(0:m, 0:n, 0:p)) end if ! Allocating arrays to store the bc types @@ -589,6 +602,118 @@ contains end subroutine s_tvd_rk + !> Advance the solution one full step with the split-explicit low-Mach RK3 integrator. + !! + !! A 3-stage Wicker--Skamarock / Nazari--Nair RK3: the slow (advective) forcing is + !! recomputed once per stage from the latest state, then the conserved field is + !! advanced by the cheap forward-backward acoustic subcycle (s_acoustic_substep) + !! rather than by a linear rk_coef combination. Each stage RESTARTS the subcycle + !! from the saved state U^n and integrates to t + dt/3, t + dt/2, and t + dt + !! respectively, with the stage's slow forcing held frozen across its microsteps. + !! + !! The microstep size dtau = dt/n_substeps is constant; the three stages take + !! ns/3, ns/2, ns microsteps. n_substeps is even (set in s_compute_dt) so ns/2 is + !! exact; ns/3 is rounded to the nearest integer (floored at 1). The resulting + !! ns/3*dtau is the closest achievable approximation of the dt/3 stage time and is + !! the standard Nazari--Nair treatment. + impure subroutine s_split_explicit_rk(t_step, time_avg) + +#ifdef _CRAYFTN + ! DIR$ OPTIMIZE (-haggress) +#endif + integer, intent(in) :: t_step + real(wp), intent(inout) :: time_avg + integer :: i, j, k, l, s !< Generic loop iterators + real(wp) :: start, finish + real(wp) :: dtau !< Constant acoustic microstep size + integer :: n_micro !< Microsteps taken in the current stage + + call cpu_time(start) + call nvtxStartRange("TIMESTEP") + + ! n_substeps may be 0 for cfl_const_dt restarts where s_compute_dt was not called at startup. + if (n_substeps <= 0) call s_compute_dt() + + ! Constant microstep size; even n_substeps guaranteed by s_compute_dt. + dtau = dt/real(n_substeps, wp) + + do s = 1, 3 + ! Slow (advective) forcing at the current stage state. In split mode the + ! HLLC solver zeros the mass/energy face fluxes, so rhs_vf holds only the + ! slow divergence (momentum advection + volume fraction + viscous/sources). + call s_compute_rhs(q_cons_ts(1)%vf, q_T_sf, q_prim_vf, bc_type, rhs_vf, pb_ts(1)%sf, rhs_pb, mv_ts(1)%sf, rhs_mv, & + & t_step, time_avg, s) + + if (s == 1) then + if (run_time_info) then + call s_write_run_time_information(q_prim_vf, t_step) + end if + + if (probe_wrt) then + call s_time_step_cycling(t_step) + call s_compute_derived_variables(t_step, q_cons_ts(1)%vf, q_prim_ts1, q_prim_ts2) + end if + + if (cfl_dt) then + if (mytime >= t_stop) return + else + if (t_step == t_step_stop) return + end if + + ! Save U^n into the storage level so every stage can restart from it. + $:GPU_PARALLEL_LOOP(collapse=4) + do i = 1, sys_size + do l = 0, p + do k = 0, n + do j = 0, m + q_cons_ts(stor)%vf(i)%sf(j, k, l) = q_cons_ts(1)%vf(i)%sf(j, k, l) + end do + end do + end do + end do + $:END_GPU_PARALLEL_LOOP() + else + ! Restart this stage's subcycle from the saved U^n. + $:GPU_PARALLEL_LOOP(collapse=4) + do i = 1, sys_size + do l = 0, p + do k = 0, n + do j = 0, m + q_cons_ts(1)%vf(i)%sf(j, k, l) = q_cons_ts(stor)%vf(i)%sf(j, k, l) + end do + end do + end do + end do + $:END_GPU_PARALLEL_LOOP() + end if + + ! Microstep count for this stage: ns/3 (stage 1), ns/2 (stage 2), ns (stage 3). + if (s == 1) then + n_micro = max(1, nint(real(n_substeps, wp)/3._wp)) + else if (s == 2) then + n_micro = n_substeps/2 + else + n_micro = n_substeps + end if + + ! Advance {alpha_k*rho_k, rho*E, rho*u} by the acoustic subcycle with the + ! frozen slow forcing, integrating from U^n to the stage end time. + call s_acoustic_substep(q_cons_ts(1)%vf, rhs_vf, bc_type, dtau, n_micro) + end do + + call nvtxEndRange + call cpu_time(finish) + + wall_time = abs(finish - start) + + if (t_step - t_step_start >= 2) then + wall_time_avg = (wall_time + (t_step - t_step_start - 2)*wall_time_avg)/(t_step - t_step_start - 1) + else + wall_time_avg = 0._wp + end if + + end subroutine s_split_explicit_rk + !> Bubble source part in Strang operator splitting scheme impure subroutine s_adaptive_dt_bubble(stage) @@ -628,22 +753,31 @@ contains real(wp), dimension(num_vels) :: vel !< Cell-avg. velocity real(wp), dimension(num_fluids) :: alpha !< Cell-avg. volume fraction #:endif - real(wp) :: vel_sum !< Cell-avg. velocity sum - real(wp) :: pres !< Cell-avg. pressure - real(wp) :: gamma !< Cell-avg. sp. heat ratio - real(wp) :: pi_inf !< Cell-avg. liquid stiffness function - real(wp) :: qv !< Cell-avg. fluid reference energy - real(wp) :: c !< Cell-avg. sound speed - real(wp) :: H !< Cell-avg. enthalpy - real(wp), dimension(2) :: Re !< Cell-avg. Reynolds numbers + real(wp) :: vel_sum !< Cell-avg. velocity sum + real(wp) :: pres !< Cell-avg. pressure + real(wp) :: gamma !< Cell-avg. sp. heat ratio + real(wp) :: pi_inf !< Cell-avg. liquid stiffness function + real(wp) :: qv !< Cell-avg. fluid reference energy + real(wp) :: c !< Cell-avg. sound speed + real(wp) :: H !< Cell-avg. enthalpy + real(wp), dimension(2) :: Re !< Cell-avg. Reynolds numbers real(wp) :: dt_local - integer :: j, k, l !< Generic loop iterators - integer :: fl !< Fluid loop iterator + real(wp) :: acou_dt_local !< Local min acoustic CFL dt limit (acoustic substepping) + real(wp) :: acou_dt_min !< Global min acoustic CFL dt limit (acoustic substepping) + logical :: acou_sub !< Firstprivate copy of acoustic_substepping for the device loop + integer :: j, k, l !< Generic loop iterators + integer :: fl !< Fluid loop iterator if (.not. igr) then call s_convert_conservative_to_primitive_variables(q_cons_ts(1)%vf, q_T_sf, q_prim_vf, idwint) end if + ! Capture acoustic_substepping into a firstprivate local. The module logical is deliberately NOT in + ! `acc declare create` (see s_compute_dt_from_cfl: avoids nvfortran W-1054 -> nvlink undefined ref), so + ! referencing it directly inside the device loop segfaults nvhpc OMP-offload codegen (fort2). A loop-local + ! scalar is firstprivate-captured at region entry and is device-safe under both OpenACC and OpenMP. + acou_sub = acoustic_substepping + $:GPU_PARALLEL_LOOP(collapse=3, private='[vel, alpha, Re, rho, vel_sum, pres, gamma, pi_inf, c, H, qv, fl]') do l = 0, p do k = 0, n @@ -669,7 +803,21 @@ contains Re(1) = 1._wp/max(Re(1), sgm_eps) end if - call s_compute_dt_from_cfl(vel, c, max_dt, rho, Re, j, k, l) + call s_compute_dt_from_cfl(vel, c, max_dt, rho, Re, j, k, l, acou_sub) + + if (acou_sub) then + ! Per-cell acoustic CFL dt limit min_i dx_i/(|u_i|+c), the SAME quantity that sets dt in the + ! .not. acoustic_substepping path. Computed inline (not inside s_compute_dt_from_cfl) so + ! acou_dt_sf stays out of that device routine's signature, keeping the per-step macro-step + ! limit (max_dt) the only 3-D array it touches. Reduced with a GLOBAL MIN below (not a + ! per-cell ratio with adv_dt, which would blow up at near-stagnation cells); the separately + ! reduced advective/acoustic minima give the correct field-wide microstep count. + if (p > 0 .or. n > 0) then + acou_dt_sf(j, k, l) = f_compute_multidim_cfl_terms(vel, c, j, k, l) + else + acou_dt_sf(j, k, l) = dx(j)/(abs(vel(1)) + c) + end if + end if end do end do end do @@ -687,6 +835,36 @@ contains $:GPU_UPDATE(device='[dt]') + ! Compute acoustic substep count when in split-explicit low-Mach mode. + ! Always auto-recompute from the global max acoustic-to-advective ratio so dtau = dt/n_substeps + ! satisfies the acoustic microstep CFL even when dt changes each step (cfl_adap_dt=T). A user-set + ! n_acoustic_substeps>0 is treated only as a minimum floor, never as a fixed count (a fixed count + ! becomes self-inconsistent when dt grows, eventually violating the acoustic CFL -> NaN). + if (acoustic_substepping) then + ! Global MIN of the per-cell acoustic CFL dt limit min_i dx_i/(|u_i|+c). dt (already reduced above) is + ! cfl_target*adv_dt_min. The number of acoustic microsteps that fit in one advective step is + ! dt/(cfl_target*acou_dt_min) = adv_dt_min/acou_dt_min, using the SEPARATELY reduced minima of the + ! advective and acoustic dt limits. With dtau = dt/n_substeps this guarantees the field-wide acoustic + ! microstep CFL (|u_i|+c)*dtau/dx_i <= cfl_target (~0.5) at every cell. A per-cell ratio max would + ! instead blow up at near-stagnation cells (huge adv_dt that does not limit dt). + #:call GPU_PARALLEL(copyout='[acou_dt_local]', copyin='[acou_dt_sf]') + acou_dt_local = minval(acou_dt_sf) + #:endcall GPU_PARALLEL + if (num_procs == 1) then + acou_dt_min = acou_dt_local + else + call s_mpi_allreduce_min(acou_dt_local, acou_dt_min) + end if + n_substeps = ceiling(dt/(cfl_target*max(acou_dt_min, sgm_eps))) + ! Guard against near-quiescent flow: acou_dt_min -> 0 makes ratio -> c/sgm_eps -> huge ceiling. + @:PROHIBIT(n_substeps > 10000, & + & "acoustic_substepping: computed n_substeps exceeds 10000 (near-quiescent flow); set n_acoustic_substeps explicitly in your case") + ! Apply user-specified minimum floor (0 = pure auto). + n_substeps = max(n_substeps, n_acoustic_substeps) + ! Round up to nearest even number (required for RK3 substep nesting). + n_substeps = n_substeps + mod(n_substeps, 2) + end if + end subroutine s_compute_dt !> Apply the body forces source term at each Runge-Kutta stage @@ -990,6 +1168,7 @@ contains @:DEALLOCATE(mv_ts) if (cfl_dt) then @:DEALLOCATE(max_dt) + @:DEALLOCATE(acou_dt_sf) end if do i = 1, num_dims @:DEALLOCATE(bc_type(i,1)%sf) diff --git a/tests/7F8ED027/golden-metadata.txt b/tests/7F8ED027/golden-metadata.txt new file mode 100644 index 0000000000..e33b1a0cdf --- /dev/null +++ b/tests/7F8ED027/golden-metadata.txt @@ -0,0 +1,193 @@ +This file was created on 2026-06-25 18:59:08.254224. + +mfc.sh: + + Invocation: test --generate --only 7F8ED027 --no-gpu -j 8 + Lock: mpi=Yes & gpu=No & debug=No & reldebug=No & gcov=No & unified=No & single=No & mixed=No & fastmath=No + Git: 729792aa452e751dc961fb73757984051d6b677e on lomach-upstream (dirty) + +pre_process: + + CMake Configuration: + + CMake v3.26.5 on atl1-1-03-019-21-0.pace.gatech.edu + + C : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc) + Fortran : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran) + + PRE_PROCESS : ON + SIMULATION : OFF + POST_PROCESS : OFF + SYSCHECK : OFF + DOCUMENTATION : OFF + ALL : OFF + + MPI : ON + OpenACC : OFF + OpenMP : OFF + + Fypp : /storage/home/hcoda1/6/sbryngelson3/r-sbryngelson3-0/MFC-lomach/build/venv/bin/fypp + Doxygen : + + Build Type : Release + + Configuration Environment: + + CC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc + CXX : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/g++ + FC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran + OMPI_CC : + OMPI_CXX : + OMPI_FC : + +simulation: + + CMake Configuration: + + CMake v3.26.5 on atl1-1-03-019-21-0.pace.gatech.edu + + C : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc) + Fortran : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran) + + PRE_PROCESS : OFF + SIMULATION : ON + POST_PROCESS : OFF + SYSCHECK : OFF + DOCUMENTATION : OFF + ALL : OFF + + MPI : ON + OpenACC : OFF + OpenMP : OFF + + Fypp : /storage/home/hcoda1/6/sbryngelson3/r-sbryngelson3-0/MFC-lomach/build/venv/bin/fypp + Doxygen : + + Build Type : Release + + Configuration Environment: + + CC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc + CXX : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/g++ + FC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran + OMPI_CC : + OMPI_CXX : + OMPI_FC : + +post_process: + + CMake Configuration: + + CMake v3.26.5 on atl1-1-03-019-21-0.pace.gatech.edu + + C : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc) + Fortran : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran) + + PRE_PROCESS : OFF + SIMULATION : OFF + POST_PROCESS : ON + SYSCHECK : OFF + DOCUMENTATION : OFF + ALL : OFF + + MPI : ON + OpenACC : OFF + OpenMP : OFF + + Fypp : /storage/home/hcoda1/6/sbryngelson3/r-sbryngelson3-0/MFC-lomach/build/venv/bin/fypp + Doxygen : + + Build Type : Release + + Configuration Environment: + + CC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc + CXX : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/g++ + FC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran + OMPI_CC : + OMPI_CXX : + OMPI_FC : + +syscheck: + + CMake Configuration: + + CMake v3.26.5 on atl1-1-03-019-21-0.pace.gatech.edu + + C : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc) + Fortran : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran) + + PRE_PROCESS : OFF + SIMULATION : OFF + POST_PROCESS : OFF + SYSCHECK : ON + DOCUMENTATION : OFF + ALL : OFF + + MPI : ON + OpenACC : OFF + OpenMP : OFF + + Fypp : /storage/home/hcoda1/6/sbryngelson3/r-sbryngelson3-0/MFC-lomach/build/venv/bin/fypp + Doxygen : + + Build Type : Release + + Configuration Environment: + + CC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc + CXX : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/g++ + FC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran + OMPI_CC : + OMPI_CXX : + OMPI_FC : + +CPU: + + CPU Info: + From lscpu + Architecture: x86_64 + CPU op-mode(s): 32-bit, 64-bit + Address sizes: 46 bits physical, 48 bits virtual + Byte Order: Little Endian + CPU(s): 24 + On-line CPU(s) list: 0-23 + Vendor ID: GenuineIntel + Model name: Intel(R) Xeon(R) Gold 6226 CPU @ 2.70GHz + CPU family: 6 + Model: 85 + Thread(s) per core: 1 + Core(s) per socket: 12 + Socket(s): 2 + Stepping: 7 + CPU(s) scaling MHz: 88% + CPU max MHz: 2700.0000 + CPU min MHz: 1200.0000 + BogoMIPS: 5400.00 + Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req vnmi pku ospke avx512_vnni md_clear flush_l1d arch_capabilities + Virtualization: VT-x + L1d cache: 768 KiB (24 instances) + L1i cache: 768 KiB (24 instances) + L2 cache: 24 MiB (24 instances) + L3 cache: 38.5 MiB (2 instances) + NUMA node(s): 2 + NUMA node0 CPU(s): 0-11 + NUMA node1 CPU(s): 12-23 + Vulnerability Gather data sampling: Vulnerable + Vulnerability Indirect target selection: Vulnerable + Vulnerability Itlb multihit: KVM: Vulnerable + Vulnerability L1tf: Not affected + Vulnerability Mds: Not affected + Vulnerability Meltdown: Not affected + Vulnerability Mmio stale data: Vulnerable + Vulnerability Reg file data sampling: Not affected + Vulnerability Retbleed: Vulnerable + Vulnerability Spec rstack overflow: Not affected + Vulnerability Spec store bypass: Vulnerable + Vulnerability Spectre v1: Vulnerable: __user pointer sanitization and usercopy barriers only; no swapgs barriers + Vulnerability Spectre v2: Vulnerable; IBPB: disabled; STIBP: disabled; PBRSB-eIBRS: Vulnerable; BHI: Vulnerable + Vulnerability Srbds: Not affected + Vulnerability Tsa: Not affected + Vulnerability Tsx async abort: Mitigation; TSX disabled + Vulnerability Vmscape: Vulnerable + diff --git a/tests/7F8ED027/golden.txt b/tests/7F8ED027/golden.txt new file mode 100644 index 0000000000..8941975883 --- /dev/null +++ b/tests/7F8ED027/golden.txt @@ -0,0 +1,16 @@ +D/cons.1.00.000000.dat 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 +D/cons.1.00.000001.dat 1.00025352588726 1.000272073329 1.00024559126675 1.00020158173104 1.00013403242509 1.00009380712464 1.00006048047749 1.00004940830783 1.00003649577828 1.00003577319224 1.00002891470033 1.000028475539 1.00001625479535 1.00001507821355 1.00006503142348 0.99989244047201 0.99946279471945 0.99930053744915 0.99951517086928 0.99979152062848 0.99996352829766 1.00000356315375 0.99999333442076 0.9999754020963 0.99998462012845 1.00000355883698 1.00003122911194 1.00003807576946 1.00006286156686 1.00009119713419 1.00014613413154 1.00020750702239 +D/cons.2.00.000000.dat 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 +D/cons.2.00.000001.dat 0.11825278974798 0.11834607883621 0.11841721256883 0.11847508132481 0.11849280801948 0.11847842362781 0.11845601484893 0.11842097951812 0.11840349133063 0.11838124336457 0.11834695178756 0.11832159281527 0.11830534710329 0.1183054181231 0.11832446787259 0.11832382304584 0.11827775475956 0.11826083495571 0.11827253588128 0.11830238564316 0.11831086557684 0.11830532495639 0.11829346528119 0.1182987320659 0.11831519286232 0.11833211737079 0.11831001085079 0.1182632325873 0.11819763974541 0.11815994888209 0.11814585555777 0.11819344027223 +D/cons.3.00.000000.dat 2.507 2.507 2.507 2.507 2.507 2.507 2.507 2.507 2.50700000000072 2.50700000016998 2.50700001845611 2.50700091749334 2.50702088205027 2.50721759594531 2.5080380921482 2.50926740165901 2.50926740165901 2.5080380921482 2.50721759594531 2.50702088205027 2.50700091749334 2.50700001845611 2.50700000016998 2.50700000000072 2.507 2.507 2.507 2.507 2.507 2.507 2.507 2.507 +D/cons.3.00.000001.dat 2.5078806496346 2.50795291442412 2.5078649822655 2.50771824278682 2.50748226030067 2.50734379558981 2.50722467608068 2.50718487917608 2.50713644338341 2.50713029643689 2.50710134774599 2.50709579429993 2.50708513776384 2.50703711557378 2.50694973310115 2.50689056424614 2.5069168315034 2.50695037091463 2.50701272968982 2.50707898640278 2.50714616654312 2.50708325947841 2.50698619555327 2.50691510367652 2.50694830353869 2.50701610807129 2.5071087157426 2.50712814033454 2.50720579626767 2.50730438536201 2.50749493880853 2.5077149511492 +D/cons.4.00.000000.dat 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 +D/cons.4.00.000001.dat 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 +D/prim.1.00.000000.dat 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 +D/prim.1.00.000001.dat 1.00025352588726 1.000272073329 1.00024559126675 1.00020158173104 1.00013403242509 1.00009380712464 1.00006048047749 1.00004940830783 1.00003649577828 1.00003577319224 1.00002891470033 1.000028475539 1.00001625479535 1.00001507821355 1.00006503142348 0.99989244047201 0.99946279471945 0.99930053744915 0.99951517086928 0.99979152062848 0.99996352829766 1.00000356315375 0.99999333442076 0.9999754020963 0.99998462012845 1.00000355883698 1.00003122911194 1.00003807576946 1.00006286156686 1.00009119713419 1.00014613413154 1.00020750702239 +D/prim.2.00.000000.dat 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 +D/prim.2.00.000001.dat 0.11822281720336 0.11831388878262 0.11838813747617 0.11845120372612 0.11847692826947 0.11846731055004 0.11844885100587 0.11841512882698 0.11839917026076 0.11837700864108 0.11834352991986 0.11831822364008 0.11830342410535 0.11830363431564 0.11831677356438 0.11833655126944 0.11834132834606 0.11834361188035 0.11832990566658 0.1183270543931 0.1183151807329 0.11830490341783 0.11829425378091 0.1183016420383 0.11831701256277 0.11833169624758 0.1183063162496 0.11825872979516 0.11819021012362 0.11814917401601 0.11812859293843 0.11816891939163 +D/prim.3.00.000000.dat 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.00000000000029 1.00000000006799 1.00000000738244 1.00000036699734 1.00000835282011 1.00008703837812 1.00041523685928 1.00090696066361 1.00090696066361 1.00041523685928 1.00008703837812 1.00000835282011 1.00000036699734 1.00000000738244 1.00000000006799 1.00000000000029 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 +D/prim.3.00.000001.dat 1.00035622426461 1.00038076880779 1.00034215425797 1.00028059391583 1.00018517133703 1.00013035419484 1.00008367466155 1.00006938456134 1.00005080232746 1.00004939508101 1.00003941989244 1.00003839758394 1.00003486957508 1.00001565404487 0.99997993938598 0.99995581906801 0.99996730327895 0.99998106549532 1.00000605627317 1.00003191999694 1.00005887232857 1.00003408378281 0.99999579078079 0.99996705461972 0.99997958138342 1.00000595519471 1.0000441219852 1.00005412420037 1.00008835773154 1.00012965407236 1.0002066947877 1.00029262223645 +D/prim.4.00.000000.dat 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 +D/prim.4.00.000001.dat 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 \ No newline at end of file diff --git a/tests/861E20EC/golden-metadata.txt b/tests/861E20EC/golden-metadata.txt new file mode 100644 index 0000000000..f2c393e7f5 --- /dev/null +++ b/tests/861E20EC/golden-metadata.txt @@ -0,0 +1,193 @@ +This file was created on 2026-06-26 11:07:00.042170. + +mfc.sh: + + Invocation: test --generate --only 861E20EC -j 8 + Lock: mpi=Yes & gpu=No & debug=No & reldebug=No & gcov=No & unified=No & single=No & mixed=No & fastmath=No + Git: 4ed1f04add7fc0f82c70d38aab2e04397f113e8a on lomach-upstream (dirty) + +post_process: + + CMake Configuration: + + CMake v3.26.5 on atl1-1-03-019-21-0.pace.gatech.edu + + C : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc) + Fortran : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran) + + PRE_PROCESS : OFF + SIMULATION : OFF + POST_PROCESS : ON + SYSCHECK : OFF + DOCUMENTATION : OFF + ALL : OFF + + MPI : ON + OpenACC : OFF + OpenMP : OFF + + Fypp : /storage/home/hcoda1/6/sbryngelson3/r-sbryngelson3-0/MFC-lomach/build/venv/bin/fypp + Doxygen : + + Build Type : Release + + Configuration Environment: + + CC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc + CXX : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/g++ + FC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran + OMPI_CC : + OMPI_CXX : + OMPI_FC : + +syscheck: + + CMake Configuration: + + CMake v3.26.5 on atl1-1-03-019-21-0.pace.gatech.edu + + C : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc) + Fortran : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran) + + PRE_PROCESS : OFF + SIMULATION : OFF + POST_PROCESS : OFF + SYSCHECK : ON + DOCUMENTATION : OFF + ALL : OFF + + MPI : ON + OpenACC : OFF + OpenMP : OFF + + Fypp : /storage/home/hcoda1/6/sbryngelson3/r-sbryngelson3-0/MFC-lomach/build/venv/bin/fypp + Doxygen : + + Build Type : Release + + Configuration Environment: + + CC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc + CXX : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/g++ + FC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran + OMPI_CC : + OMPI_CXX : + OMPI_FC : + +simulation: + + CMake Configuration: + + CMake v3.26.5 on atl1-1-01-007-2-0.pace.gatech.edu + + C : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc) + Fortran : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran) + + PRE_PROCESS : OFF + SIMULATION : ON + POST_PROCESS : OFF + SYSCHECK : OFF + DOCUMENTATION : OFF + ALL : OFF + + MPI : ON + OpenACC : OFF + OpenMP : OFF + + Fypp : /storage/home/hcoda1/6/sbryngelson3/r-sbryngelson3-0/MFC-lomach/build/venv/bin/fypp + Doxygen : + + Build Type : Release + + Configuration Environment: + + CC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc + CXX : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/g++ + FC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran + OMPI_CC : + OMPI_CXX : + OMPI_FC : + +pre_process: + + CMake Configuration: + + CMake v3.26.5 on atl1-1-01-007-2-0.pace.gatech.edu + + C : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc) + Fortran : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran) + + PRE_PROCESS : ON + SIMULATION : OFF + POST_PROCESS : OFF + SYSCHECK : OFF + DOCUMENTATION : OFF + ALL : OFF + + MPI : ON + OpenACC : OFF + OpenMP : OFF + + Fypp : /storage/home/hcoda1/6/sbryngelson3/r-sbryngelson3-0/MFC-lomach/build/venv/bin/fypp + Doxygen : + + Build Type : Release + + Configuration Environment: + + CC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc + CXX : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/g++ + FC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran + OMPI_CC : + OMPI_CXX : + OMPI_FC : + +CPU: + + CPU Info: + From lscpu + Architecture: x86_64 + CPU op-mode(s): 32-bit, 64-bit + Address sizes: 46 bits physical, 48 bits virtual + Byte Order: Little Endian + CPU(s): 24 + On-line CPU(s) list: 0-23 + Vendor ID: GenuineIntel + Model name: Intel(R) Xeon(R) Gold 6226 CPU @ 2.70GHz + CPU family: 6 + Model: 85 + Thread(s) per core: 1 + Core(s) per socket: 12 + Socket(s): 2 + Stepping: 7 + CPU(s) scaling MHz: 91% + CPU max MHz: 2700.0000 + CPU min MHz: 1200.0000 + BogoMIPS: 5400.00 + Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req vnmi pku ospke avx512_vnni md_clear flush_l1d arch_capabilities + Virtualization: VT-x + L1d cache: 768 KiB (24 instances) + L1i cache: 768 KiB (24 instances) + L2 cache: 24 MiB (24 instances) + L3 cache: 38.5 MiB (2 instances) + NUMA node(s): 2 + NUMA node0 CPU(s): 0-11 + NUMA node1 CPU(s): 12-23 + Vulnerability Gather data sampling: Vulnerable + Vulnerability Indirect target selection: Vulnerable + Vulnerability Itlb multihit: KVM: Vulnerable + Vulnerability L1tf: Not affected + Vulnerability Mds: Not affected + Vulnerability Meltdown: Not affected + Vulnerability Mmio stale data: Vulnerable + Vulnerability Reg file data sampling: Not affected + Vulnerability Retbleed: Vulnerable + Vulnerability Spec rstack overflow: Not affected + Vulnerability Spec store bypass: Vulnerable + Vulnerability Spectre v1: Vulnerable: __user pointer sanitization and usercopy barriers only; no swapgs barriers + Vulnerability Spectre v2: Vulnerable; IBPB: disabled; STIBP: disabled; PBRSB-eIBRS: Vulnerable; BHI: Vulnerable + Vulnerability Srbds: Not affected + Vulnerability Tsa: Not affected + Vulnerability Tsx async abort: Mitigation; TSX disabled + Vulnerability Vmscape: Vulnerable + diff --git a/tests/861E20EC/golden.txt b/tests/861E20EC/golden.txt new file mode 100644 index 0000000000..57d6777fd6 --- /dev/null +++ b/tests/861E20EC/golden.txt @@ -0,0 +1,16 @@ +D/cons.1.00.000000.dat 0.125 0.125 0.125 0.125 0.125 0.125 0.125 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 +D/cons.1.00.000001.dat 0.12500392893481 0.12500618986154 0.12527387373035 0.12724702321133 0.13517121929573 0.18171653521032 0.28832493236887 0.64895696317797 0.786313450325 0.9472214057241 0.97621868221362 0.995726090465 0.99859791311003 0.99741128400148 0.99089058248206 0.93535930752994 0.83920486026102 0.46224794229459 0.34794785094477 0.18652412704352 0.14826245558161 0.12996756530127 0.12632026305352 0.12506367250289 0.12501867677867 0.12500246806066 0.12500043585369 0.12500005984149 0.12500000654233 0.1250000009233 0.12500000006342 0.12500000000849 0.12500000000038 0.12500000000004 0.12500000000001 0.125 0.125 0.125 0.125 0.125 0.125 0.12499999999999 0.12500000000004 0.12499999999835 0.12500000000119 0.1249999999011 0.12500000056421 0.12500000002246 0.12500006795721 0.12500016485768 +D/cons.2.00.000000.dat 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 +D/cons.2.00.000001.dat 0.05915033017878 0.05901217156008 0.05903596115279 0.05658041376487 0.04091504490173 0.01540345950441 -0.02873150245723 -0.01780770874913 0.20861730885608 0.33197629316894 0.43894587050997 0.46387066245045 0.47332461254045 0.47365350138707 0.49027173241997 0.504674994168 0.57549452773654 0.4740752990379 0.36905577589702 0.22563000898626 0.09823207550058 0.06918665005559 0.06062848928304 0.0598100064866 0.05924613070764 0.05918576465135 0.05916408842953 0.05916139338712 0.05916087822627 0.05916080661832 0.05916079904961 0.05916079791262 0.05916079784192 0.05916079783165 0.05916079783105 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.05916079783101 0.05916079783094 0.05916079783332 0.05916079782832 0.05916079795957 0.05916079709175 0.05916079721708 0.05916070977671 0.05916049260142 0.05915593376661 +D/cons.3.00.000000.dat 0.264 0.264 0.264 0.264 0.264 0.264 0.264 2.612 2.612 2.612 2.612 2.612 2.612 2.612 2.612 2.612 2.612 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 0.264 +D/cons.3.00.000001.dat 0.26401123124413 0.26401469296808 0.26467927102175 0.26975427376026 0.29351532666158 0.43155935984184 0.67588387709445 1.54318918715707 1.84263813813134 2.40890772906208 2.52235243106037 2.59541246526576 2.60657918484585 2.60387168411741 2.58468209336463 2.43124344646868 2.25356658188693 1.2859935281047 1.00626476805888 0.51529236317411 0.3400926418759 0.28001532630497 0.26820907214868 0.26420758793087 0.26405448930472 0.26400717602631 0.26400125725331 0.2640001713336 0.26400001879989 0.26400000262799 0.26400000018213 0.26400000002412 0.26400000000108 0.2640000000001 0.26400000000002 0.264 0.264 0.264 0.264 0.264 0.264 0.26399999999997 0.26400000000011 0.26399999999533 0.264000000004 0.26399999972011 0.26400000163727 0.26399999975545 0.2640001944706 0.2640004273136 +D/cons.4.00.000000.dat 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 +D/cons.4.00.000001.dat 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 +D/prim.1.00.000000.dat 0.125 0.125 0.125 0.125 0.125 0.125 0.125 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 +D/prim.1.00.000001.dat 0.12500392893481 0.12500618986154 0.12527387373035 0.12724702321133 0.13517121929573 0.18171653521032 0.28832493236887 0.64895696317797 0.786313450325 0.9472214057241 0.97621868221362 0.995726090465 0.99859791311003 0.99741128400148 0.99089058248206 0.93535930752994 0.83920486026102 0.46224794229459 0.34794785094477 0.18652412704352 0.14826245558161 0.12996756530127 0.12632026305352 0.12506367250289 0.12501867677867 0.12500246806066 0.12500043585369 0.12500005984149 0.12500000654233 0.1250000009233 0.12500000006342 0.12500000000849 0.12500000000038 0.12500000000004 0.12500000000001 0.125 0.125 0.125 0.125 0.125 0.125 0.12499999999999 0.12500000000004 0.12499999999835 0.12500000000119 0.1249999999011 0.12500000056421 0.12500000002246 0.12500006795721 0.12500016485768 +D/prim.2.00.000000.dat 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 +D/prim.2.00.000001.dat 0.47318776843903 0.47207399589923 0.47125517392294 0.44465019563483 0.30269050700956 0.08476641647709 -0.09964973275524 -0.02744050801448 0.26531061979145 0.35047380809048 0.44963887549728 0.46586171326878 0.47398918656493 0.47488283818771 0.49477887981527 0.53955200969853 0.68576167153934 1.02558660766471 1.06066404748569 1.20965589043401 0.66255529840802 0.53233781747942 0.47995854202231 0.47823644779998 0.47389823852104 0.47347676865571 0.47331105708127 0.47329092051752 0.47328700103894 0.47328644945068 0.47328639215677 0.47328638326881 0.47328638273397 0.47328638265303 0.47328638264837 0.47328638264803 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264796 0.47328638264809 0.4732863826476 0.47328638266638 0.47328638263283 0.47328638367206 0.47328637710844 0.47328637560035 0.47328567812862 0.47328368350703 0.47324684598585 +D/prim.3.00.000000.dat 0.1 0.1 0.1 0.1 0.1 0.1 0.1 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 +D/prim.3.00.000001.dat 0.10000664994971 0.10003425486022 0.10030750798055 0.10287001109417 0.11492921152751 0.17236260472403 0.26978093352948 0.6171779443479 0.72598557775017 0.9402932924923 0.96946754690009 0.99494506979745 0.9977615243225 0.99656268983571 0.98535761763148 0.91803769711788 0.8224962148943 0.4171563556983 0.32421706862137 0.15153001138386 0.12302022033105 0.10463999646413 0.10146379659521 0.09996237016334 0.10000646832558 0.09999825349102 0.09999989945416 0.09999995846638 0.09999999259305 0.09999999942899 0.09999999984499 0.09999999999458 0.09999999999838 0.09999999999992 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.09999999999961 0.09999999999856 0.09999999997731 0.10000000002356 0.10000000079641 0.10000001657313 0.10000013861694 0.10000109911016 +D/prim.4.00.000000.dat 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 +D/prim.4.00.000001.dat 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 \ No newline at end of file diff --git a/tests/94E1DC86/golden-metadata.txt b/tests/94E1DC86/golden-metadata.txt new file mode 100644 index 0000000000..789bec23ad --- /dev/null +++ b/tests/94E1DC86/golden-metadata.txt @@ -0,0 +1,159 @@ +This file was created on 2026-06-26 21:04:07.764139. + +mfc.sh: + + Invocation: test --generate --only 94E1DC86 -j 8 --no-gpu + Lock: mpi=Yes & gpu=No & debug=Yes & reldebug=No & gcov=No & unified=No & single=No & mixed=No & fastmath=No + Git: dc2646e5ee478a8e5dccdfac72dc523cd25dc1d9 on lomach-upstream (dirty) + +syscheck: + + CMake Configuration: + + CMake v3.26.5 on atl1-1-01-003-36-0.pace.gatech.edu + + C : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc) + Fortran : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran) + + PRE_PROCESS : OFF + SIMULATION : OFF + POST_PROCESS : OFF + SYSCHECK : ON + DOCUMENTATION : OFF + ALL : OFF + + MPI : ON + OpenACC : OFF + OpenMP : OFF + + Fypp : /storage/home/hcoda1/6/sbryngelson3/r-sbryngelson3-0/MFC-lomach/build/venv/bin/fypp + Doxygen : + + Build Type : Debug + + Configuration Environment: + + CC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc + CXX : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/g++ + FC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran + OMPI_CC : + OMPI_CXX : + OMPI_FC : + +pre_process: + + CMake Configuration: + + CMake v3.26.5 on atl1-1-01-003-36-0.pace.gatech.edu + + C : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc) + Fortran : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran) + + PRE_PROCESS : ON + SIMULATION : OFF + POST_PROCESS : OFF + SYSCHECK : OFF + DOCUMENTATION : OFF + ALL : OFF + + MPI : ON + OpenACC : OFF + OpenMP : OFF + + Fypp : /storage/home/hcoda1/6/sbryngelson3/r-sbryngelson3-0/MFC-lomach/build/venv/bin/fypp + Doxygen : + + Build Type : Debug + + Configuration Environment: + + CC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc + CXX : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/g++ + FC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran + OMPI_CC : + OMPI_CXX : + OMPI_FC : + +simulation: + + CMake Configuration: + + CMake v3.26.5 on atl1-1-01-003-36-0.pace.gatech.edu + + C : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc) + Fortran : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran) + + PRE_PROCESS : OFF + SIMULATION : ON + POST_PROCESS : OFF + SYSCHECK : OFF + DOCUMENTATION : OFF + ALL : OFF + + MPI : ON + OpenACC : OFF + OpenMP : OFF + + Fypp : /storage/home/hcoda1/6/sbryngelson3/r-sbryngelson3-0/MFC-lomach/build/venv/bin/fypp + Doxygen : + + Build Type : Debug + + Configuration Environment: + + CC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc + CXX : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/g++ + FC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran + OMPI_CC : + OMPI_CXX : + OMPI_FC : + +CPU: + + CPU Info: + From lscpu + Architecture: x86_64 + CPU op-mode(s): 32-bit, 64-bit + Address sizes: 46 bits physical, 48 bits virtual + Byte Order: Little Endian + CPU(s): 24 + On-line CPU(s) list: 0-23 + Vendor ID: GenuineIntel + Model name: Intel(R) Xeon(R) Gold 6226 CPU @ 2.70GHz + CPU family: 6 + Model: 85 + Thread(s) per core: 1 + Core(s) per socket: 12 + Socket(s): 2 + Stepping: 7 + CPU(s) scaling MHz: 86% + CPU max MHz: 2700.0000 + CPU min MHz: 1200.0000 + BogoMIPS: 5400.00 + Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req vnmi pku ospke avx512_vnni md_clear flush_l1d arch_capabilities + Virtualization: VT-x + L1d cache: 768 KiB (24 instances) + L1i cache: 768 KiB (24 instances) + L2 cache: 24 MiB (24 instances) + L3 cache: 38.5 MiB (2 instances) + NUMA node(s): 2 + NUMA node0 CPU(s): 0-11 + NUMA node1 CPU(s): 12-23 + Vulnerability Gather data sampling: Vulnerable + Vulnerability Indirect target selection: Vulnerable + Vulnerability Itlb multihit: KVM: Vulnerable + Vulnerability L1tf: Not affected + Vulnerability Mds: Not affected + Vulnerability Meltdown: Not affected + Vulnerability Mmio stale data: Vulnerable + Vulnerability Reg file data sampling: Not affected + Vulnerability Retbleed: Vulnerable + Vulnerability Spec rstack overflow: Not affected + Vulnerability Spec store bypass: Vulnerable + Vulnerability Spectre v1: Vulnerable: __user pointer sanitization and usercopy barriers only; no swapgs barriers + Vulnerability Spectre v2: Vulnerable; IBPB: disabled; STIBP: disabled; PBRSB-eIBRS: Vulnerable; BHI: Vulnerable + Vulnerability Srbds: Not affected + Vulnerability Tsa: Not affected + Vulnerability Tsx async abort: Mitigation; TSX disabled + Vulnerability Vmscape: Vulnerable + diff --git a/tests/94E1DC86/golden.txt b/tests/94E1DC86/golden.txt new file mode 100644 index 0000000000..77a5c14c41 --- /dev/null +++ b/tests/94E1DC86/golden.txt @@ -0,0 +1,28 @@ +D/cons.1.00.000000.dat 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 +D/cons.1.00.000001.dat 0.99903257468838 0.99904008292654 0.99905968457777 0.99909403392992 0.99914655576138 0.99921870564601 0.99930772330756 0.99940137558749 0.99947547815462 0.99949294151759 0.99941726695609 0.9992220325164 0.99890278195573 0.99851829230293 0.99814440937722 0.99789178067499 0.99782574860462 0.99797245933803 0.99828866156282 0.99867316105501 0.99904721120957 0.99931355436295 0.99946179715716 0.99949494253909 0.99944918318727 0.99936351876545 0.99926970587097 0.99918698435281 0.99912294039055 0.99907831398402 0.9990503201119 0.99903577762713 +D/cons.2.00.000000.dat 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 0.11820327406633 +D/cons.2.00.000001.dat 0.11819632643332 0.1181496755003 0.1180937627656 0.11802075478039 0.11792349136406 0.11779640854794 0.11763774178146 0.11745134748184 0.11724942111482 0.11705447474139 0.11689716604366 0.11681660586604 0.116847900844 0.11701766747625 0.11732310007088 0.11774866033624 0.11823501675584 0.11872404308252 0.11914092766531 0.1194392843675 0.11959365960296 0.11960654728675 0.11950610718694 0.11933250539934 0.11912536473262 0.11891741545507 0.11873064229251 0.11857545881098 0.11845405720789 0.11836267357056 0.11829459849614 0.11824196306148 +D/cons.3.00.000000.dat 2.5044933697112 2.50449435940907 2.50449758288072 2.50450716536516 2.50453314373931 2.50459730585858 2.50474148513317 2.50503574139565 2.5055798918027 2.50648863222769 2.50785250686955 2.50967827014445 2.51183083717281 2.5140136277054 2.51581867055062 2.51684573415995 2.51684573415995 2.51581867055062 2.5140136277054 2.51183083717281 2.50967827014445 2.50785250686955 2.50648863222769 2.5055798918027 2.50503574139565 2.50474148513317 2.50459730585858 2.50453314373931 2.50450716536516 2.50449758288072 2.50449435940907 2.5044933697112 +D/cons.3.00.000001.dat 2.50460712910821 2.5046321099432 2.50470018466496 2.50482257830273 2.50501736145896 2.5053044381531 2.50570555248104 2.50623493368911 2.50689717319253 2.50767964899847 2.50855642598061 2.5094991259164 2.51042214822536 2.51130021963019 2.51202647468445 2.51257235379893 2.51284241240568 2.51280162115172 2.51244519349097 2.51176105482793 2.51088462709079 2.50982640605608 2.5087616492165 2.50775997976592 2.50688528957944 2.50617315921794 2.50562742643616 2.50523198172115 2.50495956772166 2.50478241644154 2.50467548147523 2.50462052342509 +D/cons.4.00.000000.dat 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 +D/cons.4.00.000001.dat 0.00099999997624 0.00099999996764 0.00099999994499 0.00099999990071 0.00099999982014 0.00099999967898 0.0009999994373 0.00099999903753 0.00099999840452 0.00099999746017 0.00099999614912 0.00099999447845 0.00099999257918 0.00099999067596 0.00099998910159 0.00099998815679 0.0009999880584 0.00099998882119 0.00099999026871 0.00099999211471 0.00099999401204 0.00099999573895 0.00099999712675 0.00099999815274 0.00099999885888 0.00099999931694 0.00099999960116 0.00099999977177 0.0009999998717 0.00099999992854 0.00099999995931 0.00099999997374 +D/cons.5.00.000000.dat 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 +D/cons.5.00.000001.dat 0.00023873241275 0.00023873241206 0.00023873241026 0.00023873240674 0.00023873240033 0.00023873238909 0.00023873236986 0.00023873233805 0.00023873228767 0.00023873221252 0.00023873210819 0.00023873197525 0.00023873182411 0.00023873167265 0.00023873154737 0.00023873147218 0.00023873146435 0.00023873152505 0.00023873164024 0.00023873178714 0.00023873193813 0.00023873207555 0.00023873218599 0.00023873226764 0.00023873232383 0.00023873236028 0.0002387323829 0.00023873239648 0.00023873240443 0.00023873240895 0.0002387324114 0.00023873241255 +D/cons.6.00.000000.dat 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 +D/cons.6.00.000001.dat -1.3898e-10 -1.8301e-10 -2.9583e-10 -5.0618e-10 -8.6526e-10 -1.44838e-09 -2.36785e-09 -3.76873e-09 -5.82574e-09 -8.70218e-09 -1.24962e-08 -1.71597e-08 -2.231259e-08 -2.741822e-08 -3.162555e-08 -3.422781e-08 -3.465159e-08 -3.28361e-08 -2.918255e-08 -2.433416e-08 -1.920478e-08 -1.430973e-08 -1.019184e-08 -6.96502e-09 -4.58891e-09 -2.9296e-09 -1.81796e-09 -1.09933e-09 -6.4915e-10 -3.7834e-10 -2.2531e-10 -1.5176e-10 +D/cons.7.00.000000.dat 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 +D/cons.7.00.000001.dat 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 +D/prim.1.00.000000.dat 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 0.999 +D/prim.1.00.000001.dat 0.99903257468838 0.99904008292654 0.99905968457777 0.99909403392992 0.99914655576138 0.99921870564601 0.99930772330756 0.99940137558749 0.99947547815462 0.99949294151759 0.99941726695609 0.9992220325164 0.99890278195573 0.99851829230293 0.99814440937722 0.99789178067499 0.99782574860462 0.99797245933803 0.99828866156282 0.99867316105501 0.99904721120957 0.99931355436295 0.99946179715716 0.99949494253909 0.99944918318727 0.99936351876545 0.99926970587097 0.99918698435281 0.99912294039055 0.99907831398402 0.9990503201119 0.99903577762713 +D/prim.2.00.000000.dat 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 0.11832159566199 +D/prim.2.00.000001.dat 0.1183107832797 0.11826319836357 0.11820491266796 0.11812777453606 0.11802421845332 0.11788851417846 0.11771923606483 0.11752169883976 0.11731095327251 0.11711385831666 0.11696532560388 0.1169075561433 0.11697624929547 0.11719131074341 0.11754120843504 0.11799742478748 0.1184926495645 0.11896524996419 0.11934516763798 0.11959797161397 0.11970771577267 0.11968870707753 0.11957046034862 0.1193928056266 0.11919101714879 0.11899315236359 0.11881741395235 0.11867194095586 0.11855803967587 0.11847186743406 0.11840704728756 0.11835608464626 +D/prim.3.00.000000.dat 1.00000014803251 1.00000054430794 1.00000183498728 1.00000567181788 1.00001607356929 1.00004176410754 1.00009949354681 1.00021731387213 1.00043519191299 1.00079905194302 1.00134514789571 1.00207618424202 1.00293807294207 1.0038120631453 1.00453480302327 1.00494603970368 1.00494603970368 1.00453480302327 1.0038120631453 1.00293807294207 1.00207618424202 1.00134514789571 1.00079905194302 1.00043519191299 1.00021731387213 1.00009949354681 1.00004176410754 1.00001607356929 1.00000567181788 1.00000183498728 1.00000054430794 1.00000014803251 +D/prim.3.00.000001.dat 1.00004611774504 1.00005835059345 1.00008830953764 1.0001408662658 1.00022360242501 1.00034475097522 1.00051308849895 1.00073409022527 1.00100894835596 1.00133144827041 1.00168967319036 1.00207036641825 1.00243760361909 1.00278016790368 1.00305557472486 1.00325337527474 1.00333829519466 1.00329912928186 1.00313742626388 1.00285032512025 1.00249308115219 1.00206951706908 1.00164842518364 1.00125575728966 1.00091529530678 1.0006398312077 1.00042994654718 1.00027875524604 1.00017526606356 1.00010854565632 1.00006887860441 1.00004932751352 +D/prim.4.00.000000.dat 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 0.001 +D/prim.4.00.000001.dat 0.00099999997624 0.00099999996764 0.00099999994499 0.00099999990071 0.00099999982014 0.00099999967898 0.0009999994373 0.00099999903753 0.00099999840452 0.00099999746017 0.00099999614912 0.00099999447845 0.00099999257918 0.00099999067596 0.00099998910159 0.00099998815679 0.0009999880584 0.00099998882119 0.00099999026871 0.00099999211471 0.00099999401204 0.00099999573895 0.00099999712675 0.00099999815274 0.00099999885888 0.00099999931694 0.00099999960116 0.00099999977177 0.0009999998717 0.00099999992854 0.00099999995931 0.00099999997374 +D/prim.5.00.000000.dat 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 +D/prim.5.00.000001.dat 0.99999999207864 0.99999998921173 0.99999998166472 0.99999996690205 0.99999994004787 0.999999892992 0.99999981243453 0.99999967917644 0.99999946817454 0.99999915338962 0.99999871637303 0.9999981594809 0.99999752638638 0.9999968919766 0.99999636718456 0.99999605224929 0.99999601945137 0.99999627371493 0.99999675622568 0.99999737156297 0.99999800401093 0.99999857964644 0.99999904224932 0.99999938424618 0.99999961962789 0.99999977231193 0.99999986705461 0.99999992392355 0.99999995723184 0.99999997617872 0.99999998643714 0.99999999124789 +D/prim.6.00.000000.dat 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 +D/prim.6.00.000001.dat -5.821676e-07 -7.665824e-07 -1.23915265e-06 -2.12027235e-06 -3.62440534e-06 -6.06697765e-06 -9.91842824e-06 -1.578641914e-05 -2.440278949e-05 -3.645161372e-05 -5.234394549e-05 -7.187839044e-05 -9.346276408e-05 -0.00011484915621 -0.00013247281322 -0.00014337312126 -0.00014514825761 -0.00013754355451 -0.00012223956268 -0.00010193069025 -8.044477406e-05 -5.994046909e-05 -4.269148236e-05 -2.917498973e-05 -1.922196363e-05 -1.227148633e-05 -7.61506359e-06 -4.60485881e-06 -2.71917208e-06 -1.58480651e-06 -9.4378223e-07 -6.3569028e-07 +D/prim.7.00.000000.dat 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 +D/prim.7.00.000001.dat 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 0.00023873241464 \ No newline at end of file diff --git a/tests/9E318355/golden-metadata.txt b/tests/9E318355/golden-metadata.txt new file mode 100644 index 0000000000..9761a07b2c --- /dev/null +++ b/tests/9E318355/golden-metadata.txt @@ -0,0 +1,193 @@ +This file was created on 2026-06-26 13:02:42.258290. + +mfc.sh: + + Invocation: test --generate --only 9E318355 --no-gpu -j 8 + Lock: mpi=Yes & gpu=No & debug=No & reldebug=No & gcov=No & unified=No & single=No & mixed=No & fastmath=No + Git: 098ed7edba8468b643bbe42a00fba82c1f0f8a69 on lomach-upstream (dirty) + +post_process: + + CMake Configuration: + + CMake v3.26.5 on atl1-1-03-019-21-0.pace.gatech.edu + + C : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc) + Fortran : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran) + + PRE_PROCESS : OFF + SIMULATION : OFF + POST_PROCESS : ON + SYSCHECK : OFF + DOCUMENTATION : OFF + ALL : OFF + + MPI : ON + OpenACC : OFF + OpenMP : OFF + + Fypp : /storage/home/hcoda1/6/sbryngelson3/r-sbryngelson3-0/MFC-lomach/build/venv/bin/fypp + Doxygen : + + Build Type : Release + + Configuration Environment: + + CC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc + CXX : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/g++ + FC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran + OMPI_CC : + OMPI_CXX : + OMPI_FC : + +pre_process: + + CMake Configuration: + + CMake v3.26.5 on atl1-1-01-007-2-0.pace.gatech.edu + + C : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc) + Fortran : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran) + + PRE_PROCESS : ON + SIMULATION : OFF + POST_PROCESS : OFF + SYSCHECK : OFF + DOCUMENTATION : OFF + ALL : OFF + + MPI : ON + OpenACC : OFF + OpenMP : OFF + + Fypp : /storage/home/hcoda1/6/sbryngelson3/r-sbryngelson3-0/MFC-lomach/build/venv/bin/fypp + Doxygen : + + Build Type : Release + + Configuration Environment: + + CC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc + CXX : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/g++ + FC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran + OMPI_CC : + OMPI_CXX : + OMPI_FC : + +syscheck: + + CMake Configuration: + + CMake v3.26.5 on atl1-1-03-019-21-0.pace.gatech.edu + + C : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc) + Fortran : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran) + + PRE_PROCESS : OFF + SIMULATION : OFF + POST_PROCESS : OFF + SYSCHECK : ON + DOCUMENTATION : OFF + ALL : OFF + + MPI : ON + OpenACC : OFF + OpenMP : OFF + + Fypp : /storage/home/hcoda1/6/sbryngelson3/r-sbryngelson3-0/MFC-lomach/build/venv/bin/fypp + Doxygen : + + Build Type : Release + + Configuration Environment: + + CC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc + CXX : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/g++ + FC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran + OMPI_CC : + OMPI_CXX : + OMPI_FC : + +simulation: + + CMake Configuration: + + CMake v3.26.5 on atl1-1-01-007-2-0.pace.gatech.edu + + C : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc) + Fortran : GNU v12.3.0 (/usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran) + + PRE_PROCESS : OFF + SIMULATION : ON + POST_PROCESS : OFF + SYSCHECK : OFF + DOCUMENTATION : OFF + ALL : OFF + + MPI : ON + OpenACC : OFF + OpenMP : OFF + + Fypp : /storage/home/hcoda1/6/sbryngelson3/r-sbryngelson3-0/MFC-lomach/build/venv/bin/fypp + Doxygen : + + Build Type : Release + + Configuration Environment: + + CC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gcc + CXX : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/g++ + FC : /usr/local/pace-apps/spack/packages/linux-rhel9-x86_64_v3/gcc-11.3.1/gcc-12.3.0-ukkkutsxfl5kpnnaxflpkq2jtliwthfz/bin/gfortran + OMPI_CC : + OMPI_CXX : + OMPI_FC : + +CPU: + + CPU Info: + From lscpu + Architecture: x86_64 + CPU op-mode(s): 32-bit, 64-bit + Address sizes: 46 bits physical, 48 bits virtual + Byte Order: Little Endian + CPU(s): 24 + On-line CPU(s) list: 0-23 + Vendor ID: GenuineIntel + Model name: Intel(R) Xeon(R) Gold 6226 CPU @ 2.70GHz + CPU family: 6 + Model: 85 + Thread(s) per core: 1 + Core(s) per socket: 12 + Socket(s): 2 + Stepping: 7 + CPU(s) scaling MHz: 88% + CPU max MHz: 2700.0000 + CPU min MHz: 1200.0000 + BogoMIPS: 5400.00 + Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req vnmi pku ospke avx512_vnni md_clear flush_l1d arch_capabilities + Virtualization: VT-x + L1d cache: 768 KiB (24 instances) + L1i cache: 768 KiB (24 instances) + L2 cache: 24 MiB (24 instances) + L3 cache: 38.5 MiB (2 instances) + NUMA node(s): 2 + NUMA node0 CPU(s): 0-11 + NUMA node1 CPU(s): 12-23 + Vulnerability Gather data sampling: Vulnerable + Vulnerability Indirect target selection: Vulnerable + Vulnerability Itlb multihit: KVM: Vulnerable + Vulnerability L1tf: Not affected + Vulnerability Mds: Not affected + Vulnerability Meltdown: Not affected + Vulnerability Mmio stale data: Vulnerable + Vulnerability Reg file data sampling: Not affected + Vulnerability Retbleed: Vulnerable + Vulnerability Spec rstack overflow: Not affected + Vulnerability Spec store bypass: Vulnerable + Vulnerability Spectre v1: Vulnerable: __user pointer sanitization and usercopy barriers only; no swapgs barriers + Vulnerability Spectre v2: Vulnerable; IBPB: disabled; STIBP: disabled; PBRSB-eIBRS: Vulnerable; BHI: Vulnerable + Vulnerability Srbds: Not affected + Vulnerability Tsa: Not affected + Vulnerability Tsx async abort: Mitigation; TSX disabled + Vulnerability Vmscape: Vulnerable + diff --git a/tests/9E318355/golden.txt b/tests/9E318355/golden.txt new file mode 100644 index 0000000000..a862602817 --- /dev/null +++ b/tests/9E318355/golden.txt @@ -0,0 +1,12 @@ +D/cons.1.00.000000.dat 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 +D/cons.1.00.000001.dat 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12508987391615 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.12543992431982 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.13961229044056 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.22090416651363 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.78017603267816 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.90910285853717 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.99374527260415 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.97659355615557 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.8962842769235 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.35034595335866 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.22506146354765 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.13092131343336 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12660317580181 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12509756096613 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12501738411356 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500117099396 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500005997177 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.12500000960516 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12499999395372 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500000131746 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500007968648 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 0.12500358116156 +D/cons.2.00.000000.dat 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.47328638264797 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 +D/cons.2.00.000001.dat 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.05893564361837 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.0560938547129 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.04875232317954 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.01514397677524 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.13306549624175 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.36209128020821 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.44366788604304 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.47994412503208 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.54130776921835 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.34656870501142 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.19922887837879 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.09155404746358 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.06257639018125 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05993934491165 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05920664074372 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916899754939 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916136378509 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916082473308 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.05916080238862 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.059160797831 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916080069994 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916079818431 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05916077241241 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05915907313828 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 0.05911727741777 +D/cons.3.00.000000.dat 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 -0.17748239349299 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 +D/cons.3.00.000001.dat 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02226849710965 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.02477433043287 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 0.0102704427997 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.13848878520886 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.16120228637864 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.1760742599205 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.17373802600839 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.15900111665152 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 -0.02928923123583 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.0033484750952 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02270226384129 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02231482296646 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 0.02218529918662 +D/cons.4.00.000000.dat 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 -0.11832159566199 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 +D/cons.4.00.000001.dat 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01484566473976 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.01651622028858 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 0.00684696186647 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.0923258568059 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.10746819091909 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.117382839947 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.11582535067226 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.10600074443435 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 -0.01952615415722 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.00223231673013 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01513484256086 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01487654864431 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 0.01479019945775 +D/cons.5.00.000000.dat 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 2.63475 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 +D/cons.5.00.000001.dat 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26709838443722 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.26787008105243 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.30844093118168 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 0.51670148712137 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 1.93652767451865 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.29683982304146 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.60926380196363 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.56519939323211 2.5651993932321 2.5651993932321 2.5651993932321 2.56519939323211 2.5651993932321 2.56519939323211 2.5651993932321 2.5651993932321 2.56519939323211 2.5651993932321 2.5651993932321 2.56519939323211 2.5651993932321 2.5651993932321 2.56519939323211 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.5651993932321 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 2.40295333807468 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.95845573274698 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.6175016187636 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.28980465312955 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.27148247672646 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26713964035175 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26689455896044 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684716577485 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684393118989 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684377732811 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684375 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684373279743 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684376039649 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26684396382778 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 0.26685382338342 +D/cons.6.00.000000.dat 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 +D/cons.6.00.000001.dat 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 \ No newline at end of file diff --git a/toolchain/mfc/case_validator.py b/toolchain/mfc/case_validator.py index ca631ba0b6..6d0387ef19 100644 --- a/toolchain/mfc/case_validator.py +++ b/toolchain/mfc/case_validator.py @@ -200,6 +200,19 @@ "category": "Acoustic Sources", "explanation": ("Dimension-specific support types. Pulse type in {1,2,3,4}. Non-planar sources require foc_length and aperture."), }, + "check_acoustic_substepping": { + "title": "Acoustic Substepping (low-Mach split-explicit)", + "category": "Numerical Schemes", + "explanation": ( + "Split-explicit acoustic substepping for low-Mach-number flows. " + "Requires model_eqns = 2 (five-equation model). " + "Incompatible with bubbles (Euler or Lagrange), QBMM, immersed boundaries, " + "elasticity (hypo or hyper), chemistry, and phase change. " + "n_acoustic_substeps >= 0 (0 = pure auto; >0 = minimum floor on the auto-computed count). " + "acoustic_div_damp >= 0 (dimensionless grad-div divergence damping coefficient; " + "stable for <~ 0.5/num_dims per microstep)." + ), + }, # Post-Processing "check_vorticity": { "title": "Vorticity Output", @@ -1265,6 +1278,37 @@ def check_adaptive_time_stepping(self): self.prohibit(not polytropic and not bubbles_lagrange, "adap_dt requires polytropic = T or bubbles_lagrange = T") self.prohibit(not adv_n and not bubbles_lagrange, "adap_dt requires adv_n = T or bubbles_lagrange = T") + def check_acoustic_substepping(self): + """Checks acoustic substepping (low-Mach split-explicit) parameter constraints""" + acoustic_substepping = self.get("acoustic_substepping", "F") == "T" + + if not acoustic_substepping: + return + + model_eqns = self.get("model_eqns") + bubbles_euler = self.get("bubbles_euler", "F") == "T" + bubbles_lagrange = self.get("bubbles_lagrange", "F") == "T" + adv_n = self.get("adv_n", "F") == "T" + qbmm = self.get("qbmm", "F") == "T" + ib = self.get("ib", "F") == "T" + hypoelasticity = self.get("hypoelasticity", "F") == "T" + hyperelasticity = self.get("hyperelasticity", "F") == "T" + chemistry = self.get("chemistry", "F") == "T" + relax = self.get("relax", "F") == "T" + n_acoustic_substeps = self.get("n_acoustic_substeps", 0) + acoustic_div_damp = self.get("acoustic_div_damp", 0.1) + + self.prohibit(model_eqns is not None and model_eqns != 2, "acoustic_substepping requires model_eqns = 2") + self.prohibit(bubbles_lagrange, "acoustic_substepping is incompatible with Lagrangian bubbles") + self.prohibit(bubbles_euler and not adv_n, "acoustic_substepping with Euler-Euler bubbles requires adv_n = T (the co-subcycle recovers void fraction from number density)") + self.prohibit(qbmm, "acoustic_substepping is incompatible with qbmm") + self.prohibit(ib, "acoustic_substepping is incompatible with immersed boundaries") + self.prohibit(hypoelasticity or hyperelasticity, "acoustic_substepping is incompatible with elasticity") + self.prohibit(chemistry, "acoustic_substepping is incompatible with chemistry") + self.prohibit(relax, "acoustic_substepping is incompatible with phase change") + self.prohibit(n_acoustic_substeps is not None and n_acoustic_substeps < 0, "n_acoustic_substeps must be >= 0 (0 = auto)") + self.prohibit(acoustic_div_damp is not None and acoustic_div_damp < 0, "acoustic_div_damp must be >= 0") + def check_alt_soundspeed(self): """Checks alternative sound speed parameters (simulation)""" alt_soundspeed = self.get("alt_soundspeed", "F") == "T" @@ -2262,6 +2306,7 @@ def validate_simulation(self): self.check_igr_simulation() self.check_acoustic_source() self.check_adaptive_time_stepping() + self.check_acoustic_substepping() self.check_alt_soundspeed() self.check_bubbles_lagrange() self.check_continuum_damage() diff --git a/toolchain/mfc/params/definitions.py b/toolchain/mfc/params/definitions.py index 35eb19967f..dc8942e756 100644 --- a/toolchain/mfc/params/definitions.py +++ b/toolchain/mfc/params/definitions.py @@ -625,6 +625,11 @@ def _load(): _r("sigma", REAL, {"surface_tension"}, math=r"\f$\sigma\f$") _r("surface_tension", LOG, {"surface_tension"}) + # Acoustic substepping (low-Mach split-explicit) + _r("acoustic_substepping", LOG, {"time"}) + _r("n_acoustic_substeps", INT, {"time"}) + _r("acoustic_div_damp", REAL, {"time"}) + # Chemistry _r("cantera_file", STR, {"chemistry"}) _r("chemistry", LOG, {"chemistry"}) @@ -1326,6 +1331,9 @@ def _nv(targets: set, *names: str) -> None: "nv_uvm_out_of_core", "nv_uvm_igr_temps_on_gpu", "nv_uvm_pref_gpu", + "acoustic_substepping", + "n_acoustic_substeps", + "acoustic_div_damp", ) _nv( _PRE, diff --git a/toolchain/mfc/params/descriptions.py b/toolchain/mfc/params/descriptions.py index 70184f020c..bf6f43acac 100644 --- a/toolchain/mfc/params/descriptions.py +++ b/toolchain/mfc/params/descriptions.py @@ -140,6 +140,10 @@ # Acoustic sources "acoustic_source": "Enable acoustic source terms", "num_source": "Number of acoustic sources", + # Acoustic substepping (low-Mach split-explicit) + "acoustic_substepping": "Enable split-explicit acoustic substepping for low-Mach flows", + "n_acoustic_substeps": "Number of acoustic substeps per flow step (0 = auto)", + "acoustic_div_damp": "Dimensionless grad-div divergence damping coefficient for acoustic substepping (stable for <~ 0.5/num_dims)", # Probes and integrals "num_probes": "Number of probe points", "num_integrals": "Number of integral regions", diff --git a/toolchain/mfc/test/cases.py b/toolchain/mfc/test/cases.py index a981e88edc..c371bfe4b0 100644 --- a/toolchain/mfc/test/cases.py +++ b/toolchain/mfc/test/cases.py @@ -2090,6 +2090,330 @@ def chemistry_cases(): chemistry_cases() + def acoustic_substepping_cases(): + """1D acoustic-pulse golden test for acoustic_substepping (split-explicit low-Mach). + + Uniform background at M=0.1 with a small Gaussian pressure perturbation on + a periodic domain. With acoustic_substepping='T' and cfl_adap_dt='T', the + outer dt is set by the advective CFL (~10x larger than the acoustic dt), + and acoustic waves are resolved by the forward-backward substep loop. + The golden file verifies stability and conservation across ~4 outer steps + (each ≈10 acoustic substeps at M=0.1). + """ + import math as _math + + gamma = 1.4 + c0 = _math.sqrt(gamma) # sqrt(1.4) ≈ 1.183, normalised units (p0=1, rho0=1) + Mach = 0.1 + u0 = Mach * c0 # mean flow velocity + Nx = 31 # m=31 → 32 cells; dx = 1/(m+1) = 1/32 + dx = 1.0 / (Nx + 1) + CFL = 0.5 + dt_init = CFL * dx / c0 # acoustic-CFL initial dt guess ≈ 0.0132 + + stack.push( + "1D -> Acoustic Substepping", + { + "m": Nx, + "n": 0, + "p": 0, + "x_domain%beg": 0.0, + "x_domain%end": 1.0, + "bc_x%beg": -1, + "bc_x%end": -1, + "dt": dt_init, + "cfl_adap_dt": "T", + "cfl_target": CFL, + "n_start": 0, + "t_stop": 0.5, + "t_save": 0.5, + "num_patches": 1, + "model_eqns": 2, + "num_fluids": 1, + "alt_soundspeed": "F", + "mpp_lim": "F", + "mixture_err": "F", + "time_stepper": 3, + "weno_order": 5, + "weno_eps": 1.0e-16, + "mapped_weno": "F", + "null_weights": "F", + "mp_weno": "F", + "riemann_solver": 2, + "wave_speeds": 1, + "avg_state": 2, + "acoustic_substepping": "T", + "n_acoustic_substeps": 0, + "acoustic_div_damp": 0.1, + # Patch 1: uniform background + small Gaussian pressure perturbation + "patch_icpp(1)%geometry": 1, + "patch_icpp(1)%x_centroid": 0.5, + "patch_icpp(1)%length_x": 1.0, + "patch_icpp(1)%vel(1)": u0, + "patch_icpp(1)%pres": "1.0 + 1e-3 * exp(-((x - xc) / 0.05)**2)", + "patch_icpp(1)%alpha_rho(1)": 1.0, + "patch_icpp(1)%alpha(1)": 1.0, + "fluid_pp(1)%gamma": 1.0 / (gamma - 1.0), + "fluid_pp(1)%pi_inf": 0.0, + }, + ) + cases.append(define_case_d(stack, "", {})) + stack.pop() + + # Flagged-face (robust-tier) golden: a small periodic Sod shock tube that fires + # the discontinuity criterion and exercises the full-HLLC convective delta. Based + # on examples/1D_shock_periodic_lowmach (periodic BCs -> deterministic, no outflow + # smooth-tier instability), shrunk to a tiny grid and short window for the suite. + c0_s = _math.sqrt(gamma) + Mach_s = 0.4 + u0_s = Mach_s * c0_s # background mean flow bounds the advective CFL + Nx_s = 49 # m=49 -> 50 cells + dx_s = 1.0 / (Nx_s + 1) + CFL_s = 0.4 + dt_s = CFL_s * dx_s / (u0_s + _math.sqrt(gamma * 1.0 / 1.0)) + + stack.push( + "1D -> Acoustic Substepping Shock", + { + "m": Nx_s, + "n": 0, + "p": 0, + "x_domain%beg": 0.0, + "x_domain%end": 1.0, + "bc_x%beg": -1, + "bc_x%end": -1, + "dt": dt_s, + "cfl_adap_dt": "T", + "cfl_target": CFL_s, + "n_start": 0, + "t_stop": 0.02, + "t_save": 0.02, + "num_patches": 2, + "model_eqns": 2, + "num_fluids": 1, + "alt_soundspeed": "F", + "mpp_lim": "F", + "mixture_err": "F", + "time_stepper": 3, + "weno_order": 5, + "weno_eps": 1.0e-16, + "mapped_weno": "F", + "null_weights": "F", + "mp_weno": "F", + "riemann_solver": 2, + "wave_speeds": 1, + "avg_state": 2, + "acoustic_substepping": "T", + "n_acoustic_substeps": 0, + "acoustic_div_damp": 0.1, + # Patch 1: ambient filling the domain + "patch_icpp(1)%geometry": 1, + "patch_icpp(1)%x_centroid": 0.5, + "patch_icpp(1)%length_x": 1.0, + "patch_icpp(1)%vel(1)": u0_s, + "patch_icpp(1)%pres": 0.1, + "patch_icpp(1)%alpha_rho(1)": 0.125, + "patch_icpp(1)%alpha(1)": 1.0, + # Patch 2: high-pressure driver -> launches a right-running shock + "patch_icpp(2)%geometry": 1, + "patch_icpp(2)%alter_patch(1)": "T", + "patch_icpp(2)%x_centroid": 0.25, + "patch_icpp(2)%length_x": 0.2, + "patch_icpp(2)%vel(1)": u0_s, + "patch_icpp(2)%pres": 1.0, + "patch_icpp(2)%alpha_rho(1)": 1.0, + "patch_icpp(2)%alpha(1)": 1.0, + "fluid_pp(1)%gamma": 1.0 / (gamma - 1.0), + "fluid_pp(1)%pi_inf": 0.0, + }, + ) + cases.append(define_case_d(stack, "", {})) + stack.pop() + + # 3D flagged-face (robust-tier) golden: a tiny periodic Sod shock with transverse + # shear in BOTH y and z. The x-normal driver launches a right-running shock that + # fires the discontinuity criterion, and the transverse velocities (vel(2), vel(3)) + # JUMP across the interface so BOTH off-normal momentum slots (rho*u*v and rho*u*w) + # of the live HLLC flux are transported at every flagged x-face -- the genuine 3D + # path (a 2D x-face has only one transverse slot). Periodic in all dirs -> + # deterministic, no outflow smooth-tier instability. See + # examples/3D_shock_periodic_lowmach for the full-resolution validation. + c0_3 = _math.sqrt(gamma) + Mach_3 = 0.4 + u0_3 = Mach_3 * c0_3 # background mean flow bounds the advective CFL + v0_3 = 0.15 * c0_3 # transverse shear in y (jumps across the interface) + w0_3 = 0.10 * c0_3 # transverse shear in z (jumps across the interface) + # WENO5 requires (dim+1) >= num_stcls_min*weno_order = 25 cells per dimension, so + # 24x24x24 (25^3) is the smallest valid cubic grid (matches the 3D direction tests). + Nx_3 = Ny_3 = Nz_3 = 24 + dx_3 = 1.0 / (Nx_3 + 1) + CFL_3 = 0.4 + umag_3 = _math.sqrt(u0_3**2 + v0_3**2 + w0_3**2) + dt_3 = CFL_3 * dx_3 / (umag_3 + _math.sqrt(gamma * 1.0 / 1.0)) + + stack.push( + "3D -> Acoustic Substepping Shock", + { + "m": Nx_3, + "n": Ny_3, + "p": Nz_3, + "x_domain%beg": 0.0, + "x_domain%end": 1.0, + "y_domain%beg": 0.0, + "y_domain%end": 1.0, + "z_domain%beg": 0.0, + "z_domain%end": 1.0, + "bc_x%beg": -1, + "bc_x%end": -1, + "bc_y%beg": -1, + "bc_y%end": -1, + "bc_z%beg": -1, + "bc_z%end": -1, + "dt": dt_3, + "cfl_adap_dt": "T", + "cfl_target": CFL_3, + "n_start": 0, + "t_stop": 0.02, + "t_save": 0.02, + "num_patches": 2, + "model_eqns": 2, + "num_fluids": 1, + "alt_soundspeed": "F", + "mpp_lim": "F", + "mixture_err": "F", + "time_stepper": 3, + "weno_order": 5, + "weno_eps": 1.0e-16, + "mapped_weno": "F", + "null_weights": "F", + "mp_weno": "F", + "riemann_solver": 2, + "wave_speeds": 1, + "avg_state": 2, + "acoustic_substepping": "T", + "n_acoustic_substeps": 0, + "acoustic_div_damp": 0.1, + # Patch 1: ambient filling the domain (transverse velocities v0, w0) + "patch_icpp(1)%geometry": 9, + "patch_icpp(1)%x_centroid": 0.5, + "patch_icpp(1)%y_centroid": 0.5, + "patch_icpp(1)%z_centroid": 0.5, + "patch_icpp(1)%length_x": 1.0, + "patch_icpp(1)%length_y": 2.0, + "patch_icpp(1)%length_z": 2.0, + "patch_icpp(1)%vel(1)": u0_3, + "patch_icpp(1)%vel(2)": v0_3, + "patch_icpp(1)%vel(3)": w0_3, + "patch_icpp(1)%pres": 0.1, + "patch_icpp(1)%alpha_rho(1)": 0.125, + "patch_icpp(1)%alpha(1)": 1.0, + # Patch 2: high-pressure driver -> right-running shock; transverse shear flips + "patch_icpp(2)%geometry": 9, + "patch_icpp(2)%alter_patch(1)": "T", + "patch_icpp(2)%x_centroid": 0.25, + "patch_icpp(2)%y_centroid": 0.5, + "patch_icpp(2)%z_centroid": 0.5, + "patch_icpp(2)%length_x": 0.2, + "patch_icpp(2)%length_y": 2.0, + "patch_icpp(2)%length_z": 2.0, + "patch_icpp(2)%vel(1)": u0_3, + "patch_icpp(2)%vel(2)": -v0_3, + "patch_icpp(2)%vel(3)": -w0_3, + "patch_icpp(2)%pres": 1.0, + "patch_icpp(2)%alpha_rho(1)": 1.0, + "patch_icpp(2)%alpha(1)": 1.0, + "fluid_pp(1)%gamma": 1.0 / (gamma - 1.0), + "fluid_pp(1)%pi_inf": 0.0, + }, + ) + cases.append(define_case_d(stack, "", {})) + stack.pop() + + # Euler-Euler bubble golden: a tiny dilute bubbly background (adv_n='T') with a + # small Gaussian pressure pulse. In split mode the EE bubble dynamics are + # co-subcycled with the acoustic substep (each micro-step advances the bubble + # Rayleigh-Plesset state on the live pressure; the bubble-aware EOS feeds the void + # fraction back). Moderate forcing + short window keep the adaptive bubble + # sub-integrator well inside its convergence regime (violent collapse is out of + # scope -- ODE stiffness). Periodic, CPU, deterministic. See + # examples/1D_bubble_acoustic_lowmach for the validation case. + c0_b = _math.sqrt(gamma) + Mach_b = 0.1 + u0_b = Mach_b * c0_b + Nx_b = 31 # m=31 -> 32 cells + dx_b = 1.0 / (Nx_b + 1) + CFL_b = 0.5 + dt_b = CFL_b * dx_b / c0_b + vf0_b = 1.0e-3 # dilute background void fraction + + stack.push( + "1D -> Acoustic Substepping Bubbles", + { + "m": Nx_b, + "n": 0, + "p": 0, + "x_domain%beg": 0.0, + "x_domain%end": 1.0, + "bc_x%beg": -1, + "bc_x%end": -1, + "dt": dt_b, + "cfl_adap_dt": "T", + "cfl_target": CFL_b, + "n_start": 0, + "t_stop": 0.05, + "t_save": 0.05, + "num_patches": 1, + "model_eqns": 2, + "num_fluids": 1, + "alt_soundspeed": "F", + "mpp_lim": "F", + "mixture_err": "F", + "time_stepper": 3, + "weno_order": 5, + "weno_eps": 1.0e-16, + "mapped_weno": "F", + "null_weights": "F", + "mp_weno": "F", + "riemann_solver": 2, + "wave_speeds": 1, + "avg_state": 2, + "acoustic_substepping": "T", + "n_acoustic_substeps": 20, + "acoustic_div_damp": 0.4, + # Patch 1: uniform dilute bubbly background + Gaussian pressure pulse + "patch_icpp(1)%geometry": 1, + "patch_icpp(1)%x_centroid": 0.5, + "patch_icpp(1)%length_x": 1.0, + "patch_icpp(1)%vel(1)": u0_b, + "patch_icpp(1)%pres": "1.0 + 5e-3 * exp(-((x - 0.5) / 0.15)**2)", + "patch_icpp(1)%alpha_rho(1)": (1.0 - vf0_b) * 1.0, + "patch_icpp(1)%alpha(1)": vf0_b, + "patch_icpp(1)%r0": 1.0, + "patch_icpp(1)%v0": 0.0, + "fluid_pp(1)%gamma": 1.0 / (gamma - 1.0), + "fluid_pp(1)%pi_inf": 0.0, + # Euler-Euler bubbles, co-subcycled with the acoustic substep + "bubbles_euler": "T", + "bubble_model": 2, + "polytropic": "T", + "adv_n": "T", + "polydisperse": "F", + "thermal": 3, + "nb": 1, + "bub_pp%R0ref": 1.0, + "bub_pp%p0ref": 1.0, + "bub_pp%rho0ref": 1.0, + "bub_pp%ss": 0.0, + "bub_pp%pv": 0.0, + "bub_pp%mu_l": 0.1, + "bub_pp%gam_g": 1.4, + }, + ) + cases.append(define_case_d(stack, "", {})) + stack.pop() + + acoustic_substepping_cases() + def direction_symmetry_tests(): """3D tests with shock propagating in x and y directions.