individual.based.pvalues.b: Produces the p-values of a beta diversity measure f on a...

Description Usage Arguments Value Author(s) References See Also Examples

Description

Given a matrix M and a beta diversity measure f, the function calculates the p-values of f based on the individual-based null model.

Usage

1
individual.based.pvalues.b(matrix, f, args, observed.vals, reps=1000)

Arguments

matrix

A matrix with integer values. The matrix should not contain any NA values.

f

A beta diversity function f. The interface of f should be such that f(matrix,args) returns a matrix V where the entry stored at the i-th row and j-th column of V is equal to the value of f when applied at the i-th and j-th row of the input matrix. To fit this interface, the user might have to develop f as a wrapper around an existing R function (see Examples).

args

A list with extra arguments needed by f.

observed.vals

A set of pre-calculated values for which we want to compute their p-values.

reps

The number of randomizations. This argument is optional and its default value is set to one thousand.

Value

A numeric vector that stores the p-values of f, calculated based on the individual-based null model. The i-th element of the vector stores the p-value for the i-th element in vector observed.vals.

Author(s)

Constantinos Tsirogiannis (tsirogiannis.c@gmail.com)

References

Stegen, J. C., Freestone, A. L., Crist, T. O., Anderson, M. J., Chase, J. M., Comita, L. S., Cornell, H. V., Davies, K. F., Harrison, S. P., Hurlbert, A. H., Inouye, B. D., Kraft, N. J. B., Myers, J. A., Sanders, N. J., Swenson, N. G., Vellend, M. (2013), Stochastic and Deterministic Drivers of Spatial and Temporal Turnover in Breeding Bird Communities. Global Ecology and Biogeography, 22: 202-212.

Tsirogiannis, C., A. Kalvisa, B. Sandel and T. Conradi. Column-Shuffling Null Models Are Simpler Than You Thought. To appear.

See Also

individual.based.communities.b

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#In the next example null-model calculations are
#performed using a function of phylogenetic diversity.
#Hence, we first load the required packages.
require(CNull)
require(ape)
require(PhyloMeasures)

#Load phylogenetic tree of bird families from package "ape"
data(bird.families, package = "ape")

#Create 100 random communities with 50 families each
comm = matrix(0,nrow = 100,ncol = length(bird.families$tip.label))
for(i in 1:nrow(comm)) {comm[i,sample(1:ncol(comm),50)] = 1}
colnames(comm) = bird.families$tip.label

#Set function f to be the Common Branch Length measure (CBL)
#as defined in the R package PhyloMeasures.
my.f = function(mt,args){ return (cbl.query(args[[1]],mt))}

# This function takes one extra argument, which is a phylogenetic tree.
# Hence, create a list whose only element is the desired tree.
arguments = list()
arguments[[1]] = bird.families

#Compute the values of f for all pairs of observed communities in M.
#Turn the resulting matrix with the observed diversity values into a vector  
obs.v=my.f(comm,arguments)
vals = as.vector(t(obs.v))

# Calculate the p-values of f for the communities in comm 
# based on the individual-based model, using 2000 Monte Carlo randomizations.
individual.based.pvalues.b(comm,f=my.f,args=arguments,observed.vals=vals,reps=2000)

Example output

