Commit ba5e21ff authored by peastman's avatar peastman
Browse files

Merge pull request #461 from swails/amber_restarts

Rewrite Amber inpcrd file parsers
parents 49fe8122 90dfedb8
......@@ -55,8 +55,12 @@ foreach(SUBDIR ${SUBDIRS})
"${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIR}/*.xml"
"${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIR}/*.pdb"
"${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIR}/*.prmtop"
"${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIR}/*.parm7"
"${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIR}/*.rst7"
"${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIR}/*.ncrst"
"${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIR}/*.dms"
"${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIR}/*.top"
"${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIR}/*.par"
"${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIR}/*psf"
"${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIR}/charmm22.*"
)
......
......@@ -6,9 +6,9 @@ Simbios, the NIH National Center for Physics-Based Simulation of
Biological Structures at Stanford, funded under the NIH Roadmap for
Medical Research, grant U54 GM072970. See https://simtk.org.
Portions copyright (c) 2012 Stanford University and the Authors.
Portions copyright (c) 2012-2014 Stanford University and the Authors.
Authors: Peter Eastman
Contributors:
Contributors: Jason Swails
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
......@@ -31,51 +31,55 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
__author__ = "Peter Eastman"
__version__ = "1.0"
from functools import wraps
from simtk.openmm.app.internal import amber_file_parser
from simtk.unit import Quantity, nanometers, picoseconds
import warnings
try:
import numpy
import numpy as np
except:
pass
np = None
def numpy_protector(func):
"""
Decorator to emit useful error messages if users try to request numpy
processing if numpy is not available. Raises ImportError if numpy could not
be found
"""
@wraps(func)
def wrapper(self, asNumpy=False):
if asNumpy and np is None:
raise ImportError('Could not import numpy. Cannot set asNumpy=True')
return func(self, asNumpy=asNumpy)
return wrapper
class AmberInpcrdFile(object):
"""AmberInpcrdFile parses an AMBER inpcrd file and loads the data stored in it."""
def __init__(self, file, loadVelocities=False, loadBoxVectors=False):
def __init__(self, file, loadVelocities=None, loadBoxVectors=None):
"""Load an inpcrd file.
An inpcrd file contains atom positions and, optionally, velocities and periodic box dimensions.
Unfortunately, it is sometimes impossible to determine from the file itself exactly what data
it contains. You therefore must specify in advance what data to load. It is stored into this
object's "positions", "velocities", and "boxVectors" fields.
Parameters:
- file (string) the name of the file to load
- loadVelocities (boolean=False) whether to load velocities from the file
- loadBoxVectors (boolean=False) whether to load the periodic box vectors
- loadVelocities (boolean=None) deprecated. Velocities are loaded automatically if present
- loadBoxVectors (boolean=None) deprecated. Box vectors are loaded automatically if present
"""
results = amber_file_parser.readAmberCoordinates(file, read_velocities=loadVelocities, read_box=loadBoxVectors)
if loadVelocities:
## The atom positions read from the inpcrd file
self.positions = results[0]
if loadBoxVectors:
## The periodic box vectors read from the inpcrd file
self.boxVectors = results[1]
## The atom velocities read from the inpcrd file
self.velocities = results[2]
else:
self.velocities = results[1]
elif loadBoxVectors:
self.positions = results[0]
self.boxVectors = results[1]
else:
self.positions = results
self.file = file
if loadVelocities is not None or loadBoxVectors is not None:
warnings.warn('loadVelocities and loadBoxVectors have been '
'deprecated. velocities and box information '
'is loaded automatically if the inpcrd file contains '
'them.', DeprecationWarning)
results = amber_file_parser.readAmberCoordinates(file)
self.positions, self.velocities, self.boxVectors = results
# Cached numpy arrays
self._numpyPositions = None
if loadVelocities:
self._numpyVelocities = None
if loadBoxVectors:
self._numpyBoxVectors = None
@numpy_protector
def getPositions(self, asNumpy=False):
"""Get the atomic positions.
......@@ -84,34 +88,40 @@ class AmberInpcrdFile(object):
"""
if asNumpy:
if self._numpyPositions is None:
self._numpyPositions = Quantity(numpy.array(self.positions.value_in_unit(nanometers)), nanometers)
self._numpyPositions = Quantity(np.array(self.positions.value_in_unit(nanometers)), nanometers)
return self._numpyPositions
return self.positions
@numpy_protector
def getVelocities(self, asNumpy=False):
"""Get the atomic velocities.
Parameters:
- asNumpy (boolean=False) if true, the vectors are returned as numpy arrays instead of Vec3s
"""
if self.velocities is None:
raise AttributeError('velocities not found in %s' % self.file)
if asNumpy:
if self._numpyVelocities is None:
self._numpyVelocities = Quantity(numpy.array(self.velocities.value_in_unit(nanometers/picoseconds)), nanometers/picoseconds)
self._numpyVelocities = Quantity(np.array(self.velocities.value_in_unit(nanometers/picoseconds)), nanometers/picoseconds)
return self._numpyVelocities
return self.velocities
@numpy_protector
def getBoxVectors(self, asNumpy=False):
"""Get the periodic box vectors.
Parameters:
- asNumpy (boolean=False) if true, the values are returned as a numpy array instead of a list of Vec3s
"""
if self.boxVectors is None:
raise AttributeError('Box information not found in %s' % self.file)
if asNumpy:
if self._numpyBoxVectors is None:
self._numpyBoxVectors = []
self._numpyBoxVectors.append(Quantity(numpy.array(self.boxVectors[0].value_in_unit(nanometers)), nanometers))
self._numpyBoxVectors.append(Quantity(numpy.array(self.boxVectors[1].value_in_unit(nanometers)), nanometers))
self._numpyBoxVectors.append(Quantity(numpy.array(self.boxVectors[2].value_in_unit(nanometers)), nanometers))
self._numpyBoxVectors.append(Quantity(np.array(self.boxVectors[0].value_in_unit(nanometers)), nanometers))
self._numpyBoxVectors.append(Quantity(np.array(self.boxVectors[1].value_in_unit(nanometers)), nanometers))
self._numpyBoxVectors.append(Quantity(np.array(self.boxVectors[2].value_in_unit(nanometers)), nanometers))
return self._numpyBoxVectors
return self.boxVectors
......@@ -40,15 +40,14 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
#=============================================================================================
import os
import os.path
import re
import math
from math import ceil, cos, sin, asin, sqrt, pi
import warnings
try:
import numpy
import numpy as np
except:
pass
np = None
import simtk.unit as units
import simtk.openmm
......@@ -74,6 +73,9 @@ POINTER_LABELS = """
# Pointer labels (above) as a list, not string.
POINTER_LABEL_LIST = POINTER_LABELS.replace(',', '').split()
VELSCALE = 20.455 # velocity conversion factor to angstroms/picosecond
TINY = 1.0e-8
class PrmtopLoader(object):
"""Parsed AMBER prmtop file.
......@@ -83,14 +85,14 @@ class PrmtopLoader(object):
Parse a prmtop file of alanine dipeptide in implicit solvent.
>>> import os, os.path
>>> import os
>>> directory = os.path.join(os.getenv('YANK_INSTALL_DIR'), 'test', 'systems', 'alanine-dipeptide-gbsa')
>>> prmtop_filename = os.path.join(directory, 'alanine-dipeptide.prmtop')
>>> prmtop = PrmtopLoader(prmtop_filename)
Parse a prmtop file of alanine dipeptide in explicit solvent.
>>> import os, os.path
>>> import os
>>> directory = os.path.join(os.getenv('YANK_INSTALL_DIR'), 'test', 'systems', 'alanine-dipeptide-explicit')
>>> prmtop_filename = os.path.join(directory, 'alanine-dipeptide.prmtop')
>>> prmtop = PrmtopLoader(prmtop_filename)
......@@ -437,7 +439,7 @@ class PrmtopLoader(object):
(rVdwI, epsilonI) = nonbondTerms[iAtom]
(rVdwL, epsilonL) = nonbondTerms[lAtom]
rMin = (rVdwI+rVdwL)
epsilon = math.sqrt(epsilonI*epsilonL)
epsilon = sqrt(epsilonI*epsilonL)
try:
iScee = float(self._raw_data["SCEE_SCALE_FACTOR"][iidx])
except KeyError:
......@@ -708,7 +710,7 @@ def readAmberSystem(prmtop_filename=None, prmtop_loader=None, shake=None, gbmode
l2 = bond[1]
# Compute the distance between atoms and add a constraint
length = math.sqrt(l1*l1 + l2*l2 - 2*l1*l2*math.cos(aMin))
length = sqrt(l1*l1 + l2*l2 - 2*l1*l2*cos(aMin))
system.addConstraint(iAtom, kAtom, length)
if flexibleConstraints or not constrained:
force.addAngle(iAtom, jAtom, kAtom, aMin, 2*k)
......@@ -739,10 +741,17 @@ def readAmberSystem(prmtop_filename=None, prmtop_loader=None, shake=None, gbmode
# System is periodic.
# Set periodic box vectors for periodic system
(boxBeta, boxX, boxY, boxZ) = prmtop.getBoxBetaAndDimensions()
d0 = units.Quantity(0.0, units.angstroms)
xVec = units.Quantity((boxX, d0, d0))
yVec = units.Quantity((d0, boxY, d0))
zVec = units.Quantity((d0, d0, boxZ))
boxBeta = boxBeta.value_in_unit(units.degrees)
boxX = boxX.value_in_unit(units.angstroms)
boxY = boxY.value_in_unit(units.angstroms)
boxZ = boxZ.value_in_unit(units.angstroms)
tmp = [[0.0, 0.0, 0.0],[0.0, 0.0, 0.0],[0.0, 0.0, 0.0]]
_box_vectors_from_lengths_angles([boxX, boxY, boxZ],
[boxBeta, boxBeta, boxBeta],
tmp)
xVec = units.Quantity(tmp[0], units.angstroms)
yVec = units.Quantity(tmp[1], units.angstroms)
zVec = units.Quantity(tmp[2], units.angstroms)
system.setDefaultPeriodicBoxVectors(xVec, yVec, zVec)
# Set cutoff.
......@@ -848,13 +857,13 @@ def readAmberSystem(prmtop_filename=None, prmtop_loader=None, shake=None, gbmode
if len(waterO[res]) == 1 and len(waterH[res]) == 2:
if len(waterEP[res]) == 1:
# Four point water
weightH = distOE[res]/math.sqrt(distOH[res]**2-(0.5*distHH[res])**2)
weightH = distOE[res]/sqrt(distOH[res]**2-(0.5*distHH[res])**2)
system.setVirtualSite(waterEP[res][0], mm.ThreeParticleAverageSite(waterO[res][0], waterH[res][0], waterH[res][1], 1-weightH, weightH/2, weightH/2))
elif len(waterEP[res]) == 2:
# Five point water
weightH = cosOOP*distOE[res]/math.sqrt(distOH[res]**2-(0.5*distHH[res])**2)
angleHOH = 2*math.asin(0.5*distHH[res]/distOH[res])
lenCross = (distOH[res]**2)*math.sin(angleHOH)
weightH = cosOOP*distOE[res]/sqrt(distOH[res]**2-(0.5*distHH[res])**2)
angleHOH = 2*asin(0.5*distHH[res]/distOH[res])
lenCross = (distOH[res]**2)*sin(angleHOH)
weightCross = sinOOP*distOE[res]/lenCross
system.setVirtualSite(waterEP[res][0], mm.OutOfPlaneSite(waterO[res][0], waterH[res][0], waterH[res][1], weightH/2, weightH/2, weightCross))
system.setVirtualSite(waterEP[res][1], mm.OutOfPlaneSite(waterO[res][0], waterH[res][0], waterH[res][1], weightH/2, weightH/2, -weightCross))
......@@ -917,134 +926,395 @@ def readAmberSystem(prmtop_filename=None, prmtop_loader=None, shake=None, gbmode
return system
#=============================================================================================
# AMBER INPCRD loader
# AMBER INPCRD loader classes
#=============================================================================================
def readAmberCoordinates(filename, read_box=False, read_velocities=False, verbose=False, asNumpy=False):
class AmberAsciiRestart(object):
"""
Class responsible for parsing Amber coordinates in the ASCII format.
Automatically detects the presence of velocities or box parameters in the
file.
Parameters
----------
filename : str
Name of the restart file
asNumpy : bool (False)
Load the coordinates, velocities, and box as numpy ndarray objects
Attributes
----------
coordinates : natom x 3 array, Quantity
Particle positions with units of length
velocities : natom x 3 array, Quantity
Particle velocities with units of length per time (None if velocities
are not present in the inpcrd file)
boxVectors : 3 x 3 array, Quantity
Box vectors with units of length (None if no box is present in the
inpcrd file)
time : float, Quantity
Simulation time (None if not present) with units of time
title : str
Title of the inpcrd file
filename : str
Name of the file we are parsing
natom : int
Number of atoms in the inpcrd file
Raises
------
`IOError' if the file does not exist
`TypeError' if the format of the file is not recognized
`ValueError' if not all fields are numbers (for example, if a field is
filled with ****'s)
`IndexError' if the file is empty
`ImportError' if numpy is requested but could not be imported
Example
-------
>>> f = AmberAsciiRestart('alanine-dipeptide.inpcrd')
>>> coordinates = f.coordinates
"""
def __init__(self, filename, asNumpy=False):
# Make sure numpy is available if requested
if asNumpy and np is None:
raise ImportError('asNumpy=True: numpy is not available')
self._asNumpy = asNumpy
self.filename = filename
with open(filename, 'r') as f:
lines = f.readlines()
# Get rid of trailing blank lines
while lines and not lines[-1].strip():
lines.pop()
self._parse(lines)
def __str__(self):
return self.filename
def _parse(self, lines):
""" Parses through the inpcrd file """
global VELSCALE
self.title = lines[0].strip()
self.time = None
try:
words = lines[1].split()
self.natom = int(words[0])
except (IndexError, ValueError):
raise TypeError('Unrecognized file type [%s]' % self.filename)
if len(words) >= 2:
self.time = float(words[1]) * units.picoseconds
if len(lines) == int(ceil(self.natom / 2.0) + 2):
hasbox = hasvels = False
self.boxVectors = self.velocities = None
elif self.natom in (1, 2) and len(lines) == 4:
# This is the _only_ case where line counting does not work -- there
# is either 1 or 2 atoms and there are 4 lines. The 1st 3 lines are
# the title, natom/time, and coordinates. The 4th are almost always
# velocities since Amber does not make it easy to make a periodic
# system with only 2 atoms. If natom is 1, the 4th line is either a
# velocity (3 #'s) or a box (6 #'s). If natom is 2, it is a bit
# ambiguous. However, velocities (which are scaled by 20.445) have a
# ~0% chance of being 60+, so we can pretty easily tell if the last
# line has box dimensions and angles or velocities. I cannot
# envision a _plausible_ scenario where the detection here will fail
# in real life.
line = lines[3]
if self.natom == 1:
tmp = [line[i:i+12] for i in range(0, 72, 12) if line[i:i+12]]
if len(tmp) == 3:
hasvels = True
hasbox = False
self.boxVectors = False
elif len(tmp) == 6:
hasbox = True
hasvels = False
self.velocities = None
else:
raise TypeError('Unrecognized line in restart file %s' %
self.filename)
else:
# Ambiguous case
tmp = [float(line[i:i+12]) >= 60.0 for i in range(0, 72, 12)]
if any(tmp):
hasbox = True
hasvels = False
self.velocities = False
else:
hasvels = True
hasbox = False
self.boxVectors = False
elif len(lines) == int(ceil(self.natom / 2.0) + 3):
hasbox = True
hasvels = False
self.velocities = None
elif len(lines) == int(2 * ceil(self.natom / 2.0) + 2):
hasbox = False
self.boxVectors = None
hasvels = True
elif len(lines) == int(2 * ceil(self.natom / 2.0) + 3):
hasbox = hasvels = True
else:
raise TypeError('Badly formatted restart file. Has %d lines '
'for %d atoms.' % (len(self.lines), self.natom))
if self._asNumpy:
coordinates = np.zeros((self.natom, 3), np.float32)
if hasvels:
velocities = np.zeros((self.natom, 3), np.float32)
if hasbox:
boxVectors = np.zeros((3, 3), np.float32)
else:
coordinates = [[0.0, 0.0, 0.0] for i in range(self.natom)]
if hasvels:
velocities = [[0.0, 0.0, 0.0] for i in range(self.natom)]
if hasbox:
boxVectors = [[0.0, 0.0, 0.0] for i in range(3)]
# Now it's time to parse. Coordinates first
startline = 2
endline = startline + int(ceil(self.natom / 2.0))
idx = 0
for i in range(startline, endline):
line = lines[i]
coordinates[idx][0] = float(line[ 0:12])
coordinates[idx][1] = float(line[12:24])
coordinates[idx][2] = float(line[24:36])
idx += 1
if idx < self.natom:
coordinates[idx][0] = float(line[36:48])
coordinates[idx][1] = float(line[48:60])
coordinates[idx][2] = float(line[60:72])
idx += 1
self.coordinates = units.Quantity(coordinates, units.angstroms)
startline = endline
# Now it's time to parse velocities if we have them
if hasvels:
endline = startline + int(ceil(self.natom / 2.0))
idx = 0
for i in range(startline, endline):
line = lines[i]
velocities[idx][0] = float(line[ 0:12]) * VELSCALE
velocities[idx][1] = float(line[12:24]) * VELSCALE
velocities[idx][2] = float(line[24:36]) * VELSCALE
idx += 1
if idx < self.natom:
velocities[idx][0] = float(line[36:48]) * VELSCALE
velocities[idx][1] = float(line[48:60]) * VELSCALE
velocities[idx][2] = float(line[60:72]) * VELSCALE
idx += 1
startline = endline
self.velocities = units.Quantity(velocities,
units.angstroms/units.picoseconds)
if hasbox:
line = lines[startline]
try:
tmp = [float(line[i:i+12]) for i in range(0, 72, 12)]
except (IndexError, ValueError):
raise ValueError('Could not parse box line in %s' %
self.filename)
lengths = tmp[:3]
angles = tmp[3:]
_box_vectors_from_lengths_angles(lengths, angles, boxVectors)
self.boxVectors = units.Quantity(boxVectors, units.angstroms)
class AmberNetcdfRestart(object):
"""
Amber restart/inpcrd file in the NetCDF format (full double-precision
coordinates, velocities, and unit cell parameters). Reads NetCDF restarts
written by LEaP and pmemd/sander. Requires scipy to parse NetCDF files.
Parameters
----------
filename : str
Name of the restart file
asNumpy : bool (False)
Load the coordinates, velocities, and box as numpy ndarray objects
Attributes
----------
coordinates : natom x 3 array, Quantity
Particle positions with units of length
velocities : natom x 3 array, Quantity
Particle velocities with units of length per time (None if velocities
are not present in the inpcrd file)
boxVectors : 3 x 3 array, Quantity
Box vectors with units of length (None if no box is present in the
inpcrd file)
time : float, Quantity
Simulation time (None if not present) with units of time
title : str
Title of the inpcrd file
filename : str
Name of the file we are parsing
natom : int
Number of atoms in the inpcrd file
Raises
------
`IOError' if the file does not exist
`TypeError' if the file is not a NetCDF v3 file
`ImportError' if scipy is not available
Example
-------
>>> f = AmberNetcdfRestart('alanine-dipeptide.ncrst')
>>> coordinates = f.coordinates
"""
def __init__(self, filename, asNumpy=False):
try:
from scipy.io.netcdf import NetCDFFile
except ImportError:
raise ImportError('scipy is necessary to parse NetCDF restarts')
self.filename = filename
self.velocities = self.boxVectors = self.time = None
# Extract the information from the NetCDF file. We need to make copies
# here because the NetCDF variables are mem-mapped, but is only mapped
# to valid memory while the file handle is open. Since the context
# manager GCs the ncfile handle, the memory for the original variables
# is no longer valid. So copy those arrays while the handle is still
# open. This is unnecessary in scipy v.0.12 and lower because NetCDFFile
# accidentally leaks the file handle, but that was 'fixed' in 0.13. This
# fix taken from MDTraj
ncfile = NetCDFFile(filename, 'r')
try:
self.natom = ncfile.dimensions['atom']
self.coordinates = np.array(ncfile.variables['coordinates'][:])
if 'velocities' in ncfile.variables:
vels = ncfile.variables['velocities']
self.velocities = np.array(vels[:]) * vels.scale_factor
if ('cell_lengths' in ncfile.variables and
'cell_angles' in ncfile.variables):
self.boxVectors = np.zeros((3,3), np.float32)
_box_vectors_from_lengths_angles(
ncfile.variables['cell_lengths'][:],
ncfile.variables['cell_angles'][:],
self.boxVectors,
)
if 'time' in ncfile.variables:
self.time = ncfile.variables['time'].getValue()
finally:
ncfile.close()
# They are already numpy -- convert to list if we don't want numpy
if not asNumpy:
self.coordinates = self.coordinates.tolist()
if self.velocities is not None:
self.velocities = self.velocities.tolist()
if self.boxVectors is not None:
self.boxVectors = self.boxVectors.tolist()
# Now add the units
self.coordinates = units.Quantity(self.coordinates, units.angstroms)
if self.velocities is not None:
self.velocities = units.Quantity(self.velocities,
units.angstroms/units.picoseconds)
if self.boxVectors is not None:
self.boxVectors = units.Quantity(self.boxVectors, units.angstroms)
self.time = units.Quantity(self.time, units.picosecond)
def _box_vectors_from_lengths_angles(lengths, angles, boxVectors):
"""
Converts lengths and angles into a series of box vectors and modifies
boxVectors in-place (it must be a mutable sequence)
Parameters
----------
lengths : 3-element array of floats
Lengths of the 3 periodic box vectors
angles : 3-element array of floats
Angles (in degrees) between the 3 periodic box vectors
boxVectors : mutable 3x3 sequence
"""
alpha = angles[0] * pi / 180.0
beta = angles[1] * pi / 180.0
gamma = angles[2] * pi / 180.0
boxVectors[0][0] = lengths[0]
boxVectors[1][0] = lengths[1] * cos(gamma)
boxVectors[1][1] = lengths[1] * sin(gamma)
boxVectors[2][0] = cx = lengths[2] * cos(beta)
boxVectors[2][1] = cy = lengths[2] * (cos(alpha) - cos(beta) * cos(gamma))
boxVectors[2][2] = sqrt(lengths[2]*lengths[2] - cx*cx - cy*cy)
boxVectors[0][1] = boxVectors[0][2] = boxVectors[1][2] = 0.0
# Now make sure any vector close to zero is zero exactly
for i in range(3):
for j in range(3):
if abs(boxVectors[i][j]) < TINY:
boxVectors[i][j] = 0.0
def readAmberCoordinates(filename, asNumpy=False):
"""
Read atomic coordinates (and optionally, box vectors) from Amber formatted coordinate file.
ARGUMENTS
filename (string) - name of Amber coordinates file to be read in
system (simtk.openmm.System) - System object for which coordinates are to be read
OPTIONAL ARGUMENTS
verbose (boolean) - if True, will print out verbose information about the file being read
asNumpy (boolean) - if True, results will be returned as Numpy arrays instead of lists of Vec3s
RETURNS
coordinates, velocities, boxVectors
The velocities and boxVectors will be None if they are not found in the
restart file
EXAMPLES
Read coordinates in vacuum.
>>> directory = os.path.join(os.getenv('YANK_INSTALL_DIR'), 'test', 'systems', 'alanine-dipeptide-gbsa')
>>> crd_filename = os.path.join(directory, 'alanine-dipeptide.inpcrd')
>>> coordinates = readAmberCoordinates(crd_filename)
>>> coordinates, velocities, box_vectors = readAmberCoordinates(crd_filename)
Read coordinates in solvent.
>>> directory = os.path.join(os.getenv('YANK_INSTALL_DIR'), 'test', 'systems', 'alanine-dipeptide-explicit')
>>> crd_filename = os.path.join(directory, 'alanine-dipeptide.inpcrd')
>>> [coordinates, box_vectors] = readAmberCoordinates(crd_filename, read_box=True)
>>> coordinates, velocities, box_vectors = readAmberCoordinates(crd_filename)
"""
# Open coordinate file for reading.
infile = open(filename, 'r')
# Read title
title = infile.readline().strip()
if verbose: print "title: '%s'" % title
# Read number of atoms
natoms = int(infile.readline().split()[0])
if verbose: print "%d atoms" % natoms
# Allocate storage for coordinates
coordinates = []
# Read coordinates
mm = simtk.openmm
natoms_read = 0
while (natoms_read < natoms):
line = infile.readline()
if len(line) == 0:
raise ValueError("Unexpected end of file while reading coordinates")
line = line.strip()
elements = line.split()
while (len(elements) > 0):
coordinates.append(mm.Vec3(float(elements.pop(0)), float(elements.pop(0)), float(elements.pop(0))))
natoms_read += 1
if asNumpy:
newcoords = numpy.zeros([natoms,3], numpy.float32)
for i in range(len(coordinates)):
for j in range(3):
newcoords[i,j] = coordinates[i][j]
coordinates = newcoords
# Assign units.
coordinates = units.Quantity(coordinates, units.angstroms)
# Read velocities if requested.
velocities = None
if (read_velocities):
# Read velocities
velocities = []
natoms_read = 0
while (natoms_read < natoms):
line = infile.readline()
if len(line) == 0:
raise ValueError("Unexpected end of file while reading velocities")
line = line.strip()
elements = line.split()
while (len(elements) > 0):
velocities.append(20.455*mm.Vec3(float(elements.pop(0)), float(elements.pop(0)), float(elements.pop(0))))
natoms_read += 1
if asNumpy:
newvel = numpy.zeros([natoms,3], numpy.float32)
for i in range(len(velocities)):
for j in range(3):
newvel[i,j] = velocities[i][j]
velocities = newvel
# Assign units.
velocities = units.Quantity(velocities, units.angstroms/units.picoseconds)
# Read box size if present
box_vectors = None
if (read_box):
line = infile.readline()
if len(line) == 0:
raise ValueError("Unexpected end of file while reading box vectors")
line = line.strip()
elements = line.split()
nelements = len(elements)
box_dimensions = [0.0]*nelements
for i in range(nelements):
box_dimensions[i] = float(elements[i])
# TODO: Deal with non-standard box sizes.
if nelements == 6:
if asNumpy:
a = units.Quantity(numpy.array([box_dimensions[0], 0.0, 0.0]), units.angstroms)
b = units.Quantity(numpy.array([0.0, box_dimensions[1], 0.0]), units.angstroms)
c = units.Quantity(numpy.array([0.0, 0.0, box_dimensions[2]]), units.angstroms)
else:
a = units.Quantity(mm.Vec3(box_dimensions[0], 0.0, 0.0), units.angstroms)
b = units.Quantity(mm.Vec3(0.0, box_dimensions[1], 0.0), units.angstroms)
c = units.Quantity(mm.Vec3(0.0, 0.0, box_dimensions[2]), units.angstroms)
box_vectors = [a,b,c]
else:
raise Exception("Don't know what to do with box vectors: %s" % line)
# Close file
infile.close()
if box_vectors and velocities:
return (coordinates, box_vectors, velocities)
if box_vectors:
return (coordinates, box_vectors)
if velocities:
return (coordinates, velocities)
return coordinates
try:
crdfile = AmberNetcdfRestart(filename)
except ImportError:
# See if it's an ASCII file. If so, no need to complain
try:
crdfile = AmberAsciiRestart(filename)
except TypeError:
raise TypeError('Problem parsing %s as an ASCII Amber restart file '
'and scipy could not be imported to try reading as '
'a NetCDF restart file.' % filename)
except (IndexError, ValueError):
raise TypeError('Could not parse Amber ASCII restart file %s' %
filename)
except ImportError:
raise ImportError('Could not find numpy; cannot use asNumpy=True')
except TypeError:
# We had scipy, but this is not a NetCDF v3 file. Try as ASCII now
try:
crdfile = AmberAsciiRestart(filename)
except TypeError:
raise TypeError('Problem parsing %s as an ASCII Amber restart file'
% filename)
except (IndexError, ValueError):
raise TypeError('Could not parse Amber ASCII restart file %s' %
filename)
# Import error cannot happen, since we had scipy which has numpy as a
# prereq. Do not catch that exception (only catch what you intend to
# catch...)
# We got here... one of the file types worked. Return the coordinates,
# velocities, and boxVectors
return crdfile.coordinates, crdfile.velocities, crdfile.boxVectors
#=============================================================================================
# MAIN AND TESTS
......
import unittest
from validateConstraints import *
from simtk.openmm.app import *
from simtk.openmm import *
from simtk.unit import *
import simtk.openmm.app.element as elem
def compareByElement(array1, array2, cmp):
for x, y in zip(array1, array2):
cmp(x, y)
class TestAmberInpcrdFile(unittest.TestCase):
"""Test the Amber inpcrd file parser"""
def test_CrdVelBox(self):
""" Test parsing ASCII restarts with crds, vels, and box """
cmp = self.assertAlmostEqual
inpcrd = AmberInpcrdFile('systems/crds_vels_box.rst7')
self.assertEqual(len(inpcrd.positions), 2101)
compareByElement(inpcrd.positions[-1].value_in_unit(angstroms),
[3.5958082, 8.4176792, -8.2954064], cmp)
compareByElement(inpcrd.velocities[-1].value_in_unit(angstroms/picoseconds),
[0.3091332*20.455, 0.7355925*20.455, -0.1206961*20.455], cmp)
compareByElement(inpcrd.boxVectors[0].value_in_unit(angstroms),
[30.2642725, 0.0, 0.0], cmp)
def test_NetCDF(self):
""" Test NetCDF restart file parsing """
cmp = self.assertAlmostEqual
try:
from scipy.io import netcdf
except ImportError:
print('Not testing NetCDF file parser... scipy cannot be found')
else:
inpcrd = AmberInpcrdFile('systems/amber.ncrst')
self.assertEqual(len(inpcrd.positions), 2101)
compareByElement(inpcrd.positions[0].value_in_unit(angstroms),
[6.82122492718229, 6.6276250662042, -8.51668999892245],
cmp)
compareByElement(inpcrd.velocities[-1].value_in_unit(angstroms/picosecond),
[0.349702202733541*20.455, 0.391525333168534*20.455,
0.417941679767662*20.455], cmp)
self.assertAlmostEqual(inpcrd.boxVectors[0][0].value_in_unit(angstroms),
30.2642725, places=6)
def test_CrdBox(self):
""" Test parsing ASCII restarts with only crds and box """
inpcrd = AmberInpcrdFile('systems/crds_box.rst7')
self.assertEqual(len(inpcrd.positions), 18660)
self.assertTrue(inpcrd.velocities is None)
self.assertTrue(inpcrd.boxVectors is not None)
def test_CrdVel(self):
inpcrd = AmberInpcrdFile('systems/crds_vels.rst7')
self.assertTrue(inpcrd.boxVectors is None)
self.assertTrue(inpcrd.velocities is not None)
def test_CrdOnly(self):
inpcrd = AmberInpcrdFile('systems/crdsonly.rst7')
self.assertTrue(inpcrd.boxVectors is None)
self.assertTrue(inpcrd.velocities is None)
if __name__ == '__main__':
unittest.main()
This source diff could not be displayed because it is too large. You can view the blob instead.
ACE
28 0.1100000E+05
6.9962325 7.1345361 -3.9713983 7.4756482 6.1688310 -3.8111566
8.5024408 6.3930528 -3.5221598 7.4708173 5.7449547 -4.8153505
6.8002949 5.4664470 -2.6846071 7.1210336 4.3039353 -2.4099316
5.8138412 6.2015113 -2.0369948 5.6437332 7.0956281 -2.4748521
4.9765730 5.7180343 -0.9552686 5.5952335 5.0377318 -0.3699927
4.5105579 6.8291112 0.0795226 5.4196673 7.2692444 0.4892821
3.8405864 7.5537576 -0.3832260 3.7600399 6.2095975 1.2450279
3.0614461 7.0866468 2.0205499 3.9472641 4.9020081 1.4914431
3.4219922 4.6877864 2.2659097 3.7335795 4.9588789 -1.4954454
2.9265073 5.7168640 -2.1242842 4.4787994 4.4294475 0.8466484
2.5980237 6.7854333 2.8054767 3.2160253 7.9534080 1.6378901
3.5172878 3.6766505 -1.2008776 4.1472250 3.2061006 -0.5669477
2.4677851 2.8846866 -1.7794578 2.8829398 2.5139385 -2.7166333
2.3438054 2.0729996 -1.0625940 1.5440133 3.4553999 -1.8744943
0.3799223 0.0175576 1.1999574 0.3523292 -0.2043193 0.0353460
1.1942188 -1.4410315 -1.7982354 -0.5852708 -0.9087781 0.3223661
0.1459748 0.0526223 0.2682160 -0.0465667 -0.1870169 0.1459932
-0.2892203 0.0015456 -0.0112940 0.1854616 -0.2737819 -0.7785389
-0.2392158 0.1749611 -0.1239180 -0.3400171 0.0531231 -0.1587713
-0.4704835 -0.1493877 -0.2567553 -0.6101138 -0.0392770 -0.0635170
0.5715057 0.1942655 -1.2772686 -0.1237689 -0.3449472 0.2714899
-0.0185239 -0.0150607 0.0391274 -0.1280282 -0.0046097 -0.1994271
-0.3155035 0.3668607 -0.2215361 0.1294219 -0.1747917 -0.0917708
0.0742998 0.1509489 -0.2851266 0.4923665 -1.0386246 1.0229978
-0.8227836 1.0624132 0.0013427 -0.0778814 -0.1859122 -0.3774084
0.2098003 0.1213628 -0.2466628 -0.1936209 -0.2478820 -0.1148687
0.0315637 0.2866246 -0.0746640 -0.5854400 -0.8935872 0.0990994
0.6063127 -0.1110186 -0.4168450 -0.8390447 -1.1240213 -0.3891693
ACE
2101 0.3000000E+02
6.6528795 6.6711416 -8.5963255 7.3133773 5.8359736 -8.8294175
8.3254058 6.2227613 -8.7098593 7.0833200 5.5038197 -9.8417650
7.1129439 4.6170351 -7.9729560 7.6303627 3.5666399 -8.3311917
6.3761056 4.8554620 -6.8751125 5.9039246 5.7445008 -6.7929238
6.0447077 3.9283389 -5.8125782 6.8979091 3.2663149 -5.6646868
5.9077064 4.7210133 -4.5091973 5.2028798 5.5496236 -4.5779731
5.5800796 4.0150093 -3.7460988 6.9002716 5.0401011 -4.1912393
4.7952693 3.0705888 -6.1424508 3.8493187 3.6503017 -6.6433398
4.8450024 1.7834777 -5.8522371 5.7396170 1.4538037 -5.5189510
3.7804498 0.8071210 -6.0800696 4.1281999 0.0097241 -6.7368278
3.4684012 0.4072121 -5.1152905 2.8608668 1.3166778 -6.3678526
-4.4311312 -3.3985333 7.5686027 -4.6643800 -4.1002052 8.1764541
-5.2198519 -2.8592058 7.5113552 -7.6960453 8.9199944 1.0296350
-7.8854325 9.6803368 1.5794020 -8.1099333 9.1220912 0.1905370
0.1451588 -2.5281052 -1.1211880 -0.2239684 -3.2575269 -0.6232713
-0.0371471 -2.7455722 -2.0353567 8.7116838 -1.3316794 -1.6187430
9.0519420 -1.9066026 -0.9332362 9.3779433 -1.3574750 -2.3055215
-10.4131724 12.1243873 2.0500842 -9.6691106 11.6460594 2.4158797
-10.1512694 13.0440506 2.0931903 4.0538125 -5.2693613 -15.5540125
4.4591370 -4.4362243 -15.3135407 3.3682861 -5.4001189 -14.8988882
5.6647331 -3.5841356 11.6658096 6.1321161 -3.9314016 10.9060785
5.0840167 -4.2956434 11.9355447 9.5316267 -9.8663447 -3.6613686
9.4582532 -9.1067799 -4.2392176 8.6479020 -10.2331465 -3.6345574
0.5958009 -2.7052364 2.3033699 -0.1209721 -2.7031420 2.9377703
0.5660982 -1.8351250 1.9055562 -0.4483292 -6.8967577 5.8066791
-0.5387259 -6.3426898 6.5819655 -0.0785866 -7.7148422 6.1387336
9.1737775 -1.8065258 -14.8736072 8.7600371 -1.1525784 -15.4369931
9.5936836 -2.4151311 -15.4814807 -6.1819982 -1.4037586 -6.1624490
-6.1756537 -1.7117455 -5.2561733 -5.9777843 -0.4706999 -6.0997599
8.1223943 -1.2600299 -10.5851782 7.6938972 -0.4367063 -10.3511692
8.8254465 -1.3552180 -9.9426141 0.1235629 -7.2187071 -4.1414472
0.3564289 -7.2064123 -5.0698082 -0.7333952 -6.7939259 -4.1038251
6.6777706 -5.8046476 -6.7009542 6.4018769 -4.9424230 -6.3900147
6.0418312 -6.4109668 -6.3212308 12.1404317 4.1554796 10.9118672
11.7448245 3.4617186 11.4395248 12.6499909 3.6905963 10.2481920
6.1730731 -7.6657776 -14.9836308 5.4083778 -7.2572403 -15.3893034
6.6441107 -6.9395467 -14.5750429 4.0420835 -12.3748742 -8.4399115
4.6998382 -12.9025460 -7.9869733 4.4262338 -12.1987707 -9.2987758
-2.8962669 13.1417335 8.5416159 -3.0037805 13.5244405 9.4123673
-3.6383307 13.4778045 8.0389933 -7.1384181 -3.1456411 10.4347716
-7.8344142 -2.5465498 10.7047920 -6.9410753 -2.8925984 9.5329639
-9.2507746 2.8744580 2.4875251 -9.7474617 2.0652605 2.6089054
-8.6060747 2.6608798 1.8130044 -12.4275210 -5.5989559 -4.3751772
-13.1212046 -5.0466928 -4.0145660 -12.8367998 -6.0433833 -5.1176104
-4.9655409 8.7815060 4.0676161 -4.5518869 7.9223684 4.1513114
-4.4360736 9.2397016 3.4149653 0.6127160 -2.5809375 -9.6218374
0.6475227 -2.1994125 -8.7446493 1.0887087 -3.4076016 -9.5425332
7.2646752 14.0134239 3.7701171 7.2514612 13.0906270 4.0240915
7.2183054 13.9994236 2.8141435 -5.6507320 4.2377052 1.5721888
-5.1860129 3.9301156 0.7939493 -5.8107991 5.1663477 1.4041604
3.8013765 -4.5010158 0.5780556 3.4503230 -4.0630626 -0.1973090
3.3553936 -5.3477491 0.5973948 12.0346758 9.7931458 -3.1674770
11.2588672 9.9981138 -2.6456139 11.7456899 9.1041191 -3.7657755
-6.8405339 -15.4235811 -6.3204624 -6.4259607 -15.7878538 -7.1025534
-7.7700347 -15.6266491 -6.4254544 -1.0877471 0.4721575 17.0842186
-0.3098068 0.9438126 17.3818464 -0.7665945 -0.4006161 16.8575931
0.9957666 -6.5733248 3.3620725 0.6106493 -6.6990931 4.2293088
1.9245481 -6.4170002 3.5328332 5.8103371 -3.1760467 -14.9919550
6.5491450 -3.7678605 -15.1339099 5.6317949 -3.2366484 -14.0535084
-1.7790617 2.6587259 -4.7862095 -1.5269261 2.1281609 -5.5419610
-1.6599999 2.0774755 -4.0350743 6.4696543 5.1076055 12.6182208
5.5161490 5.1595384 12.6842689 6.6290017 4.3740292 12.0243301
-11.4531217 -3.6360620 -6.4002387 -11.4689420 -4.0478256 -5.5362755
-12.2688995 -3.9172689 -6.8145587 1.2210391 1.5341357 4.5195873
0.5420540 2.1104031 4.8704817 0.7379733 0.8148802 4.1127079
-5.1794148 -2.3888267 -0.3429046 -5.0260482 -3.0307677 0.3503647
-4.3652090 -2.3806274 -0.8461278 5.3200824 -2.1729931 16.9046154
5.4306537 -2.4915627 16.0087811 6.2119613 -2.0167610 17.2150591
-11.9362681 -11.9246810 -1.9358149 -12.1081280 -12.3762428 -1.1095051
-10.9852489 -11.9640998 -2.0370102 -2.2000822 -8.9716721 -9.8778771
-2.7221760 -8.9147262 -10.6781315 -1.3719150 -9.3604364 -10.1593612
-11.6567132 -9.9560848 2.3558001 -11.0197185 -10.3511806 1.7605112
-11.6718517 -9.0309228 2.1106921 4.2461244 0.8810145 2.1250698
4.3441634 1.3995854 1.3265058 3.9982702 0.0096829 1.8159074
-5.2003207 -4.2898072 4.9801128 -4.8294254 -4.0297495 5.8233437
-4.5193363 -4.8261376 4.5741057 4.0652346 -8.7119477 -11.9795807
3.7420092 -8.9317583 -12.8533315 3.3966462 -8.1314699 -11.6158955
-3.4507880 -3.8228042 -2.3362905 -2.7027436 -4.2275762 -1.8971764
-4.1821104 -4.4139147 -2.1574394 -3.3772937 6.9332532 8.9290155
-2.7297600 7.0920082 9.6158407 -2.8608826 6.8516606 8.1272088
-7.5578637 5.0612225 -2.8813250 -8.2206129 5.7399229 -2.7534150
-8.0229327 4.2395817 -2.7236889 1.7837101 12.9920220 6.6503224
2.1296588 12.4427840 7.3538058 1.8432628 12.4443443 5.8675489
7.3218678 1.0994545 -7.2004125 7.4179153 1.9728188 -7.5802039
7.8203432 0.5280859 -7.7846146 2.6379471 5.2400444 -3.1291468
2.7852163 5.3788804 -4.0647045 1.9610060 4.5643806 -3.0909218
8.9322052 -4.7490225 6.0188726 8.0707720 -4.6504240 5.6133569
9.3191775 -3.8746423 5.9747866 0.8481774 -5.9393376 13.7625787
1.0139859 -6.8453446 14.0231372 1.7171712 -5.5407318 13.7157272
-0.2386951 0.6833404 1.1471316 -0.8622496 1.0493148 1.7744069
-0.7722159 0.1368370 0.5701382 -5.2453531 4.3294541 -8.1077462
-5.7649331 3.7714780 -7.5290139 -5.2287074 5.1799778 -7.6689249
-2.6155970 -2.4397197 2.1944482 -3.5382273 -2.6169389 2.3776926
-2.2432030 -2.2057229 3.0446247 -9.3001104 -7.3487775 5.7421907
-8.8583121 -6.7859640 6.3780263 -10.1175334 -7.6001831 6.1721287
12.7638871 7.2480337 2.3966684 12.4285921 7.9496512 2.9548279
13.6711233 7.4961888 2.2189793 -3.6050462 6.9771972 -10.7231089
-3.0026135 6.7018516 -11.4141165 -4.2437678 6.2666375 -10.6650440
3.8706226 -1.6493826 1.2418912 4.0489394 -2.5597939 1.0061239
3.3237661 -1.3199726 0.5286810 6.3660287 -4.3962186 -0.6955786
6.9748601 -4.4589062 0.0403742 5.5073803 -4.5744879 -0.3119450
-9.6579593 12.1085373 -5.0985614 -9.8691556 11.2056943 -4.8608589
-9.2075078 12.4593702 -4.3302896 12.1620776 -9.5567430 0.7898265
13.0363306 -9.9362265 0.7009120 11.7742122 -10.0201039 1.5321801
10.3301730 -1.3281712 -3.7642053 10.6166925 -0.5572140 -4.2538616
10.9570753 -2.0106873 -4.0037822 14.9032487 9.3199913 -6.6821575
14.9129033 10.2760505 -6.6364466 14.4632827 9.0461586 -5.8773734
-1.5735958 -4.7749101 -0.6843086 -2.2249385 -5.4756748 -0.6540851
-0.8217181 -5.1260259 -0.2072034 3.0473376 -6.9129781 -8.4878603
2.5439506 -7.2805604 -9.2143013 3.3701711 -7.6766683 -8.0095428
-7.0650457 12.3085687 -8.9266202 -7.0007700 12.9205471 -9.6598206
-7.4021393 12.8365132 -8.2028286 -4.8848643 3.4262275 13.2316715
-5.1735529 3.2896070 14.1340160 -4.9993922 2.5736522 12.8118731
-7.6716282 -8.2610274 3.5000120 -8.3241586 -8.1121456 4.1843147
-7.4489700 -7.3844322 3.1865857 1.8746620 -1.1406963 10.1971316
2.0050823 -1.3760655 11.1157304 2.0597034 -0.2022192 10.1617459
1.0670293 3.3398071 -2.2387270 1.1663913 2.4189857 -2.4804849
0.4629435 3.3286773 -1.4963064 1.2621987 -2.3954976 7.5261342
1.6642778 -2.0162322 8.3076213 0.3498918 -2.5446041 7.7745193
12.0068935 -11.3808753 -8.0536525 11.3915562 -12.1138988 -8.0372722
11.8426383 -10.9119484 -7.2355085 6.2685333 10.9785573 -4.3974526
5.9334597 10.1905494 -4.8252387 6.3254410 11.6265201 -5.0996901
1.9387944 -0.7098095 -0.4780333 1.6993797 0.1484128 -0.8278434
1.2614465 -1.3003100 -0.8077922 0.9574115 -5.1944610 0.8086486
0.8435696 -4.3765021 1.2926064 1.1847278 -5.8393976 1.4784366
-2.5654735 -13.7290506 1.7135959 -1.7549662 -13.7685867 1.2059082
-3.0651447 -13.0181604 1.3121041 -0.9874876 -10.7856117 1.5667433
-1.2223086 -10.9668407 0.6566626 -1.8249643 -10.7594905 2.0295417
12.1291132 -10.3670214 6.1212158 12.3672946 -11.2938055 6.1451498
11.2241024 -10.3602839 5.8095400 5.5888040 -5.1943880 -3.4089664
5.9088460 -5.0437043 -2.5195287 4.6353270 -5.1862534 -3.3250187
-2.3045843 4.3448349 15.5222599 -3.0940214 4.1533822 16.0285867
-1.6076013 4.3978211 16.1762011 12.4993406 -3.6166417 -2.9183252
12.9271616 -2.8787658 -2.4838827 12.3061532 -4.2318434 -2.2109092
8.2106475 -11.7511731 8.8475207 8.3959815 -12.0691523 7.9639075
8.6018475 -10.8779893 8.8748053 -1.4777265 -2.5021951 8.1915692
-2.3516353 -2.8755666 8.3060634 -1.5432944 -1.6214909 8.5607477
-10.2030178 -3.3987581 -11.5423252 -9.4138985 -2.9479284 -11.8427833
-10.3688434 -3.0368796 -10.6718209 -0.8878140 4.4243750 -7.1988115
-1.5167039 5.0415030 -7.5728199 -0.7656919 4.7234088 -6.2977583
11.5793180 1.0629397 -4.5662517 10.9287007 1.7465320 -4.4061569
12.2253747 1.4765377 -5.1387718 13.0020749 8.1639569 -8.3507344
13.2030459 7.2296120 -8.4040472 13.7222529 8.5351496 -7.8410370
4.6767903 -8.4291532 -3.1997314 5.4930984 -8.1136442 -3.5874515
4.4556754 -7.7723389 -2.5394777 1.7311949 -7.6102975 -10.5842098
1.1518013 -6.8484808 -10.5972599 1.1386278 -8.3613719 -10.5528537
2.3745040 7.5499486 6.4677237 3.1544299 7.5211265 5.9135424
2.2221525 8.4828427 6.6184862 14.5968815 5.9388671 -8.4845792
15.1973925 5.8506366 -9.2247371 15.1468902 5.8052003 -7.7126624
-3.8350795 13.8778662 -7.2043893 -3.2520249 13.1769629 -6.9128183
-3.7501915 13.8789549 -8.1578172 0.3107810 -3.4892508 11.8707061
0.7521334 -4.0206205 12.5333419 0.5328372 -2.5869378 12.1003890
-3.8287602 11.6332187 4.7410378 -2.9068861 11.5352262 4.9793180
-3.8110023 12.0731387 3.8911044 -8.6609485 4.6772850 -7.8354869
-8.2013389 5.5168982 -7.8291179 -9.2043349 4.6957072 -7.0476903
9.3191026 5.9461709 -3.2648035 9.3843956 6.4661643 -2.4638194
10.0043657 6.2962004 -3.8341239 6.9773812 1.4638788 5.2170832
6.5536084 0.6099690 5.1305584 6.8311656 1.7124405 6.1298099
13.5109111 2.1791937 0.2704200 13.3245799 1.4583871 -0.3312030
12.9675361 1.9976824 1.0372506 -0.4526794 -6.7912782 -7.0005308
-0.0740372 -6.0566883 -7.4834797 -1.2733734 -6.9796230 -7.4557445
-1.9495145 0.4470410 6.3912563 -1.7932515 1.1920522 6.9715770
-2.3971420 -0.1955381 6.9416685 -0.3368829 9.3029064 4.2858064
-1.0348289 9.1658473 4.9263671 -0.3983502 8.5487395 3.6995591
-2.4255843 -11.9291366 -4.9636002 -2.9419016 -11.9012807 -4.1580740
-1.6850878 -11.3468701 -4.7937100 3.8054252 -13.9424008 -5.2505290
3.0375012 -13.9402071 -5.8219482 4.5277434 -14.2050888 -5.8210403
-13.4483896 5.8513046 -10.3029312 -12.5698039 5.8213333 -9.9242220
-13.4494031 6.6412973 -10.8434332 11.8712711 -5.2534842 -0.7429260
11.0827669 -5.5943604 -0.3206743 12.5589774 -5.3569833 -0.0852180
-2.2802677 -11.9508074 -9.4119363 -2.8258117 -12.5303426 -8.8801914
-2.4338645 -11.0782263 -9.0496628 0.6367927 5.5878950 5.7071181
1.3980595 6.0312048 6.0815258 0.6374139 5.8477398 4.7858623
-0.3694185 -11.1076364 -1.5168891 0.4611936 -10.8103472 -1.1454937
-0.3430686 -12.0605512 -1.4303396 -1.0735117 10.3317067 1.1251792
-1.9058745 9.8775591 1.2561524 -1.0149564 10.9413498 1.8608003
4.3258601 15.9082461 3.7652660 3.5990354 15.8764319 3.1432166
4.4556112 14.9972351 4.0288102 -2.1935293 -15.7457813 7.0517200
-2.7547098 -15.1507031 6.5545377 -2.7297302 -16.5279422 7.1818920
10.5000160 8.7410463 3.7343812 9.9777367 7.9603959 3.5498787
10.0507563 9.4456330 3.2675244 8.3294097 6.3691798 0.2199511
8.3158091 5.4127189 0.1848872 7.4749291 6.6335246 -0.1209544
10.9327080 -5.9009033 4.6655421 10.9583192 -6.7046212 5.1847853
10.1544904 -5.4389879 4.9773809 15.1709112 -10.0217364 4.6431914
14.6755493 -10.8338701 4.5369497 14.6161253 -9.3493291 4.2478272
-6.2209480 -2.2520270 -3.4467659 -6.8460996 -2.9311991 -3.7000298
-5.9606507 -2.4862601 -2.5559169 7.2757472 -4.8114539 9.7097032
7.8762727 -5.4444336 9.3160821 6.4477107 -4.9486847 9.2495347
-9.8413334 -6.2591970 -4.5110472 -9.9064143 -6.4515065 -5.4464687
-10.7495337 -6.2130547 -4.2122583 2.4953089 5.7010508 -5.7782852
3.3953238 5.5019820 -6.0363098 1.9547414 5.1955287 -6.3852992
9.4922464 -0.0714228 -8.4816830 10.2445788 -0.6100393 -8.2364891
9.8551290 0.8060246 -8.6026539 10.9317597 5.2991700 -7.7625850
11.4493488 5.1912601 -8.5605128 10.6165759 6.2021378 -7.8018294
10.6405936 7.8734906 -5.1380967 11.3290541 7.7884824 -5.7976629
9.8454371 8.0450411 -5.6426047 -12.8550092 -9.6637976 -5.4115405
-13.4128823 -9.0707315 -5.9148119 -13.2856997 -9.7324374 -4.5594688
9.8655169 8.3939761 -1.4628326 9.8996325 9.3476353 -1.3879857
9.3681656 8.1111398 -0.6954492 -5.7111405 -14.6268502 2.5186235
-6.2437126 -15.1085007 3.1515623 -4.9026644 -15.1347070 2.4502151
4.6255297 -8.8902327 8.3871781 4.2285842 -9.1678548 9.2127640
5.1880123 -9.6221156 8.1338155 13.4570553 -10.3999305 -3.3117587
12.7145032 -10.0193088 -2.8427435 13.7455948 -11.1239971 -2.7561470
0.2354602 -1.1236335 13.1302517 -0.0518726 -1.5854742 13.9178905
1.0893739 -0.7597620 13.3640484 14.2016547 5.3278800 6.9639083
14.7641574 4.5543712 7.0027241 14.4138112 5.7364390 6.1246818
-0.1130515 14.6083887 -2.9744447 0.8386815 14.6651334 -2.8894963
-0.2671244 14.5651019 -3.9181712 1.5996233 4.3342722 -8.3240967
0.6899486 4.4417904 -8.0463130 1.7022846 3.3906946 -8.4480074
10.6024001 -1.4023788 9.6144022 9.7273254 -1.1698317 9.3039221
10.5543459 -2.3432964 9.7835081 7.5070718 1.1560125 -0.7403130
8.0933022 0.4293865 -0.9514537 6.6416958 0.8533209 -1.0155109
-4.5314658 1.6936460 3.1140845 -5.0099714 1.1795814 2.4636986
-5.0217507 2.5131358 3.1795749 -0.8635112 -2.2018976 15.3736881
-0.8682607 -3.1590772 15.3777358 -1.6704177 -1.9564627 15.8263418
-2.5454140 9.2406170 5.9929507 -2.9869706 8.7161874 6.6609576
-3.2110208 9.8618128 5.6974595 1.6310486 2.6716757 0.8866072
1.1713313 1.8344632 0.8236226 2.5222195 2.4780435 0.5958278
13.6312789 -8.2034268 -6.0724198 13.3047243 -9.0882327 -5.9089805
13.0713079 -7.6391641 -5.5392482 13.5812819 3.9357264 3.8200077
12.7700597 4.3862905 3.5851839 14.2344492 4.6330480 3.8778593
-2.1039512 -5.4990655 -4.3418141 -2.5217736 -5.8331041 -5.1355865
-2.8008493 -5.0290244 -3.8839645 -3.4016649 10.2869854 9.2101594
-3.1194432 11.0467222 8.7008630 -2.8001647 10.2606173 9.9542924
1.4461099 2.4369846 -14.1892044 0.9256265 1.7791762 -14.6503085
2.3523571 2.2256135 -14.4134146 1.9695339 10.7924856 4.9797255
2.7570846 10.3404135 4.6770265 1.2467556 10.2410093 4.6802305
5.1813837 -3.2435855 7.2921099 4.3443225 -3.6773252 7.4577306
5.3211798 -2.6911369 8.0611934 -8.4098907 -7.8198351 0.7093444
-9.0382911 -7.7896072 -0.0120648 -8.9292650 -7.6192309 1.4879586
-5.2083157 -2.6501273 2.7158029 -5.2963330 -3.0211550 3.5937683
-6.0896532 -2.3504202 2.4929764 -0.0763293 12.5921529 -8.5605588
-0.6110269 11.8189685 -8.3802366 0.4518113 12.3462978 -9.3200683
1.7415724 5.4624648 -0.1795973 1.9925043 5.2720356 -1.0834788
1.5518598 4.6053418 0.2019538 14.0313467 9.0391041 -0.9051524
13.7749547 8.1220636 -1.0027830 13.2944280 9.5333591 -1.2641715
-2.2962234 13.1307066 -2.5296651 -2.9951371 13.5582912 -3.0245621
-1.5394665 13.7068621 -2.6373480 -14.8766033 4.7158162 1.8756295
-15.4251049 3.9502406 2.0467196 -13.9803537 4.3821017 1.9156667
9.6400514 -7.7069220 -5.5533514 9.7856533 -7.7686114 -6.4973993
10.4033907 -7.2326689 -5.2237623 -11.3563930 1.8058856 -7.2958079
-12.0911412 1.3179196 -6.9239663 -10.7749371 1.1319343 -7.6478456
-3.8020967 -6.5650835 6.3193400 -3.1682755 -6.7426031 7.0143144
-3.7804188 -5.6141007 6.2125987 13.0491040 -8.3860975 4.1452929
12.2567339 -8.9099182 4.0269997 12.9036571 -7.9134999 4.9648834
4.9072784 9.9946746 8.3451324 4.3995095 10.0768892 9.1523767
5.5162148 9.2764925 8.5173025 8.3504411 12.7684268 -0.8167310
8.4919444 13.6533782 -0.4804725 7.4404157 12.7676467 -1.1135224
5.2614902 -8.8726802 0.9268419 5.5708261 -8.7581941 1.8254164
4.6250424 -9.5855369 0.9816261 1.6891615 2.4870018 -11.1052109
1.7715293 3.4178167 -11.3126502 2.2316007 2.0468579 -11.7596304
-0.5679768 11.5887107 -1.1193287 -0.8605803 11.2012310 -0.2944199
-1.2981918 12.1421602 -1.3962971 4.5147092 -13.4693383 -2.6734239
4.2624654 -13.6892492 -3.5702205 4.4882420 -12.5129306 -2.6448642
-10.4113359 3.9810139 -5.7792372 -10.8848529 4.7925600 -5.9620115
-10.9480129 3.2956990 -6.1774244 -3.2264781 2.3904580 17.4917786
-2.4899037 1.7981517 17.3405729 -3.0483865 2.7805253 18.3475605
-7.9152503 -10.9369932 3.3327964 -8.5321131 -11.2610187 3.9890887
-7.8940440 -9.9900498 3.4709277 -4.7188537 1.1653307 11.6438138
-4.0287463 0.5416315 11.8696079 -5.3965878 0.6324587 11.2279343
15.1070526 -4.7957992 -3.4589270 14.1931875 -4.5148220 -3.5051238
15.1290929 -5.4209292 -2.7343868 -7.4689360 11.1979026 -3.2522322
-7.3931806 11.1025734 -2.3028085 -6.6019715 11.4902695 -3.5335258
13.4322530 0.7808453 -6.8496011 13.8328501 0.0276892 -6.4154240
13.7987884 0.7704921 -7.7337823 -5.4865281 3.0969256 15.9764955
-6.3260297 2.7776190 16.3074218 -4.8401276 2.7563209 16.5948697
-8.1936418 -10.4780663 -4.4509877 -7.4654822 -10.9856116 -4.8093357
-8.0694101 -9.5977202 -4.8056552 -1.0823232 9.7540305 11.0565944
-0.7290708 10.0636201 11.8906201 -0.3439714 9.3185862 10.6306170
3.9365417 6.7344837 0.9763129 3.2221295 6.1112329 0.8443831
4.4344070 6.3761019 1.7111084 14.9786858 1.3221713 -2.8154513
14.7340083 1.9592001 -3.4866883 14.1512859 1.0868933 -2.3955878
-12.6505735 7.6964581 4.8569781 -12.6141882 8.0242937 3.9584060
-13.5857559 7.6284950 5.0494535 0.2274353 8.4035525 -5.2622905
1.1280925 8.1380504 -5.0763954 0.1599413 9.2887282 -4.9043236
-0.8240735 -5.1679767 -9.4183624 -1.1910551 -5.3844241 -10.2755129
-1.1800509 -4.3025433 -9.2170244 -11.5976350 0.8159504 2.4840672
-10.8482710 0.5851306 1.9350612 -12.3343684 0.3457242 2.0937556
-3.9050407 7.5935747 15.3245609 -3.4728299 8.1040489 14.6398407
-4.7890335 7.4434957 14.9895014 1.2270294 -5.6403305 9.9266057
0.4939431 -6.2556730 9.9135678 0.8645589 -4.8441607 10.3151422
-12.0808334 -1.4572506 8.0142160 -12.5814489 -0.6456399 8.0973065
-11.5432889 -1.3281605 7.2327984 0.8070408 6.9691789 -8.5233985
-0.1395144 6.8277866 -8.5068648 1.1787020 6.0918351 -8.6148738
0.8317302 -9.2260753 -6.9540830 0.3899996 -8.3866496 -6.8257458
0.7605717 -9.6661414 -6.1070233 -3.5993739 13.0332301 -9.9171428
-4.4463325 13.1344402 -10.3514808 -2.9706853 12.9514965 -10.6342914
0.0773091 10.8143151 -3.8981177 1.0074499 11.0340343 -3.9509704
-0.1082973 10.7823703 -2.9596287 -9.8988804 -6.8969626 9.8104865
-9.5518393 -6.2617387 10.4368131 -10.8477528 -6.7767911 9.8483283
13.3544240 -1.7312477 -1.0839426 13.6282381 -1.9803160 -0.2012067
13.1314894 -0.8031064 -1.0126273 -9.4208481 6.5143301 -11.7651061
-9.2022899 5.7718077 -11.2019677 -8.5830252 6.7847626 -12.1408067
-5.3951064 6.7296503 -2.4675605 -6.1417440 6.1388809 -2.5663315
-4.7267304 6.3705708 -3.0511420 -7.5510785 2.4425037 -12.0785791
-8.0683263 2.2635385 -12.8638549 -6.9582638 3.1478923 -12.3378657
-5.6831177 4.6649941 -12.6095378 -5.5807019 4.2753714 -13.4778332
-4.9417372 4.3277187 -12.1067137 2.9209349 -8.3187550 6.1508624
2.0532751 -8.6589138 6.3692435 3.4657403 -8.5518279 6.9025910
-4.9875924 4.4769936 9.0289147 -5.4714691 4.6187371 8.2152785
-4.3724568 5.2090792 9.0723977 3.1398151 -0.7779476 6.0368524
2.7249313 -0.0328404 5.6022048 2.4131955 -1.3590722 6.2616856
-8.6520378 -12.3439634 -7.3322708 -8.1474046 -12.4997184 -8.1305925
-8.8373688 -11.4049688 -7.3454444 -2.0382484 -7.6502544 3.5333289
-2.3558697 -8.5197890 3.7767588 -1.5392509 -7.3555867 4.2951717
7.8971776 7.9745658 -4.3699816 7.5441503 8.4963155 -3.6493008
8.2692160 7.2012313 -3.9459852 7.1564782 -13.3088353 -4.8263563
8.1122587 -13.2789598 -4.7836604 6.9651568 -13.5779214 -5.7248109
3.9818035 -14.7264437 -11.1704561 3.8991689 -14.7507537 -12.1237726
4.0604007 -13.7958645 -10.9605117 5.2577326 -11.7324939 7.7145287
4.8935017 -12.0467460 8.5420632 5.6021399 -12.5185470 7.2905758
14.8421457 7.0291494 4.8654506 14.1024198 7.4408796 5.3121221
14.8986486 7.4849339 4.0256293 2.4697528 15.4576262 -4.4976916
1.6334040 15.6971790 -4.8968996 2.9706199 15.0612283 -5.2105960
-3.1511073 1.5888324 -10.3052263 -2.4185889 1.5910252 -9.6890739
-3.6328450 0.7871132 -10.1017392 3.1466921 -2.7448341 -6.8169687
3.4767538 -2.3515930 -7.6248378 3.9333129 -2.9495036 -6.3114294
3.1690611 -5.5040787 11.8221700 2.7020111 -5.7556393 11.0254183
3.7752793 -6.2272023 11.9828673 12.3154957 2.2865367 6.0701356
12.2519931 1.5392008 5.4754185 12.9395824 2.8765803 5.6475293
0.7591640 -6.3127625 -14.0682128 0.9653713 -7.0856179 -14.5939550
1.6109739 -5.9854062 -13.7792671 1.0831083 13.7548432 3.5357424
1.8907705 13.3261270 3.2526946 1.2654429 14.0424962 4.4303047
4.9256485 5.2802507 3.2508802 4.2986788 4.7864485 3.7793688
5.6543452 4.6745070 3.1155747 4.8267587 -0.0230272 12.5578721
4.0587507 -0.1774709 13.1079110 4.6877439 0.8506081 12.1922658
5.3598037 -4.2101791 -12.2515252 5.6853507 -5.0821657 -12.0281636
6.1168038 -3.6355088 -12.1377859 9.2345239 -5.9782078 -0.1200710
8.4308152 -6.2509683 -0.5626610 9.0078839 -5.1471560 0.2973245
-1.8473334 -8.0414929 12.6423831 -2.6301167 -7.9849292 12.0944024
-1.4699696 -7.1623273 12.6124467 -12.7329189 9.5633590 7.1504723
-12.6508684 8.6125040 7.0771633 -11.9028072 9.8465454 7.5338154
3.7344727 13.8453660 -6.1055076 3.4777044 13.3166210 -6.8609748
4.6112209 13.5332660 -5.8815922 -7.1651902 8.0501766 12.2817188
-6.7455005 7.2664936 12.6365897 -6.4731200 8.4895779 11.7875556
14.2983971 -3.1502136 4.7920858 13.9453420 -3.7347606 5.4628232
15.1789935 -3.4847745 4.6222307 -9.0364080 -0.8524529 8.9115973
-8.5798055 -0.0745351 8.5913008 -9.9457693 -0.7246180 8.6415009
-7.8449112 8.0864782 4.8516598 -7.1189790 8.2398055 4.2468913
-8.4647882 7.5551597 4.3519749 3.8283550 15.7421708 -1.7720427
2.8757450 15.6511558 -1.7500808 4.1562609 14.8454548 -1.7041464
11.4273484 4.6895029 1.9522460 11.9327449 5.5023977 1.9551235
11.3011062 4.4892440 1.0247812 9.5455992 -10.2634188 -0.8289269
9.1190534 -9.7648823 -0.1319680 9.4603011 -9.7104780 -1.6055945
3.7476641 -9.5125325 -7.5209681 2.8048694 -9.6773384 -7.5354255
4.1423202 -10.3832907 -7.4734449 -0.7784530 0.2159420 -11.7252782
0.0710379 -0.2209420 -11.6642087 -0.6237195 1.0912254 -11.3700763
-11.4350284 -3.0791859 9.9758937 -12.2396010 -3.3395595 10.4243358
-11.7192267 -2.4317836 9.3306546 7.5232635 -7.3272336 -3.9759214
8.1773640 -7.3821711 -4.6726037 6.8837849 -6.6916423 -4.2973599
10.4262541 -9.8320639 3.1307813 9.8929629 -10.1092916 3.8757492
9.9338220 -9.1108226 2.7389224 9.4637289 4.1418887 -11.1783346
8.9522387 4.9049151 -11.4474077 9.1196777 3.4235697 -11.7092568
8.7996124 -8.0788563 -10.9113261 8.6285919 -7.5100286 -10.1607139
9.7529067 -8.1613138 -10.9370699 -7.0256789 0.9552668 14.7192340
-7.8778677 1.2120274 14.3669840 -6.4163269 1.6055688 14.3699071
8.1096904 2.0542324 12.5464066 8.0861143 2.2630845 13.4802464
8.0146253 1.1024092 12.5113774 10.1469294 11.0651736 -1.0256499
9.4599431 11.7256368 -0.9358165 10.8955910 11.4329084 -0.5560663
-3.8715417 -11.5907497 0.4511783 -3.9484971 -10.6587659 0.2469338
-4.7349455 -11.9520064 0.2505310 2.0567777 12.7090383 -1.3752903
2.1714423 12.3705161 -2.2632579 1.1640382 12.4590348 -1.1370757
-8.9291042 6.4608746 7.1375993 -9.4674123 5.6894773 6.9603917
-8.7427566 6.8266764 6.2729054 7.6889531 -1.7043915 -5.2642922
8.6023774 -1.9221240 -5.0786033 7.6047448 -0.7860293 -5.0078711
-0.6902892 6.1671750 11.5748338 -1.1142753 5.3196395 11.7095599
-0.5352635 6.2101305 10.6312482 3.8621209 5.8971628 -12.0985720
3.1162333 5.4274627 -12.4717547 3.8485947 5.6683593 -11.1692186
-2.0075179 3.5011138 12.2564005 -2.0932127 3.0515649 11.4156900
-2.9090396 3.6623788 12.5347601 14.7482129 -2.9790988 -9.0814927
14.6955215 -3.3895849 -9.9446014 14.3627974 -2.1116544 -9.2048899
-5.8246569 6.8786182 1.1781351 -6.4889294 7.5660810 1.2268041
-5.3236183 7.0851256 0.3891187 -6.1020449 -12.9219479 -5.1903045
-6.4842089 -12.9259090 -4.3127129 -6.4622781 -13.7021349 -5.6119348
14.0072420 -2.3531036 1.7229585 13.7214426 -2.4728445 2.6286144
14.3476333 -3.2094405 1.4640131 -12.2988207 -1.4747325 12.4833925
-12.7000009 -2.1641699 11.9542778 -11.3580674 -1.5817053 12.3427806
-13.8825987 7.7865972 -1.7989586 -14.0079953 6.9447475 -1.3610128
-14.7096315 8.2503347 -1.6678247 0.5942120 -9.2680747 7.3302871
0.9871118 -10.1240246 7.1593737 0.1273221 -9.3798954 8.1583824
-13.2832905 0.9091015 12.4040978 -12.6495426 1.3155547 11.8130046
-12.9747165 0.0084721 12.5034986 12.7035406 6.7082803 8.5404874
12.9893587 7.6014365 8.3486233 13.3334439 6.1516647 8.0826307
-4.7707668 8.9074825 -0.7835028 -5.1228158 8.1984340 -1.3215953
-5.3733682 9.6375642 -0.9252208 -13.6949317 -4.4676267 -7.5410652
-14.2547327 -3.8236827 -7.9748748 -13.5725003 -5.1569543 -8.1938055
13.6432944 2.5970432 8.6875096 14.5001651 3.0010396 8.5504280
13.4534347 2.1520080 7.8615987 -4.7917761 1.6649114 8.2853275
-4.6760503 2.6150453 8.2945510 -5.6910257 1.5302432 8.5844032
-3.5834573 6.2528104 12.1936045 -4.3676317 6.0502600 12.7037768
-3.4480854 7.1912514 12.3248858 6.7138492 -10.1887283 5.5093557
6.5893276 -11.0404418 5.0906549 6.2330873 -10.2548631 6.3344169
0.1178973 -14.1629413 7.4519251 0.8309273 -14.4731896 6.8937441
-0.6213950 -14.7304399 7.2336957 4.7889829 12.1665106 6.5978878
3.9077369 12.5387912 6.5655707 4.7274380 11.4608883 7.2417365
0.4791260 -9.9832707 -10.2749814 0.7533475 -10.6567512 -10.8974429
0.7941814 -10.2977700 -9.4275959 4.9202089 -6.0208572 8.7392340
4.7750258 -6.9296322 8.4760197 4.0883131 -5.5832920 8.5583529
-5.4366643 -11.9389516 2.7126387 -5.3665789 -12.8906043 2.6372920
-6.3039130 -11.7917963 3.0900734 9.4791444 2.9731736 -3.7773203
9.4094183 3.1905057 -4.7069099 9.3819691 3.8123362 -3.3272149
11.2506603 5.3364094 6.3992156 10.6096040 4.6288960 6.4677969
12.0778330 4.9370802 6.6685729 -14.6907845 8.0606918 2.5332639
-14.2906772 7.4819327 1.8842771 -14.3026315 8.9185021 2.3608381
8.6400536 10.7294624 2.9274760 7.8541794 10.4648875 2.4493194
8.3258363 10.9403234 3.8067012 2.0662317 -9.8449128 -0.4832599
1.7595635 -9.6694388 0.4063441 2.2053478 -8.9778044 -0.8640507
-6.6191485 10.9226649 5.0421697 -5.6761705 11.0545288 4.9440051
-6.7084236 9.9999335 5.2805573 14.2935216 1.1657824 -9.4698381
14.7948245 1.8317702 -8.9993198 14.5235045 1.2981789 -10.3895178
-3.2507082 6.7474973 2.5715097 -4.1437303 6.9249296 2.2761097
-3.0760516 5.8520759 2.2817729 -7.3185030 2.1094508 0.7629845
-6.9379890 2.9837956 0.6795455 -6.5673955 1.5342665 0.9086980
10.9568237 11.8663697 -7.2701042 10.6150439 11.6028820 -8.1245002
10.4775154 11.3248223 -6.6430301 -13.1030253 8.2685287 -7.7813138
-13.8668125 8.7111976 -7.4113067 -13.3681787 8.0371767 -8.6714834
13.3447247 10.8381103 3.1130032 13.8204475 10.6045929 3.9101162
13.9341937 10.5898731 2.4008681 6.2229375 -13.4765906 0.4633248
5.4041080 -13.3202213 -0.0070990 6.8904468 -13.0404252 -0.0662248
12.1111366 -1.2177832 -9.6478558 11.7509027 -1.6406178 -10.4273905
12.6651179 -0.5162891 -9.9902629 7.7980824 -7.7836051 11.3609131
7.8774019 -7.9594123 10.4233460 8.4928313 -7.1516197 11.5457108
1.1130516 8.4965559 9.4412803 1.6929189 8.0247653 10.0391091
1.6081842 9.2774770 9.1938172 7.0645514 -0.9475681 2.5187633
6.9880349 -0.0624747 2.1624115 6.2588489 -1.0745561 3.0197118
13.1254491 -2.6499844 10.5889227 13.4584555 -3.1112552 11.3587070
12.5609148 -1.9644503 10.9461003 8.5230233 -3.0360999 15.0589327
9.1772180 -2.4491558 14.6797789 9.0331503 -3.7578163 15.4265298
-11.8698884 12.0757241 -6.8573906 -11.0945321 12.1533301 -6.3014843
-11.6522778 11.3784155 -7.4759680 -11.4077859 9.3530614 2.7379116
-11.4456785 9.3418811 1.7815273 -11.4179842 10.2823457 2.9671682
-3.4062612 -10.1078465 10.3821272 -3.1823267 -10.6023339 9.5937318
-3.0122707 -10.6067443 11.0977419 -1.9994436 1.6400332 14.5315686
-2.3540623 2.4705055 14.8490482 -1.9185339 1.0984023 15.3166300
5.5190730 -3.3613281 -5.5203569 6.2803934 -2.7887322 -5.4267778
5.5203297 -3.8934245 -4.7246788 10.6230471 2.4609779 -9.0582041
11.3825516 2.3006146 -9.6182652 10.1514491 3.1720669 -9.4920009
-12.9919782 -0.5272298 -13.3647689 -13.1889113 0.3640829 -13.0766528
-12.2524867 -0.7970907 -12.8201963 10.2177719 2.1020482 8.1112663
9.6276199 2.6959463 7.6473294 10.9973617 2.0581841 7.5575990
-7.4147211 -8.7875574 7.6541889 -6.6808545 -9.0362343 7.0922000
-7.3629282 -7.8332470 7.7074902 -14.0784136 -0.8222722 1.2921591
-14.8335532 -1.3578325 1.5354104 -14.1004784 -0.7975844 0.3355319
-9.0658971 5.3174845 9.6241419 -9.0166827 5.7227606 8.7583699
-9.8814877 5.6505206 9.9984823 -5.9002958 6.0998399 13.6556941
-6.2780582 5.8710047 14.5049066 -5.9266517 5.2848389 13.1543851
-8.7623027 -0.8800438 -1.7076479 -9.6603667 -0.5594575 -1.6243570
-8.8168619 -1.8076798 -1.4779818 6.2646170 -6.8279848 -11.1010280
5.6649307 -7.5458096 -11.3043399 7.1217631 -7.2468197 -11.0228629
3.1713653 -2.9480321 -1.6450430 2.5055951 -2.2856199 -1.8299534
4.0003832 -2.5213872 -1.8616882 11.5506613 -2.1663761 -7.2346210
11.7929353 -1.9230848 -8.1281222 11.0391841 -2.9691734 -7.3353154
-9.1583652 -4.8561082 11.4683066 -9.7534023 -4.1331714 11.6671157
-8.3873850 -4.4343246 11.0889389 6.3810274 12.9407730 -6.0622473
6.9255409 13.5277652 -5.5376740 6.5052547 13.2399156 -6.9629765
4.2485515 1.8006554 -0.4957986 4.3247716 2.6256508 -0.9751784
4.3906204 1.1246239 -1.1583918 11.3741985 -7.7722442 -10.6956294
11.8545188 -7.8245896 -9.8693218 11.7989598 -7.0608460 -11.1749228
14.0994139 -0.4755332 5.1613009 13.5452258 -0.3657680 5.9339969
14.1597511 -1.4234169 5.0425248 -8.1326319 13.0386051 5.9281643
-7.6667471 12.2335645 5.7021269 -8.1739478 13.5298515 5.1076755
6.9819556 -10.9346596 -3.1494910 6.1263502 -10.9772758 -2.7224604
7.3549160 -11.8075472 -3.0262044 1.6524107 -13.9160175 3.3153192
1.5604104 -13.6048542 2.4147943 1.9715984 -13.1549777 3.8002619
9.9180543 0.0004848 -12.4897620 9.4649249 -0.2826667 -13.2839477
10.0879328 -0.8096967 -12.0091593 -2.6305802 6.9076628 -15.5537944
-2.5768248 6.8989411 -16.5094440 -2.9874450 6.0491470 -15.3261325
10.6621885 0.9744769 1.9917749 11.5822885 0.7755860 2.1652404
10.2213966 0.1259229 2.0352553 5.5054723 -1.5177823 -8.6621395
6.1298455 -0.9154461 -8.2576879 5.9915212 -2.3365790 -8.7599155
-8.8562613 2.5139973 -2.1042705 -8.3099533 1.9372833 -1.5702476
-8.9903841 2.0299607 -2.9191026 -0.1152965 -3.1994631 -3.7188271
-0.9051952 -2.7599370 -4.0336426 -0.4014695 -4.0900734 -3.5159720
-10.5261490 -9.9894411 -7.0856662 -11.1969890 -10.1136048 -6.4142581
-9.9971113 -9.2596404 -6.7635762 11.9689971 -7.7011517 9.4662376
12.5759394 -8.1353439 10.0656790 12.1941404 -6.7728720 9.5281989
-7.0960596 3.6267412 10.7353420 -6.2482485 3.6405446 10.2912051
-7.5440689 4.4119434 10.4207357 -10.5597617 9.1357313 -4.5414630
-9.8316448 8.5415158 -4.3598436 -11.3267027 8.5654799 -4.5948173
-6.5921606 -0.6478043 -15.2811374 -7.3944007 -0.2998622 -14.8918060
-6.0640243 0.1268515 -15.4740421 -7.4529320 1.7628093 8.7105527
-8.1910714 2.2307307 8.3201277 -7.3646813 2.1417731 9.5850984
8.9616370 10.3360593 -5.7756109 8.8290121 9.5449386 -5.2533366
8.0779533 10.6179368 -6.0120002 0.4521681 -9.6924665 10.2910505
1.1855455 -10.0739741 10.7735869 -0.2269286 -9.5602892 10.9525554
9.4487422 3.3619324 -6.3836104 8.9802616 2.9448102 -7.1066366
10.1339688 3.8780398 -6.8082626 4.7856431 -7.2793320 -5.8658012
4.0713567 -6.8482322 -5.3965680 4.5495841 -8.2069576 -5.8614860
3.7791298 -13.7128880 11.2490441 3.5911165 -14.3093797 10.5244197
4.4794199 -13.1494246 10.9199019 4.3010902 17.3008528 0.4059631
3.9552123 16.8069288 -0.3374341 4.9778116 16.7340397 0.7761021
-0.2306951 2.4448943 8.2824887 -0.1975398 1.6699601 8.8433894
0.3055172 3.0936487 8.7383681 -11.1351665 6.5611961 -9.4170360
-10.4965198 6.3571894 -8.7338497 -10.6055201 6.7445112 -10.1929884
-3.1770197 -7.1076566 -7.8736739 -2.8705675 -7.5508316 -8.6648217
-3.6687524 -7.7777985 -7.3989734 -4.3922969 -3.8747893 -5.4752626
-5.1265867 -3.3371468 -5.7718950 -4.4801490 -4.6919300 -5.9659712
-7.6543510 10.6669151 10.8606543 -7.3746479 10.9401704 9.9869670
-7.9871033 9.7777737 10.7384437 -7.6415551 -0.8790872 5.2244702
-7.3816706 -1.1668410 4.3493189 -6.9715727 -0.2435811 5.4764374
-13.8173025 -0.6511113 -1.9883047 -14.2774263 0.1724734 -2.1502495
-14.0854301 -1.2210129 -2.7091040 10.5226363 -5.1177403 -12.7123127
11.3795482 -5.5350480 -12.8005635 10.1376734 -5.5231632 -11.9353522
-6.1980918 -9.6436182 -8.5480615 -6.8823729 -9.3264781 -7.9586437
-5.4207117 -9.1407432 -8.3051029 -0.2541077 6.3693897 8.6494943
0.2217122 7.1984434 8.6994666 -0.3595408 6.2099019 7.7115821
-3.1405149 9.9476088 -7.6549603 -3.4022203 9.1649022 -8.1398444
-3.9653970 10.3346546 -7.3617080 -0.3714572 12.3542977 9.4084554
-0.6702087 11.8122043 10.1386020 -1.1767222 12.6388519 8.9762411
-0.0522384 15.3818846 -8.0458060 -0.1693359 14.5153457 -8.4352033
-0.7242029 15.9233570 -8.4599354 3.7825936 0.0197467 -10.1416013
4.5017903 -0.5337135 -9.8371842 4.1615544 0.8971192 -10.1948744
2.9409770 -3.0256664 13.2513870 3.8450393 -2.8491852 13.5116900
3.0174336 -3.6416646 12.5227359 5.8734241 -1.7788474 -1.7093772
6.7937351 -1.5259605 -1.7822320 5.8962815 -2.6635006 -1.3445511
7.1390782 3.1444651 3.0273159 8.0840113 3.1512859 3.1799157
6.7994785 2.5078330 3.6562861 -14.5418065 -2.3006943 -4.0181075
-14.7870747 -3.1759310 -3.7180473 -15.3197491 -1.9762717 -4.4717452
6.7107766 -4.5107264 -9.3374981 6.6045283 -4.9660352 -10.1727448
6.6052955 -5.1950344 -8.6765685 -11.4350083 -0.9508756 -0.4734778
-11.6915751 -1.8718318 -0.5208588 -12.0550593 -0.4997244 -1.0463924
-11.8541586 6.3136763 -6.2536096 -12.2437800 6.6014711 -5.4280182
-12.1935730 6.9271111 -6.9053207 5.0567242 -7.4724905 11.1524295
5.9880804 -7.4697455 11.3733369 4.9875758 -6.8863240 10.3988652
6.6973287 -5.6365555 14.0238820 6.3149097 -4.7628142 14.1048994
7.5721050 -5.4829753 13.6669347 -11.3180057 10.5608097 -2.4716395
-10.8430143 10.1117628 -3.1709048 -12.0219850 11.0277113 -2.9218037
-5.9562787 -16.7792002 -4.2585685 -6.3911996 -16.2401034 -4.9192123
-6.6396282 -17.3716805 -3.9451479 12.1909686 0.7996008 -1.7601473
11.5551687 1.2448529 -1.2000216 11.7681438 0.7600853 -2.6179874
-10.3200127 5.8738462 0.1166957 -11.0926920 6.4338128 0.0416232
-10.6612645 4.9830052 0.0380737 7.5479719 0.8599144 -4.5992134
8.0442513 1.5758452 -4.2025001 7.6500460 0.9912647 -5.5418479
-7.0772585 1.9513272 -7.4377416 -7.5572692 2.7409097 -7.6875034
-7.4041400 1.2746968 -8.0306596 -2.1755579 6.4611523 -8.3235022
-2.5601079 6.4873059 -9.1996695 -2.9176697 6.5877862 -7.7323460
2.3382084 -7.1095413 -0.8508681 1.5374519 -6.7209054 -0.4987559
2.5087132 -6.6194089 -1.6551878 -4.8908840 -0.9978998 -9.8372161
-4.0349406 -1.3584027 -9.6056333 -4.9767435 -1.1683563 -10.7751951
-5.0457752 1.1043324 -5.7516981 -5.2567261 1.5477255 -4.9300326
-5.6582494 1.4741963 -6.3875502 4.4016512 -10.9297928 -2.3180730
4.3262566 -10.1073796 -2.8019987 3.7337880 -10.8679459 -1.6351633
2.6458564 -5.5393300 -6.2239863 2.9133120 -4.6771311 -6.5422823
2.5593981 -6.0706141 -7.0155000 -6.7300222 -13.4097868 -2.4839058
-6.8213749 -13.6600543 -1.5645295 -6.4986167 -14.2234790 -2.9317766
-2.2794926 -2.2210648 -5.0494838 -2.4115272 -1.5586988 -5.7277684
-2.9326909 -2.8939197 -5.2413957 -9.9193388 -11.0703427 0.4669483
-9.6292722 -11.1389705 -0.4426579 -9.5486236 -11.8418448 0.8954186
13.2864028 1.1271381 2.8803962 13.4604366 0.3665180 3.4348338
13.9566186 1.7635096 3.1295426 6.5890701 16.0546409 6.2178208
7.4025582 16.3025212 6.6571662 6.8644137 15.4546513 5.5246901
3.9779695 9.3353002 -4.9213691 3.5904426 8.7933113 -4.2341262
3.6122869 8.9881047 -5.7349804 5.3040266 0.5923945 -2.8101845
5.9705884 0.8244332 -3.4567796 5.2377592 -0.3608748 -2.8660249
9.0309235 13.3862891 6.9598019 9.6973670 12.8043867 6.5944603
8.2593080 12.8298992 7.0659688 -6.1062022 -9.8648710 0.8192514
-5.9847686 -10.6325519 1.3779567 -6.9092021 -9.4571827 1.1436175
4.6495122 2.6272851 -9.3455836 4.2538137 2.6826964 -8.4757651
4.5667835 3.5113454 -9.7031102 -12.3247123 -7.7025634 -2.4144919
-12.6611348 -8.4964892 -2.8301042 -12.8130120 -6.9905300 -2.8277762
-13.4940258 2.2714114 -11.2628080 -13.5309051 2.4646350 -10.3260389
-12.5881367 2.0031564 -11.4165480 -10.9058301 4.1642627 -12.8344392
-11.3186401 5.0275420 -12.8105966 -10.3990891 4.1186181 -12.0236606
-4.5410975 -8.8048265 -6.4184969 -5.0110954 -8.7195043 -5.5890067
-4.4801919 -9.7490558 -6.5632501 4.0862511 -3.6017411 3.6286755
4.1226349 -3.8722165 2.7112055 3.8600600 -2.6722395 3.5955666
9.9984452 1.9373634 -0.4676415 9.0424536 1.9483007 -0.5144634
10.1917009 1.5824745 0.4000785 -3.7503486 -12.3856416 -2.5760826
-4.5866302 -12.0070800 -2.8472947 -3.5912663 -12.0172311 -1.7070610
-7.7180084 -4.6972814 -3.1969643 -8.4676592 -5.1029604 -3.6324871
-8.1043598 -4.1639883 -2.5022969 -6.6267734 -3.3463703 -8.2959469
-6.5709314 -2.6187857 -7.6764841 -6.0834888 -3.0736515 -9.0353372
-9.5866341 1.1140441 -4.1727733 -9.4890163 0.1902840 -4.4037924
-9.6579776 1.5650733 -5.0140310 -4.4495731 -1.1319488 -12.5368747
-5.1351734 -1.0717043 -13.2021225 -3.6329693 -1.0210419 -13.0237934
-14.1217545 4.7023789 -3.3361928 -14.4247687 4.8832341 -2.4464144
-13.2242398 4.3889713 -3.2245016 -1.4701171 -5.9803474 -12.3688570
-0.8264932 -5.9345211 -13.0758790 -1.9043886 -6.8240453 -12.4946105
-4.0133134 4.0672734 -10.6042520 -4.5931357 4.2385844 -9.8621668
-3.7133284 3.1680826 -10.4712233 1.7967725 -1.6001982 -11.7753513
1.4993211 -2.0648089 -10.9931164 2.3490996 -0.8943910 -11.4391923
-6.8655401 -8.4079034 -1.6477022 -6.5270555 -8.6665997 -0.7905346
-7.8060731 -8.5777706 -1.5950273 -9.5133640 0.0673783 1.1304095
-8.9128493 0.4954965 0.5202220 -10.2284274 -0.2506630 0.5792598
-3.7951208 5.1315469 -4.6011534 -4.0792029 4.3371644 -4.1489526
-2.8397766 5.0728156 -4.6111481 -4.8045251 4.6855150 6.1737990
-5.3458723 4.4586152 5.4176961 -4.0886058 4.0504254 6.1550204
-5.5287666 0.0647710 1.2524685 -6.0818145 -0.6915062 1.4484650
-4.7552084 -0.3074956 0.8290808 -10.1440284 -3.4217597 2.1418821
-10.0134849 -3.8557814 2.9849808 -11.0468738 -3.6306898 1.9021945
10.9716598 12.2081452 5.5447658 11.8882621 12.0069735 5.7334509
10.6650404 11.4643159 5.0261770 4.3163469 4.4637752 -1.2862597
3.9373788 4.7302206 -2.1238884 5.0157895 5.0976281 -1.1273810
-6.7546591 0.5681469 -2.6585631 -6.0798633 -0.1081144 -2.7181722
-7.5755043 0.0814902 -2.5836616 6.6886525 8.1102818 8.5670815
7.0020513 7.2092344 8.4888088 7.4828519 8.6302914 8.6898382
-3.8651166 -5.7399890 2.8869590 -3.3739414 -6.4742167 3.2555895
-3.3246123 -5.4312439 2.1597978 9.1304343 -5.4902913 12.9259725
9.7139162 -6.2351363 12.7811052 9.7126197 -4.7777211 13.1896688
-11.1342332 1.4229160 -12.6896939 -11.0371222 2.3091548 -13.0380933
-10.3125562 0.9860705 -12.9138473 -1.5856562 -0.2471357 -3.1262834
-1.8483644 -0.9939918 -3.6642632 -2.1168849 -0.3241817 -2.3337609
-1.3532501 1.9011212 -8.3228982 -1.4568492 2.7849331 -7.9702290
-0.4078865 1.7947898 -8.4287904 -0.9590306 -4.4873727 -15.2339337
-0.6050895 -3.7882185 -14.6842603 -0.4321960 -5.2554767 -15.0132680
-7.6272171 0.5418043 -10.1946693 -7.3281925 1.2256586 -10.7939684
-6.9083115 -0.0898502 -10.1741929 11.6374695 4.3495103 -0.7527728
12.3411793 3.7337068 -0.5482969 10.9022129 3.7949467 -1.0137112
12.1936716 -4.8795197 9.0452629 12.7053472 -4.1614670 9.4178487
11.2896821 -4.6815712 9.2899081 -5.6464635 2.8713329 -3.3361635
-6.2238453 3.5445526 -3.6962155 -6.2399033 2.2362282 -2.9352855
5.8066770 -2.7231493 14.3438209 6.7122518 -2.7559584 14.6521870
5.8797638 -2.5660546 13.4024329 -13.3729115 0.5672691 5.5482901
-12.8936323 -0.0997395 5.0567386 -14.2796014 0.2604408 5.5469883
8.7418537 -6.5089556 8.0863015 8.9065962 -6.0011238 7.2918214
9.1558495 -7.3557168 7.9194641 -11.1420032 5.6034150 11.1315315
-12.0356003 5.6363540 10.7900185 -11.2417921 5.7252068 12.0756929
0.2632461 0.5805702 -15.8628233 0.7127665 -0.1233990 -15.3952864
-0.0846925 0.1613554 -16.6498617 -4.4381236 8.6750142 -14.8294601
-5.1722270 8.2585696 -15.2810107 -3.6914859 8.1034003 -15.0084059
-6.0134937 -11.2246010 6.5849352 -6.9198333 -11.4192014 6.3463751
-5.8575503 -10.3465293 6.2372233 -10.0949583 -6.9456510 -7.4040752
-9.7238872 -6.1604026 -7.8064718 -10.3187868 -7.5107647 -8.1435203
-12.2551193 -9.8072135 5.0088681 -11.8761172 -9.9008452 4.1348989
-13.1360513 -10.1728724 4.9283422 -4.3829199 6.7782425 -6.6783776
-3.9666048 6.2818441 -5.9737485 -4.7266213 7.5615655 -6.2488356
7.3580672 -7.8471903 -1.1622407 7.3882722 -7.7453160 -2.1135246
6.4531504 -7.6411662 -0.9279087 3.6796515 -6.2915088 4.1257467
4.1435536 -5.4543162 4.1141186 3.5952062 -6.5056561 5.0548548
14.1148589 -1.6060431 -6.1590262 13.1690058 -1.5243058 -6.2811441
14.3483004 -2.4080191 -6.6265424 -6.3523210 -4.6102367 -13.2751810
-5.5110134 -4.6933745 -12.8262698 -6.7055844 -5.4997633 -13.2885707
-1.2498443 5.4353234 -1.6902453 -0.9449557 6.1422468 -1.1214446
-1.3710648 4.6899939 -1.1020094 7.7509852 5.5729112 8.9643099
8.7035525 5.5176468 9.0404236 7.4225863 4.9389056 9.6018230
-8.8827847 -3.5169591 -0.8328581 -9.5518894 -3.4373610 -0.1530089
-8.0587673 -3.5870964 -0.3508746 -13.2793937 -2.0200721 3.4933654
-13.2770995 -2.8673433 3.0479913 -13.4683178 -1.3862586 2.8013972
-6.3291620 10.6874588 -11.1924989 -6.2341987 11.5657225 -10.8238978
-6.2298470 10.1009476 -10.4425836 7.1342806 11.8172680 8.5620389
6.2158360 11.6259167 8.3721021 7.3713305 11.1950298 9.2496862
-12.0266446 -7.2715959 6.2592021 -12.7461437 -7.2099393 5.6309097
-11.8646085 -8.2109468 6.3463568 -2.4877535 -2.4044159 -9.2892248
-2.5527665 -1.7310120 -8.6120746 -1.7402311 -2.1356692 -9.8232822
-5.2382556 -9.7247385 -3.4249918 -5.9648694 -9.1874598 -3.1094036
-4.5203353 -9.5353858 -2.8208661 -6.5674860 -12.2517911 -8.9565433
-6.2947096 -11.3343824 -8.9428984 -5.9837100 -12.6845341 -8.3335097
-10.7846400 -7.3819335 2.2026769 -11.4643615 -6.9861168 1.6572050
-10.6089968 -6.7276295 2.8788925 -12.0000348 -4.2479133 -0.5718059
-12.9559063 -4.2954755 -0.5885166 -11.7463512 -4.2021565 -1.4936425
-3.2086038 8.9793579 12.8352042 -2.3678113 9.1015818 12.3943400
-3.6830472 9.7954427 12.6766456 -8.0452973 -8.5179957 -6.6822824
-8.5406452 -7.8310166 -7.1282892 -7.5842730 -8.0621224 -5.9781035
-10.9101303 -2.8946446 -8.9530431 -10.8272219 -3.0942200 -8.0205584
-11.7544470 -2.4500780 -9.0286852 2.8824006 -5.0087755 -13.0174640
3.8071596 -4.8733080 -12.8108212 2.4129646 -4.6313301 -12.2735577
-11.2764001 3.7754285 -3.2461073 -10.9019199 3.8627413 -4.1226761
-10.6354790 3.2541319 -2.7626802 6.1500056 5.8115085 6.7531403
6.7638817 6.1034550 6.0792299 6.7040901 5.5861069 7.5004128
9.2360361 6.7299319 2.7553076 8.8673672 6.9815723 1.9085536
9.9399250 6.1187580 2.5379631 -0.9951799 11.8670327 3.4803680
-0.3769159 12.5973481 3.4554493 -0.4848217 11.1327056 3.8217330
-9.6409815 -0.5413563 -8.5478623 -9.8684063 -1.4318983 -8.8151540
-8.9752901 -0.2648876 -9.1776652 -13.7692498 -7.9309185 3.1710904
-13.5803549 -7.1336585 3.6659914 -14.0296469 -8.5690883 3.8352926
0.8644445 3.1742812 12.7059022 0.8862634 3.6169158 13.5543304
-0.0518074 3.2238304 12.4333968 -3.2017021 -16.6864939 -4.2334405
-3.0648229 -16.3211152 -5.1075082 -4.1530872 -16.7388450 -4.1420198
-7.1474998 -14.3499944 0.1093191 -6.6687653 -14.5297207 0.9184814
-8.0307612 -14.1218859 0.3992290 9.5659241 -4.0700827 -9.7995936
9.8798962 -4.5942467 -9.0627724 8.6463052 -3.8985426 -9.5968454
0.4380153 -2.4289805 -14.1941765 1.1666886 -2.3157554 -14.8044609
0.7599442 -2.0696214 -13.3674634 5.6682759 -10.8208585 -5.7955457
5.6367447 -11.7775361 -5.7931907 5.9197982 -10.5873064 -4.9020012
6.6312289 9.3247856 -2.0895540 7.4446000 9.6964318 -1.7481768
6.1631255 10.0729037 -2.4602702 3.6274783 2.4792477 4.2997505
2.7269476 2.1682233 4.3921627 4.0417955 1.8434314 3.7163889
1.7206478 4.3540306 9.5900508 1.1110813 4.8494334 9.0430256
2.5851649 4.6827328 9.3434806 -6.7366323 9.7117454 -8.1492368
-6.4141712 9.7358432 -7.2483095 -6.8018595 10.6318412 -8.4049730
4.0768973 13.4279206 0.3696509 3.1741155 13.4092006 0.0520561
4.5768607 12.9645788 -0.3023482 -9.8187605 -7.8368596 -1.7497589
-9.3822929 -7.3884665 -2.4741011 -10.7381487 -7.8782916 -2.0128948
-0.6338990 3.2668419 5.5193258 -0.6579182 4.1934504 5.7581806
-0.3044225 2.8260755 6.3025257 5.4939925 -1.2229515 5.1717219
5.6651476 -1.8809305 5.8455181 4.5797092 -0.9738825 5.3069345
13.4585394 -5.0205301 6.2712759 13.1723023 -4.8037795 7.1585861
12.6853517 -5.4037576 5.8570906 -1.4467769 -4.8728650 14.9094122
-2.2884683 -4.9686835 14.4637597 -0.8019382 -5.1793699 14.2718624
1.3660248 1.2546989 -8.7391375 1.4623135 1.5427426 -9.6468771
2.0691830 0.6173625 -8.6142271 -4.5336648 4.3662307 -17.4387372
-4.7975790 4.3943968 -18.3584044 -3.6817178 3.9299453 -17.4472933
2.6213358 6.9973175 11.5226287 3.1657529 6.2292366 11.6955264
2.0022651 7.0212541 12.2522933 -2.3759251 4.0005868 2.6368709
-1.5943393 3.8681979 3.1733674 -2.9813924 3.3165712 2.9228147
6.1466050 -12.2456386 10.5339883 6.9236252 -11.8897600 10.1029177
6.2442820 -11.9915479 11.4516641 12.7544052 3.4181939 -6.2294682
12.8582328 2.6056616 -6.7246882 12.1021154 3.9168676 -6.7214788
5.0046834 -8.8830037 3.7712485 5.6690482 -8.9805120 4.4534093
4.5088330 -8.1059281 4.0291587 -13.1307406 -1.6022720 -8.7799622
-13.3199894 -0.6706622 -8.6680697 -13.9889138 -2.0255827 -8.7559073
3.6754859 12.8957483 -8.8307951 2.9970007 12.3341124 -9.2055680
3.4087674 13.7840606 -9.0674260 -7.1883065 -5.7194508 7.0089151
-6.5226884 -5.6241894 6.3276591 -6.7420065 -5.4661220 7.8169204
11.8246713 -10.4906235 -5.4850448 11.0212207 -10.3640744 -4.9803823
12.4766872 -10.7534060 -4.8353892 -2.3491229 -0.0747107 -14.2925751
-1.6146336 0.2328598 -13.7613900 -1.9387679 -0.4905331 -15.0508180
-5.4443406 8.6231358 10.1982217 -4.8888103 7.8498416 10.1000684
-4.9716169 9.3174689 9.7392385 2.3392879 0.6783515 13.5406701
1.7527381 1.3520042 13.1966017 2.6824202 1.0514941 14.3526163
9.5706771 -9.2765575 9.2500773 9.5834604 -9.6363406 10.1369959
10.3602215 -8.7378406 9.1987396 -7.9675428 11.3709022 2.7854740
-7.4258332 12.0187635 2.3348541 -7.5311521 11.2373821 3.6268819
7.8893173 -11.9325759 -8.8218475 7.5789227 -12.0564240 -9.7188139
7.5709211 -11.0640058 -8.5759985 -3.4876403 10.6613536 -4.1174997
-3.0674152 11.5058026 -4.2804371 -2.8555811 10.1779919 -3.5854336
2.3181179 9.0740418 -7.3473329 1.7207039 9.7415898 -7.0101266
1.7687129 8.2994169 -7.4670920 15.1558369 5.5483433 -0.8415033
14.2068909 5.6668650 -0.8825643 15.2980345 5.0260026 -0.0520910
2.8195358 12.0878412 -4.0285751 3.5542498 11.4773914 -4.0900415
2.9528450 12.6969722 -4.7548120 -3.6319911 13.5097198 2.7180983
-3.8502010 14.0220605 1.9395592 -2.7726100 13.1349635 2.5250859
8.1014133 15.3022659 0.5613848 8.9134584 15.4740695 1.0381427
7.4152533 15.6752905 1.1148004 -4.0231619 -12.6748795 -7.1133415
-4.7988469 -12.6147768 -6.5557285 -3.2892006 -12.7087420 -6.4998384
-3.6695202 -1.0828838 15.9662872 -3.5430071 -0.6519624 15.1209866
-4.6053770 -1.2816674 15.9961020 -12.9782340 -3.9046515 5.6160984
-12.8375820 -3.1140547 5.0951324 -12.2567876 -3.9084564 6.2451710
-1.1089312 6.1329683 -4.5563836 -0.7474050 6.9985435 -4.7469361
-0.9185320 5.9927720 -3.6288466 2.8550319 -5.4304757 -3.0933296
2.5198889 -5.5474089 -3.9822827 2.5216001 -4.5751624 -2.8222316
0.9885296 4.4506529 15.0209277 0.6012952 4.3700106 15.8925802
0.5575261 5.2142831 14.6370830 -3.8469144 10.8013527 -13.3605563
-4.0383772 10.0284774 -13.8918166 -4.6087030 10.8933641 -12.7883293
-1.6657367 1.1323021 3.5378790 -2.5904119 0.8849371 3.5421464
-1.4652825 1.3255942 4.4536782 -5.6995729 3.5223338 -15.0571182
-5.1710614 3.9153660 -15.7516923 -5.3602100 2.6312699 -14.9730363
-1.4442202 -2.0430202 4.9023206 -1.3077651 -2.6322638 5.6442127
-1.6156856 -1.1903545 5.3020613 0.3141275 3.7353366 2.8887922
0.6133651 3.5026866 2.0098368 0.8370850 3.1862852 3.4729924
-14.0967053 3.2752720 6.6727792 -13.7482409 3.7695781 5.9308453
-13.9794935 2.3579711 6.4256915 -11.3339618 2.4019278 10.6274829
-11.9185906 2.7208649 9.9399364 -11.3288009 3.1013225 11.2809752
-14.0578712 -7.7706713 -6.7923381 -13.8948156 -7.3902053 -7.6554084
-15.0063206 -7.8959769 -6.7611283 -6.2477426 11.1534323 -0.7714686
-7.0294654 11.3568151 -0.2578766 -5.6227020 11.8398747 -0.5383315
8.2053241 9.5858295 6.1761190 7.3294562 9.9355661 6.3397391
8.7698674 10.0576842 6.7883900 -10.6957884 -4.3126622 7.4156457
-10.7192084 -3.4862843 7.8981215 -10.3480753 -4.9465094 8.0429934
2.1995607 -14.3159840 -7.3627556 1.2701193 -14.0902653 -7.3250499
2.5861922 -13.6455520 -7.9260219 -9.8894793 -5.0413902 4.5889842
-9.8050774 -5.9293925 4.9362021 -10.1258565 -4.5087560 5.3483645
-9.1902294 -13.5860247 1.5890077 -8.9635722 -13.0630246 2.3579871
-9.2351036 -14.4847577 1.9153467 9.9990830 2.9557405 3.5017876
10.2359846 2.2624511 2.8857848 10.5454555 3.6993153 3.2472184
3.1729306 9.3629194 1.3471290 3.4788024 8.4565249 1.3806458
3.3077178 9.6276943 0.4372068 10.1800228 -4.8691125 -7.0918583
9.5372585 -5.5523426 -7.2823378 10.2249000 -4.8422392 -6.1360886
-6.7838112 -0.2640882 10.7137870 -6.8808403 0.0341086 9.8094110
-7.6489169 -0.1351330 11.1026243 12.5275970 -1.3577532 7.6555708
11.8239901 -1.0419083 8.2225021 13.1416258 -1.7861899 8.2519284
-2.9526391 -0.3744797 -7.6477483 -3.7326178 -0.0668794 -7.1859615
-2.4574868 0.4221734 -7.8385357 8.0140073 13.7379931 -3.8796813
8.7973990 13.2068013 -4.0223858 8.3249951 14.4947604 -3.3828696
4.7865078 -11.8999346 -11.0849019 4.5304899 -11.0811890 -11.5095692
5.4509183 -12.2727553 -11.6643803 -2.7694511 -0.2625073 9.4619973
-2.5987989 -0.1611422 10.3983918 -3.4455662 0.3873023 9.2700397
10.9743557 1.2078345 10.5205310 10.6847641 1.5669256 9.6818283
10.6433069 0.3097094 10.5236559 -12.8061035 -4.5700319 1.9905592
-12.3908589 -4.7622073 1.1498021 -13.6464969 -5.0266789 1.9525555
-6.4517637 -7.3627699 -4.6948988 -6.4624124 -7.1606551 -3.7593411
-5.9894003 -6.6257243 -5.0939173 -3.3617217 -6.6348338 -0.7804491
-3.9264622 -7.1034535 -0.1658797 -3.9171852 -6.4775070 -1.5439544
-0.6368171 9.8493007 -7.9084321 -1.5442879 9.6654954 -7.6656478
-0.2813827 8.9992181 -8.1677733 -3.0691137 -16.4726394 3.6685933
-3.2149668 -15.5843917 3.9941310 -2.1371525 -16.4982377 3.4517410
3.2345780 4.6289573 12.8020148 2.3730645 4.3163586 12.5257750
3.1558084 4.7424347 13.7491949 14.5744738 -5.2782121 1.6005124
14.1477040 -5.4189005 2.4456787 14.3871999 -6.0737636 1.1022573
-9.8885737 -9.1388869 8.5050765 -8.9675984 -8.9486573 8.3266138
-10.2036774 -8.3711058 8.9819975 -9.6195227 -1.9059785 11.5707685
-9.6194354 -0.9756690 11.3454776 -10.2401275 -2.3007057 10.9581740
4.4493986 10.7162874 -10.3667044 4.3646007 11.5907942 -9.9868636
3.7578704 10.6739491 -11.0271800 -5.5618551 9.5905941 -5.6231797
-4.8089285 9.8125453 -5.0753922 -6.2341173 9.3079606 -5.0031687
-9.0801589 10.8473536 -11.3379928 -8.2616358 10.4650419 -11.0216236
-9.1141728 11.7123042 -10.9294156 11.9102827 -6.8063452 -4.1713121
11.3722102 -6.1572694 -3.7180899 11.9356264 -7.5548101 -3.5751663
8.8914546 0.1463204 6.7909459 8.9745638 1.0047660 7.2061517
8.7038038 0.3414872 5.8728343 -2.0196896 5.4830068 -12.3368277
-2.5761281 4.9127594 -11.8063318 -2.1995412 5.2206662 -13.2396359
3.9541444 5.3610183 -9.3611261 4.1142940 6.2826041 -9.1579916
3.1377958 5.1538549 -8.9062743 -14.8956819 10.1756861 5.1959459
-14.1966948 10.0883820 5.8440406 -14.5312748 10.7556491 4.5273038
2.9738251 -4.0665821 -9.6320021 3.2223592 -4.8931753 -9.2182312
3.7280233 -3.8334471 -10.1733568 -14.2643268 3.1627888 -8.4771966
-14.6387223 4.0021680 -8.7445961 -13.8844941 3.3336330 -7.6153548
-10.7971814 3.0936361 -0.3616529 -9.9411709 3.1870443 -0.7796872
-11.4137768 3.0268686 -1.0907511 -7.5365657 -1.5682444 2.1926703
-8.2473481 -2.1532304 1.9303506 -7.9052081 -0.6892160 2.1052422
-7.2824976 -2.2750544 7.5300952 -7.9304715 -1.7425912 7.9914461
-7.4284220 -2.0809688 6.6042071 -8.8678207 -4.8710349 -8.7028608
-8.1643582 -4.2326882 -8.5850224 -9.5736390 -4.3756611 -9.1183811
2.6385960 -4.7264061 7.7772045 2.0772097 -4.9572212 8.5173407
2.1692059 -4.0213789 7.3312880 -2.6357079 -16.3330315 0.1642666
-2.5075247 -15.6746388 0.8471428 -2.5667182 -15.8441439 -0.6557707
-6.3319974 -5.9904884 0.4294790 -7.1149059 -6.5330403 0.3350140
-6.0852524 -6.0841839 1.3495713 6.5500648 -3.9762754 5.0256409
5.9207308 -3.8124099 4.3232744 6.0583094 -3.8136837 5.8306083
10.3544211 5.2522036 9.3735358 10.9387093 4.8452874 10.0132688
10.9342189 5.5387136 8.6678600 -9.0834251 -10.7812354 5.9387826
-8.9477052 -9.9092490 6.3095272 -10.0158490 -10.9542639 6.0687002
-9.5308782 3.7490999 -10.4941327 -8.9217341 3.0481827 -10.7262755
-9.4592752 3.8232342 -9.5424978 -1.0512328 2.7583808 -17.0080077
-0.4549456 3.4276756 -16.6722729 -0.7819230 1.9537100 -16.5650528
-0.5048372 6.8115483 3.1486910 -1.4223002 6.6978832 2.9005502
-0.0276321 6.1992629 2.5886788 2.2454106 11.0777294 9.1206628
2.8353721 11.7417443 9.4774000 1.3811147 11.3229096 9.4509823
1.6602404 -1.2860589 -4.4221186 1.1047539 -1.9091771 -3.9537274
1.6695710 -1.6048547 -5.3246229 12.0811726 1.2246835 -11.3403664
11.2295731 0.9666064 -11.6930792 12.7100808 0.9493652 -12.0073792
-6.2283370 13.2403580 1.6048448 -5.6372908 13.5656456 2.2838767
-6.3460390 13.9838056 1.0135211 -13.3051087 3.4694722 9.2190991
-13.4898029 3.4161997 8.2813988 -13.7315886 4.2784978 9.5016309
10.0763342 -3.8911938 10.2122307 10.3331338 -4.1406904 11.0999454
9.1320853 -4.0455145 10.1837526 10.4728640 7.9153064 -7.8228888
9.9329713 8.3300762 -8.4957289 11.3391928 8.3062590 -7.9363016
5.7069643 -0.2558246 -15.1696432 5.3006264 -0.1239112 -16.0262179
5.8753524 -1.1971241 -15.1268353 -3.1503853 -9.3899024 -1.8781815
-2.2099767 -9.5094528 -2.0107377 -3.2142082 -8.6694606 -1.2511870
1.0725332 0.8342073 -2.7554539 1.5879842 0.2238105 -3.2826710
0.1713119 0.7034161 -3.0502855 6.8572335 2.8342226 10.3162077
7.6157662 2.6030214 10.8523103 6.1048896 2.5193096 10.8172471
-7.9828469 7.4141005 -6.9236562 -7.5694747 8.1058454 -7.4402259
-7.6695840 7.5618439 -6.0313166 -11.6917112 8.8844463 -0.3453977
-11.5353795 9.8287845 -0.3411936 -12.5403890 8.7840874 -0.7765658
3.4697693 12.8619626 3.0066645 3.9340496 12.0268222 3.0633760
3.4807408 13.0792812 2.0745250 13.0493150 -8.8291719 -8.5979296
13.0214992 -9.7824010 -8.5153924 12.8917535 -8.5072141 -7.7103772
7.9088288 -5.4603757 -13.8353446 7.7106726 -4.7973498 -13.1740107
8.8639992 -5.4585704 -13.8976197 -0.3987943 -10.3666177 -4.1528005
-0.4195542 -9.4222433 -3.9980171 -0.1790792 -10.7441497 -3.3010806
-7.6050338 8.6347085 -4.0663385 -7.7268273 9.5500712 -3.8143282
-8.1807484 8.1457695 -3.4783561 9.9929523 -2.3982371 6.3128274
10.9180182 -2.4565262 6.5517571 9.6754847 -1.6207403 6.7721148
-3.1135120 2.2538878 -13.2526547 -3.0895032 2.0615233 -12.3152907
-3.1285784 1.3941883 -13.6732753 7.8527081 -2.9158657 -12.7802252
8.0141888 -2.4283275 -11.9724738 8.5715945 -2.6639109 -13.3598397
7.5350257 7.2513678 4.9059806 7.9883803 7.9378103 5.3953660
8.1338259 7.0304875 4.1926209 -9.9983888 2.7447436 8.1779177
-10.5830002 3.2773156 7.6386327 -10.0415375 3.1458680 9.0459438
-8.5695624 -6.9415674 -10.4168151 -9.5155026 -7.0398090 -10.5253390
-8.4717293 -6.1772687 -9.8489172 11.6789392 -7.7080140 6.4800065
11.6609087 -7.5033768 7.4149024 11.8808490 -8.6429570 6.4433222
-6.9646443 7.1299423 -12.6092362 -6.6052098 6.2578741 -12.7721345
-6.2607871 7.5992918 -12.1614327 -4.4531443 0.8496697 -16.0111608
-4.1200573 1.2533972 -16.8125902 -3.6773174 0.7282361 -15.4638233
-12.5423543 3.2254235 1.9277811 -11.9041752 3.0128172 1.2467833
-12.4228585 2.5438890 2.5891912 1.8896070 -14.1277745 -1.6409119
2.8268673 -13.9950646 -1.7829084 1.4900776 -13.9431301 -2.4909205
-8.8619524 -11.6171787 -2.0024749 -8.0866409 -12.1101780 -2.2709441
-8.9291451 -10.9090255 -2.6429716 6.5945956 11.4875889 4.5990692
6.0368490 10.9954162 3.9966435 6.0107320 11.7392010 5.3146295
13.3064546 5.2946526 -3.9682385 12.8241614 4.8311723 -4.6529364
14.0711936 4.7442565 -3.7995072 -9.3609233 0.7631814 11.3448631
-10.1491834 1.0754032 10.9005710 -9.0213258 1.5337932 11.7999045
13.2590948 10.5907378 6.9127787 13.8129202 10.4601228 6.1430716
13.3954313 9.8049343 7.4420774 -13.5300746 0.3206271 -6.1169539
-14.1675280 0.7600876 -5.5541400 -13.8221230 -0.5905418 -6.1436149
-3.9049063 12.5312050 -0.3445448 -3.4198529 12.5246968 -1.1697192
-3.8555784 13.4389477 -0.0448754 -5.3380215 -5.7398486 -7.0614469
-5.5623383 -5.0468083 -7.6824212 -4.5708111 -6.1653561 -7.4442829
-13.0694441 8.0163522 -4.3141707 -13.3133957 7.7747586 -3.4206653
-13.8443817 8.4565938 -4.6632994 -14.9312065 -8.5017901 0.8592375
-14.5245490 -8.2518330 1.6889260 -15.1370764 -9.4307364 0.9636798
-2.3036262 -12.5684242 8.4699146 -1.4708992 -12.5465494 8.9414219
-2.7822650 -13.2983034 8.8628688 3.6606075 -10.6383472 2.3651234
2.9597927 -9.9863823 2.3594459 4.2850386 -10.3131276 3.0136215
11.9552151 -8.1908440 -1.6498143 11.7126197 -8.8331238 -0.9828391
11.9690171 -7.3549695 -1.1836006 12.6559510 6.9323833 -1.8315176
11.7640606 7.0375530 -1.5003037 12.6120847 6.1613108 -2.3969863
-9.9515042 10.4192825 5.3199074 -9.1782111 9.9064743 5.0847957
-10.6812464 9.9527729 4.9123820 -7.1848099 13.0998496 9.0425751
-6.8962067 12.9209993 8.1476156 -8.1298033 12.9485784 9.0242362
11.2417937 12.0727221 1.9140461 10.4572953 11.5552975 2.0958862
11.9260597 11.6648562 2.4447602 6.3519413 16.5097462 2.0554127
5.7243863 16.3879042 2.7678459 6.8902805 17.2503834 2.3344811
0.9027246 8.2552187 -0.8759917 0.3586796 8.7639830 -0.2748213
1.0496664 7.4253894 -0.4220939 -3.0801691 -11.5225060 6.0261629
-2.7510418 -12.0324323 6.7663537 -4.0133737 -11.4114443 6.2078941
9.4087195 -10.7980549 5.3131083 9.2869961 -11.6728357 5.6821258
8.6618977 -10.2950550 5.6378853 3.6984989 2.5007779 6.8031227
3.7838490 2.5514054 5.8510806 3.6693175 3.4135564 7.0898555
-1.6391643 11.9717927 -5.7346211 -1.6006871 11.1663458 -6.2503793
-1.1523105 11.7683005 -4.9359997 7.6317287 3.8181679 0.5612534
7.2041478 3.6945956 1.4086827 7.2186830 3.1722944 -0.0118718
-8.9875839 4.8250947 4.0778146 -9.2172564 5.7010397 3.7676489
-9.2089246 4.2468489 3.3478339 11.9655951 -6.6680770 1.6852519
12.0369177 -6.4689919 2.6187989 12.3963689 -7.5173010 1.5878634
5.7832492 6.8867833 -1.1688896 5.9432212 7.6983525 -1.6505496
5.0395856 7.0880224 -0.6008235 5.4790603 12.2172358 -1.7918198
6.1664868 12.1102803 -2.4492673 4.6621885 12.1271671 -2.2825744
-8.5912462 3.1633703 13.2642930 -8.4905483 3.7798875 13.9895504
-8.1273818 3.5740787 12.5346491 -4.5543847 3.2777063 -0.9109278
-3.6353527 3.2360053 -1.1752628 -5.0334908 2.9035944 -1.6503393
-6.3637376 4.0582386 4.0755256 -7.3187689 4.0466939 4.0121710
-6.0765778 4.5115108 3.2828621 2.3558918 -10.9347195 11.5037530
2.3920890 -11.5960344 12.1948277 2.9926192 -10.2724315 11.7724251
-5.7918048 11.0216392 12.9495984 -6.4806964 10.4689951 12.5804851
-5.8969328 11.8635271 12.5064228 -1.9985262 -1.1632973 -0.0229897
-2.2180062 -1.6344827 0.7807794 -1.4172886 -1.7574053 -0.4977847
-3.9094871 -4.4102390 -12.0543051 -3.4057003 -4.0656802 -11.3169382
-3.2563192 -4.5756494 -12.7341896 -1.7100747 3.3402138 0.0875261
-1.7698139 2.4051350 0.2832061 -1.9293286 3.7721643 0.9131037
-8.9781658 -0.0808555 -14.1762214 -9.6175684 -0.6948301 -14.5373742
-9.1009982 0.7201419 -14.6856791 3.5650944 5.1686274 6.7300975
3.1140897 5.9789299 6.9672397 4.4821465 5.4248137 6.6320374
4.0347165 2.3715150 -14.7195373 4.7005988 1.9882985 -15.2904819
4.4881033 3.0823309 -14.2663121 2.2919860 15.6296673 7.1288268
2.1589963 14.6836057 7.0695560 3.2430170 15.7381256 7.1317796
-10.6500027 9.5121813 -7.7501710 -11.3212669 8.8500410 -7.9151152
-10.5413926 9.5114105 -6.7991531 6.5450669 1.9405949 7.8417954
5.6646817 1.5648947 7.8400052 6.7163516 2.1450624 8.7610812
-10.0717164 10.3912882 7.9980578 -9.3610420 9.8722974 8.3746509
-9.8425352 10.4752489 7.0724994 7.7021545 -0.7927606 9.3876399
6.8854975 -1.0347814 8.9509144 7.9946667 -0.0050955 8.9291074
-7.4698271 -14.1778005 5.3837690 -8.3819462 -14.4609657 5.3198321
-7.5202771 -13.2263225 5.4752912 12.3829639 8.0831419 5.7044475
12.0647848 7.2163369 5.9567232 11.6265051 8.5074579 5.2995303
-5.5321298 0.9436381 5.6131568 -5.0624844 0.9475788 6.4472129
-5.0994185 1.6195077 5.0914354 4.1922169 -9.4578941 13.1679318
5.0009227 -9.8701666 13.4716723 4.4856517 -8.7233374 12.6289009
-0.8996131 6.2753278 14.3085800 -1.0850232 6.6373777 13.4421074
-1.4925238 5.5280576 14.3878014 9.7770391 -4.3830682 -4.0104121
9.1487642 -3.7297186 -3.7027810 10.6180263 -4.0907365 -3.6589658
-5.2752799 -5.2577633 9.4761847 -4.7677141 -5.8825566 9.9941057
-5.7645733 -4.7510517 10.1243106 7.6526088 -0.8029494 12.2195779
7.5573325 -1.0172568 11.2915550 6.7929383 -0.4707956 12.4781748
-5.4827294 -8.8016362 5.5096717 -5.6371767 -8.5955128 4.5877763
-4.9301892 -8.0867235 5.8256322 -3.5956390 -5.3274107 13.2315499
-4.1606209 -6.0749961 13.4268534 -4.1648480 -4.5643935 13.3317379
10.6398237 -2.4668548 -11.6274957 10.0844826 -3.1144726 -11.1934229
11.1149600 -2.9657057 -12.2920445 9.7345498 -2.9088856 0.4117889
10.3916254 -3.6017410 0.3451942 9.7308129 -2.6706436 1.3388588
-10.1983929 -1.0887497 -5.8879177 -9.9174460 -0.7449504 -6.7359170
-10.5441628 -1.9592747 -6.0850502 -4.1639236 14.3237189 6.4465154
-4.1816320 13.4922793 5.9725677 -4.2023269 14.9909100 5.7612322
-10.2136018 -0.2969745 6.2593059 -9.4509072 -0.3730298 5.6859436
-10.3985589 0.6417288 6.2886095 -12.6899225 -7.0356015 0.0607486
-12.3607095 -7.3337831 -0.7871537 -13.4385214 -7.6043895 0.2405032
2.7867747 -11.9360312 5.0498137 3.3055297 -11.1316780 5.0616909
2.5704345 -12.0950974 5.9685774 -11.4986683 -2.5422800 -2.8167498
-10.8041843 -2.4279803 -3.4654866 -12.2163612 -1.9947945 -3.1351966
4.5233662 7.6876917 4.5917321 5.4382104 7.7480085 4.8667845
4.5397242 7.1066672 3.8312225 6.9210940 -9.3255013 -7.8575896
6.1091839 -8.8591019 -8.0563492 6.7908334 -9.6667662 -6.9728284
1.2477792 -12.4740755 -11.3627144 1.0149176 -13.3685823 -11.1139879
1.2227603 -12.4773306 -12.3195818 -10.6563329 4.0829249 6.0126383
-11.3820541 4.0573339 5.3890152 -9.8787526 4.2138904 5.4700070
6.2267465 -12.7569739 4.2103434 6.8606884 -12.3909071 3.5936225
5.9842152 -13.6018088 3.8313126 13.8813635 8.2897213 -4.4237915
13.9275088 8.6036832 -3.5207243 13.5271348 7.4034270 -4.3514292
11.7370886 5.3253104 -10.4509833 10.9586591 4.9579600 -10.8697111
12.4593276 5.0763418 -11.0277132 4.5930530 10.2522398 3.3282961
4.6879352 9.3634830 3.6708462 3.9982585 10.1598421 2.5840421
3.5883772 -12.9429296 0.1956694 2.7699160 -13.1214929 -0.2674377
3.4067868 -12.1549117 0.7078066 -14.1844523 4.5301618 -6.2697234
-13.4489594 5.1249534 -6.1230778 -14.4127945 4.2117532 -5.3963921
-6.9606381 -5.4853184 3.0802417 -6.2791082 -5.0236760 3.5687446
-7.7814110 -5.1215198 3.4122269 2.2896649 -1.6513223 -16.2452908
2.7104653 -2.2752625 -16.8367783 2.9321853 -0.9495421 -16.1408684
1.8126702 16.2196771 2.6920804 1.2454028 16.9366836 2.9755258
1.3492506 15.4267138 2.9616787 -14.6556459 10.2450278 1.0684370
-13.9005534 10.8097060 0.9034954 -15.0661449 10.1373346 0.2104600
-7.9030634 -2.3612144 -12.3927146 -7.3803937 -3.1410057 -12.5797274
-7.3243771 -1.6286391 -12.6041086 -8.2868424 2.6093729 -15.1826394
-7.4318201 3.0181944 -15.0483501 -8.4178308 2.6338998 -16.1305172
8.1012509 2.2000136 -12.7050899 8.6245145 1.3990413 -12.7345939
7.4140364 2.0137293 -12.0653507 -4.9625245 -14.5402092 6.7243499
-4.6081014 -13.8335150 6.1847209 -5.7658969 -14.8041790 6.2758585
-3.1813672 -8.7797277 1.2072797 -3.8331307 -8.8635661 1.9032735
-2.4490041 -8.3210339 1.6189545 8.6149064 -7.1655115 -8.0998007
8.2177623 -8.0225565 -8.2546630 8.1084315 -6.7938103 -7.3776143
-5.5340886 -5.6767234 -2.1667249 -6.0006137 -6.0135683 -1.4017924
-6.2111740 -5.2491541 -2.6911024 -2.7940569 -13.8296172 4.4309226
-2.6332533 -12.9153939 4.6645242 -2.4095387 -13.9253813 3.5595979
1.6552783 -11.7113700 7.5783384 0.8627196 -12.2480703 7.5723917
2.1537269 -12.0286188 8.3314215 7.3571712 -3.9466215 1.7813465
7.3695877 -3.9695402 2.7381916 7.4969767 -3.0254420 1.5619962
9.7446754 -1.6938599 2.8573296 8.8765661 -1.2922347 2.8210634
9.7785195 -2.1139328 3.7167627 -9.4371687 7.4122993 -2.1398444
-10.2952858 7.8316548 -2.2031523 -9.3327616 7.2199223 -1.2080063
-3.4096367 -10.2265233 3.6345923 -3.4010296 -10.7127035 4.4590840
-3.9158473 -10.7770530 3.0371815 9.2159471 3.4467455 6.1343730
9.6107638 3.4090497 5.2632067 8.2740993 3.4887415 5.9688710
-9.3287506 11.0799256 -0.4629077 -9.9227383 11.5750198 0.1012661
-9.8278866 10.9337079 -1.2664719 8.7022089 -8.3826622 1.5038025
8.9980685 -7.4797620 1.3877420 7.9160541 -8.4486517 0.9617344
2.5241010 8.0711758 -2.9844155 2.5989288 7.1169146 -2.9801654
1.9710824 8.2714240 -2.2292315 -13.0599026 4.7220682 4.4735683
-12.7968405 5.6419019 4.4429700 -12.8354531 4.3798526 3.6082691
13.7902637 0.1767644 10.9496096 14.6405673 0.0367772 10.5329333
13.2970472 0.6997817 10.3176110 8.6098995 -12.2919689 2.5864451
9.3765460 -12.4748310 2.0432633 7.8907186 -12.1979427 1.9618094
-0.6255169 -13.8165193 -0.2592883 -1.3593854 -14.2943310 -0.6457660
0.1495507 -14.1824291 -0.6854479 -9.5965665 7.3134310 2.8551779
-10.3712271 7.8731704 2.9083258 -8.9939272 7.7919337 2.2858864
-4.0562536 -7.5218679 11.0680508 -4.7809725 -7.8665579 11.5897817
-3.8534878 -8.2220604 10.4476893 -1.7953637 -5.5883450 10.7712935
-2.6761366 -5.8841363 11.0014635 -1.5703517 -4.9538144 11.4517142
-10.2269629 -13.7324715 4.5951730 -10.9497429 -14.0886723 4.0785088
-10.5843894 -13.6453384 5.4788505 -1.0837659 15.0591118 6.7022933
-0.5212030 14.2867888 6.6450917 -1.9444749 14.7116901 6.9361951
-2.5030676 -14.9725284 -2.1176030 -2.6716192 -15.5738103 -2.8430561
-2.7448640 -14.1115833 -2.4589824 0.1101239 -12.5522956 -7.6779501
-0.0005973 -11.8455991 -7.0419055 -0.5516341 -12.3780188 -8.3472302
-14.3971946 -6.0523686 5.2582408 -13.8325427 -5.3055869 5.4575325
-15.2624911 -5.7886165 5.5711762 1.4218573 16.1681419 -0.3864828
0.8098169 16.9038755 -0.3681948 1.7969131 16.1466503 0.4939166
1.1785571 -9.0800883 1.8797778 0.4364839 -9.5451981 2.2660835
1.1547535 -8.2130071 2.2845437 -4.0991829 9.8935871 1.6236843
-4.1104898 10.8078233 1.3403538 -4.2261261 9.3917282 0.8185414
2.7800062 1.9784979 9.1172705 2.1405480 2.6330399 9.3981616
3.1355852 2.3265383 8.2995522 6.9131440 1.6145369 -10.1686239
6.0300972 1.9799497 -10.1144616 7.4458768 2.1937539 -9.6237062
-2.3750510 6.5422516 6.4041046 -3.0754062 5.9962716 6.0468369
-2.1254018 7.1159498 5.6796893 1.6571617 11.7767510 -10.5156525
1.6360315 10.8288084 -10.3845409 1.4985112 11.8925637 -11.4524818
-8.0969281 8.6797297 8.8560507 -8.5248744 7.9699497 8.3771914
-7.3908219 8.2508488 9.3394833 -0.9578571 -5.2505905 7.8267220
-0.5852482 -4.3858525 7.9988342 -1.3147899 -5.5297291 8.6698783
8.4252150 -12.6166541 -0.6304771 8.6744152 -11.6954380 -0.7045856
9.1079174 -13.0885669 -1.1073918 -2.1030264 0.3105256 12.2316078
-2.1368209 0.9512789 12.9419070 -1.2963052 -0.1798558 12.3895913
5.0683677 -0.5671814 8.3205470 4.5245817 -0.3770820 7.5560923
4.6406869 -0.1029257 9.0401216 -0.4006619 14.2770525 -5.6032432
-0.1306980 13.4153547 -5.9207778 -0.3641857 14.8396033 -6.3768310
-2.4376789 4.4029277 -14.6786368 -1.5893724 4.2858289 -15.1063000
-2.6272316 3.5511062 -14.2853154 0.4263821 -13.8008227 -3.8961357
-0.0991996 -13.1162654 -4.3101128 0.3362379 -14.5562349 -4.4770473
14.5772334 -6.8943631 -1.7456928 13.8707056 -7.4121562 -2.1316211
14.9404410 -7.4569662 -1.0617411 9.7425873 -0.7460726 14.1400038
9.3715694 -0.4464104 14.9699316 9.0012824 -0.7519234 13.5344755
1.6711391 4.9070301 -12.9834929 1.5783949 4.0445017 -13.3880609
1.0033084 5.4444315 -13.4094433 4.5190385 2.3434507 11.4753226
3.7914178 2.1468808 10.8852716 4.1515971 2.9553531 12.1131268
-13.6440689 -10.0329672 -2.7825024 -13.1238793 -10.6804670 -2.3067098
-14.5263362 -10.4035988 -2.8041470 1.6033075 9.0702467 -10.6190632
1.4165570 8.6174975 -11.4414830 1.6984025 8.3681855 -9.9754026
4.2628478 8.0763494 -8.8910439 4.6798872 8.8567522 -9.2561211
3.5958082 8.4176792 -8.2954064
0.7831396 0.7815814 -0.5765085 -0.0199545 -0.0936187 0.1174492
-0.3943951 1.0850991 -0.2423137 0.1169522 0.1480427 0.0052340
0.1702924 -0.5729203 -0.1834946 0.2145161 -0.1132328 0.1570886
-0.0819069 -0.1741420 -0.0850565 -0.1314063 -0.2012284 -0.0756253
0.2897766 0.2177066 0.0681352 1.1464460 1.2135796 -0.1697110
0.0415793 0.0261372 0.2346522 -0.1397782 -0.1601390 -0.2372756
-0.1773384 0.3223628 0.4192742 -0.1549627 -0.5377017 1.5479340
0.1808428 -0.2276488 -0.1715422 0.0470475 -0.1570952 0.2180437
0.1624225 -0.0313869 0.0213737 0.0090418 0.7915276 1.4081148
-0.1983747 -0.2878319 0.2745195 0.6500161 0.0494123 0.2883955
-0.5180726 -0.3999190 0.1275494 0.6687811 1.1990176 -0.0833733
0.1448921 -0.2189169 -0.1758943 0.3848133 -0.0563233 0.1094259
0.6493908 0.8588768 1.5080414 -0.1138655 -0.0971035 -0.1385772
0.4134510 -0.0276996 -0.0420392 -0.3029167 0.1232037 0.0051757
0.2061220 0.4931233 -0.2666908 1.1849550 0.1919197 0.0653312
0.5584623 -0.2298745 -0.1796094 -0.0580822 0.0489193 -0.0530992
-0.5282285 0.4028661 0.4964584 0.3939987 -0.3707074 0.3842078
-0.1518888 0.0485227 -0.2842835 -0.1103673 0.2083073 -0.1573770
-0.1460750 0.0714128 -0.7183072 -0.0749590 -0.0955552 -0.0553427
-0.7452733 0.3932377 -0.5404103 0.3021699 -0.4967721 0.2720213
-0.0528719 -0.0956903 0.0393450 0.0017531 -1.0708116 0.4875769
0.9664156 -0.3896551 1.7711514 -0.0551509 -0.2565278 0.2547912
-0.2185555 -0.0862939 0.4952885 -0.2333998 0.1839305 0.9895120
0.1038969 0.1724664 0.0831979 0.2329160 -0.1980517 0.2359079
-1.0327428 -0.1346454 -0.5988643 -0.1681204 -0.3993418 -0.0377024
1.2056598 0.8563122 -0.6728515 0.1240714 0.0029815 0.6746390
-0.2658520 -0.1921495 -0.0753174 1.3549967 1.0264053 -0.0007122
-1.2633100 -0.8670702 -0.1375468 -0.0456513 -0.0811994 0.0241975
0.1903140 0.3427960 0.1724458 -0.8013047 0.1305944 -0.4053582
-0.0399995 -0.0107271 -0.0925261 0.8038251 0.1429379 1.1007430
-0.1725022 -1.7290691 -0.1075371 -0.1553790 -0.0244337 -0.2579026
-0.5595974 -0.1397367 -0.3649678 -0.1911372 -0.1186847 0.0482402
-0.1800012 0.0658992 0.1351053 0.6635493 0.1816140 0.6262710
-0.6859109 0.4460210 -0.0811182 0.2841536 0.3023129 0.0123903
0.8875217 0.0383159 0.1350578 -0.1724814 0.6325922 -0.5905509
0.2585581 0.2325659 -0.0020386 -0.0053299 -1.0537144 -0.9303671
-1.9101556 1.0052834 1.5035576 -0.1060170 -0.1348168 0.0537074
0.4029479 0.8179474 0.4856822 0.3791993 0.6722286 0.4120336
0.1268554 -0.1799501 0.0375364 -0.4217629 1.1214098 -0.5472778
0.2863496 -1.0981284 -0.8815921 0.0078907 0.0938840 -0.1672076
-0.8681756 -0.9217088 -0.0344281 -0.3397245 0.5728148 -0.1168920
-0.0827617 -0.0983769 -0.1824281 0.0190248 -0.1158642 0.1364321
-0.4163639 -0.1148490 -0.5025573 -0.0523650 0.1739050 0.0869876
-0.6002603 -0.5945423 0.2621534 0.1015175 -0.6182326 0.4546723
0.1147619 -0.0341737 -0.2010833 1.0723891 0.4973533 1.6816756
0.6601553 -0.3435921 0.0104166 -0.0950745 -0.0218816 -0.2065244
0.3523049 -0.2697755 -0.1101401 0.1004056 0.0335819 -0.7223789
0.2636630 -0.0327644 0.1746099 0.6762378 -0.1799211 -0.3046530
-0.3022264 0.4692867 0.1824589 0.2098606 -0.4378524 0.0582670
1.0907380 1.0734656 -0.0940969 0.1713760 -0.1222530 1.5543559
-0.0372977 -0.4693878 -0.0953819 1.0536088 -0.7513194 -0.7949500
0.7759533 -0.9729875 -1.1794029 -0.1086299 -0.0919890 0.0334912
-0.3730720 0.3137539 -0.4986967 -0.6703237 1.3006018 -1.4514549
-0.0745124 -0.0586766 0.0327898 0.5700591 -0.5435413 0.5755788
0.0839554 -0.6457974 -0.3326404 -0.4714092 0.0218358 -0.2001251
-0.1365869 -0.2721044 -0.5856165 -0.9364240 -0.1405137 -0.2560449
-0.0584786 0.3089731 0.0190230 0.3586359 -0.1654437 0.1452404
0.0614480 0.0274012 -0.3481312 -0.3473912 0.0719666 -0.1388842
-0.3645773 0.1307042 -0.4916838 0.4911116 0.5127470 0.0696158
-0.0322975 0.2091094 -0.0728737 1.1670875 0.3242926 0.2050194
-0.7831739 0.2343671 0.0817150 0.1894836 -0.4183580 0.1950205
0.1365141 -0.5455249 -0.3662437 0.5941868 0.3112180 -0.6459005
0.2230903 0.1219553 -0.3072199 0.3329302 -0.5135049 -0.5962435
0.1721752 0.4210705 -0.4151055 -0.1210873 0.0845570 -0.0057790
0.0989742 0.1842013 0.2640452 -0.3870494 0.0494207 0.3616881
0.0408028 -0.4625351 -0.1889688 1.9632490 1.0981953 1.0577019
-0.2235969 0.4401102 -0.6465275 -0.3291041 -0.0898341 0.4135300
-0.9821514 0.6326566 0.0513460 -0.1047370 0.0706274 -0.2755132
0.2438555 0.0742868 0.1311908 -0.1108021 -1.1618865 -0.5651686
0.3361591 0.6271640 0.6626730 -0.1163031 -0.0120992 -0.3112054
-0.1324803 -0.0352261 -0.3023193 -0.0367949 0.1879880 -0.3571479
-0.1303188 0.1148503 0.0118137 -1.2343778 -1.8420761 -0.0443647
1.0736154 -0.1721133 -1.4524706 -0.2166061 -0.1595172 -0.1939073
-0.9406453 -0.0270427 -0.2106561 0.5553278 -0.4116874 -0.1458434
-0.1454664 0.1730955 0.0539291 -0.5540610 0.0059076 0.2913064
-0.8892299 -2.1685715 1.4914871 -0.0991223 0.1813137 0.1941585
0.3288546 0.4807213 -0.0472358 -0.4326464 -0.1944562 0.1949826
-0.1046102 -0.0035683 0.0263616 0.5436454 0.4144503 -0.6439855
0.3009382 -0.2581296 0.9717614 -0.1536585 -0.2111607 0.1753404
0.2081587 -0.0704876 -0.1898337 -0.5771091 -0.2631769 -0.0986526
0.1327112 -0.2887664 -0.6280338 0.7062293 -0.0070038 2.1327333
0.2400778 -0.1177008 0.8812639 0.1440751 -0.0637669 -0.1724598
0.0455634 -0.4161551 -0.3938211 -1.4289975 -0.3766619 -0.1404683
0.1122667 0.2698766 -0.0075955 1.1118437 -0.0627906 -0.5983797
-0.0097747 -0.6045246 0.6987036 -0.2561090 0.3308130 -0.1310182
0.3733405 -1.3978272 -0.3636460 0.4840119 -0.4193019 0.5878837
-0.1754508 0.0121725 0.1427970 -0.0228188 0.2409196 -0.1334846
0.4823751 -0.2923834 -0.6859511 -0.0508565 -0.1880620 -0.1217287
-0.6180007 -0.2677919 -0.0113489 0.1856261 -0.6590393 0.1123212
-0.2273720 0.1048081 -0.3145555 0.0216933 1.7842830 -0.9400672
-0.8020687 0.1303031 0.1725498 0.1747925 -0.0759183 0.2852635
-0.0866716 -0.4214511 -0.2652674 -0.6630916 -0.1191959 0.4347833
0.2039068 -0.1923649 -0.0206535 -0.0465655 0.5658713 -0.4561181
0.0958432 -0.8580985 0.2222771 -0.1528234 -0.2124803 -0.1112096
-0.2618705 -1.1798611 0.8831410 -0.3057726 -0.7786492 -0.7002019
-0.0573619 0.0656879 -0.0029591 -0.5288582 0.1159113 -0.3369969
-0.0245851 0.2552759 0.4056785 -0.1029900 0.1626000 -0.1138849
-0.6501045 0.1246155 -0.5913870 0.3925103 -0.2387006 1.0301495
0.0738063 -0.0149154 -0.0754795 -0.5650746 -0.2142051 0.1669146
0.5849753 0.2948635 -0.3365441 0.0760904 -0.0401416 -0.1502689
-0.1596555 -0.0123132 0.0498058 0.0227449 -0.6827374 -0.5380833
0.0402473 -0.0067628 0.1102863 -0.2025542 0.4133688 1.7387941
-0.3171380 1.4030511 -0.2639169 -0.0036554 0.0009222 -0.0195112
-0.0094893 -0.1087955 0.3561538 0.0568624 0.8608386 0.5792035
0.1679204 -0.2291806 0.0280777 -0.2242600 0.1994668 0.4518903
0.1271766 0.0254627 -0.8800716 -0.1197393 0.0263619 0.0083688
0.1595740 0.0131594 0.2980547 -0.2909720 -0.0883415 -0.1227540
-0.1693457 -0.0220890 -0.1012197 0.2841105 -0.4498490 0.0272590
0.1613786 0.4565754 -0.2546279 0.1980175 0.2221529 0.4673002
0.1065684 -0.1684260 0.7219472 0.2897973 0.4736295 0.8151051
-0.2915552 -0.2992881 0.2335622 0.2207147 0.1516598 0.6373187
-0.2302214 -0.5936232 0.4811063 0.2077908 -0.2251920 0.0319383
0.1674928 -0.6732985 -0.0440805 -0.2886141 0.1085805 -0.5441030
-0.0085280 0.0969509 -0.0256182 -0.0191252 -0.1045076 0.0093606
-0.6558647 0.1482992 -0.3774763 0.0431377 -0.0633260 0.1076482
0.5927069 -1.0552970 -0.1938844 -0.8607820 0.1968557 1.1462005
0.0380891 -0.0009870 -0.0399189 0.6629135 0.0885399 -0.1590246
-0.1109809 -0.4868744 -0.1609759 -0.0844130 0.2343252 0.1038643
-0.6075460 0.0413049 0.4785065 -0.0177694 -0.8163517 -0.1839790
0.1739663 0.1074918 0.0031546 0.3291258 -0.0274309 -0.1307952
0.3274048 -0.2883356 0.2670796 0.0484551 -0.3763502 -0.3565796
-0.1600875 0.2214191 -1.3618505 0.5643846 0.4040569 0.3646729
-0.0142669 0.0151647 0.1888349 -0.0017855 0.0811693 0.3406167
0.2507229 -0.0117580 -0.3282490 -0.1261315 0.1026371 -0.0788418
0.7054401 0.4479679 -0.4274825 -0.8454368 0.1260872 0.2061592
-0.3459566 0.0843282 0.1034330 -0.5328851 -0.7279816 -0.1625796
0.1407540 0.4584430 0.1408482 0.2134095 -0.1640752 -0.0295487
0.7307627 0.4567462 -0.3030248 -0.1248912 0.2643939 -0.6364646
-0.2242261 0.0893332 -0.0313620 0.1631588 0.1808416 -0.1869256
0.0933470 -0.1915542 -1.0378525 0.0498296 -0.2008287 0.1105527
0.1179786 0.5143032 -0.0228449 0.0538215 -0.6252817 0.2453540
-0.0567021 -0.1120040 0.3048419 0.6185648 0.0728220 1.5056223
1.0479488 -0.6932512 -0.7423767 0.1997885 0.3683920 -0.0778093
0.4119625 0.4736036 -0.4560676 -0.5736958 1.0584504 0.3473641
0.1741529 -0.2097989 0.1059079 0.2941555 -0.4209761 0.2054774
0.2140254 -0.2228200 -0.0332321 -0.3133159 0.1364958 0.1256484
0.1093394 -0.9149378 0.1524613 -1.6503290 0.5352633 -0.8972654
-0.1335345 0.0452112 -0.4943502 -0.2420972 0.8571999 0.3452109
-0.9522594 -0.7357061 -0.2946569 -0.3456546 0.3388640 0.0590854
-0.1196277 0.5731904 0.0598744 -0.2015061 0.3203782 0.0461668
0.1164916 0.0607701 -0.0309554 -0.0264349 0.2772176 -1.3163185
1.0806439 -0.3380433 0.7103931 0.2321017 -0.0797553 -0.0772321
0.2237298 -0.1218107 0.4997974 0.7963926 0.4243941 -1.1707316
-0.1306882 0.1316753 0.0702527 -0.1772345 0.2154734 0.0399115
0.2682979 -0.3155184 0.6710456 0.2594759 -0.1578453 0.2065341
1.3549566 0.7495314 0.8053460 -0.8787383 0.6211792 -0.7744836
-0.2121954 -0.3736567 -0.1241951 -0.0850793 -0.7832746 0.0678538
0.8010457 -0.2920836 0.6078843 -0.0152511 0.0884178 0.3082202
-0.5564413 -0.8502558 -0.0550613 0.2981815 -0.5176009 -0.0051099
-0.0860390 0.0253560 0.0037276 0.1279420 0.2901674 0.2239404
0.1225578 -0.0685109 0.0210636 0.2186221 -0.0667648 0.3280354
0.2286519 0.1616930 0.5071608 0.5029282 0.0023272 -0.1870101
-0.2753464 -0.0654780 0.2247092 -0.3956521 0.4867743 0.9957275
0.1764353 0.2628857 0.3958947 0.0450801 -0.1741295 0.1360639
0.0288370 -0.1655238 0.1814515 -0.9783616 0.3374582 -0.5360982
0.0334194 -0.0048872 0.1546820 -0.6785680 0.4340114 -0.0532399
-0.3321298 0.6171769 0.0782307 -0.1349798 0.0988710 -0.0994041
0.2547743 -0.1632437 0.4539490 -0.8185419 0.9499231 -0.4117826
-0.1135762 0.2204909 0.0176863 0.8806071 0.0356222 -0.1040068
-0.7514880 -0.0095666 -0.4701763 -0.0721625 0.0410466 -0.0768797
0.1080120 -0.6549088 -1.0567622 0.4823980 -1.1416024 -0.6804013
0.1664802 0.1614635 -0.0987842 1.2002102 -0.0394805 -0.0800635
1.1672694 -0.0437559 0.5289669 0.0355155 -0.1806361 0.1001233
-0.0469905 0.5385015 0.1810394 -0.1757518 -0.6231906 0.6717958
-0.0485131 0.4367506 0.1370925 -0.1042496 -0.0149803 0.1222549
-0.1843977 0.5292185 0.4257381 0.0594183 0.0418698 0.3442759
-0.1508052 0.0062720 0.6222624 -0.1819801 -0.1917839 0.1406953
-0.1106639 0.1366007 -0.2008881 -0.1693473 -0.1535935 -0.0822163
0.1333230 0.2887659 0.0161458 -0.2142597 -0.1688603 0.0546709
-0.6333408 0.5729604 -0.0928328 -0.7363227 0.4546492 0.7335657
0.1291004 -0.1238028 -0.0732357 -0.2054430 -0.2232263 -0.5127045
-0.7631881 -0.0694823 -0.5257030 -0.0508239 0.0360596 -0.2629838
-0.4553350 0.1293541 0.4893683 0.7361527 0.1509735 -0.2440941
-0.0432979 0.0887244 -0.0219153 -0.3591978 1.4804102 -0.3125881
0.5355437 0.1931926 2.1859755 0.1511373 -0.3316628 0.1018506
0.1935250 -0.6544196 -0.6443955 -0.8309650 -0.1698499 0.0734956
-0.1046712 -0.0861660 -0.2191587 -0.1039242 -0.3949073 -0.2073804
0.2998338 -0.0371627 -0.2360075 0.0881392 -0.0951170 0.4138161
0.3357336 0.0162311 0.2636636 0.2465956 -0.4109789 -0.6379318
0.0504202 -0.0691707 0.1038949 0.0883409 -0.2153568 0.5867076
-0.5388350 -0.2061019 0.4432010 0.1409674 0.1895759 0.0054151
-0.6687634 0.1823320 0.1260614 -0.1540744 0.8152728 1.1260463
-0.1706417 -0.2178542 -0.2584924 0.5681368 -0.3162753 -0.4243079
-0.9182299 -1.2269478 -0.5214294 -0.1670328 0.0623611 0.0378070
-0.5230509 0.2930225 -0.1039676 0.5760052 0.2263314 -0.7915172
-0.0819606 0.2245598 -0.0691728 0.7470485 -0.8510316 0.5853546
1.2234919 0.6265178 -0.3008507 -0.0272995 0.1430490 -0.0833631
-0.2758603 0.2601055 -0.6727942 -0.4278782 0.0692926 0.6294785
0.1385871 -0.0525111 0.0251422 -0.5980483 1.0756282 -0.1963068
0.3552110 -1.1711644 1.0118944 -0.1953362 -0.0257421 -0.4673466
-0.3664214 -1.4269312 -0.1490769 -0.7082911 -0.3372834 0.2208136
0.0311189 0.0459832 -0.0598683 0.3331842 -0.0308236 -1.0633140
-0.2480016 0.2413975 0.4556777 -0.2838106 -0.1502508 -0.0364268
0.2840704 -0.4902398 0.3626053 1.2039464 0.4376492 0.1828827
-0.2778350 -0.0679937 -0.1027205 0.0590812 0.8964982 0.0911104
-0.1138301 0.1772587 -0.2826569 -0.0187197 -0.1505650 -0.1118170
-1.4209032 -0.9023820 0.4412167 0.4516452 -1.4275100 0.0683050
0.0124408 0.0731067 0.0754480 -0.7778527 0.1309083 -0.1188808
-1.0609062 -0.0310674 -0.6148944 0.1250003 -0.0252634 0.1907478
-0.5806591 0.7014927 0.1831947 -0.5436771 -1.1642710 0.2220092
-0.1312713 0.3618036 0.4535924 0.0273015 -0.1832767 0.3547659
1.2459540 1.2327022 0.7727824 0.0149171 0.1114848 -0.0873706
-1.0056407 -0.9773698 -0.7056812 0.7326752 0.5992478 0.2064355
0.1732598 0.0095832 0.4908269 0.7383062 -0.9981454 0.1438573
0.4471089 -0.4861065 0.2935618 -0.0460151 -0.0765364 -0.2256953
-1.0655325 -0.9303836 -1.1163919 -0.2050732 0.0419188 -0.2092032
-0.1938446 -0.0417594 -0.2671765 -0.1483245 -0.3241753 -0.5496040
-0.4536860 -0.4873413 -0.2101544 -0.3342050 -0.0590883 0.0304623
-1.0059916 0.5094911 -2.0222274 -0.5319218 -0.1543487 0.5410662
-0.0892382 0.2953206 0.0818442 -0.5438591 0.2360460 1.2196367
0.5446257 0.0711799 -0.8299279 0.0579884 -0.0036134 0.1606215
0.1109900 0.2404140 -0.5931041 0.0860498 0.2236782 -0.1906910
0.1168623 0.0278176 -0.1212827 0.2004631 0.2623982 -0.3721320
0.1130186 0.0085154 0.1080173 0.0263398 0.2531827 -0.1294620
-0.5525346 0.1983735 -1.5702496 -0.8886662 -0.0610918 -1.4670125
0.2256330 0.1617114 0.0521339 0.5540918 0.7078564 0.7242792
0.0018909 -0.2510892 -0.3374556 0.2532393 0.0666623 0.2739280
-0.3646247 0.4478411 -0.9079163 0.2889024 -0.2863689 0.6018894
-0.1686277 -0.1203275 -0.0853376 -0.2823463 -0.2635191 -0.9827582
-0.7894151 -0.5070100 -0.3057117 0.2595865 0.2474465 0.1657233
-0.0211131 0.2512634 1.0653802 0.2198797 0.3079817 -0.0905628
-0.0227364 -0.0059691 0.1955688 0.8666112 0.0214478 -0.3111179
-0.4094771 0.5780425 -0.9155739 0.2382742 0.0112949 -0.3303168
-0.4605410 0.2629190 -0.3644052 0.6776866 0.2029378 -0.6692384
-0.0674749 0.0933988 -0.1667083 0.5466582 -0.4796244 -0.0741345
0.2079090 0.2336233 0.7318145 -0.0870948 -0.0217323 -0.1237787
0.0945196 0.1937639 0.0201343 0.1420310 -0.7888212 0.6509753
0.1713268 -0.2798445 -0.1720026 0.6759239 -1.1333249 0.2910118
0.1921318 -0.4051429 -0.0851502 -0.2243061 0.2521327 0.2350130
0.1578198 0.6056680 -0.0937830 -0.5666758 0.2750626 0.0052086
-0.0833641 0.0524527 -0.1321218 0.8026470 0.9513096 0.3797786
-0.2482625 0.1811152 0.6350966 0.0531928 0.1054280 0.1306781
0.1380248 -0.1035201 -0.4673601 0.0516280 0.7653189 -0.0971445
-0.1374078 -0.0157303 0.0139435 -1.6634825 -0.5126337 -0.3666027
-0.0813511 0.2345253 0.6277171 -0.0960291 0.0372676 0.1126606
-0.8291888 0.2220432 0.1816782 0.3266701 0.6029117 -0.0054604
-0.0487975 0.0810526 0.0687785 -0.3126684 -0.8356385 -0.3971666
-0.7261758 1.1537044 0.6726136 -0.0940555 -0.1410044 0.0410511
-1.2056065 0.5670797 -0.1423447 -0.4714327 -1.1755994 1.3177270
-0.2051114 -0.4790937 0.0742315 -1.0323586 -1.0172361 -0.0395749
-0.1353464 0.1628261 -0.9233748 0.2465536 0.2850965 0.0555498
0.1087783 0.2774145 -0.2215011 0.6216429 0.2642783 0.6837998
0.1796616 -0.4067807 0.0953737 0.1703452 -0.1912021 0.1604314
-0.0903323 -0.4032388 0.0578553 -0.0699616 0.0779972 0.0244011
-0.3755471 0.5744685 -0.1941627 0.6154872 -0.8636370 0.7354911
0.2217169 -0.1210353 0.1024693 0.1092408 -0.4449226 0.0677162
-0.2275426 -0.6195032 -0.3137743 -0.0009436 0.0612283 -0.0918175
0.0300447 0.6733956 -1.5616526 0.0527031 -0.3399364 -0.2687020
0.0157261 -0.1381670 -0.0217748 0.0061936 -0.3056999 0.0035075
-0.2423117 0.0823998 -0.1039122 -0.3241158 0.0131662 -0.2911151
-0.8204017 -0.0345479 -0.7473111 -0.3287791 -0.0345901 -0.2629576
-0.2376112 -0.0797176 0.2419837 -0.6880839 0.3061430 0.2721913
0.4911078 1.0095947 0.3693991 0.0343371 0.0418583 0.1529473
-0.5080736 -0.8470238 0.4960638 0.7773001 0.1341447 -0.9601399
0.1129204 0.1431193 -0.0930189 -0.3009283 -0.0661486 0.0243539
-0.1622078 -0.1932440 0.8055311 -0.2860021 0.1198735 -0.0225521
-0.1527563 0.3248430 -0.1881735 -0.5986097 -0.3991582 0.2901918
0.2350682 0.2516668 -0.0561040 0.2241065 1.0418113 0.3482639
0.3146517 0.4332188 -1.1347972 0.1907001 -0.0001335 0.1833042
0.1848914 0.0310116 0.2881755 0.5223289 0.0519916 -0.4491372
-0.0480661 -0.1008204 -0.1853551 -0.2009049 -0.5976204 -0.3100397
0.1893208 -0.1069627 -0.1962804 -0.1231061 0.0783666 0.2078681
-0.0155850 -0.2124412 0.1721882 -0.1798350 0.2488910 0.2079146
-0.0409881 0.1989543 0.3063458 -0.7830302 -0.0305017 0.6262088
0.7652406 0.1032609 0.6241007 0.0819588 -0.1834153 0.3999941
0.1612438 -0.0394466 0.7492496 0.2617173 -0.1315457 0.2426356
-0.0694880 -0.3204261 -0.2118563 0.4283223 0.6543888 -0.6608876
0.1649511 0.6319456 1.9172738 -0.0105550 -0.3699310 0.1652175
-0.7008491 -0.2300390 0.4194163 0.6302167 0.4404902 0.3936803
-0.1074693 0.3698943 0.2344625 0.9497333 -0.8079070 -0.3716782
0.2478380 0.7823785 0.2031811 0.1234804 0.4270969 0.4752793
-0.1719484 -0.8882785 -0.7678549 0.1910221 0.6299344 0.7273660
0.3993349 0.0231411 -0.0786230 0.2860364 -0.2741227 -0.1942729
0.3753745 -1.2802352 -0.4592603 -0.0033956 -0.0154815 -0.1225499
0.0625613 0.5291923 0.3988529 -0.7208562 -0.0114815 -0.2375452
-0.3078780 -0.0858356 -0.1735482 0.0474950 0.5502907 -0.5015714
-0.1194019 -0.0834854 0.1648292 0.2207136 -0.1907762 -0.2293479
0.7281622 -0.9081617 0.7036969 0.3399129 0.1356692 -0.8758621
-0.2679942 0.0409880 -0.2595569 0.1264610 0.2121686 0.1075021
-0.3056253 0.7264014 -0.4995675 0.3488757 0.0561804 0.3584985
0.3432553 -0.0017805 -1.3895696 -0.5484492 -0.0958527 -0.1118328
-0.0156423 -0.1173380 -0.0921499 -0.4396911 -0.4313219 0.6097302
0.3025420 1.0357574 0.2762140 -0.3505744 0.2994780 0.0346571
-0.3363330 0.2210282 0.2382263 -0.2905216 0.3019464 0.2443358
0.2042201 -0.2275261 -0.3072539 -0.2007241 -0.3345275 -0.9144520
-0.4223362 -0.0342144 -0.2489942 0.0336186 -0.1298831 -0.4434272
-0.3604453 -0.0444690 0.3104749 -0.5689827 0.1276965 -1.0228820
0.1242800 0.1493599 -0.0199727 0.1829840 -0.1477921 -0.2848372
0.5614832 -0.5077387 0.0578365 -0.0021118 -0.1875056 0.1174700
0.4692312 -0.1930386 -0.1288463 0.0652443 0.3530072 0.2615369
0.0202105 0.0528420 -0.1751463 -0.4828826 0.0476933 -0.0140786
-0.5392751 -0.0754958 -0.1592723 -0.0373033 0.0870864 -0.0410700
-1.3690375 0.0559563 0.5102376 0.6386381 -1.0267974 0.5528762
-0.0896413 -0.2370122 0.1267159 -0.6126361 0.4652729 -0.3205523
-0.1129921 -0.7992598 0.4315674 0.1086099 0.0384127 0.4476310
1.1876256 -1.5639411 -0.0003589 0.0860320 -0.1019008 -0.0033514
0.1143673 0.1147423 0.0030774 0.3306132 -0.8899278 0.4498180
0.1044217 0.8366267 0.5346541 -0.2007925 0.0879450 0.0221103
-0.3127364 0.5616690 0.3473341 -0.1658419 0.2157331 0.0368844
-0.0266880 -0.0488530 -0.1791160 0.0864685 0.1422273 -0.2143942
1.1739678 -0.9478094 -0.7934549 0.0205080 0.0246780 -0.1924505
0.1874764 -0.0295354 -0.4493193 -0.0543288 -0.0298639 -0.5620729
-0.0356319 -0.0439420 0.3030944 -1.9303781 -0.2386629 -0.9925961
0.9324808 0.2022013 1.2591926 0.2277826 -0.0290670 -0.0154955
-0.5393734 0.2956810 0.2059815 0.0489438 -0.0695585 0.1186893
-0.2125862 -0.2254472 0.1790376 -1.3312649 0.1658681 -0.5953605
0.1019615 0.4614915 1.2375516 -0.5036801 -0.0552876 0.1269074
-0.4850925 1.5017482 -0.1737040 -0.3579571 -0.3560901 0.1833504
0.0612465 0.0642662 0.0903031 0.1474954 0.2981754 0.0755238
1.2695870 -0.0336795 0.2168375 0.1638108 0.1828032 0.1807246
-0.1383705 0.1335363 0.0318785 0.4501779 0.2294903 0.3217764
0.1531486 -0.0611997 0.0018230 0.4612502 -0.0199831 0.4893845
0.5612839 1.0072450 0.5694338 0.0816596 0.0600503 -0.1385641
-0.1008244 0.0834687 0.2483891 -0.4840478 -0.5046467 -0.2406565
-0.0493216 -0.0478067 -0.3008928 -0.0816512 1.0708047 -0.2246688
0.9529314 -0.6422291 -0.1307015 -0.1536024 0.0669800 0.0941151
-0.6421056 0.7192693 0.1949702 0.1543657 -0.2561762 -0.4938630
-0.1185473 0.3426041 0.0804847 0.4163575 1.5010519 -0.6545023
-0.5311881 -0.1038934 -0.3059932 -0.3421278 0.3395368 0.2614112
-0.9782436 0.6963475 -0.1429643 -0.3272899 0.3211992 0.2576926
-0.1828086 -0.2735029 0.1915652 -0.8624937 0.1255805 -0.7180496
0.1916731 -0.7250681 -0.3552768 -0.2305084 0.1263626 -0.3392881
0.0209283 0.8940222 -0.8506091 0.0566193 0.2670415 -0.4404764
-0.0307679 0.0073083 0.2976087 -0.0028271 -0.8345910 -0.4090906
0.8785896 0.8924280 0.9287715 -0.0358606 -0.1160484 0.1689921
-0.1483617 -1.0560081 -0.2132564 -1.0177578 -0.3279819 -0.0225962
0.1347323 -0.0749377 0.0201789 -0.7889358 -0.6801807 -0.8200673
0.5115774 -0.7745906 1.6222599 -0.0709932 0.0573390 -0.0920241
-0.9212147 0.6150593 1.0048088 0.9046631 -0.0419776 0.7145009
-0.0212382 -0.0877962 0.0313415 0.0371425 -0.2310920 -0.0681089
-0.1808342 -0.0167161 0.0842449 0.3362612 -0.2011952 0.0209098
0.0378243 -0.1812571 -0.7722075 0.8029174 -0.7032602 -0.5747202
-0.3464789 -0.1605041 0.3856002 0.2114884 -0.1964714 0.2118490
-0.4091892 0.0144037 0.9024992 -0.1297781 0.2462493 -0.2142589
-0.9378138 0.0041755 0.2608055 0.7215758 -0.0412635 0.6575167
0.0061525 -0.0969330 -0.2407616 0.1174244 0.3152852 0.1882286
0.1647445 0.0875943 0.1886458 -0.0086750 -0.0999049 0.0255436
0.7923619 -0.7769908 -0.5698983 0.0421798 0.7490860 0.1990818
0.1264065 0.0222741 0.1903813 -0.8258341 1.0756672 -0.7860208
0.0133277 -0.4975143 0.8537553 0.1159779 0.1703958 0.2389852
0.1713016 -0.4252057 0.7123242 0.7144145 0.3506540 -0.1150307
-0.1285145 -0.0183739 0.2118837 0.3663230 -0.3162719 0.0393757
-0.6003677 0.0680855 0.2523303 -0.0820537 -0.0301533 -0.0406564
-0.5644137 1.0234894 -1.0218688 1.0111846 -0.8512041 -0.8100872
0.1222905 -0.0459665 -0.0948497 -0.0692311 0.9226575 -0.8643704
-0.8038141 -0.5071584 -0.3627319 -0.1901725 -0.0046488 -0.0333456
0.0635648 0.3959955 -0.5365726 -0.2738349 0.2174718 -0.5269699
-0.1013729 0.1839040 -0.0844579 0.1778596 -0.6837122 -0.0492761
-0.5556310 1.2750447 1.1201323 0.2513170 0.0059418 0.1855269
-0.8840119 -0.0567985 -0.9513760 -0.5304108 -0.3308251 0.9877545
0.0771109 0.0222662 -0.1012998 0.4950364 0.1441037 0.2518433
-0.5518277 -0.5743358 -0.4547760 0.1043066 -0.0681905 -0.2120318
-0.9382161 -0.3061166 0.9120444 -0.0286646 -0.0417003 -0.1625061
0.0155503 0.0426501 0.2782465 0.9422742 -0.0340970 0.5734938
0.0052783 -0.0422966 -0.8533581 0.1252707 0.1382827 -0.1683602
-0.2585361 0.1195688 0.6947012 -0.3807862 0.6324039 -0.1605540
0.1471690 -0.1916732 0.0752033 -0.1520130 -0.6457584 0.1759052
-0.5737149 -0.1176545 -0.4433713 -0.1387962 0.1704984 -0.1823955
0.2264101 0.4301535 1.1536246 0.4458775 -0.7211690 -0.3652911
-0.1413615 -0.1872899 -0.0581443 -0.6070010 -0.2344524 -0.1202307
-0.0185622 -0.6002043 0.1341826 -0.1917916 0.0989440 -0.3314353
-0.8187498 -0.3559191 -0.2529501 -0.5448522 1.4309365 -0.0885403
-0.1212332 0.1918352 -0.4522289 0.1818946 -0.1510593 0.0645847
-0.6587724 -0.0399338 -0.6754050 0.1140076 -0.1315978 -0.1009692
-0.0558985 0.1235458 1.2434575 -0.4359066 -0.0318774 -0.5943670
-0.0391080 0.0037550 0.1844353 -0.9947641 0.4893242 0.4140544
-0.5262916 -0.1903400 0.0894000 -0.0596850 -0.2436975 0.2473500
0.4177253 -0.2229902 -0.8062920 -1.6713966 0.1743629 0.3882772
0.1412735 -0.0691573 0.0297328 0.4847183 -1.7691521 0.8155420
-0.0751703 -1.3415551 0.1901991 0.3402639 0.0392868 0.1130555
1.1512965 0.4683981 -0.1622881 -0.0842043 -0.1108484 0.3411916
0.3137272 -0.0587479 -0.3015119 -0.1007459 -0.4534783 -0.2437988
0.4380886 0.5169378 -0.0821086 0.0824848 0.3272915 -0.1191191
0.1723397 -1.4852800 -0.0111314 1.4604767 0.1069474 -1.0228270
0.0500506 0.2437977 -0.0550788 -0.8083805 -0.2312513 -0.3648745
1.0885569 0.5944597 0.0545615 -0.0299524 0.1461956 -0.0121978
-0.3648382 1.0847273 -1.0622060 -0.1185015 0.7367793 -1.3766433
0.1429676 -0.2151192 -0.3129217 -0.4565189 -0.1038633 -0.2531772
0.7132340 0.6935669 0.3102986 -0.0839429 0.0975848 0.1457387
-0.0511168 0.0088217 0.6359058 -0.4861280 0.4220607 -0.0298448
-0.2222820 0.4016645 0.3517458 0.2626493 0.3775835 0.8387462
-0.2024963 0.4499714 0.7634564 0.0628011 0.0824279 0.1664070
-0.3310718 0.1228956 -0.2688732 -0.5436074 0.1716708 -0.8382396
-0.0872579 0.0087730 -0.1700323 -0.6735376 0.0696604 0.1169724
0.0659774 0.1999304 0.1405796 -0.1357499 -0.6184194 -0.0686534
0.7693935 -0.3744202 -0.9527867 0.4744437 -0.7279306 0.1479329
-0.1529009 -0.1828357 0.0957325 -0.0301891 -0.2804787 0.5416698
0.2095115 -0.1301207 -0.0196351 0.4080075 0.4401124 -0.2467484
0.1733407 0.4707982 0.2828717 0.4981638 0.0446134 -0.1417469
-0.1089574 -0.1198243 0.2583964 -0.3189184 0.3905554 0.1509775
0.4852027 -0.1994865 0.2711956 0.4278067 0.3049336 -0.2579901
0.6499640 0.0011986 0.2730945 -0.6731529 1.1702262 -0.7749174
0.0374524 0.0626239 0.2282420 0.0127474 0.6342620 -0.1379567
0.4787389 -0.8449860 0.9493080 -0.1885518 -0.2784265 -0.0013310
-0.6203879 -1.2644005 -0.4376204 0.5389653 0.1964257 0.6250693
-0.1366729 -0.2212708 -0.1319240 0.0171079 -0.1025861 -0.1939559
0.3591605 0.0001501 -0.2267596 0.0289593 0.4080319 0.0879176
-0.9054273 0.3311124 0.7649435 0.1235438 0.8792915 0.7214120
0.1076685 0.0688466 0.1344320 0.0668283 0.0203200 0.6391087
0.6799910 0.2023672 1.5202256 -0.2870165 -0.4465051 -0.1212717
-1.1403179 0.6155180 0.1485820 -0.3313210 -0.9885846 0.9449041
0.0177283 -0.4480135 -0.1626795 0.0000837 -0.5468709 -1.0886899
-0.1720346 -0.5188309 0.3371666 -0.1703531 -0.1080910 0.0799884
-0.3080637 0.0317172 -0.1322243 0.0673318 -0.1425150 0.4229903
0.2010982 -0.2658710 0.2273764 0.2839424 0.4370451 -0.3325659
-0.2613479 0.0917821 -0.0143559 0.2094196 -0.3089329 -0.3215619
-0.4936192 -0.7035095 -0.4706303 0.7785299 -0.1352065 0.2456474
0.0306663 -0.4234624 -0.0154518 -0.0204059 0.0768425 0.1100179
0.5381161 -0.3294320 0.5931944 -0.0546093 0.1181280 0.2664960
-0.8731042 0.9965068 -0.0380444 -0.0363340 -0.1949715 0.2237640
-0.1660348 0.0363080 -0.0705886 0.2168899 0.5562455 -1.0052775
-0.3684633 -0.0571087 0.0907395 -0.0844685 -0.0513774 0.0902077
0.2825980 -0.2553833 -0.5031137 -0.3370915 -0.2575981 0.6349609
0.3499286 0.1823383 0.0660452 0.3254951 0.1015699 0.1005285
0.6825034 -0.0766605 0.1024166 -0.2202303 0.5810897 0.2743797
-1.5339760 -1.3721734 0.2059267 0.3371411 -0.3433359 0.3217831
-0.1522660 -0.0605015 0.0641726 0.5546921 0.6899297 -0.1098486
-0.5067213 -0.1426074 -0.2065140 -0.1780309 0.1533976 0.1843288
-0.2638354 0.7087204 0.5002033 -0.1801434 0.2322880 0.2462556
-0.1337746 -0.1351456 -0.3007392 -1.0382174 0.3076487 -0.1501692
-0.2053781 -0.1959076 -0.5451669 -0.0856966 0.0318334 -0.0218022
0.9369877 -0.1979770 0.0835973 -0.5689639 0.4295445 0.5095353
0.1220405 -0.0887728 -0.2653341 -1.1814254 -0.2823880 0.9566894
0.6983261 0.0842574 1.2211660 -0.0896360 0.0495822 -0.1153132
-0.7863436 0.4330913 0.8922491 0.3392983 -0.8634179 0.3953224
-0.0909166 -0.1299406 0.3845920 -0.1216503 1.1659842 1.2384601
0.8040411 1.2805398 -0.6829581 0.0370778 -0.0226582 0.1314319
-0.0110470 -0.1764052 -0.1968226 0.0277354 -0.6829483 -1.0500323
-0.0282704 0.1849719 -0.3862888 -0.3952382 -1.4284395 0.4790783
-0.1507368 0.9999098 -1.4047954 -0.1148835 -0.0758820 0.0918932
-0.0821972 -0.1339099 0.0911816 1.0897310 -0.0039618 -0.0150870
-0.0104718 0.2227725 -0.2603830 0.4511674 0.6074424 -0.3802692
0.0645345 0.1769783 -0.3332321 -0.2989513 0.2215180 -0.0366517
0.4077634 0.3210961 0.5470259 0.4434766 0.0671174 -0.2039789
-0.0529942 -0.1018475 0.0265888 -1.0585428 1.3026991 0.2793344
0.8146014 -0.3653266 -0.1292185 -0.1740244 -0.1331514 0.3030315
0.1383579 -0.6412791 0.8482958 0.1834834 -0.3441109 -0.4675666
-0.1543019 -0.2416317 -0.0770202 0.0836101 -0.1006512 -0.3401911
0.1725185 -0.0455232 -0.4139184 0.1426845 0.0600165 -0.2349418
-0.1482055 0.0772397 0.1469587 0.0342249 0.5323806 -0.4352416
-0.1965267 -0.1026702 0.3510595 -0.4292040 0.0924546 -0.0482821
-0.1244051 -0.1249416 0.7399592 0.1885758 -0.1970363 0.1199706
1.1508653 -1.5413740 0.3831414 -0.7256301 0.6818251 0.1293481
-0.2642354 -0.0751699 0.0301129 -0.5875375 -0.5289451 -0.2093714
-0.3474979 -0.2199060 -0.0208630 0.1353026 0.0762378 0.2675426
0.3971197 0.5401511 0.5173571 -0.8824703 0.0104503 0.3849970
0.0073831 -0.1651221 -0.1119165 0.1358459 -0.0327056 1.1849465
0.1416664 -0.2752792 -0.5082690 0.3021056 0.1633539 0.0824812
-0.8768241 0.7679146 1.1368721 -0.4262102 -1.3009130 1.3307209
0.1031911 0.1009080 -0.1497174 0.2367748 0.1440224 -0.4913245
0.1821035 -0.2142701 -0.4892937 -0.2700600 0.2750616 0.0666315
-0.4094172 -0.1429328 -0.0899772 0.9442496 -0.6337683 0.6157041
-0.2491457 0.0370983 -0.0001831 0.0625891 0.2937237 0.0164685
0.2042096 -0.2229181 0.5980472 0.1258367 0.1923698 -0.0494209
-0.2191638 0.7283106 -0.2732232 -0.0266242 -0.1055025 -0.1722605
0.0934910 -0.0287448 -0.3200868 -0.2439612 0.2979110 0.1688105
0.0538280 0.4144498 -0.7938151 0.0440903 -0.4221264 -0.2608744
-0.9726834 0.1127643 0.4077902 -0.9300648 1.1421218 0.9862524
0.3684473 -0.0005844 -0.2238815 -0.2179716 0.4934885 -0.6932559
0.2540514 -0.0759684 0.2737256 -0.2115603 -0.2609526 0.1851838
0.8149872 0.2913282 0.2109985 -1.2083443 -0.4894873 0.0721560
0.1385150 0.2399008 0.0562958 0.4353918 0.1531069 0.6647799
0.3963262 0.3361629 -0.0283176 -0.2524438 0.2153753 -0.0196089
0.0358822 -0.0057109 -0.1287274 -0.4033117 0.3336073 -0.1040040
-0.0221518 0.1871270 -0.1415113 -0.1508002 0.1645318 -0.0606618
0.9976538 0.0778174 -0.6312685 -0.2442049 -0.1229143 -0.1879562
-0.0311769 -0.4158196 -0.1761110 1.4335434 -0.8312632 0.0749712
0.0715879 -0.0677022 0.3075718 0.0787973 -0.7474078 -0.3969766
-0.5798313 0.2789604 0.8786911 -0.1837827 -0.2608216 0.2923073
-0.5265995 0.3615621 -0.0730759 0.4792095 0.1186282 0.2883924
-0.1806379 0.0238260 0.0058236 0.3873299 1.2570799 0.8548617
0.8950881 -0.9712123 0.3627379 0.0510954 -0.1370599 -0.0816680
0.7430813 0.9491384 -0.4164963 -1.2863971 0.2620069 -0.0196121
-0.0586643 -0.1210304 0.4592208 -0.4345619 0.8108996 0.2876457
-0.2796744 0.3805965 -0.2622282 -0.0482623 0.0371514 0.0872105
0.6170723 0.5709002 -0.1727072 -0.1946443 0.1422647 -0.7263997
-0.1350075 -0.0929228 0.1128901 -0.5595072 -0.6297318 -0.7717338
-0.3562456 -0.3636104 -0.2648739 0.1971290 -0.0578554 -0.0142852
0.2074082 -0.4086758 -1.0650629 0.2171149 -0.0254787 -1.1006447
-0.1513642 0.2983276 0.2416178 -0.2401787 0.5269188 -0.1350648
0.2595095 0.1388295 0.6846003 0.1099203 0.1641712 -0.1501119
-0.7644163 -0.1132554 1.0507749 0.0078657 -1.1968644 0.5035246
-0.3719213 0.2519109 0.0070343 -0.0699188 0.5448131 0.5456978
-0.5595057 0.4153287 0.8380249 0.2085446 -0.1311829 0.3384809
0.1160992 -0.2831610 0.3601859 -0.3735301 -1.4617236 0.0741681
-0.2855402 -0.0166801 0.2743975 0.9727158 -0.9881439 -0.0549955
0.0456066 -0.0481313 0.7541026 0.2898068 0.0138521 -0.3036515
0.3323467 -0.2127152 -0.0250401 1.1491416 -0.2466430 0.8511117
0.0044845 0.0551505 0.0861430 0.7913843 -0.7155602 0.4778213
0.4404492 -0.3685914 0.2633771 -0.3267725 -0.1093250 -0.0190215
-0.9022604 -0.2341389 0.3189766 -0.5615625 -0.3813357 0.0008561
-0.5539750 0.0997137 -0.1183807 0.6711322 0.0003815 -0.2720759
0.2933845 0.0883906 -1.0294730 0.0658581 0.1271570 -0.0894187
-0.1894205 -0.9144165 -0.1273302 0.3380228 -0.4278292 -0.0448833
0.0798913 -0.2077959 0.2808475 -0.0295149 -0.0865263 0.1695274
0.1015797 -0.2665010 0.2207636 -0.0032081 0.0128923 0.2839648
0.5871867 0.3373833 -0.6854838 0.8353533 0.4531689 -0.6750575
0.1453972 -0.0142905 -0.0236991 0.0635282 0.5324800 0.1135025
1.3166673 -0.4508345 -0.3121937 -0.3578801 0.3557047 0.0100283
0.5104246 -1.1645657 0.6854430 0.0424844 -0.0407594 -0.0286948
-0.2478540 -0.1699456 -0.0135977 0.3976462 0.0731125 -0.7378796
-0.5620226 -0.5504393 0.3925167 -0.4830802 0.2020771 -0.1549668
-1.0025729 -0.7311563 -1.4239972 -0.2180227 -0.2499000 -0.2520063
0.0077308 0.3110276 -0.0469536 -0.2228244 0.0031469 -0.1435002
0.2722198 -0.6703598 1.4017267 0.0145211 -0.0789587 0.0617519
0.7957965 -0.4374948 -0.8132236 -0.8465308 -0.5851039 0.2222930
0.2027310 0.0915595 -0.1069306 0.3840243 0.1885465 -0.3659511
-0.0110009 0.6662520 -1.3351769 0.3561424 -0.0168873 0.1697515
-0.4109517 -0.5008815 -0.4689782 0.7602510 -0.7999144 -1.2278596
0.2300827 0.2138364 -0.3357861 -0.2509366 0.4631250 -0.7712688
1.1488594 1.0472825 -0.8246759 0.0806789 0.0680397 0.2151083
-0.3302076 0.0416749 1.2167133 0.3686843 -0.0653718 0.0121482
0.2176271 0.0338481 0.0068157 0.0226680 0.7109800 0.2692785
0.9538699 0.9129524 -0.7104792 -0.0668433 0.3264102 -0.2842353
0.1395813 -0.2659149 0.1126259 -0.8125496 0.6031030 0.5037113
0.3997075 -0.0045415 -0.0872619 0.4529795 -0.4215624 -0.3644995
0.4074535 -0.4417974 -0.5135324 0.2215468 -0.1590391 -0.0730053
-0.0780546 0.3697177 1.3968882 0.1004535 -0.4141305 -0.0513899
0.4050189 -0.0569146 -0.0270402 0.9707503 0.3026850 -0.3079673
-0.4184177 -0.2822716 -0.3656783 0.1144886 -0.1094503 0.2082192
-0.2504846 0.0173105 -1.2002674 1.0897701 0.8090395 -0.1938791
-0.1970462 0.2524100 0.2643338 0.0662898 0.5304701 0.2953380
-0.4443555 0.0028013 0.1539271 0.1401136 -0.3533615 -0.0449946
0.3565184 -0.5158179 -0.8834675 -0.4696832 -0.2115314 0.1099930
0.0184766 0.1641519 0.0207114 0.0433685 0.1953571 -0.1870313
0.2775287 0.1025661 0.6054208 0.1623444 -0.1301587 0.0933217
0.0115331 -0.1167818 -0.0187485 -0.2615214 -0.5480381 0.3046303
-0.4258316 0.2424358 -0.1681007 -1.5637787 -0.6151741 -0.1816563
0.3919184 -0.2028324 0.9048337 0.0470391 -0.0184343 -0.2733763
0.4121560 0.0462549 0.0997522 -0.9364814 -0.9757265 0.2051141
-0.1639810 -0.0623119 -0.1342297 0.5595508 0.9317633 -0.6509893
-1.2433441 0.3435610 -0.4145940 0.1674324 -0.0299892 -0.0871267
1.0092751 -0.4392130 -0.3529243 0.0657935 -0.3218713 -0.1409406
0.1641757 0.0384713 -0.0621245 0.0064440 0.0147663 0.1599535
-0.4945109 -0.1090655 0.4447979 -0.1198143 -0.2378666 0.2220351
0.0567201 -0.1771693 0.1454153 -0.2640076 -0.4440980 0.0880116
0.0908207 -0.1753861 0.0910033 -0.4793002 -0.5496287 -0.7266197
0.5395457 -0.2735843 0.1208984 0.0538831 -0.2409578 0.1614190
-0.1556836 -0.9113601 -0.0597216 -0.6455026 -0.9167466 0.3270226
0.0179104 0.3403562 0.0426066 0.0958748 -0.0208473 0.2621374
-0.6537457 -0.0131272 0.4598208 0.0246784 0.1976152 0.0422943
0.3539431 0.0408303 -0.2856216 -0.6242888 0.3225180 -0.5790393
0.3139671 -0.4059188 -0.1850811 0.8471628 -0.4190241 0.1996544
-0.2347344 0.0481079 -0.4447508 0.0587508 -0.0453011 -0.2626107
0.3038715 -0.1632945 -0.2687267 0.5418137 0.1242042 -0.3331773
0.0370664 0.1595363 -0.0172299 -0.1115627 0.5050502 0.3409712
-0.6367853 0.6943275 0.3109413 0.2604443 0.1120729 0.0791614
0.4895223 -0.0537767 0.1627697 0.4675888 0.3823354 0.3969289
0.0101339 -0.0393583 0.0549027 0.8593276 -0.2163811 -0.4184766
0.4854071 -0.1662791 -0.8171211 -0.2260757 0.0514193 -0.1349589
-0.1395061 0.4898023 -0.5261653 -0.4284765 -1.1670158 0.7701440
0.3985705 0.0245491 -0.1744146 1.2780754 -0.4643802 -0.0333321
-0.0672500 0.1094245 -0.0076041 -0.2818343 0.0966596 -0.2550714
-0.1026481 -0.3951421 -0.2555087 -1.1121682 0.1462795 -0.3755522
0.2444603 0.0925730 -0.0723322 0.8563654 0.4459334 0.4384980
0.4893226 -0.3585430 -0.5602261 0.1606506 0.2023445 0.2873703
0.4097638 0.0179535 -0.0133068 -0.2535836 -0.4618055 0.1367179
-0.1482682 0.1426149 -0.0536482 0.9037238 1.2586781 0.4142958
0.4127316 -0.0198751 -0.6233362 0.1577558 -0.2761792 -0.3045346
-0.0230542 -0.3032759 -0.1099233 -0.7452342 -0.3643227 0.5348795
0.3858212 -0.2293883 -0.0380182 0.8541595 -0.0846945 -0.0441781
0.1620428 -0.8528849 -0.3391342 -0.1271143 -0.0813500 -0.0777733
-0.5055891 -0.2661106 0.5579058 -0.6379746 -0.6949677 0.2253749
0.1772813 0.0471285 -0.3929827 1.2026972 0.1930567 0.2083924
0.3229723 0.0083859 -0.0947448 0.0283921 0.1595329 0.1698700
1.1474740 -0.6055511 0.3976700 -1.3040184 -0.1376154 -0.7885144
0.1762967 0.0192530 -0.0863021 0.1647221 1.4928629 -0.5474092
-0.7106135 -1.3833673 -0.3952577 0.1663488 -0.0435882 0.0967839
0.6488833 0.7517299 -0.3621488 0.0034430 -0.2694157 0.2245513
0.3552569 0.1939746 0.0392735 0.3934011 0.1969687 -0.0294626
0.2173334 1.0231589 -0.6396179 -0.1822881 0.0090949 0.0577346
-0.9749137 -0.0976792 0.2773120 0.9049632 0.0808085 0.8335702
0.0615916 -0.0234514 -0.0075568 -0.8493186 -0.2212657 0.3125140
0.1799735 -0.2856905 -0.1607761 0.1055504 -0.1069352 -0.3554948
0.7232716 0.3559679 -0.9805291 0.5608829 0.8504142 0.5449206
-0.1593582 0.0755329 -0.0194732 0.3708610 -0.1484902 0.2155141
-0.2096552 -0.3094628 -0.6051713 0.1101659 -0.2728481 0.1721370
-0.3945212 0.1416070 -0.2786502 -0.2270691 -0.0445811 -0.2508222
-0.1211544 0.1155301 -0.1448973 0.2943205 0.9225637 0.0168592
-0.5951513 0.0105524 0.2781664 -0.1411601 -0.0665090 -0.1603853
0.1274234 -0.1310852 -0.0945004 -0.7635899 0.4800136 -0.2430251
-0.2239776 0.3072617 -0.1146395 0.2494095 -0.6750279 -0.5648217
-0.2273400 0.4236606 0.2606499 0.2176010 -0.0185018 0.1739718
-0.4742687 0.3357833 -0.2856961 -0.5037617 0.4410985 0.8028269
0.1746342 -0.0221392 -0.1438531 -1.4456558 0.5485024 -0.0251781
0.1738743 -1.3054566 1.0477638 -0.1017063 -0.0630335 0.0276055
-0.3076475 -0.2205690 0.2195131 0.0415581 0.1017851 -0.1866423
-0.1798650 0.1196619 0.2873526 0.7939921 -0.6859114 0.0973817
0.8847348 1.0831682 1.2416673 -0.2166607 0.0662376 0.1564041
-0.4502837 -0.2710179 0.0234735 0.1014513 -0.5669861 -0.5788777
0.3672804 0.0783155 -0.2629548 0.1085457 -1.2726212 -0.2412350
-1.2432881 -0.6098187 1.4408194 -0.1663359 0.0176213 0.3447068
-0.1326995 -0.4083377 0.1889422 -0.8678153 0.7649680 0.5946155
-0.2537124 -0.0173956 0.0481852 -0.1871526 0.0848900 -0.4485401
-0.2330896 -0.1683477 -0.5892728 0.2352529 -0.2101420 0.2716962
1.0837574 0.1383834 -0.9583707 -0.1438354 0.4510950 0.0297783
-0.2539803 -0.2427001 -0.1228856 -0.3000935 -0.4005360 -0.3709022
0.3160484 0.6906948 0.6468154 0.0761441 -0.0118503 0.0870393
-0.1649413 -0.4471425 1.1573756 0.2882242 0.1472786 -0.7512287
0.1435090 -0.0803446 -0.2209966 -0.4314056 -0.5595839 -1.7749848
0.1429846 -0.1393412 -0.1093965 0.2346703 0.2237374 0.2747356
-0.1876775 0.4026618 0.2244885 -0.8239570 1.1889369 -0.2801124
0.0374421 0.3203995 0.2013425 1.4372970 0.1447121 1.2296271
-0.1202364 -0.9101212 -0.3206717 0.3151916 0.2056259 0.5163737
0.6461601 -0.4415283 1.1615570 -0.5120284 -0.4301530 0.3808999
0.1137154 -0.0975756 0.0564471 -1.2397335 0.1550316 -0.4025120
0.6383214 0.4118492 -0.9993851 -0.1155566 -0.1110355 -0.1499736
0.2067941 0.0704836 -0.6717580 0.0531834 -0.2865571 -0.2579704
-0.2980976 0.1993568 -0.4808973 0.0736648 -0.1344959 -0.3331304
-0.1068784 0.1823997 0.2924918 0.0200151 -0.1098504 -0.0062195
-0.6461692 -1.0052042 -0.7110217 0.5520907 -0.7362469 -0.1750295
0.0734777 0.0038886 0.1662775 0.1648361 0.0953450 -0.0869217
-0.1978767 -0.3798874 0.0761907 -0.1624782 -0.0708939 -0.2502246
0.0182127 -0.7416304 0.7724996 -0.2014155 0.0430044 -0.3450529
0.0939196 0.0533999 0.1190918 0.1419587 0.7955340 0.5836289
0.2316103 0.2459025 -0.5836839 -0.0757990 -0.0859703 -0.3940521
-0.0020505 -0.5622084 -0.6508139 -0.4021050 -0.0377119 -0.4323754
-0.0563513 -0.2571325 0.1467532 1.9978391 0.4379573 -0.5544133
0.1357765 -0.6878693 0.2849694 0.2279912 0.3731763 0.1584871
-0.4967551 0.5999600 1.0642894 -0.4242519 -0.5305225 0.1817255
0.1811191 0.0247563 -0.2614882 0.5861349 -0.2264339 -1.8242015
0.3772726 0.3417767 0.5774671 0.0983277 -0.2073117 0.0956174
-0.0192448 -0.1822888 0.0351074 1.4581984 -0.9033096 0.1512535
0.1091571 -0.1166386 0.0108100 0.1763862 -0.2395635 0.0526334
-0.1740202 0.5782795 -0.2013234 0.2123441 -0.2060622 0.2633357
-0.5001487 0.3093860 1.0896955 -0.0605563 0.2387975 -0.7083495
0.1645056 -0.0748511 -0.2623670 -0.3655513 -0.6090383 -0.3487423
0.3363539 0.2339100 0.1559726 0.1740193 0.0577604 -0.0233779
1.1518592 -0.4529380 -0.6793648 0.4113243 0.6167712 0.1357122
-0.1787755 0.3996299 -0.1231547 -0.1782133 0.5930782 -0.0065732
-0.2601287 0.8210474 -0.9227061 0.0736397 -0.0409174 -0.1493636
0.4082865 -0.5381762 -0.8310723 0.0016699 -0.0113672 -0.7194446
-0.0089498 -0.2337123 0.1190714 -1.0384565 0.5103667 -0.1923416
0.3732631 0.0671154 0.5951098 -0.0107322 -0.2647428 0.0473156
-0.0147865 -0.2373058 0.1195884 -0.0392395 -0.3775209 -0.0785840
-0.3647396 0.1264325 0.0133574 -0.4931633 1.1706983 -0.2006160
-0.4808373 0.5657021 0.2877203 0.2488500 0.1584355 -0.1738941
1.8003183 0.2714965 -0.4969221 0.7112186 0.1834698 -0.2838977
-0.0285443 0.0010127 0.1173917 1.0492469 -0.0100218 -0.0676175
0.0598800 0.0223700 0.1226113 -0.1843369 -0.2547608 -0.0627629
-0.0508051 -0.4594936 -0.5323891 -0.3765001 -0.2484613 0.0104401
0.1924760 0.4230740 -0.4075112 -0.2535495 -0.0901654 0.0315661
0.9672757 0.5306173 -0.5411009 0.1290114 -0.1332125 0.1360312
-0.0783578 0.3738638 -0.3713071 -0.2033453 -0.0714068 -0.3100681
0.0164709 0.2057160 -0.1369033 -0.3551939 -0.2029156 -0.2759170
-0.2039805 0.6130238 0.0053576 -0.0116289 -0.0140490 -0.1900003
-0.4138753 0.1304096 1.1649734 -0.9378736 -0.2867907 0.5363756
-0.0172118 -0.1924503 -0.0612170 0.1222643 0.1504015 0.0084471
-0.3795055 -0.7178989 0.5655139 -0.0186262 0.2480406 -0.4432219
-0.0185285 -1.3893344 0.2833782 -0.7959633 -0.2930360 -0.7054280
-0.1664253 0.2391047 0.0733930 -0.1822756 0.1188006 0.0089355
-0.0143988 0.3565969 0.2158351 -0.1586524 0.3877520 -0.0391973
-0.0545223 0.3854837 -0.1595024 0.7088093 0.6315328 -0.7275903
-0.0873735 -0.1835247 0.1031517 0.5596453 -0.2869707 0.0330106
0.2586828 0.6753211 0.8891757 -0.0660161 -0.0523085 -0.0160984
-0.0234840 -0.0500529 -0.2042318 0.0791042 0.1410009 -0.0209960
0.2727495 0.1393947 -0.0819461 0.1744409 0.5570311 -0.0866413
1.0634064 1.1388703 0.0167157 -0.1109165 -0.3074405 -0.0979743
0.6694009 -0.1807373 0.6325505 -0.9840170 0.4577472 0.8412572
-0.1842620 -0.1366755 0.2667842 0.5919577 0.4799877 0.0875687
-0.4660708 -0.5672828 0.5333776 0.0449319 0.0064427 -0.1130811
0.4933076 -0.3612255 -0.0438497 -0.3096982 -0.4227090 -0.4794447
0.3646182 0.1502924 0.0515942 1.0129914 0.0423184 -0.1774115
0.5898392 0.5813908 0.4656393 0.2039974 0.3666270 0.0042345
-0.2750667 0.0533202 0.7269376 1.3136256 -0.6466930 -0.4582156
-0.2527715 -0.2249798 0.0254527 -0.2471308 -0.7891420 0.3295415
-0.0318480 1.2252283 -0.6493968 -0.0206382 -0.1379037 -0.1425212
-1.0858837 0.7280826 0.0080240 0.0604295 -1.6576949 0.4199032
0.0531573 0.5081434 -0.0081593 -0.0479446 -0.8773009 -0.2062946
0.1286046 0.4372228 0.2842978 -0.2569007 -0.1492837 0.1788913
0.0586223 0.9476825 0.8744087 -0.3421622 -0.3666903 -0.0146133
0.1997804 -0.1724026 0.2172000 0.0147605 0.6185372 0.1206011
-0.0921456 0.2426736 0.1569129 0.1930520 0.1305952 0.1353670
-0.3965247 0.1323673 -0.5010634 -0.4224297 -0.6020371 0.5245385
-0.4736224 0.0367742 0.1175752 0.0459858 -0.9490694 0.0277029
0.5459892 0.5879133 -0.1353260 -0.2100598 -0.1143684 0.0202532
-0.6754532 0.7271365 -1.1663333 0.2777716 -0.9734546 1.2184863
0.2737501 -0.0166269 -0.1720361 0.4464941 -0.3095905 -0.6424471
0.3390549 0.0462403 0.1323725 -0.0330350 0.2249417 0.0281566
-0.5094623 0.0462631 0.2100895 1.7628470 0.2936083 -0.4602806
-0.0141565 -0.0525319 -0.1970637 0.3008326 0.0705904 -1.1677505
0.7264417 0.3756950 0.0347615 0.0931363 0.0825676 -0.0303930
0.4506014 0.8110573 0.6059349 0.1594066 0.6395125 -0.3837973
0.1281357 0.3253678 0.1921559 -0.5916154 0.2831982 0.3295034
-0.3175803 0.3896485 0.4225181 -0.2197256 -0.2325986 -0.0942261
1.0439302 0.5763012 0.4521001 -0.2716813 -0.7746506 0.6911149
0.4279112 -0.0825378 0.1035938 0.9714895 0.0895405 0.2448662
-0.1825784 0.8903004 0.2764867 0.2141798 0.2450902 0.2742119
-0.1619262 -1.2317814 1.1595066 -0.1247438 -0.2476337 0.1563722
-0.2529844 0.0718266 -0.2655348 0.0579310 -0.9276050 -0.5765613
-1.1508103 -0.8881727 0.2103699 0.1136486 0.0809024 0.0919020
-0.3111638 -1.6881398 0.0860064 0.0308902 -0.1007787 0.5400911
-0.1291714 -0.0461526 0.2006617 -1.0945898 -0.7798744 0.1552748
0.6565015 1.4855183 0.9143599 0.2701235 -0.0489879 0.0643942
0.2810561 -1.6608650 -0.2465344 -0.2292915 -0.1264004 -1.0682235
0.5040408 -0.1687191 -0.0024731 0.0595058 0.5637555 -0.2364907
0.4614794 0.0762541 -0.0643090 -0.2522735 0.2650282 0.0338922
0.3566612 1.1118022 -1.3520621 -0.7705041 0.5649689 0.9733460
0.0125670 -0.3082895 0.1072513 0.2828911 0.7007911 0.0211652
-0.4684314 -0.4416954 -0.3771796 -0.0776425 0.1811753 0.2760173
-0.8548312 0.1080392 -0.2646965 0.1559809 -0.3923435 -0.5606004
-0.1073933 -0.3231478 -0.1319026 0.3812552 -0.3555929 -1.0245025
-0.5750271 -0.1966633 0.7781345 -0.1569605 0.0206945 -0.1686842
0.1057474 -0.8295402 -0.0550628 0.0146518 -0.4616231 -0.1055199
-0.1318063 -0.0413641 0.1078358 0.3056894 -0.1362828 0.8591590
0.4301963 -0.2933642 -0.5332556 -0.3253475 0.2756707 -0.0849697
0.0735950 -0.5388560 -0.1332011 -0.8323287 -0.1765202 -0.1238525
0.0669953 0.0709174 0.3412566 0.1438336 0.0887187 0.6185768
0.1058997 0.0055179 0.2819769 -0.4152576 0.2641951 0.0482695
-0.6496724 0.0749545 0.0719433 -0.3658135 0.4470010 -0.0554626
0.1020813 -0.2261498 -0.2191590 -1.4175998 1.7128872 0.7510153
-0.0516665 0.0467365 0.1779272 0.2952592 -0.1666398 0.1792594
0.4125648 0.3625262 1.0345242 -0.0713448 -0.9004214 0.2695105
0.1404876 -0.0155494 0.3464779 1.6233569 0.6594989 -0.3308777
1.1188644 0.5436384 -0.2288146 0.0501323 0.1559767 0.0284961
0.7756821 -0.1766097 0.0955098 0.3472985 -0.9891810 -1.2483563
0.1786416 0.1003318 0.2213968 -1.3644986 -0.2968850 -1.4105791
1.2224332 -0.5707714 -0.6063041 0.1306125 -0.1598561 -0.0195583
0.0518805 -0.8454777 -0.5639690 0.1709988 0.7457583 0.6037585
0.0864742 0.1854350 0.3256357 -0.3024721 -0.2179069 -1.2774839
-0.6397389 0.7289415 0.6225386 0.1701509 0.0840020 0.1813612
-1.0852302 -1.0548203 -0.2977298 -0.1636121 -0.2658359 -0.7402500
-0.1582777 -0.0327651 0.2101446 0.0106954 0.0178313 -0.0906765
-0.1025999 -1.0108993 0.9968339 0.2695903 -0.1111750 0.0248009
0.3450805 -1.0287199 0.2618673 0.4158217 -0.2973924 -0.1574440
0.1735638 0.0322669 0.2047913 -0.9000095 -0.2073740 -0.1097267
0.3281437 -0.7015877 1.1008243 0.1773460 -0.2921332 -0.3752444
-0.9621581 0.7200571 0.7152604 -0.4664369 0.6660937 0.4334698
0.1553440 0.1284673 -0.0608548 -0.5092851 0.8158702 1.4556436
-1.4544104 -0.4441611 0.2495385 -0.1665582 0.2265503 -0.1849197
0.2147597 0.5761680 -0.3817185 -0.5198781 -0.0027208 0.1244801
0.0975408 -0.2684118 0.0910397 -0.9505920 0.5262730 -0.2576204
1.2927021 0.0429245 -0.7506177 -0.4466795 -0.0027436 -0.0347212
-0.5936477 0.3905075 -0.5717457 -0.4826882 -0.1847591 -0.0521498
-0.2593001 -0.2664756 0.0390525 -0.1975173 -0.5171787 0.5712297
0.4107777 -0.9854369 0.0657207 -0.0186186 0.0218378 0.1103233
0.1676291 -0.1027667 0.1799117 0.0064355 0.0573532 0.4075289
-0.0990376 -0.1933396 -0.3251833 0.2974863 0.2745944 -0.0134087
-0.4449680 -0.0461320 -0.7702010 0.3778934 0.1799148 0.2590837
-0.6936830 -0.5697396 0.0518926 -0.0706644 -0.6053151 -0.0454845
0.1465339 0.1114383 0.1739596 -1.3039481 0.3186863 -0.4387535
-1.0904235 0.1579944 -0.7893283 -0.2973018 0.3595009 -0.0455616
0.2050781 0.6077594 -0.3700551 -0.7123121 0.1580902 0.1815497
0.1279963 0.0725088 -0.1885609 0.2549156 0.5293544 0.0303437
0.1359575 -0.0635339 -0.4394136 -0.2502646 -0.0956439 0.2036921
-0.6764978 -0.4100610 -0.2993048 -0.7510642 0.2892074 0.4536746
-0.1999552 0.1788912 -0.1666533 -0.2292752 -0.1477656 0.4330286
0.1379842 0.7192716 -0.8648433 0.1171790 0.0210335 -0.1783663
0.2728912 0.5420417 -1.0205736 -0.0310380 0.5817258 0.4960849
0.0945200 0.3164079 0.2227989 -0.4005408 -1.1282469 -1.1072665
-0.4998937 0.0906826 -0.4868553 0.2092004 -0.2809479 0.1258135
0.2506633 -0.2954376 0.0789207 -0.2307462 -0.4004844 0.0783716
-0.0533903 0.3212054 -0.3135530 -0.0688252 0.1468530 -0.1891962
0.1415654 0.2194592 -0.5601109 0.0092753 -0.1826306 -0.1568481
0.7857961 -0.3002163 0.2481932 -0.5109443 0.1541828 -0.3226440
0.0130924 -0.0073965 -0.2759639 1.6677470 0.4955278 0.1723924
0.5781512 0.0836087 -0.1733810 -0.1905858 0.1193674 -0.0797447
-1.8649302 1.4748227 0.2015125 -0.7376392 0.8498737 -0.0567603
-0.0237653 -0.1384544 0.2905224 -0.3089918 0.8694452 0.6260905
0.1012808 -0.5370311 0.7197909 0.2548281 -0.0818973 -0.1474410
0.1490369 -0.0773538 -0.2802268 -0.3533718 -0.9914895 -0.1336162
-0.0057952 -0.1376848 -0.0405481 -0.3591089 0.1231407 -0.7783899
0.2418295 -0.2633806 0.0677327 -0.0475424 -0.1010860 -0.2569352
0.1220922 -0.2809736 1.0792154 -0.7329968 -0.3056965 0.5304025
0.0950027 0.3975876 0.1079012 0.8648720 0.9030975 0.5673528
-0.3761381 -0.0078479 -0.1881798 0.2322320 0.5776045 -0.0415084
1.0536911 0.1789845 -0.1296815 -0.1249770 0.5048614 0.8680813
-0.1736008 -0.0090205 -0.1823213 -0.4842469 -0.6093111 -0.3438535
-0.4482470 0.0749794 0.7187085 0.0951582 -0.3775436 0.3142801
0.7283310 -0.7072552 0.6865919 0.3591006 -0.8593145 0.0726270
0.1923873 0.0979289 0.2032474 -1.2905882 1.0434161 0.0502512
-1.0997328 0.8938674 0.0570512 0.0468380 0.2317687 -0.6158794
0.2154215 1.0241532 0.1865170 -0.4173185 -0.0986538 -0.3567796
-0.0308191 -0.3567967 -0.2146290 0.0501035 -0.8174087 -0.2423836
0.5010589 -0.2393152 0.0981202 0.1809128 0.2244516 -0.1504134
-0.5343086 0.0998258 -0.0975152 0.6581167 0.4184770 1.5725034
-0.0415191 0.3468653 0.0624532 0.2334263 -0.6762818 0.2762884
0.1897828 -0.2672123 0.1647841 -0.3282027 0.1670151 -0.4606356
0.2499134 0.2193700 -0.1495001 -0.4902806 0.0413846 -0.2035655
0.1777468 -0.1141645 0.0158530 -0.0588969 0.5178398 -0.6320079
0.0434202 -0.4492264 0.4813943 -0.0558789 -0.1476882 -0.3078905
0.2314137 -0.2295317 -0.6654520 0.9838569 -0.4256167 -1.2504841
0.0982354 -0.0688937 -0.3146751 -0.5988052 -0.5085347 0.6261410
-0.1327783 -0.0386289 -0.0781541 -0.1588823 -0.0670554 0.1740673
0.6015495 -1.0222635 -0.4154628 -0.0444558 0.7656270 0.7105200
0.1328034 0.1870515 -0.3584257 -0.2434080 -0.8355336 -0.5418655
0.8181718 -0.1409167 0.4549601 0.2952636 0.2333902 -0.0792961
-0.1976745 0.2001908 -0.5940001 -0.3403347 0.1899510 -0.0928802
-0.0369716 0.2108155 0.2844887 0.0144364 0.5603404 -0.4179898
-0.6546412 -0.5352819 0.2311656 0.1586273 0.1662959 0.1302939
-0.2563097 0.4158195 -0.0267230 1.4120025 -0.7693277 0.0970265
-0.0762995 0.2309781 -0.1514597 0.2867788 0.0467413 0.4514392
-0.8487969 0.5550739 -1.2994637 0.1065477 -0.1829678 0.2440207
0.5029872 0.7242097 -0.0280720 -0.5392915 -0.5382310 -0.4473505
0.0625953 0.1983594 0.2309802 0.2713540 -0.2530071 -0.7375125
-0.9651726 -0.4669234 -1.6823458 0.0231490 -0.2049190 0.1203384
1.0079660 0.1515308 -0.2330962 -0.2594862 -0.4506796 0.2976957
-0.3529012 -0.1512831 0.1351440 -0.3179042 0.1977577 0.2777825
-0.2352787 -0.1014707 0.0303436 0.4026293 -0.0100766 -0.1700241
0.4703009 -0.3305820 0.3332378 0.1293102 -0.1478280 -0.4417571
-0.0383669 0.1655076 -0.0939451 0.8157539 0.9175590 0.3020853
0.3501319 1.2602519 0.0440737 0.1002865 0.1928381 -0.1825241
-0.5497164 0.9450071 -0.2051472 -0.2364688 -0.6829282 -0.7116929
-0.1016241 0.4150376 0.1796395 -0.5702071 0.3152066 -0.1966517
-0.6907618 -0.6278389 -0.9761718 0.3720669 0.0364776 -0.3574069
0.8820581 -0.1476556 -0.2665522 0.7826213 0.0970051 -0.2911873
0.1319983 0.0815199 0.1556061 -0.2648091 0.5647395 0.5505113
0.4171465 0.0985934 0.0828073 0.0525054 0.3209349 -0.1167855
0.1183189 0.8615777 -0.0583595 -0.2609867 -1.0811662 0.0278923
0.0945372 -0.2232563 0.2610691 -0.4221202 -1.4622290 0.0045956
0.6731803 1.1541475 1.2051903 -0.1010310 0.0840308 0.3263268
0.2622354 -0.1454412 0.7533050 -0.3719941 0.7447404 -0.5399737
-0.2957220 0.2205997 -0.0766852 0.3112567 0.9011191 -0.6399118
0.8311597 0.5404847 -0.1567601 0.0895044 0.2192692 -0.2055006
-1.1891331 1.1388108 0.4062506 1.2197630 0.4483676 -0.4130921
0.0650321 -0.2977583 -0.3271104 -0.0564807 -0.3264272 0.1177013
-0.3290630 -1.2757997 0.3490870 0.1593738 0.0393633 -0.2594468
0.3699218 0.1140729 -0.7310885 0.4864528 -0.6463456 1.2896984
-0.2720057 -0.0656883 -0.1585949 0.5806991 -1.2552918 -0.6267763
0.9733760 0.0193856 -0.2111509 0.3198240 0.2077409 0.2136905
-0.1962928 1.1333773 0.7034840 -0.4408175 0.2523929 -0.5579959
0.4653647 0.2317274 -0.0343429 0.4902501 -0.4626203 0.2944194
0.2132856 0.9553796 0.8766302 -0.1053303 -0.1349058 -0.1054982
0.0830174 0.7473583 -0.2107151 -0.8617860 -0.7916458 0.7601086
0.2322298 0.1874048 0.0597460 0.7281441 2.1848789 0.5815691
0.2319907 -0.0593250 0.8789311 0.0237443 0.2105179 -0.3238662
0.2465839 0.6226135 -0.2554548 -0.1034343 0.8558589 0.6722481
-0.2538550 -0.0271379 0.0019439 -0.4689837 0.9563458 0.2300072
-1.6671916 -0.3528715 -0.4833567 0.3553753 0.1212445 0.0544035
0.2675165 0.0813342 -0.6005409 0.8204640 0.4041323 -0.2113319
0.3327187 0.1142916 -0.0984558 0.0887519 -0.1061310 -0.0859795
0.2475243 0.2923455 0.0781073 -0.4140809 -0.1457016 0.0041286
0.0824810 0.8571421 -0.2163317 0.1061126 -0.5220365 0.5790233
-0.2735370 0.2480182 -0.0191789 -0.4355466 0.5766947 0.2823932
0.3226233 -0.5560512 -0.0723042 -0.0936106 -0.1720146 -0.2247113
-0.0280054 -0.1784214 0.3382971 -0.1875858 0.1605436 -0.1232981
-0.0144398 -0.2043158 -0.0062267 0.3891561 0.0521574 0.7616967
0.6062434 -0.6543062 -0.1169989 0.0632280 0.1420538 0.1049388
-0.6419173 0.0380519 -0.9382219 0.8023128 -0.6894551 0.5713096
0.0598014 -0.2157089 0.5351258 -0.1176736 0.3732403 -0.0849127
0.1221534 -0.7382831 1.2277627 -0.2519094 -0.2566565 0.2532004
1.2492352 -0.0236137 -0.5722780 0.3349963 0.2688215 0.3498499
0.2679663 0.1707718 0.0616883 -0.1186806 0.2640787 -0.4315020
-0.7450122 0.3994076 -0.6832109 -0.1282504 0.0954217 0.0749864
-0.0122268 -1.0700880 -0.5116445 0.8889875 -0.0499330 1.1198309
0.4293878 0.2784469 -0.0734920 0.1300621 0.0848067 -0.1027717
1.7812090 0.3263635 -0.3115902 0.1759629 0.2395811 -0.0852787
-0.1332833 0.8073512 -0.3537370 0.3817305 -0.1449979 -0.0041887
-0.0820956 0.0590386 -0.0745183 -0.1667542 0.3856508 -0.4437618
-0.1845313 -0.0378137 -0.1311769 -0.0789550 0.0398374 -0.0580396
-0.3749777 0.0164292 0.2331850 -0.4845018 -0.5833720 0.2247056
-0.1252378 0.0886881 -0.0968155 -0.0243699 -0.2526910 -0.7784517
-0.8122748 -0.0478425 0.2267345 -0.2961143 0.0584791 -0.1235168
-0.5395262 0.3567125 -0.1901512 1.1386309 0.3077475 0.1848668
-0.2152873 0.0402619 0.0197058 -0.8004353 0.0420764 -1.6920989
0.4587638 -1.0278758 0.1534531 -0.0610706 -0.1285020 0.1514887
0.3169280 -1.2905616 -0.3206106 -0.2347902 0.1519438 0.4677545
0.0318455 -0.0410907 -0.1618415 0.3044516 0.1622748 0.0256038
0.9466421 0.6769302 0.4668007 0.1932282 0.1740632 0.0113951
0.0633694 1.0080945 -0.1738450 -0.2428092 1.1934264 0.4044780
-0.0068839 -0.0518242 -0.1903352 -0.1225828 -0.3809279 0.0656187
0.4207595 -0.1043208 -0.2995497 0.4242306 -0.1433179 -0.2160771
0.1411571 -0.1500097 0.0464074 0.7708460 -0.1980955 0.0922442
-0.2460415 -0.1816603 0.1404993 -0.1494263 -0.0964693 0.0138026
0.2370568 0.2614840 -0.5014572 0.0417842 -0.5307811 0.0000608
0.1575412 -0.3725912 -0.0963451 -0.3936084 -0.8158793 0.8526615
-0.0875023 -0.0777532 -0.0200640 0.1281254 0.0042443 0.1192415
0.6048710 0.3334099 0.4454478 0.1116855 -0.1829409 -0.0910206
-0.1455127 0.0909581 -0.5822928 0.8906072 -0.5312060 1.2793946
0.1742795 -0.1420993 -0.1588424 -0.8143121 -0.0973792 -0.7739650
0.7321756 -0.2067111 -0.0323339 0.0998770 -0.1675372 -0.2859080
-0.7901953 0.0615928 0.2539113 -0.1493246 0.2436621 -1.3108261
-0.0675846 -0.0283486 0.0551620 0.0549688 -0.2763238 0.0233476
-0.4368182 -0.6988264 -0.0052696 0.0869413 -0.1487040 0.0886484
-0.6503227 -0.0453546 0.4355007 1.1583125 -0.4872027 -0.4960472
-0.1121629 -0.1813430 -0.1605577 -0.3665529 0.3266039 0.2878793
0.1867268 -0.6015657 -0.5550769 -0.0237201 0.1308469 0.2155445
0.5442289 0.7688131 0.4829335 0.0905762 -0.9002649 0.6628489
-0.0025510 0.1170073 -0.0755574 -0.4295136 1.1363448 0.8123803
0.7045857 0.7472916 -1.1376623 -0.0996607 -0.0050346 0.0155323
-0.1528171 -0.2514707 -0.0452035 0.0056513 0.3633307 -0.5102503
0.2646734 -0.1765820 0.2110061 -0.1220086 -0.2896474 -0.9444851
-0.2696147 0.5472447 0.2981381 -0.4566616 -0.2791208 0.0626566
-0.3830939 -0.2733982 0.0851008 -0.8050538 1.4856746 -0.4802124
-0.2506353 0.1510123 -0.0815697 0.0182952 -0.0801670 0.4690970
0.2414388 0.3612676 -0.5354526 -0.2029543 0.0898110 0.0128542
0.4380395 -0.0993658 0.5667618 0.3192412 -0.2479244 -0.0693102
0.1659448 0.0201178 0.1313117 -0.6130480 -0.1445412 -0.4030231
0.5591352 0.3156708 0.5636909 -0.1318799 -0.0037169 0.0910060
-0.0854155 0.9834858 0.7909744 -0.1384112 0.1702202 -0.0433879
0.0231224 0.1272074 0.3497150 -0.9391301 0.1800848 0.2102187
0.1315191 0.6756133 -0.2108968 -0.3774991 -0.1978080 0.2929179
-0.1632383 0.1691184 0.3277333 -0.0965248 -0.3011345 0.6668073
0.0820896 -0.1225759 -0.1284507 0.6699578 0.1247691 -0.4922489
1.7868591 0.3457159 -0.9509983 -0.2265003 0.1687998 -0.2251139
0.4096593 -0.0166467 0.0816976 -0.3033089 -0.0605156 0.0831844
0.1125547 0.1241213 0.2724880 1.2151753 -0.1425152 -1.6174326
0.5313275 -1.0120248 0.9899827 -0.2808961 0.0236001 0.0198280
1.2986087 -0.3532074 0.0372958 -0.7243683 -0.1135977 -1.0160502
-0.1447641 -0.0359604 -0.0637167 0.5354760 -0.0051326 0.1916894
-0.2108981 0.2924771 -0.2611975 -0.2107539 -0.0835398 -0.0882593
0.1819583 0.6801252 0.1730566 0.0736934 -0.2024554 -0.5528626
-0.0080588 0.0476522 -0.1154691 -0.3475338 0.0590681 -0.0747384
-0.1431021 0.3035351 -0.0597220 -0.1687359 -0.1200231 -0.0175046
-0.2829521 0.7142227 -0.6301285 -0.3704993 0.3302502 -0.1216257
0.2418820 0.0027221 0.0095284 0.2203412 -0.2363574 0.3267187
-0.1364731 0.1307621 -0.0585584 0.0150727 -0.3312237 -0.0395961
0.4270225 0.2757271 0.5457084 0.2505858 -0.1119339 -1.0523264
0.1905738 0.0670240 -0.0938640 0.2093716 0.0475349 -0.0998103
0.2054417 0.0473347 -0.1348999 0.0048081 0.0070225 -0.3496180
0.4981238 -0.5014091 -0.4996192 -0.1790861 0.3488732 -1.0288637
-0.0685459 -0.1839003 0.2204406 0.5331414 -0.4190357 -0.0669042
-0.5435838 -0.4590007 -0.1829633 0.0381257 -0.3084625 0.2905083
0.3938463 -0.3588635 0.1731919 -0.3211865 -0.4898361 0.2939943
-0.0929723 -0.2139699 0.2290579 0.0883405 -0.4524588 0.3080569
0.0791993 -0.5063740 -0.2875253 0.0654216 -0.0147842 0.3239348
-0.2194886 -0.2459342 0.5896102 0.0021690 0.3114226 0.5508560
-0.1968628 -0.1470605 0.1354330 -0.6156633 0.3204589 -0.7063042
-0.1074230 0.1730457 -0.4363363 0.1983584 -0.0210826 -0.1643130
-0.7965864 0.0239684 0.7303984 0.3558587 -1.0996329 0.5567584
0.2440483 0.2697408 -0.1668582 -0.3392773 0.8141905 -0.0589362
0.3328242 0.2450142 -0.1768320 -0.0478889 0.1118274 0.0025633
0.3624176 -0.9191034 -0.2564312 -0.6943272 0.7156679 0.0061163
0.0662585 -0.3248644 0.3608683 0.2771034 -0.6030472 -0.3836616
-0.8813724 -0.4429287 0.0937801 -0.0213538 0.1048355 0.1240459
0.0475745 0.5241701 -0.2523238 1.1961941 -0.6632442 -0.5301930
-0.0133602 -0.1578382 0.4036379 -0.0699058 -0.2494042 1.3347570
-0.0345071 -0.1830860 0.6706367 -0.3927781 -0.1476138 0.0918148
-0.1249543 -0.6544197 -1.1583756 -0.4473110 0.1069342 0.4505116
-0.1200525 0.1024008 0.0723982 0.0867550 -0.4192828 -0.0335882
0.8368169 -0.6601530 -0.1830986 -0.0330912 -0.3081530 -0.3183836
0.0633710 0.0752150 -0.0390829 -0.1884353 -0.0449604 -0.0505537
-0.1704733 0.1436764 -0.2097963 -0.7603004 0.0689921 -0.1233113
-0.2783219 0.2785011 0.3407653 0.0073760 0.0792856 -0.0247641
-0.0132455 -0.2058775 0.5675138 0.3461706 0.7751545 -1.2867366
-0.0774749 -0.2661074 0.0861430 0.6329302 0.4380701 0.2804335
-0.5022118 -0.4824208 -0.0575677 -0.0658716 -0.1046181 0.1406178
-0.2606614 -0.2200134 0.1860887 0.0634211 0.1772456 0.2164571
-0.2295805 -0.0041115 -0.2133047 -1.1182150 0.6509999 0.0534210
0.2625067 -0.3466016 -0.2753875 0.1724402 -0.2491407 -0.1810054
0.3900608 -0.1515460 0.9658226 0.3811963 -0.1748070 0.5614984
-0.1976959 -0.0737789 0.0038086 -0.8037847 -0.0284398 -0.6654457
-0.6217085 0.1398872 -0.4736990 -0.0158353 0.3324806 0.1334288
-0.1411096 0.1949264 0.3084542 -0.6116225 -0.0644376 0.2446101
-0.5166855 0.2200837 -0.1780549 0.5442952 -0.0805573 0.0212740
0.3774664 -0.1410054 -0.2488600 -0.2441627 0.1257983 0.0657063
-0.1039685 0.0192128 0.2447277 1.1673338 -0.0010424 -0.1989280
-0.0258610 0.2700748 0.0302768 0.5101278 -0.0468608 0.7528375
-0.1282742 0.2858147 -0.7199462 0.3168312 -0.2782623 0.0638979
0.1024496 -1.0115964 0.2238519 -0.1352291 0.3909311 0.3846867
-0.2329575 0.0220148 0.0224809 -0.6779059 0.3234356 0.9160922
0.0843679 -1.2942229 -0.0895857 0.1179410 -0.3566105 0.0843202
0.8469258 0.1891833 0.9130672 0.6856113 0.3836565 0.0214843
0.2036607 0.0368095 -0.0401247 0.4643151 2.4115283 -0.9427892
0.9280172 -0.0860741 0.0545775 -0.1713673 -0.0144576 0.2702431
0.2341716 0.3798249 -0.5660344 -0.9290625 0.7238793 0.4702792
-0.1151856 -0.0837493 -0.4280831 0.9373967 -0.4591281 -0.6845165
-0.3938097 0.2548324 -0.4260602 0.2920475 -0.0125444 0.0957303
-0.1227393 1.0951434 0.4821810 0.1379712 -0.5692239 -0.2772349
0.0251261 -0.0308557 -0.0727411 -0.1688434 0.1343213 -0.1765935
-0.1272462 0.0899879 -0.2482993 -0.0314364 -0.1304905 -0.0385829
1.4185344 -0.8869846 0.2123421 -0.4295601 0.0024068 -0.2918260
-0.0171387 -0.0651557 -0.3083762 -0.3451466 1.0249283 -0.7267890
-0.0186452 -1.1023478 0.0935955 -0.0224077 0.2525903 -0.0340512
0.1002640 0.1752762 -0.2642047 0.1836895 0.3228199 -0.2096295
-0.1436894 -0.1653338 -0.0049113 -0.4878929 1.5512639 -0.1954670
0.9257742 -0.6729646 1.2769886 0.2433675 -0.0837208 -0.4585104
-0.0771561 0.0151616 1.1044397 -1.5202525 -0.1717555 -0.8746346
0.1743571 -0.3124405 -0.2254481 0.8171064 0.2635857 -1.5606772
0.5355763 -0.3312700 0.7555993 -0.1545276 0.2396100 -0.2162527
-0.4600545 0.2588194 -0.4591578 0.5326846 -0.4731953 0.7035066
-0.2407712 0.0555184 -0.4084988 1.5065278 1.0670221 0.9588032
-1.0788954 0.7990209 0.4948316 0.0159198 0.0158225 0.0645797
-0.2171910 0.2955608 -0.0633769 -0.1381311 -0.0642911 0.1474586
0.1899368 -0.2355171 0.1701239 -0.4184797 -0.6761266 0.2445883
0.4116924 -0.6970979 -0.9745847 0.0647893 0.1454336 -0.0888042
-0.1189100 0.3100604 0.6786120 0.4908145 0.9851820 -0.1451516
0.1577663 -0.1809247 -0.1097667 0.6873023 0.0652034 1.1907689
-0.4232334 0.0353958 -0.6492952 -0.0701381 0.2949796 -0.1535155
-1.3557121 0.5281742 -0.7716738 -0.4367654 -0.5105981 0.8917901
-0.1149628 0.0046356 0.1917102 0.0067706 0.2643292 0.3400543
0.2452752 -0.4555857 0.0812167 -0.0544052 -0.3251428 0.0868920
-0.3581854 -0.1214927 -0.2983884 0.2215590 -0.5552903 0.4054133
-0.2207718 -0.1763700 -0.1829255 -0.7562831 -0.4771858 -0.6266419
0.1518938 0.0930653 -0.4555738 0.0462721 0.0940306 -0.0597056
0.1671441 0.0604861 -0.0100360 0.0959658 0.0724432 -0.0354857
-0.2919826 -0.1459072 -0.1003160 -0.2377119 -0.2256166 -0.2669986
-0.0465090 -0.6494331 -0.4628152 -0.2928082 0.3195309 0.1199035
-0.7093916 0.8078086 0.1458261 1.2365386 0.0355349 -0.3436955
-0.1878967 -0.1455695 0.1960497 -0.1811794 -0.1432720 0.0483715
-0.4666260 -0.4401329 0.0673581 -0.0051975 0.1406817 0.1385776
0.0935260 0.3201800 -0.0337314 -0.6555922 -0.7840635 0.0487734
0.0830303 -0.1433775 -0.1818015 -0.1358691 -0.0789153 -0.1401698
0.1618572 -0.1461164 -0.2464267 0.0424611 0.1271758 0.1245613
0.3447800 -0.1442174 0.2689519 0.1104954 0.3944454 -0.2187629
-0.2333782 0.1105638 -0.2010680 -0.5578738 -0.0607645 -0.3862363
-0.2266791 -0.6931053 -0.0758347 0.1070672 0.2859671 0.3443745
0.6432284 0.2432491 1.1990774 0.3439967 1.1090170 -0.1358198
0.3789063 0.0251752 0.2297706 0.6037237 0.0288791 -0.4472622
0.5352335 -0.6192380 0.5294676 -0.2150855 0.3100800 0.1931538
0.0486676 0.2307530 0.0004858 0.0498311 -0.0315849 0.3916447
0.0257802 -0.2834896 -0.0167848 -0.4609936 -0.7647820 -0.9106705
-0.6644166 -0.8407985 0.0350843 0.4113166 -0.1067862 0.2286854
-0.0888388 0.4438747 -0.7171433 -0.3023044 0.0556214 1.0358884
-0.1311775 -0.2689299 0.0217583 0.1917124 -0.2981252 -0.5800005
0.1839800 0.2174423 0.1602903 0.1910376 -0.0321753 -0.0515050
0.2028343 -0.0163315 -0.0462643 0.8276037 0.7145114 1.1624139
0.0937693 0.3512068 -0.1140899 0.1321645 0.3422881 -0.0664989
-0.5041193 0.6769458 -0.7039248 0.1847923 -0.1250003 -0.1598817
-0.0215808 0.0141232 -0.7358203 -0.4710719 0.4009078 -0.4102970
0.1532610 -0.3503322 -0.0595275 -0.1900499 0.8577425 -0.4816370
0.1270663 -0.6942422 -0.0334426 0.5248354 0.2298827 0.1502398
-0.0389769 -0.1546414 -0.5397651 0.1930107 0.6012334 -0.4644877
-0.3159569 -0.2406079 0.1977664 0.4634191 0.3054283 -0.4741537
0.6700205 0.1149110 0.3291498 0.3481064 -0.2859529 -0.0024208
0.3927149 -0.7012048 0.4798112 0.8502964 0.6294250 -0.2965699
0.2394422 -0.0211168 -0.0584522 -0.2213158 0.3532603 -0.1192907
0.0422895 -0.4787206 -0.2003697 0.1809724 -0.0829682 0.2006544
-0.4432881 -0.5894720 0.7664608 0.5549746 -0.1573942 0.0434631
0.1250263 -0.2924695 -0.0116470 0.3576518 -0.6817827 -0.0226185
0.5370235 -0.7734645 1.1289808 0.1280932 0.2322710 0.1883007
1.2560200 0.2061962 -0.0363942 -1.1821972 0.1569971 0.3969384
0.0480426 -0.3305002 -0.2868777 1.0271452 0.2311302 0.8144707
-0.1264572 0.0209367 -0.2171508 -0.1119891 0.2308678 0.0086684
0.2357754 1.3606147 -1.0178027 0.1316811 0.0507425 -0.0345729
0.1713520 -0.0551794 -0.2622002 0.0401590 0.2478497 -0.4769982
0.1066204 0.3669004 0.0419947 -0.1816439 0.1150123 -0.4615274
-1.1821615 0.1553919 -0.1602286 -0.8508318 -0.0132038 -0.3743548
-0.1713026 0.0304282 0.3505525 0.9271110 -0.3547954 -0.1277367
1.0731523 0.8429282 -0.6135040 0.3794485 -0.0042281 -0.1035660
-0.8895466 0.6576497 -0.4259358 -0.9159510 0.7132431 -0.3596268
-0.1653877 -0.0268337 0.2927475 0.4663415 -0.1632523 0.5827476
-0.5048395 -0.3472665 0.1131654 -0.3309479 0.2222167 -0.1457056
-0.7411634 -0.5985218 0.6161162 -0.3286973 0.1544558 -0.3609348
0.1561546 0.2859189 0.2616341 0.2799910 0.1146614 0.1292935
-0.3312309 -0.0804350 0.2189401 0.3122301 -0.2822557 -0.0442120
-0.3017976 -0.4615561 -0.1062888 0.7807079 -0.2287970 0.0107936
-0.0145284 -0.0501144 0.2230383 -0.0263899 0.7516858 -0.0544721
0.2988406 -0.6398668 -0.8230651 -0.0763660 0.2549791 -0.2361313
0.5022892 0.2793099 -0.9740331 -0.3631006 -0.1734463 0.3442636
-0.0709498 -0.0254863 0.2832591 -0.1287282 -0.2540168 0.6841854
0.3262500 0.1942967 0.2592979 -0.0762070 0.1740174 0.1998884
0.8535456 0.8374470 0.4092232 -0.7101078 -0.0125082 0.9442619
0.0351734 0.0940922 0.0174747 -0.7179434 0.2601568 -0.1963075
0.6304890 0.8491256 -0.0077349 -0.0649101 -0.1441050 -0.0871469
0.2672159 0.6263429 -0.7951560 -0.4147432 -0.9490843 0.5201372
-0.0126657 -0.0745225 0.3021250 0.2467518 -0.8283007 -0.9161719
-0.1763209 0.2726809 0.7218720 0.0115115 -0.2115862 -0.1799264
-0.3724983 -0.1787823 -0.1145872 0.4839793 -0.2461907 -0.2800227
0.0653186 0.0261176 -0.0069461 -0.1585336 -0.3743890 -1.2119535
0.3091332 0.7355925 -0.1206961
30.2642725 30.2642725 30.2642725 109.4712190 109.4712190 109.4712190
ACE
28
1.8662825 1.2455949 0.6672110 1.9626006 2.1938026 0.1396779
1.2497428 2.9104392 0.5454310 1.7619492 2.0427757 -0.9201889
3.3659937 2.7323333 0.3106630 4.1907627 2.1039510 0.9734519
3.6273756 3.8949435 -0.2849918 2.8777368 4.3392797 -0.7950028
4.9163808 4.5976032 -0.2534247 5.4756521 4.2709258 0.6250439
5.7163632 4.2049342 -1.5101182 5.8371260 3.1200826 -1.5317512
5.1471196 4.4947601 -2.3959905 7.1055802 4.8539661 -1.5508595
7.9498622 4.6375603 -0.4939507 7.4316586 5.6201081 -2.6386852
8.3150784 5.9901727 -2.5863945 4.7269796 6.1275619 -0.1377803
3.7336230 6.6808666 -0.6238468 6.7262793 5.6692474 -3.2868494
8.7967113 5.0771061 -0.5933179 7.5650193 4.0788360 0.1842201
5.6831501 6.8163892 0.4999151 6.4763527 6.2959896 0.8529456
5.6745238 8.2651257 0.7063732 4.7905547 8.5573927 1.2769756
6.5663801 8.5705282 1.2568739 5.6602885 8.7808127 -0.2560452
......@@ -1054,7 +1054,7 @@ BLA BLA BLA BLA BLA BLA BLA BLA
3 3 3 3 3 3
%FLAG BOX_DIMENSIONS
%FORMAT(5E16.8)
5.15661795E+03 1.87743490E+01 1.87743490E+01 1.87743490E+01
9.00000000E+01 1.87743490E+01 1.87743490E+01 1.87743490E+01
%FLAG RADIUS_SET
%FORMAT(1a80)
modified Bondi radii (mbondi)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment