neural_network 0.0.4 copy "neural_network: ^0.0.4" to clipboard
neural_network: ^0.0.4 copied to clipboard

Dart 1 only

Library for creating artificial neural networks.

example/neural_network.dart

// Copyright (c) 2014, <Alvaro Arcas Garcia>. All rights reserved. Use of this source code
// is governed by a BSD-style license that can be found in the LICENSE file.

library neural_network.example;

import 'package:neural_network/neural_network.dart';

main() {

  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  //////////////////////////////                     DATASET                   /////////////////////////////////////////
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

  //Create a new dataset

  // The first parameter is the title of the dataSet.
  // The second parameter sets the number of attributes of the dataset.
  // The third parameter is optional and indicates the number of class values of the dataset.
  // In this case the dataset is suspervised because it has class values (2).

  DataSet supervisedDataSetExample = new DataSet("SupervisedDataSetTest", 2, numClassValues: 2);

  // For an unsupervised dataset dont use the optional parameter.

  DataSet unsupervisedDataSetExample = new DataSet("UnSupervisedDataSetTest", 2);

  //
  // You can set the labels of the attributes and class values. Be sure that the number of labels is the same as the
  // number of attributes and class values. It is not equal an exception will be throw.
  //

  supervisedDataSetExample.labels = ["First", "Second", "Third", "Fourth"];
  unsupervisedDataSetExample.labels = ["First", "Second"];

  //
  // Adding instances to the dataset. The number of values in the list must be the same as the number of values and class values.
  // If not an exception will be throw.If you add an instance that is already in the dataset, this instance will not be added.
  //

  supervisedDataSetExample.addInstance([1.0,1.1,1.2,1.3]);
  unsupervisedDataSetExample.addInstance([1.0,1.1]);

  //
  // You can set if the new instance for add will be for train or for test.
  //

  supervisedDataSetExample.addInstance([0.0,0.1,0.2,0.3], true); // For train
  unsupervisedDataSetExample.addInstance([0.0,0.1], false); // For test

  //
  // Adding multiple instance. All instance must have the same number of values as the number of attributes and class values
  // of the dataset.
  //

  supervisedDataSetExample.addInstances([[2.0,2.1,2.2,2.3],[3.0,3.1,3.2,3.3]]);
  unsupervisedDataSetExample.addInstances([[2.0,2.1],[3.0,3.1]]);

  //
  // Get all the values for all instances.
  //

  List<List<double>> instancesSupervisedValues = supervisedDataSetExample.instancesValues;
  List<List<double>> instancesUnsupervisedValues = unsupervisedDataSetExample.instancesValues;

  //
  // Get attributes values for an instance. Just provide the index of the instance.
  //

  List<double> instanceAttributesSupervised = supervisedDataSetExample.instanceValues(0);
  List<double> instanceAttributesUnsupervised = unsupervisedDataSetExample.instanceValues(0);

  //
  // Get class values for an instance. Just provide the index of the instance. The dataSet must be supervised.
  //

  List<double> instanceClassValuesSupervised = supervisedDataSetExample.instanceClassValues(0);

  //
  // Set the number of instance for train and the instance for test.
  //

  supervisedDataSetExample.trainTestSet = 2; /// The dataset has 3 instances. 2 will be for train and 1 for test.
  unsupervisedDataSetExample.trainTestSet = 2; /// The dataset has 3 instances. 2 will be for train and 1 for test.

  //
  // Getting all instance used for train.
  //

  List <Instance> trainSupervisedDataSet = supervisedDataSetExample.trainSet;
  List <Instance> trainUnsupervisedDataSet = unsupervisedDataSetExample.trainSet;

  //
  // Getting all instance used for test.
  //

  List <Instance> testSupervisedDataSet = supervisedDataSetExample.testSet;
  List <Instance> testUnsupervisedDataSet = unsupervisedDataSetExample.testSet;

  //
  // Removing instances. You can remove one instance or all instance from the dataSet.
  // For removing one instance just provide the index of that instance.
  //

  supervisedDataSetExample.removeInstance(3);
  unsupervisedDataSetExample.removeInstance(2);

  supervisedDataSetExample.removeAllInstances();
  unsupervisedDataSetExample.removeAllInstances();

  //
  // DataSet info. You can get a lot of information about the dataset.
  //

  supervisedDataSetExample.addInstances([[2.0,2.1,2.2,2.3],[3.0,3.1,3.2,3.3]]);
  unsupervisedDataSetExample.addInstances([[2.0,2.1],[3.0,3.1]]);

  // Get the number of attributes.

  int numAttributesSupervised = supervisedDataSetExample.numValues;
  int numAttributesUnsupervised = unsupervisedDataSetExample.numValues;

  // Get the number of class values. If the number of class values is 0, the dataset will be unsupervised.

  int numClassValuesSupervised = supervisedDataSetExample.numClassValues;
  int numClassValuesUnsupervised = unsupervisedDataSetExample.numClassValues; //Its 0

  // Get if the dataset is supervised. If true, the dataset is supervised, if not the dataset is unsupervised.

  supervisedDataSetExample.isSupervised; //True
  unsupervisedDataSetExample.isSupervised; //False

  // Get the minimum value present in each attribute or class value. If there are no instances it will return an empty array.

  List <double> minValuesSupervised = supervisedDataSetExample.minValues;
  List <double> minValuesUnsupervised = unsupervisedDataSetExample.minValues;

  // Get the maximum value present in each attribute or class value. If there are no instances it will return an empty array.

  List <double> maxValuesSupervised = supervisedDataSetExample.maxValues;
  List <double> maxValuesUnsupervised = unsupervisedDataSetExample.maxValues;

  // Get the mean value in each attribute or class value. If there are no instances it will return an empty array.

  List <double> meanValuesSupervised = supervisedDataSetExample.meanValues;
  List <double> meanValuesUnsupervised = unsupervisedDataSetExample.meanValues;

  // Filters
  //
  // This library constains 2 basic filters that you can apply to a dataset.
  //

  //
  // Normalization filter. If there are no instances it will throw an exception.
  //

  NormalizationFilter normalization = new NormalizationFilter();
  supervisedDataSetExample.instances = normalization.applyFilter(supervisedDataSetExample);
  unsupervisedDataSetExample.instances = normalization.applyFilter(unsupervisedDataSetExample);

  //
  // Randomization filter. If there are no instances it will throw an exception.
  //

  RandomizeFilter random = new RandomizeFilter();
  supervisedDataSetExample.instances = random.applyFilter(supervisedDataSetExample);
  unsupervisedDataSetExample.instances = random.applyFilter(unsupervisedDataSetExample);

  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  //////////////////////////////                    NETWORKS                   /////////////////////////////////////////
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

  // Adaline network.
  // The first parameter determines the number of cells input from the network.
  // The second parameter sets the maximum number of iterations of the network during learning.

  Adaline adalineNetwork = new Adaline(3,100);

  // Learn Process

  // Set the learning rate.

  adalineNetwork.learningRule.learningRate = 0.01;

  // Learn

  adalineNetwork.learningRule.learn(supervisedDataSetExample); //The dataset must be supervised

  // Test your network with the test instance of your dataSet.

  TestingRule testRuleAdaline = new TestingRule(new MeanSquareError(),adalineNetwork);
  testRuleAdaline.test(supervisedDataSetExample);

  List<List<double>>outputNetworkTestAdaline = testRuleAdaline.outputNetworkTest;
  List<double> errorTestAdaline = testRuleAdaline.errorTests;

  // Get the error of all iterations.

  List<double> errorIterationsAdaline = (adalineNetwork.learningRule as BasicLearningRule).errorIterations;

  // Get the outputs of the network in the learn process.

  List<List<double>> outputNetworkTrainAdaline = (adalineNetwork.learningRule as BasicLearningRule).outputNetworkTrain;

  // You can set multiples stop conditions

  adalineNetwork.learningRule.addStopCondition(new MinError(0.01, adalineNetwork.learningRule));
  adalineNetwork.learningRule.addStopCondition(new WeightVariation(0.05, adalineNetwork.learningRule));


  // Simple Perceptron network.
  // The first parameter determines the number of cells input from the network.
  // The second parameter sets the maximum number of iterations of the network during learning.

  Perceptron simplePerceptron = new Perceptron(3,100);

  // Learn Process

  // Set the learning rate.

  simplePerceptron.learningRule.learningRate = 0.01;

  // Learn

  simplePerceptron.learningRule.learn(supervisedDataSetExample); //The dataset must be supervised. The class value has to ve 1.o for one class and -1 for the other.

  // Get the error of all iterations.

  List<double> errorIterationsPerceptron = (simplePerceptron.learningRule as BasicLearningRule).errorIterations;

  // Get the outputs of the network in the learn process.

  List<List<double>> outputNetworkTrainPerceptron = (simplePerceptron.learningRule as BasicLearningRule).outputNetworkTrain;

  // Test your network with the test instance of your dataSet.

  TestingRule testRuleSimplePerceptron = new TestingRule(new MeanSquareError(),simplePerceptron);
  testRuleSimplePerceptron.test(supervisedDataSetExample);

  List<List<double>>outputNetworkTestSimplePerceptron = testRuleSimplePerceptron.outputNetworkTest;
  List<double> errorTestSimplePerceptron = testRuleSimplePerceptron.errorTests;

  // You can set multiples stop conditions to learn process

  simplePerceptron.learningRule.addStopCondition(new MinError(0.01, simplePerceptron.learningRule));
  simplePerceptron.learningRule.addStopCondition(new WeightVariation(0.05, simplePerceptron.learningRule));


  // Multilayer Perceptron
  // The first parameter is a list of integer values. Each value indicates the number of neurons in one layer. The lenght
  // of the list indicates the number of network layers.
  // The second parameter sets the maximum number of iterations of the network during learning.

  MultilayerPerceptron multilayerPerceptron = new MultilayerPerceptron([3,3,3,3,3,1], 100);

  multilayerPerceptron.learningRule.learn(supervisedDataSetExample); //Supervised dataset needed.

  // Get the error of all iterations.

  List<double> errorIterationsMultilayer = (multilayerPerceptron.learningRule as BackPropagationLearningRule).errorIterations;

  // Test your network with the test instance of your dataSet.

  TestingRule testRuleMultilayerPerceptron = new TestingRule(new MeanSquareError(),multilayerPerceptron);
  testRuleMultilayerPerceptron.test(supervisedDataSetExample);

  List<List<double>>outputNetworkTestMultilayerPerceptron = testRuleMultilayerPerceptron.outputNetworkTest;
  List<double> errorTestMultilayerPerceptron = testRuleMultilayerPerceptron.errorTests;

  // Radial base network

  DataSet dataSetTest = new DataSet("TEST", 8,numClassValues: 1);
  List<List<double>> instances = [[0.908675799, 0.0, 0.0, 0.62460063, 0.0, 0.941860465, 0.047666837, 0.0, 0.128441513], [0.291552505, 0.0, 0.590704615, 0.586261947, 0.189440988, 0.660174349, 0.410436492, 0.035714286, 0.249034515], [0.0, 0.425709523, 0.0, 0.560702865, 0.0, 0.25, 0.873055747, 0.074175824, 0.186246435], [0.420776228, 0.558987194, 0.0, 0.182907305, 0.347826076, 0.591860395, 0.526091381, 0.016483516, 0.444375245], [0.202511409, 0.0, 0.626686648, 0.321885016, 0.242236017, 0.840116279, 0.526843986, 0.035714286, 0.233337479], [0.633561644, 0.420701167, 0.0, 0.256389711, 0.493788805, 0.968895491, 0.02759659, 0.005494505, 0.32727047], [0.634703196, 0.264329442, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 1.0, 0.515385599], [0.342009139, 0.0, 0.49925037, 0.194089485, 0.385093156, 0.595930233, 0.767185164, 0.005494505, 0.232839174], [0.502283105, 0.0, 0.0, 0.648562292, 0.0, 0.502906977, 0.516808862, 0.491758242, 0.339603846], [0.337899543, 0.0, 0.0, 0.480830658, 0.0, 0.869186047, 0.56698448, 0.074175824, 0.230970493], [0.341095877, 0.0, 0.591204395, 0.532747593, 0.180124218, 0.661046581, 0.410687461, 0.151098901, 0.431543564], [0.089726034, 0.589872019, 0.0, 0.652555902, 0.0, 0.496511593, 0.387606647, 0.244505495, 0.465055449], [0.48173516, 0.403450202, 0.0, 0.041533523, 0.248447197, 0.578488372, 0.572002041, 0.074175824, 0.525601109], [0.52283105, 0.0, 0.0, 0.560702865, 0.0, 0.651162791, 0.569493261, 0.016483516, 0.188239708], [0.46803653, 0.0, 0.0, 0.568690086, 0.0, 0.485465116, 0.546914233, 0.244505495, 0.38108881], [0.650684932, 0.055648304, 0.469765103, 0.281150143, 0.360248436, 0.398255814, 0.629704002, 0.005494505, 0.404136051], [0.430136973, 0.0, 0.480759591, 0.36980834, 0.291925457, 0.465697709, 0.679879619, 0.005494505, 0.251276947], [0.085844763, 0.582637723, 0.0, 0.560702865, 0.0, 0.715116279, 0.53411951, 0.074175824, 0.322785607], [0.474885845, 0.0, 0.0, 0.560702865, 0.0, 0.613372093, 0.592072289, 0.016483516, 0.185748105], [0.105251155, 0.0, 0.68265868, 0.289936133, 0.499999984, 0.583720895, 0.592323106, 0.074175824, 0.19471782], [0.109589041, 0.658875924, 0.0, 0.415335473, 0.369565206, 0.779942003, 0.202709465, 0.074175824, 0.43727421], [0.639269406, 0.0, 0.0, 0.50479232, 0.0, 0.715116279, 0.363773228, 0.016483516, 0.269963879], [0.228310502, 0.030606567, 0.704647655, 0.672523954, 0.052795029, 0.409883721, 0.519317643, 0.074175824, 0.244674218], [0.101598174, 0.318864774, 0.446276863, 0.639776301, 0.273291917, 0.171511628, 0.590817898, 0.074175824, 0.22000748], [0.908675799, 0.0, 0.0, 0.62460063, 0.0, 0.941860465, 0.047666837, 0.005494505, 0.295627253], [0.526255708, 0.396494164, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 0.244505495, 0.44088703], [0.395205493, 0.0, 0.606696643, 0.301118194, 0.307453407, 0.734302256, 0.460361292, 0.035714286, 0.45396787], [0.399771703, 0.0, 0.486756617, 0.309904185, 0.366459616, 0.502616349, 0.706472637, 0.271978022, 0.664133553], [0.735159817, 0.061213134, 0.659670145, 0.448881776, 0.263975147, 0.235465116, 0.391369818, 0.005494505, 0.369752071], [0.447488584, 0.0, 0.534732618, 0.704472836, 0.341614896, 0.229651163, 0.376317133, 0.074175824, 0.368007995], [0.341095877, 0.0, 0.591204395, 0.532747593, 0.180124218, 0.661046581, 0.410687461, 0.074175824, 0.340351323], [0.152739712, 0.117417923, 0.621189402, 0.291533553, 0.335403716, 0.813372235, 0.507275525, 0.074175824, 0.358664529], [0.095205473, 0.473567056, 0.662668676, 0.557508025, 0.263975147, 0.038081326, 0.530105371, 0.074175824, 0.343092085], [0.132420091, 0.523094054, 0.729635161, 0.648562292, 0.341614896, 0.081395349, 0.291018582, 0.074175824, 0.380092198], [0.182420078, 0.759042828, 0.0, 0.510383351, 0.0, 0.614534953, 0.30180631, 0.016483516, 0.125077865], [0.187214612, 0.239287706, 0.949525209, 0.728434498, 0.186335398, 0.354651163, 0.072754646, 0.074175824, 0.256633867], [0.474885845, 0.0, 0.0, 0.560702865, 0.0, 0.49127907, 0.642247906, 0.986263736, 0.445745632], [0.464155224, 0.56622149, 0.0, 0.652555902, 0.0, 0.477907047, 0.092824893, 0.005494505, 0.147128445], [0.123287671, 0.495269903, 0.934532706, 0.792332263, 0.217391298, 0.154069767, 0.050175618, 0.074175824, 0.337361414], [0.20159818, 0.0, 0.625687123, 0.357827509, 0.307453407, 0.808139535, 0.514049263, 0.005494505, 0.127320297], [0.132420091, 0.695603796, 0.0, 0.36900957, 0.372670796, 0.720930233, 0.235825403, 0.074175824, 0.462439291], [0.420776228, 0.558987194, 0.0, 0.182907305, 0.347826076, 0.591860395, 0.526091381, 0.074175824, 0.814376462], [0.341095877, 0.0, 0.591204395, 0.567891316, 0.180124218, 0.705232488, 0.402157546, 0.035714286, 0.229226367], [0.680365297, 0.0, 0.0, 0.520766762, 0.0, 0.651162791, 0.378825913, 0.016483516, 0.346455708], [0.424657534, 0.534223715, 0.0, 0.560702865, 0.0, 0.380813953, 0.310587043, 0.016483516, 0.26398406], [0.248173509, 0.879521456, 0.0, 0.510383351, 0.0, 0.511627907, 0.239086788, 0.074175824, 0.442008246], [0.594977183, 0.52587647, 0.0, 0.344249138, 0.360248436, 0.417732593, 0.405920717, 0.074175824, 0.859225174], [0.150684932, 0.117139674, 0.818590695, 0.0, 0.177018628, 0.749127765, 0.466884062, 0.271978022, 0.459698529], [0.735159817, 0.061213134, 0.659670145, 0.448881776, 0.263975147, 0.061046512, 0.391369818, 0.151098901, 0.789460553], [0.362785374, 0.279632726, 0.391304351, 0.62939301, 0.267080737, 0.184593023, 0.420220798, 0.074175824, 0.374610723], [0.173515982, 0.361157499, 0.59270362, 0.464057447, 0.111801239, 0.599709267, 0.383341689, 0.035714286, 0.39753336], [0.394977169, 0.500834733, 0.599700132, 0.321086246, 0.322981356, 0.084302326, 0.429001531, 0.074175824, 0.920767408], [0.737442922, 0.295770742, 0.0, 0.25319487, 0.512422344, 0.148546442, 0.735323617, 0.016483516, 0.58390435], [0.248173509, 0.879521456, 0.0, 0.510383351, 0.0, 0.511627907, 0.239086788, 0.016483516, 0.242805537], [0.54109589, 0.0, 0.0, 0.600638968, 0.0, 0.485465116, 0.469142025, 0.074175824, 0.370125847], [0.863013699, 0.0, 0.0, 0.560702865, 0.0, 0.393023291, 0.296537931, 0.244505495, 0.647689066], [0.181278525, 0.0, 0.834582684, 0.38178917, 0.236024837, 0.740116209, 0.461113896, 0.151098901, 0.414102415], [0.146347046, 0.0, 0.816091945, 0.436900945, 0.139751548, 0.74883714, 0.466884062, 0.035714286, 0.288401652], [0.785388128, 0.066777964, 0.394802587, 0.321086246, 0.360248436, 0.48255814, 0.296036144, 0.016483516, 0.460570573], [0.163926947, 0.259877584, 0.799100396, 0.403354642, 0.301242227, 0.59941864, 0.382839903, 0.035714286, 0.339105515], [0.785388128, 0.066777964, 0.394802587, 0.321086246, 0.319875766, 0.48255814, 0.296036144, 0.074175824, 0.636103155], [0.341095877, 0.0, 0.591204395, 0.532747593, 0.198757758, 0.661046581, 0.410687461, 0.074175824, 0.377849766], [0.634703196, 0.264329442, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 0.244505495, 0.476267621], [0.220547959, 0.368391754, 0.0, 0.560702865, 0.0, 0.515697744, 0.580782775, 0.244505495, 0.445247301], [0.625570776, 0.0, 0.0, 0.741214099, 0.0, 0.588662791, 0.422478761, 0.005494505, 0.173788481], [0.54109589, 0.0, 0.0, 0.50479232, 0.0, 0.779069767, 0.401404941, 0.074175824, 0.367634244], [0.047031959, 0.511686135, 0.0, 0.652555902, 0.0, 0.456976779, 0.51705968, 0.074175824, 0.273576698], [0.305936073, 0.0, 0.0, 0.576677306, 0.0, 0.485465116, 0.730055237, 0.244505495, 0.244425084], [0.091095877, 0.463550386, 0.648175878, 0.412939283, 0.338509306, 0.237209233, 0.479929753, 0.074175824, 0.526722338], [0.452054795, 0.0, 0.599700132, 0.720447278, 0.310558997, 0.223837209, 0.336176638, 0.074175824, 0.267970606], [0.395205493, 0.0, 0.606696643, 0.301118194, 0.307453407, 0.734302256, 0.460361292, 0.005494505, 0.267472275], [0.337899543, 0.500834733, 0.474762604, 0.297124584, 0.295031047, 0.171511628, 0.516808862, 0.074175824, 0.816494389], [0.510502297, 0.46299387, 0.0, 0.416932893, 0.276397507, 0.234302256, 0.491721053, 0.074175824, 0.733898137], [0.837899543, 0.326099051, 0.0, 0.12779553, 1.0, 0.148546442, 0.618414488, 0.016483516, 0.654914704], [0.116438356, 0.283806349, 0.0, 0.560702865, 0.0, 0.252906977, 0.875815346, 0.244505495, 0.298866334], [0.335844763, 0.0, 0.493753124, 0.289936133, 0.397515516, 0.543023221, 0.740090361, 0.151098901, 0.49458079], [0.48173516, 0.447968844, 0.0, 0.448881776, 0.310558997, 0.337209302, 0.413948846, 0.074175824, 0.624268098], [0.9543379, 0.0, 0.0, 0.384984011, 0.161490678, 0.156976744, 0.654791811, 0.074175824, 0.721938463], [0.255251148, 0.272954924, 0.122438777, 0.478434468, 0.208074528, 0.770348837, 0.480431539, 0.271978022, 0.593496975], [0.093607306, 0.471341115, 0.713143392, 0.550319454, 0.260869557, 0.483721, 0.124184654, 0.074175824, 0.341347959], [0.374429224, 0.317195331, 0.0, 0.848242808, 0.0, 0.380813953, 0.190667347, 0.074175824, 0.542170164], [0.442465726, 0.0, 0.0, 0.510383351, 0.0, 0.844186116, 0.439789259, 0.074175824, 0.285162571], [0.228310502, 0.030606567, 0.704647655, 0.672523954, 0.052795029, 0.409883721, 0.519317643, 0.005494505, 0.093683819], [0.452054795, 0.0, 0.0, 0.4968051, 0.0, 0.796511628, 0.504264958, 0.074175824, 0.30546905], [0.0, 0.425709523, 0.0, 0.560702865, 0.0, 0.25, 0.873055747, 0.005494505, 0.027905819], [0.785388128, 0.066777964, 0.394802587, 0.321086246, 0.360248436, 0.48255814, 0.296036144, 0.016483516, 0.618911165], [0.291552505, 0.0, 0.590704615, 0.586261947, 0.189440988, 0.660174349, 0.410436492, 0.074175824, 0.276691187], [0.141552511, 0.453533675, 0.639680141, 0.600638968, 0.248447197, 0.465116279, 0.117912702, 0.074175824, 0.310203072], [0.563926941, 0.0, 0.0, 0.560702865, 0.0, 0.74127907, 0.53938789, 0.074175824, 0.389684836], [0.980136959, 0.0, 0.0, 0.159744413, 0.875776401, 0.148546442, 0.751881661, 0.247252747, 0.708483897], [0.430136973, 0.0, 0.480759591, 0.36980834, 0.291925457, 0.465697709, 0.679879619, 0.035714286, 0.402890231], [0.399771703, 0.0, 0.486756617, 0.309904185, 0.366459616, 0.502616349, 0.706472637, 0.074175824, 0.572443007], [0.566210046, 0.0, 0.0, 0.512779541, 0.0, 0.723837209, 0.441545436, 0.016483516, 0.2236203], [0.335844763, 0.0, 0.493753124, 0.289936133, 0.397515516, 0.543023221, 0.740090361, 0.035714286, 0.328267107], [0.657305922, 0.52587647, 0.0, 0.192491946, 0.683229792, 0.417732593, 0.405920717, 0.074175824, 0.899090592], [0.173515982, 0.361157499, 0.59270362, 0.464057447, 0.111801239, 0.599709267, 0.383341689, 0.151098901, 0.576304985], [0.461187215, 0.389538126, 0.0, 0.736421719, 0.186335398, 0.273255814, 0.321123953, 0.074175824, 0.387317787], [0.646118721, 0.0, 0.0, 0.512779541, 0.0, 0.479651163, 0.423983969, 0.0, 0.049084342], [0.633561644, 0.420701167, 0.0, 0.256389711, 0.493788805, 0.968895491, 0.02759659, 0.016483516, 0.557742608], [0.965753425, 0.0, 0.0, 0.536741203, 0.0, 0.941860465, 0.047666837, 0.035714286, 0.573937999], [0.785388128, 0.066777964, 0.394802587, 0.321086246, 0.360248436, 0.48255814, 0.296036144, 0.005494505, 0.261866208], [0.46347032, 0.0, 0.49975011, 0.592651747, 0.310558997, 0.459302326, 0.278474678, 0.074175824, 0.346206574], [0.152739712, 0.117417923, 0.621189402, 0.291533553, 0.335403716, 0.813372235, 0.507275525, 0.035714286, 0.263859481], [0.888127854, 0.072342795, 0.614692635, 0.632587851, 0.121118009, 0.061046512, 0.263421993, 0.151098901, 0.741622057], [0.494977142, 0.591263226, 0.0, 0.270766732, 0.444099365, 0.148546442, 0.718514905, 0.151098901, 0.794443747], [0.350456621, 0.473845314, 0.0, 0.510383351, 0.0, 0.655813884, 0.326894119, 0.016483516, 0.185748105], [0.149315055, 0.361435716, 0.642678671, 0.428913724, 0.242236017, 0.596802291, 0.382839903, 0.271978022, 0.639466815], [0.150684932, 0.117139674, 0.818590695, 0.0, 0.177018628, 0.749127765, 0.466884062, 0.035714286, 0.192973719], [0.280821918, 0.0, 0.0, 0.472843438, 0.0, 0.906976744, 0.599598631, 0.074175824, 0.1869939], [0.223744292, 0.370061219, 0.0, 0.560702865, 0.0, 0.477907047, 0.532363334, 0.016483516, 0.184876048], [0.579908676, 0.0, 0.709645156, 0.568690086, 0.341614896, 0.0, 0.461615683, 0.074175824, 0.480129562], [0.271232884, 0.409571507, 0.0, 0.510383351, 0.0, 0.738372093, 0.377069737, 0.016483516, 0.134047593], [0.399771703, 0.0, 0.486756617, 0.309904185, 0.366459616, 0.502616349, 0.706472637, 0.151098901, 0.606826987], [0.54109589, 0.0, 0.0, 0.600638968, 0.0, 0.485465116, 0.469142025, 0.244505495, 0.409119208], [0.220547959, 0.368391754, 0.0, 0.560702865, 0.0, 0.515697744, 0.580782775, 0.491758242, 0.490718849], [0.111872146, 0.0, 0.919540202, 0.361022349, 0.372670796, 0.552325581, 0.446562997, 0.074175824, 0.16494332], [0.541552539, 0.0, 0.0, 0.510383351, 0.0, 0.77965102, 0.402157546, 0.016483516, 0.234832446], [0.360502269, 0.279910962, 0.391804096, 0.389776391, 0.322981356, 0.391569802, 0.423733151, 0.074175824, 0.591005372], [0.363013699, 0.278241518, 0.389805086, 0.632587851, 0.279503097, 0.183139535, 0.418966408, 0.074175824, 0.374610723], [0.255022824, 0.272954924, 0.122438777, 0.478434468, 0.214285708, 0.769767584, 0.480180721, 0.151098901, 0.603463326], [0.874429224, 0.0, 0.0, 0.193290715, 0.0, 0.927325581, 0.516808862, 0.074175824, 0.8678211], [0.182420078, 0.759042828, 0.0, 0.510383351, 0.0, 0.614534953, 0.30180631, 0.074175824, 0.319048233], [0.851598174, 0.0, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 0.491758242, 0.501930983], [0.851598174, 0.0, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 1.0, 0.493335007], [0.664383562, 0.0, 0.0, 0.560702865, 0.0, 0.404069767, 0.411440065, 0.074175824, 0.464058838], [0.115525128, 0.664162496, 0.0, 0.62460063, 0.195652168, 0.583720895, 0.225539462, 0.074175824, 0.305593642], [0.202511409, 0.0, 0.626686648, 0.321885016, 0.242236017, 0.840116279, 0.526843986, 0.005494505, 0.158340604], [0.566210046, 0.0, 0.0, 0.648562292, 0.0, 0.502906977, 0.45408934, 0.035714286, 0.251650698], [0.399543379, 0.0, 0.0, 0.552715644, 0.0, 0.485465116, 0.657300592, 0.986263736, 0.390806052], [0.482420064, 0.729549294, 0.0, 0.428913724, 0.267080737, 0.714825651, 0.04465627, 0.074175824, 0.715958645], [0.526255708, 0.396494164, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 1.0, 0.482371994], [0.338356158, 0.464106861, 0.0, 0.652555902, 0.0, 0.513372023, 0.251128906, 0.074175824, 0.431418959], [0.461187215, 0.211463554, 0.0, 0.848242808, 0.0, 0.380813953, 0.190667347, 0.244505495, 0.583779745], [0.908904123, 0.0, 0.0, 0.62460063, 0.093167699, 0.940116349, 0.048168623, 0.074175824, 0.52074252], [0.735159817, 0.061213134, 0.659670145, 0.36900957, 0.276397507, 0.061046512, 0.391369818, 0.151098901, 0.897346491], [0.111643822, 0.0, 0.919040422, 0.357827509, 0.360248436, 0.552907012, 0.447064784, 0.074175824, 0.16494332], [0.070776256, 0.556483037, 0.0, 0.560702865, 0.0, 0.36744193, 0.615153103, 0.005494505, 0.056683694], [0.769406393, 0.492487487, 0.0, 0.512779541, 0.344720486, 0.243895419, 0.285750203, 0.016483516, 0.6698642], [0.106164384, 0.38786866, 0.542728609, 0.566293895, 0.189440988, 0.265697744, 0.466633244, 0.074175824, 0.266226505], [0.095890411, 0.041736228, 0.974512714, 0.432907335, 0.186335398, 0.639534884, 0.288509802, 0.074175824, 0.162077991], [0.086073053, 0.456037832, 0.638180875, 0.917731603, 0.180124218, 0.196511558, 0.154540842, 0.074175824, 0.40986671], [0.389954311, 0.506121305, 0.0, 0.510383351, 0.0, 0.614534953, 0.30180631, 0.016483516, 0.21726673], [0.111872146, 0.0, 0.924537703, 0.361022349, 0.496894395, 0.793604651, 0.210737594, 0.074175824, 0.138657036], [0.105251155, 0.0, 0.91004498, 0.476038278, 0.465838495, 0.110174488, 0.72829906, 0.074175824, 0.164445002], [0.143835616, 0.357540351, 0.660169925, 0.425718884, 0.251552787, 0.595348802, 0.382839903, 0.035714286, 0.383206687], [0.338356158, 0.464106861, 0.0, 0.652555902, 0.0, 0.513372023, 0.251128906, 0.005494505, 0.092188865], [0.20890411, 0.807456919, 0.0, 0.510383351, 0.0, 0.573255849, 0.276718501, 0.074175824, 0.37747604], [0.577625571, 0.052865888, 0.484757607, 0.185303495, 0.406832286, 0.48255814, 0.694932305, 0.074175824, 0.519496699], [0.360730594, 0.281023933, 0.389805086, 0.392971231, 0.310558997, 0.39244186, 0.423983969, 0.074175824, 0.591005372], [0.474885845, 0.0, 0.0, 0.560702865, 0.0, 0.49127907, 0.642247906, 0.016483516, 0.157717707], [0.888127854, 0.072342795, 0.614692635, 0.704472836, 0.121118009, 0.235465116, 0.263421993, 0.005494505, 0.290021198], [0.147945212, 0.69616027, 0.0, 0.652555902, 0.0, 0.50755807, 0.247365735, 0.074175824, 0.393920541], [0.566210046, 0.0, 0.0, 0.648562292, 0.0, 0.502906977, 0.45408934, 0.016483516, 0.196835672], [0.211643829, 0.0, 0.502248861, 0.386581431, 0.232919247, 0.572674419, 0.772202726, 0.005494505, 0.122710854], [0.148401826, 0.20979411, 0.834582684, 0.337060687, 0.245341607, 0.599709267, 0.441796253, 0.151098901, 0.636975212], [0.077625571, 0.545353376, 0.489755108, 0.616613409, 0.186335398, 0.13372093, 0.474159587, 0.074175824, 0.306963992], [0.143835616, 0.0, 0.717641188, 0.335463267, 0.0, 0.594767372, 0.769944913, 0.271978022, 0.443876914], [0.464155224, 0.56622149, 0.0, 0.652555902, 0.0, 0.477907047, 0.092824893, 0.244505495, 0.651177268], [0.310730607, 0.0, 0.470264843, 0.518370572, 0.217391298, 0.432848907, 0.634721564, 0.035714286, 0.291017835], [0.251141553, 0.393155274, 0.0, 0.652555902, 0.0, 0.50116286, 0.391369818, 0.005494505, 0.055811637], [0.220547959, 0.368391754, 0.0, 0.560702865, 0.0, 0.515697744, 0.580782775, 0.986263736, 0.522860347], [0.673515982, 0.0, 0.0, 0.510383351, 0.0, 0.696511558, 0.351981928, 0.016483516, 0.288027925], [0.737442922, 0.295770742, 0.0, 0.25319487, 0.512422344, 0.148546442, 0.735323617, 0.247252747, 0.783231576], [0.314155265, 1.0, 0.0, 0.510383351, 0.0, 0.40872086, 0.176367266, 0.016483516, 0.287654174], [0.445205479, 0.0, 0.0, 0.512779541, 0.0, 0.694767442, 0.351229324, 0.016483516, 0.356671231], [0.163242009, 0.139398995, 0.867066441, 0.343450487, 0.201863348, 0.596511663, 0.500501786, 0.005494505, 0.25850256], [0.621004566, 0.0, 0.0, 0.544728424, 0.217391298, 0.61627907, 0.3411942, 0.074175824, 0.457456085], [0.639269406, 0.0, 0.0, 0.512779541, 0.0, 0.901162791, 0.476668368, 0.016483516, 0.113865706], [0.301369863, 0.434056769, 0.0, 0.536741203, 0.183229808, 0.523255814, 0.416457627, 0.074175824, 0.460570573], [0.623287671, 0.0, 0.0, 0.512779541, 0.0, 0.688953488, 0.411440065, 0.074175824, 0.446991403], [0.255251148, 0.272954924, 0.122438777, 0.478434468, 0.208074528, 0.770348837, 0.480431539, 0.035714286, 0.193222878], [0.074657527, 0.0, 0.828085917, 0.466453637, 0.310558997, 0.465116279, 0.529101949, 0.074175824, 0.136539184], [0.305936073, 0.0, 0.0, 0.576677306, 0.0, 0.485465116, 0.730055237, 0.005494505, 0.051575933], [0.342465753, 0.0, 0.0, 0.50479232, 0.0, 0.901162791, 0.476668368, 0.074175824, 0.216270106], [0.107305936, 0.328324992, 0.459770101, 0.488817879, 0.217391298, 0.441860465, 0.466633244, 0.074175824, 0.26398406], [0.349315068, 0.275459103, 0.384807585, 0.536741203, 0.186335398, 0.343023256, 0.388861037, 0.074175824, 0.392051822], [0.46803653, 0.0, 0.0, 0.568690086, 0.0, 0.485465116, 0.546914233, 0.005494505, 0.127195718], [0.664383562, 0.0, 0.0, 0.560702865, 0.0, 0.404069767, 0.411440065, 0.005494505, 0.209044493], [0.113242023, 0.0, 0.559220383, 0.49999994, 0.245341607, 0.555232558, 0.556698538, 0.074175824, 0.122710854], [0.335844763, 0.0, 0.493753124, 0.289936133, 0.397515516, 0.543023221, 0.740090361, 0.005494505, 0.16232715], [0.445662128, 0.0, 0.587206379, 0.423322694, 0.295031047, 0.644767407, 0.400150551, 0.074175824, 0.561480044], [0.737442922, 0.295770742, 0.0, 0.236421659, 0.577639734, 0.39244186, 0.526091381, 0.016483516, 0.554005234], [0.143835616, 0.0, 0.717641188, 0.335463267, 0.0, 0.594767372, 0.769944913, 0.035714286, 0.181263229], [0.309360731, 0.660823606, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 0.074175824, 0.345708243], [0.130136986, 0.414579862, 0.579710128, 0.424920114, 0.465838495, 0.441860465, 0.316106391, 0.074175824, 0.315809152], [0.337899543, 0.0, 0.47826084, 0.523961602, 0.170807448, 0.453197744, 0.670346282, 0.271978022, 0.498567323], [0.150684932, 0.117139674, 0.818590695, 0.0, 0.177018628, 0.749127765, 0.466884062, 0.151098901, 0.380216753], [0.735159817, 0.061213134, 0.659670145, 0.36900957, 0.276397507, 0.061046512, 0.391369818, 0.074175824, 0.869191475], [0.625570776, 0.0, 0.0, 0.741214099, 0.0, 0.588662791, 0.422478761, 0.035714286, 0.290145778], [0.399543379, 0.324986102, 0.4547726, 0.549520804, 0.217391298, 0.422965116, 0.179628651, 0.074175824, 0.513890657], [0.116438356, 0.403450202, 0.564717624, 0.448881776, 0.248447197, 0.584302326, 0.238334184, 0.074175824, 0.289398276], [0.094977183, 0.0, 0.874062912, 0.292332203, 0.555900604, 0.41191864, 0.628449611, 0.074175824, 0.163074627], [0.594977183, 0.52587647, 0.0, 0.344249138, 0.360248436, 0.417732593, 0.405920717, 0.005494505, 0.410738754], [0.251141553, 0.393155274, 0.0, 0.652555902, 0.0, 0.50116286, 0.391369818, 0.016483516, 0.158216025], [0.130365311, 0.519476906, 0.0, 0.429712494, 0.350931666, 0.548255744, 0.488961454, 0.074175824, 0.379220142], [0.506164411, 0.78686698, 0.0, 0.49520768, 0.319875766, 0.41191864, 0.16532872, 0.005494505, 0.323533071], [0.500913228, 0.0, 0.639180401, 0.484824269, 0.357142846, 0.200872023, 0.46588064, 0.074175824, 0.435280938], [0.908675799, 0.0, 0.0, 0.62460063, 0.0, 0.941860465, 0.047666837, 0.016483516, 0.384701629], [0.337899543, 0.0, 0.47826084, 0.559105445, 0.164596268, 0.42994193, 0.660311159, 0.271978022, 0.483742382], [0.099771683, 0.480244877, 0.0, 0.480031888, 0.105590059, 0.537209267, 0.558956351, 0.074175824, 0.26672481], [0.586757991, 0.052865888, 0.704647655, 0.257188481, 0.338509306, 0.409883721, 0.519317643, 0.016483516, 0.416344847], [0.538584461, 0.52587647, 0.0, 0.424121344, 0.295031047, 0.417732593, 0.405920717, 0.016483516, 0.408247151], [0.330593614, 0.0, 0.625187378, 0.171725244, 0.372670796, 0.830814096, 0.519066825, 0.035714286, 0.496947826], [0.503424658, 0.413466913, 0.0, 0.511182121, 0.263975147, 0.436046512, 0.289764192, 0.074175824, 0.624143531], [0.252511429, 0.0, 0.50174912, 0.300319424, 0.322981356, 0.589534849, 0.777220288, 0.005494505, 0.137037502], [0.132420091, 0.356149143, 0.609695134, 0.480830658, 0.198757758, 0.066860465, 0.715002552, 0.074175824, 0.461816406], [0.494977142, 0.591263226, 0.0, 0.270766732, 0.444099365, 0.148546442, 0.718514905, 0.074175824, 0.662389452], [0.52283105, 0.0, 0.0, 0.560702865, 0.0, 0.651162791, 0.569493261, 0.244505495, 0.443254029], [0.310730607, 0.0, 0.470264843, 0.518370572, 0.217391298, 0.432848907, 0.634721564, 0.005494505, 0.219260003], [0.400000027, 0.272120213, 0.122438777, 0.310702835, 0.347826076, 0.757848695, 0.472905197, 0.271978022, 0.805032996], [0.181278525, 0.0, 0.834582684, 0.38178917, 0.236024837, 0.740116209, 0.461113896, 0.074175824, 0.316930368], [0.445662128, 0.0, 0.587206379, 0.423322694, 0.295031047, 0.644767407, 0.400150551, 0.035714286, 0.431792735], [0.23173516, 0.849471322, 0.0, 0.652555902, 0.0, 0.472093093, 0.090316112, 0.244505495, 0.617042509], [0.100228297, 0.6413467, 0.0, 0.644568682, 0.105590059, 0.075581395, 0.696939299, 0.074175824, 0.378597256], [0.25456621, 0.0, 0.870564677, 0.261980861, 0.363354026, 0.730523398, 0.45534373, 0.005494505, 0.187367651], [0.5, 0.0, 0.639680141, 0.480830658, 0.341614896, 0.200581395, 0.466633244, 0.074175824, 0.435156333], [0.563926941, 0.0, 0.0, 0.560702865, 0.0, 0.715116279, 0.531861547, 0.244505495, 0.462937622], [0.586757991, 0.052865888, 0.704647655, 0.257188481, 0.338509306, 0.409883721, 0.519317643, 0.005494505, 0.2839168], [0.252511429, 0.0, 0.50174912, 0.300319424, 0.322981356, 0.589534849, 0.777220288, 0.035714286, 0.287031289], [0.03196347, 0.481357827, 0.0, 0.560702865, 0.0, 0.316279035, 0.747365885, 0.244505495, 0.357418721], [0.085844763, 0.582637723, 0.0, 0.560702865, 0.0, 0.715116279, 0.53411951, 0.491758242, 0.521739131], [0.098173516, 0.322760161, 0.594702631, 0.4968051, 0.177018628, 0.093023256, 0.717511333, 0.074175824, 0.334246925], [0.691780822, 0.0, 0.0, 0.424920114, 0.0, 0.927325581, 0.253386869, 0.074175824, 0.622523985], [0.25456621, 0.0, 0.870564677, 0.298722004, 0.363354026, 0.705232488, 0.446312179, 0.271978022, 0.630746235], [0.415525114, 0.041736228, 0.704647655, 0.456868997, 0.170807448, 0.119186047, 0.519317643, 0.005494505, 0.137909559], [0.488812799, 0.586254871, 0.0, 0.510383351, 0.0, 0.511627907, 0.239086788, 0.074175824, 0.453095825], [0.594977183, 0.52587647, 0.0, 0.344249138, 0.360248436, 0.417732593, 0.405920717, 0.151098901, 0.933972902], [0.52283105, 0.0, 0.0, 0.560702865, 0.0, 0.226744186, 0.579528384, 0.005494505, 0.139404513], [0.266894963, 0.0, 0.620189876, 0.293130973, 0.350931666, 0.807267299, 0.50401414, 0.151098901, 0.435280938], [0.442922374, 0.0, 0.0, 0.560702865, 0.0, 0.825581395, 0.429001531, 0.074175824, 0.240687685], [0.085844763, 0.582637723, 0.0, 0.560702865, 0.0, 0.715116279, 0.53411951, 0.244505495, 0.461318076], [0.735159817, 0.061213134, 0.659670145, 0.36900957, 0.276397507, 0.061046512, 0.391369818, 0.016483516, 0.472903973], [0.211643829, 0.0, 0.502248861, 0.349840288, 0.232919247, 0.597093093, 0.782488818, 0.271978022, 0.436152995], [0.54109589, 0.0, 0.0, 0.600638968, 0.0, 0.485465116, 0.469142025, 1.0, 0.455462812], [0.634703196, 0.0, 0.0, 0.848242808, 0.0, 0.380813953, 0.190667347, 0.491758242, 0.632490336], [0.538584461, 0.52587647, 0.0, 0.424121344, 0.295031047, 0.417732593, 0.405920717, 0.074175824, 0.592624931], [0.502283105, 0.0, 0.579710128, 0.592651747, 0.310558997, 0.049418605, 0.549423014, 0.074175824, 0.359411994], [0.980136959, 0.0, 0.0, 0.159744413, 0.875776401, 0.148546442, 0.751881661, 0.005494505, 0.485486483], [0.147945212, 0.69616027, 0.0, 0.652555902, 0.0, 0.50755807, 0.247365735, 0.005494505, 0.056932853], [0.11666668, 0.403450202, 0.564717624, 0.452875386, 0.248447197, 0.192441895, 0.577019603, 0.074175824, 0.297745118], [0.251141553, 0.0, 0.623688152, 0.297124584, 0.242236017, 0.826744256, 0.515554472, 0.035714286, 0.361529846], [0.512557078, 0.0, 0.689155372, 0.616613409, 0.335403716, 0.000290628, 0.497993005, 0.074175824, 0.452223769], [0.0, 0.425709523, 0.0, 0.560702865, 0.0, 0.25, 0.873055747, 0.016483516, 0.066650058], [0.447716909, 0.0, 0.537231368, 0.333865847, 0.397515516, 0.442441895, 0.476668368, 0.074175824, 0.417839789], [0.20159818, 0.0, 0.625687123, 0.320287476, 0.307453407, 0.834592953, 0.523331632, 0.005494505, 0.088700638], [0.785388128, 0.066777964, 0.394802587, 0.321086246, 0.360248436, 0.48255814, 0.296036144, 0.005494505, 0.282670992], [0.266894963, 0.0, 0.620189876, 0.293130973, 0.350931666, 0.807267299, 0.50401414, 0.271978022, 0.546904212], [0.650684932, 0.055648304, 0.469765103, 0.281150143, 0.444099365, 0.398255814, 0.629704002, 0.005494505, 0.254391435], [0.54109589, 0.0, 0.0, 0.50479232, 0.0, 0.752906977, 0.401404941, 0.074175824, 0.365267232], [0.737442922, 0.295770742, 0.0, 0.25319487, 0.512422344, 0.148546442, 0.735323617, 0.016483516, 0.58390435], [0.12876711, 0.0, 0.974012934, 0.781948853, 0.341614896, 0.281104686, 0.298294107, 0.074175824, 0.077363899], [0.265296797, 0.151919863, 0.618690651, 0.151757192, 0.369565206, 0.798546369, 0.498494792, 0.035714286, 0.418961005], [0.426940639, 0.0, 0.0, 0.560702865, 0.0, 0.326162826, 0.75589565, 0.016483516, 0.152859104], [0.566210046, 0.0, 0.0, 0.512779541, 0.0, 0.723837209, 0.441545436, 0.074175824, 0.398156245], [0.406392694, 0.358931559, 0.49975011, 0.400958452, 0.279503097, 0.069767442, 0.529352766, 0.074175824, 0.629002134], [0.634703196, 0.264329442, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 0.491758242, 0.478759175], [1.0, 0.0, 0.0, 0.408945673, 0.0, 0.941860465, 0.047666837, 0.016483516, 0.626385975], [0.460273986, 0.389259867, 0.0, 0.732428109, 0.192546578, 0.274709302, 0.322378344, 0.074175824, 0.387317787], [0.447488584, 0.0, 0.534732618, 0.337060687, 0.403726696, 0.441860465, 0.476668368, 0.074175824, 0.417715234], [0.255022824, 0.272954924, 0.122438777, 0.478434468, 0.214285708, 0.769767584, 0.480180721, 0.035714286, 0.349570197], [0.146118721, 0.723427948, 0.0, 0.488817879, 0.403726696, 0.168604651, 0.584545946, 0.074175824, 0.443254029], [0.769406393, 0.492487487, 0.0, 0.512779541, 0.344720486, 0.243895419, 0.285750203, 0.074175824, 0.793197977], [0.371004566, 0.308848085, 0.432283845, 0.588658137, 0.183229808, 0.091860395, 0.492724626, 0.074175824, 0.488476417], [0.305936073, 0.0, 0.0, 0.576677306, 0.0, 0.485465116, 0.730055237, 0.035714286, 0.130933104], [0.594977183, 0.52587647, 0.0, 0.344249138, 0.360248436, 0.417732593, 0.405920717, 0.016483516, 0.667372659], [0.95890411, 0.0, 0.0, 0.193290715, 0.0, 0.276162791, 0.757651827, 0.074175824, 0.905194965], [0.116438356, 0.283806349, 0.0, 0.560702865, 0.0, 0.252906977, 0.875815346, 0.074175824, 0.19471782], [0.076940632, 0.56622149, 0.0, 0.510383351, 0.0, 0.799999858, 0.41470145, 0.016483516, 0.064532205], [0.664383562, 0.0, 0.0, 0.560702865, 0.0, 0.405813884, 0.480682357, 0.244505495, 0.579544028], [0.146347046, 0.0, 0.816091945, 0.436900945, 0.139751548, 0.74883714, 0.466884062, 0.074175824, 0.239317323], [0.541552539, 0.0, 0.0, 0.510383351, 0.0, 0.77965102, 0.402157546, 0.074175824, 0.368381721], [0.794748872, 0.139120759, 0.0, 0.62460063, 0.093167699, 0.940116349, 0.048168623, 0.074175824, 0.461567235], [0.251369877, 0.0, 0.607696124, 0.467252407, 0.177018628, 0.745930163, 0.464877068, 0.271978022, 0.464432564], [0.394977169, 0.0, 0.0, 0.488817879, 0.0, 0.834302326, 0.536879109, 0.074175824, 0.276192856], [0.965753425, 0.0, 0.0, 0.536741203, 0.0, 0.941860465, 0.047666837, 0.244505495, 0.703251531], [0.888127854, 0.072342795, 0.614692635, 0.704472836, 0.121118009, 0.235465116, 0.263421993, 0.074175824, 0.663012337], [0.130136986, 0.520311639, 0.0, 0.432907335, 0.341614896, 0.549418605, 0.489212272, 0.074175824, 0.379095537], [0.211643829, 0.0, 0.502248861, 0.349840288, 0.232919247, 0.597093093, 0.782488818, 0.074175824, 0.291391548], [0.851598174, 0.0, 0.294852565, 0.161341833, 0.059006209, 0.863372093, 0.117912702, 0.074175824, 0.683941714], [0.200913242, 0.528658885, 0.0, 0.848242808, 0.0, 0.380813953, 0.190667347, 1.0, 0.639840542], [0.310730607, 0.0, 0.470264843, 0.518370572, 0.217391298, 0.432848907, 0.634721564, 0.151098901, 0.464183393], [0.265296797, 0.151919863, 0.618690651, 0.151757192, 0.369565206, 0.798546369, 0.498494792, 0.005494505, 0.312570084], [0.464155224, 0.56622149, 0.0, 0.652555902, 0.0, 0.477907047, 0.092824893, 0.016483516, 0.293509401], [0.075342466, 0.0, 0.829585183, 0.464856217, 0.310558997, 0.465116279, 0.529352766, 0.074175824, 0.136539184], [0.125570776, 0.656649983, 0.0, 0.560702865, 0.0, 0.390697744, 0.469643812, 0.074175824, 0.390307721], [0.785388128, 0.066777964, 0.394802587, 0.321086246, 0.360248436, 0.48255814, 0.296036144, 0.151098901, 0.659274963], [0.44223747, 0.0, 0.477761095, 0.396964842, 0.276397507, 0.447965047, 0.66532872, 0.005494505, 0.256883039], [0.769406393, 0.492487487, 0.0, 0.512779541, 0.344720486, 0.243895419, 0.285750203, 0.005494505, 0.460570573], [0.837899543, 0.326099051, 0.0, 0.12779553, 1.0, 0.148546442, 0.618414488, 0.005494505, 0.471782757], [0.484018265, 0.0, 0.564717624, 0.384984011, 0.310558997, 0.360465116, 0.474159587, 0.074175824, 0.450105891], [0.251369877, 0.0, 0.607696124, 0.467252407, 0.177018628, 0.745930163, 0.464877068, 0.005494505, 0.126323661], [0.374429224, 0.317195331, 0.0, 0.848242808, 0.0, 0.380813953, 0.190667347, 1.0, 0.630123349], [0.129680372, 0.662771288, 0.0, 0.510383351, 0.0, 0.696511558, 0.351981928, 0.016483516, 0.09081849], [0.23173516, 0.377573732, 0.0, 0.510383351, 0.0, 0.799999858, 0.41470145, 0.074175824, 0.252896468], [0.347031963, 0.0, 0.0, 0.608626189, 0.0, 0.485465116, 0.674862058, 0.005494505, 0.086956524], [0.44223747, 0.0, 0.477761095, 0.396964842, 0.276397507, 0.447965047, 0.66532872, 0.151098901, 0.577924532], [0.102739726, 0.319977746, 0.444777598, 0.640575071, 0.279503097, 0.171511628, 0.589563508, 0.074175824, 0.22000748], [0.310730607, 0.0, 0.0, 0.510383351, 0.0, 0.923837352, 0.489964876, 0.074175824, 0.189983809], [0.529680365, 0.048970507, 0.789605174, 0.536741203, 0.475155265, 0.48255814, 0.097842454, 0.074175824, 0.523234123], [0.310730607, 0.0, 0.470264843, 0.518370572, 0.217391298, 0.432848907, 0.634721564, 0.271978022, 0.522860347], [0.211643829, 0.0, 0.502248861, 0.349840288, 0.232919247, 0.597093093, 0.782488818, 0.035714286, 0.282297254], [0.114155251, 0.0, 0.559720123, 0.4968051, 0.248447197, 0.555232558, 0.556949356, 0.074175824, 0.122710854], [0.415525114, 0.041736228, 0.704647655, 0.456868997, 0.170807448, 0.119186047, 0.519317643, 0.151098901, 0.525601109], [0.837899543, 0.326099051, 0.0, 0.12779553, 1.0, 0.148546442, 0.618414488, 0.247252747, 0.851750326], [0.566210046, 0.0, 0.0, 0.648562292, 0.0, 0.502906977, 0.45408934, 0.074175824, 0.311573447], [0.23173516, 0.849471322, 0.0, 0.652555902, 0.0, 0.472093093, 0.090316112, 0.074175824, 0.490220518], [0.310958897, 0.441847539, 0.0, 0.510383351, 0.0, 0.696511558, 0.351981928, 0.016483516, 0.166438275], [0.03196347, 0.481357827, 0.0, 0.560702865, 0.0, 0.316279035, 0.747365885, 0.074175824, 0.249408253], [0.25456621, 0.0, 0.870564677, 0.261980861, 0.363354026, 0.730523398, 0.45534373, 0.074175824, 0.543291393], [0.594977183, 0.52587647, 0.0, 0.344249138, 0.360248436, 0.417732593, 0.405920717, 0.005494505, 0.410738754], [0.566210046, 0.0, 0.0, 0.648562292, 0.0, 0.502906977, 0.45408934, 0.244505495, 0.361529846], [0.349315068, 0.0, 0.0, 0.560702865, 0.0, 0.2581395, 0.88058209, 0.074175824, 0.204559616], [0.121004566, 0.509181978, 0.0, 0.568690086, 0.279503097, 0.715116279, 0.258404431, 0.074175824, 0.19870439], [0.415525114, 0.333889822, 0.0, 0.36900957, 0.217391298, 0.49127907, 0.501756177, 0.074175824, 0.480877052], [0.200913242, 0.528658885, 0.0, 0.848242808, 0.0, 0.380813953, 0.190667347, 0.491758242, 0.55562478], [0.20159818, 0.0, 0.625687123, 0.357827509, 0.307453407, 0.808139535, 0.514049263, 0.035714286, 0.212906446], [0.252283105, 0.0, 0.50174912, 0.299520774, 0.270186327, 0.601162756, 0.776718501, 0.151098901, 0.501058926], [0.068493151, 0.575959943, 0.804597677, 0.456868997, 0.155279498, 0.191860465, 0.356246885, 0.074175824, 0.385822845], [0.255022824, 0.0, 0.873063427, 0.263578281, 0.316770176, 0.734011628, 0.457601693, 0.035714286, 0.391179778], [1.0, 0.0, 0.0, 0.408945673, 0.0, 0.941860465, 0.047666837, 0.244505495, 0.838794141], [0.415525114, 0.041736228, 0.704647655, 0.456868997, 0.170807448, 0.119186047, 0.519317643, 0.074175824, 0.515759325], [0.274885831, 0.0, 0.483258341, 0.539137393, 0.139751548, 0.482848767, 0.693176128, 0.035714286, 0.275569971], [0.202511409, 0.0, 0.626686648, 0.321885016, 0.242236017, 0.840116279, 0.526843986, 0.271978022, 0.476392188], [0.415525114, 0.333055089, 0.0, 0.37140576, 0.223602478, 0.49244193, 0.502257963, 0.074175824, 0.480877052], [0.389954311, 0.29243183, 0.408795605, 0.702076646, 0.279503097, 0.299418605, 0.215002552, 0.074175824, 0.434035117], [0.63789953, 0.0, 0.0, 0.510383351, 0.0, 0.88255807, 0.477420972, 0.016483516, 0.152111627], [0.426940639, 0.372843634, 0.0, 0.584664527, 0.186335398, 0.35755814, 0.416457627, 0.074175824, 0.547028816], [0.211643829, 0.0, 0.502248861, 0.386581431, 0.232919247, 0.572674419, 0.772202726, 0.271978022, 0.522611188], [0.664383562, 0.0, 0.0, 0.560702865, 0.0, 0.405813884, 0.480682357, 0.016483516, 0.316556629], [0.623287671, 0.260990552, 0.0, 0.038338619, 0.726708052, 0.148546442, 1.0, 0.016483516, 0.540301508], [0.502283105, 0.414579862, 0.0, 0.512779541, 0.248447197, 0.436046512, 0.288509802, 0.074175824, 0.624018927], [0.965753425, 0.0, 0.0, 0.536741203, 0.0, 0.941860465, 0.047666837, 0.491758242, 0.742369497], [0.399771703, 0.0, 0.486756617, 0.309904185, 0.366459616, 0.502616349, 0.706472637, 0.035714286, 0.492836676], [0.888127854, 0.072342795, 0.614692635, 0.632587851, 0.121118009, 0.061046512, 0.263421993, 0.005494505, 0.339105515], [0.650684932, 0.055648304, 0.469765103, 0.281150143, 0.360248436, 0.398255814, 0.629704002, 0.016483516, 0.490095914], [0.737442922, 0.295770742, 0.0, 0.25319487, 0.512422344, 0.148546442, 0.735323617, 0.005494505, 0.387068678], [0.400000027, 0.272120213, 0.122438777, 0.310702835, 0.347826076, 0.757848695, 0.472905197, 0.035714286, 0.565341972], [0.202511409, 0.0, 0.626686648, 0.321885016, 0.242236017, 0.840116279, 0.526843986, 0.151098901, 0.411237085], [0.579680352, 0.0, 0.707646186, 0.571086276, 0.341614896, 0.00116286, 0.462619255, 0.074175824, 0.480129562], [0.863013699, 0.0, 0.0, 0.560702865, 0.0, 0.39244186, 0.318615172, 0.005494505, 0.274822469], [0.594977183, 0.52587647, 0.0, 0.344249138, 0.360248436, 0.417732593, 0.405920717, 0.247252747, 0.958888812], [0.424657534, 0.534223715, 0.0, 0.560702865, 0.0, 0.380813953, 0.310587043, 0.074175824, 0.454341596], [0.121004566, 0.0, 0.714642657, 0.568690086, 0.279503097, 0.220930233, 0.687405962, 0.074175824, 0.092313444], [0.211643829, 0.0, 0.502248861, 0.349840288, 0.232919247, 0.597093093, 0.782488818, 0.151098901, 0.394045095], [0.737442922, 0.295770742, 0.0, 0.236421659, 0.577639734, 0.39244186, 0.526091381, 0.247252747, 0.801918508], [0.205479452, 0.801335573, 0.0, 0.560702865, 0.0, 0.37441857, 0.306322086, 0.244505495, 0.602965008], [0.594977183, 0.52587647, 0.0, 0.344249138, 0.360248436, 0.417732593, 0.405920717, 0.151098901, 0.933972902], [1.0, 0.0, 0.0, 0.321086246, 0.077639749, 0.694767442, 0.205720032, 0.074175824, 0.967484738], [0.399543379, 0.0, 0.0, 0.552715644, 0.0, 0.485465116, 0.657300592, 0.244505495, 0.36028405], [0.646118721, 0.0, 0.0, 0.512779541, 0.0, 0.479651163, 0.423983969, 0.016483516, 0.260246662], [0.292237443, 0.0, 0.591204395, 0.588658137, 0.142857138, 0.663953558, 0.412945273, 0.271978022, 0.411237085], [0.310958897, 0.441847539, 0.0, 0.510383351, 0.0, 0.696511558, 0.351981928, 0.074175824, 0.306216527], [0.265296797, 0.151919863, 0.618690651, 0.151757192, 0.369565206, 0.798546369, 0.498494792, 0.271978022, 0.762426816], [0.399543379, 0.0, 0.0, 0.552715644, 0.0, 0.485465116, 0.657300592, 0.491758242, 0.373738666], [0.594977183, 0.52587647, 0.0, 0.344249138, 0.360248436, 0.417732593, 0.405920717, 0.247252747, 0.958888812], [0.125570776, 0.595436849, 0.759620167, 0.62460063, 0.279503097, 0.052325581, 0.275965897, 0.074175824, 0.382708356], [0.343150692, 0.0, 0.493753124, 0.195686906, 0.440993775, 0.543023221, 0.740090361, 0.151098901, 0.666500602], [0.266894963, 0.0, 0.620189876, 0.293130973, 0.350931666, 0.807267299, 0.50401414, 0.074175824, 0.347452345], [0.131963477, 0.695603796, 0.0, 0.37220441, 0.378881976, 0.721802468, 0.236327189, 0.074175824, 0.462563846], [0.252283105, 0.0, 0.50174912, 0.299520774, 0.270186327, 0.601162756, 0.776718501, 0.005494505, 0.139653672], [0.300913249, 0.0, 0.472763594, 0.607827419, 0.142857138, 0.424418605, 0.647767254, 0.074175824, 0.255512651], [0.623287671, 0.260990552, 0.0, 0.038338619, 0.726708052, 0.148546442, 1.0, 0.151098901, 0.720941852], [0.851598174, 0.0, 0.0, 0.321086246, 0.295031047, 0.706395349, 0.1705971, 0.074175824, 0.700012475], [0.314155265, 1.0, 0.0, 0.510383351, 0.0, 0.40872086, 0.176367266, 0.074175824, 0.462314687], [0.586757991, 0.052865888, 0.704647655, 0.257188481, 0.338509306, 0.409883721, 0.519317643, 0.016483516, 0.451974609], [0.182648402, 0.125765169, 0.609695134, 0.386581431, 0.254658377, 0.75116286, 0.468389421, 0.035714286, 0.238818992], [0.202511409, 0.0, 0.626686648, 0.321885016, 0.242236017, 0.840116279, 0.526843986, 0.074175824, 0.29986297], [0.52283105, 0.0, 0.0, 0.560702865, 0.0, 0.514534884, 0.579528384, 0.074175824, 0.362775654], [0.149315055, 0.361435716, 0.642678671, 0.428913724, 0.242236017, 0.596802291, 0.382839903, 0.035714286, 0.367260493], [0.743150685, 0.132164721, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 1.0, 0.515385599], [0.769406393, 0.492487487, 0.0, 0.512779541, 0.344720486, 0.243895419, 0.285750203, 0.247252747, 0.884141083], [0.109589041, 0.659432398, 0.0, 0.416932893, 0.372670796, 0.779069767, 0.203211252, 0.074175824, 0.43727421], [0.621004566, 0.526432944, 0.0, 0.385782781, 0.313664587, 0.363662721, 0.40817868, 0.074175824, 0.732029419], [0.52283105, 0.0, 0.0, 0.560702865, 0.0, 0.514534884, 0.579528384, 0.005494505, 0.139404513], [0.251141553, 0.0, 0.623688152, 0.297124584, 0.242236017, 0.826744256, 0.515554472, 0.271978022, 0.56671236], [0.456621005, 0.0, 0.0, 0.648562292, 0.0, 0.502906977, 0.559458137, 0.491758242, 0.304098675], [0.205479452, 0.801335573, 0.0, 0.560702865, 0.0, 0.37441857, 0.306322086, 0.016483516, 0.238569833], [0.310730607, 0.0, 0.470264843, 0.518370572, 0.217391298, 0.432848907, 0.634721564, 0.074175824, 0.347576937], [0.03196347, 0.481357827, 0.0, 0.560702865, 0.0, 0.316279035, 0.747365885, 0.005494505, 0.049208921], [0.646118721, 0.0, 0.0, 0.512779541, 0.0, 0.479651163, 0.423983969, 0.005494505, 0.1541049], [0.098173516, 0.0, 0.894552697, 0.640575071, 0.248447197, 0.066860465, 0.689914743, 0.074175824, 0.102279808], [0.296347039, 0.0, 0.607696124, 0.416932893, 0.208074528, 0.74244193, 0.462870073, 0.035714286, 0.304472413], [0.330593614, 0.0, 0.625187378, 0.171725244, 0.372670796, 0.830814096, 0.519066825, 0.151098901, 0.722436794], [0.474657521, 0.397328896, 0.555722107, 0.367412149, 0.686335382, 0.328197744, 0.143502297, 0.074175824, 0.447116007], [0.657305922, 0.52587647, 0.0, 0.192491946, 0.683229792, 0.417732593, 0.405920717, 0.005494505, 0.476765902], [0.474885845, 0.0, 0.0, 0.560702865, 0.0, 0.613372093, 0.592072289, 0.005494505, 0.118599729], [0.300913249, 0.0, 0.472763594, 0.607827419, 0.142857138, 0.424418605, 0.647767254, 0.151098901, 0.315559993], [0.405936046, 0.3586533, 0.50174912, 0.404153292, 0.295031047, 0.07005807, 0.529101949, 0.074175824, 0.629126738], [0.737442922, 0.295770742, 0.0, 0.25319487, 0.512422344, 0.148546442, 0.735323617, 0.151098901, 0.772019491], [0.280821918, 0.0, 0.0, 0.472843438, 0.0, 0.906976744, 0.599598631, 0.016483516, 0.11012832], [0.743150685, 0.132164721, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 0.074175824, 0.43727421], [0.680365297, 0.0, 0.0, 0.520766762, 0.0, 0.651162791, 0.378825913, 0.074175824, 0.515385599], [0.374429224, 0.3116305, 0.434782596, 0.448881776, 0.310558997, 0.316860465, 0.378825913, 0.074175824, 0.462065515], [0.511415525, 0.0, 0.689655152, 0.616613409, 0.341614896, 0.0, 0.496738615, 0.074175824, 0.477762563], [0.372146119, 0.308848085, 0.429785095, 0.584664527, 0.186335398, 0.093023256, 0.491721053, 0.074175824, 0.488476417], [0.769406393, 0.492487487, 0.0, 0.512779541, 0.344720486, 0.243895419, 0.285750203, 0.151098901, 0.864208281], [0.252283105, 0.0, 0.50174912, 0.299520774, 0.270186327, 0.601162756, 0.776718501, 0.074175824, 0.36514264], [0.12146118, 0.511686135, 0.715642142, 0.575079886, 0.285714277, 0.228488302, 0.262167602, 0.074175824, 0.332129073], [0.633561644, 0.420701167, 0.0, 0.256389711, 0.493788805, 0.968895491, 0.02759659, 0.247252747, 0.674847407], [0.785388128, 0.066777964, 0.394802587, 0.321086246, 0.360248436, 0.48255814, 0.296036144, 0.074175824, 0.606577815], [0.46803653, 0.0, 0.0, 0.568690086, 0.0, 0.485465116, 0.546914233, 1.0, 0.421328053], [0.654337913, 0.270172509, 0.0, 0.288338593, 0.375776386, 0.148546442, 0.832162649, 0.247252747, 0.688551132], [0.526255708, 0.396494164, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 0.016483516, 0.348199847], [0.374885872, 0.312465233, 0.437281346, 0.448083006, 0.322981356, 0.315988407, 0.377571523, 0.074175824, 0.462065515], [0.646118721, 0.0, 0.67966015, 0.289137363, 0.621117993, 0.296511628, 0.436527874, 0.074175824, 0.663012337], [0.349315068, 0.0, 0.0, 0.560702865, 0.0, 0.2581395, 0.88058209, 0.005494505, 0.073128194], [0.16073058, 0.037840846, 0.86156916, 0.279552722, 0.127329189, 0.596802291, 0.658304164, 0.074175824, 0.390681447], [0.150684932, 0.117139674, 0.818590695, 0.0, 0.177018628, 0.749127765, 0.466884062, 0.005494505, 0.067522115], [0.851598174, 0.330550932, 0.0, 0.473642208, 0.276397507, 0.148546442, 0.470396416, 0.074175824, 0.82185131], [0.640410959, 0.0, 0.0, 0.510383351, 0.0, 0.717442003, 0.364525832, 0.016483516, 0.270835935], [0.341095877, 0.0, 0.591204395, 0.532747593, 0.198757758, 0.661046581, 0.410687461, 0.151098901, 0.427432414], [0.163242009, 0.139398995, 0.867066441, 0.343450487, 0.201863348, 0.596511663, 0.500501786, 0.151098901, 0.640837191], [0.511415525, 0.46188092, 0.0, 0.416932893, 0.279503097, 0.235465116, 0.491721053, 0.074175824, 0.733773533], [1.0, 0.0, 0.0, 0.408945673, 0.0, 0.941860465, 0.047666837, 0.739010989, 0.894979442], [0.908675799, 0.0, 0.0, 0.145367392, 0.124223599, 0.479651163, 0.649774249, 0.074175824, 0.812756966], [0.186986288, 0.341124096, 0.0, 0.652555902, 0.0, 0.459883756, 0.516808862, 0.016483516, 0.105394297], [0.673515982, 0.047857544, 0.789605174, 0.361022349, 0.645962682, 0.48255814, 0.097842454, 0.074175824, 0.66425817], [0.330593614, 0.0, 0.625187378, 0.171725244, 0.372670796, 0.830814096, 0.519066825, 0.005494505, 0.26398406], [0.337899543, 0.0, 0.47826084, 0.523961602, 0.170807448, 0.453197744, 0.670346282, 0.074175824, 0.33499439], [0.399543379, 0.0, 0.0, 0.552715644, 0.0, 0.485465116, 0.657300592, 0.074175824, 0.294506037], [0.292237443, 0.0, 0.591204395, 0.588658137, 0.142857138, 0.663953558, 0.412945273, 0.005494505, 0.095926251], [0.335844763, 0.0, 0.493753124, 0.289936133, 0.397515516, 0.543023221, 0.740090361, 0.271978022, 0.607076146], [0.945205479, 0.0, 0.0, 0.321086246, 0.257763967, 0.0, 0.521826424, 0.074175824, 0.48635854], [0.287671233, 0.951864251, 0.0, 0.510383351, 0.0, 0.449999965, 0.201455075, 0.074175824, 0.46555378], [0.173515982, 0.361157499, 0.59270362, 0.464057447, 0.111801239, 0.599709267, 0.383341689, 0.271978022, 0.593746147], [0.621004566, 0.526432944, 0.0, 0.385782781, 0.313664587, 0.363662721, 0.40817868, 0.005494505, 0.399526633], [0.068493151, 0.574568735, 0.804097897, 0.456070227, 0.170807448, 0.191569837, 0.355243313, 0.074175824, 0.38594745], [0.420776228, 0.558987194, 0.0, 0.182907305, 0.347826076, 0.591860395, 0.526091381, 0.247252747, 0.927743925], [0.342465753, 0.0, 0.0, 0.512779541, 0.0, 0.901162791, 0.476668368, 0.016483516, 0.113865706], [0.426940639, 0.0, 0.0, 0.560702865, 0.0, 0.326162826, 0.75589565, 0.074175824, 0.289522868], [0.291552505, 0.0, 0.590704615, 0.586261947, 0.189440988, 0.660174349, 0.410436492, 0.151098901, 0.361529846], [0.07100458, 0.584863663, 0.0, 0.590255557, 0.096273289, 0.431395419, 0.505017562, 0.074175824, 0.331506187], [0.305936073, 0.0, 0.0, 0.568690086, 0.0, 0.485465116, 0.730055237, 0.491758242, 0.271209674], [0.463013671, 0.0, 0.4977511, 0.592651747, 0.304347817, 0.460465186, 0.278976464, 0.074175824, 0.346206574], [0.743150685, 0.132164721, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 0.491758242, 0.492213791], [0.447945233, 0.0, 0.534732618, 0.702076646, 0.344720486, 0.228488302, 0.376818919, 0.074175824, 0.368132549], [0.220547959, 0.368391754, 0.0, 0.560702865, 0.0, 0.515697744, 0.580782775, 0.005494505, 0.084714092], [0.342009139, 0.0, 0.49925037, 0.194089485, 0.385093156, 0.595930233, 0.767185164, 0.035714286, 0.386570347], [0.526255708, 0.396494164, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 0.074175824, 0.38233463], [0.116438356, 0.664997229, 0.0, 0.62460063, 0.186335398, 0.584302326, 0.22579028, 0.074175824, 0.305593642], [0.684474858, 0.263494709, 0.0, 0.204472776, 0.354037256, 0.423837174, 0.647516286, 0.247252747, 0.911548546], [0.625570776, 0.0, 0.0, 0.741214099, 0.0, 0.588662791, 0.422478761, 0.271978022, 0.507412508], [0.494977142, 0.591263226, 0.0, 0.270766732, 0.444099365, 0.148546442, 0.718514905, 0.247252747, 0.819359657], [0.182648402, 0.125765169, 0.609695134, 0.386581431, 0.254658377, 0.75116286, 0.468389421, 0.271978022, 0.577301597], [0.52283105, 0.473010581, 0.0, 0.584664527, 0.248447197, 0.029069767, 0.521826424, 0.074175824, 0.676217794], [0.105022831, 0.0, 0.684657651, 0.289137363, 0.496894395, 0.584302326, 0.592072289, 0.074175824, 0.194593265], [0.737442922, 0.295770742, 0.0, 0.236421659, 0.577639734, 0.39244186, 0.526091381, 0.074175824, 0.740874554], [0.350000007, 0.274902628, 0.384807585, 0.533546363, 0.201863348, 0.343023256, 0.389613641, 0.074175824, 0.392051822], [0.442922374, 0.0, 0.0, 0.560702865, 0.0, 0.825581395, 0.429001531, 0.244505495, 0.337112242], [0.076940632, 0.56622149, 0.0, 0.510383351, 0.0, 0.799999858, 0.41470145, 0.074175824, 0.197707754], [0.291552505, 0.0, 0.590704615, 0.586261947, 0.189440988, 0.660174349, 0.410436492, 0.271978022, 0.480005008], [0.251141553, 0.0, 0.623688152, 0.297124584, 0.242236017, 0.826744256, 0.515554472, 0.074175824, 0.450604222], [0.594977183, 0.52587647, 0.0, 0.344249138, 0.360248436, 0.417732593, 0.405920717, 0.016483516, 0.667372659], [0.442465726, 0.0, 0.0, 0.510383351, 0.0, 0.844186116, 0.439789259, 0.016483516, 0.155849013], [0.837899543, 0.326099051, 0.0, 0.12779553, 1.0, 0.148546442, 0.618414488, 0.151098901, 0.834309265], [0.650684932, 0.055648304, 0.469765103, 0.281150143, 0.444099365, 0.398255814, 0.629704002, 0.074175824, 0.596860635], [0.594977183, 0.52587647, 0.0, 0.344249138, 0.360248436, 0.417732593, 0.405920717, 0.016483516, 0.256260128], [0.623287671, 0.0, 0.0, 0.512779541, 0.0, 0.688953488, 0.411440065, 0.016483516, 0.295627253], [0.965753425, 0.0, 0.0, 0.536741203, 0.0, 0.941860465, 0.047666837, 0.005494505, 0.392051822], [0.255022824, 0.0, 0.873063427, 0.263578281, 0.316770176, 0.734011628, 0.457601693, 0.005494505, 0.18985923], [0.654337913, 0.270172509, 0.0, 0.288338593, 0.375776386, 0.148546442, 0.832162649, 0.016483516, 0.40575561], [0.341095877, 0.0, 0.591204395, 0.567891316, 0.180124218, 0.705232488, 0.402157546, 0.074175824, 0.385449119], [0.310502283, 0.0, 0.0, 0.512779541, 0.0, 0.924418605, 0.489212272, 0.016483516, 0.12109132], [0.211643829, 0.0, 0.502248861, 0.386581431, 0.232919247, 0.572674419, 0.772202726, 0.035714286, 0.273452118], [0.54109589, 0.0, 0.0, 0.600638968, 0.0, 0.485465116, 0.469142025, 0.016483516, 0.232216263], [0.098173516, 0.0, 0.669665147, 0.472843438, 0.341614896, 0.51744186, 0.546914233, 0.074175824, 0.135417968], [0.48173516, 0.403450202, 0.0, 0.448881776, 0.248447197, 0.191860465, 0.577019603, 0.074175824, 0.523981563], [0.563926941, 0.0, 0.0, 0.560702865, 0.0, 0.74127907, 0.53938789, 0.005494505, 0.168680707], [0.255022824, 0.0, 0.873063427, 0.263578281, 0.316770176, 0.734011628, 0.457601693, 0.271978022, 0.594867363], [0.657305922, 0.52587647, 0.0, 0.192491946, 0.683229792, 0.417732593, 0.405920717, 0.016483516, 0.70711351], [0.426940639, 0.0, 0.0, 0.560702865, 0.0, 0.326162826, 0.75589565, 0.244505495, 0.370499573], [0.132876705, 0.523094054, 0.731634131, 0.650159712, 0.350931666, 0.080523291, 0.290265978, 0.074175824, 0.410863359], [0.305936073, 0.436839184, 0.0, 0.560702865, 0.0, 0.49883714, 0.389111855, 0.244505495, 0.566214029], [0.785388128, 0.066777964, 0.394802587, 0.321086246, 0.319875766, 0.48255814, 0.296036144, 0.151098901, 0.653295145], [0.650684932, 0.055648304, 0.469765103, 0.281150143, 0.444099365, 0.398255814, 0.629704002, 0.151098901, 0.672854134], [0.408675799, 0.0, 0.0, 0.512779541, 0.0, 0.880813953, 0.451580559, 0.016483516, 0.151613309], [0.307990854, 0.255147464, 0.357321329, 0.99920123, 0.186335398, 0.150872163, 0.254390442, 0.074175824, 0.327644197], [0.482420064, 0.729549294, 0.0, 0.428913724, 0.267080737, 0.714825651, 0.04465627, 0.151098901, 0.779494251], [0.664383562, 0.0, 0.0, 0.560702865, 0.0, 0.405813884, 0.480682357, 0.074175824, 0.464307947], [0.16073058, 0.037840846, 0.86156916, 0.279552722, 0.127329189, 0.596802291, 0.658304164, 0.035714286, 0.341597118], [0.397260274, 0.322760161, 0.449775099, 0.464856217, 0.279503097, 0.200581395, 0.436527874, 0.074175824, 0.522611188], [0.108447489, 0.656649983, 0.0, 0.431309914, 0.391304336, 0.1331395, 0.74937288, 0.074175824, 0.38158714], [0.338356158, 0.464106861, 0.0, 0.652555902, 0.0, 0.513372023, 0.251128906, 0.016483516, 0.212034389], [0.461187215, 0.211463554, 0.0, 0.848242808, 0.0, 0.380813953, 0.190667347, 0.074175824, 0.566587793], [0.965753425, 0.0, 0.0, 0.536741203, 0.0, 0.941860465, 0.047666837, 0.074175824, 0.66787094], [0.23173516, 0.377573732, 0.0, 0.510383351, 0.0, 0.799999858, 0.41470145, 0.016483516, 0.119970104], [0.430136973, 0.0, 0.480759591, 0.36980834, 0.291925457, 0.465697709, 0.679879619, 0.151098901, 0.532577589], [0.482420064, 0.729549294, 0.0, 0.428913724, 0.267080737, 0.714825651, 0.04465627, 0.005494505, 0.329762049], [0.300913249, 0.0, 0.472763594, 0.607827419, 0.142857138, 0.424418605, 0.647767254, 0.035714286, 0.24679207], [0.442922374, 0.0, 0.0, 0.560702865, 0.0, 0.825581395, 0.429001531, 0.016483516, 0.147875922], [0.547945205, 0.105731777, 0.0, 0.848242808, 0.0, 0.380813953, 0.190667347, 0.244505495, 0.599601348], [0.095433797, 0.379243198, 0.530734602, 0.449680546, 0.232919247, 0.408430233, 0.452333163, 0.074175824, 0.296748481], [0.205479452, 0.801335573, 0.0, 0.560702865, 0.0, 0.37441857, 0.306322086, 0.005494505, 0.130310206], [0.143835616, 0.357540351, 0.660169925, 0.425718884, 0.251552787, 0.595348802, 0.382839903, 0.074175824, 0.548897472], [0.296347039, 0.0, 0.607696124, 0.416932893, 0.208074528, 0.74244193, 0.462870073, 0.151098901, 0.502927644], [0.113698637, 0.495548161, 0.693153388, 0.365015959, 0.568322933, 0.415697674, 0.252383297, 0.074175824, 0.423819594], [0.148401826, 0.20979411, 0.834582684, 0.337060687, 0.245341607, 0.599709267, 0.441796253, 0.005494505, 0.164320423], [0.143835616, 0.357540351, 0.660169925, 0.425718884, 0.251552787, 0.595348802, 0.382839903, 0.005494505, 0.212906446], [0.343607306, 0.0, 0.0, 0.510383351, 0.0, 0.902906907, 0.477420972, 0.074175824, 0.21726673], [0.122374443, 0.677518097, 0.0, 0.467252407, 0.332298126, 0.64244186, 0.260160608, 0.074175824, 0.436402166], [0.25456621, 0.0, 0.870564677, 0.298722004, 0.363354026, 0.705232488, 0.446312179, 0.035714286, 0.339603846], [0.149315055, 0.361435716, 0.642678671, 0.428913724, 0.242236017, 0.596802291, 0.382839903, 0.074175824, 0.484240712], [0.785388128, 0.066777964, 0.394802587, 0.321086246, 0.360248436, 0.48255814, 0.296036144, 0.074175824, 0.524355289], [0.44223747, 0.0, 0.477761095, 0.396964842, 0.276397507, 0.447965047, 0.66532872, 0.035714286, 0.40986671], [0.650684932, 0.055648304, 0.469765103, 0.281150143, 0.360248436, 0.398255814, 0.629704002, 0.151098901, 0.73663885], [0.251369877, 0.0, 0.607696124, 0.467252407, 0.177018628, 0.745930163, 0.464877068, 0.035714286, 0.231593378], [0.25456621, 0.0, 0.870564677, 0.298722004, 0.363354026, 0.705232488, 0.446312179, 0.005494505, 0.165441639], [0.374429224, 0.317195331, 0.0, 0.848242808, 0.0, 0.380813953, 0.190667347, 0.739010989, 0.615422963], [0.337899543, 0.0, 0.47826084, 0.523961602, 0.170807448, 0.453197744, 0.670346282, 0.035714286, 0.281425197], [0.182648402, 0.125765169, 0.609695134, 0.386581431, 0.254658377, 0.75116286, 0.468389421, 0.151098901, 0.512893996], [0.474885845, 0.397328896, 0.0, 0.3682108, 0.310558997, 0.32936043, 0.526843986, 0.074175824, 0.535318302], [0.586757991, 0.052865888, 0.704647655, 0.257188481, 0.338509306, 0.409883721, 0.519317643, 0.005494505, 0.265479003], [0.292237443, 0.0, 0.591204395, 0.588658137, 0.142857138, 0.663953558, 0.412945273, 0.151098901, 0.36389687], [0.684474858, 0.263494709, 0.0, 0.204472776, 0.354037256, 0.423837174, 0.647516286, 0.151098901, 0.889124191], [0.534246575, 0.0, 0.0, 0.480830658, 0.093167699, 0.537790698, 0.559458137, 0.074175824, 0.529836826], [0.654337913, 0.270172509, 0.0, 0.288338593, 0.375776386, 0.148546442, 0.832162649, 0.151098901, 0.658652078], [0.424657534, 0.336672237, 0.0, 0.440894555, 0.217391298, 0.311046512, 0.589563508, 0.074175824, 0.49582661], [0.255022824, 0.272954924, 0.122438777, 0.478434468, 0.214285708, 0.769767584, 0.480180721, 0.005494505, 0.19521615], [0.650684932, 0.055648304, 0.469765103, 0.281150143, 0.431677005, 0.398255814, 0.629704002, 0.005494505, 0.28877539], [0.621004566, 0.526432944, 0.0, 0.385782781, 0.313664587, 0.363662721, 0.40817868, 0.016483516, 0.546530486], [0.251141553, 0.0, 0.623688152, 0.297124584, 0.242236017, 0.826744256, 0.515554472, 0.005494505, 0.214152242], [0.965753425, 0.0, 0.0, 0.536741203, 0.0, 0.941860465, 0.047666837, 0.739010989, 0.807026319], [0.136986301, 0.575959943, 0.859570189, 0.75239616, 0.310558997, 0.061046512, 0.110386359, 0.074175824, 0.467297881], [0.342465753, 0.0, 0.0, 0.50479232, 0.0, 0.901162791, 0.476668368, 0.016483516, 0.141771525], [0.365296804, 0.308848085, 0.429785095, 0.584664527, 0.155279498, 0.273255814, 0.348720543, 0.074175824, 0.391055211], [0.310502283, 0.0, 0.0, 0.50479232, 0.0, 0.921511628, 0.489212272, 0.074175824, 0.189485504], [0.965753425, 0.0, 0.0, 0.536741203, 0.0, 0.941860465, 0.047666837, 0.016483516, 0.49943938], [0.399543379, 0.325542576, 0.4547726, 0.552715644, 0.217391298, 0.421511628, 0.180632224, 0.074175824, 0.513766052], [0.62168947, 0.0, 0.0, 0.546325844, 0.208074528, 0.6168605, 0.342197773, 0.074175824, 0.457580689], [0.291552505, 0.0, 0.590704615, 0.586261947, 0.189440988, 0.660174349, 0.410436492, 0.005494505, 0.13741124], [0.200913242, 0.528658885, 0.0, 0.848242808, 0.0, 0.380813953, 0.190667347, 0.244505495, 0.498318213], [0.047031959, 0.511686135, 0.0, 0.652555902, 0.0, 0.456976779, 0.51705968, 0.244505495, 0.38445247], [0.300913249, 0.0, 0.472763594, 0.607827419, 0.142857138, 0.424418605, 0.647767254, 0.005494505, 0.100286535], [0.343150692, 0.0, 0.493753124, 0.195686906, 0.440993775, 0.543023221, 0.740090361, 0.271978022, 0.730285318], [0.447031936, 0.381747355, 0.534232878, 0.634984041, 0.186335398, 0.22500007, 0.153788238, 0.074175824, 0.637722702], [0.426940639, 0.372008902, 0.0, 0.583865757, 0.170807448, 0.357848767, 0.416708445, 0.074175824, 0.547153371], [0.205479452, 0.801335573, 0.0, 0.560702865, 0.0, 0.37441857, 0.306322086, 0.074175824, 0.460819745], [0.257762543, 0.149693934, 0.609195394, 0.269968082, 0.298136637, 0.620058105, 0.468138453, 0.074175824, 0.621278214], [0.737442922, 0.295770742, 0.0, 0.25319487, 0.512422344, 0.148546442, 0.735323617, 0.074175824, 0.722063068], [0.252283105, 0.0, 0.50174912, 0.299520774, 0.270186327, 0.601162756, 0.776718501, 0.271978022, 0.505668357], [0.547945205, 0.105731777, 0.0, 0.848242808, 0.0, 0.380813953, 0.190667347, 0.739010989, 0.656907965], [0.594977183, 0.52587647, 0.0, 0.344249138, 0.360248436, 0.417732593, 0.405920717, 0.074175824, 0.859225174], [0.430136973, 0.0, 0.480759591, 0.36980834, 0.291925457, 0.465697709, 0.679879619, 0.271978022, 0.58103902], [0.118721461, 0.484140242, 0.924537703, 0.848242808, 0.217391298, 0.127906977, 0.045158056, 0.074175824, 0.274199583], [0.136986301, 0.595436849, 0.81959018, 0.640575071, 0.310558997, 0.055232558, 0.215755156, 0.074175824, 0.352809278], [0.296347039, 0.0, 0.607696124, 0.416932893, 0.208074528, 0.74244193, 0.462870073, 0.271978022, 0.54204561], [0.452054795, 0.0, 0.0, 0.4968051, 0.0, 0.796511628, 0.504264958, 0.016483516, 0.1650679], [0.255251148, 0.272954924, 0.122438777, 0.478434468, 0.208074528, 0.770348837, 0.480431539, 0.074175824, 0.472156484], [0.142009126, 0.0, 1.0, 0.474440858, 0.391304336, 0.140406942, 0.632212783, 0.074175824, 0.158963502], [0.097716902, 0.0, 0.667666177, 0.471246018, 0.344720486, 0.518895349, 0.545659842, 0.074175824, 0.135417968], [0.563926941, 0.0, 0.0, 0.560702865, 0.0, 0.74127907, 0.53938789, 0.244505495, 0.477513404], [0.114155251, 0.495269903, 0.694652653, 0.36900957, 0.559006194, 0.415697674, 0.253386869, 0.074175824, 0.423819594], [0.274885831, 0.0, 0.483258341, 0.539137393, 0.139751548, 0.482848767, 0.693176128, 0.005494505, 0.115236081], [0.506164411, 0.78686698, 0.0, 0.49520768, 0.319875766, 0.41191864, 0.16532872, 0.074175824, 0.901582145], [0.116438356, 0.283806349, 0.0, 0.560702865, 0.0, 0.252906977, 0.875815346, 0.016483516, 0.075246046], [0.888127854, 0.072342795, 0.614692635, 0.632587851, 0.121118009, 0.061046512, 0.263421993, 0.074175824, 0.692537678], [0.500684904, 0.456872565, 0.0, 0.548722034, 0.142857138, 0.200581395, 0.451580559, 0.074175824, 0.683817147], [0.014383568, 0.451864209, 0.0, 0.652555902, 0.0, 0.398837244, 0.639739125, 0.074175824, 0.227482253], [0.586757991, 0.052865888, 0.704647655, 0.257188481, 0.338509306, 0.409883721, 0.519317643, 0.151098901, 0.802915169], [0.089726034, 0.589872019, 0.0, 0.652555902, 0.0, 0.496511593, 0.387606647, 0.016483516, 0.100411115], [0.337899543, 0.0, 0.47826084, 0.559105445, 0.164596268, 0.42994193, 0.660311159, 0.005494505, 0.076741001], [0.482420064, 0.403450202, 0.0, 0.452875386, 0.248447197, 0.584011698, 0.23758158, 0.074175824, 0.482371994], [0.228310502, 0.030606567, 0.704647655, 0.672523954, 0.052795029, 0.409883721, 0.519317643, 0.016483516, 0.158714343], [0.646118721, 0.0, 0.0, 0.512779541, 0.0, 0.479651163, 0.423983969, 0.074175824, 0.361529846], [0.070776256, 0.556483037, 0.0, 0.560702865, 0.0, 0.36744193, 0.615153103, 0.016483516, 0.141148627], [0.341095877, 0.0, 0.591204395, 0.567891316, 0.180124218, 0.705232488, 0.402157546, 0.151098901, 0.460196847], [0.349315068, 0.0, 0.0, 0.560702865, 0.0, 0.2581395, 0.88058209, 0.016483516, 0.098293263], [0.851598174, 0.0, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 0.244505495, 0.497072393], [0.442922374, 0.0, 0.534732618, 0.792332263, 0.341614896, 0.052325581, 0.461615683, 0.074175824, 0.362401903], [0.100456621, 0.481357827, 0.0, 0.480830658, 0.093167699, 0.537790698, 0.559458137, 0.074175824, 0.26672481], [0.851598174, 0.0, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 0.074175824, 0.460446019], [0.623287671, 0.260990552, 0.0, 0.038338619, 0.726708052, 0.148546442, 1.0, 0.074175824, 0.67733901], [0.287671233, 0.951864251, 0.0, 0.510383351, 0.0, 0.449999965, 0.201455075, 0.016483516, 0.244051333], [0.650684932, 0.055648304, 0.469765103, 0.281150143, 0.360248436, 0.398255814, 0.629704002, 0.074175824, 0.552510292], [0.146347046, 0.0, 0.816091945, 0.436900945, 0.139751548, 0.74883714, 0.466884062, 0.005494505, 0.105020558], [0.149315055, 0.361435716, 0.642678671, 0.428913724, 0.242236017, 0.596802291, 0.382839903, 0.005494505, 0.157094809], [0.20159818, 0.0, 0.625687123, 0.357827509, 0.307453407, 0.808139535, 0.514049263, 0.151098901, 0.366139277], [0.309360731, 0.660823606, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 1.0, 0.456833199], [0.163242009, 0.139398995, 0.867066441, 0.343450487, 0.201863348, 0.596511663, 0.500501786, 0.035714286, 0.382210026], [0.03196347, 0.481357827, 0.0, 0.560702865, 0.0, 0.316279035, 0.747365885, 0.016483516, 0.096673729], [0.390410959, 0.0, 0.449775099, 0.616613409, 0.341614896, 0.377906977, 0.421475188, 0.074175824, 0.37261745], [0.146347046, 0.0, 0.816091945, 0.436900945, 0.139751548, 0.74883714, 0.466884062, 0.271978022, 0.388812779], [0.684474858, 0.263494709, 0.0, 0.204472776, 0.354037256, 0.423837174, 0.647516286, 0.074175824, 0.824342863], [0.442922374, 0.0, 0.533233352, 0.795527104, 0.326086946, 0.052907012, 0.462619255, 0.074175824, 0.362401903], [0.577625571, 0.052865888, 0.484757607, 0.185303495, 0.381987566, 0.48255814, 0.694932305, 0.074175824, 0.661766567], [0.762557078, 0.0, 0.0, 0.768370601, 0.0, 0.108721, 0.315353787, 0.074175824, 0.268095185], [0.085844763, 0.582637723, 0.0, 0.560702865, 0.0, 0.715116279, 0.53411951, 0.016483516, 0.152734525], [0.888127854, 0.072342795, 0.614692635, 0.704472836, 0.121118009, 0.235465116, 0.263421993, 0.016483516, 0.388189894], [0.274885831, 0.0, 0.483258341, 0.539137393, 0.139751548, 0.482848767, 0.693176128, 0.151098901, 0.337859744], [0.563926941, 0.0, 0.0, 0.560702865, 0.0, 0.74127907, 0.53938789, 0.326923077, 0.480005008], [0.211643829, 0.0, 0.502248861, 0.386581431, 0.232919247, 0.572674419, 0.772202726, 0.074175824, 0.435280938], [0.343150692, 0.0, 0.493753124, 0.195686906, 0.440993775, 0.543023221, 0.740090361, 0.005494505, 0.242307232], [0.394977169, 0.0, 0.0, 0.488817879, 0.0, 0.834302326, 0.536879109, 0.016483516, 0.147875922], [0.461187215, 0.211463554, 0.0, 0.848242808, 0.0, 0.380813953, 0.190667347, 0.739010989, 0.648436555], [0.337899543, 0.0, 0.47826084, 0.523961602, 0.170807448, 0.453197744, 0.670346282, 0.005494505, 0.1431419], [0.341095877, 0.0, 0.591204395, 0.567891316, 0.180124218, 0.705232488, 0.402157546, 0.271978022, 0.471159872], [0.506164411, 0.78686698, 0.0, 0.49520768, 0.319875766, 0.41191864, 0.16532872, 0.151098901, 0.970100896], [0.63789953, 0.0, 0.0, 0.510383351, 0.0, 0.88255807, 0.477420972, 0.074175824, 0.251152367], [0.341095877, 0.0, 0.591204395, 0.532747593, 0.180124218, 0.661046581, 0.410687461, 0.271978022, 0.513890657], [0.120547952, 0.0, 0.713643172, 0.571086276, 0.282608687, 0.71627914, 0.257651827, 0.074175824, 0.126199081], [0.785388128, 0.066777964, 0.394802587, 0.321086246, 0.360248436, 0.48255814, 0.296036144, 0.074175824, 0.68145011], [0.310502283, 0.0, 0.0, 0.512779541, 0.0, 0.924418605, 0.489212272, 0.074175824, 0.189485504], [0.594977183, 0.52587647, 0.0, 0.344249138, 0.360248436, 0.417732593, 0.405920717, 0.074175824, 0.859225174], [0.220547959, 0.368391754, 0.0, 0.560702865, 0.0, 0.515697744, 0.580782775, 0.016483516, 0.153357423], [0.594977183, 0.52587647, 0.0, 0.344249138, 0.360248436, 0.417732593, 0.405920717, 0.151098901, 0.933972902], [0.255022824, 0.272954924, 0.122438777, 0.478434468, 0.214285708, 0.769767584, 0.480180721, 0.271978022, 0.64245675], [0.95890411, 0.0, 0.0, 0.193290715, 0.0, 0.276162791, 0.757651827, 0.016483516, 0.600224233], [0.908675799, 0.0, 0.0, 0.62460063, 0.0, 0.941860465, 0.047666837, 0.035714286, 0.4311698], [0.292237443, 0.0, 0.591204395, 0.588658137, 0.142857138, 0.663953558, 0.412945273, 0.035714286, 0.221128696], [0.474885845, 0.397885371, 0.554722622, 0.36900957, 0.683229792, 0.328488372, 0.14300051, 0.074175824, 0.390681447], [0.251369877, 0.0, 0.607696124, 0.467252407, 0.177018628, 0.745930163, 0.464877068, 0.151098901, 0.397035029], [0.538584461, 0.52587647, 0.0, 0.424121344, 0.295031047, 0.417732593, 0.405920717, 0.151098901, 0.717079861], [0.586757991, 0.052865888, 0.704647655, 0.257188481, 0.338509306, 0.409883721, 0.519317643, 0.074175824, 0.755076623], [0.422374429, 0.336672237, 0.469765103, 0.528753982, 0.279503097, 0.299418605, 0.25589565, 0.074175824, 0.493459574], [0.461187215, 0.211463554, 0.0, 0.848242808, 0.0, 0.380813953, 0.190667347, 0.491758242, 0.605705771], [0.735159817, 0.061213134, 0.659670145, 0.36900957, 0.276397507, 0.061046512, 0.391369818, 0.005494505, 0.370997904], [0.639269406, 0.0, 0.0, 0.512779541, 0.0, 0.715116279, 0.363773228, 0.016483516, 0.269963879], [0.111187208, 0.0, 0.926036969, 0.358626159, 0.484472035, 0.79505814, 0.210737594, 0.074175824, 0.138657036], [0.265296797, 0.151919863, 0.618690651, 0.151757192, 0.369565206, 0.798546369, 0.498494792, 0.151098901, 0.743241603], [0.563926941, 0.0, 0.0, 0.560702865, 0.0, 0.74127907, 0.53938789, 0.016483516, 0.083219137], [0.464155224, 0.56622149, 0.0, 0.652555902, 0.0, 0.477907047, 0.092824893, 0.074175824, 0.511399053], [0.547945205, 0.105731777, 0.0, 0.848242808, 0.0, 0.380813953, 0.190667347, 1.0, 0.670362531], [0.52739726, 0.0, 0.0, 0.560702865, 0.0, 0.378488407, 0.623682867, 0.074175824, 0.369253765], [0.342009139, 0.0, 0.49925037, 0.194089485, 0.385093156, 0.595930233, 0.767185164, 0.074175824, 0.393795936], [1.0, 0.0, 0.0, 0.408945673, 0.0, 0.941860465, 0.047666837, 0.035714286, 0.715460314], [0.586757991, 0.052865888, 0.704647655, 0.257188481, 0.338509306, 0.409883721, 0.519317643, 0.151098901, 0.827457352], [0.070776256, 0.584307188, 0.0, 0.592651747, 0.093167699, 0.430232558, 0.504264958, 0.074175824, 0.357543313], [0.305936073, 0.436839184, 0.0, 0.560702865, 0.0, 0.49883714, 0.389111855, 0.005494505, 0.140027411], [0.173515982, 0.361157499, 0.59270362, 0.464057447, 0.111801239, 0.599709267, 0.383341689, 0.005494505, 0.229226367], [0.389497731, 0.0, 0.447776089, 0.614217219, 0.329192536, 0.378779035, 0.421976975, 0.074175824, 0.372742005], [0.085844763, 0.582637723, 0.0, 0.560702865, 0.0, 0.715116279, 0.53411951, 0.986263736, 0.527843554], [0.086757991, 0.45631609, 0.639680141, 0.920127794, 0.186335398, 0.197674419, 0.155544415, 0.074175824, 0.40986671], [0.070776256, 0.556483037, 0.0, 0.560702865, 0.0, 0.36744193, 0.615153103, 0.244505495, 0.426809529], [0.447716909, 0.0, 0.534732618, 0.515974381, 0.189440988, 0.226744186, 0.554942362, 0.074175824, 0.502180142], [0.075342466, 0.292153594, 0.964517712, 0.592651747, 0.186335398, 0.476744186, 0.122930263, 0.074175824, 0.243926753], [0.737442922, 0.295770742, 0.0, 0.25319487, 0.512422344, 0.148546442, 0.735323617, 0.247252747, 0.783231576], [0.095890411, 0.378408465, 0.529735117, 0.448881776, 0.217391298, 0.406976744, 0.451580559, 0.074175824, 0.296623889], [0.400000027, 0.272120213, 0.122438777, 0.310702835, 0.347826076, 0.757848695, 0.472905197, 0.074175824, 0.757568214], [0.308219178, 0.255982197, 0.354822578, 1.0, 0.186335398, 0.151162791, 0.253386869, 0.074175824, 0.327644197], [0.143835616, 0.0, 0.749625165, 0.480830658, 0.372670796, 0.645348837, 0.338685419, 0.074175824, 0.195589901], [0.16073058, 0.037840846, 0.86156916, 0.279552722, 0.127329189, 0.596802291, 0.658304164, 0.151098901, 0.417590617], [0.502283105, 0.0, 0.0, 0.648562292, 0.0, 0.502906977, 0.516808862, 0.074175824, 0.284664265], [0.484018265, 0.404284934, 0.565717109, 0.456070227, 0.248447197, 0.197965047, 0.241344751, 0.074175824, 0.546904212], [0.654337913, 0.270172509, 0.0, 0.288338593, 0.375776386, 0.148546442, 0.832162649, 0.074175824, 0.602591282], [0.093607306, 0.470228166, 0.714642657, 0.552715644, 0.248447197, 0.48255814, 0.122930263, 0.074175824, 0.341223367], [0.223744292, 0.370061219, 0.0, 0.560702865, 0.0, 0.477907047, 0.532363334, 0.074175824, 0.350193119], [0.492922361, 0.0, 0.632183889, 0.702076646, 0.177018628, 0.172965116, 0.357752094, 0.074175824, 0.470038644], [0.474885845, 0.0, 0.0, 0.560702865, 0.0, 0.613372093, 0.592072289, 0.074175824, 0.317677845], [0.417808219, 0.528658885, 0.0, 0.329073466, 0.236024837, 0.668604651, 0.22829906, 0.074175824, 0.638470204], [0.251141553, 0.0, 0.623688152, 0.297124584, 0.242236017, 0.826744256, 0.515554472, 0.151098901, 0.532577589], [0.535388128, 0.0, 0.0, 0.480031888, 0.105590059, 0.537209267, 0.558956351, 0.074175824, 0.529961381], [0.141552511, 0.0, 0.99950022, 0.472843438, 0.403726696, 0.139534884, 0.632212783, 0.074175824, 0.158963502], [0.200913242, 0.528658885, 0.0, 0.848242808, 0.0, 0.380813953, 0.190667347, 0.074175824, 0.480005008], [0.20890411, 0.807456919, 0.0, 0.510383351, 0.0, 0.573255849, 0.276718501, 0.016483516, 0.185249799], [0.143835616, 0.0, 0.717641188, 0.335463267, 0.0, 0.594767372, 0.769944913, 0.074175824, 0.297371391], [0.908675799, 0.0, 0.0, 0.62460063, 0.0, 0.941860465, 0.047666837, 0.739010989, 0.658153748], [0.737442922, 0.295770742, 0.0, 0.25319487, 0.512422344, 0.148546442, 0.735323617, 0.151098901, 0.772019491], [0.737442922, 0.295770742, 0.0, 0.25319487, 0.512422344, 0.148546442, 0.735323617, 0.074175824, 0.722063068], [0.97260274, 0.0, 0.0, 0.50479232, 0.214285708, 0.345930233, 0.316106391, 0.074175824, 0.678958557], [0.737442922, 0.295770742, 0.0, 0.236421659, 0.577639734, 0.39244186, 0.526091381, 0.151098901, 0.779494251], [0.162100457, 0.322760161, 0.0, 0.560702865, 0.0, 0.423837174, 0.659307586, 0.005494505, 0.057431171], [0.461187215, 0.211463554, 0.0, 0.848242808, 0.0, 0.380813953, 0.190667347, 1.0, 0.659399518], [0.25456621, 0.0, 0.870564677, 0.261980861, 0.363354026, 0.730523398, 0.45534373, 0.035714286, 0.390806052], [0.129223758, 0.414301604, 0.579710128, 0.425718884, 0.465838495, 0.442732523, 0.315353787, 0.074175824, 0.315809152], [0.150684932, 0.117139674, 0.818590695, 0.0, 0.177018628, 0.749127765, 0.466884062, 0.074175824, 0.272953788], [0.908675799, 0.0, 0.0, 0.62460063, 0.0, 0.941860465, 0.047666837, 0.074175824, 0.520244189], [0.493150685, 0.0, 0.629685139, 0.704472836, 0.186335398, 0.174418605, 0.358755666, 0.074175824, 0.470038644], [0.737442922, 0.295770742, 0.0, 0.25319487, 0.512422344, 0.148546442, 0.735323617, 0.005494505, 0.387068678], [0.52283105, 0.0, 0.0, 0.560702865, 0.0, 0.514534884, 0.579528384, 0.016483516, 0.173539309], [0.50913242, 0.0, 0.0, 0.4968051, 0.0, 0.761627907, 0.474159587, 0.074175824, 0.351812641], [0.785388128, 0.066777964, 0.394802587, 0.321086246, 0.360248436, 0.48255814, 0.296036144, 0.151098901, 0.670362531], [0.107305936, 0.38675571, 0.54472762, 0.568690086, 0.186335398, 0.264534884, 0.466633244, 0.074175824, 0.266101925], [0.737442922, 0.295770742, 0.0, 0.25319487, 0.512422344, 0.148546442, 0.735323617, 0.247252747, 0.783231576], [0.342465753, 0.269894273, 0.379810084, 0.576677306, 0.248447197, 0.098837209, 0.569493261, 0.074175824, 0.387068678], [0.186986288, 0.341124096, 0.0, 0.652555902, 0.0, 0.459883756, 0.516808862, 0.005494505, 0.032016944], [0.11666668, 0.403450202, 0.564717624, 0.452875386, 0.248447197, 0.584011698, 0.23758158, 0.074175824, 0.289398276], [0.149315055, 0.361435716, 0.642678671, 0.428913724, 0.242236017, 0.596802291, 0.382839903, 0.151098901, 0.615298396], [0.654337913, 0.270172509, 0.0, 0.288338593, 0.375776386, 0.148546442, 0.832162649, 0.005494505, 0.321041493], [0.474885845, 0.0, 0.0, 0.560702865, 0.0, 0.613372093, 0.592072289, 0.244505495, 0.416469401], [0.52739726, 0.0, 0.0, 0.560702865, 0.0, 0.378488407, 0.623682867, 0.016483516, 0.262489106], [0.474885845, 0.0, 0.0, 0.560702865, 0.0, 0.49127907, 0.642247906, 0.074175824, 0.318799061], [0.785388128, 0.066777964, 0.394802587, 0.321086246, 0.360248436, 0.48255814, 0.296036144, 0.151098901, 0.73178026], [0.337899543, 0.0, 0.47826084, 0.523961602, 0.170807448, 0.453197744, 0.670346282, 0.151098901, 0.448486395], [0.309360731, 0.660823606, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 0.739010989, 0.449483006], [0.521689498, 0.471897632, 0.0, 0.583865757, 0.251552787, 0.029069767, 0.522579028, 0.074175824, 0.676342349], [0.192237436, 0.345297719, 0.0, 0.510383351, 0.0, 0.820930302, 0.427245354, 0.074175824, 0.190232968], [0.163926947, 0.259877584, 0.799100396, 0.403354642, 0.301242227, 0.59941864, 0.382839903, 0.271978022, 0.605581166], [0.152739712, 0.117417923, 0.621189402, 0.291533553, 0.335403716, 0.813372235, 0.507275525, 0.151098901, 0.458701917], [0.255022824, 0.272954924, 0.122438777, 0.478434468, 0.214285708, 0.769767584, 0.480180721, 0.074175824, 0.540426063], [0.147945212, 0.69616027, 0.0, 0.652555902, 0.0, 0.50755807, 0.247365735, 0.244505495, 0.513766052], [0.107305936, 0.32721202, 0.458270836, 0.488019109, 0.220496888, 0.443023326, 0.467385849, 0.074175824, 0.26398406], [0.274885831, 0.0, 0.483258341, 0.539137393, 0.139751548, 0.482848767, 0.693176128, 0.271978022, 0.478136289], [0.563926941, 0.0, 0.0, 0.560702865, 0.0, 0.715116279, 0.531861547, 0.986263736, 0.49582661], [0.192237436, 0.345297719, 0.0, 0.510383351, 0.0, 0.820930302, 0.427245354, 0.016483516, 0.070636603], [0.650684932, 0.055648304, 0.469765103, 0.281150143, 0.431677005, 0.398255814, 0.629704002, 0.074175824, 0.552510292], [0.162100457, 0.322760161, 0.0, 0.560702865, 0.0, 0.423837174, 0.659307586, 0.244505495, 0.370873287], [0.634703196, 0.0, 0.0, 0.848242808, 0.0, 0.380813953, 0.190667347, 1.0, 0.625264747], [0.863013699, 0.0, 0.0, 0.560702865, 0.0, 0.393023291, 0.296537931, 0.016483516, 0.40164446], [0.48173516, 0.0, 0.0, 0.448881776, 0.248447197, 0.578488372, 0.572002041, 0.074175824, 0.283667629], [0.20159818, 0.0, 0.625687123, 0.320287476, 0.307453407, 0.834592953, 0.523331632, 0.035714286, 0.254017684], [0.684474858, 0.263494709, 0.0, 0.204472776, 0.354037256, 0.423837174, 0.647516286, 0.016483516, 0.644948291], [0.474885845, 0.0, 0.0, 0.560702865, 0.0, 0.494186047, 0.643753115, 0.005494505, 0.093932979], [0.888127854, 0.072342795, 0.614692635, 0.704472836, 0.121118009, 0.235465116, 0.263421993, 0.151098901, 0.713342487], [0.181278525, 0.0, 0.834582684, 0.38178917, 0.236024837, 0.740116209, 0.461113896, 0.271978022, 0.536190358], [0.474885845, 0.397885371, 0.0, 0.36900957, 0.310558997, 0.328488372, 0.526843986, 0.074175824, 0.535318302], [0.350456621, 0.473845314, 0.0, 0.510383351, 0.0, 0.655813884, 0.326894119, 0.074175824, 0.370250402], [0.257762543, 0.149693934, 0.609195394, 0.269968082, 0.298136637, 0.620058105, 0.468138453, 0.005494505, 0.195465309], [0.52739726, 0.0, 0.0, 0.560702865, 0.0, 0.378488407, 0.623682867, 0.005494505, 0.165566218], [0.163926947, 0.259877584, 0.799100396, 0.403354642, 0.301242227, 0.59941864, 0.382839903, 0.151098901, 0.581288192], [0.424657534, 0.534223715, 0.0, 0.560702865, 0.0, 0.380813953, 0.310587043, 0.244505495, 0.600473405], [0.863013699, 0.0, 0.0, 0.560702865, 0.0, 0.393023291, 0.296537931, 0.074175824, 0.518375483], [0.456621005, 0.0, 0.0, 0.648562292, 0.0, 0.502906977, 0.559458137, 0.035714286, 0.196835672], [0.664383562, 0.0, 0.0, 0.560702865, 0.0, 0.404069767, 0.411440065, 0.244505495, 0.578796588], [0.633561644, 0.420701167, 0.0, 0.256389711, 0.493788805, 0.968895491, 0.02759659, 0.151098901, 0.654914704], [0.147945212, 0.69616027, 0.0, 0.652555902, 0.0, 0.50755807, 0.247365735, 0.016483516, 0.167185752], [0.014383568, 0.451864209, 0.0, 0.652555902, 0.0, 0.398837244, 0.639739125, 0.016483516, 0.067148376], [0.594977183, 0.52587647, 0.0, 0.344249138, 0.360248436, 0.417732593, 0.405920717, 0.016483516, 0.667372659], [0.563926941, 0.0, 0.0, 0.560702865, 0.0, 0.715116279, 0.53411951, 0.005494505, 0.158465184], [0.442922374, 0.0, 0.0, 0.512779541, 0.0, 0.840116279, 0.439036655, 0.074175824, 0.284664265], [0.255022824, 0.0, 0.873063427, 0.263578281, 0.316770176, 0.734011628, 0.457601693, 0.074175824, 0.471159872], [0.851598174, 0.330550932, 0.0, 0.473642208, 0.276397507, 0.148546442, 0.470396416, 0.151098901, 0.871683129], [0.908675799, 0.0, 0.0, 0.233226819, 0.279503097, 0.674418605, 0.153035634, 0.074175824, 0.841036473], [0.460273986, 0.389259867, 0.0, 0.732428109, 0.192546578, 0.274709302, 0.322378344, 0.074175824, 0.387317787], [0.202511409, 0.0, 0.626686648, 0.321885016, 0.242236017, 0.840116279, 0.526843986, 0.151098901, 0.411237085], [0.640410959, 0.0, 0.0, 0.510383351, 0.0, 0.717442003, 0.364525832, 0.074175824, 0.437398778], [0.563926941, 0.0, 0.0, 0.560702865, 0.0, 0.715116279, 0.53411951, 0.005494505, 0.158465184], [0.52283105, 0.0, 0.0, 0.560702865, 0.0, 0.651162791, 0.569493261, 0.074175824, 0.366388448], [0.9543379, 0.0, 0.0, 0.424920114, 0.161490678, 0.200581395, 0.529352766, 0.074175824, 0.606577815], [0.342009139, 0.0, 0.49925037, 0.194089485, 0.385093156, 0.595930233, 0.767185164, 0.271978022, 0.536190358], [0.186986288, 0.341124096, 0.0, 0.652555902, 0.0, 0.459883756, 0.516808862, 0.016483516, 0.105394297], [0.586757991, 0.052865888, 0.704647655, 0.257188481, 0.338509306, 0.409883721, 0.519317643, 0.016483516, 0.451974609], [0.078538799, 0.44963831, 0.628685653, 0.397763612, 0.322981356, 0.353488302, 0.427496323, 0.074175824, 0.333125709], [0.430136973, 0.0, 0.480759591, 0.36980834, 0.291925457, 0.465697709, 0.679879619, 0.074175824, 0.403762337], [0.563926941, 0.0, 0.0, 0.560702865, 0.0, 0.715116279, 0.531861547, 0.986263736, 0.49582661], [0.461187215, 0.211463554, 0.0, 0.848242808, 0.0, 0.380813953, 0.190667347, 0.739010989, 0.648436555], [0.349315068, 0.0, 0.0, 0.560702865, 0.0, 0.2581395, 0.88058209, 0.074175824, 0.204559616], [0.255022824, 0.0, 0.873063427, 0.263578281, 0.316770176, 0.734011628, 0.457601693, 0.005494505, 0.18985923], [0.100456621, 0.639955492, 0.0, 0.640575071, 0.093167699, 0.075581395, 0.697441086, 0.074175824, 0.382832961], [0.130136986, 0.414579862, 0.579710128, 0.424920114, 0.465838495, 0.441860465, 0.316106391, 0.074175824, 0.315809152], [0.526255708, 0.396494164, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 0.074175824, 0.38233463], [0.181278525, 0.0, 0.834582684, 0.38178917, 0.236024837, 0.740116209, 0.461113896, 0.271978022, 0.536190358], [0.220547959, 0.368391754, 0.0, 0.560702865, 0.0, 0.515697744, 0.580782775, 0.005494505, 0.084714092], [0.374429224, 0.317195331, 0.0, 0.848242808, 0.0, 0.380813953, 0.190667347, 0.244505495, 0.556870563], [0.735159817, 0.061213134, 0.659670145, 0.36900957, 0.276397507, 0.061046512, 0.391369818, 0.074175824, 0.869191475], [0.342465753, 0.0, 0.0, 0.50479232, 0.0, 0.901162791, 0.476668368, 0.016483516, 0.141771525], [0.46803653, 0.0, 0.0, 0.568690086, 0.0, 0.485465116, 0.546914233, 1.0, 0.421328053], [0.908675799, 0.0, 0.0, 0.62460063, 0.0, 0.941860465, 0.047666837, 0.0, 0.128441513], [0.014383568, 0.451864209, 0.0, 0.652555902, 0.0, 0.398837244, 0.639739125, 0.016483516, 0.067148376], [0.594977183, 0.52587647, 0.0, 0.344249138, 0.360248436, 0.417732593, 0.405920717, 0.247252747, 0.958888812], [0.341095877, 0.0, 0.591204395, 0.567891316, 0.180124218, 0.705232488, 0.402157546, 0.005494505, 0.120219263], [0.735159817, 0.061213134, 0.659670145, 0.36900957, 0.276397507, 0.061046512, 0.391369818, 0.151098901, 0.897346491], [0.447716909, 0.0, 0.537231368, 0.333865847, 0.397515516, 0.442441895, 0.476668368, 0.074175824, 0.417839789], [0.310730607, 0.0, 0.470264843, 0.518370572, 0.217391298, 0.432848907, 0.634721564, 0.005494505, 0.219260003], [0.251369877, 0.0, 0.607696124, 0.467252407, 0.177018628, 0.745930163, 0.464877068, 0.005494505, 0.126323661], [0.639269406, 0.0, 0.0, 0.512779541, 0.0, 0.715116279, 0.363773228, 0.016483516, 0.269963879], [0.342465753, 0.269894273, 0.379810084, 0.576677306, 0.248447197, 0.098837209, 0.569493261, 0.074175824, 0.387068678], [0.415525114, 0.333055089, 0.0, 0.37140576, 0.223602478, 0.49244193, 0.502257963, 0.074175824, 0.480877052], [0.341095877, 0.0, 0.591204395, 0.532747593, 0.180124218, 0.661046581, 0.410687461, 0.005494505, 0.185498933], [0.047031959, 0.511686135, 0.0, 0.652555902, 0.0, 0.456976779, 0.51705968, 0.016483516, 0.099912797], [0.251369877, 0.0, 0.607696124, 0.467252407, 0.177018628, 0.745930163, 0.464877068, 0.074175824, 0.281176038], [0.147945212, 0.69616027, 0.0, 0.652555902, 0.0, 0.50755807, 0.247365735, 0.016483516, 0.167185752], [0.851598174, 0.330550932, 0.0, 0.473642208, 0.276397507, 0.148546442, 0.470396416, 0.074175824, 0.82185131], [0.292237443, 0.0, 0.591204395, 0.588658137, 0.142857138, 0.663953558, 0.412945273, 0.005494505, 0.095926251], [0.274885831, 0.0, 0.483258341, 0.539137393, 0.139751548, 0.482848767, 0.693176128, 0.074175824, 0.281051446], [0.109589041, 0.658875924, 0.0, 0.415335473, 0.369565206, 0.779942003, 0.202709465, 0.074175824, 0.43727421], [0.594977183, 0.52587647, 0.0, 0.344249138, 0.360248436, 0.417732593, 0.405920717, 0.247252747, 0.958888812], [0.623287671, 0.260990552, 0.0, 0.038338619, 0.726708052, 0.148546442, 1.0, 0.005494505, 0.332253652], [0.621004566, 0.526432944, 0.0, 0.385782781, 0.313664587, 0.363662721, 0.40817868, 0.005494505, 0.399526633], [0.111643822, 0.0, 0.919040422, 0.357827509, 0.360248436, 0.552907012, 0.447064784, 0.074175824, 0.16494332], [0.737442922, 0.295770742, 0.0, 0.236421659, 0.577639734, 0.39244186, 0.526091381, 0.016483516, 0.554005234], [0.502283105, 0.0, 0.579710128, 0.592651747, 0.310558997, 0.049418605, 0.549423014, 0.074175824, 0.359411994], [0.639269406, 0.0, 0.0, 0.512779541, 0.0, 0.901162791, 0.476668368, 0.016483516, 0.113865706], [0.341095877, 0.0, 0.591204395, 0.532747593, 0.198757758, 0.661046581, 0.410687461, 0.074175824, 0.377849766], [0.077625571, 0.45075126, 0.629685139, 0.400958452, 0.310558997, 0.354651163, 0.42649275, 0.074175824, 0.333125709], [0.737442922, 0.295770742, 0.0, 0.25319487, 0.512422344, 0.148546442, 0.735323617, 0.074175824, 0.722063068], [0.094977183, 0.0, 0.874062912, 0.292332203, 0.555900604, 0.41191864, 0.628449611, 0.074175824, 0.163074627], [0.474885845, 0.0, 0.0, 0.560702865, 0.0, 0.613372093, 0.592072289, 0.016483516, 0.185748105], [0.341095877, 0.0, 0.591204395, 0.567891316, 0.180124218, 0.705232488, 0.402157546, 0.151098901, 0.460196847], [0.9543379, 0.0, 0.0, 0.384984011, 0.161490678, 0.156976744, 0.654791811, 0.074175824, 0.721938463], [0.851598174, 0.0, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 0.739010989, 0.49582661], [0.014383568, 0.451864209, 0.0, 0.652555902, 0.0, 0.398837244, 0.639739125, 0.074175824, 0.227482253], [0.337899543, 0.0, 0.47826084, 0.559105445, 0.164596268, 0.42994193, 0.660311159, 0.271978022, 0.483742382], [0.481050256, 0.402615469, 0.0, 0.043929714, 0.248447197, 0.577616314, 0.572503828, 0.074175824, 0.525601109], [0.117808233, 0.401224261, 0.561219388, 0.785143813, 0.313664587, 0.355232593, 0.160311159, 0.074175824, 0.176529218], [0.594977183, 0.52587647, 0.0, 0.344249138, 0.360248436, 0.417732593, 0.405920717, 0.151098901, 0.933972902], [0.146347046, 0.0, 0.816091945, 0.436900945, 0.139751548, 0.74883714, 0.466884062, 0.271978022, 0.388812779], [0.125570776, 0.595436849, 0.759620167, 0.62460063, 0.279503097, 0.052325581, 0.275965897, 0.074175824, 0.382708356], [0.664383562, 0.0, 0.0, 0.560702865, 0.0, 0.404069767, 0.411440065, 0.005494505, 0.209044493], [0.461187215, 0.211463554, 0.0, 0.848242808, 0.0, 0.380813953, 0.190667347, 1.0, 0.659399518], [0.202511409, 0.0, 0.626686648, 0.321885016, 0.242236017, 0.840116279, 0.526843986, 0.271978022, 0.476392188], [0.120547952, 0.0, 0.713643172, 0.571086276, 0.282608687, 0.71627914, 0.257651827, 0.074175824, 0.126199081], [0.621004566, 0.526432944, 0.0, 0.385782781, 0.313664587, 0.363662721, 0.40817868, 0.247252747, 0.779494251], [0.737442922, 0.295770742, 0.0, 0.236421659, 0.577639734, 0.39244186, 0.526091381, 0.005494505, 0.423196709], [0.796803653, 0.0, 0.0, 0.345047908, 0.350931666, 0.665697674, 0.378825913, 0.074175824, 0.952659834], [0.488812799, 0.586254871, 0.0, 0.510383351, 0.0, 0.511627907, 0.239086788, 0.074175824, 0.453095825], [0.342009139, 0.0, 0.49925037, 0.194089485, 0.385093156, 0.595930233, 0.767185164, 0.005494505, 0.232839174], [0.147945212, 0.69616027, 0.0, 0.652555902, 0.0, 0.50755807, 0.247365735, 0.005494505, 0.056932853], [1.0, 0.0, 0.0, 0.408945673, 0.0, 0.941860465, 0.047666837, 0.005494505, 0.489722187], [0.089726034, 0.589872019, 0.0, 0.652555902, 0.0, 0.496511593, 0.387606647, 0.244505495, 0.465055449], [0.430136973, 0.0, 0.480759591, 0.36980834, 0.291925457, 0.465697709, 0.679879619, 0.005494505, 0.251276947], [0.474885845, 0.0, 0.0, 0.560702865, 0.0, 0.613372093, 0.592072289, 0.244505495, 0.416469401], [0.105022831, 0.486922657, 0.0, 0.392971231, 0.062111799, 0.578488372, 0.587054727, 0.074175824, 0.306341106], [0.120547952, 0.0, 0.713643172, 0.571086276, 0.282608687, 0.221511663, 0.686653358, 0.074175824, 0.092313444], [0.095433797, 0.379243198, 0.530734602, 0.449680546, 0.232919247, 0.408430233, 0.452333163, 0.074175824, 0.296748481], [0.100456621, 0.481357827, 0.0, 0.480830658, 0.093167699, 0.537790698, 0.559458137, 0.074175824, 0.26672481], [0.684474858, 0.263494709, 0.0, 0.204472776, 0.354037256, 0.423837174, 0.647516286, 0.016483516, 0.644948291], [0.163242009, 0.139398995, 0.867066441, 0.343450487, 0.201863348, 0.596511663, 0.500501786, 0.151098901, 0.640837191], [0.149315055, 0.361435716, 0.642678671, 0.428913724, 0.242236017, 0.596802291, 0.382839903, 0.151098901, 0.615298396], [0.113242023, 0.0, 0.559220383, 0.49999994, 0.245341607, 0.555232558, 0.556698538, 0.074175824, 0.122710854], [0.563926941, 0.0, 0.0, 0.560702865, 0.0, 0.715116279, 0.531861547, 0.005494505, 0.157717707], [0.163242009, 0.139398995, 0.867066441, 0.343450487, 0.201863348, 0.596511663, 0.500501786, 0.035714286, 0.382210026], [0.52283105, 0.0, 0.0, 0.560702865, 0.0, 0.651162791, 0.569493261, 0.016483516, 0.188239708], [0.070776256, 0.556483037, 0.0, 0.560702865, 0.0, 0.36744193, 0.615153103, 0.244505495, 0.426809529], [0.125570776, 0.656649983, 0.0, 0.560702865, 0.0, 0.390697744, 0.469643812, 0.005494505, 0.091690547], [1.0, 0.0, 0.0, 0.408945673, 0.0, 0.941860465, 0.047666837, 0.491758242, 0.86321172], [0.737442922, 0.295770742, 0.0, 0.25319487, 0.512422344, 0.148546442, 0.735323617, 0.016483516, 0.58390435], [0.400000027, 0.272120213, 0.122438777, 0.310702835, 0.347826076, 0.757848695, 0.472905197, 0.151098901, 0.8034135], [1.0, 0.0, 0.0, 0.408945673, 0.0, 0.941860465, 0.047666837, 0.035714286, 0.715460314], [0.314155265, 1.0, 0.0, 0.510383351, 0.0, 0.40872086, 0.176367266, 0.016483516, 0.287654174], [0.52283105, 0.0, 0.0, 0.560702865, 0.0, 0.514534884, 0.579528384, 0.491758242, 0.456833199], [0.634703196, 0.0, 0.0, 0.848242808, 0.0, 0.380813953, 0.190667347, 0.244505495, 0.630123349], [0.255022824, 0.0, 0.873063427, 0.263578281, 0.316770176, 0.734011628, 0.457601693, 0.271978022, 0.594867363], [0.563926941, 0.0, 0.0, 0.560702865, 0.0, 0.74127907, 0.53938789, 0.005494505, 0.168680707], [0.506164411, 0.78686698, 0.0, 0.49520768, 0.319875766, 0.41191864, 0.16532872, 0.151098901, 0.970100896], [0.223744292, 0.370061219, 0.0, 0.560702865, 0.0, 0.477907047, 0.532363334, 0.074175824, 0.350193119], [0.143835616, 0.0, 0.717641188, 0.335463267, 0.0, 0.594767372, 0.769944913, 0.005494505, 0.150367513], [0.099771683, 0.480244877, 0.0, 0.480031888, 0.105590059, 0.537209267, 0.558956351, 0.074175824, 0.26672481], [0.146347046, 0.0, 0.816091945, 0.436900945, 0.139751548, 0.74883714, 0.466884062, 0.035714286, 0.288401652], [1.0, 0.0, 0.0, 0.408945673, 0.0, 0.941860465, 0.047666837, 0.739010989, 0.894979442], [0.292237443, 0.0, 0.591204395, 0.588658137, 0.142857138, 0.663953558, 0.412945273, 0.074175824, 0.275943697], [0.851598174, 0.0, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 0.074175824, 0.460446019], [0.102739726, 0.319977746, 0.444777598, 0.640575071, 0.279503097, 0.171511628, 0.589563508, 0.074175824, 0.22000748], [0.300913249, 0.0, 0.472763594, 0.607827419, 0.142857138, 0.424418605, 0.647767254, 0.074175824, 0.255512651], [0.737442922, 0.295770742, 0.0, 0.25319487, 0.512422344, 0.148546442, 0.735323617, 0.016483516, 0.58390435], [0.310730607, 0.0, 0.470264843, 0.518370572, 0.217391298, 0.432848907, 0.634721564, 0.074175824, 0.347576937], [0.673515982, 0.0, 0.0, 0.510383351, 0.0, 0.696511558, 0.351981928, 0.016483516, 0.288027925], [0.769406393, 0.492487487, 0.0, 0.512779541, 0.344720486, 0.243895419, 0.285750203, 0.151098901, 0.864208281], [0.205479452, 0.801335573, 0.0, 0.560702865, 0.0, 0.37441857, 0.306322086, 0.244505495, 0.602965008], [0.257762543, 0.149693934, 0.609195394, 0.269968082, 0.298136637, 0.620058105, 0.468138453, 0.271978022, 0.676466953], [0.737442922, 0.295770742, 0.0, 0.236421659, 0.577639734, 0.39244186, 0.526091381, 0.151098901, 0.779494251], [0.95890411, 0.0, 0.0, 0.193290715, 0.0, 0.276162791, 0.757651827, 0.016483516, 0.600224233], [0.341095877, 0.0, 0.591204395, 0.532747593, 0.180124218, 0.661046581, 0.410687461, 0.271978022, 0.513890657], [0.338356158, 0.464106861, 0.0, 0.652555902, 0.0, 0.513372023, 0.251128906, 0.016483516, 0.212034389], [0.680365297, 0.0, 0.0, 0.520766762, 0.0, 0.651162791, 0.378825913, 0.074175824, 0.515385599], [0.908675799, 0.0, 0.0, 0.62460063, 0.0, 0.941860465, 0.047666837, 0.035714286, 0.4311698], [0.52283105, 0.0, 0.0, 0.560702865, 0.0, 0.514534884, 0.579528384, 0.244505495, 0.43478262], [0.03196347, 0.481357827, 0.0, 0.560702865, 0.0, 0.316279035, 0.747365885, 0.016483516, 0.096673729], [0.54109589, 0.0, 0.0, 0.600638968, 0.0, 0.485465116, 0.469142025, 1.0, 0.455462812], [0.25456621, 0.0, 0.870564677, 0.261980861, 0.363354026, 0.730523398, 0.45534373, 0.005494505, 0.187367651], [0.625570776, 0.0, 0.0, 0.741214099, 0.0, 0.588662791, 0.422478761, 0.151098901, 0.423196709], [0.085844763, 0.582637723, 0.0, 0.560702865, 0.0, 0.715116279, 0.53411951, 0.491758242, 0.521739131], [0.420776228, 0.558987194, 0.0, 0.182907305, 0.347826076, 0.591860395, 0.526091381, 0.151098901, 0.880279055], [0.205479452, 0.801335573, 0.0, 0.560702865, 0.0, 0.37441857, 0.306322086, 0.005494505, 0.130310206], [0.163242009, 0.139398995, 0.867066441, 0.343450487, 0.201863348, 0.596511663, 0.500501786, 0.005494505, 0.25850256], [0.186986288, 0.341124096, 0.0, 0.652555902, 0.0, 0.459883756, 0.516808862, 0.244505495, 0.37623022], [0.447945233, 0.0, 0.534732618, 0.702076646, 0.344720486, 0.228488302, 0.376818919, 0.074175824, 0.368132549], [0.182648402, 0.125765169, 0.609695134, 0.386581431, 0.254658377, 0.75116286, 0.468389421, 0.074175824, 0.360533209], [0.650684932, 0.055648304, 0.469765103, 0.281150143, 0.444099365, 0.398255814, 0.629704002, 0.016483516, 0.429924017], [0.255251148, 0.272954924, 0.122438777, 0.478434468, 0.208074528, 0.770348837, 0.480431539, 0.074175824, 0.472156484], [0.52283105, 0.0, 0.0, 0.560702865, 0.0, 0.651162791, 0.569493261, 0.244505495, 0.443254029], [0.182420078, 0.759042828, 0.0, 0.510383351, 0.0, 0.614534953, 0.30180631, 0.074175824, 0.319048233], [0.149315055, 0.361435716, 0.642678671, 0.428913724, 0.242236017, 0.596802291, 0.382839903, 0.271978022, 0.639466815], [0.399543379, 0.324986102, 0.4547726, 0.549520804, 0.217391298, 0.422965116, 0.179628651, 0.074175824, 0.513890657], [0.309360731, 0.660823606, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 0.244505495, 0.383580413], [0.785388128, 0.066777964, 0.394802587, 0.321086246, 0.360248436, 0.48255814, 0.296036144, 0.074175824, 0.606577815], [0.474885845, 0.397885371, 0.554722622, 0.36900957, 0.683229792, 0.328488372, 0.14300051, 0.074175824, 0.390681447], [0.143835616, 0.357540351, 0.660169925, 0.425718884, 0.251552787, 0.595348802, 0.382839903, 0.271978022, 0.656409634], [0.408675799, 0.0, 0.0, 0.50479232, 0.0, 0.880813953, 0.451580559, 0.074175824, 0.250529482], [0.965753425, 0.0, 0.0, 0.536741203, 0.0, 0.941860465, 0.047666837, 0.035714286, 0.573937999], [0.220547959, 0.368391754, 0.0, 0.560702865, 0.0, 0.515697744, 0.580782775, 0.016483516, 0.153357423], [0.255022824, 0.272954924, 0.122438777, 0.478434468, 0.214285708, 0.769767584, 0.480180721, 0.271978022, 0.64245675], [0.95890411, 0.0, 0.0, 0.193290715, 0.0, 0.276162791, 0.757651827, 0.074175824, 0.905194965], [0.16073058, 0.037840846, 0.86156916, 0.279552722, 0.127329189, 0.596802291, 0.658304164, 0.005494505, 0.236202834], [0.085844763, 0.582637723, 0.0, 0.560702865, 0.0, 0.715116279, 0.53411951, 0.986263736, 0.527843554], [0.474885845, 0.0, 0.0, 0.560702865, 0.0, 0.613372093, 0.592072289, 0.005494505, 0.118599729], [0.23173516, 0.849471322, 0.0, 0.652555902, 0.0, 0.472093093, 0.090316112, 0.074175824, 0.490220518], [0.579680352, 0.0, 0.707646186, 0.571086276, 0.341614896, 0.00116286, 0.462619255, 0.074175824, 0.480129562], [0.287671233, 0.951864251, 0.0, 0.510383351, 0.0, 0.449999965, 0.201455075, 0.016483516, 0.244051333], [0.342465753, 0.0, 0.0, 0.50479232, 0.0, 0.901162791, 0.476668368, 0.074175824, 0.216270106], [0.149315055, 0.361435716, 0.642678671, 0.428913724, 0.242236017, 0.596802291, 0.382839903, 0.035714286, 0.367260493], [0.150684932, 0.117139674, 0.818590695, 0.0, 0.177018628, 0.749127765, 0.466884062, 0.151098901, 0.380216753], [0.086073053, 0.456037832, 0.638180875, 0.917731603, 0.180124218, 0.196511558, 0.154540842, 0.074175824, 0.40986671], [0.205479452, 0.801335573, 0.0, 0.560702865, 0.0, 0.37441857, 0.306322086, 0.074175824, 0.460819745], [0.335844763, 0.0, 0.493753124, 0.289936133, 0.397515516, 0.543023221, 0.740090361, 0.035714286, 0.328267107], [0.400000027, 0.272120213, 0.122438777, 0.310702835, 0.347826076, 0.757848695, 0.472905197, 0.005494505, 0.350317699], [0.863013699, 0.0, 0.0, 0.560702865, 0.0, 0.393023291, 0.296537931, 0.074175824, 0.518375483], [0.447488584, 0.38119088, 0.534732618, 0.632587851, 0.186335398, 0.223837209, 0.153035634, 0.074175824, 0.637722702], [0.417808219, 0.528658885, 0.0, 0.329073466, 0.236024837, 0.668604651, 0.22829906, 0.074175824, 0.638470204], [0.265296797, 0.151919863, 0.618690651, 0.151757192, 0.369565206, 0.798546369, 0.498494792, 0.151098901, 0.743241603], [0.148401826, 0.20979411, 0.834582684, 0.337060687, 0.245341607, 0.599709267, 0.441796253, 0.271978022, 0.678709385], [0.162100457, 0.322760161, 0.0, 0.560702865, 0.0, 0.423837174, 0.659307586, 0.244505495, 0.370873287], [0.980136959, 0.0, 0.0, 0.159744413, 0.875776401, 0.148546442, 0.751881661, 0.016483516, 0.555251067], [0.399543379, 0.0, 0.0, 0.552715644, 0.0, 0.485465116, 0.657300592, 0.491758242, 0.373738666], [0.20159818, 0.0, 0.625687123, 0.320287476, 0.307453407, 0.834592953, 0.523331632, 0.035714286, 0.254017684], [0.634703196, 0.264329442, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 0.244505495, 0.476267621], [0.650684932, 0.055648304, 0.469765103, 0.281150143, 0.431677005, 0.398255814, 0.629704002, 0.005494505, 0.28877539], [0.148401826, 0.20979411, 0.834582684, 0.337060687, 0.245341607, 0.599709267, 0.441796253, 0.074175824, 0.48685687], [0.146347046, 0.0, 0.816091945, 0.436900945, 0.139751548, 0.74883714, 0.466884062, 0.074175824, 0.239317323], [0.646118721, 0.0, 0.67966015, 0.289137363, 0.621117993, 0.296511628, 0.436527874, 0.074175824, 0.663012337], [0.118721461, 0.400667786, 0.559720123, 0.784345043, 0.310558997, 0.354651163, 0.160561977, 0.074175824, 0.176529218], [0.292237443, 0.0, 0.591204395, 0.588658137, 0.142857138, 0.663953558, 0.412945273, 0.035714286, 0.221128696], [0.526255708, 0.396494164, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 1.0, 0.482371994], [0.980136959, 0.0, 0.0, 0.159744413, 0.875776401, 0.148546442, 0.751881661, 0.247252747, 0.708483897], [0.347031963, 0.0, 0.0, 0.608626189, 0.0, 0.485465116, 0.674862058, 0.244505495, 0.306590278], [0.252283105, 0.0, 0.50174912, 0.299520774, 0.270186327, 0.601162756, 0.776718501, 0.005494505, 0.139653672], [0.633561644, 0.420701167, 0.0, 0.256389711, 0.493788805, 0.968895491, 0.02759659, 0.074175824, 0.621278214], [0.48173516, 0.403450202, 0.0, 0.041533523, 0.248447197, 0.578488372, 0.572002041, 0.074175824, 0.525601109], [0.577625571, 0.052865888, 0.484757607, 0.185303495, 0.381987566, 0.48255814, 0.694932305, 0.074175824, 0.661766567], [0.594977183, 0.52587647, 0.0, 0.344249138, 0.360248436, 0.417732593, 0.405920717, 0.016483516, 0.256260128], [0.147945212, 0.69616027, 0.0, 0.652555902, 0.0, 0.50755807, 0.247365735, 0.074175824, 0.393920541], [0.132420091, 0.695603796, 0.0, 0.36900957, 0.372670796, 0.720930233, 0.235825403, 0.074175824, 0.462439291], [0.25456621, 0.0, 0.870564677, 0.298722004, 0.363354026, 0.705232488, 0.446312179, 0.271978022, 0.630746235], [0.851598174, 0.0, 0.0, 0.321086246, 0.295031047, 0.706395349, 0.1705971, 0.074175824, 0.700012475], [0.452054795, 0.0, 0.0, 0.4968051, 0.0, 0.796511628, 0.504264958, 0.016483516, 0.1650679], [0.623287671, 0.260990552, 0.0, 0.038338619, 0.726708052, 0.148546442, 1.0, 0.074175824, 0.67733901], [0.657305922, 0.52587647, 0.0, 0.192491946, 0.683229792, 0.417732593, 0.405920717, 0.005494505, 0.476765902], [0.538584461, 0.52587647, 0.0, 0.424121344, 0.295031047, 0.417732593, 0.405920717, 0.005494505, 0.271209674], [0.529680365, 0.048970507, 0.789605174, 0.536741203, 0.475155265, 0.48255814, 0.097842454, 0.074175824, 0.523234123], [0.337899543, 0.0, 0.47826084, 0.523961602, 0.170807448, 0.453197744, 0.670346282, 0.035714286, 0.281425197], [0.111872146, 0.0, 0.924537703, 0.361022349, 0.496894395, 0.793604651, 0.210737594, 0.074175824, 0.138657036], [0.673515982, 0.0, 0.0, 0.510383351, 0.0, 0.696511558, 0.351981928, 0.074175824, 0.383082132], [0.547945205, 0.105731777, 0.0, 0.848242808, 0.0, 0.380813953, 0.190667347, 0.244505495, 0.599601348], [0.735159817, 0.061213134, 0.659670145, 0.36900957, 0.276397507, 0.061046512, 0.391369818, 0.016483516, 0.472903973], [0.965753425, 0.0, 0.0, 0.536741203, 0.0, 0.941860465, 0.047666837, 0.005494505, 0.392051822], [0.503424658, 0.413466913, 0.0, 0.511182121, 0.263975147, 0.436046512, 0.289764192, 0.074175824, 0.624143531], [0.310502283, 0.0, 0.0, 0.512779541, 0.0, 0.924418605, 0.489212272, 0.016483516, 0.12109132], [0.228310502, 0.030606567, 0.704647655, 0.672523954, 0.052795029, 0.409883721, 0.519317643, 0.151098901, 0.260620413], [0.337899543, 0.0, 0.47826084, 0.523961602, 0.170807448, 0.453197744, 0.670346282, 0.005494505, 0.1431419], [0.335844763, 0.0, 0.493753124, 0.289936133, 0.397515516, 0.543023221, 0.740090361, 0.271978022, 0.607076146], [0.076940632, 0.56622149, 0.0, 0.510383351, 0.0, 0.799999858, 0.41470145, 0.016483516, 0.064532205], [0.095890411, 0.041736228, 0.974512714, 0.432907335, 0.186335398, 0.639534884, 0.288509802, 0.074175824, 0.162077991], [0.300913249, 0.0, 0.472763594, 0.607827419, 0.142857138, 0.424418605, 0.647767254, 0.035714286, 0.24679207], [0.365296804, 0.308848085, 0.429785095, 0.584664527, 0.155279498, 0.273255814, 0.348720543, 0.074175824, 0.391055211], [0.511415525, 0.0, 0.689655152, 0.616613409, 0.341614896, 0.0, 0.496738615, 0.074175824, 0.477762563], [0.447488584, 0.0, 0.534732618, 0.704472836, 0.341614896, 0.229651163, 0.376317133, 0.074175824, 0.368007995], [0.52283105, 0.0, 0.0, 0.560702865, 0.0, 0.226744186, 0.579528384, 0.005494505, 0.139404513], [0.202511409, 0.0, 0.626686648, 0.321885016, 0.242236017, 0.840116279, 0.526843986, 0.035714286, 0.233337479], [0.424657534, 0.534223715, 0.0, 0.560702865, 0.0, 0.380813953, 0.310587043, 0.016483516, 0.26398406], [0.390410959, 0.0, 0.449775099, 0.616613409, 0.341614896, 0.377906977, 0.421475188, 0.074175824, 0.37261745], [0.623287671, 0.260990552, 0.0, 0.038338619, 0.726708052, 0.148546442, 1.0, 0.247252747, 0.749595135], [0.148401826, 0.520311639, 0.974512714, 0.50479232, 0.217391298, 0.281976744, 0.105368797, 0.074175824, 0.268593491], [0.255251148, 0.272954924, 0.122438777, 0.478434468, 0.208074528, 0.770348837, 0.480431539, 0.271978022, 0.593496975], [0.252511429, 0.0, 0.50174912, 0.300319424, 0.322981356, 0.589534849, 0.777220288, 0.151098901, 0.52410618], [0.566210046, 0.0, 0.0, 0.648562292, 0.0, 0.502906977, 0.45408934, 0.074175824, 0.311573447], [0.116438356, 0.283806349, 0.0, 0.560702865, 0.0, 0.252906977, 0.875815346, 0.244505495, 0.298866334], [0.640410959, 0.0, 0.0, 0.510383351, 0.0, 0.717442003, 0.364525832, 0.016483516, 0.270835935], [0.594977183, 0.52587647, 0.0, 0.344249138, 0.360248436, 0.417732593, 0.405920717, 0.005494505, 0.410738754], [0.070776256, 0.556483037, 0.0, 0.560702865, 0.0, 0.36744193, 0.615153103, 0.016483516, 0.141148627], [0.341095877, 0.0, 0.591204395, 0.532747593, 0.180124218, 0.661046581, 0.410687461, 0.151098901, 0.431543564], [0.769406393, 0.492487487, 0.0, 0.512779541, 0.344720486, 0.243895419, 0.285750203, 0.247252747, 0.884141083], [0.223744292, 0.370061219, 0.0, 0.560702865, 0.0, 0.477907047, 0.532363334, 0.016483516, 0.184876048], [0.633561644, 0.420701167, 0.0, 0.256389711, 0.493788805, 0.968895491, 0.02759659, 0.005494505, 0.32727047], [0.737442922, 0.295770742, 0.0, 0.25319487, 0.512422344, 0.148546442, 0.735323617, 0.005494505, 0.387068678], [0.52283105, 0.0, 0.0, 0.560702865, 0.0, 0.514534884, 0.579528384, 0.005494505, 0.139404513], [0.577625571, 0.052865888, 0.484757607, 0.185303495, 0.406832286, 0.48255814, 0.694932305, 0.074175824, 0.519496699], [0.762557078, 0.0, 0.0, 0.768370601, 0.0, 0.108721, 0.315353787, 0.074175824, 0.268095185], [0.280821918, 0.0, 0.0, 0.472843438, 0.0, 0.906976744, 0.599598631, 0.016483516, 0.11012832], [0.482420064, 0.729549294, 0.0, 0.428913724, 0.267080737, 0.714825651, 0.04465627, 0.016483516, 0.504173415], [0.863013699, 0.0, 0.0, 0.560702865, 0.0, 0.393023291, 0.296537931, 0.005494505, 0.274947061], [0.785388128, 0.066777964, 0.394802587, 0.321086246, 0.319875766, 0.48255814, 0.296036144, 0.151098901, 0.653295145], [0.634703196, 0.264329442, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 0.491758242, 0.478759175], [0.296347039, 0.0, 0.607696124, 0.416932893, 0.208074528, 0.74244193, 0.462870073, 0.271978022, 0.54204561], [0.474885845, 0.0, 0.0, 0.560702865, 0.0, 0.494186047, 0.643753115, 0.005494505, 0.093932979], [0.500913228, 0.0, 0.639180401, 0.484824269, 0.357142846, 0.200872023, 0.46588064, 0.074175824, 0.435280938], [0.54109589, 0.0, 0.0, 0.600638968, 0.0, 0.485465116, 0.469142025, 0.074175824, 0.370125847], [0.068493151, 0.575959943, 0.804597677, 0.456868997, 0.155279498, 0.191860465, 0.356246885, 0.074175824, 0.385822845], [0.143835616, 0.357540351, 0.660169925, 0.425718884, 0.251552787, 0.595348802, 0.382839903, 0.005494505, 0.212906446], [0.118721461, 0.484140242, 0.924537703, 0.848242808, 0.217391298, 0.127906977, 0.045158056, 0.074175824, 0.274199583], [0.737442922, 0.295770742, 0.0, 0.25319487, 0.512422344, 0.148546442, 0.735323617, 0.074175824, 0.722063068], [0.337899543, 0.0, 0.47826084, 0.559105445, 0.164596268, 0.42994193, 0.660311159, 0.151098901, 0.464806278], [0.296347039, 0.0, 0.607696124, 0.416932893, 0.208074528, 0.74244193, 0.462870073, 0.005494505, 0.163323786], [0.625570776, 0.0, 0.0, 0.741214099, 0.0, 0.588662791, 0.422478761, 0.035714286, 0.290145778], [0.851598174, 0.330550932, 0.0, 0.473642208, 0.276397507, 0.148546442, 0.470396416, 0.016483516, 0.663635223], [0.310730607, 0.0, 0.0, 0.510383351, 0.0, 0.923837352, 0.489964876, 0.074175824, 0.189983809], [0.563926941, 0.0, 0.0, 0.560702865, 0.0, 0.715116279, 0.531861547, 0.074175824, 0.378597256], [0.673515982, 0.0, 0.0, 0.50479232, 0.0, 0.694767442, 0.351229324, 0.074175824, 0.457954415], [0.502283105, 0.0, 0.0, 0.648562292, 0.0, 0.502906977, 0.516808862, 0.074175824, 0.284664265], [0.464155224, 0.56622149, 0.0, 0.652555902, 0.0, 0.477907047, 0.092824893, 0.005494505, 0.147128445], [0.547945205, 0.105731777, 0.0, 0.848242808, 0.0, 0.380813953, 0.190667347, 0.739010989, 0.656907965], [0.093607306, 0.471341115, 0.713143392, 0.550319454, 0.260869557, 0.483721, 0.124184654, 0.074175824, 0.341347959], [0.63789953, 0.0, 0.0, 0.510383351, 0.0, 0.88255807, 0.477420972, 0.016483516, 0.152111627], [0.908675799, 0.0, 0.0, 0.62460063, 0.0, 0.941860465, 0.047666837, 0.244505495, 0.5592376], [0.494977142, 0.591263226, 0.0, 0.270766732, 0.444099365, 0.148546442, 0.718514905, 0.016483516, 0.387068678], [1.0, 0.0, 0.0, 0.408945673, 0.0, 0.941860465, 0.047666837, 0.244505495, 0.838794141], [0.211643829, 0.0, 0.502248861, 0.386581431, 0.232919247, 0.572674419, 0.772202726, 0.271978022, 0.522611188], [0.594977183, 0.52587647, 0.0, 0.344249138, 0.360248436, 0.417732593, 0.405920717, 0.247252747, 0.958888812], [0.405936046, 0.3586533, 0.50174912, 0.404153292, 0.295031047, 0.07005807, 0.529101949, 0.074175824, 0.629126738], [0.563926941, 0.0, 0.0, 0.560702865, 0.0, 0.74127907, 0.53938789, 0.244505495, 0.477513404], [0.105251155, 0.0, 0.68265868, 0.289936133, 0.499999984, 0.583720895, 0.592323106, 0.074175824, 0.19471782], [0.664383562, 0.0, 0.0, 0.560702865, 0.0, 0.404069767, 0.411440065, 0.074175824, 0.464058838], [0.362785374, 0.279632726, 0.391304351, 0.62939301, 0.267080737, 0.184593023, 0.420220798, 0.074175824, 0.374610723], [0.121004566, 0.511964394, 0.714642657, 0.576677306, 0.279503097, 0.229651163, 0.263421993, 0.074175824, 0.332129073], [0.426940639, 0.0, 0.0, 0.560702865, 0.0, 0.326162826, 0.75589565, 0.244505495, 0.370499573], [0.076940632, 0.56622149, 0.0, 0.510383351, 0.0, 0.799999858, 0.41470145, 0.074175824, 0.197707754], [0.54109589, 0.0, 0.0, 0.50479232, 0.0, 0.779069767, 0.401404941, 0.016483516, 0.234583287], [0.395205493, 0.0, 0.606696643, 0.301118194, 0.307453407, 0.734302256, 0.460361292, 0.074175824, 0.610439806], [0.594977183, 0.52587647, 0.0, 0.344249138, 0.360248436, 0.417732593, 0.405920717, 0.016483516, 0.667372659], [0.445662128, 0.0, 0.587206379, 0.423322694, 0.295031047, 0.644767407, 0.400150551, 0.151098901, 0.61828828], [0.107305936, 0.656649983, 0.0, 0.432907335, 0.403726696, 0.13372093, 0.750125484, 0.074175824, 0.38158714], [0.337899543, 0.0, 0.47826084, 0.523961602, 0.170807448, 0.453197744, 0.670346282, 0.074175824, 0.33499439], [0.107305936, 0.328324992, 0.459770101, 0.488817879, 0.217391298, 0.441860465, 0.466633244, 0.074175824, 0.26398406], [0.474885845, 0.0, 0.0, 0.560702865, 0.0, 0.49127907, 0.642247906, 0.491758242, 0.43602844], [0.534246575, 0.0, 0.0, 0.480830658, 0.093167699, 0.537790698, 0.559458137, 0.074175824, 0.529836826], [0.474885845, 0.0, 0.0, 0.560702865, 0.0, 0.49127907, 0.642247906, 0.016483516, 0.157717707], [0.310730607, 0.0, 0.470264843, 0.518370572, 0.217391298, 0.432848907, 0.634721564, 0.151098901, 0.464183393], [0.257762543, 0.149693934, 0.609195394, 0.269968082, 0.298136637, 0.620058105, 0.468138453, 0.074175824, 0.621278214], [0.945205479, 0.0, 0.0, 0.321086246, 0.254658377, 0.0, 0.521826424, 0.074175824, 0.48635854], [0.785388128, 0.066777964, 0.394802587, 0.321086246, 0.360248436, 0.48255814, 0.296036144, 0.005494505, 0.282670992], [0.265296797, 0.151919863, 0.618690651, 0.151757192, 0.369565206, 0.798546369, 0.498494792, 0.005494505, 0.312570084], [0.192237436, 0.345297719, 0.0, 0.510383351, 0.0, 0.820930302, 0.427245354, 0.016483516, 0.070636603], [0.223744292, 0.0, 0.0, 0.464856217, 0.0, 0.941860465, 0.629704002, 0.074175824, 0.123582911], [0.182420078, 0.759042828, 0.0, 0.510383351, 0.0, 0.614534953, 0.30180631, 0.016483516, 0.125077865], [0.251141553, 0.0, 0.623688152, 0.297124584, 0.242236017, 0.826744256, 0.515554472, 0.151098901, 0.532577589], [0.888127854, 0.072342795, 0.614692635, 0.704472836, 0.121118009, 0.235465116, 0.263421993, 0.151098901, 0.713342487], [0.851598174, 0.0, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 0.016483516, 0.451849993], [0.735159817, 0.061213134, 0.659670145, 0.448881776, 0.263975147, 0.061046512, 0.391369818, 0.151098901, 0.789460553], [0.136986301, 0.528658885, 0.739630163, 0.456868997, 0.590062093, 0.10755814, 0.36879079, 0.074175824, 0.391553492], [0.945205479, 0.0, 0.0, 0.321086246, 0.257763967, 0.0, 0.521826424, 0.074175824, 0.48635854], [0.136986301, 0.575959943, 0.859570189, 0.75239616, 0.310558997, 0.061046512, 0.110386359, 0.074175824, 0.467297881], [0.743150685, 0.132164721, 0.0, 0.848242808, 0.0, 0.380813953, 0.0, 0.491758242, 0.492213791], [0.888127854, 0.072342795, 0.614692635, 0.704472836, 0.121118009, 0.235465116, 0.263421993, 0.005494505, 0.290021198], [0.186986288, 0.341124096, 0.0, 0.652555902, 0.0, 0.459883756, 0.516808862, 0.005494505, 0.032016944], [0.141552511, 0.0, 0.99950022, 0.472843438, 0.403726696, 0.139534884, 0.632212783, 0.074175824, 0.158963502], [0.202511409, 0.0, 0.626686648, 0.321885016, 0.242236017, 0.840116279, 0.526843986, 0.074175824, 0.29986297], [0.300913249, 0.0, 0.472763594, 0.607827419, 0.142857138, 0.424418605, 0.647767254, 0.005494505, 0.100286535], [0.108447489, 0.656649983, 0.0, 0.431309914, 0.391304336, 0.1331395, 0.74937288, 0.074175824, 0.38158714], [0.116438356, 0.664997229, 0.0, 0.62460063, 0.186335398, 0.584302326, 0.22579028, 0.074175824, 0.305593642], [0.586757991, 0.052865888, 0.704647655, 0.257188481, 0.338509306, 0.409883721, 0.519317643, 0.074175824, 0.712096716], [0.255251148, 0.272954924, 0.122438777, 0.478434468, 0.208074528, 0.770348837, 0.480431539, 0.151098901, 0.558116384], [0.389954311, 0.506121305, 0.0, 0.510383351, 0.0, 0.614534953, 0.30180631, 0.074175824, 0.361903572]];
  dataSetTest.addInstances(instances);
  dataSetTest.trainTestSet = 500;

  // The first parameter defines the number of neurons in the input layer .
  // The second parameter defines the number of neurons in the hidden layer.
  // The third parameter refers to the number of neurons in the output layer.
  // The last parameter is the maximum number of iterations for learning.

  RadialBase radialNetwork = new RadialBase(8,3,1,500);

  //An initialization of the network its needed.

  List<List<double>> trainInstances = [];
  for(int i = 0; i < dataSetTest.instances.length; i++){
    if(dataSetTest.instances[i].isForTrain!=null && dataSetTest.instances[i].isForTrain)
      trainInstances.add(dataSetTest.instanceValues(i));
  }

  (radialNetwork.learningRule as RadialLearning).initialization(trainInstances);

  //Learn

  radialNetwork.learningRule.learningRate = 0.0001;
  radialNetwork.learningRule.learn(dataSetTest);

  // Test

  TestingRule testRule = new TestingRule(new MeanSquareError(),radialNetwork);
  testRule.test(dataSetTest);
}
0
likes
25
points
3
downloads

Publisher

unverified uploader

Weekly Downloads

Library for creating artificial neural networks.

Repository (GitHub)
View/report issues

License

BSD-3-Clause (license)

Dependencies

collection, json_object

More

Packages that depend on neural_network