Loading required package: ape
Loading required package: PhyloMeasures

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.

 Warning: one of the input matrices contains values which are not 0 or 1.
    [1] 0.09145427 1.00000000 0.99850075 1.00000000 0.99900050 1.00000000
    [7] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
   [13] 1.00000000 1.00000000 1.00000000 0.99750125 1.00000000 1.00000000
   [19] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
   [25] 1.00000000 1.00000000 0.99950025 1.00000000 0.99950025 0.99950025
   [31] 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000 1.00000000
   [37] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
   [43] 0.99850075 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
   [49] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
   [55] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
   [61] 1.00000000 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000
   [67] 1.00000000 0.99950025 1.00000000 0.99900050 1.00000000 1.00000000
   [73] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
   [79] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
   [85] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
   [91] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
   [97] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 0.05097451
  [103] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [109] 0.99950025 0.99750125 1.00000000 1.00000000 1.00000000 1.00000000
  [115] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
  [121] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
  [127] 0.99950025 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
  [133] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
  [139] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
  [145] 0.99800100 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [151] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [157] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
  [163] 1.00000000 1.00000000 1.00000000 1.00000000 0.99700150 0.99950025
  [169] 0.99950025 0.99900050 0.99800100 1.00000000 1.00000000 1.00000000
  [175] 0.96651674 0.98850575 1.00000000 0.99850075 1.00000000 0.99850075
  [181] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [187] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 0.99950025
  [193] 1.00000000 0.99950025 1.00000000 0.99900050 1.00000000 1.00000000
  [199] 1.00000000 1.00000000 0.99850075 1.00000000 0.12843578 1.00000000
  [205] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [211] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99850075
  [217] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [223] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [229] 0.99000500 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [235] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 0.99850075
  [241] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
  [247] 0.99950025 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
  [253] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [259] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [265] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 0.99950025
  [271] 0.99950025 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
  [277] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [283] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [289] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [295] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [301] 1.00000000 1.00000000 1.00000000 0.07296352 0.99900050 1.00000000
  [307] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
  [313] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [319] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
  [325] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
  [331] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
  [337] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
  [343] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 0.99700150
  [349] 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000 1.00000000
  [355] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
  [361] 1.00000000 0.99900050 0.99800100 1.00000000 0.99950025 1.00000000
  [367] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
  [373] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
  [379] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
  [385] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [391] 0.99950025 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
  [397] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
  [403] 0.99900050 0.99900050 0.04597701 1.00000000 0.99950025 1.00000000
  [409] 0.99950025 0.99900050 0.99950025 1.00000000 1.00000000 1.00000000
  [415] 1.00000000 0.99750125 0.99950025 1.00000000 1.00000000 1.00000000
  [421] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
  [427] 1.00000000 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000
  [433] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [439] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 0.99400300
  [445] 0.99800100 1.00000000 0.99950025 0.99950025 1.00000000 0.99950025
  [451] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
  [457] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [463] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 0.98050975
  [469] 1.00000000 0.99950025 0.99850075 1.00000000 0.99950025 0.99950025
  [475] 0.99850075 0.99800100 1.00000000 1.00000000 1.00000000 0.99950025
  [481] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 0.99950025
  [487] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
  [493] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [499] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [505] 1.00000000 0.06246877 1.00000000 1.00000000 1.00000000 1.00000000
  [511] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [517] 1.00000000 0.99950025 1.00000000 1.00000000 0.99950025 1.00000000
  [523] 0.99950025 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
  [529] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [535] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
  [541] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [547] 0.99850075 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [553] 1.00000000 0.99950025 1.00000000 1.00000000 0.99900050 1.00000000
  [559] 1.00000000 0.99450275 1.00000000 1.00000000 0.99700150 0.99900050
  [565] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [571] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [577] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [583] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
  [589] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [595] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
  [601] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
  [607] 0.08895552 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [613] 0.99950025 1.00000000 1.00000000 0.99850075 1.00000000 1.00000000
  [619] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [625] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [631] 1.00000000 1.00000000 1.00000000 1.00000000 0.99800100 1.00000000
  [637] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [643] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
  [649] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [655] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [661] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
  [667] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
  [673] 1.00000000 1.00000000 0.99900050 0.99900050 1.00000000 1.00000000
  [679] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [685] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
  [691] 0.99900050 1.00000000 0.99800100 1.00000000 1.00000000 1.00000000
  [697] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [703] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 0.10844578
  [709] 1.00000000 0.99950025 0.99950025 1.00000000 1.00000000 1.00000000
  [715] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
  [721] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [727] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [733] 0.99950025 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000
  [739] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [745] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [751] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [757] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [763] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [769] 1.00000000 1.00000000 1.00000000 0.99950025 0.99900050 1.00000000
  [775] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [781] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [787] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
  [793] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [799] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
  [805] 0.99950025 1.00000000 1.00000000 1.00000000 0.01849075 1.00000000
  [811] 1.00000000 1.00000000 1.00000000 1.00000000 0.99800100 1.00000000
  [817] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
  [823] 0.99950025 0.99950025 1.00000000 1.00000000 0.99850075 1.00000000
  [829] 0.99850075 0.99850075 0.98800600 0.99900050 0.99900050 1.00000000
  [835] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
  [841] 1.00000000 0.99900050 1.00000000 1.00000000 0.99900050 0.99950025
  [847] 1.00000000 1.00000000 0.99750125 0.99900050 1.00000000 1.00000000
  [853] 0.99950025 1.00000000 1.00000000 1.00000000 0.98650675 0.99850075
  [859] 1.00000000 0.99950025 0.99900050 1.00000000 0.99900050 1.00000000
  [865] 0.99950025 0.99700150 0.98050975 0.99900050 1.00000000 1.00000000
  [871] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 0.99950025
  [877] 1.00000000 0.99900050 1.00000000 1.00000000 0.99750125 1.00000000
  [883] 1.00000000 0.99950025 0.99950025 1.00000000 1.00000000 1.00000000
  [889] 0.99950025 0.99900050 0.99850075 0.99800100 1.00000000 0.99950025
  [895] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
  [901] 0.99950025 0.99750125 1.00000000 1.00000000 0.99900050 1.00000000
  [907] 1.00000000 0.99950025 1.00000000 0.01999000 1.00000000 1.00000000
  [913] 1.00000000 0.99950025 1.00000000 0.99950025 1.00000000 1.00000000
  [919] 1.00000000 1.00000000 0.99900050 1.00000000 0.99950025 1.00000000
  [925] 1.00000000 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000
  [931] 0.99850075 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
  [937] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 0.98750625
  [943] 1.00000000 0.99900050 1.00000000 1.00000000 0.99900050 1.00000000
  [949] 1.00000000 1.00000000 1.00000000 0.99900050 0.99950025 0.99950025
  [955] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
  [961] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
  [967] 1.00000000 0.99950025 1.00000000 0.99850075 0.99850075 1.00000000
  [973] 1.00000000 1.00000000 0.99800100 0.99750125 1.00000000 0.99900050
  [979] 0.99750125 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
  [985] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
  [991] 1.00000000 1.00000000 0.99950025 0.99950025 1.00000000 1.00000000
  [997] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1003] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 0.99950025
 [1009] 1.00000000 1.00000000 0.07046477 1.00000000 1.00000000 1.00000000
 [1015] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [1021] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1027] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1033] 1.00000000 1.00000000 1.00000000 0.99400300 1.00000000 1.00000000
 [1039] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1045] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [1051] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1057] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1063] 1.00000000 0.99800100 1.00000000 1.00000000 0.99950025 1.00000000
 [1069] 1.00000000 1.00000000 1.00000000 0.99900050 0.99950025 1.00000000
 [1075] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [1081] 0.99900050 1.00000000 1.00000000 1.00000000 0.99800100 1.00000000
 [1087] 0.99850075 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [1093] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [1099] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1105] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1111] 1.00000000 0.15492254 1.00000000 1.00000000 1.00000000 1.00000000
 [1117] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [1123] 0.99850075 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1129] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1135] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1141] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1147] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [1153] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1159] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [1165] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1171] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1177] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1183] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1189] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1195] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [1201] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1207] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1213] 0.23338331 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1219] 1.00000000 1.00000000 0.99900050 0.99900050 1.00000000 1.00000000
 [1225] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1231] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1237] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1243] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1249] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1255] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1261] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1267] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1273] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1279] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1285] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1291] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1297] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1303] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1309] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 0.08495752
 [1315] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1321] 1.00000000 1.00000000 1.00000000 1.00000000 0.99450275 1.00000000
 [1327] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1333] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [1339] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1345] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1351] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1357] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1363] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1369] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1375] 0.99750125 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1381] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [1387] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [1393] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1399] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1405] 1.00000000 1.00000000 1.00000000 1.00000000 0.99800100 1.00000000
 [1411] 1.00000000 1.00000000 1.00000000 0.99950025 0.08445777 1.00000000
 [1417] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [1423] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [1429] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [1435] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1441] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [1447] 1.00000000 1.00000000 0.99950025 0.99750125 1.00000000 0.99950025
 [1453] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1459] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [1465] 1.00000000 0.99400300 1.00000000 1.00000000 1.00000000 1.00000000
 [1471] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1477] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 0.99950025
 [1483] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1489] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99800100
 [1495] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [1501] 0.99750125 1.00000000 0.99850075 1.00000000 0.99750125 1.00000000
 [1507] 0.99850075 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [1513] 1.00000000 1.00000000 1.00000000 0.04397801 1.00000000 1.00000000
 [1519] 1.00000000 0.99950025 0.99750125 1.00000000 0.99950025 0.99950025
 [1525] 1.00000000 1.00000000 1.00000000 1.00000000 0.99800100 1.00000000
 [1531] 0.99900050 1.00000000 1.00000000 0.99950025 0.99950025 1.00000000
 [1537] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 0.99800100
 [1543] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1549] 1.00000000 0.99950025 0.99950025 0.99950025 1.00000000 0.99950025
 [1555] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [1561] 1.00000000 0.99900050 1.00000000 0.99950025 0.99850075 1.00000000
 [1567] 0.99900050 1.00000000 0.99950025 0.99950025 0.99700150 0.99900050
 [1573] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 0.99900050
 [1579] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 0.99750125
 [1585] 0.99900050 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [1591] 0.99850075 1.00000000 0.99900050 1.00000000 0.99900050 1.00000000
 [1597] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [1603] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 0.99950025
 [1609] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [1615] 1.00000000 1.00000000 0.07846077 1.00000000 1.00000000 1.00000000
 [1621] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [1627] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1633] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1639] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1645] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
 [1651] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1657] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [1663] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1669] 1.00000000 1.00000000 1.00000000 1.00000000 0.99750125 1.00000000
 [1675] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1681] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1687] 0.99800100 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [1693] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1699] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1705] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [1711] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1717] 1.00000000 0.10194903 1.00000000 1.00000000 1.00000000 1.00000000
 [1723] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1729] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1735] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [1741] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [1747] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [1753] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1759] 1.00000000 1.00000000 0.99950025 1.00000000 0.99950025 1.00000000
 [1765] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1771] 0.99900050 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [1777] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1783] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 0.99950025
 [1789] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [1795] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1801] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1807] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [1813] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1819] 0.16641679 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1825] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1831] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1837] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1843] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1849] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1855] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
 [1861] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [1867] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1873] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [1879] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [1885] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1891] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1897] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 0.99950025
 [1903] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [1909] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1915] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 0.07196402
 [1921] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [1927] 0.99950025 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000
 [1933] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [1939] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [1945] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1951] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1957] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1963] 1.00000000 1.00000000 0.99900050 1.00000000 0.99950025 1.00000000
 [1969] 1.00000000 1.00000000 0.99000500 1.00000000 1.00000000 0.99950025
 [1975] 0.99950025 0.99850075 1.00000000 1.00000000 1.00000000 1.00000000
 [1981] 1.00000000 1.00000000 0.99950025 1.00000000 0.99850075 1.00000000
 [1987] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1993] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [1999] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2005] 1.00000000 0.99950025 1.00000000 0.99950025 1.00000000 0.99900050
 [2011] 1.00000000 1.00000000 0.99900050 1.00000000 0.99950025 0.99750125
 [2017] 1.00000000 1.00000000 1.00000000 1.00000000 0.07296352 0.99850075
 [2023] 0.99950025 0.99950025 1.00000000 1.00000000 0.99950025 1.00000000
 [2029] 1.00000000 1.00000000 0.99950025 1.00000000 0.99900050 1.00000000
 [2035] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2041] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2047] 1.00000000 1.00000000 1.00000000 0.97501249 0.99750125 0.99800100
 [2053] 1.00000000 1.00000000 1.00000000 0.99800100 1.00000000 1.00000000
 [2059] 1.00000000 0.99900050 1.00000000 1.00000000 0.99950025 1.00000000
 [2065] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 0.99900050
 [2071] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2077] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2083] 1.00000000 1.00000000 0.99950025 0.99950025 1.00000000 0.99950025
 [2089] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2095] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2101] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2107] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [2113] 0.99900050 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [2119] 1.00000000 0.99950025 0.99850075 0.04397801 1.00000000 1.00000000
 [2125] 1.00000000 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000
 [2131] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2137] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [2143] 1.00000000 1.00000000 1.00000000 0.99950025 0.99950025 1.00000000
 [2149] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2155] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
 [2161] 0.99950025 0.99950025 0.99950025 1.00000000 1.00000000 0.99900050
 [2167] 0.99950025 1.00000000 1.00000000 0.99950025 0.99950025 1.00000000
 [2173] 0.99850075 0.99950025 1.00000000 1.00000000 1.00000000 0.99750125
 [2179] 1.00000000 1.00000000 0.99850075 1.00000000 0.99900050 1.00000000
 [2185] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [2191] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 0.99950025
 [2197] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2203] 1.00000000 1.00000000 0.99950025 0.99950025 1.00000000 1.00000000
 [2209] 0.99950025 0.99950025 1.00000000 0.99850075 1.00000000 1.00000000
 [2215] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [2221] 0.99950025 1.00000000 0.10494753 0.99950025 1.00000000 1.00000000
 [2227] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [2233] 0.99950025 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [2239] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2245] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 0.99700150
 [2251] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2257] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2263] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [2269] 0.99900050 0.99700150 1.00000000 1.00000000 1.00000000 1.00000000
 [2275] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2281] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2287] 0.99900050 1.00000000 1.00000000 0.98900550 0.99950025 1.00000000
 [2293] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2299] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2305] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [2311] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [2317] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [2323] 0.99950025 0.14742629 1.00000000 1.00000000 1.00000000 1.00000000
 [2329] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2335] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [2341] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2347] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2353] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2359] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
 [2365] 1.00000000 1.00000000 0.99950025 0.99900050 1.00000000 1.00000000
 [2371] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2377] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2383] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99850075
 [2389] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [2395] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
 [2401] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [2407] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2413] 1.00000000 0.99450275 1.00000000 1.00000000 1.00000000 1.00000000
 [2419] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2425] 0.17741129 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2431] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2437] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
 [2443] 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000 1.00000000
 [2449] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2455] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2461] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2467] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [2473] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2479] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2485] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
 [2491] 1.00000000 0.99950025 1.00000000 1.00000000 0.99950025 1.00000000
 [2497] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [2503] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2509] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2515] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2521] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.13643178
 [2527] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2533] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2539] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2545] 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000 1.00000000
 [2551] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
 [2557] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [2563] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [2569] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2575] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2581] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2587] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2593] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2599] 1.00000000 1.00000000 0.99950025 0.99950025 1.00000000 1.00000000
 [2605] 1.00000000 0.99950025 1.00000000 1.00000000 0.99850075 1.00000000
 [2611] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [2617] 1.00000000 1.00000000 1.00000000 0.99950025 0.99950025 1.00000000
 [2623] 1.00000000 1.00000000 1.00000000 1.00000000 0.05097451 1.00000000
 [2629] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [2635] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [2641] 0.99750125 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [2647] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2653] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [2659] 0.99950025 1.00000000 1.00000000 0.99950025 0.99900050 0.99950025
 [2665] 1.00000000 1.00000000 0.99900050 0.99950025 1.00000000 0.99950025
 [2671] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2677] 1.00000000 0.99950025 0.99400300 1.00000000 1.00000000 1.00000000
 [2683] 1.00000000 0.99950025 0.99750125 1.00000000 1.00000000 0.99950025
 [2689] 0.99400300 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [2695] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [2701] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2707] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2713] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2719] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [2725] 1.00000000 1.00000000 1.00000000 0.23438281 1.00000000 1.00000000
 [2731] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2737] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2743] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [2749] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2755] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2761] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2767] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [2773] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2779] 0.99900050 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [2785] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2791] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [2797] 0.99950025 1.00000000 1.00000000 1.00000000 0.99950025 0.99900050
 [2803] 0.99000500 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2809] 0.99850075 0.99850075 1.00000000 1.00000000 1.00000000 1.00000000
 [2815] 1.00000000 0.99800100 1.00000000 1.00000000 1.00000000 1.00000000
 [2821] 1.00000000 0.99850075 1.00000000 0.99950025 1.00000000 1.00000000
 [2827] 1.00000000 1.00000000 0.08295852 1.00000000 1.00000000 1.00000000
 [2833] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2839] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2845] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [2851] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [2857] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2863] 1.00000000 1.00000000 1.00000000 1.00000000 0.99450275 1.00000000
 [2869] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [2875] 1.00000000 1.00000000 1.00000000 0.99950025 0.99950025 1.00000000
 [2881] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2887] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2893] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [2899] 1.00000000 0.99950025 0.99950025 1.00000000 1.00000000 0.99900050
 [2905] 1.00000000 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000
 [2911] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2917] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2923] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [2929] 1.00000000 0.12243878 1.00000000 1.00000000 1.00000000 1.00000000
 [2935] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2941] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2947] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2953] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [2959] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2965] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2971] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2977] 1.00000000 1.00000000 0.98800600 1.00000000 0.99950025 1.00000000
 [2983] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [2989] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [2995] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3001] 1.00000000 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000
 [3007] 1.00000000 1.00000000 0.98800600 0.99850075 1.00000000 1.00000000
 [3013] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
 [3019] 1.00000000 0.99850075 0.99950025 1.00000000 1.00000000 1.00000000
 [3025] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3031] 0.05647176 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
 [3037] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 0.99950025
 [3043] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [3049] 0.99800100 0.99850075 0.99950025 1.00000000 1.00000000 1.00000000
 [3055] 0.99950025 1.00000000 1.00000000 0.99950025 1.00000000 0.99950025
 [3061] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [3067] 0.99950025 0.99850075 1.00000000 1.00000000 0.99800100 1.00000000
 [3073] 1.00000000 1.00000000 1.00000000 0.97851074 1.00000000 1.00000000
 [3079] 1.00000000 0.99850075 1.00000000 0.99900050 1.00000000 0.99950025
 [3085] 0.99950025 1.00000000 0.99900050 0.99950025 1.00000000 1.00000000
 [3091] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3097] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3103] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [3109] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3115] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3121] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3127] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.13893053
 [3133] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3139] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3145] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [3151] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3157] 0.99750125 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3163] 1.00000000 1.00000000 0.99950025 1.00000000 0.99950025 0.99850075
 [3169] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3175] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3181] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3187] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [3193] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [3199] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3205] 0.99950025 1.00000000 1.00000000 0.99950025 0.99900050 0.99950025
 [3211] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [3217] 0.99950025 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [3223] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3229] 1.00000000 1.00000000 0.99900050 1.00000000 0.04197901 1.00000000
 [3235] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [3241] 1.00000000 0.99900050 1.00000000 1.00000000 0.99950025 1.00000000
 [3247] 1.00000000 0.99950025 0.99900050 1.00000000 0.99950025 1.00000000
 [3253] 0.99950025 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [3259] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [3265] 1.00000000 0.99900050 0.99750125 1.00000000 1.00000000 0.99950025
 [3271] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99850075
 [3277] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3283] 0.99850075 1.00000000 1.00000000 1.00000000 0.99900050 0.99950025
 [3289] 0.99900050 1.00000000 1.00000000 0.99700150 1.00000000 0.99900050
 [3295] 0.99900050 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [3301] 0.99850075 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3307] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3313] 1.00000000 0.99900050 1.00000000 0.99950025 1.00000000 1.00000000
 [3319] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [3325] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3331] 1.00000000 1.00000000 1.00000000 0.11394303 1.00000000 1.00000000
 [3337] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [3343] 1.00000000 1.00000000 0.99800100 1.00000000 1.00000000 1.00000000
 [3349] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
 [3355] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3361] 1.00000000 1.00000000 1.00000000 1.00000000 0.99550225 1.00000000
 [3367] 1.00000000 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000
 [3373] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3379] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 0.99750125
 [3385] 1.00000000 0.99950025 1.00000000 1.00000000 0.99950025 1.00000000
 [3391] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3397] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3403] 1.00000000 1.00000000 1.00000000 1.00000000 0.99800100 1.00000000
 [3409] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3415] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [3421] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3427] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3433] 1.00000000 1.00000000 0.12543728 0.99950025 1.00000000 1.00000000
 [3439] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3445] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3451] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3457] 1.00000000 0.99950025 1.00000000 1.00000000 0.99900050 1.00000000
 [3463] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3469] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3475] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 0.99850075
 [3481] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [3487] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3493] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3499] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3505] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3511] 0.99400300 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3517] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3523] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3529] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3535] 0.99950025 0.14042979 1.00000000 1.00000000 1.00000000 1.00000000
 [3541] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3547] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [3553] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [3559] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3565] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3571] 1.00000000 1.00000000 1.00000000 0.99950025 0.99950025 1.00000000
 [3577] 1.00000000 1.00000000 1.00000000 0.99900050 0.99800100 1.00000000
 [3583] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [3589] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3595] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3601] 1.00000000 0.99950025 0.99900050 1.00000000 1.00000000 0.99950025
 [3607] 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000 1.00000000
 [3613] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3619] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [3625] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3631] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3637] 0.12843578 1.00000000 0.99400300 1.00000000 1.00000000 1.00000000
 [3643] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [3649] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
 [3655] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3661] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [3667] 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000 1.00000000
 [3673] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3679] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3685] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3691] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3697] 1.00000000 0.99950025 1.00000000 0.99800100 1.00000000 1.00000000
 [3703] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [3709] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3715] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3721] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3727] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3733] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.18190905
 [3739] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3745] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [3751] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [3757] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3763] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3769] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3775] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3781] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3787] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3793] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [3799] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3805] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 0.99900050
 [3811] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [3817] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [3823] 0.99900050 0.99900050 0.99900050 1.00000000 0.99950025 1.00000000
 [3829] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 0.99950025
 [3835] 1.00000000 1.00000000 0.99400300 1.00000000 0.03148426 1.00000000
 [3841] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [3847] 1.00000000 1.00000000 0.99700150 1.00000000 0.99700150 0.99950025
 [3853] 0.99850075 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [3859] 1.00000000 0.99850075 1.00000000 0.99800100 1.00000000 1.00000000
 [3865] 1.00000000 0.99950025 0.98800600 1.00000000 1.00000000 0.99950025
 [3871] 0.99750125 0.99950025 0.99950025 1.00000000 0.99950025 1.00000000
 [3877] 1.00000000 0.99850075 0.99950025 0.99900050 1.00000000 1.00000000
 [3883] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [3889] 1.00000000 0.99950025 0.99850075 1.00000000 0.99950025 1.00000000
 [3895] 0.99950025 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
 [3901] 1.00000000 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000
 [3907] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3913] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3919] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3925] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3931] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3937] 1.00000000 1.00000000 1.00000000 0.20039980 1.00000000 1.00000000
 [3943] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3949] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3955] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3961] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3967] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3973] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3979] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 0.99950025
 [3985] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3991] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [3997] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [4003] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4009] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4015] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [4021] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [4027] 0.99750125 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [4033] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4039] 1.00000000 1.00000000 0.17141429 1.00000000 1.00000000 1.00000000
 [4045] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4051] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4057] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4063] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [4069] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 0.99900050
 [4075] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [4081] 1.00000000 0.99950025 1.00000000 0.99800100 1.00000000 1.00000000
 [4087] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4093] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4099] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
 [4105] 0.99900050 1.00000000 1.00000000 1.00000000 0.99900050 0.98750625
 [4111] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99800100
 [4117] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4123] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4129] 1.00000000 1.00000000 0.99950025 1.00000000 0.99900050 1.00000000
 [4135] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [4141] 1.00000000 0.03298351 0.99900050 1.00000000 0.99900050 1.00000000
 [4147] 1.00000000 0.99950025 1.00000000 0.99950025 1.00000000 0.99950025
 [4153] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [4159] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4165] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 0.99900050
 [4171] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [4177] 0.99900050 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [4183] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 0.99950025
 [4189] 1.00000000 0.99850075 1.00000000 0.99950025 1.00000000 1.00000000
 [4195] 0.99750125 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000
 [4201] 0.99850075 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4207] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4213] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [4219] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4225] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4231] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4237] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [4243] 0.07146427 1.00000000 0.99900050 1.00000000 1.00000000 0.99950025
 [4249] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [4255] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4261] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4267] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [4273] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4279] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4285] 1.00000000 0.99900050 0.99950025 0.99800100 1.00000000 1.00000000
 [4291] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [4297] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4303] 0.99950025 1.00000000 0.99400300 1.00000000 1.00000000 1.00000000
 [4309] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [4315] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4321] 1.00000000 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000
 [4327] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [4333] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4339] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.10244878
 [4345] 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000 1.00000000
 [4351] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4357] 1.00000000 1.00000000 1.00000000 0.99900050 0.99950025 1.00000000
 [4363] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [4369] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4375] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [4381] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4387] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [4393] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [4399] 0.99950025 1.00000000 1.00000000 0.99800100 1.00000000 0.99950025
 [4405] 0.99800100 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [4411] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [4417] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4423] 0.99950025 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [4429] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 0.99800100
 [4435] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4441] 1.00000000 0.99900050 0.99900050 1.00000000 0.06696652 1.00000000
 [4447] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 0.99950025
 [4453] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 0.99900050
 [4459] 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000 1.00000000
 [4465] 1.00000000 1.00000000 1.00000000 0.99400300 1.00000000 0.99950025
 [4471] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4477] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [4483] 1.00000000 0.99900050 0.99950025 1.00000000 1.00000000 0.99550225
 [4489] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4495] 1.00000000 1.00000000 1.00000000 0.99900050 0.99800100 1.00000000
 [4501] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4507] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [4513] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4519] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [4525] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4531] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4537] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4543] 1.00000000 0.99850075 1.00000000 0.15192404 1.00000000 1.00000000
 [4549] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4555] 1.00000000 1.00000000 0.99750125 1.00000000 1.00000000 1.00000000
 [4561] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4567] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4573] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4579] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [4585] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4591] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
 [4597] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
 [4603] 0.99950025 1.00000000 0.99950025 0.99850075 0.99950025 1.00000000
 [4609] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [4615] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
 [4621] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [4627] 1.00000000 0.99950025 0.99950025 1.00000000 1.00000000 1.00000000
 [4633] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 0.99950025
 [4639] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4645] 1.00000000 1.00000000 0.04597701 1.00000000 0.99950025 1.00000000
 [4651] 1.00000000 1.00000000 0.99750125 1.00000000 1.00000000 1.00000000
 [4657] 0.99900050 1.00000000 1.00000000 0.99750125 1.00000000 1.00000000
 [4663] 0.99950025 0.99900050 0.99900050 0.99950025 1.00000000 1.00000000
 [4669] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [4675] 1.00000000 0.99900050 0.99950025 1.00000000 0.99950025 1.00000000
 [4681] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4687] 0.99950025 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [4693] 0.99800100 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4699] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 0.99700150
 [4705] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4711] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4717] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4723] 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000 1.00000000
 [4729] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [4735] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4741] 1.00000000 0.99950025 0.99950025 1.00000000 0.99900050 1.00000000
 [4747] 1.00000000 0.09745127 1.00000000 1.00000000 1.00000000 1.00000000
 [4753] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [4759] 1.00000000 1.00000000 1.00000000 0.99700150 1.00000000 1.00000000
 [4765] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4771] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4777] 1.00000000 1.00000000 1.00000000 1.00000000 0.99850075 0.99900050
 [4783] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [4789] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4795] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [4801] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4807] 1.00000000 1.00000000 0.99750125 1.00000000 1.00000000 1.00000000
 [4813] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [4819] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4825] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4831] 0.99800100 0.99950025 0.99900050 1.00000000 1.00000000 1.00000000
 [4837] 1.00000000 1.00000000 0.99700150 1.00000000 1.00000000 1.00000000
 [4843] 1.00000000 1.00000000 1.00000000 0.99950025 0.99950025 1.00000000
 [4849] 0.07146427 0.99850075 0.99900050 1.00000000 0.99750125 1.00000000
 [4855] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [4861] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [4867] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [4873] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4879] 1.00000000 0.99950025 1.00000000 1.00000000 0.99950025 1.00000000
 [4885] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4891] 1.00000000 0.99150425 1.00000000 0.99900050 1.00000000 1.00000000
 [4897] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [4903] 1.00000000 0.99850075 0.99950025 1.00000000 1.00000000 1.00000000
 [4909] 0.99900050 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [4915] 0.99750125 0.99950025 1.00000000 0.99950025 1.00000000 1.00000000
 [4921] 0.97501249 1.00000000 0.99700150 1.00000000 1.00000000 1.00000000
 [4927] 1.00000000 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000
 [4933] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4939] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [4945] 1.00000000 1.00000000 1.00000000 1.00000000 0.99850075 0.04347826
 [4951] 0.99750125 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [4957] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
 [4963] 1.00000000 0.99950025 1.00000000 0.99950025 1.00000000 0.99950025
 [4969] 1.00000000 1.00000000 1.00000000 0.99950025 0.99950025 1.00000000
 [4975] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 0.99950025
 [4981] 0.99950025 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000
 [4987] 0.99850075 0.99800100 1.00000000 0.99950025 1.00000000 1.00000000
 [4993] 1.00000000 0.99750125 1.00000000 1.00000000 1.00000000 1.00000000
 [4999] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5005] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5011] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [5017] 1.00000000 1.00000000 1.00000000 1.00000000 0.99750125 1.00000000
 [5023] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5029] 1.00000000 1.00000000 0.99950025 1.00000000 0.99950025 0.99900050
 [5035] 1.00000000 0.99950025 0.99900050 1.00000000 0.99700150 1.00000000
 [5041] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5047] 1.00000000 1.00000000 0.99900050 0.99750125 0.06246877 1.00000000
 [5053] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5059] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [5065] 0.99700150 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5071] 0.99900050 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [5077] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5083] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [5089] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5095] 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000 1.00000000
 [5101] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [5107] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 0.99950025
 [5113] 1.00000000 1.00000000 0.99950025 0.99950025 1.00000000 1.00000000
 [5119] 1.00000000 1.00000000 0.99800100 1.00000000 1.00000000 1.00000000
 [5125] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5131] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5137] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 0.99950025
 [5143] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [5149] 1.00000000 1.00000000 1.00000000 0.08095952 1.00000000 1.00000000
 [5155] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 0.99950025
 [5161] 1.00000000 0.99950025 0.98800600 1.00000000 1.00000000 1.00000000
 [5167] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [5173] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5179] 1.00000000 1.00000000 1.00000000 0.99950025 0.99950025 1.00000000
 [5185] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5191] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5197] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
 [5203] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5209] 0.99950025 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [5215] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5221] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5227] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5233] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [5239] 0.99850075 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [5245] 1.00000000 1.00000000 0.99750125 1.00000000 0.99750125 1.00000000
 [5251] 1.00000000 1.00000000 0.06496752 1.00000000 0.99900050 1.00000000
 [5257] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5263] 0.99900050 0.99950025 0.99950025 0.99950025 0.99950025 1.00000000
 [5269] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [5275] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5281] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5287] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [5293] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5299] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5305] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 0.99950025
 [5311] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [5317] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5323] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
 [5329] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5335] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5341] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [5347] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [5353] 1.00000000 0.09745127 1.00000000 1.00000000 1.00000000 0.99900050
 [5359] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [5365] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5371] 0.99950025 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [5377] 1.00000000 0.99950025 1.00000000 0.99900050 1.00000000 1.00000000
 [5383] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5389] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5395] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5401] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5407] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5413] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5419] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5425] 1.00000000 1.00000000 0.99950025 1.00000000 0.99900050 1.00000000
 [5431] 0.99950025 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [5437] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5443] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5449] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [5455] 0.11044478 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5461] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5467] 0.99850075 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5473] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [5479] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5485] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [5491] 1.00000000 1.00000000 0.99400300 1.00000000 1.00000000 1.00000000
 [5497] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [5503] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5509] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [5515] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5521] 0.99800100 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5527] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5533] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5539] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5545] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5551] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.15292354
 [5557] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5563] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [5569] 1.00000000 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000
 [5575] 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000 1.00000000
 [5581] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5587] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5593] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5599] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5605] 1.00000000 0.99900050 1.00000000 1.00000000 0.98650675 1.00000000
 [5611] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5617] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [5623] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5629] 1.00000000 1.00000000 1.00000000 0.99750125 1.00000000 1.00000000
 [5635] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [5641] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 0.99750125
 [5647] 0.99900050 1.00000000 0.99950025 1.00000000 1.00000000 0.99900050
 [5653] 0.99900050 1.00000000 1.00000000 1.00000000 0.07196402 1.00000000
 [5659] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [5665] 0.99900050 0.99950025 0.99950025 1.00000000 1.00000000 1.00000000
 [5671] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [5677] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [5683] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5689] 1.00000000 0.99900050 0.99900050 1.00000000 1.00000000 1.00000000
 [5695] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [5701] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [5707] 1.00000000 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000
 [5713] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5719] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5725] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [5731] 0.99950025 1.00000000 1.00000000 1.00000000 0.99950025 0.99900050
 [5737] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5743] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
 [5749] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [5755] 1.00000000 1.00000000 1.00000000 0.08845577 1.00000000 1.00000000
 [5761] 0.99950025 1.00000000 1.00000000 1.00000000 0.99950025 0.99900050
 [5767] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [5773] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5779] 1.00000000 1.00000000 0.99750125 1.00000000 1.00000000 0.99900050
 [5785] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [5791] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5797] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5803] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5809] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5815] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5821] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5827] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5833] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5839] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5845] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5851] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5857] 1.00000000 1.00000000 0.14442779 1.00000000 1.00000000 1.00000000
 [5863] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [5869] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5875] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5881] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5887] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5893] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [5899] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5905] 1.00000000 0.99450275 1.00000000 1.00000000 0.99950025 1.00000000
 [5911] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [5917] 0.99950025 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [5923] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5929] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [5935] 1.00000000 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000
 [5941] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
 [5947] 0.99750125 1.00000000 1.00000000 0.99900050 1.00000000 0.99950025
 [5953] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [5959] 1.00000000 0.04797601 1.00000000 1.00000000 1.00000000 1.00000000
 [5965] 1.00000000 0.99950025 1.00000000 0.99950025 1.00000000 1.00000000
 [5971] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [5977] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5983] 1.00000000 0.99950025 1.00000000 1.00000000 0.99950025 1.00000000
 [5989] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [5995] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6001] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6007] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
 [6013] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [6019] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [6025] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6031] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [6037] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6043] 1.00000000 0.99950025 1.00000000 0.99950025 1.00000000 1.00000000
 [6049] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6055] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [6061] 0.08395802 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6067] 0.99950025 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [6073] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6079] 0.99950025 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [6085] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6091] 0.99950025 1.00000000 0.99900050 0.99950025 1.00000000 0.99850075
 [6097] 1.00000000 1.00000000 0.99950025 0.99950025 1.00000000 0.99950025
 [6103] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [6109] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [6115] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [6121] 1.00000000 0.99950025 1.00000000 0.99900050 1.00000000 0.99900050
 [6127] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6133] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [6139] 0.99800100 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6145] 0.99850075 1.00000000 1.00000000 0.99700150 1.00000000 1.00000000
 [6151] 0.99950025 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [6157] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.04397801
 [6163] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6169] 1.00000000 1.00000000 0.99950025 0.99950025 1.00000000 1.00000000
 [6175] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 0.99950025
 [6181] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [6187] 1.00000000 0.99450275 0.99950025 1.00000000 1.00000000 0.99950025
 [6193] 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000 0.99900050
 [6199] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 0.99800100
 [6205] 0.99950025 0.99700150 1.00000000 1.00000000 0.99900050 1.00000000
 [6211] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [6217] 0.99900050 0.99950025 0.99950025 1.00000000 0.99950025 0.99950025
 [6223] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [6229] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [6235] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6241] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6247] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 0.98800600
 [6253] 0.99900050 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [6259] 1.00000000 1.00000000 1.00000000 0.99950025 0.03598201 1.00000000
 [6265] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [6271] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [6277] 1.00000000 1.00000000 0.99950025 1.00000000 0.99950025 0.99900050
 [6283] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [6289] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [6295] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [6301] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [6307] 0.99900050 1.00000000 1.00000000 1.00000000 0.99800100 1.00000000
 [6313] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [6319] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6325] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [6331] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6337] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [6343] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [6349] 1.00000000 0.99950025 1.00000000 1.00000000 0.99950025 1.00000000
 [6355] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [6361] 1.00000000 1.00000000 1.00000000 0.06946527 1.00000000 1.00000000
 [6367] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6373] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6379] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [6385] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [6391] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
 [6397] 1.00000000 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000
 [6403] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [6409] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6415] 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000 0.99900050
 [6421] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6427] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [6433] 1.00000000 0.99550225 1.00000000 0.99950025 1.00000000 1.00000000
 [6439] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6445] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
 [6451] 0.99700150 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [6457] 0.99900050 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [6463] 1.00000000 1.00000000 0.05597201 0.99900050 1.00000000 1.00000000
 [6469] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6475] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [6481] 0.99950025 1.00000000 1.00000000 0.99900050 0.99950025 1.00000000
 [6487] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 0.99850075
 [6493] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6499] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6505] 1.00000000 1.00000000 1.00000000 1.00000000 0.99700150 1.00000000
 [6511] 1.00000000 1.00000000 1.00000000 1.00000000 0.99400300 1.00000000
 [6517] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [6523] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [6529] 1.00000000 1.00000000 0.99950025 1.00000000 0.99900050 1.00000000
 [6535] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [6541] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6547] 0.99950025 1.00000000 0.99950025 0.99950025 1.00000000 1.00000000
 [6553] 0.99950025 1.00000000 1.00000000 1.00000000 0.99950025 0.99900050
 [6559] 1.00000000 0.99950025 1.00000000 1.00000000 0.99950025 1.00000000
 [6565] 0.99900050 0.04347826 0.99900050 0.99950025 1.00000000 1.00000000
 [6571] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 0.99900050
 [6577] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [6583] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 0.99700150
 [6589] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 0.99900050
 [6595] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [6601] 1.00000000 0.99700150 1.00000000 1.00000000 1.00000000 1.00000000
 [6607] 1.00000000 1.00000000 0.98050975 1.00000000 0.99950025 1.00000000
 [6613] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
 [6619] 1.00000000 0.99950025 1.00000000 0.99950025 1.00000000 0.99950025
 [6625] 1.00000000 1.00000000 0.99900050 1.00000000 0.99450275 1.00000000
 [6631] 0.99950025 0.99950025 0.99750125 1.00000000 1.00000000 1.00000000
 [6637] 1.00000000 1.00000000 0.98800600 1.00000000 1.00000000 0.99900050
 [6643] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6649] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [6655] 0.99850075 0.99950025 0.99950025 1.00000000 1.00000000 1.00000000
 [6661] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [6667] 0.03398301 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000
 [6673] 0.99950025 1.00000000 0.99900050 0.98600700 1.00000000 0.99950025
 [6679] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [6685] 1.00000000 1.00000000 1.00000000 1.00000000 0.99750125 1.00000000
 [6691] 0.99900050 1.00000000 0.99900050 1.00000000 1.00000000 0.99950025
 [6697] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 0.99950025
 [6703] 0.99950025 0.99950025 0.98050975 1.00000000 0.99950025 1.00000000
 [6709] 0.99900050 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [6715] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6721] 1.00000000 1.00000000 0.99950025 0.99900050 1.00000000 1.00000000
 [6727] 0.99950025 1.00000000 1.00000000 1.00000000 0.99850075 0.99850075
 [6733] 1.00000000 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000
 [6739] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [6745] 0.99400300 1.00000000 1.00000000 1.00000000 0.99950025 0.99950025
 [6751] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6757] 1.00000000 0.99900050 1.00000000 0.99950025 1.00000000 1.00000000
 [6763] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 0.04797601
 [6769] 1.00000000 1.00000000 0.99950025 0.99950025 1.00000000 1.00000000
 [6775] 0.99950025 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [6781] 1.00000000 1.00000000 1.00000000 0.99950025 0.99750125 0.99950025
 [6787] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [6793] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6799] 0.99900050 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [6805] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6811] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [6817] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [6823] 0.99900050 1.00000000 0.99950025 0.99900050 1.00000000 1.00000000
 [6829] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6835] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6841] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6847] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6853] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6859] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6865] 1.00000000 1.00000000 1.00000000 1.00000000 0.14292854 1.00000000
 [6871] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6877] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6883] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6889] 1.00000000 1.00000000 0.99950025 1.00000000 0.99950025 1.00000000
 [6895] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [6901] 0.99900050 0.99900050 0.99950025 1.00000000 0.99950025 1.00000000
 [6907] 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000 1.00000000
 [6913] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [6919] 1.00000000 1.00000000 0.99900050 0.99950025 0.99700150 1.00000000
 [6925] 1.00000000 1.00000000 0.99950025 0.99950025 1.00000000 1.00000000
 [6931] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [6937] 1.00000000 1.00000000 0.99950025 1.00000000 0.99950025 0.99900050
 [6943] 0.99950025 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [6949] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6955] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6961] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [6967] 1.00000000 1.00000000 1.00000000 0.07146427 1.00000000 1.00000000
 [6973] 0.99950025 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [6979] 1.00000000 0.99700150 1.00000000 0.99950025 1.00000000 1.00000000
 [6985] 1.00000000 1.00000000 0.99900050 1.00000000 0.99950025 1.00000000
 [6991] 1.00000000 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000
 [6997] 1.00000000 1.00000000 0.99850075 1.00000000 1.00000000 0.99800100
 [7003] 0.99950025 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000
 [7009] 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000 1.00000000
 [7015] 1.00000000 0.99700150 1.00000000 0.99900050 1.00000000 0.99000500
 [7021] 0.99950025 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [7027] 1.00000000 1.00000000 0.99950025 1.00000000 0.99800100 1.00000000
 [7033] 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000 1.00000000
 [7039] 0.99750125 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7045] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [7051] 0.99900050 1.00000000 1.00000000 0.99950025 1.00000000 0.99850075
 [7057] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 0.99950025
 [7063] 1.00000000 1.00000000 1.00000000 1.00000000 0.99850075 0.99950025
 [7069] 1.00000000 1.00000000 0.04397801 1.00000000 1.00000000 1.00000000
 [7075] 0.99800100 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
 [7081] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [7087] 0.99950025 0.99900050 1.00000000 0.99900050 1.00000000 1.00000000
 [7093] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7099] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7105] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [7111] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [7117] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7123] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7129] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7135] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [7141] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7147] 1.00000000 1.00000000 1.00000000 0.99950025 0.99900050 0.99950025
 [7153] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [7159] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [7165] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [7171] 1.00000000 0.08395802 1.00000000 1.00000000 1.00000000 1.00000000
 [7177] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7183] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7189] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [7195] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7201] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [7207] 1.00000000 0.99900050 1.00000000 1.00000000 0.99950025 1.00000000
 [7213] 1.00000000 1.00000000 1.00000000 1.00000000 0.99750125 1.00000000
 [7219] 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000 1.00000000
 [7225] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7231] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7237] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [7243] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7249] 1.00000000 0.99950025 1.00000000 1.00000000 0.99950025 1.00000000
 [7255] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7261] 0.99900050 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [7267] 0.99950025 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [7273] 0.08345827 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [7279] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [7285] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 0.99800100
 [7291] 0.99950025 1.00000000 0.99950025 0.99900050 1.00000000 1.00000000
 [7297] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
 [7303] 0.99950025 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [7309] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7315] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [7321] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [7327] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7333] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [7339] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
 [7345] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7351] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7357] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7363] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7369] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.08845577
 [7375] 0.99950025 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [7381] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [7387] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [7393] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [7399] 1.00000000 1.00000000 1.00000000 0.96651674 1.00000000 0.99950025
 [7405] 0.99850075 1.00000000 0.99900050 1.00000000 0.99900050 0.99800100
 [7411] 1.00000000 1.00000000 1.00000000 0.99750125 1.00000000 1.00000000
 [7417] 1.00000000 0.99900050 1.00000000 0.99950025 1.00000000 1.00000000
 [7423] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7429] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7435] 1.00000000 0.99950025 1.00000000 1.00000000 0.99950025 1.00000000
 [7441] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [7447] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7453] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [7459] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7465] 1.00000000 0.99900050 0.99900050 0.99950025 1.00000000 1.00000000
 [7471] 0.99800100 1.00000000 1.00000000 0.99950025 0.03598201 0.99900050
 [7477] 1.00000000 0.99900050 1.00000000 0.99850075 0.99850075 1.00000000
 [7483] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 0.99950025
 [7489] 1.00000000 1.00000000 1.00000000 0.99900050 0.99800100 1.00000000
 [7495] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7501] 0.99900050 0.98850575 1.00000000 1.00000000 0.99800100 1.00000000
 [7507] 0.99900050 1.00000000 0.99950025 0.99750125 0.99950025 1.00000000
 [7513] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7519] 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000 1.00000000
 [7525] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7531] 0.97851074 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000
 [7537] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [7543] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [7549] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7555] 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000 0.99900050
 [7561] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 0.99900050
 [7567] 0.98600700 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [7573] 1.00000000 1.00000000 0.99900050 0.02798601 0.99950025 1.00000000
 [7579] 1.00000000 0.99950025 1.00000000 0.99950025 1.00000000 1.00000000
 [7585] 0.99700150 1.00000000 0.99900050 1.00000000 0.99950025 1.00000000
 [7591] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
 [7597] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7603] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [7609] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7615] 1.00000000 0.99950025 1.00000000 1.00000000 0.99950025 1.00000000
 [7621] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7627] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7633] 0.99950025 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [7639] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
 [7645] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [7651] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7657] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7663] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7669] 1.00000000 0.99950025 1.00000000 1.00000000 0.99950025 1.00000000
 [7675] 1.00000000 0.99950025 0.11794103 1.00000000 1.00000000 1.00000000
 [7681] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7687] 1.00000000 1.00000000 1.00000000 0.99750125 1.00000000 1.00000000
 [7693] 1.00000000 1.00000000 0.99400300 1.00000000 1.00000000 1.00000000
 [7699] 0.99950025 1.00000000 1.00000000 0.99850075 1.00000000 1.00000000
 [7705] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 0.99900050
 [7711] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 0.99900050
 [7717] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99750125
 [7723] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [7729] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7735] 1.00000000 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000
 [7741] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7747] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
 [7753] 1.00000000 0.99950025 0.99950025 1.00000000 1.00000000 1.00000000
 [7759] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [7765] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [7771] 0.99900050 1.00000000 1.00000000 0.99950025 0.99900050 1.00000000
 [7777] 1.00000000 0.04197901 1.00000000 0.99950025 0.99950025 1.00000000
 [7783] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7789] 0.99850075 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000
 [7795] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7801] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7807] 1.00000000 1.00000000 1.00000000 0.99750125 1.00000000 1.00000000
 [7813] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7819] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7825] 1.00000000 1.00000000 0.99400300 0.99900050 0.99950025 0.98800600
 [7831] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7837] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [7843] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [7849] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7855] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7861] 0.99950025 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [7867] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7873] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7879] 0.09695152 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7885] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7891] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7897] 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000 0.99850075
 [7903] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [7909] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [7915] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [7921] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [7927] 1.00000000 0.99950025 1.00000000 1.00000000 0.99850075 1.00000000
 [7933] 1.00000000 1.00000000 0.99850075 0.99900050 1.00000000 1.00000000
 [7939] 0.99900050 1.00000000 1.00000000 0.99950025 1.00000000 0.99950025
 [7945] 1.00000000 0.99950025 1.00000000 1.00000000 0.99950025 0.99950025
 [7951] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
 [7957] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [7963] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [7969] 1.00000000 0.99700150 1.00000000 1.00000000 0.99950025 1.00000000
 [7975] 0.99850075 0.99950025 1.00000000 0.99950025 1.00000000 0.03698151
 [7981] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 0.99850075
 [7987] 0.99900050 1.00000000 0.99950025 1.00000000 0.99900050 1.00000000
 [7993] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [7999] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [8005] 1.00000000 1.00000000 1.00000000 1.00000000 0.99750125 1.00000000
 [8011] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8017] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 0.99850075
 [8023] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8029] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 0.99950025
 [8035] 1.00000000 0.99800100 1.00000000 1.00000000 1.00000000 0.99900050
 [8041] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [8047] 0.99900050 0.99850075 1.00000000 0.99950025 1.00000000 1.00000000
 [8053] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99750125
 [8059] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 0.99950025
 [8065] 0.99950025 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [8071] 1.00000000 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000
 [8077] 1.00000000 0.99950025 1.00000000 1.00000000 0.05997001 1.00000000
 [8083] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 0.99950025
 [8089] 1.00000000 1.00000000 0.99950025 0.99850075 1.00000000 1.00000000
 [8095] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [8101] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [8107] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8113] 1.00000000 0.99900050 0.99950025 1.00000000 1.00000000 1.00000000
 [8119] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8125] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8131] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8137] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [8143] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [8149] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [8155] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [8161] 0.99950025 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
 [8167] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [8173] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [8179] 1.00000000 1.00000000 1.00000000 0.08245877 1.00000000 1.00000000
 [8185] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [8191] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [8197] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8203] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8209] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8215] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [8221] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [8227] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8233] 0.99850075 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [8239] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8245] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [8251] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [8257] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [8263] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8269] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8275] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [8281] 1.00000000 1.00000000 0.10244878 1.00000000 0.99950025 1.00000000
 [8287] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8293] 1.00000000 1.00000000 0.99950025 0.99750125 1.00000000 1.00000000
 [8299] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [8305] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [8311] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99750125
 [8317] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8323] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [8329] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 0.99750125
 [8335] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 0.99950025
 [8341] 0.99800100 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [8347] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8353] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [8359] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [8365] 0.99900050 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [8371] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [8377] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [8383] 1.00000000 0.12243878 1.00000000 1.00000000 1.00000000 1.00000000
 [8389] 0.99800100 1.00000000 1.00000000 0.99850075 1.00000000 1.00000000
 [8395] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [8401] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8407] 1.00000000 1.00000000 0.99950025 1.00000000 0.99800100 1.00000000
 [8413] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
 [8419] 1.00000000 0.99850075 0.99950025 1.00000000 1.00000000 1.00000000
 [8425] 1.00000000 1.00000000 0.99750125 1.00000000 1.00000000 1.00000000
 [8431] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8437] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [8443] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [8449] 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000 1.00000000
 [8455] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8461] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 0.99900050
 [8467] 1.00000000 0.99750125 1.00000000 1.00000000 1.00000000 1.00000000
 [8473] 1.00000000 0.99950025 1.00000000 0.99700150 1.00000000 1.00000000
 [8479] 0.99950025 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [8485] 0.08845577 1.00000000 1.00000000 0.99850075 1.00000000 1.00000000
 [8491] 1.00000000 1.00000000 1.00000000 0.99950025 0.99950025 1.00000000
 [8497] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [8503] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [8509] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8515] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [8521] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8527] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8533] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [8539] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [8545] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8551] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8557] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8563] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [8569] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
 [8575] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99850075
 [8581] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.10594703
 [8587] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8593] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8599] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8605] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [8611] 0.99850075 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8617] 0.99800100 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [8623] 0.99900050 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
 [8629] 1.00000000 1.00000000 0.99900050 1.00000000 0.99900050 1.00000000
 [8635] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8641] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [8647] 0.99950025 1.00000000 1.00000000 0.99850075 0.99900050 1.00000000
 [8653] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8659] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [8665] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [8671] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [8677] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
 [8683] 1.00000000 1.00000000 1.00000000 1.00000000 0.09195402 1.00000000
 [8689] 0.99400300 1.00000000 0.99900050 1.00000000 1.00000000 0.99950025
 [8695] 1.00000000 0.99750125 1.00000000 1.00000000 1.00000000 1.00000000
 [8701] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [8707] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [8713] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 0.99950025
 [8719] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 0.99850075
 [8725] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [8731] 0.99950025 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [8737] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 0.99950025
 [8743] 0.99800100 0.99950025 0.99550225 1.00000000 1.00000000 0.99950025
 [8749] 1.00000000 0.99800100 1.00000000 1.00000000 0.99950025 1.00000000
 [8755] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8761] 1.00000000 0.99450275 0.99900050 0.99950025 1.00000000 0.99700150
 [8767] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [8773] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [8779] 1.00000000 1.00000000 0.99950025 0.99950025 1.00000000 1.00000000
 [8785] 0.99850075 1.00000000 1.00000000 0.04797601 1.00000000 1.00000000
 [8791] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [8797] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [8803] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8809] 0.99950025 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [8815] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [8821] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [8827] 0.99400300 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8833] 0.99900050 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [8839] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8845] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8851] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [8857] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [8863] 1.00000000 1.00000000 1.00000000 1.00000000 0.99750125 1.00000000
 [8869] 1.00000000 0.99950025 1.00000000 1.00000000 0.99950025 1.00000000
 [8875] 1.00000000 0.99950025 1.00000000 0.99850075 1.00000000 0.99950025
 [8881] 1.00000000 1.00000000 1.00000000 0.99800100 1.00000000 1.00000000
 [8887] 0.99400300 1.00000000 0.05647176 1.00000000 1.00000000 0.99900050
 [8893] 0.99950025 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000
 [8899] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8905] 0.99900050 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [8911] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8917] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8923] 0.98900550 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8929] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8935] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [8941] 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000 1.00000000
 [8947] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [8953] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 0.99950025
 [8959] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [8965] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [8971] 0.99900050 1.00000000 0.99800100 0.99950025 1.00000000 1.00000000
 [8977] 0.99750125 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8983] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [8989] 1.00000000 0.09795102 1.00000000 1.00000000 1.00000000 1.00000000
 [8995] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9001] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [9007] 0.99900050 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000
 [9013] 1.00000000 0.99950025 1.00000000 0.99850075 1.00000000 1.00000000
 [9019] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [9025] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9031] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9037] 1.00000000 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000
 [9043] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [9049] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9055] 1.00000000 1.00000000 0.99900050 0.99900050 1.00000000 1.00000000
 [9061] 0.99950025 1.00000000 1.00000000 1.00000000 0.99900050 0.99950025
 [9067] 0.99900050 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [9073] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9079] 1.00000000 0.99900050 0.99950025 1.00000000 1.00000000 1.00000000
 [9085] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
 [9091] 0.07096452 1.00000000 0.99950025 1.00000000 1.00000000 0.99950025
 [9097] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 0.99950025
 [9103] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9109] 0.99800100 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [9115] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9121] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [9127] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [9133] 0.99700150 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9139] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [9145] 1.00000000 1.00000000 1.00000000 1.00000000 0.99150425 1.00000000
 [9151] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9157] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [9163] 1.00000000 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000
 [9169] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9175] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9181] 0.99850075 1.00000000 1.00000000 0.99850075 1.00000000 1.00000000
 [9187] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 0.06546727
 [9193] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [9199] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9205] 0.99950025 1.00000000 0.99800100 1.00000000 1.00000000 0.99950025
 [9211] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [9217] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [9223] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [9229] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9235] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [9241] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [9247] 0.99800100 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9253] 1.00000000 1.00000000 0.99400300 1.00000000 1.00000000 1.00000000
 [9259] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 0.99900050
 [9265] 1.00000000 1.00000000 0.99900050 1.00000000 0.99950025 0.99850075
 [9271] 1.00000000 1.00000000 0.99950025 0.99900050 0.99800100 1.00000000
 [9277] 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000 1.00000000
 [9283] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9289] 0.99950025 1.00000000 0.99950025 1.00000000 0.07446277 1.00000000
 [9295] 1.00000000 1.00000000 0.99950025 1.00000000 0.98950525 1.00000000
 [9301] 1.00000000 0.99950025 1.00000000 0.99900050 1.00000000 1.00000000
 [9307] 1.00000000 1.00000000 0.99950025 0.99950025 1.00000000 1.00000000
 [9313] 1.00000000 1.00000000 0.99800100 1.00000000 1.00000000 0.99950025
 [9319] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [9325] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 0.99950025
 [9331] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
 [9337] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9343] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9349] 0.99900050 0.99750125 1.00000000 1.00000000 1.00000000 1.00000000
 [9355] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9361] 0.99950025 0.99850075 1.00000000 1.00000000 1.00000000 0.99900050
 [9367] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [9373] 0.99900050 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
 [9379] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [9385] 0.99950025 1.00000000 0.99950025 0.99950025 0.99950025 1.00000000
 [9391] 1.00000000 1.00000000 1.00000000 0.06696652 1.00000000 1.00000000
 [9397] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [9403] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9409] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9415] 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000
 [9421] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [9427] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9433] 0.99900050 1.00000000 1.00000000 0.99950025 1.00000000 0.99950025
 [9439] 0.99950025 1.00000000 1.00000000 0.99750125 1.00000000 1.00000000
 [9445] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9451] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9457] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9463] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9469] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9475] 1.00000000 1.00000000 0.99400300 1.00000000 1.00000000 1.00000000
 [9481] 1.00000000 0.99950025 0.99950025 1.00000000 0.99950025 1.00000000
 [9487] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9493] 1.00000000 1.00000000 0.15042479 1.00000000 1.00000000 0.99950025
 [9499] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
 [9505] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9511] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9517] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [9523] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9529] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9535] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9541] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9547] 1.00000000 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000
 [9553] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9559] 0.99950025 1.00000000 0.99850075 1.00000000 1.00000000 1.00000000
 [9565] 1.00000000 0.99900050 0.99950025 1.00000000 0.99950025 1.00000000
 [9571] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9577] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9583] 0.99750125 1.00000000 1.00000000 1.00000000 0.99750125 1.00000000
 [9589] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [9595] 1.00000000 0.10744628 1.00000000 1.00000000 0.99900050 1.00000000
 [9601] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9607] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [9613] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [9619] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9625] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [9631] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9637] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9643] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9649] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9655] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9661] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9667] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9673] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9679] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [9685] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9691] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000
 [9697] 0.20039980 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9703] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9709] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9715] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9721] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000
 [9727] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [9733] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [9739] 0.99900050 0.99950025 1.00000000 1.00000000 1.00000000 0.99950025
 [9745] 0.99900050 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9751] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9757] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [9763] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9769] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025
 [9775] 1.00000000 1.00000000 1.00000000 1.00000000 0.99850075 1.00000000
 [9781] 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000
 [9787] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050
 [9793] 1.00000000 1.00000000 0.99950025 1.00000000 1.00000000 0.12493753
 [9799] 0.99900050 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
 [9805] 0.99900050 0.99950025 1.00000000 1.00000000 0.99950025 1.00000000
 [9811] 1.00000000 0.99950025 1.00000000 1.00000000 1.00000000 0.99950025
 [9817] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9823] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9829] 1.00000000 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000
 [9835] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9841] 1.00000000 0.99850075 1.00000000 0.99950025 0.99800100 0.99900050
 [9847] 1.00000000 0.99950025 0.99950025 1.00000000 1.00000000 0.99900050
 [9853] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9859] 1.00000000 1.00000000 0.99950025 0.99950025 0.99900050 1.00000000
 [9865] 1.00000000 1.00000000 1.00000000 0.99900050 1.00000000 0.99850075
 [9871] 1.00000000 1.00000000 0.99900050 1.00000000 1.00000000 1.00000000
 [9877] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9883] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9889] 1.00000000 1.00000000 0.99950025 1.00000000 0.98950525 0.99950025
 [9895] 1.00000000 0.99900050 1.00000000 0.99900050 0.08445777 1.00000000
 [9901] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9907] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9913] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9919] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9925] 1.00000000 1.00000000 1.00000000 1.00000000 0.99950025 1.00000000
 [9931] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9937] 0.99800100 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9943] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9949] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9955] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9961] 0.99950025 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9967] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9973] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9979] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9985] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9991] 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000 1.00000000
 [9997] 1.00000000 1.00000000 1.00000000 0.22038981

CNull documentation built on May 2, 2019, 1:44 p.m.