Code viewer for World: Character recognition neur...

// Cloned by Dom on 20 Dec 2019 from World "Character recognition neural network" by "Coding Train" project 
// Please leave this clone trail here.



//***********************DC***********************//

//In this script I will attempt to integrate the synaptic.js library for an alternative neural network for MNIST

// Import stylesheets



 
 // Porting in entire script by Jason Mayes at https://codepen.io/h-cal/pen/pVKKev
 


// Cloned by Dom on 21 Dec 2019 from World "Testing" by Michael Ryan 
// Please leave this clone trail here.
 
document.write ( `

<h1> Dom's Web page </h1>

<p>
Insert whatever HTML you want in here.
</p>

` );


function loadScripts(callbackFunction)


{
    $.getScript("uploads/dom84/synaptic.js", function( data, textStatus, jqxhr ) {
      console.log( data ); // Data returned
      console.log( textStatus ); // Success
      console.log( jqxhr.status ); // 200
      console.log( "Synaptic Load was performed." );
    
//    $.getScript ( "/uploads/codingtrain/mnist.js", function()
  //      {   console.log ("MNIST loaded");
           // nn = new NeuralNetwork(  noinput, nohidden, nooutput );
        //    nn.setLearningRate ( learningrate );
          //  loadData();
    //    });
      
      callbackFunction();
    });
}



function Perceptron(input, hidden, output)
{
	// create the layers
	var inputLayer = new Layer(input);
	var hiddenLayer = new Layer(hidden);
	var outputLayer = new Layer(output);

	// connect the layers
	inputLayer.project(hiddenLayer);
	hiddenLayer.project(outputLayer);

	// set the layers
	this.set({
		input: inputLayer,
		hidden: [hiddenLayer],
		output: outputLayer
	});
}


function main()
{
    console.log("We have imported our external scripts, now we can use them");
        
    
    var Neuron = synaptic.Neuron;
    var Layer = synaptic.Layer;
    var Network = synaptic.Network;
    var Trainer = synaptic.Trainer;
    var Architect = synaptic.Architect;
    
    
    // extend the prototype chain
    Perceptron.prototype = new Network();         
    Perceptron.prototype.constructor = Perceptron;
    
    console.log("Didn't crash");
    
function Perceptron(input, hidden, hidden2, output)
{
  // create the layers
  var inputLayer = new Layer(input);
  var hiddenLayer = new Layer(hidden);
  var hidden2Layer = new Layer(hidden2);
  var outputLayer = new Layer(output);

  // connect the layers
  inputLayer.project(hiddenLayer, Layer.connectionType.ALL_TO_ALL);
  hiddenLayer.project(hidden2Layer, Layer.connectionType.ALL_TO_ALL);
  hidden2Layer.project(outputLayer, Layer.connectionType.ALL_TO_ALL);

  // set the layers
  this.set({
    input: inputLayer,
    hidden: [hiddenLayer, hidden2Layer],
    output: outputLayer
  });
  
  Perceptron.prototype = new Network();
Perceptron.prototype.constructor = Perceptron;

var interval = 1000;
var ranger = document.getElementById('ranger');
var domSpeed = document.getElementById('domSpeed');

ranger.addEventListener('input', function(e) {
interval = this.value;
domSpeed.innerText = 'Change speed of classification! Currently: ' + interval + 'ms';
});

var context = document.getElementById('mnist').getContext('2d');
var result = document.getElementById('result');
var current = 0;

var myPerceptron = new Perceptron(784,7,5,10);
var myTrainer = new Trainer(myPerceptron);
var set = mnist.set(8000, 2000);

var trainingSet = set.training;
var testSet = set.test;


function train() {
  var learningRate = 0.03;
  for (var i = 0; i < 100; i++) {
    for (var n = 0; n < trainingSet.length; n++) {
      myPerceptron.activate(trainingSet[n].input);
      myPerceptron.propagate(learningRate, trainingSet[n].output);
    }
  }

  var jsdom = document.getElementById('json');
  jsdom.innerText = JSON.stringify(myPerceptron.toJSON());
}


function itterate() {
  var digit = testSet[current];
  mnist.draw(digit.input, context);
  var resultSet = myPerceptron.activate(testSet[current].input);
  var max = 0;
  var index = 0;

  for (var j = 0; j < resultSet.length; j++) {
    if (resultSet[j] > max) {
      max = resultSet[j];
      index = j;
    }
  }

  result.innerText = index;
  current++;

  if (current === testSet.length) {
    current = 0;
  }
  setTimeout(itterate, interval);
}

function loadNetwork() {
  myPerceptron = Network.fromJSON(JSON.parse('{"neurons":[{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.059,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.969,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.71,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.098,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.071,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.749,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.169,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.051,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.761,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.992,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.165,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.765,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.667,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.071,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.655,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.984,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.918,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.082,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.059,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.918,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.988,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.608,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.11,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.067,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.427,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.898,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.435,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.216,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.749,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.49,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.059,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.643,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.608,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.067,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.071,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.918,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.769,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.078,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.063,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.565,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.792,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.078,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.188,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.467,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.788,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.561,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.118,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.208,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.784,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.067,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.055,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.424,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.945,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.737,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.051,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.008,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.69,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.588,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.078,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.247,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.878,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.592,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.369,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.965,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.149,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.71,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.984,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.592,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.451,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.976,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.804,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.325,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.471,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.976,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.984,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.02,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.451,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.835,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.816,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.937,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":1,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.722,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.008,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.451,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.953,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.302,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.102,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.212,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.945,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.894,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.416,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.176,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.612,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.969,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.518,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.298,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.059,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.714,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.996,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.973,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.663,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.506,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0.012,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":0,"old":0,"activation":0,"bias":0,"layer":"input","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":-16.925560339627467,"old":-25.831056940852886,"activation":4.459873309675507e-8,"bias":-0.652980964048018,"layer":0,"squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":37.58533780197962,"old":18.90383269913179,"activation":1,"bias":3.276619769592892,"layer":0,"squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":44.645650443025254,"old":0.43579764741212507,"activation":1,"bias":9.446171604234031,"layer":0,"squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":25.50090120759208,"old":34.28492177787298,"activation":0.9999999999915841,"bias":4.669331520611202,"layer":0,"squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":-50.35912057242678,"old":-45.50426818870026,"activation":1.3468270239982238e-22,"bias":-8.704913547341459,"layer":0,"squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":-31.577913623191044,"old":14.820071725556875,"activation":1.931462868430977e-14,"bias":2.3398668682967485,"layer":0,"squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":45.50197338002963,"old":97.2453134746828,"activation":1,"bias":2.813342829576188,"layer":0,"squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":-5.8259662876756115,"old":-3.890831392754176,"activation":0.0029412756494175732,"bias":-2.6531574618564044,"layer":1,"squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":-3.0736540048861594,"old":2.4628067208181834,"activation":0.04420717788176969,"bias":-2.826329175679797,"layer":1,"squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":2.3450182975928078,"old":-2.5920337483441607,"activation":0.9125374399138785,"bias":-2.634116761693066,"layer":1,"squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":1.9537309842858779,"old":2.3666458276430893,"activation":0.8758528981151615,"bias":-16.09479076170273,"layer":1,"squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":8.094871500176815,"old":8.734656311840752,"activation":0.9996949932204224,"bias":4.5363692710782075,"layer":1,"squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":-5.141541016192928,"old":-10.973096156438555,"activation":0.005814661832813847,"bias":-9.22555240429505,"layer":"output","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":-11.328251639719234,"old":-8.885630324551359,"activation":0.000012028115769222992,"bias":5.547359456789602,"layer":"output","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":-4.197502003240558,"old":-8.037826900423477,"activation":0.014810436040307125,"bias":-3.114241648531602,"layer":"output","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":-10.671627639152277,"old":-0.5833720769019917,"activation":0.000023193213755160365,"bias":-3.4960215161066444,"layer":"output","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":-6.184236392187186,"old":-9.302575281521111,"activation":0.0020574335032891903,"bias":-6.927797465104359,"layer":"output","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":-5.253588661115957,"old":0.2368727582930794,"activation":0.005201523271818302,"bias":-4.351158152256564,"layer":"output","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":3.4620736045865925,"old":-6.033464436373279,"activation":0.9695891686394738,"bias":-6.33467758972036,"layer":"output","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":-15.908312804794539,"old":-11.683988202680235,"activation":1.2334100389887386e-7,"bias":-3.43878290001023,"layer":"output","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":-8.823161435228263,"old":-0.11599719040064871,"activation":0.0001472603121384344,"bias":-3.39811206379702,"layer":"output","squash":"LOGISTIC"},{"trace":{"elegibility":{},"extended":{}},"state":-16.712394854934992,"old":-2.7726563832837066,"activation":5.5194920372779974e-8,"bias":-8.682480734022855,"layer":"output","squash":"LOGISTIC"}],"connections":[{"from":0,"to":784,"weight":0.09325090393384824,"gater":null},{"from":0,"to":785,"weight":-0.054592321012487725,"gater":null},{"from":0,"to":786,"weight":0.06185838135239635,"gater":null},{"from":0,"to":787,"weight":0.05004378227641776,"gater":null},{"from":0,"to":788,"weight":-0.004933274572407248,"gater":null},{"from":0,"to":789,"weight":0.03717904017660284,"gater":null},{"from":0,"to":790,"weight":-0.004631298416723079,"gater":null},{"from":1,"to":784,"weight":-0.009624400153286666,"gater":null},{"from":1,"to":785,"weight":0.06910590822669102,"gater":null},{"from":1,"to":786,"weight":0.08960565439094711,"gater":null},{"from":1,"to":787,"weight":0.07201128588560143,"gater":null},{"from":1,"to":788,"weight":0.031739217033138006,"gater":null},{"from":1,"to":789,"weight":0.0591662874633507,"gater":null},{"from":1,"to":790,"weight":0.02803357816746202,"gater":null},{"from":2,"to":784,"weight":-0.0402219170881331,"gater":null},{"from":2,"to":785,"weight":-0.05144674043054823,"gater":null},{"from":2,"to":786,"weight":-0.005624497351433708,"gater":null},{"from":2,"to":787,"weight":-0.01718874090329972,"gater":null},{"from":2,"to":788,"weight":0.0467827150892243,"gater":null},{"from":2,"to":789,"weight":-0.024335406680112776,"gater":null},{"from":2,"to":790,"weight":0.052626941243422015,"gater":null},{"from":3,"to":784,"weight":0.05338007487599197,"gater":null},{"from":3,"to":785,"weight":0.013159821557372497,"gater":null},{"from":3,"to":786,"weight":0.013889783573820716,"gater":null},{"from":3,"to":787,"weight":-0.035760275548670034,"gater":null},{"from":3,"to":788,"weight":-0.021058390245374037,"gater":null},{"from":3,"to":789,"weight":0.07223577239492776,"gater":null},{"from":3,"to":790,"weight":-0.0622603348769478,"gater":null},{"from":4,"to":784,"weight":-0.058739158846879524,"gater":null},{"from":4,"to":785,"weight":-0.02147165209547923,"gater":null},{"from":4,"to":786,"weight":-0.08352643492361214,"gater":null},{"from":4,"to":787,"weight":-0.020293636217931524,"gater":null},{"from":4,"to":788,"weight":-0.0801809600621509,"gater":null},{"from":4,"to":789,"weight":0.0960759113637773,"gater":null},{"from":4,"to":790,"weight":-0.08327284550514658,"gater":null},{"from":5,"to":784,"weight":-0.04892208326120145,"gater":null},{"from":5,"to":785,"weight":-0.07562396393646723,"gater":null},{"from":5,"to":786,"weight":-0.04391277826659637,"gater":null},{"from":5,"to":787,"weight":-0.006736175738806388,"gater":null},{"from":5,"to":788,"weight":-0.09169285048527774,"gater":null},{"from":5,"to":789,"weight":-0.054711433113405185,"gater":null},{"from":5,"to":790,"weight":0.021839346480966,"gater":null},{"from":6,"to":784,"weight":0.02238636682159982,"gater":null},{"from":6,"to":785,"weight":-0.013009940478579465,"gater":null},{"from":6,"to":786,"weight":0.08837055887822115,"gater":null},{"from":6,"to":787,"weight":-0.0906704576551296,"gater":null},{"from":6,"to":788,"weight":-0.03563072130801097,"gater":null},{"from":6,"to":789,"weight":0.06969297086618695,"gater":null},{"from":6,"to":790,"weight":0.01444257607809854,"gater":null},{"from":7,"to":784,"weight":0.007951731948263013,"gater":null},{"from":7,"to":785,"weight":-0.009466780529362367,"gater":null},{"from":7,"to":786,"weight":0.03888395064480518,"gater":null},{"from":7,"to":787,"weight":-0.0507132289827434,"gater":null},{"from":7,"to":788,"weight":-0.07461701769993052,"gater":null},{"from":7,"to":789,"weight":0.031165599430823004,"gater":null},{"from":7,"to":790,"weight":-0.09528921799992807,"gater":null},{"from":8,"to":784,"weight":-0.0743941844123564,"gater":null},{"from":8,"to":785,"weight":-0.003258720260908593,"gater":null},{"from":8,"to":786,"weight":-0.007087287169838419,"gater":null},{"from":8,"to":787,"weight":0.09642996826055064,"gater":null},{"from":8,"to":788,"weight":-0.06340870031851771,"gater":null},{"from":8,"to":789,"weight":-0.043792629137744093,"gater":null},{"from":8,"to":790,"weight":0.06801515381591852,"gater":null},{"from":9,"to":784,"weight":0.03972942076384359,"gater":null},{"from":9,"to":785,"weight":0.07945499346052798,"gater":null},{"from":9,"to":786,"weight":0.03617688394787261,"gater":null},{"from":9,"to":787,"weight":0.039695691542883715,"gater":null},{"from":9,"to":788,"weight":0.03811204268963114,"gater":null},{"from":9,"to":789,"weight":0.000031104038923326915,"gater":null},{"from":9,"to":790,"weight":0.07310907684775644,"gater":null},{"from":10,"to":784,"weight":0.03790246083198659,"gater":null},{"from":10,"to":785,"weight":0.00793375395112031,"gater":null},{"from":10,"to":786,"weight":0.079130603063197,"gater":null},{"from":10,"to":787,"weight":-0.09255489878073689,"gater":null},{"from":10,"to":788,"weight":-0.021656733991389787,"gater":null},{"from":10,"to":789,"weight":-0.06927580996775373,"gater":null},{"from":10,"to":790,"weight":0.03164595160727965,"gater":null},{"from":11,"to":784,"weight":-0.06976610052177681,"gater":null},{"from":11,"to":785,"weight":-0.004043483763512684,"gater":null},{"from":11,"to":786,"weight":-0.06175248324751226,"gater":null},{"from":11,"to":787,"weight":0.02311154922868912,"gater":null},{"from":11,"to":788,"weight":-0.04197867237410962,"gater":null},{"from":11,"to":789,"weight":0.06115344272829751,"gater":null},{"from":11,"to":790,"weight":0.016196920069657894,"gater":null},{"from":12,"to":784,"weight":-0.08595194126002169,"gater":null},{"from":12,"to":785,"weight":0.03450092557182938,"gater":null},{"from":12,"to":786,"weight":0.04445601978035357,"gater":null},{"from":12,"to":787,"weight":0.09969906002147208,"gater":null},{"from":12,"to":788,"weight":-0.08502428017765813,"gater":null},{"from":12,"to":789,"weight":-0.0379135662498725,"gater":null},{"from":12,"to":790,"weight":-0.05007629377389722,"gater":null},{"from":13,"to":784,"weight":-0.020464144983719817,"gater":null},{"from":13,"to":785,"weight":-0.0524425230183414,"gater":null},{"from":13,"to":786,"weight":0.09185501261220202,"gater":null},{"from":13,"to":787,"weight":-0.047945318437076216,"gater":null},{"from":13,"to":788,"weight":0.07510012274128913,"gater":null},{"from":13,"to":789,"weight":-0.024354297146175832,"gater":null},{"from":13,"to":790,"weight":0.09359921248644354,"gater":null},{"from":14,"to":784,"weight":-0.007257267917406551,"gater":null},{"from":14,"to":785,"weight":0.05830225204990347,"gater":null},{"from":14,"to":786,"weight":-0.02376384016903907,"gater":null},{"from":14,"to":787,"weight":-0.08215757607844898,"gater":null},{"from":14,"to":788,"weight":0.029323195775710215,"gater":null},{"from":14,"to":789,"weight":-0.039028459981979374,"gater":null},{"from":14,"to":790,"weight":-0.030319387986344246,"gater":null},{"from":15,"to":784,"weight":-0.035457151050156774,"gater":null},{"from":15,"to":785,"weight":-0.0972479316006007,"gater":null},{"from":15,"to":786,"weight":-0.04483539046882426,"gater":null},{"from":15,"to":787,"weight":0.026254775807717984,"gater":null},{"from":15,"to":788,"weight":-0.028519892112177606,"gater":null},{"from":15,"to":789,"weight":-0.08626689100484955,"gater":null},{"from":15,"to":790,"weight":0.03648614603928335,"gater":null},{"from":16,"to":784,"weight":-0.0732388148896594,"gater":null},{"from":16,"to":785,"weight":-0.033532312504142556,"gater":null},{"from":16,"to":786,"weight":-0.0761130110275937,"gater":null},{"from":16,"to":787,"weight":0.02941395910199751,"gater":null},{"from":16,"to":788,"weight":-0.08673700055375799,"gater":null},{"from":16,"to":789,"weight":-0.04861419465606436,"gater":null},{"from":16,"to":790,"weight":-0.05242027221168058,"gater":null},{"from":17,"to":784,"weight":0.0512783457332637,"gater":null},{"from":17,"to":785,"weight":0.0014029735820527967,"gater":null},{"from":17,"to":786,"weight":-0.08782139607345069,"gater":null},{"from":17,"to":787,"weight":0.09998351136078085,"gater":null},{"from":17,"to":788,"weight":0.06501252919550657,"gater":null},{"from":17,"to":789,"weight":-0.01448691314553821,"gater":null},{"from":17,"to":790,"weight":-0.04545684464557707,"gater":null},{"from":18,"to":784,"weight":-0.0011446742897980727,"gater":null},{"from":18,"to":785,"weight":-0.008499819708633755,"gater":null},{"from":18,"to":786,"weight":0.034060267875127975,"gater":null},{"from":18,"to":787,"weight":-0.06557002216461201,"gater":null},{"from":18,"to":788,"weight":0.07244680120406169,"gater":null},{"from":18,"to":789,"weight":-0.028131872024275847,"gater":null},{"from":18,"to":790,"weight":-0.0215171132489385,"gater":null},{"from":19,"to":784,"weight":-0.05306434510979705,"gater":null},{"from":19,"to":785,"weight":0.025216776916315187,"gater":null},{"from":19,"to":786,"weight":0.04842430737401654,"gater":null},{"from":19,"to":787,"weight":0.09010056640852385,"gater":null},{"from":19,"to":788,"weight":0.056582036166661936,"gater":null},{"from":19,"to":789,"weight":0.07242755873005216,"gater":null},{"from":19,"to":790,"weight":-0.042479299601149156,"gater":null},{"from":20,"to":784,"weight":0.008698841618530878,"gater":null},{"from":20,"to":785,"weight":-0.07677158794283852,"gater":null},{"from":20,"to":786,"weight":-0.0546669684557652,"gater":null},{"from":20,"to":787,"weight":-0.09377342088172008,"gater":null},{"from":20,"to":788,"weight":-0.0012086794289752206,"gater":null},{"from":20,"to":789,"weight":0.09620288520477546,"gater":null},{"from":20,"to":790,"weight":-0.00894041006083332,"gater":null},{"from":21,"to":784,"weight":0.05983246162017197,"gater":null},{"from":21,"to":785,"weight":0.005100701502592522,"gater":null},{"from":21,"to":786,"weight":0.05750591912143718,"gater":null},{"from":21,"to":787,"weight":0.06341058216291917,"gater":null},{"from":21,"to":788,"weight":0.07933184256326561,"gater":null},{"from":21,"to":789,"weight":-0.09836857709705962,"gater":null},{"from":21,"to":790,"weight":0.09845183208207203,"gater":null},{"from":22,"to":784,"weight":0.0952502964564109,"gater":null},{"from":22,"to":785,"weight":0.014518582104317931,"gater":null},{"from":22,"to":786,"weight":-0.06802484243023194,"gater":null},{"from":22,"to":787,"weight":0.019303798416615864,"gater":null},{"from":22,"to":788,"weight":-0.05620118957560849,"gater":null},{"from":22,"to":789,"weight":0.09557826771672154,"gater":null},{"from":22,"to":790,"weight":0.0005844409322756372,"gater":null},{"from":23,"to":784,"weight":-0.09110180130004629,"gater":null},{"from":23,"to":785,"weight":0.0990589741152399,"gater":null},{"from":23,"to":786,"weight":0.05928507138008815,"gater":null},{"from":23,"to":787,"weight":0.021806247650429086,"gater":null},{"from":23,"to":788,"weight":-0.03521238581685214,"gater":null},{"from":23,"to":789,"weight":-0.04250150272137976,"gater":null},{"from":23,"to":790,"weight":-0.09559152305464265,"gater":null},{"from":24,"to":784,"weight":0.05655627299114774,"gater":null},{"from":24,"to":785,"weight":0.03463845627614978,"gater":null},{"from":24,"to":786,"weight":0.060089609759931634,"gater":null},{"from":24,"to":787,"weight":-0.015432971266634343,"gater":null},{"from":24,"to":788,"weight":0.033646488358427706,"gater":null},{"from":24,"to":789,"weight":-0.04737830166366646,"gater":null},{"from":24,"to":790,"weight":-0.05272459046900733,"gater":null},{"from":25,"to":784,"weight":0.05171510667359952,"gater":null},{"from":25,"to":785,"weight":0.08776661377386005,"gater":null},{"from":25,"to":786,"weight":0.06854374934091809,"gater":null},{"from":25,"to":787,"weight":0.06811615958948858,"gater":null},{"from":25,"to":788,"weight":0.01625931470349018,"gater":null},{"from":25,"to":789,"weight":-0.055246532557735685,"gater":null},{"from":25,"to":790,"weight":-0.05715567033792022,"gater":null},{"from":26,"to":784,"weight":-0.06081231202343798,"gater":null},{"from":26,"to":785,"weight":-0.07411739506197823,"gater":null},{"from":26,"to":786,"weight":-0.03014495710239462,"gater":null},{"from":26,"to":787,"weight":0.06789089707723647,"gater":null},{"from":26,"to":788,"weight":0.09740618922089603,"gater":null},{"from":26,"to":789,"weight":0.07211482770735561,"gater":null},{"from":26,"to":790,"weight":-0.09715525882877421,"gater":null},{"from":27,"to":784,"weight":-0.03338695038707917,"gater":null},{"from":27,"to":785,"weight":-0.06958669222170406,"gater":null},{"from":27,"to":786,"weight":-0.04855734542330739,"gater":null},{"from":27,"to":787,"weight":0.0027262708120443097,"gater":null},{"from":27,"to":788,"weight":0.012574760126755624,"gater":null},{"from":27,"to":789,"weight":-0.08656349201389664,"gater":null},{"from":27,"to":790,"weight":-0.08093310496895323,"gater":null},{"from":28,"to":784,"weight":0.013612188090249777,"gater":null},{"from":28,"to":785,"weight":0.017180681773038706,"gater":null},{"from":28,"to":786,"weight":0.08676390459697178,"gater":null},{"from":28,"to":787,"weight":0.09577406367136132,"gater":null},{"from":28,"to":788,"weight":-0.06255169168511646,"gater":null},{"from":28,"to":789,"weight":0.06366887418812794,"gater":null},{"from":28,"to":790,"weight":0.07801442640139408,"gater":null},{"from":29,"to":784,"weight":-0.06105489484160827,"gater":null},{"from":29,"to":785,"weight":-0.06299979374239745,"gater":null},{"from":29,"to":786,"weight":-0.003830444276580275,"gater":null},{"from":29,"to":787,"weight":-0.08893644137653096,"gater":null},{"from":29,"to":788,"weight":0.0206838091416591,"gater":null},{"from":29,"to":789,"weight":-0.05748809331326235,"gater":null},{"from":29,"to":790,"weight":-0.06909643541560412,"gater":null},{"from":30,"to":784,"weight":-0.08655792146379104,"gater":null},{"from":30,"to":785,"weight":-0.0605129756102087,"gater":null},{"from":30,"to":786,"weight":0.04156056952996531,"gater":null},{"from":30,"to":787,"weight":-0.009794758328397227,"gater":null},{"from":30,"to":788,"weight":-0.09202559794943635,"gater":null},{"from":30,"to":789,"weight":0.03317265152611698,"gater":null},{"from":30,"to":790,"weight":-0.05327660706032278,"gater":null},{"from":31,"to":784,"weight":-0.03739288344837664,"gater":null},{"from":31,"to":785,"weight":-0.04621705525267155,"gater":null},{"from":31,"to":786,"weight":-0.020968853042790767,"gater":null},{"from":31,"to":787,"weight":-0.08248064431192224,"gater":null},{"from":31,"to":788,"weight":-0.09760082218193872,"gater":null},{"from":31,"to":789,"weight":-0.05156648845712697,"gater":null},{"from":31,"to":790,"weight":0.04630581171283127,"gater":null},{"from":32,"to":784,"weight":-0.028650805353313838,"gater":null},{"from":32,"to":785,"weight":0.03006346161582249,"gater":null},{"from":32,"to":786,"weight":0.03512020753144157,"gater":null},{"from":32,"to":787,"weight":0.06323155866518301,"gater":null},{"from":32,"to":788,"weight":0.09854429289885563,"gater":null},{"from":32,"to":789,"weight":-0.0867562509205766,"gater":null},{"from":32,"to":790,"weight":0.09772403095866547,"gater":null},{"from":33,"to":784,"weight":0.09427370954787709,"gater":null},{"from":33,"to":785,"weight":0.019598039894019648,"gater":null},{"from":33,"to":786,"weight":-0.07479747514439095,"gater":null},{"from":33,"to":787,"weight":-0.09051686491017086,"gater":null},{"from":33,"to":788,"weight":0.00797413290026125,"gater":null},{"from":33,"to":789,"weight":-0.05308758676674241,"gater":null},{"from":33,"to":790,"weight":-0.0394396695380693,"gater":null},{"from":34,"to":784,"weight":-0.034163826562192995,"gater":null},{"from":34,"to":785,"weight":-0.07361650070832355,"gater":null},{"from":34,"to":786,"weight":0.06625063985860244,"gater":null},{"from":34,"to":787,"weight":-0.01118176559987849,"gater":null},{"from":34,"to":788,"weight":0.057219692047821374,"gater":null},{"from":34,"to":789,"weight":0.042562702306761485,"gater":null},{"from":34,"to":790,"weight":-0.017068445705647986,"gater":null},{"from":35,"to":784,"weight":-0.0699986786146507,"gater":null},{"from":35,"to":785,"weight":-0.04236881772921584,"gater":null},{"from":35,"to":786,"weight":-0.01763544043198833,"gater":null},{"from":35,"to":787,"weight":0.054613049234334514,"gater":null},{"from":35,"to":788,"weight":0.06809610821738404,"gater":null},{"from":35,"to":789,"weight":-0.04226396763357517,"gater":null},{"from":35,"to":790,"weight":0.0933698155833805,"gater":null},{"from":36,"to":784,"weight":0.06492420459277741,"gater":null},{"from":36,"to":785,"weight":-0.04775813146516248,"gater":null},{"from":36,"to":786,"weight":0.020252682971348548,"gater":null},{"from":36,"to":787,"weight":0.002817334561051011,"gater":null},{"from":36,"to":788,"weight":0.08991413826950205,"gater":null},{"from":36,"to":789,"weight":0.0734249019937515,"gater":null},{"from":36,"to":790,"weight":0.07881446045979076,"gater":null},{"from":37,"to":784,"weight":-0.0065807294170530635,"gater":null},{"from":37,"to":785,"weight":-0.04867227132770498,"gater":null},{"from":37,"to":786,"weight":0.06251344660807981,"gater":null},{"from":37,"to":787,"weight":0.09295230338911495,"gater":null},{"from":37,"to":788,"weight":0.022950786541642093,"gater":null},{"from":37,"to":789,"weight":-0.10072989456873682,"gater":null},{"from":37,"to":790,"weight":0.04523603067346679,"gater":null},{"from":38,"to":784,"weight":-0.05274736031848179,"gater":null},{"from":38,"to":785,"weight":-0.024408797513307802,"gater":null},{"from":38,"to":786,"weight":-0.03915970308453481,"gater":null},{"from":38,"to":787,"weight":0.048499521606149135,"gater":null},{"from":38,"to":788,"weight":0.08991552631827548,"gater":null},{"from":38,"to":789,"weight":-0.07311758128127072,"gater":null},{"from":38,"to":790,"weight":-0.06244820410919571,"gater":null},{"from":39,"to":784,"weight":-0.044936362847636184,"gater":null},{"from":39,"to":785,"weight":0.09490512102925906,"gater":null},{"from":39,"to":786,"weight":0.09174344188377777,"gater":null},{"from":39,"to":787,"weight":0.05785335089820171,"gater":null},{"from":39,"to":788,"weight":-0.08967351838754595,"gater":null},{"from":39,"to":789,"weight":0.0036945588835085217,"gater":null},{"from":39,"to":790,"weight":0.08162882480071695,"gater":null},{"from":40,"to":784,"weight":0.06727687641899802,"gater":null},{"from":40,"to":785,"weight":0.10132988551475813,"gater":null},{"from":40,"to":786,"weight":0.030901226528589596,"gater":null},{"from":40,"to":787,"weight":-0.03869589028300739,"gater":null},{"from":40,"to":788,"weight":0.09042890425611425,"gater":null},{"from":40,"to":789,"weight":-0.06344483650992948,"gater":null},{"from":40,"to":790,"weight":-0.059994333195318,"gater":null},{"from":41,"to":784,"weight":0.02871954190802481,"gater":null},{"from":41,"to":785,"weight":0.045824404746047015,"gater":null},{"from":41,"to":786,"weight":0.004601750179360093,"gater":null},{"from":41,"to":787,"weight":-0.018956116023028564,"gater":null},{"from":41,"to":788,"weight":-0.22500622832771078,"gater":null},{"from":41,"to":789,"weight":-0.05859564946158617,"gater":null},{"from":41,"to":790,"weight":-0.055947161340095135,"gater":null},{"from":42,"to":784,"weight":-0.15869100251155532,"gater":null},{"from":42,"to":785,"weight":-0.01515296365708806,"gater":null},{"from":42,"to":786,"weight":-0.007096372234671015,"gater":null},{"from":42,"to":787,"weight":-0.03092830732097572,"gater":null},{"from":42,"to":788,"weight":-0.2753547672248552,"gater":null},{"from":42,"to":789,"weight":-0.10022057326126267,"gater":null},{"from":42,"to":790,"weight":0.10523384492373052,"gater":null},{"from":43,"to":784,"weight":-0.23446868073791066,"gater":null},{"from":43,"to":785,"weight":0.0035630252730567817,"gater":null},{"from":43,"to":786,"weight":-0.16908718368031556,"gater":null},{"from":43,"to":787,"weight":-0.031385876000048336,"gater":null},{"from":43,"to":788,"weight":-0.022310555104121724,"gater":null},{"from":43,"to":789,"weight":-0.049293837953551176,"gater":null},{"from":43,"to":790,"weight":0.039899091756512926,"gater":null},{"from":44,"to":784,"weight":-0.06893384187465482,"gater":null},{"from":44,"to":785,"weight":-0.1436417545522715,"gater":null},{"from":44,"to":786,"weight":-0.7030629281515813,"gater":null},{"from":44,"to":787,"weight":0.6433684897530807,"gater":null},{"from":44,"to":788,"weight":-0.029645772329395505,"gater":null},{"from":44,"to":789,"weight":0.02261347101022812,"gater":null},{"from":44,"to":790,"weight":0.019993105749690057,"gater":null},{"from":45,"to":784,"weight":0.02207117797272479,"gater":null},{"from":45,"to":785,"weight":-0.034144631722385736,"gater":null},{"from":45,"to":786,"weight":-0.0761500922148559,"gater":null},{"from":45,"to":787,"weight":0.14866499057152077,"gater":null},{"from":45,"to":788,"weight":-0.046545699696756565,"gater":null},{"from":45,"to":789,"weight":-0.06810454237409622,"gater":null},{"from":45,"to":790,"weight":-0.05957916041876228,"gater":null},{"from":46,"to":784,"weight":-0.09641058601495253,"gater":null},{"from":46,"to":785,"weight":-0.007860904281668312,"gater":null},{"from":46,"to":786,"weight":0.0846635405530707,"gater":null},{"from":46,"to":787,"weight":-0.07109550962914565,"gater":null},{"from":46,"to":788,"weight":0.09460014627620114,"gater":null},{"from":46,"to":789,"weight":-0.007385312710835195,"gater":null},{"from":46,"to":790,"weight":0.06522551974908902,"gater":null},{"from":47,"to":784,"weight":-0.02313397582692765,"gater":null},{"from":47,"to":785,"weight":0.08848239246330004,"gater":null},{"from":47,"to":786,"weight":-0.0642660790922596,"gater":null},{"from":47,"to":787,"weight":-0.07337147031258454,"gater":null},{"from":47,"to":788,"weight":0.039583629300943717,"gater":null},{"from":47,"to":789,"weight":-0.10496942281127333,"gater":null},{"from":47,"to":790,"weight":-0.01074573836580066,"gater":null},{"from":48,"to":784,"weight":0.00859185540777731,"gater":null},{"from":48,"to":785,"weight":0.05593055492613701,"gater":null},{"from":48,"to":786,"weight":0.053869255635195734,"gater":null},{"from":48,"to":787,"weight":-0.025558133892279816,"gater":null},{"from":48,"to":788,"weight":0.07729314569899197,"gater":null},{"from":48,"to":789,"weight":-0.14259202418438177,"gater":null},{"from":48,"to":790,"weight":0.08815491057106081,"gater":null},{"from":49,"to":784,"weight":-0.040287782886186625,"gater":null},{"from":49,"to":785,"weight":-0.016903892125785497,"gater":null},{"from":49,"to":786,"weight":-0.04390873140551547,"gater":null},{"from":49,"to":787,"weight":-0.06405614040682639,"gater":null},{"from":49,"to":788,"weight":0.020886532828450443,"gater":null},{"from":49,"to":789,"weight":-0.11951785184868931,"gater":null},{"from":49,"to":790,"weight":-0.07626848722145761,"gater":null},{"from":50,"to":784,"weight":-0.08208900713136455,"gater":null},{"from":50,"to":785,"weight":0.007360111642773149,"gater":null},{"from":50,"to":786,"weight":0.06517426137301027,"gater":null},{"from":50,"to":787,"weight":0.07148416666471168,"gater":null},{"from":50,"to":788,"weight":0.05396941705180195,"gater":null},{"from":50,"to":789,"weight":0.02451048376907955,"gater":null},{"from":50,"to":790,"weight":-0.016005191918005018,"gater":null},{"from":51,"to":784,"weight":-0.01750553512204793,"gater":null},{"from":51,"to":785,"weight":0.011579646079418457,"gater":null},{"from":51,"to":786,"weight":-0.04308293236504315,"gater":null},{"from":51,"to":787,"weight":0.01326295372018764,"gater":null},{"from":51,"to":788,"weight":-0.020755886321525724,"gater":null},{"from":51,"to":789,"weight":-0.08660077433648664,"gater":null},{"from":51,"to":790,"weight":0.03582696939276292,"gater":null},{"from":52,"to":784,"weight":0.004236479908027849,"gater":null},{"from":52,"to":785,"weight":-0.06975935266489636,"gater":null},{"from":52,"to":786,"weight":0.002394816295778715,"gater":null},{"from":52,"to":787,"weight":-0.08564409558263977,"gater":null},{"from":52,"to":788,"weight":-0.08117038093863682,"gater":null},{"from":52,"to":789,"weight":0.04498912570333302,"gater":null},{"from":52,"to":790,"weight":0.002783325621939531,"gater":null},{"from":53,"to":784,"weight":-0.006654112169909257,"gater":null},{"from":53,"to":785,"weight":0.047482236518055915,"gater":null},{"from":53,"to":786,"weight":0.018948977330332045,"gater":null},{"from":53,"to":787,"weight":-0.0825383018623282,"gater":null},{"from":53,"to":788,"weight":-0.07298990254970464,"gater":null},{"from":53,"to":789,"weight":-0.011961939530391819,"gater":null},{"from":53,"to":790,"weight":-0.07094154792756308,"gater":null},{"from":54,"to":784,"weight":0.0841660269340336,"gater":null},{"from":54,"to":785,"weight":-0.07708267318581692,"gater":null},{"from":54,"to":786,"weight":-0.0468466949560876,"gater":null},{"from":54,"to":787,"weight":0.04423302599025511,"gater":null},{"from":54,"to":788,"weight":0.09979513769069254,"gater":null},{"from":54,"to":789,"weight":0.09904762008214371,"gater":null},{"from":54,"to":790,"weight":-0.056712990323975324,"gater":null},{"from":55,"to":784,"weight":-0.08953178600398407,"gater":null},{"from":55,"to":785,"weight":-0.05783361472318385,"gater":null},{"from":55,"to":786,"weight":-0.005402205835395121,"gater":null},{"from":55,"to":787,"weight":-0.06939975807951573,"gater":null},{"from":55,"to":788,"weight":-0.022220173682403435,"gater":null},{"from":55,"to":789,"weight":-0.08606782052026452,"gater":null},{"from":55,"to":790,"weight":-0.07093997219754199,"gater":null},{"from":56,"to":784,"weight":0.04083231966687423,"gater":null},{"from":56,"to":785,"weight":0.06920792726904165,"gater":null},{"from":56,"to":786,"weight":-0.04455716240565906,"gater":null},{"from":56,"to":787,"weight":-0.07911804514215284,"gater":null},{"from":56,"to":788,"weight":-0.0030163219542416603,"gater":null},{"from":56,"to":789,"weight":0.0961969698883825,"gater":null},{"from":56,"to":790,"weight":0.09580670516101672,"gater":null},{"from":57,"to":784,"weight":-0.014891731001607456,"gater":null},{"from":57,"to":785,"weight":-0.0033271065949693757,"gater":null},{"from":57,"to":786,"weight":0.01409980079880864,"gater":null},{"from":57,"to":787,"weight":0.022874796348238705,"gater":null},{"from":57,"to":788,"weight":0.044062362100968644,"gater":null},{"from":57,"to":789,"weight":0.0392163179866806,"gater":null},{"from":57,"to":790,"weight":0.07024800479625223,"gater":null},{"from":58,"to":784,"weight":-0.03348754511945144,"gater":null},{"from":58,"to":785,"weight":-0.048975651443777135,"gater":null},{"from":58,"to":786,"weight":-0.083103172301432,"gater":null},{"from":58,"to":787,"weight":-0.0024112189285002,"gater":null},{"from":58,"to":788,"weight":0.04225658621046846,"gater":null},{"from":58,"to":789,"weight":0.008052116229928338,"gater":null},{"from":58,"to":790,"weight":0.0037335683350776527,"gater":null},{"from":59,"to":784,"weight":-0.029736814032260875,"gater":null},{"from":59,"to":785,"weight":0.04191104507676274,"gater":null},{"from":59,"to":786,"weight":0.03691548858663857,"gater":null},{"from":59,"to":787,"weight":0.05631051822563579,"gater":null},{"from":59,"to":788,"weight":-0.03901774948421047,"gater":null},{"from":59,"to":789,"weight":-0.08913227083703341,"gater":null},{"from":59,"to":790,"weight":-0.05978373186814978,"gater":null},{"from":60,"to":784,"weight":-0.011348213930037656,"gater":null},{"from":60,"to":785,"weight":-0.05918155857442662,"gater":null},{"from":60,"to":786,"weight":-0.022174218819460696,"gater":null},{"from":60,"to":787,"weight":0.08024952126685922,"gater":null},{"from":60,"to":788,"weight":-0.08505359021711512,"gater":null},{"from":60,"to":789,"weight":-0.02503391676491036,"gater":null},{"from":60,"to":790,"weight":0.01742906708660514,"gater":null},{"from":61,"to":784,"weight":-0.018497939934106287,"gater":null},{"from":61,"to":785,"weight":-0.02735307370560419,"gater":null},{"from":61,"to":786,"weight":-0.0313789888476579,"gater":null},{"from":61,"to":787,"weight":-0.035444708809450144,"gater":null},{"from":61,"to":788,"weight":0.0006385647116490217,"gater":null},{"from":61,"to":789,"weight":0.07909305058856675,"gater":null},{"from":61,"to":790,"weight":0.0868107331810886,"gater":null},{"from":62,"to":784,"weight":0.06363073867532915,"gater":null},{"from":62,"to":785,"weight":-0.07241247463262566,"gater":null},{"from":62,"to":786,"weight":-0.08474040405312196,"gater":null},{"from":62,"to":787,"weight":0.0935367837658538,"gater":null},{"from":62,"to":788,"weight":0.05040035102284036,"gater":null},{"from":62,"to":789,"weight":0.05133468075243899,"gater":null},{"from":62,"to":790,"weight":0.06303979083894196,"gater":null},{"from":63,"to":784,"weight":-0.01150857144432026,"gater":null},{"from":63,"to":785,"weight":0.012784202210934363,"gater":null},{"from":63,"to":786,"weight":-0.068660350614169,"gater":null},{"from":63,"to":787,"weight":0.06239966761789127,"gater":null},{"from":63,"to":788,"weight":0.09209691000831632,"gater":null},{"from":63,"to":789,"weight":-0.02711486786435619,"gater":null},{"from":63,"to":790,"weight":-0.028537156937270183,"gater":null},{"from":64,"to":784,"weight":0.03285595895015884,"gater":null},{"from":64,"to":785,"weight":-0.04673703369155539,"gater":null},{"from":64,"to":786,"weight":0.25895393304295833,"gater":null},{"from":64,"to":787,"weight":-0.037516607957574784,"gater":null},{"from":64,"to":788,"weight":0.04302147421656117,"gater":null},{"from":64,"to":789,"weight":-0.05544763565843798,"gater":null},{"from":64,"to":790,"weight":0.011072845509837916,"gater":null},{"from":65,"to":784,"weight":-0.07381476482672375,"gater":null},{"from":65,"to":785,"weight":-0.1725669500208788,"gater":null},{"from":65,"to":786,"weight":1.734497018614275,"gater":null},{"from":65,"to":787,"weight":0.05084811442756203,"gater":null},{"from":65,"to":788,"weight":-0.16936034213886725,"gater":null},{"from":65,"to":789,"weight":-0.12941842689663727,"gater":null},{"from":65,"to":790,"weight":0.18838868472717438,"gater":null},{"from":66,"to":784,"weight":-0.51734709102089,"gater":null},{"from":66,"to":785,"weight":-0.45212098927518735,"gater":null},{"from":66,"to":786,"weight":0.40238971688875613,"gater":null},{"from":66,"to":787,"weight":0.07260119401759904,"gater":null},{"from":66,"to":788,"weight":-0.07400354959673112,"gater":null},{"from":66,"to":789,"weight":-0.3701990443499073,"gater":null},{"from":66,"to":790,"weight":0.10662382507227956,"gater":null},{"from":67,"to":784,"weight":-1.0455695289941112,"gater":null},{"from":67,"to":785,"weight":-0.3210573764399188,"gater":null},{"from":67,"to":786,"weight":0.41627865240535744,"gater":null},{"from":67,"to":787,"weight":0.03999960704477214,"gater":null},{"from":67,"to":788,"weight":-0.0004456310587372149,"gater":null},{"from":67,"to":789,"weight":-0.7745156333779041,"gater":null},{"from":67,"to":790,"weight":0.09053136455712024,"gater":null},{"from":68,"to":784,"weight":-0.6357477942620741,"gater":null},{"from":68,"to":785,"weight":-0.20092402531994144,"gater":null},{"from":68,"to":786,"weight":-0.17200054730069747,"gater":null},{"from":68,"to":787,"weight":0.617235817800389,"gater":null},{"from":68,"to":788,"weight":-0.15617008138830563,"gater":null},{"from":68,"to":789,"weight":-1.279031812256861,"gater":null},{"from":68,"to":790,"weight":0.20619338398021236,"gater":null},{"from":69,"to":784,"weight":-0.4859179012735847,"gater":null},{"from":69,"to":785,"weight":0.09846491566901162,"gater":null},{"from":69,"to":786,"weight":-1.9800914939381837,"gater":null},{"from":69,"to":787,"weight":0.7680812210270049,"gater":null},{"from":69,"to":788,"weight":-0.28169298030657525,"gater":null},{"from":69,"to":789,"weight":-0.9362909022731154,"gater":null},{"from":69,"to":790,"weight":0.22360783404856968,"gater":null},{"from":70,"to":784,"weight":-1.2947550794636011,"gater":null},{"from":70,"to":785,"weight":0.09741603684868885,"gater":null},{"from":70,"to":786,"weight":-1.7826125575203136,"gater":null},{"from":70,"to":787,"weight":0.4721973726298979,"gater":null},{"from":70,"to":788,"weight":-0.6548757893229459,"gater":null},{"from":70,"to":789,"weight":-1.4611309976177218,"gater":null},{"from":70,"to":790,"weight":0.21981088672524796,"gater":null},{"from":71,"to":784,"weight":-0.8866317305273148,"gater":null},{"from":71,"to":785,"weight":0.06362436987582147,"gater":null},{"from":71,"to":786,"weight":-2.570370622337749,"gater":null},{"from":71,"to":787,"weight":0.14191528690456584,"gater":null},{"from":71,"to":788,"weight":-0.9203240522081512,"gater":null},{"from":71,"to":789,"weight":-1.215464810429785,"gater":null},{"from":71,"to":790,"weight":0.09841996744580266,"gater":null},{"from":72,"to":784,"weight":-1.2374968185514565,"gater":null},{"from":72,"to":785,"weight":0.15115760909435721,"gater":null},{"from":72,"to":786,"weight":-1.343100149525751,"gater":null},{"from":72,"to":787,"weight":0.9821944850651242,"gater":null},{"from":72,"to":788,"weight":-1.5167199982531843,"gater":null},{"from":72,"to":789,"weight":-1.2260659407902352,"gater":null},{"from":72,"to":790,"weight":0.41520972235133324,"gater":null},{"from":73,"to":784,"weight":-1.3600294588916932,"gater":null},{"from":73,"to":785,"weight":0.8595382609932145,"gater":null},{"from":73,"to":786,"weight":2.2053921938931906,"gater":null},{"from":73,"to":787,"weight":1.2094787324742118,"gater":null},{"from":73,"to":788,"weight":-1.4619354282615908,"gater":null},{"from":73,"to":789,"weight":-1.2821168660813418,"gater":null},{"from":73,"to":790,"weight":0.8395316137087093,"gater":null},{"from":74,"to":784,"weight":-0.4574654997594668,"gater":null},{"from":74,"to":785,"weight":0.21309174208656606,"gater":null},{"from":74,"to":786,"weight":1.4083403140890962,"gater":null},{"from":74,"to":787,"weight":0.8718373530139456,"gater":null},{"from":74,"to":788,"weight":-0.8595174807348653,"gater":null},{"from":74,"to":789,"weight":-1.011105641990007,"gater":null},{"from":74,"to":790,"weight":0.16960027060470498,"gater":null},{"from":75,"to":784,"weight":-0.39232953755849104,"gater":null},{"from":75,"to":785,"weight":0.30522358422147855,"gater":null},{"from":75,"to":786,"weight":1.8051101366416593,"gater":null},{"from":75,"to":787,"weight":0.9062958126818299,"gater":null},{"from":75,"to":788,"weight":-0.1480462471659786,"gater":null},{"from":75,"to":789,"weight":-0.7131503656920355,"gater":null},{"from":75,"to":790,"weight":0.3075991843756491,"gater":null},{"from":76,"to":784,"weight":-0.04084787041262545,"gater":null},{"from":76,"to":785,"weight":0.03864222337624177,"gater":null},{"from":76,"to":786,"weight":0.22180897158203314,"gater":null},{"from":76,"to":787,"weight":0.08688430355828812,"gater":null},{"from":76,"to":788,"weight":-0.2252247906023339,"gater":null},{"from":76,"to":789,"weight":-0.38733285157121805,"gater":null},{"from":76,"to":790,"weight":0.004967486449552342,"gater":null},{"from":77,"to":784,"weight":-0.04418480617388495,"gater":null},{"from":77,"to":785,"weight":-0.050757671347017516,"gater":null},{"from":77,"to":786,"weight":-0.07792031508035026,"gater":null},{"from":77,"to":787,"weight":0.09697975132879051,"gater":null},{"from":77,"to":788,"weight":-0.19635722122763977,"gater":null},{"from":77,"to":789,"weight":-0.32134093893084775,"gater":null},{"from":77,"to":790,"weight":0.0806732351474542,"gater":null},{"from":78,"to":784,"weight":-0.00670651396598181,"gater":null},{"from":78,"to":785,"weight":-0.031579979050731524,"gater":null},{"from":78,"to":786,"weight":-0.024750899030117225,"gater":null},{"from":78,"to":787,"weight":-0.03458286737979818,"gater":null},{"from":78,"to":788,"weight":-0.11902612190978085,"gater":null},{"from":78,"to":789,"weight":-0.2488738804145923,"gater":null},{"from":78,"to":790,"weight":0.029858610976964368,"gater":null},{"from":79,"to":784,"weight":-0.07895357233191391,"gater":null},{"from":79,"to":785,"weight":0.045660346511453474,"gater":null},{"from":79,"to":786,"weight":-0.09346317601258149,"gater":null},{"from":79,"to":787,"weight":-0.09697307127249338,"gater":null},{"from":79,"to":788,"weight":-0.0811840161093863,"gater":null},{"from":79,"to":789,"weight":0.018970142396775483,"gater":null},{"from":79,"to":790,"weight":0.08723740224264817,"gater":null},{"from":80,"to":784,"weight":-0.03866661063105783,"gater":null},{"from":80,"to":785,"weight":-0.054331485009650224,"gater":null},{"from":80,"to":786,"weight":0.08097524534431985,"gater":null},{"from":80,"to":787,"weight":0.08603649474788404,"gater":null},{"from":80,"to":788,"weight":0.06565352961503376,"gater":null},{"from":80,"to":789,"weight":-0.0989947980541681,"gater":null},{"from":80,"to":790,"weight":0.002102903331369177,"gater":null},{"from":81,"to":784,"weight":0.08713258214176212,"gater":null},{"from":81,"to":785,"weight":-0.09435354755034463,"gater":null},{"from":81,"to":786,"weight":-0.05028941999784773,"gater":null},{"from":81,"to":787,"weight":-0.09434943708236379,"gater":null},{"from":81,"to":788,"weight":0.021065430131503776,"gater":null},{"from":81,"to":789,"weight":-0.059144940695088404,"gater":null},{"from":81,"to":790,"weight":0.016644906631915604,"gater":null},{"from":82,"to":784,"weight":-0.034152503595512404,"gater":null},{"from":82,"to":785,"weight":-0.031433212590664006,"gater":null},{"from":82,"to":786,"weight":-0.04804109962059222,"gater":null},{"from":82,"to":787,"weight":-0.06094722180713968,"gater":null},{"from":82,"to":788,"weight":-0.018910416162362997,"gater":null},{"from":82,"to":789,"weight":-0.0157994815237065,"gater":null},{"from":82,"to":790,"weight":0.03182540211517751,"gater":null},{"from":83,"to":784,"weight":0.031551324051486196,"gater":null},{"from":83,"to":785,"weight":0.012268008097691754,"gater":null},{"from":83,"to":786,"weight":0.04004233699835233,"gater":null},{"from":83,"to":787,"weight":-0.09652605317084673,"gater":null},{"from":83,"to":788,"weight":-0.05805251294666114,"gater":null},{"from":83,"to":789,"weight":0.006827954240778977,"gater":null},{"from":83,"to":790,"weight":0.05922528435856683,"gater":null},{"from":84,"to":784,"weight":0.03246329754748006,"gater":null},{"from":84,"to":785,"weight":0.0622957702894662,"gater":null},{"from":84,"to":786,"weight":0.006704047292984641,"gater":null},{"from":84,"to":787,"weight":0.0763050056876641,"gater":null},{"from":84,"to":788,"weight":-0.019177032978891756,"gater":null},{"from":84,"to":789,"weight":-0.04272468693562362,"gater":null},{"from":84,"to":790,"weight":-0.035372696510824045,"gater":null},{"from":85,"to":784,"weight":0.05334483762661485,"gater":null},{"from":85,"to":785,"weight":0.008141860920414204,"gater":null},{"from":85,"to":786,"weight":-0.08706327303318151,"gater":null},{"from":85,"to":787,"weight":-0.0815318687668313,"gater":null},{"from":85,"to":788,"weight":0.058790845160401395,"gater":null},{"from":85,"to":789,"weight":0.06685718031547125,"gater":null},{"from":85,"to":790,"weight":-0.07518056844380841,"gater":null},{"from":86,"to":784,"weight":0.09332746478484974,"gater":null},{"from":86,"to":785,"weight":0.0532751354361205,"gater":null},{"from":86,"to":786,"weight":0.009918087778837584,"gater":null},{"from":86,"to":787,"weight":-0.0007981246000412917,"gater":null},{"from":86,"to":788,"weight":-0.0737736271846758,"gater":null},{"from":86,"to":789,"weight":0.08569014710152181,"gater":null},{"from":86,"to":790,"weight":0.0980412193738506,"gater":null},{"from":87,"to":784,"weight":0.07607369841469064,"gater":null},{"from":87,"to":785,"weight":0.02076966132751204,"gater":null},{"from":87,"to":786,"weight":-0.048114980526345,"gater":null},{"from":87,"to":787,"weight":0.04192423663019906,"gater":null},{"from":87,"to":788,"weight":0.002156139870956336,"gater":null},{"from":87,"to":789,"weight":-0.07822685959095295,"gater":null},{"from":87,"to":790,"weight":0.047272101535373645,"gater":null},{"from":88,"to":784,"weight":-0.06630535574792039,"gater":null},{"from":88,"to":785,"weight":-0.05169338511621908,"gater":null},{"from":88,"to":786,"weight":0.09780413513551445,"gater":null},{"from":88,"to":787,"weight":0.09014295104662567,"gater":null},{"from":88,"to":788,"weight":0.0888809282876293,"gater":null},{"from":88,"to":789,"weight":0.008202083571816727,"gater":null},{"from":88,"to":790,"weight":-0.024300024874146592,"gater":null},{"from":89,"to":784,"weight":-0.03241661558608595,"gater":null},{"from":89,"to":785,"weight":-0.03589505509595352,"gater":null},{"from":89,"to":786,"weight":0.07780305439797681,"gater":null},{"from":89,"to":787,"weight":-0.06055874821325791,"gater":null},{"from":89,"to":788,"weight":0.026222733049006606,"gater":null},{"from":89,"to":789,"weight":-0.009969161036013552,"gater":null},{"from":89,"to":790,"weight":0.02623002687945559,"gater":null},{"from":90,"to":784,"weight":-0.05577366435701521,"gater":null},{"from":90,"to":785,"weight":0.06652441015154054,"gater":null},{"from":90,"to":786,"weight":0.0398451333777405,"gater":null},{"from":90,"to":787,"weight":0.059226642917825326,"gater":null},{"from":90,"to":788,"weight":-0.02715848131329057,"gater":null},{"from":90,"to":789,"weight":-0.03442156536205054,"gater":null},{"from":90,"to":790,"weight":-0.10167737042704694,"gater":null},{"from":91,"to":784,"weight":-0.02672399909257376,"gater":null},{"from":91,"to":785,"weight":0.12617038327156874,"gater":null},{"from":91,"to":786,"weight":-0.05130840694974446,"gater":null},{"from":91,"to":787,"weight":-0.018601379712768894,"gater":null},{"from":91,"to":788,"weight":0.016145020589361944,"gater":null},{"from":91,"to":789,"weight":-0.2441120768322634,"gater":null},{"from":91,"to":790,"weight":-0.03408927911449812,"gater":null},{"from":92,"to":784,"weight":-0.22397812298053876,"gater":null},{"from":92,"to":785,"weight":0.03680209057827859,"gater":null},{"from":92,"to":786,"weight":0.8347342211117029,"gater":null},{"from":92,"to":787,"weight":0.028686716790635343,"gater":null},{"from":92,"to":788,"weight":-0.1965265864844043,"gater":null},{"from":92,"to":789,"weight":0.08747507074008613,"gater":null},{"from":92,"to":790,"weight":0.27068565335514466,"gater":null},{"from":93,"to":784,"weight":-0.4173154296590163,"gater":null},{"from":93,"to":785,"weight":0.11378519118837162,"gater":null},{"from":93,"to":786,"weight":1.0342132376078894,"gater":null},{"from":93,"to":787,"weight":0.6805793663619005,"gater":null},{"from":93,"to":788,"weight":-0.5213597463429217,"gater":null},{"from":93,"to":789,"weight":0.37892175990760424,"gater":null},{"from":93,"to":790,"weight":0.4033472183359465,"gater":null},{"from":94,"to":784,"weight":-0.9704678134300956,"gater":null},{"from":94,"to":785,"weight":-0.015875275733687383,"gater":null},{"from":94,"to":786,"weight":-1.7124349158299392,"gater":null},{"from":94,"to":787,"weight":-0.06926583473269772,"gater":null},{"from":94,"to":788,"weight":-1.496459910343156,"gater":null},{"from":94,"to":789,"weight":0.40276107683807355,"gater":null},{"from":94,"to":790,"weight":0.39150716324134244,"gater":null},{"from":95,"to":784,"weight":-1.4325313876459635,"gater":null},{"from":95,"to":785,"weight":-0.1921369517804983,"gater":null},{"from":95,"to":786,"weight":-3.6683119501942527,"gater":null},{"from":95,"to":787,"weight":-0.3762532344324655,"gater":null},{"from":95,"to":788,"weight":-1.851326298901432,"gater":null},{"from":95,"to":789,"weight":0.2756157973398914,"gater":null},{"from":95,"to":790,"weight":0.49862043548873225,"gater":null},{"from":96,"to":784,"weight":-0.7587489544602244,"gater":null},{"from":96,"to":785,"weight":-0.33284330507725546,"gater":null},{"from":96,"to":786,"weight":-2.1052381904275173,"gater":null},{"from":96,"to":787,"weight":0.3249110961954685,"gater":null},{"from":96,"to":788,"weight":-0.9713819256177996,"gater":null},{"from":96,"to":789,"weight":0.06604768707901441,"gater":null},{"from":96,"to":790,"weight":0.5020807786876591,"gater":null},{"from":97,"to":784,"weight":-3.593793519049183,"gater":null},{"from":97,"to":785,"weight":0.20573969115343488,"gater":null},{"from":97,"to":786,"weight":-3.9217498400157424,"gater":null},{"from":97,"to":787,"weight":0.6704051323544873,"gater":null},{"from":97,"to":788,"weight":-1.3194437331691415,"gater":null},{"from":97,"to":789,"weight":-0.7746589223731344,"gater":null},{"from":97,"to":790,"weight":-0.01830377066098804,"gater":null},{"from":98,"to":784,"weight":-3.3318038797554617,"gater":null},{"from":98,"to":785,"weight":0.860904287857253,"gater":null},{"from":98,"to":786,"weight":-0.2565280741504019,"gater":null},{"from":98,"to":787,"weight":0.38566532726134406,"gater":null},{"from":98,"to":788,"weight":-1.018023746433377,"gater":null},{"from":98,"to":789,"weight":-1.2018569881593797,"gater":null},{"from":98,"to":790,"weight":-0.11872407713721123,"gater":null},{"from":99,"to":784,"weight":-3.6402106646130035,"gater":null},{"from":99,"to":785,"weight":-0.4555755439332886,"gater":null},{"from":99,"to":786,"weight":-0.5032965137614248,"gater":null},{"from":99,"to":787,"weight":0.727160741852603,"gater":null},{"from":99,"to":788,"weight":-0.9119628491532598,"gater":null},{"from":99,"to":789,"weight":-1.5602949483608364,"gater":null},{"from":99,"to":790,"weight":-0.517435885025537,"gater":null},{"from":100,"to":784,"weight":-2.7781654141453878,"gater":null},{"from":100,"to":785,"weight":0.5292591426058026,"gater":null},{"from":100,"to":786,"weight":-0.9989030856281581,"gater":null},{"from":100,"to":787,"weight":-0.32554590661930055,"gater":null},{"from":100,"to":788,"weight":-1.7397177214631694,"gater":null},{"from":100,"to":789,"weight":-1.4864804950144994,"gater":null},{"from":100,"to":790,"weight":-0.08842224517657163,"gater":null},{"from":101,"to":784,"weight":-3.003705532336003,"gater":null},{"from":101,"to":785,"weight":1.5260083489012974,"gater":null},{"from":101,"to":786,"weight":2.299020408718394,"gater":null},{"from":101,"to":787,"weight":-0.3226706315692214,"gater":null},{"from":101,"to":788,"weight":-2.3675730534164527,"gater":null},{"from":101,"to":789,"weight":-1.4169890769795375,"gater":null},{"from":101,"to":790,"weight":1.163421588750974,"gater":null},{"from":102,"to":784,"weight":-2.584604332786945,"gater":null},{"from":102,"to":785,"weight":0.6277650287296554,"gater":null},{"from":102,"to":786,"weight":-1.3111006472772273,"gater":null},{"from":102,"to":787,"weight":-0.38304932787955903,"gater":null},{"from":102,"to":788,"weight":-1.1983332150686048,"gater":null},{"from":102,"to":789,"weight":-1.9292315564394629,"gater":null},{"from":102,"to":790,"weight":1.259093046126154,"gater":null},{"from":103,"to":784,"weight":-0.3328748188225042,"gater":null},{"from":103,"to":785,"weight":0.6746591316020926,"gater":null},{"from":103,"to":786,"weight":-1.4353570350113043,"gater":null},{"from":103,"to":787,"weight":1.182564880738789,"gater":null},{"from":103,"to":788,"weight":0.17282261739384655,"gater":null},{"from":103,"to":789,"weight":-0.5542476402539875,"gater":null},{"from":103,"to":790,"weight":0.7932029542684382,"gater":null},{"from":104,"to":784,"weight":0.4407590496313452,"gater":null},{"from":104,"to":785,"weight":0.12126965387791365,"gater":null},{"from":104,"to":786,"weight":0.1873866866449513,"gater":null},{"from":104,"to":787,"weight":0.3585502518673231,"gater":null},{"from":104,"to":788,"weight":-1.0094547656379627,"gater":null},{"from":104,"to":789,"weight":-0.5143825208926689,"gater":null},{"from":104,"to":790,"weight":0.19707877128736656,"gater":null},{"from":105,"to":784,"weight":1.3300510301458652,"gater":null},{"from":105,"to":785,"weight":0.11890148942588517,"gater":null},{"from":105,"to":786,"weight":-0.16081444068611928,"gater":null},{"from":105,"to":787,"weight":-0.015277557061159339,"gater":null},{"from":105,"to":788,"weight":-1.2606260081645104,"gater":null},{"from":105,"to":789,"weight":0.2834846542433068,"gater":null},{"from":105,"to":790,"weight":0.1773318779797912,"gater":null},{"from":106,"to":784,"weight":0.6883085390632036,"gater":null},{"from":106,"to":785,"weight":-0.004364175312581157,"gater":null},{"from":106,"to":786,"weight":-0.4331396256447936,"gater":null},{"from":106,"to":787,"weight":-0.05115596757152981,"gater":null},{"from":106,"to":788,"weight":-0.6355902942143166,"gater":null},{"from":106,"to":789,"weight":1.412393403892235,"gater":null},{"from":106,"to":790,"weight":0.27133312704076223,"gater":null},{"from":107,"to":784,"weight":0.015424030419510569,"gater":null},{"from":107,"to":785,"weight":-0.0607603455172476,"gater":null},{"from":107,"to":786,"weight":-0.09323701863577576,"gater":null},{"from":107,"to":787,"weight":0.012194353341499653,"gater":null},{"from":107,"to":788,"weight":-0.03283039074199256,"gater":null},{"from":107,"to":789,"weight":1.78749749161549,"gater":null},{"from":107,"to":790,"weight":0.045169245433285314,"gater":null},{"from":108,"to":784,"weight":-0.061770870782206985,"gater":null},{"from":108,"to":785,"weight":0.0066391092073013,"gater":null},{"from":108,"to":786,"weight":-0.007980058813079718,"gater":null},{"from":108,"to":787,"weight":0.05948161185636471,"gater":null},{"from":108,"to":788,"weight":-0.007269671251746469,"gater":null},{"from":108,"to":789,"weight":1.2948433830769979,"gater":null},{"from":108,"to":790,"weight":-0.020288360254056767,"gater":null},{"from":109,"to":784,"weight":-0.04094648584544447,"gater":null},{"from":109,"to":785,"weight":0.04696070020337245,"gater":null},{"from":109,"to":786,"weight":-0.04057709892989841,"gater":null},{"from":109,"to":787,"weight":-0.09600270897247497,"gater":null},{"from":109,"to":788,"weight":0.03454049105713733,"gater":null},{"from":109,"to":789,"weight":0.09134966850636858,"gater":null},{"from":109,"to":790,"weight":-0.0745057847836963,"gater":null},{"from":110,"to":784,"weight":-0.00986800874853748,"gater":null},{"from":110,"to":785,"weight":-0.06236385767646877,"gater":null},{"from":110,"to":786,"weight":0.07140498464890219,"gater":null},{"from":110,"to":787,"weight":-0.09688411625819088,"gater":null},{"from":110,"to":788,"weight":-0.03539591045625645,"gater":null},{"from":110,"to":789,"weight":0.07546302235763777,"gater":null},{"from":110,"to":790,"weight":0.01788241146223775,"gater":null},{"from":111,"to":784,"weight":0.08330369801124862,"gater":null},{"from":111,"to":785,"weight":-0.06413221012473547,"gater":null},{"from":111,"to":786,"weight":-0.037036650006123176,"gater":null},{"from":111,"to":787,"weight":-0.09899837093693767,"gater":null},{"from":111,"to":788,"weight":0.0773265789114965,"gater":null},{"from":111,"to":789,"weight":0.07055313591282442,"gater":null},{"from":111,"to":790,"weight":0.029192701752835504,"gater":null},{"from":112,"to":784,"weight":0.07193005482458167,"gater":null},{"from":112,"to":785,"weight":-0.007324213193633161,"gater":null},{"from":112,"to":786,"weight":-0.07980462368640127,"gater":null},{"from":112,"to":787,"weight":0.0024393049490656765,"gater":null},{"from":112,"to":788,"weight":-0.039035866244953255,"gater":null},{"from":112,"to":789,"weight":-0.00233987130166087,"gater":null},{"from":112,"to":790,"weight":-0.09299652229701035,"gater":null},{"from":113,"to":784,"weight":0.05407373327983503,"gater":null},{"from":113,"to":785,"weight":0.02462562632418512,"gater":null},{"from":113,"to":786,"weight":0.09709774544863198,"gater":null},{"from":113,"to":787,"weight":0.09876307062491615,"gater":null},{"from":113,"to":788,"weight":-0.08334708361454962,"gater":null},{"from":113,"to":789,"weight":-0.011469302439202161,"gater":null},{"from":113,"to":790,"weight":-0.055554118248843536,"gater":null},{"from":114,"to":784,"weight":-0.09712385295477022,"gater":null},{"from":114,"to":785,"weight":-0.09977694113321044,"gater":null},{"from":114,"to":786,"weight":0.05361338134445656,"gater":null},{"from":114,"to":787,"weight":-0.08493813841785901,"gater":null},{"from":114,"to":788,"weight":0.09869423377681069,"gater":null},{"from":114,"to":789,"weight":0.09197921227764971,"gater":null},{"from":114,"to":790,"weight":-0.05650935814052116,"gater":null},{"from":115,"to":784,"weight":-0.022177838068500415,"gater":null},{"from":115,"to":785,"weight":0.0175241595389657,"gater":null},{"from":115,"to":786,"weight":0.004810945470759206,"gater":null},{"from":115,"to":787,"weight":-0.07760301062036636,"gater":null},{"from":115,"to":788,"weight":-0.06933372670156786,"gater":null},{"from":115,"to":789,"weight":-0.06390513682073268,"gater":null},{"from":115,"to":790,"weight":0.03797300578660778,"gater":null},{"from":116,"to":784,"weight":-0.04646691294912615,"gater":null},{"from":116,"to":785,"weight":-0.08282015202236477,"gater":null},{"from":116,"to":786,"weight":0.24201955956210908,"gater":null},{"from":116,"to":787,"weight":-0.15273595953176208,"gater":null},{"from":116,"to":788,"weight":-0.08879160093201359,"gater":null},{"from":116,"to":789,"weight":0.09838964894973802,"gater":null},{"from":116,"to":790,"weight":-0.06480452565013757,"gater":null},{"from":117,"to":784,"weight":-0.6983876185265045,"gater":null},{"from":117,"to":785,"weight":0.07492321374819738,"gater":null},{"from":117,"to":786,"weight":0.10463926670938543,"gater":null},{"from":117,"to":787,"weight":-0.11826649235428154,"gater":null},{"from":117,"to":788,"weight":-0.15316827318657303,"gater":null},{"from":117,"to":789,"weight":-0.006040700011370213,"gater":null},{"from":117,"to":790,"weight":0.43607479280031347,"gater":null},{"from":118,"to":784,"weight":-1.0926176015948907,"gater":null},{"from":118,"to":785,"weight":0.05526842551781262,"gater":null},{"from":118,"to":786,"weight":-0.13803512971362616,"gater":null},{"from":118,"to":787,"weight":-0.16132441218242163,"gater":null},{"from":118,"to":788,"weight":-0.23698227195691945,"gater":null},{"from":118,"to":789,"weight":-0.22968689722512023,"gater":null},{"from":118,"to":790,"weight":0.4346516374810388,"gater":null},{"from":119,"to":784,"weight":-0.1008991878326699,"gater":null},{"from":119,"to":785,"weight":0.06957101997870285,"gater":null},{"from":119,"to":786,"weight":-1.3858444091789708,"gater":null},{"from":119,"to":787,"weight":-0.053336016060058146,"gater":null},{"from":119,"to":788,"weight":-0.309107688111409,"gater":null},{"from":119,"to":789,"weight":-0.43257087115100346,"gater":null},{"from":119,"to":790,"weight":0.2708331479804024,"gater":null},{"from":120,"to":784,"weight":0.014591739352375302,"gater":null},{"from":120,"to":785,"weight":0.3104789447114919,"gater":null},{"from":120,"to":786,"weight":-2.6161174184909686,"gater":null},{"from":120,"to":787,"weight":-0.11930689486131568,"gater":null},{"from":120,"to":788,"weight":-0.5777930482270214,"gater":null},{"from":120,"to":789,"weight":0.39381135194350475,"gater":null},{"from":120,"to":790,"weight":0.6994766465908135,"gater":null},{"from":121,"to":784,"weight":-0.0993864746980372,"gater":null},{"from":121,"to":785,"weight":0.6154487744706472,"gater":null},{"from":121,"to":786,"weight":-2.4131773805818226,"gater":null},{"from":121,"to":787,"weight":1.1829331561394052,"gater":null},{"from":121,"to":788,"weight":-1.302299657058887,"gater":null},{"from":121,"to":789,"weight":0.0008893215637345385,"gater":null},{"from":121,"to":790,"weight":1.4237024870004278,"gater":null},{"from":122,"to":784,"weight":-1.0321211576365446,"gater":null},{"from":122,"to":785,"weight":-0.7852417717792142,"gater":null},{"from":122,"to":786,"weight":-0.9714596174958101,"gater":null},{"from":122,"to":787,"weight":0.7728332962873393,"gater":null},{"from":122,"to":788,"weight":-0.8132481846998155,"gater":null},{"from":122,"to":789,"weight":0.5597612095027679,"gater":null},{"from":122,"to":790,"weight":1.3846674152883347,"gater":null},{"from":123,"to":784,"weight":-1.025512467266609,"gater":null},{"from":123,"to":785,"weight":0.21293727854252814,"gater":null},{"from":123,"to":786,"weight":-1.9517736394102607,"gater":null},{"from":123,"to":787,"weight":0.4148987811701641,"gater":null},{"from":123,"to":788,"weight":-0.493089404431363,"gater":null},{"from":123,"to":789,"weight":1.7159618657484752,"gater":null},{"from":123,"to":790,"weight":1.7235093255454332,"gater":null},{"from":124,"to":784,"weight":-1.8451852825533521,"gater":null},{"from":124,"to":785,"weight":0.15796973724116947,"gater":null},{"from":124,"to":786,"weight":-3.8299750139970925,"gater":null},{"from":124,"to":787,"weight":-0.17086069578801505,"gater":null},{"from":124,"to":788,"weight":-0.35854206143534545,"gater":null},{"from":124,"to":789,"weight":0.01242972342977541,"gater":null},{"from":124,"to":790,"weight":1.5512334265925427,"gater":null},{"from":125,"to":784,"weight":-3.064048959199659,"gater":null},{"from":125,"to":785,"weight":0.9099966824325861,"gater":null},{"from":125,"to":786,"weight":-2.1635510878064514,"gater":null},{"from":125,"to":787,"weight":1.1735904695124708,"gater":null},{"from":125,"to":788,"weight":1.292028135593591,"gater":null},{"from":125,"to":789,"weight":0.80808556362283,"gater":null},{"from":125,"to":790,"weight":1.2096583950271935,"gater":null},{"from":126,"to":784,"weight":-3.989672470196942,"gater":null},{"from":126,"to":785,"weight":1.3270891732158572,"gater":null},{"from":126,"to":786,"weight":-0.7846889994204554,"gater":null},{"from":126,"to":787,"weight":-0.6496328627557442,"gater":null},{"from":126,"to":788,"weight":-0.3201708024222633,"gater":null},{"from":126,"to":789,"weight":0.559933418041178,"gater":null},{"from":126,"to":790,"weight":0.6741707936959463,"gater":null},{"from":127,"to":784,"weight":-4.624410119152173,"gater":null},{"from":127,"to":785,"weight":-0.7650483234138282,"gater":null},{"from":127,"to":786,"weight":-1.8201066702006121,"gater":null},{"from":127,"to":787,"weight":-2.2068516257653656,"gater":null},{"from":127,"to":788,"weight":-0.7832365523011203,"gater":null},{"from":127,"to":789,"weight":-2.3474034522279985,"gater":null},{"from":127,"to":790,"weight":-1.4299731251002106,"gater":null},{"from":128,"to":784,"weight":-1.2742554330578064,"gater":null},{"from":128,"to":785,"weight":0.9063294414272537,"gater":null},{"from":128,"to":786,"weight":-1.146783461620346,"gater":null},{"from":128,"to":787,"weight":-0.8631419687825239,"gater":null},{"from":128,"to":788,"weight":-1.4312913393452893,"gater":null},{"from":128,"to":789,"weight":-0.5329984011139387,"gater":null},{"from":128,"to":790,"weight":-0.7959573102033338,"gater":null},{"from":129,"to":784,"weight":-0.4998139266803056,"gater":null},{"from":129,"to":785,"weight":1.3250587031570706,"gater":null},{"from":129,"to":786,"weight":0.939562297185067,"gater":null},{"from":129,"to":787,"weight":1.584031494640835,"gater":null},{"from":129,"to":788,"weight":-0.6110077504428851,"gater":null},{"from":129,"to":789,"weight":1.698713548665767,"gater":null},{"from":129,"to":790,"weight":-0.5081594731305823,"gater":null},{"from":130,"to":784,"weight":-2.0731689098899064,"gater":null},{"from":130,"to":785,"weight":-0.23056096105906848,"gater":null},{"from":130,"to":786,"weight":-1.0582538914014321,"gater":null},{"from":130,"to":787,"weight":-0.00039782161502171614,"gater":null},{"from":130,"to":788,"weight":-0.4620477963547372,"gater":null},{"from":130,"to":789,"weight":2.0954349949278726,"gater":null},{"from":130,"to":790,"weight":0.046016094702347014,"gater":null},{"from":131,"to":784,"weight":-0.03441786252534873,"gater":null},{"from":131,"to":785,"weight":1.4041960852781445,"gater":null},{"from":131,"to":786,"weight":-0.8477086979069947,"gater":null},{"from":131,"to":787,"weight":0.9038149970308714,"gater":null},{"from":131,"to":788,"weight":-0.6817455150708268,"gater":null},{"from":131,"to":789,"weight":0.10082950413823541,"gater":null},{"from":131,"to":790,"weight":-0.49210383156216897,"gater":null},{"from":132,"to":784,"weight":2.305922977101049,"gater":null},{"from":132,"to":785,"weight":0.9133682325259342,"gater":null},{"from":132,"to":786,"weight":0.3038571607711256,"gater":null},{"from":132,"to":787,"weight":0.7499839787757803,"gater":null},{"from":132,"to":788,"weight":-1.8818586271592963,"gater":null},{"from":132,"to":789,"weight":-1.1413325667065428,"gater":null},{"from":132,"to":790,"weight":-0.09196891001142836,"gater":null},{"from":133,"to":784,"weight":1.9983511238340403,"gater":null},{"from":133,"to":785,"weight":-0.6218924524483658,"gater":null},{"from":133,"to":786,"weight":0.3950936232125891,"gater":null},{"from":133,"to":787,"weight":0.1621198452470582,"gater":null},{"from":133,"to":788,"weight":-1.5539912803177864,"gater":null},{"from":133,"to":789,"weight":2.6452039082404757,"gater":null},{"from":133,"to":790,"weight":0.23131501028750878,"gater":null},{"from":134,"to":784,"weight":0.6822752077635804,"gater":null},{"from":134,"to":785,"weight":-0.8210112776867907,"gater":null},{"from":134,"to":786,"weight":2.530697412442478,"gater":null},{"from":134,"to":787,"weight":-0.39953122427979565,"gater":null},{"from":134,"to":788,"weight":-1.1728067445547838,"gater":null},{"from":134,"to":789,"weight":2.862946949188665,"gater":null},{"from":134,"to":790,"weight":0.647900569185597,"gater":null},{"from":135,"to":784,"weight":-0.1433605434586284,"gater":null},{"from":135,"to":785,"weight":-0.49331529855799167,"gater":null},{"from":135,"to":786,"weight":0.981372069027192,"gater":null},{"from":135,"to":787,"weight":-0.16901209452009103,"gater":null},{"from":135,"to":788,"weight":0.11417216909901165,"gater":null},{"from":135,"to":789,"weight":1.4706469048413326,"gater":null},{"from":135,"to":790,"weight":0.41277709721684763,"gater":null},{"from":136,"to":784,"weight":0.023720694919729425,"gater":null},{"from":136,"to":785,"weight":-0.1960622444112252,"gater":null},{"from":136,"to":786,"weight":-0.8668535996739442,"gater":null},{"from":136,"to":787,"weight":-0.10669332737600126,"gater":null},{"from":136,"to":788,"weight":0.3782122696735844,"gater":null},{"from":136,"to":789,"weight":1.948439080319595,"gater":null},{"from":136,"to":790,"weight":0.7718311541688182,"gater":null},{"from":137,"to":784,"weight":0.02770238734542869,"gater":null},{"from":137,"to":785,"weight":0.05472367977894381,"gater":null},{"from":137,"to":786,"weight":-0.09022151841995721,"gater":null},{"from":137,"to":787,"weight":-0.09131786261017838,"gater":null},{"from":137,"to":788,"weight":0.01520986956922077,"gater":null},{"from":137,"to":789,"weight":0.6913227597499386,"gater":null},{"from":137,"to":790,"weight":0.1687976310699353,"gater":null},{"from":138,"to":784,"weight":-0.06383602679629878,"gater":null},{"from":138,"to":785,"weight":-0.05040115389859266,"gater":null},{"from":138,"to":786,"weight":0.052541417304678074,"gater":null},{"from":138,"to":787,"weight":0.0016185718341237706,"gater":null},{"from":138,"to":788,"weight":0.09621500019269259,"gater":null},{"from":138,"to":789,"weight":-0.00017726757208894116,"gater":null},{"from":138,"to":790,"weight":0.007287067091138287,"gater":null},{"from":139,"to":784,"weight":0.00734809632729258,"gater":null},{"from":139,"to":785,"weight":0.015758146452053937,"gater":null},{"from":139,"to":786,"weight":0.03515292125769762,"gater":null},{"from":139,"to":787,"weight":0.054948283428858574,"gater":null},{"from":139,"to":788,"weight":-0.08963800465518759,"gater":null},{"from":139,"to":789,"weight":-0.09328741390787157,"gater":null},{"from":139,"to":790,"weight":-0.0541004240005297,"gater":null},{"from":140,"to":784,"weight":-0.060365676750995294,"gater":null},{"from":140,"to":785,"weight":-0.08126355702445172,"gater":null},{"from":140,"to":786,"weight":-0.09159659956758306,"gater":null},{"from":140,"to":787,"weight":-0.061889535044073844,"gater":null},{"from":140,"to":788,"weight":-0.02316754729780031,"gater":null},{"from":140,"to":789,"weight":0.03073268552657385,"gater":null},{"from":140,"to":790,"weight":0.0553795455155055,"gater":null},{"from":141,"to":784,"weight":0.09916290366774319,"gater":null},{"from":141,"to":785,"weight":0.015268865074526433,"gater":null},{"from":141,"to":786,"weight":0.022739387305919484,"gater":null},{"from":141,"to":787,"weight":0.09504967497593872,"gater":null},{"from":141,"to":788,"weight":-0.07143352574380374,"gater":null},{"from":141,"to":789,"weight":-0.016146576008456842,"gater":null},{"from":141,"to":790,"weight":-0.01487141034886999,"gater":null},{"from":142,"to":784,"weight":0.07066656962011567,"gater":null},{"from":142,"to":785,"weight":-0.028390107702668553,"gater":null},{"from":142,"to":786,"weight":0.00989313490525462,"gater":null},{"from":142,"to":787,"weight":-0.0916646612387554,"gater":null},{"from":142,"to":788,"weight":0.041783282215096626,"gater":null},{"from":142,"to":789,"weight":-0.0713760515207888,"gater":null},{"from":142,"to":790,"weight":0.04619334157318473,"gater":null},{"from":143,"to":784,"weight":-0.06778779883805044,"gater":null},{"from":143,"to":785,"weight":-0.004954831614686796,"gater":null},{"from":143,"to":786,"weight":-0.0248519166954585,"gater":null},{"from":143,"to":787,"weight":-0.06933933351908468,"gater":null},{"from":143,"to":788,"weight":-0.09032259357763571,"gater":null},{"from":143,"to":789,"weight":-0.0702293181442823,"gater":null},{"from":143,"to":790,"weight":-0.05841004589093755,"gater":null},{"from":144,"to":784,"weight":-0.2822739488568437,"gater":null},{"from":144,"to":785,"weight":-0.01276511443233064,"gater":null},{"from":144,"to":786,"weight":0.6267427629855227,"gater":null},{"from":144,"to":787,"weight":-0.22533308461195667,"gater":null},{"from":144,"to":788,"weight":-0.10936254537080259,"gater":null},{"from":144,"to":789,"weight":0.08021144132664615,"gater":null},{"from":144,"to":790,"weight":0.3651093689155286,"gater":null},{"from":145,"to":784,"weight":-1.825935504493977,"gater":null},{"from":145,"to":785,"weight":0.008320199114897894,"gater":null},{"from":145,"to":786,"weight":0.04455910560562445,"gater":null},{"from":145,"to":787,"weight":-0.2367521135505507,"gater":null},{"from":145,"to":788,"weight":-0.48300341221864806,"gater":null},{"from":145,"to":789,"weight":0.07441738796973342,"gater":null},{"from":145,"to":790,"weight":0.9244360668083413,"gater":null},{"from":146,"to":784,"weight":-1.3910580466669669,"gater":null},{"from":146,"to":785,"weight":0.16082374159299404,"gater":null},{"from":146,"to":786,"weight":-0.5326557371550102,"gater":null},{"from":146,"to":787,"weight":-0.27342303983213,"gater":null},{"from":146,"to":788,"weight":-0.8195134356074439,"gater":null},{"from":146,"to":789,"weight":-0.5915343410439045,"gater":null},{"from":146,"to":790,"weight":0.8021175181688404,"gater":null},{"from":147,"to":784,"weight":0.5715916399838202,"gater":null},{"from":147,"to":785,"weight":0.09831715957328374,"gater":null},{"from":147,"to":786,"weight":-0.6955822731324155,"gater":null},{"from":147,"to":787,"weight":-0.10238803767248925,"gater":null},{"from":147,"to":788,"weight":-0.7129539414200976,"gater":null},{"from":147,"to":789,"weight":0.910532535406745,"gater":null},{"from":147,"to":790,"weight":-0.16543160684643174,"gater":null},{"from":148,"to":784,"weight":-0.15855516025911862,"gater":null},{"from":148,"to":785,"weight":0.04712891532597818,"gater":null},{"from":148,"to":786,"weight":0.33406922445465925,"gater":null},{"from":148,"to":787,"weight":0.4902627395965595,"gater":null},{"from":148,"to":788,"weight":-1.0032882616380523,"gater":null},{"from":148,"to":789,"weight":0.15674088788922522,"gater":null},{"from":148,"to":790,"weight":-0.5418078455385424,"gater":null},{"from":149,"to":784,"weight":-1.2991476533658806,"gater":null},{"from":149,"to":785,"weight":-1.2418208158902897,"gater":null},{"from":149,"to":786,"weight":-0.768957747868559,"gater":null},{"from":149,"to":787,"weight":0.46102785653132333,"gater":null},{"from":149,"to":788,"weight":-1.8950974817602686,"gater":null},{"from":149,"to":789,"weight":-1.5203538020527605,"gater":null},{"from":149,"to":790,"weight":1.4209200132896616,"gater":null},{"from":150,"to":784,"weight":-1.0098335823524054,"gater":null},{"from":150,"to":785,"weight":0.35916939059862757,"gater":null},{"from":150,"to":786,"weight":-0.05679401635686047,"gater":null},{"from":150,"to":787,"weight":2.568895577505319,"gater":null},{"from":150,"to":788,"weight":-1.5014940261956211,"gater":null},{"from":150,"to":789,"weight":-0.6319417426541193,"gater":null},{"from":150,"to":790,"weight":1.126309413498693,"gater":null},{"from":151,"to":784,"weight":-1.7604030942272069,"gater":null},{"from":151,"to":785,"weight":0.5264991443868191,"gater":null},{"from":151,"to":786,"weight":-0.1664370873950617,"gater":null},{"from":151,"to":787,"weight":3.340915314447035,"gater":null},{"from":151,"to":788,"weight":-1.7948255083222835,"gater":null},{"from":151,"to":789,"weight":1.7824309236388065,"gater":null},{"from":151,"to":790,"weight":1.0581526717205647,"gater":null},{"from":152,"to":784,"weight":-1.337508738741059,"gater":null},{"from":152,"to":785,"weight":0.6675422485420911,"gater":null},{"from":152,"to":786,"weight":-1.9630432209850235,"gater":null},{"from":152,"to":787,"weight":-0.8023994855571346,"gater":null},{"from":152,"to":788,"weight":-0.8699759491708043,"gater":null},{"from":152,"to":789,"weight":0.21877035820068605,"gater":null},{"from":152,"to":790,"weight":0.7435165214725914,"gater":null},{"from":153,"to":784,"weight":-0.3985362455041431,"gater":null},{"from":153,"to":785,"weight":0.1337830804438728,"gater":null},{"from":153,"to":786,"weight":-1.8583595824088113,"gater":null},{"from":153,"to":787,"weight":0.7762459520958882,"gater":null},{"from":153,"to":788,"weight":0.6289284556400672,"gater":null},{"from":153,"to":789,"weight":0.4265659062258039,"gater":null},{"from":153,"to":790,"weight":1.135744284236182,"gater":null},{"from":154,"to":784,"weight":-1.6106904381499585,"gater":null},{"from":154,"to":785,"weight":0.11335692039397358,"gater":null},{"from":154,"to":786,"weight":-0.11497750189417533,"gater":null},{"from":154,"to":787,"weight":0.19244169371372155,"gater":null},{"from":154,"to":788,"weight":0.35450847820220605,"gater":null},{"from":154,"to":789,"weight":-1.1659794353269683,"gater":null},{"from":154,"to":790,"weight":1.7887449080830424,"gater":null},{"from":155,"to":784,"weight":-3.0172244576298213,"gater":null},{"from":155,"to":785,"weight":-1.1700800200654962,"gater":null},{"from":155,"to":786,"weight":-4.553967410126099,"gater":null},{"from":155,"to":787,"weight":-0.35849018912919595,"gater":null},{"from":155,"to":788,"weight":1.0346438259480442,"gater":null},{"from":155,"to":789,"weight":-0.8976520647705293,"gater":null},{"from":155,"to":790,"weight":0.4061060608408721,"gater":null},{"from":156,"to":784,"weight":0.5611451620477865,"gater":null},{"from":156,"to":785,"weight":-0.41720824359308184,"gater":null},{"from":156,"to":786,"weight":1.5351637110597278,"gater":null},{"from":156,"to":787,"weight":1.4087370743111969,"gater":null},{"from":156,"to":788,"weight":1.0194252102144887,"gater":null},{"from":156,"to":789,"weight":0.3011477843478262,"gater":null},{"from":156,"to":790,"weight":1.3674597836707518,"gater":null},{"from":157,"to":784,"weight":0.3499596081885735,"gater":null},{"from":157,"to":785,"weight":0.17523522976340236,"gater":null},{"from":157,"to":786,"weight":1.616063588667742,"gater":null},{"from":157,"to":787,"weight":1.3779325907013824,"gater":null},{"from":157,"to":788,"weight":0.7157919303398241,"gater":null},{"from":157,"to":789,"weight":-1.7066914856865074,"gater":null},{"from":157,"to":790,"weight":0.7846478483665371,"gater":null},{"from":158,"to":784,"weight":-0.24913528739596713,"gater":null},{"from":158,"to":785,"weight":1.8183189646343816,"gater":null},{"from":158,"to":786,"weight":-0.9602672973230947,"gater":null},{"from":158,"to":787,"weight":0.0325681599501739,"gater":null},{"from":158,"to":788,"weight":0.8169885838345523,"gater":null},{"from":158,"to":789,"weight":-2.58218573620812,"gater":null},{"from":158,"to":790,"weight":-0.23135576275408365,"gater":null},{"from":159,"to":784,"weight":-1.3742239804435603,"gater":null},{"from":159,"to":785,"weight":0.08284905977073727,"gater":null},{"from":159,"to":786,"weight":-0.9749460796869001,"gater":null},{"from":159,"to":787,"weight":0.11504982288509263,"gater":null},{"from":159,"to":788,"weight":0.26097718337336967,"gater":null},{"from":159,"to":789,"weight":0.014701705389797278,"gater":null},{"from":159,"to":790,"weight":0.06729014713234423,"gater":null},{"from":160,"to":784,"weight":0.553863739607682,"gater":null},{"from":160,"to":785,"weight":1.161696655251522,"gater":null},{"from":160,"to":786,"weight":1.2412053418288191,"gater":null},{"from":160,"to":787,"weight":1.3510160642497875,"gater":null},{"from":160,"to":788,"weight":0.07605531727349583,"gater":null},{"from":160,"to":789,"weight":0.4005492121102269,"gater":null},{"from":160,"to":790,"weight":1.3465870663065902,"gater":null},{"from":161,"to":784,"weight":0.9501632589076612,"gater":null},{"from":161,"to":785,"weight":1.3030356234563056,"gater":null},{"from":161,"to":786,"weight":0.4483919852560472,"gater":null},{"from":161,"to":787,"weight":0.9637193646793076,"gater":null},{"from":161,"to":788,"weight":-1.0258560918755686,"gater":null},{"from":161,"to":789,"weight":0.5829833668670176,"gater":null},{"from":161,"to":790,"weight":2.4615331446107036,"gater":null},{"from":162,"to":784,"weight":0.41766787611568457,"gater":null},{"from":162,"to":785,"weight":-0.09843393535628865,"gater":null},{"from":162,"to":786,"weight":2.4438017645100745,"gater":null},{"from":162,"to":787,"weight":-0.1402654621980052,"gater":null},{"from":162,"to":788,"weight":-0.6614636292011844,"gater":null},{"from":162,"to":789,"weight":0.8456189877539588,"gater":null},{"from":162,"to":790,"weight":1.8184879262387843,"gater":null},{"from":163,"to":784,"weight":-0.4941441611691123,"gater":null},{"from":163,"to":785,"weight":-0.650311662123547,"gater":null},{"from":163,"to":786,"weight":0.32167966374953083,"gater":null},{"from":163,"to":787,"weight":-0.353435728473504,"gater":null},{"from":163,"to":788,"weight":0.1861440233933443,"gater":null},{"from":163,"to":789,"weight":0.847853560288485,"gater":null},{"from":163,"to":790,"weight":1.0485857379070809,"gater":null},{"from":164,"to":784,"weight":0.19352420472141102,"gater":null},{"from":164,"to":785,"weight":0.07531081583453987,"gater":null},{"from":164,"to":786,"weight":-0.9412562382572595,"gater":null},{"from":164,"to":787,"weight":0.17476056433319379,"gater":null},{"from":164,"to":788,"weight":-0.13843365817391545,"gater":null},{"from":164,"to":789,"weight":0.8800212933040835,"gater":null},{"from":164,"to":790,"weight":0.5931015981678626,"gater":null},{"from":165,"to":784,"weight":0.12536932384978047,"gater":null},{"from":165,"to":785,"weight":0.07938670578963472,"gater":null},{"from":165,"to":786,"weight":-0.19870468046673237,"gater":null},{"from":165,"to":787,"weight":0.11176103210585696,"gater":null},{"from":165,"to":788,"weight":-0.21049151918975442,"gater":null},{"from":165,"to":789,"weight":0.25851147566125515,"gater":null},{"from":165,"to":790,"weight":0.027450200686723273,"gater":null},{"from":166,"to":784,"weight":0.07357704124575866,"gater":null},{"from":166,"to":785,"weight":0.07238692611413752,"gater":null},{"from":166,"to":786,"weight":-0.19316031282494847,"gater":null},{"from":166,"to":787,"weight":0.08810699449720685,"gater":null},{"from":166,"to":788,"weight":-0.04841425478910211,"gater":null},{"from":166,"to":789,"weight":-0.054269384070487044,"gater":null},{"from":166,"to":790,"weight":-0.01733568121177417,"gater":null},{"from":167,"to":784,"weight":0.08980389848537731,"gater":null},{"from":167,"to":785,"weight":0.06374738250965947,"gater":null},{"from":167,"to":786,"weight":-0.08557636307669232,"gater":null},{"from":167,"to":787,"weight":-0.043500752102858926,"gater":null},{"from":167,"to":788,"weight":0.0591131419665088,"gater":null},{"from":167,"to":789,"weight":-0.0942778519636447,"gater":null},{"from":167,"to":790,"weight":-0.04328070275304552,"gater":null},{"from":168,"to":784,"weight":0.028780261348760966,"gater":null},{"from":168,"to":785,"weight":-0.011004067317484448,"gater":null},{"from":168,"to":786,"weight":-0.016983752253888623,"gater":null},{"from":168,"to":787,"weight":0.006598374073091981,"gater":null},{"from":168,"to":788,"weight":-0.07086293657342889,"gater":null},{"from":168,"to":789,"weight":0.023572063196983267,"gater":null},{"from":168,"to":790,"weight":-0.018629406442560142,"gater":null},{"from":169,"to":784,"weight":-0.029306661011258894,"gater":null},{"from":169,"to":785,"weight":0.09591243583145662,"gater":null},{"from":169,"to":786,"weight":0.07009340990748711,"gater":null},{"from":169,"to":787,"weight":-0.023123348174588984,"gater":null},{"from":169,"to":788,"weight":0.04234044180189106,"gater":null},{"from":169,"to":789,"weight":-0.03381803034954958,"gater":null},{"from":169,"to":790,"weight":-0.008568696516838073,"gater":null},{"from":170,"to":784,"weight":-0.28750125160799556,"gater":null},{"from":170,"to":785,"weight":0.07773168776996862,"gater":null},{"from":170,"to":786,"weight":-0.041070736709799875,"gater":null},{"from":170,"to":787,"weight":0.20691357104608252,"gater":null},{"from":170,"to":788,"weight":0.016934992105807886,"gater":null},{"from":170,"to":789,"weight":0.0262203231203341,"gater":null},{"from":170,"to":790,"weight":0.0796725931312527,"gater":null},{"from":171,"to":784,"weight":-0.40213307964374484,"gater":null},{"from":171,"to":785,"weight":-0.027994507854757638,"gater":null},{"from":171,"to":786,"weight":0.3866081355086369,"gater":null},{"from":171,"to":787,"weight":0.14572779873650768,"gater":null},{"from":171,"to":788,"weight":0.06284102829412735,"gater":null},{"from":171,"to":789,"weight":0.15149600288641876,"gater":null},{"from":171,"to":790,"weight":0.18883732198506514,"gater":null},{"from":172,"to":784,"weight":-0.6636568202635309,"gater":null},{"from":172,"to":785,"weight":-0.04360078412622649,"gater":null},{"from":172,"to":786,"weight":1.4857925248763248,"gater":null},{"from":172,"to":787,"weight":-0.11556150910810245,"gater":null},{"from":172,"to":788,"weight":-0.14997228391577674,"gater":null},{"from":172,"to":789,"weight":0.5514140836896366,"gater":null},{"from":172,"to":790,"weight":0.2798571327995735,"gater":null},{"from":173,"to":784,"weight":-0.02447086141600864,"gater":null},{"from":173,"to":785,"weight":0.11479596691292826,"gater":null},{"from":173,"to":786,"weight":0.7111783920721394,"gater":null},{"from":173,"to":787,"weight":-0.5817920135618165,"gater":null},{"from":173,"to":788,"weight":-0.4710111562455156,"gater":null},{"from":173,"to":789,"weight":0.2870691908193652,"gater":null},{"from":173,"to":790,"weight":0.2336515112966594,"gater":null},{"from":174,"to":784,"weight":0.8082225645164683,"gater":null},{"from":174,"to":785,"weight":0.14916965337947755,"gater":null},{"from":174,"to":786,"weight":-1.079586940871632,"gater":null},{"from":174,"to":787,"weight":0.13077637724856134,"gater":null},{"from":174,"to":788,"weight":-0.7120007431935793,"gater":null},{"from":174,"to":789,"weight":-0.7121587369313644,"gater":null},{"from":174,"to":790,"weight":0.25405571794035076,"gater":null},{"from":175,"to":784,"weight":1.4760930180529037,"gater":null},{"from":175,"to":785,"weight":0.18818801845922156,"gater":null},{"from":175,"to":786,"weight":-0.10050752436863197,"gater":null},{"from":175,"to":787,"weight":0.23411526812981673,"gater":null},{"from":175,"to":788,"weight":-0.39141268363238485,"gater":null},{"from":175,"to":789,"weight":0.6177228172527678,"gater":null},{"from":175,"to":790,"weight":-0.6858533439258194,"gater":null},{"from":176,"to":784,"weight":-0.40772355324701887,"gater":null},{"from":176,"to":785,"weight":-0.42748012521517637,"gater":null},{"from":176,"to":786,"weight":0.46434507493475885,"gater":null},{"from":176,"to":787,"weight":-1.1390262152930977,"gater":null},{"from":176,"to":788,"weight":-1.8819176912287672,"gater":null},{"from":176,"to":789,"weight":0.20833753274579606,"gater":null},{"from":176,"to":790,"weight":-1.004453531186282,"gater":null},{"from":177,"to":784,"weight":-1.4224575284217895,"gater":null},{"from":177,"to":785,"weight":-0.4444427151547238,"gater":null},{"from":177,"to":786,"weight":-1.261947691066883,"gater":null},{"from":177,"to":787,"weight":-0.3018617695762107,"gater":null},{"from":177,"to":788,"weight":-1.9219684784772098,"gater":null},{"from":177,"to":789,"weight":1.1708308877428761,"gater":null},{"from":177,"to":790,"weight":0.2913607946788617,"gater":null},{"from":178,"to":784,"weight":0.18535613481699673,"gater":null},{"from":178,"to":785,"weight":-0.6862548049352308,"gater":null},{"from":178,"to":786,"weight":-0.6408234541935501,"gater":null},{"from":178,"to":787,"weight":0.4416994311371324,"gater":null},{"from":178,"to":788,"weight":0.06993682418418751,"gater":null},{"from":178,"to":789,"weight":0.6395055995528828,"gater":null},{"from":178,"to":790,"weight":-1.3771088119241908,"gater":null},{"from":179,"to":784,"weight":-1.5137618640992703,"gater":null},{"from":179,"to":785,"weight":0.4004651263942434,"gater":null},{"from":179,"to":786,"weight":-0.3810497634104856,"gater":null},{"from":179,"to":787,"weight":0.6352051038135949,"gater":null},{"from":179,"to":788,"weight":-0.3918502321168955,"gater":null},{"from":179,"to":789,"weight":1.4360720887452816,"gater":null},{"from":179,"to":790,"weight":-0.5710605078529705,"gater":null},{"from":180,"to":784,"weight":0.5319397308569943,"gater":null},{"from":180,"to":785,"weight":0.5240123078973083,"gater":null},{"from":180,"to":786,"weight":-1.594407769303434,"gater":null},{"from":180,"to":787,"weight":1.0795888410467893,"gater":null},{"from":180,"to":788,"weight":-0.4086709022194796,"gater":null},{"from":180,"to":789,"weight":2.7115695513523876,"gater":null},{"from":180,"to":790,"weight":-0.9644398465641953,"gater":null},{"from":181,"to":784,"weight":-0.02827181881721943,"gater":null},{"from":181,"to":785,"weight":0.41547576609719333,"gater":null},{"from":181,"to":786,"weight":-3.566338378132861,"gater":null},{"from":181,"to":787,"weight":0.508886886806677,"gater":null},{"from":181,"to":788,"weight":-0.6840362626967481,"gater":null},{"from":181,"to":789,"weight":2.1611477572578477,"gater":null},{"from":181,"to":790,"weight":1.8124991540806745,"gater":null},{"from":182,"to":784,"weight":-0.2992438409217662,"gater":null},{"from":182,"to":785,"weight":1.2610086251609636,"gater":null},{"from":182,"to":786,"weight":-1.3004829983827304,"gater":null},{"from":182,"to":787,"weight":0.07996466015824301,"gater":null},{"from":182,"to":788,"weight":0.634137031763159,"gater":null},{"from":182,"to":789,"weight":-0.13224757493971534,"gater":null},{"from":182,"to":790,"weight":2.0665055186185457,"gater":null},{"from":183,"to":784,"weight":-1.8683955661726719,"gater":null},{"from":183,"to":785,"weight":0.8132556201765794,"gater":null},{"from":183,"to":786,"weight":-2.348308873113375,"gater":null},{"from":183,"to":787,"weight":0.1821240154777225,"gater":null},{"from":183,"to":788,"weight":1.2754887883292443,"gater":null},{"from":183,"to":789,"weight":-0.09612442527750431,"gater":null},{"from":183,"to":790,"weight":0.6480005229506325,"gater":null},{"from":184,"to":784,"weight":2.15322658872207,"gater":null},{"from":184,"to":785,"weight":1.668401822819691,"gater":null},{"from":184,"to":786,"weight":-1.9490073908655106,"gater":null},{"from":184,"to":787,"weight":0.6122600374684369,"gater":null},{"from":184,"to":788,"weight":0.6720004824382082,"gater":null},{"from":184,"to":789,"weight":2.483952321683071,"gater":null},{"from":184,"to":790,"weight":-1.6779820911031271,"gater":null},{"from":185,"to":784,"weight":-1.7299035266574265,"gater":null},{"from":185,"to":785,"weight":0.33082384876331616,"gater":null},{"from":185,"to":786,"weight":-2.868809632354488,"gater":null},{"from":185,"to":787,"weight":0.19176324003803674,"gater":null},{"from":185,"to":788,"weight":1.956195737045052,"gater":null},{"from":185,"to":789,"weight":2.7714440011242414,"gater":null},{"from":185,"to":790,"weight":-0.7943505967699526,"gater":null},{"from":186,"to":784,"weight":-0.6667029993989761,"gater":null},{"from":186,"to":785,"weight":1.2740317510622827,"gater":null},{"from":186,"to":786,"weight":0.7783999771472602,"gater":null},{"from":186,"to":787,"weight":0.6642538946089006,"gater":null},{"from":186,"to":788,"weight":-0.1410846608374167,"gater":null},{"from":186,"to":789,"weight":-0.43821954513441075,"gater":null},{"from":186,"to":790,"weight":0.8373685887811956,"gater":null},{"from":187,"to":784,"weight":-1.1004837868245319,"gater":null},{"from":187,"to":785,"weight":0.6174905233855887,"gater":null},{"from":187,"to":786,"weight":-0.22402670457196885,"gater":null},{"from":187,"to":787,"weight":-1.2576380037149195,"gater":null},{"from":187,"to":788,"weight":1.1580855073577483,"gater":null},{"from":187,"to":789,"weight":1.8161647974620891,"gater":null},{"from":187,"to":790,"weight":1.1572467394214232,"gater":null},{"from":188,"to":784,"weight":-0.7273925542608599,"gater":null},{"from":188,"to":785,"weight":0.043099193727502864,"gater":null},{"from":188,"to":786,"weight":-1.429323278951489,"gater":null},{"from":188,"to":787,"weight":0.3350231479841862,"gater":null},{"from":188,"to":788,"weight":2.3269877906620957,"gater":null},{"from":188,"to":789,"weight":2.147891612776236,"gater":null},{"from":188,"to":790,"weight":0.4695357809172881,"gater":null},{"from":189,"to":784,"weight":0.8509235943539044,"gater":null},{"from":189,"to":785,"weight":-0.33306294247517126,"gater":null},{"from":189,"to":786,"weight":-0.17390256872405652,"gater":null},{"from":189,"to":787,"weight":-0.4458467080038061,"gater":null},{"from":189,"to":788,"weight":1.4830327918517687,"gater":null},{"from":189,"to":789,"weight":-0.2642229719648028,"gater":null},{"from":189,"to":790,"weight":1.1235643959582253,"gater":null},{"from":190,"to":784,"weight":0.4174738396567804,"gater":null},{"from":190,"to":785,"weight":1.0605087549531529,"gater":null},{"from":190,"to":786,"weight":1.7485847126262777,"gater":null},{"from":190,"to":787,"weight":1.03478094324275,"gater":null},{"from":190,"to":788,"weight":0.0799885209041922,"gater":null},{"from":190,"to":789,"weight":-1.3247216240456863,"gater":null},{"from":190,"to":790,"weight":1.3943766630519525,"gater":null},{"from":191,"to":784,"weight":-0.2378934536282614,"gater":null},{"from":191,"to":785,"weight":0.5661909132843534,"gater":null},{"from":191,"to":786,"weight":2.089611288332394,"gater":null},{"from":191,"to":787,"weight":0.7507274002445872,"gater":null},{"from":191,"to":788,"weight":0.20909287429424805,"gater":null},{"from":191,"to":789,"weight":2.2485576151373468,"gater":null},{"from":191,"to":790,"weight":1.5998327099759777,"gater":null},{"from":192,"to":784,"weight":0.6468779561975301,"gater":null},{"from":192,"to":785,"weight":0.7510385776445109,"gater":null},{"from":192,"to":786,"weight":1.8283029699359274,"gater":null},{"from":192,"to":787,"weight":1.0020686737808688,"gater":null},{"from":192,"to":788,"weight":-1.0818161477014225,"gater":null},{"from":192,"to":789,"weight":2.353924558672043,"gater":null},{"from":192,"to":790,"weight":1.237598631333036,"gater":null},{"from":193,"to":784,"weight":-0.6399310440277376,"gater":null},{"from":193,"to":785,"weight":0.3866982466752653,"gater":null},{"from":193,"to":786,"weight":0.20795085313768652,"gater":null},{"from":193,"to":787,"weight":0.3889643308327349,"gater":null},{"from":193,"to":788,"weight":-1.2350436248780772,"gater":null},{"from":193,"to":789,"weight":0.8209391971426968,"gater":null},{"from":193,"to":790,"weight":0.7877179111582339,"gater":null},{"from":194,"to":784,"weight":-0.7422127920069462,"gater":null},{"from":194,"to":785,"weight":0.0460071688511682,"gater":null},{"from":194,"to":786,"weight":-0.3324895192981787,"gater":null},{"from":194,"to":787,"weight":0.1491263116747743,"gater":null},{"from":194,"to":788,"weight":-1.0756480085543143,"gater":null},{"from":194,"to":789,"weight":-0.48222109232678745,"gater":null},{"from":194,"to":790,"weight":0.7896581892192428,"gater":null},{"from":195,"to":784,"weight":-0.10239130686012976,"gater":null},{"from":195,"to":785,"weight":0.020913115988857964,"gater":null},{"from":195,"to":786,"weight":-0.17432751772504193,"gater":null},{"from":195,"to":787,"weight":0.025030569253126078,"gater":null},{"from":195,"to":788,"weight":-0.6678430772233861,"gater":null},{"from":195,"to":789,"weight":-0.3378943135636311,"gater":null},{"from":195,"to":790,"weight":0.6119030671174143,"gater":null},{"from":196,"to":784,"weight":0.09583625485792642,"gater":null},{"from":196,"to":785,"weight":-0.09796160566480198,"gater":null},{"from":196,"to":786,"weight":-0.0605594774864041,"gater":null},{"from":196,"to":787,"weight":-0.08923520429674055,"gater":null},{"from":196,"to":788,"weight":-0.0443864770860906,"gater":null},{"from":196,"to":789,"weight":-0.056709193481607696,"gater":null},{"from":196,"to":790,"weight":-0.018867328629790712,"gater":null},{"from":197,"to":784,"weight":0.09152742165713054,"gater":null},{"from":197,"to":785,"weight":-0.0463253065229169,"gater":null},{"from":197,"to":786,"weight":0.08708765306989276,"gater":null},{"from":197,"to":787,"weight":0.044741572390334015,"gater":null},{"from":197,"to":788,"weight":-0.076474435630885,"gater":null},{"from":197,"to":789,"weight":0.05863710386746631,"gater":null},{"from":197,"to":790,"weight":0.03228726761596064,"gater":null},{"from":198,"to":784,"weight":-0.2543947911445691,"gater":null},{"from":198,"to":785,"weight":-0.08930795383525916,"gater":null},{"from":198,"to":786,"weight":-0.09504553732731597,"gater":null},{"from":198,"to":787,"weight":0.11520997679621038,"gater":null},{"from":198,"to":788,"weight":-0.028477726755148442,"gater":null},{"from":198,"to":789,"weight":-0.6487876745323884,"gater":null},{"from":198,"to":790,"weight":0.029398764389500703,"gater":null},{"from":199,"to":784,"weight":0.435563044314064,"gater":null},{"from":199,"to":785,"weight":-0.009648660937122262,"gater":null},{"from":199,"to":786,"weight":-0.4767780649210503,"gater":null},{"from":199,"to":787,"weight":0.12528554162011718,"gater":null},{"from":199,"to":788,"weight":-0.025148837016228207,"gater":null},{"from":199,"to":789,"weight":0.11274044439847832,"gater":null},{"from":199,"to":790,"weight":0.02490246262430374,"gater":null},{"from":200,"to":784,"weight":0.7027014338673866,"gater":null},{"from":200,"to":785,"weight":0.10096202160736507,"gater":null},{"from":200,"to":786,"weight":-0.8602413095939868,"gater":null},{"from":200,"to":787,"weight":-0.2185891862057405,"gater":null},{"from":200,"to":788,"weight":0.002100132438249385,"gater":null},{"from":200,"to":789,"weight":0.07526934446446476,"gater":null},{"from":200,"to":790,"weight":-0.04394610590801523,"gater":null},{"from":201,"to":784,"weight":-0.3815601039269593,"gater":null},{"from":201,"to":785,"weight":0.22285791263324564,"gater":null},{"from":201,"to":786,"weight":-0.0011235525954478797,"gater":null},{"from":201,"to":787,"weight":0.3260282952141191,"gater":null},{"from":201,"to":788,"weight":-0.24239875657137402,"gater":null},{"from":201,"to":789,"weight":-0.6978097859170999,"gater":null},{"from":201,"to":790,"weight":0.7704939267732939,"gater":null},{"from":202,"to":784,"weight":1.127520507038272,"gater":null},{"from":202,"to":785,"weight":1.2140257592699792,"gater":null},{"from":202,"to":786,"weight":0.0990326359120433,"gater":null},{"from":202,"to":787,"weight":1.097344785817592,"gater":null},{"from":202,"to":788,"weight":-0.4535438398305814,"gater":null},{"from":202,"to":789,"weight":-0.5953122265428372,"gater":null},{"from":202,"to":790,"weight":0.052070959182486005,"gater":null},{"from":203,"to":784,"weight":0.8695070265431334,"gater":null},{"from":203,"to":785,"weight":1.2102016869608687,"gater":null},{"from":203,"to":786,"weight":-2.818017530402877,"gater":null},{"from":203,"to":787,"weight":0.24635234409755422,"gater":null},{"from":203,"to":788,"weight":-0.42012606673969527,"gater":null},{"from":203,"to":789,"weight":0.15881096089187205,"gater":null},{"from":203,"to":790,"weight":-2.241771944659857,"gater":null},{"from":204,"to":784,"weight":-0.6471486150848005,"gater":null},{"from":204,"to":785,"weight":1.0071605790609028,"gater":null},{"from":204,"to":786,"weight":0.373404825551544,"gater":null},{"from":204,"to":787,"weight":-0.5572260251785375,"gater":null},{"from":204,"to":788,"weight":-2.019738795727471,"gater":null},{"from":204,"to":789,"weight":1.3264537381200114,"gater":null},{"from":204,"to":790,"weight":0.08780881478449869,"gater":null},{"from":205,"to":784,"weight":-0.04067604069549278,"gater":null},{"from":205,"to":785,"weight":0.3265176785663618,"gater":null},{"from":205,"to":786,"weight":1.3766116086835272,"gater":null},{"from":205,"to":787,"weight":-1.3134733479914233,"gater":null},{"from":205,"to":788,"weight":-1.3405052892143123,"gater":null},{"from":205,"to":789,"weight":0.47907009701365416,"gater":null},{"from":205,"to":790,"weight":0.9486996205951856,"gater":null},{"from":206,"to":784,"weight":0.2994598056123236,"gater":null},{"from":206,"to":785,"weight":-0.07288057058590107,"gater":null},{"from":206,"to":786,"weight":-0.7559042742445854,"gater":null},{"from":206,"to":787,"weight":-1.1352953917863964,"gater":null},{"from":206,"to":788,"weight":0.8346943254470585,"gater":null},{"from":206,"to":789,"weight":-0.7822219621289485,"gater":null},{"from":206,"to":790,"weight":-0.64548974199416,"gater":null},{"from":207,"to":784,"weight":0.011246729398668333,"gater":null},{"from":207,"to":785,"weight":-0.35172552269496066,"gater":null},{"from":207,"to":786,"weight":0.6134576921942563,"gater":null},{"from":207,"to":787,"weight":1.6269132743003436,"gater":null},{"from":207,"to":788,"weight":-0.1318988256253463,"gater":null},{"from":207,"to":789,"weight":-1.4512217165977017,"gater":null},{"from":207,"to":790,"weight":-0.11076747713226252,"gater":null},{"from":208,"to":784,"weight":-0.2918063585851517,"gater":null},{"from":208,"to":785,"weight":-0.039423696349114475,"gater":null},{"from":208,"to":786,"weight":-0.4703213628071182,"gater":null},{"from":208,"to":787,"weight":0.3610272133465088,"gater":null},{"from":208,"to":788,"weight":-1.1054853137392928,"gater":null},{"from":208,"to":789,"weight":1.1583267918968552,"gater":null},{"from":208,"to":790,"weight":-0.8751030280553228,"gater":null},{"from":209,"to":784,"weight":-0.18710857052006435,"gater":null},{"from":209,"to":785,"weight":2.152466528412001,"gater":null},{"from":209,"to":786,"weight":-0.4631805849084896,"gater":null},{"from":209,"to":787,"weight":-0.5093510650746962,"gater":null},{"from":209,"to":788,"weight":1.1933315141038425,"gater":null},{"from":209,"to":789,"weight":1.2449311758223227,"gater":null},{"from":209,"to":790,"weight":0.7948450806067818,"gater":null},{"from":210,"to":784,"weight":-0.35891146335863267,"gater":null},{"from":210,"to":785,"weight":0.2946781388545893,"gater":null},{"from":210,"to":786,"weight":-2.2150068899433952,"gater":null},{"from":210,"to":787,"weight":-0.37936472578035674,"gater":null},{"from":210,"to":788,"weight":-0.31012614467323363,"gater":null},{"from":210,"to":789,"weight":0.22146894778024423,"gater":null},{"from":210,"to":790,"weight":-1.2859439013332403,"gater":null},{"from":211,"to":784,"weight":-1.2173519053830493,"gater":null},{"from":211,"to":785,"weight":0.6177785907637078,"gater":null},{"from":211,"to":786,"weight":-3.059714999748427,"gater":null},{"from":211,"to":787,"weight":0.9837307382628743,"gater":null},{"from":211,"to":788,"weight":0.6065478439157739,"gater":null},{"from":211,"to":789,"weight":-0.6985621377389135,"gater":null},{"from":211,"to":790,"weight":-0.5546339899591755,"gater":null},{"from":212,"to":784,"weight":0.6026170587684998,"gater":null},{"from":212,"to":785,"weight":1.4938955532654183,"gater":null},{"from":212,"to":786,"weight":1.4452852685094282,"gater":null},{"from":212,"to":787,"weight":1.0116855276170387,"gater":null},{"from":212,"to":788,"weight":1.5788604571938831,"gater":null},{"from":212,"to":789,"weight":-0.3066241368811017,"gater":null},{"from":212,"to":790,"weight":0.7467404864272789,"gater":null},{"from":213,"to":784,"weight":-1.220656037183358,"gater":null},{"from":213,"to":785,"weight":-0.3103592410693576,"gater":null},{"from":213,"to":786,"weight":0.30944282541670864,"gater":null},{"from":213,"to":787,"weight":-0.6626248270845869,"gater":null},{"from":213,"to":788,"weight":1.7098471142503775,"gater":null},{"from":213,"to":789,"weight":-0.9407081382967707,"gater":null},{"from":213,"to":790,"weight":2.187745204158998,"gater":null},{"from":214,"to":784,"weight":-0.0787016365094058,"gater":null},{"from":214,"to":785,"weight":-0.21176681318401175,"gater":null},{"from":214,"to":786,"weight":0.691964502850226,"gater":null},{"from":214,"to":787,"weight":-1.6081466625071024,"gater":null},{"from":214,"to":788,"weight":0.8855996943428741,"gater":null},{"from":214,"to":789,"weight":0.6058328320981704,"gater":null},{"from":214,"to":790,"weight":0.04643200743743691,"gater":null},{"from":215,"to":784,"weight":-0.8219700716230584,"gater":null},{"from":215,"to":785,"weight":-1.4154328025759504,"gater":null},{"from":215,"to":786,"weight":-0.9371121766311306,"gater":null},{"from":215,"to":787,"weight":-0.6329020959928675,"gater":null},{"from":215,"to":788,"weight":0.7269245786767452,"gater":null},{"from":215,"to":789,"weight":1.796237803278362,"gater":null},{"from":215,"to":790,"weight":0.045958481040693146,"gater":null},{"from":216,"to":784,"weight":-0.5994760577773544,"gater":null},{"from":216,"to":785,"weight":0.25256737349978375,"gater":null},{"from":216,"to":786,"weight":0.48757352655152697,"gater":null},{"from":216,"to":787,"weight":-0.37172048719759837,"gater":null},{"from":216,"to":788,"weight":0.6170129948636104,"gater":null},{"from":216,"to":789,"weight":0.7945698613654226,"gater":null},{"from":216,"to":790,"weight":2.3323479721165996,"gater":null},{"from":217,"to":784,"weight":-0.025961359199937514,"gater":null},{"from":217,"to":785,"weight":-0.05476506857351313,"gater":null},{"from":217,"to":786,"weight":1.0922341833974314,"gater":null},{"from":217,"to":787,"weight":-0.642598023847025,"gater":null},{"from":217,"to":788,"weight":0.2862417490258101,"gater":null},{"from":217,"to":789,"weight":-1.191485924993746,"gater":null},{"from":217,"to":790,"weight":-1.293931559237693,"gater":null},{"from":218,"to":784,"weight":-1.418323870695581,"gater":null},{"from":218,"to":785,"weight":0.4045741757427365,"gater":null},{"from":218,"to":786,"weight":-0.47759607210879995,"gater":null},{"from":218,"to":787,"weight":1.6251351316653808,"gater":null},{"from":218,"to":788,"weight":-1.985245278158816,"gater":null},{"from":218,"to":789,"weight":-1.1977795587170779,"gater":null},{"from":218,"to":790,"weight":-0.3037287562209063,"gater":null},{"from":219,"to":784,"weight":-0.17927857382830176,"gater":null},{"from":219,"to":785,"weight":1.021325142804804,"gater":null},{"from":219,"to":786,"weight":2.148338457731474,"gater":null},{"from":219,"to":787,"weight":1.0183817300119036,"gater":null},{"from":219,"to":788,"weight":-1.6390952572662725,"gater":null},{"from":219,"to":789,"weight":3.7915229816306137,"gater":null},{"from":219,"to":790,"weight":1.9578156167411152,"gater":null},{"from":220,"to":784,"weight":0.24924357009049145,"gater":null},{"from":220,"to":785,"weight":0.985720821023834,"gater":null},{"from":220,"to":786,"weight":2.95474588802011,"gater":null},{"from":220,"to":787,"weight":0.8748751965224393,"gater":null},{"from":220,"to":788,"weight":-2.0925397978516465,"gater":null},{"from":220,"to":789,"weight":2.56871051521275,"gater":null},{"from":220,"to":790,"weight":2.3401156552039946,"gater":null},{"from":221,"to":784,"weight":0.6144488532597359,"gater":null},{"from":221,"to":785,"weight":0.09670839965670994,"gater":null},{"from":221,"to":786,"weight":1.0551290808603664,"gater":null},{"from":221,"to":787,"weight":0.12693339197313147,"gater":null},{"from":221,"to":788,"weight":-1.761307092442294,"gater":null},{"from":221,"to":789,"weight":1.0854918835691574,"gater":null},{"from":221,"to":790,"weight":1.63988209067602,"gater":null},{"from":222,"to":784,"weight":-0.5760838747823206,"gater":null},{"from":222,"to":785,"weight":-0.013848459823794292,"gater":null},{"from":222,"to":786,"weight":-0.00996182170221103,"gater":null},{"from":222,"to":787,"weight":0.09252072577577371,"gater":null},{"from":222,"to":788,"weight":-0.3274774354912835,"gater":null},{"from":222,"to":789,"weight":-0.3362595682793652,"gater":null},{"from":222,"to":790,"weight":0.37927208122361206,"gater":null},{"from":223,"to":784,"weight":0.04552576368192887,"gater":null},{"from":223,"to":785,"weight":0.03520840459598505,"gater":null},{"from":223,"to":786,"weight":-0.02263427675643226,"gater":null},{"from":223,"to":787,"weight":0.08109579514067984,"gater":null},{"from":223,"to":788,"weight":-0.023948265352199665,"gater":null},{"from":223,"to":789,"weight":-0.2575390538550636,"gater":null},{"from":223,"to":790,"weight":0.0734257932650543,"gater":null},{"from":224,"to":784,"weight":0.04805095713589875,"gater":null},{"from":224,"to":785,"weight":0.03954838821663393,"gater":null},{"from":224,"to":786,"weight":-0.06598483606963267,"gater":null},{"from":224,"to":787,"weight":0.03800899836210071,"gater":null},{"from":224,"to":788,"weight":-0.020214435291567936,"gater":null},{"from":224,"to":789,"weight":0.09647599876528345,"gater":null},{"from":224,"to":790,"weight":0.011878816819007204,"gater":null},{"from":225,"to":784,"weight":-0.05891835510166038,"gater":null},{"from":225,"to":785,"weight":0.01137925662787171,"gater":null},{"from":225,"to":786,"weight":0.005611226512177434,"gater":null},{"from":225,"to":787,"weight":-0.056773846377752,"gater":null},{"from":225,"to":788,"weight":-0.036484923375376385,"gater":null},{"from":225,"to":789,"weight":-0.04888232651479853,"gater":null},{"from":225,"to":790,"weight":0.0011774009292394713,"gater":null},{"from":226,"to":784,"weight":0.14590796562561723,"gater":null},{"from":226,"to":785,"weight":-0.01273207217566523,"gater":null},{"from":226,"to":786,"weight":0.012582970123182087,"gater":null},{"from":226,"to":787,"weight":-0.10479244117851012,"gater":null},{"from":226,"to":788,"weight":0.10356925937094719,"gater":null},{"from":226,"to":789,"weight":-0.2331260531158436,"gater":null},{"from":226,"to":790,"weight":-0.019308175906246002,"gater":null},{"from":227,"to":784,"weight":0.9807198690049638,"gater":null},{"from":227,"to":785,"weight":-0.0975761263799972,"gater":null},{"from":227,"to":786,"weight":-2.7529158226117287,"gater":null},{"from":227,"to":787,"weight":-0.17960902283108954,"gater":null},{"from":227,"to":788,"weight":0.11198419710581456,"gater":null},{"from":227,"to":789,"weight":-0.16081708603657294,"gater":null},{"from":227,"to":790,"weight":-0.4815229314625242,"gater":null},{"from":228,"to":784,"weight":1.1673193227729028,"gater":null},{"from":228,"to":785,"weight":0.11366247370382834,"gater":null},{"from":228,"to":786,"weight":-2.5510950825652103,"gater":null},{"from":228,"to":787,"weight":-0.48164174594632014,"gater":null},{"from":228,"to":788,"weight":-0.282746966271113,"gater":null},{"from":228,"to":789,"weight":-0.47641055684189204,"gater":null},{"from":228,"to":790,"weight":-0.40392707396610356,"gater":null},{"from":229,"to":784,"weight":-1.56482408624368,"gater":null},{"from":229,"to":785,"weight":-0.05317289863027328,"gater":null},{"from":229,"to":786,"weight":-0.057001779657793586,"gater":null},{"from":229,"to":787,"weight":0.4913592054594917,"gater":null},{"from":229,"to":788,"weight":-0.44240252904368255,"gater":null},{"from":229,"to":789,"weight":-0.7500734349330612,"gater":null},{"from":229,"to":790,"weight":-0.8703643140424269,"gater":null},{"from":230,"to":784,"weight":1.4763311254361209,"gater":null},{"from":230,"to":785,"weight":0.6466429691904111,"gater":null},{"from":230,"to":786,"weight":-1.252610829431542,"gater":null},{"from":230,"to":787,"weight":0.8520844377078779,"gater":null},{"from":230,"to":788,"weight":-0.5304350155714943,"gater":null},{"from":230,"to":789,"weight":0.27489233756786047,"gater":null},{"from":230,"to":790,"weight":-3.2061245582262656,"gater":null},{"from":231,"to":784,"weight":1.5098841778039607,"gater":null},{"from":231,"to":785,"weight":1.1927127395150294,"gater":null},{"from":231,"to":786,"weight":-2.096714888071776,"gater":null},{"from":231,"to":787,"weight":0.1112977737855667,"gater":null},{"from":231,"to":788,"weight":-0.3449351498155847,"gater":null},{"from":231,"to":789,"weight":-0.474809005518782,"gater":null},{"from":231,"to":790,"weight":-3.4941938054234516,"gater":null},{"from":232,"to":784,"weight":-1.2908879639492186,"gater":null},{"from":232,"to":785,"weight":2.011591414390381,"gater":null},{"from":232,"to":786,"weight":-0.057484813775894296,"gater":null},{"from":232,"to":787,"weight":-0.2141345324123388,"gater":null},{"from":232,"to":788,"weight":-0.9751662869354204,"gater":null},{"from":232,"to":789,"weight":1.7783439746670884,"gater":null},{"from":232,"to":790,"weight":-3.37321081215924,"gater":null},{"from":233,"to":784,"weight":-0.9292732351910358,"gater":null},{"from":233,"to":785,"weight":1.471413366902322,"gater":null},{"from":233,"to":786,"weight":0.6349068285898838,"gater":null},{"from":233,"to":787,"weight":-1.190774867772098,"gater":null},{"from":233,"to":788,"weight":-2.328650862344302,"gater":null},{"from":233,"to":789,"weight":-1.073620895896065,"gater":null},{"from":233,"to":790,"weight":0.8582996872796833,"gater":null},{"from":234,"to":784,"weight":-0.3426985574136549,"gater":null},{"from":234,"to":785,"weight":-0.7827976129365147,"gater":null},{"from":234,"to":786,"weight":-0.37099361031014033,"gater":null},{"from":234,"to":787,"weight":-0.664739652644433,"gater":null},{"from":234,"to":788,"weight":0.13746718178200093,"gater":null},{"from":234,"to":789,"weight":0.799051468558983,"gater":null},{"from":234,"to":790,"weight":0.49348339937858704,"gater":null},{"from":235,"to":784,"weight":-1.113727662127098,"gater":null},{"from":235,"to":785,"weight":0.006457426809040698,"gater":null},{"from":235,"to":786,"weight":0.516626541202161,"gater":null},{"from":235,"to":787,"weight":-1.5910778743863456,"gater":null},{"from":235,"to":788,"weight":-1.4006012279593307,"gater":null},{"from":235,"to":789,"weight":1.1934801204774916,"gater":null},{"from":235,"to":790,"weight":-0.2566843009602913,"gater":null},{"from":236,"to":784,"weight":-0.12525239450334003,"gater":null},{"from":236,"to":785,"weight":-0.11158538545347059,"gater":null},{"from":236,"to":786,"weight":-1.4320719007902796,"gater":null},{"from":236,"to":787,"weight":1.9276492070767866,"gater":null},{"from":236,"to":788,"weight":-2.028681376601701,"gater":null},{"from":236,"to":789,"weight":3.9618677602584285,"gater":null},{"from":236,"to":790,"weight":0.04647867904688682,"gater":null},{"from":237,"to":784,"weight":1.1526195013740146,"gater":null},{"from":237,"to":785,"weight":0.8412129092075414,"gater":null},{"from":237,"to":786,"weight":-2.5745810810309693,"gater":null},{"from":237,"to":787,"weight":1.2615017868256357,"gater":null},{"from":237,"to":788,"weight":-1.6166443250103595,"gater":null},{"from":237,"to":789,"weight":-0.22215423689098235,"gater":null},{"from":237,"to":790,"weight":0.35945131497104144,"gater":null},{"from":238,"to":784,"weight":0.42870851626092243,"gater":null},{"from":238,"to":785,"weight":1.3728126754975623,"gater":null},{"from":238,"to":786,"weight":-3.2571222171719127,"gater":null},{"from":238,"to":787,"weight":0.6655608497873414,"gater":null},{"from":238,"to":788,"weight":0.7204067522205198,"gater":null},{"from":238,"to":789,"weight":0.5687730619874256,"gater":null},{"from":238,"to":790,"weight":-0.6023977106934919,"gater":null},{"from":239,"to":784,"weight":-0.5019042538438999,"gater":null},{"from":239,"to":785,"weight":0.16211751571670144,"gater":null},{"from":239,"to":786,"weight":-4.331568122389113,"gater":null},{"from":239,"to":787,"weight":-0.9172337813858896,"gater":null},{"from":239,"to":788,"weight":1.9597693966742984,"gater":null},{"from":239,"to":789,"weight":-0.1323770033960501,"gater":null},{"from":239,"to":790,"weight":-0.6380613437119197,"gater":null},{"from":240,"to":784,"weight":-1.5006655561918354,"gater":null},{"from":240,"to":785,"weight":2.0470188881381803,"gater":null},{"from":240,"to":786,"weight":-0.7335108482818804,"gater":null},{"from":240,"to":787,"weight":-0.4073121503662566,"gater":null},{"from":240,"to":788,"weight":2.95137507639158,"gater":null},{"from":240,"to":789,"weight":-0.19824716268395853,"gater":null},{"from":240,"to":790,"weight":-1.8910833864138004,"gater":null},{"from":241,"to":784,"weight":-0.08088232405097713,"gater":null},{"from":241,"to":785,"weight":2.0239999300780296,"gater":null},{"from":241,"to":786,"weight":-2.812957646016553,"gater":null},{"from":241,"to":787,"weight":-0.29097616568125567,"gater":null},{"from":241,"to":788,"weight":1.849101556596221,"gater":null},{"from":241,"to":789,"weight":0.761569007310143,"gater":null},{"from":241,"to":790,"weight":0.9873232403220056,"gater":null},{"from":242,"to":784,"weight":-0.0516559327442127,"gater":null},{"from":242,"to":785,"weight":0.04252567512480001,"gater":null},{"from":242,"to":786,"weight":-0.7071930670811225,"gater":null},{"from":242,"to":787,"weight":-0.11705819628759005,"gater":null},{"from":242,"to":788,"weight":2.6781229888115545,"gater":null},{"from":242,"to":789,"weight":1.9963007958092727,"gater":null},{"from":242,"to":790,"weight":0.9004901244997967,"gater":null},{"from":243,"to":784,"weight":0.24398353199081796,"gater":null},{"from":243,"to":785,"weight":0.4270406839371086,"gater":null},{"from":243,"to":786,"weight":-3.444035040501698,"gater":null},{"from":243,"to":787,"weight":1.2048185469316683,"gater":null},{"from":243,"to":788,"weight":0.8312559424323693,"gater":null},{"from":243,"to":789,"weight":-0.16655609001349356,"gater":null},{"from":243,"to":790,"weight":-1.8426195610597758,"gater":null},{"from":244,"to":784,"weight":0.5132834589250069,"gater":null},{"from":244,"to":785,"weight":1.6936209282535035,"gater":null},{"from":244,"to":786,"weight":-0.04386637640177594,"gater":null},{"from":244,"to":787,"weight":0.008863810540537876,"gater":null},{"from":244,"to":788,"weight":-1.199551202954705,"gater":null},{"from":244,"to":789,"weight":1.5427413390194937,"gater":null},{"from":244,"to":790,"weight":-0.6970045035578788,"gater":null},{"from":245,"to":784,"weight":1.2068144600115709,"gater":null},{"from":245,"to":785,"weight":1.5011496728758467,"gater":null},{"from":245,"to":786,"weight":-0.08359139916097712,"gater":null},{"from":245,"to":787,"weight":1.0230259633884038,"gater":null},{"from":245,"to":788,"weight":-0.8508692954428684,"gater":null},{"from":245,"to":789,"weight":0.4753044611580193,"gater":null},{"from":245,"to":790,"weight":-0.17168781890321766,"gater":null},{"from":246,"to":784,"weight":-1.3166303291421535,"gater":null},{"from":246,"to":785,"weight":1.4442385354010476,"gater":null},{"from":246,"to":786,"weight":1.24461161722666,"gater":null},{"from":246,"to":787,"weight":1.309707729532311,"gater":null},{"from":246,"to":788,"weight":-0.5214232563775675,"gater":null},{"from":246,"to":789,"weight":-0.7051753592671303,"gater":null},{"from":246,"to":790,"weight":0.7794875297145095,"gater":null},{"from":247,"to":784,"weight":-1.4758181850800955,"gater":null},{"from":247,"to":785,"weight":2.289325204325115,"gater":null},{"from":247,"to":786,"weight":5.242602637006419,"gater":null},{"from":247,"to":787,"weight":1.2250486864268249,"gater":null},{"from":247,"to":788,"weight":-0.0766376464745224,"gater":null},{"from":247,"to":789,"weight":3.069848821883626,"gater":null},{"from":247,"to":790,"weight":2.8551147575878075,"gater":null},{"from":248,"to":784,"weight":-1.920653876682702,"gater":null},{"from":248,"to":785,"weight":1.4583383731907595,"gater":null},{"from":248,"to":786,"weight":5.709631069178921,"gater":null},{"from":248,"to":787,"weight":1.0723958699860126,"gater":null},{"from":248,"to":788,"weight":-0.5751741550617621,"gater":null},{"from":248,"to":789,"weight":2.714363557513471,"gater":null},{"from":248,"to":790,"weight":2.847231960738603,"gater":null},{"from":249,"to":784,"weight":0.11960045615861199,"gater":null},{"from":249,"to":785,"weight":0.23012272968031255,"gater":null},{"from":249,"to":786,"weight":1.5923651100321004,"gater":null},{"from":249,"to":787,"weight":0.23284517599020849,"gater":null},{"from":249,"to":788,"weight":-1.414223436139953,"gater":null},{"from":249,"to":789,"weight":1.3005096375654566,"gater":null},{"from":249,"to":790,"weight":1.6145790710490255,"gater":null},{"from":250,"to":784,"weight":-0.7973448511823179,"gater":null},{"from":250,"to":785,"weight":-0.013362033283430812,"gater":null},{"from":250,"to":786,"weight":0.3383074338189286,"gater":null},{"from":250,"to":787,"weight":0.19320635120429866,"gater":null},{"from":250,"to":788,"weight":-0.417623145033645,"gater":null},{"from":250,"to":789,"weight":0.21815829934896933,"gater":null},{"from":250,"to":790,"weight":0.15175238458854773,"gater":null},{"from":251,"to":784,"weight":0.011668290606899175,"gater":null},{"from":251,"to":785,"weight":-0.002215147909838615,"gater":null},{"from":251,"to":786,"weight":0.2735177042061187,"gater":null},{"from":251,"to":787,"weight":-0.03727284690571317,"gater":null},{"from":251,"to":788,"weight":-0.2652885238972374,"gater":null},{"from":251,"to":789,"weight":0.20597703211767757,"gater":null},{"from":251,"to":790,"weight":0.08325391466503965,"gater":null},{"from":252,"to":784,"weight":-0.023061079027681158,"gater":null},{"from":252,"to":785,"weight":-0.07231938585962776,"gater":null},{"from":252,"to":786,"weight":0.04319429909709631,"gater":null},{"from":252,"to":787,"weight":-0.007396581149494084,"gater":null},{"from":252,"to":788,"weight":0.09327445676738101,"gater":null},{"from":252,"to":789,"weight":0.09521386735440743,"gater":null},{"from":252,"to":790,"weight":-0.08502700694475533,"gater":null},{"from":253,"to":784,"weight":-0.06644976194242393,"gater":null},{"from":253,"to":785,"weight":0.10684615630408247,"gater":null},{"from":253,"to":786,"weight":-0.020415645444713783,"gater":null},{"from":253,"to":787,"weight":0.0012699274243586905,"gater":null},{"from":253,"to":788,"weight":0.031625374181855154,"gater":null},{"from":253,"to":789,"weight":-0.1708788900090411,"gater":null},{"from":253,"to":790,"weight":0.07643982572115826,"gater":null},{"from":254,"to":784,"weight":0.3306652316712532,"gater":null},{"from":254,"to":785,"weight":-0.0878241683906086,"gater":null},{"from":254,"to":786,"weight":-0.05921300941829351,"gater":null},{"from":254,"to":787,"weight":0.05079960381158611,"gater":null},{"from":254,"to":788,"weight":0.04231338796251212,"gater":null},{"from":254,"to":789,"weight":0.19493320266063663,"gater":null},{"from":254,"to":790,"weight":-0.5747685256589068,"gater":null},{"from":255,"to":784,"weight":0.8930336971045244,"gater":null},{"from":255,"to":785,"weight":0.1047330027083686,"gater":null},{"from":255,"to":786,"weight":-2.2639562648634057,"gater":null},{"from":255,"to":787,"weight":-0.22446236045897433,"gater":null},{"from":255,"to":788,"weight":0.1050717819153952,"gater":null},{"from":255,"to":789,"weight":0.059008879277362015,"gater":null},{"from":255,"to":790,"weight":-1.1726706235824955,"gater":null},{"from":256,"to":784,"weight":1.7592756482643352,"gater":null},{"from":256,"to":785,"weight":0.29361793744924897,"gater":null},{"from":256,"to":786,"weight":-1.7726395562125927,"gater":null},{"from":256,"to":787,"weight":-0.3294920468864583,"gater":null},{"from":256,"to":788,"weight":-0.4211071386746294,"gater":null},{"from":256,"to":789,"weight":0.25116055178992164,"gater":null},{"from":256,"to":790,"weight":-1.3422279615041008,"gater":null},{"from":257,"to":784,"weight":0.25463512741712846,"gater":null},{"from":257,"to":785,"weight":0.06274020913236196,"gater":null},{"from":257,"to":786,"weight":2.4513214071897083,"gater":null},{"from":257,"to":787,"weight":0.41292675125255107,"gater":null},{"from":257,"to":788,"weight":-0.6932398021897522,"gater":null},{"from":257,"to":789,"weight":1.9829985597411026,"gater":null},{"from":257,"to":790,"weight":-1.6885891482764763,"gater":null},{"from":258,"to":784,"weight":1.4309027040088746,"gater":null},{"from":258,"to":785,"weight":0.5343653404133617,"gater":null},{"from":258,"to":786,"weight":0.6096550904114189,"gater":null},{"from":258,"to":787,"weight":1.3879037940312366,"gater":null},{"from":258,"to":788,"weight":-0.8966891698713582,"gater":null},{"from":258,"to":789,"weight":1.7999432878218036,"gater":null},{"from":258,"to":790,"weight":-0.8552658423126603,"gater":null},{"from":259,"to":784,"weight":1.3736377017272787,"gater":null},{"from":259,"to":785,"weight":0.4816149996206339,"gater":null},{"from":259,"to":786,"weight":-0.747025876905287,"gater":null},{"from":259,"to":787,"weight":-0.8022898269694928,"gater":null},{"from":259,"to":788,"weight":-0.3059217796540328,"gater":null},{"from":259,"to":789,"weight":0.9600607819175148,"gater":null},{"from":259,"to":790,"weight":-1.0018586229849726,"gater":null},{"from":260,"to":784,"weight":0.9396577340816762,"gater":null},{"from":260,"to":785,"weight":1.6043613171199524,"gater":null},{"from":260,"to":786,"weight":1.4300404704382914,"gater":null},{"from":260,"to":787,"weight":0.20173636452971663,"gater":null},{"from":260,"to":788,"weight":-1.2515233994946016,"gater":null},{"from":260,"to":789,"weight":-0.4133153061739693,"gater":null},{"from":260,"to":790,"weight":-3.390311476046861,"gater":null},{"from":261,"to":784,"weight":0.142495213666721,"gater":null},{"from":261,"to":785,"weight":1.7608016225511096,"gater":null},{"from":261,"to":786,"weight":-0.44392137497599454,"gater":null},{"from":261,"to":787,"weight":1.8305863941184715,"gater":null},{"from":261,"to":788,"weight":0.014318667953724131,"gater":null},{"from":261,"to":789,"weight":0.04081913295984715,"gater":null},{"from":261,"to":790,"weight":-1.9776465239425467,"gater":null},{"from":262,"to":784,"weight":2.3591665233550656,"gater":null},{"from":262,"to":785,"weight":0.5034551381380319,"gater":null},{"from":262,"to":786,"weight":-1.085916767469068,"gater":null},{"from":262,"to":787,"weight":-1.4022644544154022,"gater":null},{"from":262,"to":788,"weight":-1.9157210774651598,"gater":null},{"from":262,"to":789,"weight":0.1354975238847366,"gater":null},{"from":262,"to":790,"weight":1.4884651905389106,"gater":null},{"from":263,"to":784,"weight":2.0800502498404563,"gater":null},{"from":263,"to":785,"weight":-0.5188656592506137,"gater":null},{"from":263,"to":786,"weight":-0.7838001988242336,"gater":null},{"from":263,"to":787,"weight":1.2963471712460501,"gater":null},{"from":263,"to":788,"weight":-1.172847801097422,"gater":null},{"from":263,"to":789,"weight":0.7876956292804491,"gater":null},{"from":263,"to":790,"weight":0.8745724751300742,"gater":null},{"from":264,"to":784,"weight":2.0215931896102792,"gater":null},{"from":264,"to":785,"weight":0.9821858573612459,"gater":null},{"from":264,"to":786,"weight":-2.0832693716317108,"gater":null},{"from":264,"to":787,"weight":1.9999401822913794,"gater":null},{"from":264,"to":788,"weight":0.767014197694646,"gater":null},{"from":264,"to":789,"weight":0.5529196241732367,"gater":null},{"from":264,"to":790,"weight":-0.9543177163176612,"gater":null},{"from":265,"to":784,"weight":-1.5556867498854106,"gater":null},{"from":265,"to":785,"weight":-1.7188178899513042,"gater":null},{"from":265,"to":786,"weight":-0.4413814966586179,"gater":null},{"from":265,"to":787,"weight":-0.8956511765875294,"gater":null},{"from":265,"to":788,"weight":0.01990700268055588,"gater":null},{"from":265,"to":789,"weight":0.8494381311254827,"gater":null},{"from":265,"to":790,"weight":0.17705052227335577,"gater":null},{"from":266,"to":784,"weight":-0.017577080299219106,"gater":null},{"from":266,"to":785,"weight":0.12323262889893574,"gater":null},{"from":266,"to":786,"weight":-1.8205278943303242,"gater":null},{"from":266,"to":787,"weight":-0.8745078460567124,"gater":null},{"from":266,"to":788,"weight":-0.6086070350658571,"gater":null},{"from":266,"to":789,"weight":0.8915383198130626,"gater":null},{"from":266,"to":790,"weight":-0.5382142874940431,"gater":null},{"from":267,"to":784,"weight":-0.13256047301255958,"gater":null},{"from":267,"to":785,"weight":-0.8623436466058075,"gater":null},{"from":267,"to":786,"weight":-2.2618308629425354,"gater":null},{"from":267,"to":787,"weight":-0.2885709862381742,"gater":null},{"from":267,"to":788,"weight":0.687736389235201,"gater":null},{"from":267,"to":789,"weight":0.7162964711477892,"gater":null},{"from":267,"to":790,"weight":-1.8004278538295804,"gater":null},{"from":268,"to":784,"weight":0.8667496678554018,"gater":null},{"from":268,"to":785,"weight":-0.41396377157069497,"gater":null},{"from":268,"to":786,"weight":-1.6911093003581896,"gater":null},{"from":268,"to":787,"weight":0.0511936812474142,"gater":null},{"from":268,"to":788,"weight":1.351657195149069,"gater":null},{"from":268,"to":789,"weight":2.6791987614601207,"gater":null},{"from":268,"to":790,"weight":-0.5504116062915188,"gater":null},{"from":269,"to":784,"weight":1.1840881766301432,"gater":null},{"from":269,"to":785,"weight":1.2191259662236407,"gater":null},{"from":269,"to":786,"weight":-2.0194026265508906,"gater":null},{"from":269,"to":787,"weight":0.24167582387817085,"gater":null},{"from":269,"to":788,"weight":0.10699472270862807,"gater":null},{"from":269,"to":789,"weight":0.9772119255400664,"gater":null},{"from":269,"to":790,"weight":-0.07473314565817374,"gater":null},{"from":270,"to":784,"weight":-1.0421257142957225,"gater":null},{"from":270,"to":785,"weight":0.17412252562989775,"gater":null},{"from":270,"to":786,"weight":-1.6459022392296416,"gater":null},{"from":270,"to":787,"weight":0.08656920414063242,"gater":null},{"from":270,"to":788,"weight":1.2371157476150476,"gater":null},{"from":270,"to":789,"weight":1.3420827511513929,"gater":null},{"from":270,"to":790,"weight":-1.6062877292473077,"gater":null},{"from":271,"to":784,"weight":0.7050130504946475,"gater":null},{"from":271,"to":785,"weight":1.9944387158321426,"gater":null},{"from":271,"to":786,"weight":-0.680133704273278,"gater":null},{"from":271,"to":787,"weight":0.572644867098558,"gater":null},{"from":271,"to":788,"weight":-0.21821807496835238,"gater":null},{"from":271,"to":789,"weight":-0.14661881712431538,"gater":null},{"from":271,"to":790,"weight":-0.4670953722459088,"gater":null},{"from":272,"to":784,"weight":1.9520447556776397,"gater":null},{"from":272,"to":785,"weight":0.35354477540266976,"gater":null},{"from":272,"to":786,"weight":-3.4485278431588116,"gater":null},{"from":272,"to":787,"weight":-0.10589961079226566,"gater":null},{"from":272,"to":788,"weight":-1.432197403849204,"gater":null},{"from":272,"to":789,"weight":0.3672803812012284,"gater":null},{"from":272,"to":790,"weight":-1.1642439070413968,"gater":null},{"from":273,"to":784,"weight":-0.585726096407043,"gater":null},{"from":273,"to":785,"weight":1.6536300160603195,"gater":null},{"from":273,"to":786,"weight":-1.6844183714571919,"gater":null},{"from":273,"to":787,"weight":1.807784523255698,"gater":null},{"from":273,"to":788,"weight":-0.504995336794851,"gater":null},{"from":273,"to":789,"weight":1.4958399577252877,"gater":null},{"from":273,"to":790,"weight":-0.7087696734545439,"gater":null},{"from":274,"to":784,"weight":-1.2797001305169258,"gater":null},{"from":274,"to":785,"weight":1.0503980448865426,"gater":null},{"from":274,"to":786,"weight":-1.6149105877130423,"gater":null},{"from":274,"to":787,"weight":1.8490075880612418,"gater":null},{"from":274,"to":788,"weight":2.4119973738839495,"gater":null},{"from":274,"to":789,"weight":1.2462422729382152,"gater":null},{"from":274,"to":790,"weight":-0.24607860808535242,"gater":null},{"from":275,"to":784,"weight":-1.1827367502712145,"gater":null},{"from":275,"to":785,"weight":1.2980853485508606,"gater":null},{"from":275,"to":786,"weight":0.6296511925816756,"gater":null},{"from":275,"to":787,"weight":1.1878556589514218,"gater":null},{"from":275,"to":788,"weight":0.3592969400685612,"gater":null},{"from":275,"to":789,"weight":2.041141606821967,"gater":null},{"from":275,"to":790,"weight":2.2215107764111615,"gater":null},{"from":276,"to":784,"weight":-1.7024857010251961,"gater":null},{"from":276,"to":785,"weight":0.6261499566644955,"gater":null},{"from":276,"to":786,"weight":4.880978931190377,"gater":null},{"from":276,"to":787,"weight":0.9630148121760927,"gater":null},{"from":276,"to":788,"weight":0.3212076027604795,"gater":null},{"from":276,"to":789,"weight":2.2088396907557577,"gater":null},{"from":276,"to":790,"weight":1.3289700063256642,"gater":null},{"from":277,"to":784,"weight":-0.4196835309856878,"gater":null},{"from":277,"to":785,"weight":0.22848211657107217,"gater":null},{"from":277,"to":786,"weight":4.2946958953005785,"gater":null},{"from":277,"to":787,"weight":0.6691315705924049,"gater":null},{"from":277,"to":788,"weight":-0.8961673084311145,"gater":null},{"from":277,"to":789,"weight":0.9577237442991244,"gater":null},{"from":277,"to":790,"weight":0.8426869365013344,"gater":null},{"from":278,"to":784,"weight":-0.047366112582551356,"gater":null},{"from":278,"to":785,"weight":0.04561001287069947,"gater":null},{"from":278,"to":786,"weight":0.6728870540487613,"gater":null},{"from":278,"to":787,"weight":0.25338450804730356,"gater":null},{"from":278,"to":788,"weight":-0.26370141581764917,"gater":null},{"from":278,"to":789,"weight":0.3381960410583788,"gater":null},{"from":278,"to":790,"weight":0.15713009000459446,"gater":null},{"from":279,"to":784,"weight":-0.10751509964829163,"gater":null},{"from":279,"to":785,"weight":-0.02845741804384509,"gater":null},{"from":279,"to":786,"weight":0.09030561931785357,"gater":null},{"from":279,"to":787,"weight":0.04885577330833154,"gater":null},{"from":279,"to":788,"weight":-0.23425035743193326,"gater":null},{"from":279,"to":789,"weight":0.000772855287705081,"gater":null},{"from":279,"to":790,"weight":-0.056706422513115154,"gater":null},{"from":280,"to":784,"weight":0.0818650541452711,"gater":null},{"from":280,"to":785,"weight":0.033683035634961694,"gater":null},{"from":280,"to":786,"weight":0.0636808918695333,"gater":null},{"from":280,"to":787,"weight":-0.027176482911954028,"gater":null},{"from":280,"to":788,"weight":-0.09642697302684376,"gater":null},{"from":280,"to":789,"weight":-0.07129522430187403,"gater":null},{"from":280,"to":790,"weight":-0.08300536124700089,"gater":null},{"from":281,"to":784,"weight":-0.10464369732828202,"gater":null},{"from":281,"to":785,"weight":0.047102531776041706,"gater":null},{"from":281,"to":786,"weight":0.004261819814817175,"gater":null},{"from":281,"to":787,"weight":0.09074569719819985,"gater":null},{"from":281,"to":788,"weight":0.08528213767545262,"gater":null},{"from":281,"to":789,"weight":-0.15749726352038734,"gater":null},{"from":281,"to":790,"weight":0.04526465550895724,"gater":null},{"from":282,"to":784,"weight":0.12576025289856543,"gater":null},{"from":282,"to":785,"weight":-0.0740293006372902,"gater":null},{"from":282,"to":786,"weight":-0.30242846996057,"gater":null},{"from":282,"to":787,"weight":0.08846810173639147,"gater":null},{"from":282,"to":788,"weight":-0.030155535169450815,"gater":null},{"from":282,"to":789,"weight":0.1257888901005321,"gater":null},{"from":282,"to":790,"weight":-1.2611061612248415,"gater":null},{"from":283,"to":784,"weight":0.21879716809319727,"gater":null},{"from":283,"to":785,"weight":0.31337772333476926,"gater":null},{"from":283,"to":786,"weight":0.4455506606205434,"gater":null},{"from":283,"to":787,"weight":-0.19618213075162486,"gater":null},{"from":283,"to":788,"weight":0.08805386055912574,"gater":null},{"from":283,"to":789,"weight":0.7051540015942913,"gater":null},{"from":283,"to":790,"weight":-1.1588805321848237,"gater":null},{"from":284,"to":784,"weight":1.4633895017978005,"gater":null},{"from":284,"to":785,"weight":0.4228836914021102,"gater":null},{"from":284,"to":786,"weight":1.0324646739977863,"gater":null},{"from":284,"to":787,"weight":0.223677881621711,"gater":null},{"from":284,"to":788,"weight":-0.42300636320155643,"gater":null},{"from":284,"to":789,"weight":0.36843331190773265,"gater":null},{"from":284,"to":790,"weight":-1.7146040582953757,"gater":null},{"from":285,"to":784,"weight":0.58679054000273,"gater":null},{"from":285,"to":785,"weight":0.34211290709537395,"gater":null},{"from":285,"to":786,"weight":1.1563753655173452,"gater":null},{"from":285,"to":787,"weight":0.516119220693865,"gater":null},{"from":285,"to":788,"weight":-0.3692381882955809,"gater":null},{"from":285,"to":789,"weight":1.0982224625954338,"gater":null},{"from":285,"to":790,"weight":-0.7418403940912416,"gater":null},{"from":286,"to":784,"weight":-0.37192163997553035,"gater":null},{"from":286,"to":785,"weight":0.5899287051902262,"gater":null},{"from":286,"to":786,"weight":0.8032913943723324,"gater":null},{"from":286,"to":787,"weight":0.21904512185375175,"gater":null},{"from":286,"to":788,"weight":-1.002162959582708,"gater":null},{"from":286,"to":789,"weight":1.1472904535851676,"gater":null},{"from":286,"to":790,"weight":-0.03165759862108174,"gater":null},{"from":287,"to":784,"weight":-2.4009315208875153,"gater":null},{"from":287,"to":785,"weight":0.7348533303800326,"gater":null},{"from":287,"to":786,"weight":2.541544075379914,"gater":null},{"from":287,"to":787,"weight":-0.37805239063039603,"gater":null},{"from":287,"to":788,"weight":0.8645781790735773,"gater":null},{"from":287,"to":789,"weight":1.6327716536755543,"gater":null},{"from":287,"to":790,"weight":0.11379919577827177,"gater":null},{"from":288,"to":784,"weight":-0.612421267622767,"gater":null},{"from":288,"to":785,"weight":0.6287647919965419,"gater":null},{"from":288,"to":786,"weight":2.5678689014946237,"gater":null},{"from":288,"to":787,"weight":1.537934002413517,"gater":null},{"from":288,"to":788,"weight":0.7270506484609446,"gater":null},{"from":288,"to":789,"weight":0.7989520520717288,"gater":null},{"from":288,"to":790,"weight":-0.938970192574681,"gater":null},{"from":289,"to":784,"weight":-0.44757257288129926,"gater":null},{"from":289,"to":785,"weight":0.8392216146617605,"gater":null},{"from":289,"to":786,"weight":1.1252770890390222,"gater":null},{"from":289,"to":787,"weight":0.25666229978691424,"gater":null},{"from":289,"to":788,"weight":0.10382734701322271,"gater":null},{"from":289,"to":789,"weight":-0.3584286657023881,"gater":null},{"from":289,"to":790,"weight":0.27987316005295393,"gater":null},{"from":290,"to":784,"weight":1.0887381378111272,"gater":null},{"from":290,"to":785,"weight":0.8165506746113189,"gater":null},{"from":290,"to":786,"weight":3.061051809749555,"gater":null},{"from":290,"to":787,"weight":0.25743419384668553,"gater":null},{"from":290,"to":788,"weight":-0.1429373562963401,"gater":null},{"from":290,"to":789,"weight":2.4778284763360205,"gater":null},{"from":290,"to":790,"weight":0.9243494178140822,"gater":null},{"from":291,"to":784,"weight":1.9131144311142847,"gater":null},{"from":291,"to":785,"weight":0.09307260980213251,"gater":null},{"from":291,"to":786,"weight":4.7649099874489105,"gater":null},{"from":291,"to":787,"weight":0.4890696057734235,"gater":null},{"from":291,"to":788,"weight":0.6699192641010544,"gater":null},{"from":291,"to":789,"weight":0.6333891520823997,"gater":null},{"from":291,"to":790,"weight":-0.7693913406096353,"gater":null},{"from":292,"to":784,"weight":-0.9099388354583589,"gater":null},{"from":292,"to":785,"weight":0.5275006841274095,"gater":null},{"from":292,"to":786,"weight":2.751263739757533,"gater":null},{"from":292,"to":787,"weight":0.8810217640096036,"gater":null},{"from":292,"to":788,"weight":1.7031504783481752,"gater":null},{"from":292,"to":789,"weight":0.28448457569955193,"gater":null},{"from":292,"to":790,"weight":0.41088168572948025,"gater":null},{"from":293,"to":784,"weight":1.3188385505144815,"gater":null},{"from":293,"to":785,"weight":-0.94523408317677,"gater":null},{"from":293,"to":786,"weight":5.384193612760857,"gater":null},{"from":293,"to":787,"weight":-0.9121259181253376,"gater":null},{"from":293,"to":788,"weight":0.32456702007892135,"gater":null},{"from":293,"to":789,"weight":1.9863843310774363,"gater":null},{"from":293,"to":790,"weight":-2.4107987600463123,"gater":null},{"from":294,"to":784,"weight":-1.4875970340968643,"gater":null},{"from":294,"to":785,"weight":-1.3259799827781056,"gater":null},{"from":294,"to":786,"weight":-0.401531864284413,"gater":null},{"from":294,"to":787,"weight":-0.7712622950581571,"gater":null},{"from":294,"to":788,"weight":-1.1637970848938952,"gater":null},{"from":294,"to":789,"weight":1.8116921873224299,"gater":null},{"from":294,"to":790,"weight":-3.658903788483575,"gater":null},{"from":295,"to":784,"weight":-1.2660611820667553,"gater":null},{"from":295,"to":785,"weight":-1.665866826308545,"gater":null},{"from":295,"to":786,"weight":-2.3112861827606266,"gater":null},{"from":295,"to":787,"weight":-0.8324112812535546,"gater":null},{"from":295,"to":788,"weight":-2.3630573540966466,"gater":null},{"from":295,"to":789,"weight":-0.9749903509955277,"gater":null},{"from":295,"to":790,"weight":-3.306969966011325,"gater":null},{"from":296,"to":784,"weight":1.1992156315760547,"gater":null},{"from":296,"to":785,"weight":-2.2015310346757584,"gater":null},{"from":296,"to":786,"weight":-5.564593208813624,"gater":null},{"from":296,"to":787,"weight":-0.28714724149411053,"gater":null},{"from":296,"to":788,"weight":-1.0679917055395665,"gater":null},{"from":296,"to":789,"weight":0.5801500018687703,"gater":null},{"from":296,"to":790,"weight":-0.36189042561609663,"gater":null},{"from":297,"to":784,"weight":0.8138691592708448,"gater":null},{"from":297,"to":785,"weight":-0.3660845588476719,"gater":null},{"from":297,"to":786,"weight":-2.526935013368297,"gater":null},{"from":297,"to":787,"weight":-0.4588520390817028,"gater":null},{"from":297,"to":788,"weight":2.1117614531199598,"gater":null},{"from":297,"to":789,"weight":-0.37743994115482277,"gater":null},{"from":297,"to":790,"weight":-1.6251812163703396,"gater":null},{"from":298,"to":784,"weight":0.7403385129002406,"gater":null},{"from":298,"to":785,"weight":0.5894598103587841,"gater":null},{"from":298,"to":786,"weight":-1.4890759641998328,"gater":null},{"from":298,"to":787,"weight":-1.008347753312647,"gater":null},{"from":298,"to":788,"weight":1.0776254614370169,"gater":null},{"from":298,"to":789,"weight":0.6776229134992443,"gater":null},{"from":298,"to":790,"weight":-0.8584806214279007,"gater":null},{"from":299,"to":784,"weight":-0.253997924806919,"gater":null},{"from":299,"to":785,"weight":1.563300952311289,"gater":null},{"from":299,"to":786,"weight":-2.981417006561669,"gater":null},{"from":299,"to":787,"weight":-0.4847202488789922,"gater":null},{"from":299,"to":788,"weight":1.0742375893076983,"gater":null},{"from":299,"to":789,"weight":1.3321475181641977,"gater":null},{"from":299,"to":790,"weight":-1.1706205620890586,"gater":null},{"from":300,"to":784,"weight":0.7280803279942782,"gater":null},{"from":300,"to":785,"weight":1.0056699871476193,"gater":null},{"from":300,"to":786,"weight":-1.090249157166774,"gater":null},{"from":300,"to":787,"weight":1.082738355252177,"gater":null},{"from":300,"to":788,"weight":0.5438300313160536,"gater":null},{"from":300,"to":789,"weight":-0.6575402542406078,"gater":null},{"from":300,"to":790,"weight":0.37041424299712883,"gater":null},{"from":301,"to":784,"weight":1.6091462137412316,"gater":null},{"from":301,"to":785,"weight":1.0707886666952722,"gater":null},{"from":301,"to":786,"weight":-2.1483141549157674,"gater":null},{"from":301,"to":787,"weight":-0.3091634763034794,"gater":null},{"from":301,"to":788,"weight":0.5889929620747724,"gater":null},{"from":301,"to":789,"weight":1.7807126702530767,"gater":null},{"from":301,"to":790,"weight":1.6441347725207398,"gater":null},{"from":302,"to":784,"weight":1.6231212480580852,"gater":null},{"from":302,"to":785,"weight":1.3702290851233854,"gater":null},{"from":302,"to":786,"weight":-2.252898720153422,"gater":null},{"from":302,"to":787,"weight":0.9056487339287431,"gater":null},{"from":302,"to":788,"weight":1.9498713199083102,"gater":null},{"from":302,"to":789,"weight":1.1381820765699056,"gater":null},{"from":302,"to":790,"weight":0.38624991863510644,"gater":null},{"from":303,"to":784,"weight":1.8442645967993048,"gater":null},{"from":303,"to":785,"weight":0.9819455672471028,"gater":null},{"from":303,"to":786,"weight":-1.4217248393220205,"gater":null},{"from":303,"to":787,"weight":1.4942083981224357,"gater":null},{"from":303,"to":788,"weight":0.49589288149060856,"gater":null},{"from":303,"to":789,"weight":2.329764095362061,"gater":null},{"from":303,"to":790,"weight":-0.7752758351449431,"gater":null},{"from":304,"to":784,"weight":-0.6317916089858489,"gater":null},{"from":304,"to":785,"weight":0.6383997358985777,"gater":null},{"from":304,"to":786,"weight":1.4865573952797175,"gater":null},{"from":304,"to":787,"weight":0.9051550088191425,"gater":null},{"from":304,"to":788,"weight":-1.7086118569623048,"gater":null},{"from":304,"to":789,"weight":1.0803963489634258,"gater":null},{"from":304,"to":790,"weight":0.5859031004248587,"gater":null},{"from":305,"to":784,"weight":-0.6775960824580243,"gater":null},{"from":305,"to":785,"weight":-0.44526668476772735,"gater":null},{"from":305,"to":786,"weight":3.2090366862606206,"gater":null},{"from":305,"to":787,"weight":0.5716599573369853,"gater":null},{"from":305,"to":788,"weight":-2.4653817347786116,"gater":null},{"from":305,"to":789,"weight":0.9518147397440033,"gater":null},{"from":305,"to":790,"weight":0.7030334756361172,"gater":null},{"from":306,"to":784,"weight":-0.07063812258526062,"gater":null},{"from":306,"to":785,"weight":0.01408899055282788,"gater":null},{"from":306,"to":786,"weight":0.6999739624652497,"gater":null},{"from":306,"to":787,"weight":0.698813305961148,"gater":null},{"from":306,"to":788,"weight":-1.5709647912639724,"gater":null},{"from":306,"to":789,"weight":0.11410245415738685,"gater":null},{"from":306,"to":790,"weight":0.17799932933335916,"gater":null},{"from":307,"to":784,"weight":-0.002770355208871565,"gater":null},{"from":307,"to":785,"weight":-0.06515535217004755,"gater":null},{"from":307,"to":786,"weight":-0.08397681490564274,"gater":null},{"from":307,"to":787,"weight":-0.040189445268176284,"gater":null},{"from":307,"to":788,"weight":0.09626310247774879,"gater":null},{"from":307,"to":789,"weight":-0.03417088085919701,"gater":null},{"from":307,"to":790,"weight":0.0736720247516697,"gater":null},{"from":308,"to":784,"weight":-0.09681433818980151,"gater":null},{"from":308,"to":785,"weight":0.013913192328672386,"gater":null},{"from":308,"to":786,"weight":-0.08637214882640598,"gater":null},{"from":308,"to":787,"weight":-0.019020960403753007,"gater":null},{"from":308,"to":788,"weight":0.06098159450735438,"gater":null},{"from":308,"to":789,"weight":-0.07921068198123714,"gater":null},{"from":308,"to":790,"weight":0.09226192982817624,"gater":null},{"from":309,"to":784,"weight":0.06644540173111231,"gater":null},{"from":309,"to":785,"weight":-0.07088617562383885,"gater":null},{"from":309,"to":786,"weight":0.02777249271505879,"gater":null},{"from":309,"to":787,"weight":-0.04583209921577586,"gater":null},{"from":309,"to":788,"weight":-0.07813209795622851,"gater":null},{"from":309,"to":789,"weight":-0.034930607058002924,"gater":null},{"from":309,"to":790,"weight":-0.0898382193616519,"gater":null},{"from":310,"to":784,"weight":-0.2548639881119788,"gater":null},{"from":310,"to":785,"weight":-0.05043145422564508,"gater":null},{"from":310,"to":786,"weight":-0.1894666526278785,"gater":null},{"from":310,"to":787,"weight":-0.021347686516521056,"gater":null},{"from":310,"to":788,"weight":0.045881082825990495,"gater":null},{"from":310,"to":789,"weight":-0.06419395504833218,"gater":null},{"from":310,"to":790,"weight":-0.4618174539265749,"gater":null},{"from":311,"to":784,"weight":-0.6064431825156735,"gater":null},{"from":311,"to":785,"weight":0.015461261588241708,"gater":null},{"from":311,"to":786,"weight":0.1477606906392336,"gater":null},{"from":311,"to":787,"weight":0.040385734293592254,"gater":null},{"from":311,"to":788,"weight":-0.044591512188380485,"gater":null},{"from":311,"to":789,"weight":0.7308462286327763,"gater":null},{"from":311,"to":790,"weight":-0.9742595835868934,"gater":null},{"from":312,"to":784,"weight":-0.018116872854996947,"gater":null},{"from":312,"to":785,"weight":0.29543589270065373,"gater":null},{"from":312,"to":786,"weight":-0.10416245020075027,"gater":null},{"from":312,"to":787,"weight":0.49666465159328244,"gater":null},{"from":312,"to":788,"weight":-0.4220352799197118,"gater":null},{"from":312,"to":789,"weight":0.605007318057298,"gater":null},{"from":312,"to":790,"weight":-1.0601748559724051,"gater":null},{"from":313,"to":784,"weight":0.6424737880980436,"gater":null},{"from":313,"to":785,"weight":0.11721595127211235,"gater":null},{"from":313,"to":786,"weight":-1.053171049747814,"gater":null},{"from":313,"to":787,"weight":1.1378775482307162,"gater":null},{"from":313,"to":788,"weight":-0.9681781002930397,"gater":null},{"from":313,"to":789,"weight":0.9746272492017192,"gater":null},{"from":313,"to":790,"weight":-0.0723915985221127,"gater":null},{"from":314,"to":784,"weight":1.1523375061116075,"gater":null},{"from":314,"to":785,"weight":-0.012404710240201589,"gater":null},{"from":314,"to":786,"weight":0.14455269735090354,"gater":null},{"from":314,"to":787,"weight":0.16694296686102705,"gater":null},{"from":314,"to":788,"weight":-0.2470130556546333,"gater":null},{"from":314,"to":789,"weight":0.08913048614341529,"gater":null},{"from":314,"to":790,"weight":1.702817600273541,"gater":null},{"from":315,"to":784,"weight":0.38646611692305394,"gater":null},{"from":315,"to":785,"weight":0.2296154820078128,"gater":null},{"from":315,"to":786,"weight":1.4100505213909198,"gater":null},{"from":315,"to":787,"weight":-0.6250738506581555,"gater":null},{"from":315,"to":788,"weight":1.8666855188318674,"gater":null},{"from":315,"to":789,"weight":2.237844619639573,"gater":null},{"from":315,"to":790,"weight":1.9460503831854203,"gater":null},{"from":316,"to":784,"weight":-0.7356212630002829,"gater":null},{"from":316,"to":785,"weight":0.3121074622526011,"gater":null},{"from":316,"to":786,"weight":3.3240649163697906,"gater":null},{"from":316,"to":787,"weight":-1.2519440084379638,"gater":null},{"from":316,"to":788,"weight":0.7723874588492661,"gater":null},{"from":316,"to":789,"weight":2.0611924366848693,"gater":null},{"from":316,"to":790,"weight":-1.1672957652165252,"gater":null},{"from":317,"to":784,"weight":-0.10118184740828808,"gater":null},{"from":317,"to":785,"weight":-1.1185937539476851,"gater":null},{"from":317,"to":786,"weight":1.0811976779569397,"gater":null},{"from":317,"to":787,"weight":-1.4377748105519028,"gater":null},{"from":317,"to":788,"weight":0.7319350533329654,"gater":null},{"from":317,"to":789,"weight":0.6626828695973571,"gater":null},{"from":317,"to":790,"weight":-0.30640094857272837,"gater":null},{"from":318,"to":784,"weight":0.6945124294607712,"gater":null},{"from":318,"to":785,"weight":1.0551889632362952,"gater":null},{"from":318,"to":786,"weight":2.3502898277581,"gater":null},{"from":318,"to":787,"weight":-0.05890324778158666,"gater":null},{"from":318,"to":788,"weight":0.9251294667677531,"gater":null},{"from":318,"to":789,"weight":2.835316207008355,"gater":null},{"from":318,"to":790,"weight":-1.596185161891631,"gater":null},{"from":319,"to":784,"weight":-0.485253286100873,"gater":null},{"from":319,"to":785,"weight":0.6926059454041213,"gater":null},{"from":319,"to":786,"weight":0.02652758955468177,"gater":null},{"from":319,"to":787,"weight":0.983332318963016,"gater":null},{"from":319,"to":788,"weight":1.084255701647809,"gater":null},{"from":319,"to":789,"weight":1.5932079441753406,"gater":null},{"from":319,"to":790,"weight":-0.7951305882370145,"gater":null},{"from":320,"to":784,"weight":1.407927275609292,"gater":null},{"from":320,"to":785,"weight":1.2260504964040961,"gater":null},{"from":320,"to":786,"weight":1.7813269321729999,"gater":null},{"from":320,"to":787,"weight":0.5649112062198738,"gater":null},{"from":320,"to":788,"weight":1.0362942719798047,"gater":null},{"from":320,"to":789,"weight":2.5546607584222287,"gater":null},{"from":320,"to":790,"weight":-0.4844335867624938,"gater":null},{"from":321,"to":784,"weight":1.3764072166908123,"gater":null},{"from":321,"to":785,"weight":-0.08528604945596738,"gater":null},{"from":321,"to":786,"weight":3.534309816431972,"gater":null},{"from":321,"to":787,"weight":0.5830639170554277,"gater":null},{"from":321,"to":788,"weight":0.4895201710532753,"gater":null},{"from":321,"to":789,"weight":2.855985338714372,"gater":null},{"from":321,"to":790,"weight":0.14405293549098147,"gater":null},{"from":322,"to":784,"weight":-2.6091285946913616,"gater":null},{"from":322,"to":785,"weight":-1.8949189979434409,"gater":null},{"from":322,"to":786,"weight":-0.2820784329871677,"gater":null},{"from":322,"to":787,"weight":-0.022679186439741154,"gater":null},{"from":322,"to":788,"weight":-0.85539746159399,"gater":null},{"from":322,"to":789,"weight":1.390245952466448,"gater":null},{"from":322,"to":790,"weight":-0.183152912248925,"gater":null},{"from":323,"to":784,"weight":2.532297143370431,"gater":null},{"from":323,"to":785,"weight":-0.7651333856698324,"gater":null},{"from":323,"to":786,"weight":0.21342722964080243,"gater":null},{"from":323,"to":787,"weight":-2.282191679800194,"gater":null},{"from":323,"to":788,"weight":-1.8742347838188211,"gater":null},{"from":323,"to":789,"weight":2.132600642682448,"gater":null},{"from":323,"to":790,"weight":-0.8443311139074483,"gater":null},{"from":324,"to":784,"weight":1.0277863090139938,"gater":null},{"from":324,"to":785,"weight":-1.3055433661614273,"gater":null},{"from":324,"to":786,"weight":1.2691939890736,"gater":null},{"from":324,"to":787,"weight":0.8546449476672134,"gater":null},{"from":324,"to":788,"weight":-2.4534481663154453,"gater":null},{"from":324,"to":789,"weight":-0.7064416281792792,"gater":null},{"from":324,"to":790,"weight":-0.14426719193993143,"gater":null},{"from":325,"to":784,"weight":3.633413705650969,"gater":null},{"from":325,"to":785,"weight":-0.08432888809152601,"gater":null},{"from":325,"to":786,"weight":0.7893493191207283,"gater":null},{"from":325,"to":787,"weight":-0.037991081373713285,"gater":null},{"from":325,"to":788,"weight":0.19133511829465102,"gater":null},{"from":325,"to":789,"weight":1.4357014085901438,"gater":null},{"from":325,"to":790,"weight":-2.0601681988215788,"gater":null},{"from":326,"to":784,"weight":1.2445978304325014,"gater":null},{"from":326,"to":785,"weight":0.18553996142553475,"gater":null},{"from":326,"to":786,"weight":-3.190405929582289,"gater":null},{"from":326,"to":787,"weight":-0.04575021935699734,"gater":null},{"from":326,"to":788,"weight":1.4131110262933477,"gater":null},{"from":326,"to":789,"weight":0.6180731693428974,"gater":null},{"from":326,"to":790,"weight":-2.0745648302551074,"gater":null},{"from":327,"to":784,"weight":0.4786602715342578,"gater":null},{"from":327,"to":785,"weight":1.743736096744914,"gater":null},{"from":327,"to":786,"weight":0.5508079615919399,"gater":null},{"from":327,"to":787,"weight":0.2624930220887661,"gater":null},{"from":327,"to":788,"weight":1.5509266971194742,"gater":null},{"from":327,"to":789,"weight":2.045115371707568,"gater":null},{"from":327,"to":790,"weight":-1.9204393508516255,"gater":null},{"from":328,"to":784,"weight":-0.20309616779621964,"gater":null},{"from":328,"to":785,"weight":1.5305776251209005,"gater":null},{"from":328,"to":786,"weight":-6.276080338472784,"gater":null},{"from":328,"to":787,"weight":-0.21477960434033996,"gater":null},{"from":328,"to":788,"weight":2.6121687105904443,"gater":null},{"from":328,"to":789,"weight":0.6351578002738442,"gater":null},{"from":328,"to":790,"weight":-0.8290401937243159,"gater":null},{"from":329,"to":784,"weight":0.9328629492149837,"gater":null},{"from":329,"to":785,"weight":1.0942947889146961,"gater":null},{"from":329,"to":786,"weight":-4.777775624225621,"gater":null},{"from":329,"to":787,"weight":-0.4948508936472823,"gater":null},{"from":329,"to":788,"weight":2.065330193569218,"gater":null},{"from":329,"to":789,"weight":-0.09987040128475898,"gater":null},{"from":329,"to":790,"weight":1.421640458110674,"gater":null},{"from":330,"to":784,"weight":1.9137246211495043,"gater":null},{"from":330,"to":785,"weight":0.5519015609405745,"gater":null},{"from":330,"to":786,"weight":-4.476374541197577,"gater":null},{"from":330,"to":787,"weight":0.27756818601716005,"gater":null},{"from":330,"to":788,"weight":0.9962076019088258,"gater":null},{"from":330,"to":789,"weight":1.79581353566433,"gater":null},{"from":330,"to":790,"weight":-0.606408751761715,"gater":null},{"from":331,"to":784,"weight":-0.09285243270418936,"gater":null},{"from":331,"to":785,"weight":0.16132942257943958,"gater":null},{"from":331,"to":786,"weight":-1.1841811016682247,"gater":null},{"from":331,"to":787,"weight":1.0918690716323576,"gater":null},{"from":331,"to":788,"weight":1.002091845787972,"gater":null},{"from":331,"to":789,"weight":-0.015510535289250501,"gater":null},{"from":331,"to":790,"weight":0.46987209811485064,"gater":null},{"from":332,"to":784,"weight":-0.7990470037317013,"gater":null},{"from":332,"to":785,"weight":0.11191098425864965,"gater":null},{"from":332,"to":786,"weight":-1.2701421425592434,"gater":null},{"from":332,"to":787,"weight":0.8223709823713192,"gater":null},{"from":332,"to":788,"weight":-1.064647901572837,"gater":null},{"from":332,"to":789,"weight":0.42253414913753023,"gater":null},{"from":332,"to":790,"weight":1.8514392300687426,"gater":null},{"from":333,"to":784,"weight":-0.6691965467003949,"gater":null},{"from":333,"to":785,"weight":-0.868304613679397,"gater":null},{"from":333,"to":786,"weight":0.3363256597930018,"gater":null},{"from":333,"to":787,"weight":0.5820030499384156,"gater":null},{"from":333,"to":788,"weight":-1.7537714354951088,"gater":null},{"from":333,"to":789,"weight":1.3270853155874502,"gater":null},{"from":333,"to":790,"weight":1.393832116937195,"gater":null},{"from":334,"to":784,"weight":-0.20916161300784522,"gater":null},{"from":334,"to":785,"weight":-0.07784552216456285,"gater":null},{"from":334,"to":786,"weight":0.7965616051768345,"gater":null},{"from":334,"to":787,"weight":0.3808722368779691,"gater":null},{"from":334,"to":788,"weight":-0.930222166538729,"gater":null},{"from":334,"to":789,"weight":0.8902174320673452,"gater":null},{"from":334,"to":790,"weight":1.062356928953734,"gater":null},{"from":335,"to":784,"weight":0.024574467766668866,"gater":null},{"from":335,"to":785,"weight":0.07621461514855153,"gater":null},{"from":335,"to":786,"weight":-0.039229886593800084,"gater":null},{"from":335,"to":787,"weight":0.03237318666613182,"gater":null},{"from":335,"to":788,"weight":0.05709082754868507,"gater":null},{"from":335,"to":789,"weight":0.0932592448994245,"gater":null},{"from":335,"to":790,"weight":-0.04364822945546665,"gater":null},{"from":336,"to":784,"weight":-0.061718722800368386,"gater":null},{"from":336,"to":785,"weight":-0.09700648730760558,"gater":null},{"from":336,"to":786,"weight":-0.01637662939141586,"gater":null},{"from":336,"to":787,"weight":-0.024407602790319463,"gater":null},{"from":336,"to":788,"weight":0.0023553763167322855,"gater":null},{"from":336,"to":789,"weight":0.02420915140270688,"gater":null},{"from":336,"to":790,"weight":-0.0012041655661175071,"gater":null},{"from":337,"to":784,"weight":0.06955966191787945,"gater":null},{"from":337,"to":785,"weight":0.0212834341857043,"gater":null},{"from":337,"to":786,"weight":0.27398864591413313,"gater":null},{"from":337,"to":787,"weight":-0.003956440582481012,"gater":null},{"from":337,"to":788,"weight":-0.04771019539948621,"gater":null},{"from":337,"to":789,"weight":0.010614162265387063,"gater":null},{"from":337,"to":790,"weight":0.01941205516788838,"gater":null},{"from":338,"to":784,"weight":0.048151626534089,"gater":null},{"from":338,"to":785,"weight":-0.06992245190701184,"gater":null},{"from":338,"to":786,"weight":0.0078203514337804,"gater":null},{"from":338,"to":787,"weight":0.07154267938985619,"gater":null},{"from":338,"to":788,"weight":0.0860528586550921,"gater":null},{"from":338,"to":789,"weight":0.0859755749655286,"gater":null},{"from":338,"to":790,"weight":-0.5799378362332865,"gater":null},{"from":339,"to":784,"weight":-0.5028758454458643,"gater":null},{"from":339,"to":785,"weight":0.062244533593307685,"gater":null},{"from":339,"to":786,"weight":-0.23512535075667712,"gater":null},{"from":339,"to":787,"weight":0.13204762420821817,"gater":null},{"from":339,"to":788,"weight":-0.06370354762844267,"gater":null},{"from":339,"to":789,"weight":0.7368200584515316,"gater":null},{"from":339,"to":790,"weight":-0.4456322895773791,"gater":null},{"from":340,"to":784,"weight":-0.2337203995728287,"gater":null},{"from":340,"to":785,"weight":0.212103297650024,"gater":null},{"from":340,"to":786,"weight":-0.7633038519486899,"gater":null},{"from":340,"to":787,"weight":0.12689186241285696,"gater":null},{"from":340,"to":788,"weight":-0.40501544290588276,"gater":null},{"from":340,"to":789,"weight":0.9108202391748774,"gater":null},{"from":340,"to":790,"weight":-0.31821481874305674,"gater":null},{"from":341,"to":784,"weight":-0.8563634119888143,"gater":null},{"from":341,"to":785,"weight":0.2703324853398941,"gater":null},{"from":341,"to":786,"weight":1.6488364807108773,"gater":null},{"from":341,"to":787,"weight":1.2727868522314356,"gater":null},{"from":341,"to":788,"weight":-0.24864106994726637,"gater":null},{"from":341,"to":789,"weight":0.991646067197512,"gater":null},{"from":341,"to":790,"weight":1.2960963729974424,"gater":null},{"from":342,"to":784,"weight":0.136749119363911,"gater":null},{"from":342,"to":785,"weight":-0.09004558188434778,"gater":null},{"from":342,"to":786,"weight":2.1122999519972856,"gater":null},{"from":342,"to":787,"weight":0.0760281182647532,"gater":null},{"from":342,"to":788,"weight":1.0566953199429865,"gater":null},{"from":342,"to":789,"weight":0.9159675544640887,"gater":null},{"from":342,"to":790,"weight":0.47057236530128554,"gater":null},{"from":343,"to":784,"weight":2.1034659447373696,"gater":null},{"from":343,"to":785,"weight":0.2645665525542379,"gater":null},{"from":343,"to":786,"weight":1.312685402727818,"gater":null},{"from":343,"to":787,"weight":-0.27500020457997165,"gater":null},{"from":343,"to":788,"weight":-0.8649084222887726,"gater":null},{"from":343,"to":789,"weight":1.593168081879302,"gater":null},{"from":343,"to":790,"weight":0.6269523908405567,"gater":null},{"from":344,"to":784,"weight":3.2099511478449236,"gater":null},{"from":344,"to":785,"weight":0.6919281807311982,"gater":null},{"from":344,"to":786,"weight":0.9140967980274972,"gater":null},{"from":344,"to":787,"weight":-0.41480746695596676,"gater":null},{"from":344,"to":788,"weight":0.6239446942228183,"gater":null},{"from":344,"to":789,"weight":1.794415719802106,"gater":null},{"from":344,"to":790,"weight":1.6122942555295494,"gater":null},{"from":345,"to":784,"weight":0.3295426679726451,"gater":null},{"from":345,"to":785,"weight":-0.289858841394528,"gater":null},{"from":345,"to":786,"weight":0.9721310134761489,"gater":null},{"from":345,"to":787,"weight":0.0029734391659302,"gater":null},{"from":345,"to":788,"weight":0.6545207709167471,"gater":null},{"from":345,"to":789,"weight":1.2190789859153954,"gater":null},{"from":345,"to":790,"weight":0.8668289985670411,"gater":null},{"from":346,"to":784,"weight":0.1615994233134064,"gater":null},{"from":346,"to":785,"weight":2.359394570729844,"gater":null},{"from":346,"to":786,"weight":1.6151215679980178,"gater":null},{"from":346,"to":787,"weight":-0.38202161487881997,"gater":null},{"from":346,"to":788,"weight":0.4606096229186917,"gater":null},{"from":346,"to":789,"weight":0.9573918602310636,"gater":null},{"from":346,"to":790,"weight":0.9270021274378306,"gater":null},{"from":347,"to":784,"weight":1.7074641709169753,"gater":null},{"from":347,"to":785,"weight":0.7335305508226896,"gater":null},{"from":347,"to":786,"weight":1.104813988884981,"gater":null},{"from":347,"to":787,"weight":0.1100802901486143,"gater":null},{"from":347,"to":788,"weight":-0.6834827955494419,"gater":null},{"from":347,"to":789,"weight":1.1888879062064939,"gater":null},{"from":347,"to":790,"weight":2.037233680300665,"gater":null},{"from":348,"to":784,"weight":1.7735810007925676,"gater":null},{"from":348,"to":785,"weight":1.391403580390688,"gater":null},{"from":348,"to":786,"weight":1.8396211569976018,"gater":null},{"from":348,"to":787,"weight":1.3730846374252046,"gater":null},{"from":348,"to":788,"weight":0.21214792841747374,"gater":null},{"from":348,"to":789,"weight":0.45750228706509277,"gater":null},{"from":348,"to":790,"weight":2.6560400751148077,"gater":null},{"from":349,"to":784,"weight":-2.0683680725346782,"gater":null},{"from":349,"to":785,"weight":-1.2722858119948008,"gater":null},{"from":349,"to":786,"weight":1.766513382410753,"gater":null},{"from":349,"to":787,"weight":-0.610643913752292,"gater":null},{"from":349,"to":788,"weight":-1.1785427379394255,"gater":null},{"from":349,"to":789,"weight":2.671505467487344,"gater":null},{"from":349,"to":790,"weight":2.8482447772210664,"gater":null},{"from":350,"to":784,"weight":-2.291115592218998,"gater":null},{"from":350,"to":785,"weight":-0.3088229297446347,"gater":null},{"from":350,"to":786,"weight":-1.9608259435216195,"gater":null},{"from":350,"to":787,"weight":-1.333757366795869,"gater":null},{"from":350,"to":788,"weight":-2.2445318847337528,"gater":null},{"from":350,"to":789,"weight":1.2663007040380565,"gater":null},{"from":350,"to":790,"weight":2.4802222915278325,"gater":null},{"from":351,"to":784,"weight":0.5126770866008221,"gater":null},{"from":351,"to":785,"weight":-1.381167655556363,"gater":null},{"from":351,"to":786,"weight":-0.9967821114845434,"gater":null},{"from":351,"to":787,"weight":-2.167112424680847,"gater":null},{"from":351,"to":788,"weight":-3.531957721002319,"gater":null},{"from":351,"to":789,"weight":0.8855808197352042,"gater":null},{"from":351,"to":790,"weight":0.3160036544458916,"gater":null},{"from":352,"to":784,"weight":-0.6665604560390691,"gater":null},{"from":352,"to":785,"weight":0.12853847684579212,"gater":null},{"from":352,"to":786,"weight":-0.7316491736445534,"gater":null},{"from":352,"to":787,"weight":-1.0370204035342625,"gater":null},{"from":352,"to":788,"weight":-1.7731468262716101,"gater":null},{"from":352,"to":789,"weight":-1.1152799735217396,"gater":null},{"from":352,"to":790,"weight":0.6695165479160813,"gater":null},{"from":353,"to":784,"weight":3.66696249197496,"gater":null},{"from":353,"to":785,"weight":-0.5550349275420163,"gater":null},{"from":353,"to":786,"weight":-1.6999978518124161,"gater":null},{"from":353,"to":787,"weight":1.401514804832586,"gater":null},{"from":353,"to":788,"weight":-1.8115214663012333,"gater":null},{"from":353,"to":789,"weight":1.614257859429227,"gater":null},{"from":353,"to":790,"weight":-1.0356988357917318,"gater":null},{"from":354,"to":784,"weight":-0.796201979202137,"gater":null},{"from":354,"to":785,"weight":-1.4476090753580655,"gater":null},{"from":354,"to":786,"weight":-2.8977973729111843,"gater":null},{"from":354,"to":787,"weight":-1.7991384068361582,"gater":null},{"from":354,"to":788,"weight":0.6121191586762409,"gater":null},{"from":354,"to":789,"weight":-1.3480886582548934,"gater":null},{"from":354,"to":790,"weight":0.28702344302990257,"gater":null},{"from":355,"to":784,"weight":2.5134222279221077,"gater":null},{"from":355,"to":785,"weight":1.0496956613993347,"gater":null},{"from":355,"to":786,"weight":-0.2568963971275954,"gater":null},{"from":355,"to":787,"weight":-1.190964448282635,"gater":null},{"from":355,"to":788,"weight":1.3539529373130108,"gater":null},{"from":355,"to":789,"weight":0.7460201932356169,"gater":null},{"from":355,"to":790,"weight":0.8680121167523855,"gater":null},{"from":356,"to":784,"weight":0.3751254681328161,"gater":null},{"from":356,"to":785,"weight":0.9437003114561222,"gater":null},{"from":356,"to":786,"weight":-1.4372714655681185,"gater":null},{"from":356,"to":787,"weight":-0.05471937594610412,"gater":null},{"from":356,"to":788,"weight":1.8998487166077345,"gater":null},{"from":356,"to":789,"weight":-0.2568600298735085,"gater":null},{"from":356,"to":790,"weight":-0.44404693355932534,"gater":null},{"from":357,"to":784,"weight":0.12508305508914008,"gater":null},{"from":357,"to":785,"weight":1.0834905659826888,"gater":null},{"from":357,"to":786,"weight":-2.4007550872091077,"gater":null},{"from":357,"to":787,"weight":-0.4517335844812752,"gater":null},{"from":357,"to":788,"weight":1.0863812469714083,"gater":null},{"from":357,"to":789,"weight":-0.3525937359753624,"gater":null},{"from":357,"to":790,"weight":0.3918600451822874,"gater":null},{"from":358,"to":784,"weight":-0.3981042223636806,"gater":null},{"from":358,"to":785,"weight":0.45671791825265934,"gater":null},{"from":358,"to":786,"weight":2.2325835956512488,"gater":null},{"from":358,"to":787,"weight":0.7750012028646072,"gater":null},{"from":358,"to":788,"weight":1.4798246451887729,"gater":null},{"from":358,"to":789,"weight":0.42697015467594757,"gater":null},{"from":358,"to":790,"weight":-2.255929633547679,"gater":null},{"from":359,"to":784,"weight":-0.6373260343457601,"gater":null},{"from":359,"to":785,"weight":0.05425681011583015,"gater":null},{"from":359,"to":786,"weight":2.7771226508304,"gater":null},{"from":359,"to":787,"weight":0.823956798671241,"gater":null},{"from":359,"to":788,"weight":1.4844851454291934,"gater":null},{"from":359,"to":789,"weight":-0.5463953398082891,"gater":null},{"from":359,"to":790,"weight":-0.9767699172704715,"gater":null},{"from":360,"to":784,"weight":-0.901566881506607,"gater":null},{"from":360,"to":785,"weight":0.06513171773490505,"gater":null},{"from":360,"to":786,"weight":0.19742794283728696,"gater":null},{"from":360,"to":787,"weight":0.545217733250593,"gater":null},{"from":360,"to":788,"weight":-0.5073392961615056,"gater":null},{"from":360,"to":789,"weight":0.47371141568707803,"gater":null},{"from":360,"to":790,"weight":0.3529555855405927,"gater":null},{"from":361,"to":784,"weight":-0.7610438910103239,"gater":null},{"from":361,"to":785,"weight":0.04263970587552254,"gater":null},{"from":361,"to":786,"weight":-1.5281368233026145,"gater":null},{"from":361,"to":787,"weight":0.6646483868671237,"gater":null},{"from":361,"to":788,"weight":-0.8851946235189952,"gater":null},{"from":361,"to":789,"weight":1.3852990582538163,"gater":null},{"from":361,"to":790,"weight":0.7591983563487504,"gater":null},{"from":362,"to":784,"weight":-0.16504800979270798,"gater":null},{"from":362,"to":785,"weight":-0.11369841577880963,"gater":null},{"from":362,"to":786,"weight":-0.2289279702562872,"gater":null},{"from":362,"to":787,"weight":-0.0023250010532215523,"gater":null},{"from":362,"to":788,"weight":-0.10912667560861736,"gater":null},{"from":362,"to":789,"weight":1.0363829345122955,"gater":null},{"from":362,"to":790,"weight":0.7072727026214168,"gater":null},{"from":363,"to":784,"weight":-0.06117017403885584,"gater":null},{"from":363,"to":785,"weight":-0.04414317554818106,"gater":null},{"from":363,"to":786,"weight":-0.19631363436249177,"gater":null},{"from":363,"to":787,"weight":-0.07230137831998226,"gater":null},{"from":363,"to":788,"weight":0.00009834197302103698,"gater":null},{"from":363,"to":789,"weight":-0.04889671462628113,"gater":null},{"from":363,"to":790,"weight":-0.05897998137935456,"gater":null},{"from":364,"to":784,"weight":-0.04163622191533332,"gater":null},{"from":364,"to":785,"weight":0.046773369245966256,"gater":null},{"from":364,"to":786,"weight":0.02125289083938045,"gater":null},{"from":364,"to":787,"weight":-0.03252898367588593,"gater":null},{"from":364,"to":788,"weight":-0.09647065850462688,"gater":null},{"from":364,"to":789,"weight":0.05631935525564566,"gater":null},{"from":364,"to":790,"weight":0.009963388336710371,"gater":null},{"from":365,"to":784,"weight":0.00039706051066315464,"gater":null},{"from":365,"to":785,"weight":-0.08290050280135314,"gater":null},{"from":365,"to":786,"weight":0.5667800515823486,"gater":null},{"from":365,"to":787,"weight":-0.10334841291781131,"gater":null},{"from":365,"to":788,"weight":0.03349452756189694,"gater":null},{"from":365,"to":789,"weight":0.0475358075903604,"gater":null},{"from":365,"to":790,"weight":0.02015849611459741,"gater":null},{"from":366,"to":784,"weight":0.013477801015997505,"gater":null},{"from":366,"to":785,"weight":0.03544494768068779,"gater":null},{"from":366,"to":786,"weight":0.22520814349061616,"gater":null},{"from":366,"to":787,"weight":0.0660094482798216,"gater":null},{"from":366,"to":788,"weight":-0.010276364677749707,"gater":null},{"from":366,"to":789,"weight":0.07927030135868697,"gater":null},{"from":366,"to":790,"weight":-1.1347495678462756,"gater":null},{"from":367,"to":784,"weight":0.005733276319653287,"gater":null},{"from":367,"to":785,"weight":0.10187573020479455,"gater":null},{"from":367,"to":786,"weight":-1.4834739981109717,"gater":null},{"from":367,"to":787,"weight":0.11758908857556905,"gater":null},{"from":367,"to":788,"weight":-0.13179473023559166,"gater":null},{"from":367,"to":789,"weight":-0.5201541305075975,"gater":null},{"from":367,"to":790,"weight":0.6907899053021089,"gater":null},{"from":368,"to":784,"weight":0.19293318265596768,"gater":null},{"from":368,"to":785,"weight":0.026960460834153925,"gater":null},{"from":368,"to":786,"weight":-0.41224587385962475,"gater":null},{"from":368,"to":787,"weight":-0.24671523686207858,"gater":null},{"from":368,"to":788,"weight":-0.8215612225026547,"gater":null},{"from":368,"to":789,"weight":0.6792321936403788,"gater":null},{"from":368,"to":790,"weight":-0.8082379480312513,"gater":null},{"from":369,"to":784,"weight":0.8485349932129546,"gater":null},{"from":369,"to":785,"weight":0.19766827488369085,"gater":null},{"from":369,"to":786,"weight":1.474140945393076,"gater":null},{"from":369,"to":787,"weight":0.6078098326063347,"gater":null},{"from":369,"to":788,"weight":0.25902781564130894,"gater":null},{"from":369,"to":789,"weight":0.22717070522036195,"gater":null},{"from":369,"to":790,"weight":-0.35920679229407004,"gater":null},{"from":370,"to":784,"weight":-0.20725525483295987,"gater":null},{"from":370,"to":785,"weight":0.27121223138796235,"gater":null},{"from":370,"to":786,"weight":2.4392486762337664,"gater":null},{"from":370,"to":787,"weight":-0.4410824469842738,"gater":null},{"from":370,"to":788,"weight":1.8105792143843558,"gater":null},{"from":370,"to":789,"weight":1.0705932583571776,"gater":null},{"from":370,"to":790,"weight":-1.6723454509175573,"gater":null},{"from":371,"to":784,"weight":0.7373304085267283,"gater":null},{"from":371,"to":785,"weight":0.4785326308578482,"gater":null},{"from":371,"to":786,"weight":0.8594601972645706,"gater":null},{"from":371,"to":787,"weight":-0.8604030691156984,"gater":null},{"from":371,"to":788,"weight":-0.295312317139113,"gater":null},{"from":371,"to":789,"weight":1.2507041286099903,"gater":null},{"from":371,"to":790,"weight":2.2868869464511232,"gater":null},{"from":372,"to":784,"weight":0.7584210085028666,"gater":null},{"from":372,"to":785,"weight":1.1085367456347734,"gater":null},{"from":372,"to":786,"weight":0.37800972235344465,"gater":null},{"from":372,"to":787,"weight":0.07281284726338356,"gater":null},{"from":372,"to":788,"weight":0.965237084050677,"gater":null},{"from":372,"to":789,"weight":2.361273988140384,"gater":null},{"from":372,"to":790,"weight":3.5184672227527476,"gater":null},{"from":373,"to":784,"weight":-0.4964130916004746,"gater":null},{"from":373,"to":785,"weight":1.4248155686303938,"gater":null},{"from":373,"to":786,"weight":0.06843913099959756,"gater":null},{"from":373,"to":787,"weight":-0.7573906302483978,"gater":null},{"from":373,"to":788,"weight":-0.10443208284989217,"gater":null},{"from":373,"to":789,"weight":0.6110722923298051,"gater":null},{"from":373,"to":790,"weight":2.1182977314745384,"gater":null},{"from":374,"to":784,"weight":0.061533152599379186,"gater":null},{"from":374,"to":785,"weight":1.0581581681177328,"gater":null},{"from":374,"to":786,"weight":2.4677983933700083,"gater":null},{"from":374,"to":787,"weight":-1.2698437598025336,"gater":null},{"from":374,"to":788,"weight":-0.5318739222417361,"gater":null},{"from":374,"to":789,"weight":0.15431718926590185,"gater":null},{"from":374,"to":790,"weight":1.6801814990048114,"gater":null},{"from":375,"to":784,"weight":0.2001813213854285,"gater":null},{"from":375,"to":785,"weight":0.3758178486375072,"gater":null},{"from":375,"to":786,"weight":1.806602827086482,"gater":null},{"from":375,"to":787,"weight":-0.06573373594082053,"gater":null},{"from":375,"to":788,"weight":-1.0058280919974907,"gater":null},{"from":375,"to":789,"weight":1.5351709219664358,"gater":null},{"from":375,"to":790,"weight":1.1161707245843988,"gater":null},{"from":376,"to":784,"weight":-0.581648342782733,"gater":null},{"from":376,"to":785,"weight":0.09036122751312481,"gater":null},{"from":376,"to":786,"weight":2.3689110958253714,"gater":null},{"from":376,"to":787,"weight":1.342874720683013,"gater":null},{"from":376,"to":788,"weight":0.6445791655105592,"gater":null},{"from":376,"to":789,"weight":1.2375362344775773,"gater":null},{"from":376,"to":790,"weight":3.6442538438155774,"gater":null},{"from":377,"to":784,"weight":-3.7819310282099106,"gater":null},{"from":377,"to":785,"weight":-0.654523386955703,"gater":null},{"from":377,"to":786,"weight":-1.6522901964798762,"gater":null},{"from":377,"to":787,"weight":-1.039906342585282,"gater":null},{"from":377,"to":788,"weight":-0.8085735867674446,"gater":null},{"from":377,"to":789,"weight":2.037470990527377,"gater":null},{"from":377,"to":790,"weight":6.436629338091529,"gater":null},{"from":378,"to":784,"weight":-1.8127867438349472,"gater":null},{"from":378,"to":785,"weight":-1.0252633208239357,"gater":null},{"from":378,"to":786,"weight":0.7857221060976071,"gater":null},{"from":378,"to":787,"weight":-1.320033244045363,"gater":null},{"from":378,"to":788,"weight":-3.7768486918934343,"gater":null},{"from":378,"to":789,"weight":0.3278752026899872,"gater":null},{"from":378,"to":790,"weight":3.3724455310147423,"gater":null},{"from":379,"to":784,"weight":0.9519811724402566,"gater":null},{"from":379,"to":785,"weight":0.06643004496381706,"gater":null},{"from":379,"to":786,"weight":-0.8036675383290834,"gater":null},{"from":379,"to":787,"weight":-0.5972327014542708,"gater":null},{"from":379,"to":788,"weight":-4.330865811040929,"gater":null},{"from":379,"to":789,"weight":0.28145530082401543,"gater":null},{"from":379,"to":790,"weight":1.0932036970432926,"gater":null},{"from":380,"to":784,"weight":-0.8745971233403215,"gater":null},{"from":380,"to":785,"weight":-1.4555809986290853,"gater":null},{"from":380,"to":786,"weight":-3.419826347615481,"gater":null},{"from":380,"to":787,"weight":-0.459966600018502,"gater":null},{"from":380,"to":788,"weight":-2.22938263983847,"gater":null},{"from":380,"to":789,"weight":1.7270266988870044,"gater":null},{"from":380,"to":790,"weight":0.9459018412240029,"gater":null},{"from":381,"to":784,"weight":2.8248952855205935,"gater":null},{"from":381,"to":785,"weight":-1.164645325155866,"gater":null},{"from":381,"to":786,"weight":-1.0276240864892707,"gater":null},{"from":381,"to":787,"weight":0.0009113987199660235,"gater":null},{"from":381,"to":788,"weight":0.6781711812557438,"gater":null},{"from":381,"to":789,"weight":1.4180342783446098,"gater":null},{"from":381,"to":790,"weight":2.0259518948850417,"gater":null},{"from":382,"to":784,"weight":-0.8423817600597739,"gater":null},{"from":382,"to":785,"weight":0.9383169027317833,"gater":null},{"from":382,"to":786,"weight":0.3373396324395983,"gater":null},{"from":382,"to":787,"weight":0.1674595499912207,"gater":null},{"from":382,"to":788,"weight":-0.11709767593903013,"gater":null},{"from":382,"to":789,"weight":0.46881191538494627,"gater":null},{"from":382,"to":790,"weight":3.3765781804610695,"gater":null},{"from":383,"to":784,"weight":2.6651599103436037,"gater":null},{"from":383,"to":785,"weight":1.8708158152101404,"gater":null},{"from":383,"to":786,"weight":-1.127362999961788,"gater":null},{"from":383,"to":787,"weight":1.211157511716696,"gater":null},{"from":383,"to":788,"weight":-0.9834065902480917,"gater":null},{"from":383,"to":789,"weight":0.46277379764045695,"gater":null},{"from":383,"to":790,"weight":1.037538800505381,"gater":null},{"from":384,"to":784,"weight":0.15952740856020384,"gater":null},{"from":384,"to":785,"weight":1.3856820443222795,"gater":null},{"from":384,"to":786,"weight":0.0065762226931083065,"gater":null},{"from":384,"to":787,"weight":0.8895279443566352,"gater":null},{"from":384,"to":788,"weight":-0.21216567035949394,"gater":null},{"from":384,"to":789,"weight":0.6566480122229246,"gater":null},{"from":384,"to":790,"weight":-0.5792513211884449,"gater":null},{"from":385,"to":784,"weight":0.7446569594922027,"gater":null},{"from":385,"to":785,"weight":0.8460342970793532,"gater":null},{"from":385,"to":786,"weight":0.4806329872770695,"gater":null},{"from":385,"to":787,"weight":-0.0866592208669958,"gater":null},{"from":385,"to":788,"weight":-0.9889854364593481,"gater":null},{"from":385,"to":789,"weight":1.0875639690114696,"gater":null},{"from":385,"to":790,"weight":-1.4069298128064982,"gater":null},{"from":386,"to":784,"weight":-0.6688520968102204,"gater":null},{"from":386,"to":785,"weight":0.47724487218184525,"gater":null},{"from":386,"to":786,"weight":2.5246794145960956,"gater":null},{"from":386,"to":787,"weight":1.8041124443049121,"gater":null},{"from":386,"to":788,"weight":0.0764298943386051,"gater":null},{"from":386,"to":789,"weight":-0.8017770868985945,"gater":null},{"from":386,"to":790,"weight":-1.5387454813671686,"gater":null},{"from":387,"to":784,"weight":-2.4766152114755573,"gater":null},{"from":387,"to":785,"weight":0.01346666211452161,"gater":null},{"from":387,"to":786,"weight":0.8146690389685854,"gater":null},{"from":387,"to":787,"weight":0.48612235465539383,"gater":null},{"from":387,"to":788,"weight":0.2675583797372186,"gater":null},{"from":387,"to":789,"weight":-1.1603957064236448,"gater":null},{"from":387,"to":790,"weight":-0.16781559336680557,"gater":null},{"from":388,"to":784,"weight":-2.4287639822479417,"gater":null},{"from":388,"to":785,"weight":-0.24076903870399324,"gater":null},{"from":388,"to":786,"weight":1.4538387637953238,"gater":null},{"from":388,"to":787,"weight":0.3496842872211832,"gater":null},{"from":388,"to":788,"weight":-0.08699059413641237,"gater":null},{"from":388,"to":789,"weight":-0.5265032306872883,"gater":null},{"from":388,"to":790,"weight":0.09591746311768581,"gater":null},{"from":389,"to":784,"weight":-0.5298543364958517,"gater":null},{"from":389,"to":785,"weight":-0.06422662893676766,"gater":null},{"from":389,"to":786,"weight":-1.0209315512176549,"gater":null},{"from":389,"to":787,"weight":0.1916827401627073,"gater":null},{"from":389,"to":788,"weight":-0.5754289337524919,"gater":null},{"from":389,"to":789,"weight":0.846251850908391,"gater":null},{"from":389,"to":790,"weight":-0.17182726666823528,"gater":null},{"from":390,"to":784,"weight":-0.10505652055612169,"gater":null},{"from":390,"to":785,"weight":-0.008497510725125496,"gater":null},{"from":390,"to":786,"weight":0.06662252849305828,"gater":null},{"from":390,"to":787,"weight":0.0801056706387343,"gater":null},{"from":390,"to":788,"weight":0.07287442962397409,"gater":null},{"from":390,"to":789,"weight":0.36864268887108753,"gater":null},{"from":390,"to":790,"weight":0.07803966125470267,"gater":null},{"from":391,"to":784,"weight":-0.09989985064272333,"gater":null},{"from":391,"to":785,"weight":0.055529790012074504,"gater":null},{"from":391,"to":786,"weight":0.04085400171398565,"gater":null},{"from":391,"to":787,"weight":0.01773099532089914,"gater":null},{"from":391,"to":788,"weight":-0.02386351846181492,"gater":null},{"from":391,"to":789,"weight":-0.041861880173967414,"gater":null},{"from":391,"to":790,"weight":0.03841325544059093,"gater":null},{"from":392,"to":784,"weight":0.03164026159442196,"gater":null},{"from":392,"to":785,"weight":0.020468441642336105,"gater":null},{"from":392,"to":786,"weight":-0.06535082438482451,"gater":null},{"from":392,"to":787,"weight":-0.038769921095512805,"gater":null},{"from":392,"to":788,"weight":-0.047432157957057,"gater":null},{"from":392,"to":789,"weight":0.02520441533825274,"gater":null},{"from":392,"to":790,"weight":-0.0031671617112749573,"gater":null},{"from":393,"to":784,"weight":0.022822310154932274,"gater":null},{"from":393,"to":785,"weight":0.02419200854116893,"gater":null},{"from":393,"to":786,"weight":0.20874080224430397,"gater":null},{"from":393,"to":787,"weight":-0.032233699882417644,"gater":null},{"from":393,"to":788,"weight":0.00798244173999694,"gater":null},{"from":393,"to":789,"weight":0.01772353271578399,"gater":null},{"from":393,"to":790,"weight":0.03203334030193349,"gater":null},{"from":394,"to":784,"weight":-0.04612643295268973,"gater":null},{"from":394,"to":785,"weight":0.05260337223782162,"gater":null},{"from":394,"to":786,"weight":0.34246378413475814,"gater":null},{"from":394,"to":787,"weight":-0.05041682976360201,"gater":null},{"from":394,"to":788,"weight":0.0014813660804852177,"gater":null},{"from":394,"to":789,"weight":-0.06351771971948852,"gater":null},{"from":394,"to":790,"weight":-0.11839141210669347,"gater":null},{"from":395,"to":784,"weight":0.4239223210018757,"gater":null},{"from":395,"to":785,"weight":0.09144595395771195,"gater":null},{"from":395,"to":786,"weight":-0.9457096168057928,"gater":null},{"from":395,"to":787,"weight":-0.06177307170477437,"gater":null},{"from":395,"to":788,"weight":-0.5133903525413446,"gater":null},{"from":395,"to":789,"weight":-0.22657591719906858,"gater":null},{"from":395,"to":790,"weight":1.1307358451237461,"gater":null},{"from":396,"to":784,"weight":0.7014636753985108,"gater":null},{"from":396,"to":785,"weight":0.058495338909537876,"gater":null},{"from":396,"to":786,"weight":-0.19117917357319644,"gater":null},{"from":396,"to":787,"weight":-0.4751964838341728,"gater":null},{"from":396,"to":788,"weight":-0.9688716545414762,"gater":null},{"from":396,"to":789,"weight":1.3821473812436356,"gater":null},{"from":396,"to":790,"weight":-1.5097722877741058,"gater":null},{"from":397,"to":784,"weight":0.5911534854017328,"gater":null},{"from":397,"to":785,"weight":0.21627900093538033,"gater":null},{"from":397,"to":786,"weight":1.6450529701476155,"gater":null},{"from":397,"to":787,"weight":-0.27630261772917275,"gater":null},{"from":397,"to":788,"weight":1.8823113024997271,"gater":null},{"from":397,"to":789,"weight":1.1245229827609455,"gater":null},{"from":397,"to":790,"weight":-1.8952751828073808,"gater":null},{"from":398,"to":784,"weight":1.1325836646618779,"gater":null},{"from":398,"to":785,"weight":0.3396821891982538,"gater":null},{"from":398,"to":786,"weight":0.5693963954578978,"gater":null},{"from":398,"to":787,"weight":-1.1806013143458336,"gater":null},{"from":398,"to":788,"weight":2.6966171843378874,"gater":null},{"from":398,"to":789,"weight":-0.3825888234769251,"gater":null},{"from":398,"to":790,"weight":0.1801086592367979,"gater":null},{"from":399,"to":784,"weight":0.465644675750143,"gater":null},{"from":399,"to":785,"weight":0.967726194628951,"gater":null},{"from":399,"to":786,"weight":-0.8453330523180912,"gater":null},{"from":399,"to":787,"weight":-1.5387372399314145,"gater":null},{"from":399,"to":788,"weight":2.9528206626398243,"gater":null},{"from":399,"to":789,"weight":-1.2419769231318663,"gater":null},{"from":399,"to":790,"weight":1.3172216932679601,"gater":null},{"from":400,"to":784,"weight":0.6846659233508512,"gater":null},{"from":400,"to":785,"weight":1.3263495989686869,"gater":null},{"from":400,"to":786,"weight":-0.12251742844413054,"gater":null},{"from":400,"to":787,"weight":-2.207648183677528,"gater":null},{"from":400,"to":788,"weight":0.2583971362600297,"gater":null},{"from":400,"to":789,"weight":0.8993190218824931,"gater":null},{"from":400,"to":790,"weight":-0.2994964219733389,"gater":null},{"from":401,"to":784,"weight":-1.9435332247310866,"gater":null},{"from":401,"to":785,"weight":0.2832912039801061,"gater":null},{"from":401,"to":786,"weight":0.1210394830431799,"gater":null},{"from":401,"to":787,"weight":-1.3959288480801264,"gater":null},{"from":401,"to":788,"weight":0.6878702101568389,"gater":null},{"from":401,"to":789,"weight":-0.07103845950071205,"gater":null},{"from":401,"to":790,"weight":-0.6945204638641848,"gater":null},{"from":402,"to":784,"weight":-0.6605029043882662,"gater":null},{"from":402,"to":785,"weight":1.5653758547913346,"gater":null},{"from":402,"to":786,"weight":3.975114725749292,"gater":null},{"from":402,"to":787,"weight":0.3259854255225888,"gater":null},{"from":402,"to":788,"weight":0.8299708060728158,"gater":null},{"from":402,"to":789,"weight":-0.13323797397833437,"gater":null},{"from":402,"to":790,"weight":0.5860949613415041,"gater":null},{"from":403,"to":784,"weight":0.5737536989686967,"gater":null},{"from":403,"to":785,"weight":-0.41640126254407905,"gater":null},{"from":403,"to":786,"weight":0.26578651724015245,"gater":null},{"from":403,"to":787,"weight":0.7660517849336961,"gater":null},{"from":403,"to":788,"weight":2.1500031785897042,"gater":null},{"from":403,"to":789,"weight":1.698949119178056,"gater":null},{"from":403,"to":790,"weight":2.8125797397574748,"gater":null},{"from":404,"to":784,"weight":-0.35822667033897226,"gater":null},{"from":404,"to":785,"weight":-0.6967101190620846,"gater":null},{"from":404,"to":786,"weight":1.9543308129839425,"gater":null},{"from":404,"to":787,"weight":0.9960525882174396,"gater":null},{"from":404,"to":788,"weight":1.3489296736333873,"gater":null},{"from":404,"to":789,"weight":0.24534984848012184,"gater":null},{"from":404,"to":790,"weight":4.70393689137114,"gater":null},{"from":405,"to":784,"weight":-1.8471640304454233,"gater":null},{"from":405,"to":785,"weight":-0.29188337514254553,"gater":null},{"from":405,"to":786,"weight":-0.36236746141165055,"gater":null},{"from":405,"to":787,"weight":-0.6976863007072505,"gater":null},{"from":405,"to":788,"weight":1.097612113822882,"gater":null},{"from":405,"to":789,"weight":0.7436103392174683,"gater":null},{"from":405,"to":790,"weight":1.9577074906755818,"gater":null},{"from":406,"to":784,"weight":-0.5201530884048867,"gater":null},{"from":406,"to":785,"weight":-0.9383947849245785,"gater":null},{"from":406,"to":786,"weight":-1.8477050581079746,"gater":null},{"from":406,"to":787,"weight":-1.5795788449985062,"gater":null},{"from":406,"to":788,"weight":-5.3924272379624885,"gater":null},{"from":406,"to":789,"weight":-0.25184524574027245,"gater":null},{"from":406,"to":790,"weight":1.4352589850526352,"gater":null},{"from":407,"to":784,"weight":0.9367188281027252,"gater":null},{"from":407,"to":785,"weight":-0.2055570814794483,"gater":null},{"from":407,"to":786,"weight":0.8207033410222553,"gater":null},{"from":407,"to":787,"weight":-0.7277749866839105,"gater":null},{"from":407,"to":788,"weight":-3.887930990842862,"gater":null},{"from":407,"to":789,"weight":-0.7911485704903642,"gater":null},{"from":407,"to":790,"weight":0.6406819228895115,"gater":null},{"from":408,"to":784,"weight":2.0242620211672215,"gater":null},{"from":408,"to":785,"weight":-1.5471164709646872,"gater":null},{"from":408,"to":786,"weight":-0.7127995358295789,"gater":null},{"from":408,"to":787,"weight":-0.25783749511049914,"gater":null},{"from":408,"to":788,"weight":-1.5975574556233803,"gater":null},{"from":408,"to":789,"weight":0.7063594824043972,"gater":null},{"from":408,"to":790,"weight":-0.14233548310598965,"gater":null},{"from":409,"to":784,"weight":2.1481518954147996,"gater":null},{"from":409,"to":785,"weight":0.3584483602972537,"gater":null},{"from":409,"to":786,"weight":1.3996647054067488,"gater":null},{"from":409,"to":787,"weight":-1.3223320675729466,"gater":null},{"from":409,"to":788,"weight":-0.9802198494741275,"gater":null},{"from":409,"to":789,"weight":-0.740085433807724,"gater":null},{"from":409,"to":790,"weight":0.9739586206293933,"gater":null},{"from":410,"to":784,"weight":2.9157227620118724,"gater":null},{"from":410,"to":785,"weight":1.301710924916056,"gater":null},{"from":410,"to":786,"weight":-2.6266801366665735,"gater":null},{"from":410,"to":787,"weight":-0.0023833020118891306,"gater":null},{"from":410,"to":788,"weight":-0.25845800229362936,"gater":null},{"from":410,"to":789,"weight":0.7636256941181557,"gater":null},{"from":410,"to":790,"weight":-0.08295655321422081,"gater":null},{"from":411,"to":784,"weight":2.494610193100179,"gater":null},{"from":411,"to":785,"weight":0.9270591865174727,"gater":null},{"from":411,"to":786,"weight":1.7539115582034688,"gater":null},{"from":411,"to":787,"weight":1.4418718351122743,"gater":null},{"from":411,"to":788,"weight":0.579506360666765,"gater":null},{"from":411,"to":789,"weight":-0.12581220016512434,"gater":null},{"from":411,"to":790,"weight":-2.3460257881990687,"gater":null},{"from":412,"to":784,"weight":1.84344633854275,"gater":null},{"from":412,"to":785,"weight":0.6318038351628462,"gater":null},{"from":412,"to":786,"weight":1.760596910747849,"gater":null},{"from":412,"to":787,"weight":0.39612180393270946,"gater":null},{"from":412,"to":788,"weight":-0.5899382385680842,"gater":null},{"from":412,"to":789,"weight":-1.9495263812911023,"gater":null},{"from":412,"to":790,"weight":-0.7793397808765761,"gater":null},{"from":413,"to":784,"weight":1.5870676977751812,"gater":null},{"from":413,"to":785,"weight":0.6702765979549109,"gater":null},{"from":413,"to":786,"weight":0.9901303416510259,"gater":null},{"from":413,"to":787,"weight":0.5820760760337891,"gater":null},{"from":413,"to":788,"weight":0.3494527986195202,"gater":null},{"from":413,"to":789,"weight":1.6492311863057743,"gater":null},{"from":413,"to":790,"weight":-0.3755439730552173,"gater":null},{"from":414,"to":784,"weight":-0.3509151892776275,"gater":null},{"from":414,"to":785,"weight":0.4439370798760658,"gater":null},{"from":414,"to":786,"weight":2.710221821296306,"gater":null},{"from":414,"to":787,"weight":0.46226968704762655,"gater":null},{"from":414,"to":788,"weight":0.6902541295757522,"gater":null},{"from":414,"to":789,"weight":-0.5560570844870478,"gater":null},{"from":414,"to":790,"weight":0.2254520278247638,"gater":null},{"from":415,"to":784,"weight":-1.095016573651688,"gater":null},{"from":415,"to":785,"weight":-0.11816529940859058,"gater":null},{"from":415,"to":786,"weight":1.621387617594222,"gater":null},{"from":415,"to":787,"weight":0.12012788420865458,"gater":null},{"from":415,"to":788,"weight":1.7304908347211831,"gater":null},{"from":415,"to":789,"weight":0.7306961275809105,"gater":null},{"from":415,"to":790,"weight":-0.4337163545778305,"gater":null},{"from":416,"to":784,"weight":-2.464157262458102,"gater":null},{"from":416,"to":785,"weight":-0.18157007113098558,"gater":null},{"from":416,"to":786,"weight":3.0120636668215828,"gater":null},{"from":416,"to":787,"weight":0.22441644114705037,"gater":null},{"from":416,"to":788,"weight":0.7850355038719576,"gater":null},{"from":416,"to":789,"weight":-0.5484616197251514,"gater":null},{"from":416,"to":790,"weight":-0.09800517384399304,"gater":null},{"from":417,"to":784,"weight":-0.148488271159533,"gater":null},{"from":417,"to":785,"weight":0.09216060808200623,"gater":null},{"from":417,"to":786,"weight":0.19948468717380427,"gater":null},{"from":417,"to":787,"weight":-0.17491588116890533,"gater":null},{"from":417,"to":788,"weight":-0.0053366214215811985,"gater":null},{"from":417,"to":789,"weight":0.033897202363827546,"gater":null},{"from":417,"to":790,"weight":-0.9227872480155735,"gater":null},{"from":418,"to":784,"weight":0.007814706469188668,"gater":null},{"from":418,"to":785,"weight":-0.1457995037489383,"gater":null},{"from":418,"to":786,"weight":0.00913879174366294,"gater":null},{"from":418,"to":787,"weight":-0.046104918382009266,"gater":null},{"from":418,"to":788,"weight":0.031476597955431965,"gater":null},{"from":418,"to":789,"weight":-0.04592318308036626,"gater":null},{"from":418,"to":790,"weight":-0.12005925156780851,"gater":null},{"from":419,"to":784,"weight":-0.07148922635196486,"gater":null},{"from":419,"to":785,"weight":0.06980838056795108,"gater":null},{"from":419,"to":786,"weight":-0.022782548224341823,"gater":null},{"from":419,"to":787,"weight":0.030518960319205007,"gater":null},{"from":419,"to":788,"weight":0.020241206217103305,"gater":null},{"from":419,"to":789,"weight":-0.030388769128666976,"gater":null},{"from":419,"to":790,"weight":-0.022148576311923796,"gater":null},{"from":420,"to":784,"weight":0.07531971130147838,"gater":null},{"from":420,"to":785,"weight":0.07216196912131753,"gater":null},{"from":420,"to":786,"weight":-0.09103049836112352,"gater":null},{"from":420,"to":787,"weight":0.024469230551881965,"gater":null},{"from":420,"to":788,"weight":-0.00948719093903208,"gater":null},{"from":420,"to":789,"weight":-0.05500098801012654,"gater":null},{"from":420,"to":790,"weight":0.03467377198128768,"gater":null},{"from":421,"to":784,"weight":-0.026510943991005356,"gater":null},{"from":421,"to":785,"weight":-0.036822596478823515,"gater":null},{"from":421,"to":786,"weight":0.05511932570398557,"gater":null},{"from":421,"to":787,"weight":-0.028539037965558046,"gater":null},{"from":421,"to":788,"weight":0.03283908592565537,"gater":null},{"from":421,"to":789,"weight":-0.04742673447566385,"gater":null},{"from":421,"to":790,"weight":0.029529516744672663,"gater":null},{"from":422,"to":784,"weight":0.03084607752912754,"gater":null},{"from":422,"to":785,"weight":-0.017607974264925417,"gater":null},{"from":422,"to":786,"weight":0.2898955189681987,"gater":null},{"from":422,"to":787,"weight":-0.02437068569774579,"gater":null},{"from":422,"to":788,"weight":-0.057305546084877736,"gater":null},{"from":422,"to":789,"weight":0.050561318044038545,"gater":null},{"from":422,"to":790,"weight":0.06393105900039482,"gater":null},{"from":423,"to":784,"weight":-0.20765822091966588,"gater":null},{"from":423,"to":785,"weight":0.06562576671898679,"gater":null},{"from":423,"to":786,"weight":-0.4327577105648041,"gater":null},{"from":423,"to":787,"weight":-0.0392412561049564,"gater":null},{"from":423,"to":788,"weight":-0.4594341524753358,"gater":null},{"from":423,"to":789,"weight":-0.5606051267575098,"gater":null},{"from":423,"to":790,"weight":0.8005731045674882,"gater":null},{"from":424,"to":784,"weight":-0.7795119705031434,"gater":null},{"from":424,"to":785,"weight":0.06592755737311186,"gater":null},{"from":424,"to":786,"weight":-1.0665101178642238,"gater":null},{"from":424,"to":787,"weight":-0.3173517261228992,"gater":null},{"from":424,"to":788,"weight":-0.13297912892865396,"gater":null},{"from":424,"to":789,"weight":1.4392475978349517,"gater":null},{"from":424,"to":790,"weight":0.48784488216348865,"gater":null},{"from":425,"to":784,"weight":0.3074145423743737,"gater":null},{"from":425,"to":785,"weight":0.21269344607812946,"gater":null},{"from":425,"to":786,"weight":1.3151839996427888,"gater":null},{"from":425,"to":787,"weight":-0.4076950694371192,"gater":null},{"from":425,"to":788,"weight":2.3804625919602507,"gater":null},{"from":425,"to":789,"weight":1.1987587588410233,"gater":null},{"from":425,"to":790,"weight":1.1404244677919002,"gater":null},{"from":426,"to":784,"weight":1.7575002943046962,"gater":null},{"from":426,"to":785,"weight":0.6041486660622505,"gater":null},{"from":426,"to":786,"weight":0.46607957797975436,"gater":null},{"from":426,"to":787,"weight":-0.507152712538984,"gater":null},{"from":426,"to":788,"weight":3.0442929178830966,"gater":null},{"from":426,"to":789,"weight":-1.077731201374243,"gater":null},{"from":426,"to":790,"weight":-0.42165058728981664,"gater":null},{"from":427,"to":784,"weight":0.7844750781946928,"gater":null},{"from":427,"to":785,"weight":0.8557126877583019,"gater":null},{"from":427,"to":786,"weight":2.5959313803700113,"gater":null},{"from":427,"to":787,"weight":-0.8703662181255523,"gater":null},{"from":427,"to":788,"weight":2.1177340306360706,"gater":null},{"from":427,"to":789,"weight":-2.4440113128142564,"gater":null},{"from":427,"to":790,"weight":-0.2779937372143151,"gater":null},{"from":428,"to":784,"weight":-0.9616627970067505,"gater":null},{"from":428,"to":785,"weight":0.5370824867830375,"gater":null},{"from":428,"to":786,"weight":3.733123634389374,"gater":null},{"from":428,"to":787,"weight":-2.1892300630737753,"gater":null},{"from":428,"to":788,"weight":-0.2912667112538964,"gater":null},{"from":428,"to":789,"weight":-2.101802665719819,"gater":null},{"from":428,"to":790,"weight":0.08983530001096054,"gater":null},{"from":429,"to":784,"weight":-1.7751233951207595,"gater":null},{"from":429,"to":785,"weight":-0.5437389194609191,"gater":null},{"from":429,"to":786,"weight":1.2282127648520238,"gater":null},{"from":429,"to":787,"weight":-1.394961160496844,"gater":null},{"from":429,"to":788,"weight":1.9705285313835355,"gater":null},{"from":429,"to":789,"weight":0.2931846343875452,"gater":null},{"from":429,"to":790,"weight":-1.08001420983266,"gater":null},{"from":430,"to":784,"weight":0.9692074373589343,"gater":null},{"from":430,"to":785,"weight":0.909563726552742,"gater":null},{"from":430,"to":786,"weight":1.4513486017529245,"gater":null},{"from":430,"to":787,"weight":0.7930795611463634,"gater":null},{"from":430,"to":788,"weight":0.9104575486265134,"gater":null},{"from":430,"to":789,"weight":-0.7381237003427159,"gater":null},{"from":430,"to":790,"weight":1.4068224142562193,"gater":null},{"from":431,"to":784,"weight":1.2480109935198804,"gater":null},{"from":431,"to":785,"weight":-0.21527604692065885,"gater":null},{"from":431,"to":786,"weight":-0.21721161907735084,"gater":null},{"from":431,"to":787,"weight":0.24459969350708932,"gater":null},{"from":431,"to":788,"weight":-0.7077433672091039,"gater":null},{"from":431,"to":789,"weight":-1.838955008580569,"gater":null},{"from":431,"to":790,"weight":3.1835191694718064,"gater":null},{"from":432,"to":784,"weight":-0.7347819674856005,"gater":null},{"from":432,"to":785,"weight":0.970154407535836,"gater":null},{"from":432,"to":786,"weight":0.49916894654717286,"gater":null},{"from":432,"to":787,"weight":0.28834087308914036,"gater":null},{"from":432,"to":788,"weight":1.2411793136362248,"gater":null},{"from":432,"to":789,"weight":0.5415854729099367,"gater":null},{"from":432,"to":790,"weight":2.2420193048355825,"gater":null},{"from":433,"to":784,"weight":-1.1858736336385653,"gater":null},{"from":433,"to":785,"weight":-2.685104455240639,"gater":null},{"from":433,"to":786,"weight":-1.3339063016791584,"gater":null},{"from":433,"to":787,"weight":-0.2792264643205547,"gater":null},{"from":433,"to":788,"weight":-3.385703030204575,"gater":null},{"from":433,"to":789,"weight":0.995526038795396,"gater":null},{"from":433,"to":790,"weight":1.391472846009412,"gater":null},{"from":434,"to":784,"weight":-0.5254692334340301,"gater":null},{"from":434,"to":785,"weight":-2.1035893613396683,"gater":null},{"from":434,"to":786,"weight":0.9332668054082627,"gater":null},{"from":434,"to":787,"weight":-2.6497705034354277,"gater":null},{"from":434,"to":788,"weight":-7.066159789161869,"gater":null},{"from":434,"to":789,"weight":0.294344085197013,"gater":null},{"from":434,"to":790,"weight":0.13849229754502906,"gater":null},{"from":435,"to":784,"weight":1.0944173429625033,"gater":null},{"from":435,"to":785,"weight":-0.8615069694893254,"gater":null},{"from":435,"to":786,"weight":1.3676904013323603,"gater":null},{"from":435,"to":787,"weight":-1.3070596324444783,"gater":null},{"from":435,"to":788,"weight":-4.23309736272416,"gater":null},{"from":435,"to":789,"weight":-0.22814308415955833,"gater":null},{"from":435,"to":790,"weight":1.3516559533959356,"gater":null},{"from":436,"to":784,"weight":1.460902937529383,"gater":null},{"from":436,"to":785,"weight":-1.726982085721639,"gater":null},{"from":436,"to":786,"weight":-2.146235026618869,"gater":null},{"from":436,"to":787,"weight":-1.7227797498142188,"gater":null},{"from":436,"to":788,"weight":-1.8737852091648441,"gater":null},{"from":436,"to":789,"weight":-0.4161609541294376,"gater":null},{"from":436,"to":790,"weight":1.3189197876417174,"gater":null},{"from":437,"to":784,"weight":0.9981468501464725,"gater":null},{"from":437,"to":785,"weight":1.0597479813861812,"gater":null},{"from":437,"to":786,"weight":0.7450147187909145,"gater":null},{"from":437,"to":787,"weight":-0.5239033828291166,"gater":null},{"from":437,"to":788,"weight":-2.7175233260048985,"gater":null},{"from":437,"to":789,"weight":-0.8625355293793684,"gater":null},{"from":437,"to":790,"weight":-1.5577697330332143,"gater":null},{"from":438,"to":784,"weight":0.16852259668130282,"gater":null},{"from":438,"to":785,"weight":2.2755816073083874,"gater":null},{"from":438,"to":786,"weight":0.5551537943701461,"gater":null},{"from":438,"to":787,"weight":1.7149133820648899,"gater":null},{"from":438,"to":788,"weight":0.21882782555490007,"gater":null},{"from":438,"to":789,"weight":1.1363075829680216,"gater":null},{"from":438,"to":790,"weight":-0.7700928834442934,"gater":null},{"from":439,"to":784,"weight":1.0376785866386053,"gater":null},{"from":439,"to":785,"weight":1.4136939314472192,"gater":null},{"from":439,"to":786,"weight":0.9008218682104491,"gater":null},{"from":439,"to":787,"weight":1.3742001267118937,"gater":null},{"from":439,"to":788,"weight":-1.3824502276386763,"gater":null},{"from":439,"to":789,"weight":0.8929161660407118,"gater":null},{"from":439,"to":790,"weight":-1.645237784794275,"gater":null},{"from":440,"to":784,"weight":1.7289367843193268,"gater":null},{"from":440,"to":785,"weight":0.97347722243614,"gater":null},{"from":440,"to":786,"weight":2.4626256371442476,"gater":null},{"from":440,"to":787,"weight":0.6840684900815581,"gater":null},{"from":440,"to":788,"weight":0.23487921963386396,"gater":null},{"from":440,"to":789,"weight":-0.7803078556151032,"gater":null},{"from":440,"to":790,"weight":0.1491577770707207,"gater":null},{"from":441,"to":784,"weight":1.5589853813025372,"gater":null},{"from":441,"to":785,"weight":0.32744339664574695,"gater":null},{"from":441,"to":786,"weight":2.0357814416590334,"gater":null},{"from":441,"to":787,"weight":0.1321636282934149,"gater":null},{"from":441,"to":788,"weight":-0.01891684293778671,"gater":null},{"from":441,"to":789,"weight":-1.0229212236149103,"gater":null},{"from":441,"to":790,"weight":0.4250309400507776,"gater":null},{"from":442,"to":784,"weight":0.10467764558516086,"gater":null},{"from":442,"to":785,"weight":0.02485415301877863,"gater":null},{"from":442,"to":786,"weight":-0.8065040288857404,"gater":null},{"from":442,"to":787,"weight":0.1759685049567131,"gater":null},{"from":442,"to":788,"weight":1.3260884618943818,"gater":null},{"from":442,"to":789,"weight":0.34290285729515213,"gater":null},{"from":442,"to":790,"weight":0.9648415386640682,"gater":null},{"from":443,"to":784,"weight":-0.6975893638316674,"gater":null},{"from":443,"to":785,"weight":-0.7501111673100956,"gater":null},{"from":443,"to":786,"weight":2.200674241241294,"gater":null},{"from":443,"to":787,"weight":0.2775145031145367,"gater":null},{"from":443,"to":788,"weight":1.0936457757855231,"gater":null},{"from":443,"to":789,"weight":-0.1472493185215182,"gater":null},{"from":443,"to":790,"weight":-0.6806109731962818,"gater":null},{"from":444,"to":784,"weight":-2.165523101810969,"gater":null},{"from":444,"to":785,"weight":-0.9165519585326106,"gater":null},{"from":444,"to":786,"weight":1.2442532498035401,"gater":null},{"from":444,"to":787,"weight":0.19974540425087867,"gater":null},{"from":444,"to":788,"weight":-1.0732878896415252,"gater":null},{"from":444,"to":789,"weight":-0.3348161587435802,"gater":null},{"from":444,"to":790,"weight":1.0274661560531995,"gater":null},{"from":445,"to":784,"weight":-0.5356575218330314,"gater":null},{"from":445,"to":785,"weight":-0.27844688317044786,"gater":null},{"from":445,"to":786,"weight":0.2621787224240641,"gater":null},{"from":445,"to":787,"weight":0.21513483393302255,"gater":null},{"from":445,"to":788,"weight":-0.18677912327051824,"gater":null},{"from":445,"to":789,"weight":-0.3889506328940863,"gater":null},{"from":445,"to":790,"weight":-0.15870178781506275,"gater":null},{"from":446,"to":784,"weight":-0.07421584846190664,"gater":null},{"from":446,"to":785,"weight":-0.1051885408196617,"gater":null},{"from":446,"to":786,"weight":0.15206931546467464,"gater":null},{"from":446,"to":787,"weight":0.12524274836925722,"gater":null},{"from":446,"to":788,"weight":-0.07282405012917058,"gater":null},{"from":446,"to":789,"weight":-0.3303783450190405,"gater":null},{"from":446,"to":790,"weight":0.08277995469966475,"gater":null},{"from":447,"to":784,"weight":-0.05648728418488347,"gater":null},{"from":447,"to":785,"weight":-0.027145825127904793,"gater":null},{"from":447,"to":786,"weight":0.06756834117741727,"gater":null},{"from":447,"to":787,"weight":-0.09495121397692116,"gater":null},{"from":447,"to":788,"weight":-0.09149920374680132,"gater":null},{"from":447,"to":789,"weight":-0.06772817941944805,"gater":null},{"from":447,"to":790,"weight":0.07632751990772046,"gater":null},{"from":448,"to":784,"weight":0.08905243254819034,"gater":null},{"from":448,"to":785,"weight":0.03138765271084579,"gater":null},{"from":448,"to":786,"weight":-0.09560584033320368,"gater":null},{"from":448,"to":787,"weight":0.02509552709184143,"gater":null},{"from":448,"to":788,"weight":-0.03297613829099491,"gater":null},{"from":448,"to":789,"weight":-0.04853306349881273,"gater":null},{"from":448,"to":790,"weight":-0.008149445936512165,"gater":null},{"from":449,"to":784,"weight":-0.014005687354633214,"gater":null},{"from":449,"to":785,"weight":0.060969327583957345,"gater":null},{"from":449,"to":786,"weight":0.05430899007987838,"gater":null},{"from":449,"to":787,"weight":0.025467023056298332,"gater":null},{"from":449,"to":788,"weight":0.0005580221252492468,"gater":null},{"from":449,"to":789,"weight":0.08056116057313731,"gater":null},{"from":449,"to":790,"weight":0.008696250088499946,"gater":null},{"from":450,"to":784,"weight":-0.036129199762973255,"gater":null},{"from":450,"to":785,"weight":0.03562391793895898,"gater":null},{"from":450,"to":786,"weight":-0.024949045999011606,"gater":null},{"from":450,"to":787,"weight":0.10248515066537073,"gater":null},{"from":450,"to":788,"weight":0.0794523835299528,"gater":null},{"from":450,"to":789,"weight":0.2657475053031504,"gater":null},{"from":450,"to":790,"weight":-0.13406185808123333,"gater":null},{"from":451,"to":784,"weight":-0.6072097075801793,"gater":null},{"from":451,"to":785,"weight":0.039739470026836234,"gater":null},{"from":451,"to":786,"weight":0.0031806979173832207,"gater":null},{"from":451,"to":787,"weight":-0.13675329547986798,"gater":null},{"from":451,"to":788,"weight":-0.3971693738241186,"gater":null},{"from":451,"to":789,"weight":0.0030088507932376305,"gater":null},{"from":451,"to":790,"weight":0.43167946156990755,"gater":null},{"from":452,"to":784,"weight":0.4242469567951293,"gater":null},{"from":452,"to":785,"weight":0.08482845683995348,"gater":null},{"from":452,"to":786,"weight":-1.6408833442985977,"gater":null},{"from":452,"to":787,"weight":-0.01371609179892412,"gater":null},{"from":452,"to":788,"weight":-0.3073430919891819,"gater":null},{"from":452,"to":789,"weight":0.5878177740427598,"gater":null},{"from":452,"to":790,"weight":0.6737581468658775,"gater":null},{"from":453,"to":784,"weight":0.18732803161483016,"gater":null},{"from":453,"to":785,"weight":0.32376836169196604,"gater":null},{"from":453,"to":786,"weight":-0.03941074386689214,"gater":null},{"from":453,"to":787,"weight":0.27690463125297576,"gater":null},{"from":453,"to":788,"weight":1.7244744964158116,"gater":null},{"from":453,"to":789,"weight":-0.1252358111181931,"gater":null},{"from":453,"to":790,"weight":1.1890201323273784,"gater":null},{"from":454,"to":784,"weight":0.19822301922856936,"gater":null},{"from":454,"to":785,"weight":0.7293110044611678,"gater":null},{"from":454,"to":786,"weight":0.5821432251773939,"gater":null},{"from":454,"to":787,"weight":0.6329429635500742,"gater":null},{"from":454,"to":788,"weight":2.016318894062882,"gater":null},{"from":454,"to":789,"weight":-1.1225216894743457,"gater":null},{"from":454,"to":790,"weight":1.4401552578280048,"gater":null},{"from":455,"to":784,"weight":2.1019775520774644,"gater":null},{"from":455,"to":785,"weight":0.2768936057635562,"gater":null},{"from":455,"to":786,"weight":0.31933435116834646,"gater":null},{"from":455,"to":787,"weight":0.7486020532203777,"gater":null},{"from":455,"to":788,"weight":2.829142412314116,"gater":null},{"from":455,"to":789,"weight":-0.3107524871302431,"gater":null},{"from":455,"to":790,"weight":0.8227412012403487,"gater":null},{"from":456,"to":784,"weight":1.8106665702624984,"gater":null},{"from":456,"to":785,"weight":-0.28872237688478103,"gater":null},{"from":456,"to":786,"weight":1.3805386204424368,"gater":null},{"from":456,"to":787,"weight":0.9084415929708433,"gater":null},{"from":456,"to":788,"weight":0.3707635475612936,"gater":null},{"from":456,"to":789,"weight":-0.3509067794137713,"gater":null},{"from":456,"to":790,"weight":-0.10790190109619348,"gater":null},{"from":457,"to":784,"weight":0.677378877574858,"gater":null},{"from":457,"to":785,"weight":0.10444332764910581,"gater":null},{"from":457,"to":786,"weight":0.029626225128236316,"gater":null},{"from":457,"to":787,"weight":-0.370071485836638,"gater":null},{"from":457,"to":788,"weight":0.445656553710783,"gater":null},{"from":457,"to":789,"weight":-1.852724143466047,"gater":null},{"from":457,"to":790,"weight":2.0846604409613314,"gater":null},{"from":458,"to":784,"weight":0.9748646464463435,"gater":null},{"from":458,"to":785,"weight":-0.06844428057432296,"gater":null},{"from":458,"to":786,"weight":-0.15773650695674726,"gater":null},{"from":458,"to":787,"weight":-0.6490749507304351,"gater":null},{"from":458,"to":788,"weight":0.834401034793409,"gater":null},{"from":458,"to":789,"weight":-2.308303565897666,"gater":null},{"from":458,"to":790,"weight":2.445360956691648,"gater":null},{"from":459,"to":784,"weight":-1.0497721637226343,"gater":null},{"from":459,"to":785,"weight":-1.7233632162330679,"gater":null},{"from":459,"to":786,"weight":0.8339727729554268,"gater":null},{"from":459,"to":787,"weight":-0.9143473990812546,"gater":null},{"from":459,"to":788,"weight":0.5426237685427365,"gater":null},{"from":459,"to":789,"weight":-3.386320659468838,"gater":null},{"from":459,"to":790,"weight":3.164238884656552,"gater":null},{"from":460,"to":784,"weight":-1.2235697741681373,"gater":null},{"from":460,"to":785,"weight":0.709852193950275,"gater":null},{"from":460,"to":786,"weight":-2.003598103958596,"gater":null},{"from":460,"to":787,"weight":0.9707552620798728,"gater":null},{"from":460,"to":788,"weight":-2.012655344086179,"gater":null},{"from":460,"to":789,"weight":-1.4394485264258163,"gater":null},{"from":460,"to":790,"weight":3.06303593095797,"gater":null},{"from":461,"to":784,"weight":-1.6984280771259304,"gater":null},{"from":461,"to":785,"weight":-0.7717857032249638,"gater":null},{"from":461,"to":786,"weight":-0.7282677148365321,"gater":null},{"from":461,"to":787,"weight":-0.9421665799965883,"gater":null},{"from":461,"to":788,"weight":-4.642632015640399,"gater":null},{"from":461,"to":789,"weight":0.6432159511929013,"gater":null},{"from":461,"to":790,"weight":0.541197775046346,"gater":null},{"from":462,"to":784,"weight":-2.3753030810473263,"gater":null},{"from":462,"to":785,"weight":-0.7991558815248229,"gater":null},{"from":462,"to":786,"weight":-2.0897368411035226,"gater":null},{"from":462,"to":787,"weight":-2.99350049569211,"gater":null},{"from":462,"to":788,"weight":-5.919174157465486,"gater":null},{"from":462,"to":789,"weight":-1.9481658972411824,"gater":null},{"from":462,"to":790,"weight":1.6842958529323475,"gater":null},{"from":463,"to":784,"weight":2.128857614393695,"gater":null},{"from":463,"to":785,"weight":0.28193170681165086,"gater":null},{"from":463,"to":786,"weight":0.08791189625235142,"gater":null},{"from":463,"to":787,"weight":-1.3572555173586043,"gater":null},{"from":463,"to":788,"weight":-1.8080492954772533,"gater":null},{"from":463,"to":789,"weight":-0.6501984013886621,"gater":null},{"from":463,"to":790,"weight":-0.16357617387780032,"gater":null},{"from":464,"to":784,"weight":0.7725673064785229,"gater":null},{"from":464,"to":785,"weight":0.20738279825717446,"gater":null},{"from":464,"to":786,"weight":-1.0456276513038756,"gater":null},{"from":464,"to":787,"weight":-1.010772625389333,"gater":null},{"from":464,"to":788,"weight":-0.5456015143203816,"gater":null},{"from":464,"to":789,"weight":0.6535250551901185,"gater":null},{"from":464,"to":790,"weight":-1.076276437608567,"gater":null},{"from":465,"to":784,"weight":0.6801693854921559,"gater":null},{"from":465,"to":785,"weight":1.7632168701472162,"gater":null},{"from":465,"to":786,"weight":-0.8215282850052483,"gater":null},{"from":465,"to":787,"weight":-0.6108699040796853,"gater":null},{"from":465,"to":788,"weight":-1.4596361096589268,"gater":null},{"from":465,"to":789,"weight":-0.39438904516133916,"gater":null},{"from":465,"to":790,"weight":-2.3741513042939717,"gater":null},{"from":466,"to":784,"weight":-0.8651864337541514,"gater":null},{"from":466,"to":785,"weight":1.7075251292355582,"gater":null},{"from":466,"to":786,"weight":-0.2653910258017539,"gater":null},{"from":466,"to":787,"weight":0.9527623681405117,"gater":null},{"from":466,"to":788,"weight":1.207151002645023,"gater":null},{"from":466,"to":789,"weight":-1.9247221928184828,"gater":null},{"from":466,"to":790,"weight":-0.6416873615735467,"gater":null},{"from":467,"to":784,"weight":-1.0746091626780083,"gater":null},{"from":467,"to":785,"weight":1.2147876381634795,"gater":null},{"from":467,"to":786,"weight":0.6921168042079956,"gater":null},{"from":467,"to":787,"weight":1.3748345967348392,"gater":null},{"from":467,"to":788,"weight":1.0743595993936923,"gater":null},{"from":467,"to":789,"weight":-0.380116054648312,"gater":null},{"from":467,"to":790,"weight":-0.8599497892791614,"gater":null},{"from":468,"to":784,"weight":-1.4639268841299802,"gater":null},{"from":468,"to":785,"weight":0.766851288444677,"gater":null},{"from":468,"to":786,"weight":3.3086272299136397,"gater":null},{"from":468,"to":787,"weight":-0.23494239421687937,"gater":null},{"from":468,"to":788,"weight":-0.5944609099396423,"gater":null},{"from":468,"to":789,"weight":1.3531947646573643,"gater":null},{"from":468,"to":790,"weight":-1.579634814587053,"gater":null},{"from":469,"to":784,"weight":0.27736455646609787,"gater":null},{"from":469,"to":785,"weight":0.5261666917130117,"gater":null},{"from":469,"to":786,"weight":-1.0262346652084298,"gater":null},{"from":469,"to":787,"weight":0.13205127122946034,"gater":null},{"from":469,"to":788,"weight":-0.2446741948933354,"gater":null},{"from":469,"to":789,"weight":-0.8919539911337464,"gater":null},{"from":469,"to":790,"weight":0.31819864311302487,"gater":null},{"from":470,"to":784,"weight":0.08225342854773343,"gater":null},{"from":470,"to":785,"weight":0.2874904346896859,"gater":null},{"from":470,"to":786,"weight":0.839784452465991,"gater":null},{"from":470,"to":787,"weight":0.4277799386740331,"gater":null},{"from":470,"to":788,"weight":-0.37043404540941677,"gater":null},{"from":470,"to":789,"weight":-1.2273050388311857,"gater":null},{"from":470,"to":790,"weight":-0.16808932778457597,"gater":null},{"from":471,"to":784,"weight":-2.411724484392601,"gater":null},{"from":471,"to":785,"weight":-0.5029898651792903,"gater":null},{"from":471,"to":786,"weight":1.3015758412393335,"gater":null},{"from":471,"to":787,"weight":0.01625683266020808,"gater":null},{"from":471,"to":788,"weight":0.7313560774811195,"gater":null},{"from":471,"to":789,"weight":-0.5649186868788151,"gater":null},{"from":471,"to":790,"weight":-1.6524414649355472,"gater":null},{"from":472,"to":784,"weight":-2.917846476920368,"gater":null},{"from":472,"to":785,"weight":-0.88132709975716,"gater":null},{"from":472,"to":786,"weight":0.03518411580884674,"gater":null},{"from":472,"to":787,"weight":0.6437646611689135,"gater":null},{"from":472,"to":788,"weight":-1.5002183377689409,"gater":null},{"from":472,"to":789,"weight":-1.0244904538382165,"gater":null},{"from":472,"to":790,"weight":0.31477954886324744,"gater":null},{"from":473,"to":784,"weight":-1.8143313457506995,"gater":null},{"from":473,"to":785,"weight":-0.5787227490859359,"gater":null},{"from":473,"to":786,"weight":0.09332827426814466,"gater":null},{"from":473,"to":787,"weight":0.43737229169893077,"gater":null},{"from":473,"to":788,"weight":-0.42626987222987445,"gater":null},{"from":473,"to":789,"weight":-1.136487434984833,"gater":null},{"from":473,"to":790,"weight":0.03530749336745582,"gater":null},{"from":474,"to":784,"weight":-0.19877800038970797,"gater":null},{"from":474,"to":785,"weight":-0.13509820071589057,"gater":null},{"from":474,"to":786,"weight":0.7403387401037616,"gater":null},{"from":474,"to":787,"weight":0.034152332606667134,"gater":null},{"from":474,"to":788,"weight":0.0514316947536858,"gater":null},{"from":474,"to":789,"weight":-0.31154226159407056,"gater":null},{"from":474,"to":790,"weight":-0.05421038602055767,"gater":null},{"from":475,"to":784,"weight":-0.00710197814182455,"gater":null},{"from":475,"to":785,"weight":0.09676348320830686,"gater":null},{"from":475,"to":786,"weight":0.08920224637575142,"gater":null},{"from":475,"to":787,"weight":-0.0752836266948786,"gater":null},{"from":475,"to":788,"weight":0.07922754173005875,"gater":null},{"from":475,"to":789,"weight":-0.04198532399199436,"gater":null},{"from":475,"to":790,"weight":-0.054436918397032914,"gater":null},{"from":476,"to":784,"weight":0.02282472106603875,"gater":null},{"from":476,"to":785,"weight":-0.06563715403682453,"gater":null},{"from":476,"to":786,"weight":0.044116135790876226,"gater":null},{"from":476,"to":787,"weight":-0.035930454285221375,"gater":null},{"from":476,"to":788,"weight":0.043751099405263005,"gater":null},{"from":476,"to":789,"weight":0.09059489815703117,"gater":null},{"from":476,"to":790,"weight":0.022963467486749017,"gater":null},{"from":477,"to":784,"weight":0.05762802693275751,"gater":null},{"from":477,"to":785,"weight":0.040641532162460775,"gater":null},{"from":477,"to":786,"weight":0.013105948946361592,"gater":null},{"from":477,"to":787,"weight":-0.09889577322525418,"gater":null},{"from":477,"to":788,"weight":-0.05397827119795262,"gater":null},{"from":477,"to":789,"weight":-0.055963349814444285,"gater":null},{"from":477,"to":790,"weight":-0.05194811239799582,"gater":null},{"from":478,"to":784,"weight":0.05550734748893562,"gater":null},{"from":478,"to":785,"weight":-0.08785767037434228,"gater":null},{"from":478,"to":786,"weight":-0.07391490420683976,"gater":null},{"from":478,"to":787,"weight":-0.07610239922924013,"gater":null},{"from":478,"to":788,"weight":0.041083195557180596,"gater":null},{"from":478,"to":789,"weight":0.31611004156299183,"gater":null},{"from":478,"to":790,"weight":-0.08619355147027458,"gater":null},{"from":479,"to":784,"weight":-0.8852634453879464,"gater":null},{"from":479,"to":785,"weight":0.2534785503269713,"gater":null},{"from":479,"to":786,"weight":0.42797354397526916,"gater":null},{"from":479,"to":787,"weight":0.0715645174013745,"gater":null},{"from":479,"to":788,"weight":-0.21341800709638856,"gater":null},{"from":479,"to":789,"weight":0.5364709234917467,"gater":null},{"from":479,"to":790,"weight":0.08993214820349102,"gater":null},{"from":480,"to":784,"weight":0.5720780600626645,"gater":null},{"from":480,"to":785,"weight":0.3205414799579593,"gater":null},{"from":480,"to":786,"weight":-2.4977261561232864,"gater":null},{"from":480,"to":787,"weight":0.3452249577252262,"gater":null},{"from":480,"to":788,"weight":0.1601732079306452,"gater":null},{"from":480,"to":789,"weight":1.7820120276565452,"gater":null},{"from":480,"to":790,"weight":0.3890536569304529,"gater":null},{"from":481,"to":784,"weight":0.13346500917383844,"gater":null},{"from":481,"to":785,"weight":0.2823374991811115,"gater":null},{"from":481,"to":786,"weight":-2.5873733650353845,"gater":null},{"from":481,"to":787,"weight":-0.2194828444520387,"gater":null},{"from":481,"to":788,"weight":0.7100144848791424,"gater":null},{"from":481,"to":789,"weight":-2.0406302354136625,"gater":null},{"from":481,"to":790,"weight":0.9255344099269746,"gater":null},{"from":482,"to":784,"weight":-2.2834055651110097,"gater":null},{"from":482,"to":785,"weight":0.3963633225709422,"gater":null},{"from":482,"to":786,"weight":-0.1727523011873653,"gater":null},{"from":482,"to":787,"weight":1.0821746691624383,"gater":null},{"from":482,"to":788,"weight":2.107787510942757,"gater":null},{"from":482,"to":789,"weight":-2.2081184699939205,"gater":null},{"from":482,"to":790,"weight":2.0382969598155336,"gater":null},{"from":483,"to":784,"weight":2.348000689572381,"gater":null},{"from":483,"to":785,"weight":-0.0789299933177119,"gater":null},{"from":483,"to":786,"weight":2.5647487143846637,"gater":null},{"from":483,"to":787,"weight":1.8314450526969068,"gater":null},{"from":483,"to":788,"weight":0.8641615155769784,"gater":null},{"from":483,"to":789,"weight":-0.8677671949357624,"gater":null},{"from":483,"to":790,"weight":0.28198968848792205,"gater":null},{"from":484,"to":784,"weight":1.6578836939130188,"gater":null},{"from":484,"to":785,"weight":-1.2242593428273802,"gater":null},{"from":484,"to":786,"weight":-1.3279054766520628,"gater":null},{"from":484,"to":787,"weight":1.1713839558391121,"gater":null},{"from":484,"to":788,"weight":0.5346539542967628,"gater":null},{"from":484,"to":789,"weight":0.5467778071031478,"gater":null},{"from":484,"to":790,"weight":-0.17657446612179714,"gater":null},{"from":485,"to":784,"weight":0.9496495444135366,"gater":null},{"from":485,"to":785,"weight":-0.48569381590899924,"gater":null},{"from":485,"to":786,"weight":1.1576213058102887,"gater":null},{"from":485,"to":787,"weight":1.2515616123554563,"gater":null},{"from":485,"to":788,"weight":1.1007903253717461,"gater":null},{"from":485,"to":789,"weight":-3.116084195318525,"gater":null},{"from":485,"to":790,"weight":3.5530800609283655,"gater":null},{"from":486,"to":784,"weight":0.06136879021088207,"gater":null},{"from":486,"to":785,"weight":0.2784082423903954,"gater":null},{"from":486,"to":786,"weight":0.010473177039945575,"gater":null},{"from":486,"to":787,"weight":0.12680706832608568,"gater":null},{"from":486,"to":788,"weight":2.287516193477182,"gater":null},{"from":486,"to":789,"weight":-0.6699925595627871,"gater":null},{"from":486,"to":790,"weight":2.600692228859835,"gater":null},{"from":487,"to":784,"weight":-1.460304262317153,"gater":null},{"from":487,"to":785,"weight":0.5852521191243976,"gater":null},{"from":487,"to":786,"weight":2.097102724444153,"gater":null},{"from":487,"to":787,"weight":-0.7408033935381622,"gater":null},{"from":487,"to":788,"weight":2.3614684646498314,"gater":null},{"from":487,"to":789,"weight":-2.4727006866939187,"gater":null},{"from":487,"to":790,"weight":-0.6545396373897387,"gater":null},{"from":488,"to":784,"weight":-1.420701527251361,"gater":null},{"from":488,"to":785,"weight":-1.2354861773089623,"gater":null},{"from":488,"to":786,"weight":-0.03443648954416229,"gater":null},{"from":488,"to":787,"weight":-0.45163086843793226,"gater":null},{"from":488,"to":788,"weight":-0.7517993079544001,"gater":null},{"from":488,"to":789,"weight":-2.311141659146682,"gater":null},{"from":488,"to":790,"weight":-1.645645343105924,"gater":null},{"from":489,"to":784,"weight":2.219970287706028,"gater":null},{"from":489,"to":785,"weight":-1.0496497306834365,"gater":null},{"from":489,"to":786,"weight":1.0964972304874792,"gater":null},{"from":489,"to":787,"weight":-2.375590433274864,"gater":null},{"from":489,"to":788,"weight":-3.994860806920982,"gater":null},{"from":489,"to":789,"weight":-0.7802166071355168,"gater":null},{"from":489,"to":790,"weight":1.1596393378047263,"gater":null},{"from":490,"to":784,"weight":1.404611572847506,"gater":null},{"from":490,"to":785,"weight":-1.234927449561577,"gater":null},{"from":490,"to":786,"weight":0.38568407281380923,"gater":null},{"from":490,"to":787,"weight":-0.5272357564964151,"gater":null},{"from":490,"to":788,"weight":-3.065807875060823,"gater":null},{"from":490,"to":789,"weight":-1.3698903042840533,"gater":null},{"from":490,"to":790,"weight":0.1907714000557593,"gater":null},{"from":491,"to":784,"weight":1.7759517458478051,"gater":null},{"from":491,"to":785,"weight":0.6487749120586354,"gater":null},{"from":491,"to":786,"weight":0.11928344112822771,"gater":null},{"from":491,"to":787,"weight":0.470471565497854,"gater":null},{"from":491,"to":788,"weight":-0.6074521451828465,"gater":null},{"from":491,"to":789,"weight":-0.1812703050108078,"gater":null},{"from":491,"to":790,"weight":-1.3782457988293417,"gater":null},{"from":492,"to":784,"weight":4.117673263396827,"gater":null},{"from":492,"to":785,"weight":2.5012258211949616,"gater":null},{"from":492,"to":786,"weight":2.1891520847166377,"gater":null},{"from":492,"to":787,"weight":0.9082280651956421,"gater":null},{"from":492,"to":788,"weight":-0.3687912000019529,"gater":null},{"from":492,"to":789,"weight":0.45626857224897194,"gater":null},{"from":492,"to":790,"weight":1.0111501972358838,"gater":null},{"from":493,"to":784,"weight":0.57006866859504,"gater":null},{"from":493,"to":785,"weight":1.4936889154471191,"gater":null},{"from":493,"to":786,"weight":1.8300870589493423,"gater":null},{"from":493,"to":787,"weight":2.0687505578965655,"gater":null},{"from":493,"to":788,"weight":0.5425268737802851,"gater":null},{"from":493,"to":789,"weight":-0.1595420768584898,"gater":null},{"from":493,"to":790,"weight":-0.7407475265743297,"gater":null},{"from":494,"to":784,"weight":1.035889850266538,"gater":null},{"from":494,"to":785,"weight":0.8615362800225492,"gater":null},{"from":494,"to":786,"weight":0.46116498396019157,"gater":null},{"from":494,"to":787,"weight":-0.5126340307342001,"gater":null},{"from":494,"to":788,"weight":1.6470822934348983,"gater":null},{"from":494,"to":789,"weight":-0.8981483838162837,"gater":null},{"from":494,"to":790,"weight":-0.45299837955331024,"gater":null},{"from":495,"to":784,"weight":-0.002662702974813537,"gater":null},{"from":495,"to":785,"weight":0.4736420772496374,"gater":null},{"from":495,"to":786,"weight":-0.18937487131187244,"gater":null},{"from":495,"to":787,"weight":-0.7582737197953912,"gater":null},{"from":495,"to":788,"weight":1.2781700523371597,"gater":null},{"from":495,"to":789,"weight":-0.9405959613793904,"gater":null},{"from":495,"to":790,"weight":-1.718512932694167,"gater":null},{"from":496,"to":784,"weight":-0.173965382402321,"gater":null},{"from":496,"to":785,"weight":-0.7163354272636127,"gater":null},{"from":496,"to":786,"weight":1.3908868836289956,"gater":null},{"from":496,"to":787,"weight":1.051479354869844,"gater":null},{"from":496,"to":788,"weight":-1.2409958110657853,"gater":null},{"from":496,"to":789,"weight":-3.0868149308358106,"gater":null},{"from":496,"to":790,"weight":-0.9306719650039567,"gater":null},{"from":497,"to":784,"weight":-3.117989905208806,"gater":null},{"from":497,"to":785,"weight":-0.7690322092183242,"gater":null},{"from":497,"to":786,"weight":-1.7021286623809484,"gater":null},{"from":497,"to":787,"weight":2.044094276288036,"gater":null},{"from":497,"to":788,"weight":1.3621464431545691,"gater":null},{"from":497,"to":789,"weight":-0.3105403444259567,"gater":null},{"from":497,"to":790,"weight":0.14503717224487425,"gater":null},{"from":498,"to":784,"weight":-3.319677713127339,"gater":null},{"from":498,"to":785,"weight":-0.19341778716689847,"gater":null},{"from":498,"to":786,"weight":0.3871983964831733,"gater":null},{"from":498,"to":787,"weight":1.4041759335141766,"gater":null},{"from":498,"to":788,"weight":0.9154806575898046,"gater":null},{"from":498,"to":789,"weight":-0.9066129111114125,"gater":null},{"from":498,"to":790,"weight":0.24243482448796466,"gater":null},{"from":499,"to":784,"weight":-1.3965713799718287,"gater":null},{"from":499,"to":785,"weight":-0.33800130505346276,"gater":null},{"from":499,"to":786,"weight":0.053355915470552365,"gater":null},{"from":499,"to":787,"weight":0.14114220451931772,"gater":null},{"from":499,"to":788,"weight":0.3639779312060963,"gater":null},{"from":499,"to":789,"weight":-1.7890631769934664,"gater":null},{"from":499,"to":790,"weight":-0.19541018823427478,"gater":null},{"from":500,"to":784,"weight":-1.6733040386271965,"gater":null},{"from":500,"to":785,"weight":-0.3000065147659638,"gater":null},{"from":500,"to":786,"weight":-0.38812442119239227,"gater":null},{"from":500,"to":787,"weight":0.9426986324719551,"gater":null},{"from":500,"to":788,"weight":-1.6184813035065182,"gater":null},{"from":500,"to":789,"weight":0.2759682838412332,"gater":null},{"from":500,"to":790,"weight":-0.07897087688173776,"gater":null},{"from":501,"to":784,"weight":-1.195329971345312,"gater":null},{"from":501,"to":785,"weight":0.1661028813863783,"gater":null},{"from":501,"to":786,"weight":0.31379938617208003,"gater":null},{"from":501,"to":787,"weight":1.1603455725628398,"gater":null},{"from":501,"to":788,"weight":-0.4459827066211725,"gater":null},{"from":501,"to":789,"weight":-0.378685355432591,"gater":null},{"from":501,"to":790,"weight":-0.03203004507935386,"gater":null},{"from":502,"to":784,"weight":-0.4081694318430905,"gater":null},{"from":502,"to":785,"weight":-0.17296522265494887,"gater":null},{"from":502,"to":786,"weight":0.6836958113614706,"gater":null},{"from":502,"to":787,"weight":1.152044868013067,"gater":null},{"from":502,"to":788,"weight":-0.06730140817136576,"gater":null},{"from":502,"to":789,"weight":-0.3010740330386916,"gater":null},{"from":502,"to":790,"weight":0.1171771750607558,"gater":null},{"from":503,"to":784,"weight":0.0783129946858387,"gater":null},{"from":503,"to":785,"weight":-0.28523872342981677,"gater":null},{"from":503,"to":786,"weight":0.06112455164056604,"gater":null},{"from":503,"to":787,"weight":0.481564888750253,"gater":null},{"from":503,"to":788,"weight":-0.019275480408571403,"gater":null},{"from":503,"to":789,"weight":-0.09532593197219101,"gater":null},{"from":503,"to":790,"weight":-0.008124049964458249,"gater":null},{"from":504,"to":784,"weight":0.0354627678392192,"gater":null},{"from":504,"to":785,"weight":0.091252795612877,"gater":null},{"from":504,"to":786,"weight":-0.007826919902709936,"gater":null},{"from":504,"to":787,"weight":0.04722021099737855,"gater":null},{"from":504,"to":788,"weight":-0.047888994802867124,"gater":null},{"from":504,"to":789,"weight":0.0005931497740421232,"gater":null},{"from":504,"to":790,"weight":-0.06437649614076899,"gater":null},{"from":505,"to":784,"weight":0.05792440428021922,"gater":null},{"from":505,"to":785,"weight":0.054092304166944744,"gater":null},{"from":505,"to":786,"weight":0.03643665774375057,"gater":null},{"from":505,"to":787,"weight":-0.03396633979913491,"gater":null},{"from":505,"to":788,"weight":0.053337123520586255,"gater":null},{"from":505,"to":789,"weight":0.02343929514614182,"gater":null},{"from":505,"to":790,"weight":-0.02950366761084565,"gater":null},{"from":506,"to":784,"weight":0.07622211226553567,"gater":null},{"from":506,"to":785,"weight":-0.012067447529431377,"gater":null},{"from":506,"to":786,"weight":0.0750389418982343,"gater":null},{"from":506,"to":787,"weight":0.12366117669851195,"gater":null},{"from":506,"to":788,"weight":-0.10181693324645114,"gater":null},{"from":506,"to":789,"weight":0.895999242941168,"gater":null},{"from":506,"to":790,"weight":-0.18204427936680287,"gater":null},{"from":507,"to":784,"weight":-1.24652499257206,"gater":null},{"from":507,"to":785,"weight":0.33536454832727686,"gater":null},{"from":507,"to":786,"weight":0.5659236007965668,"gater":null},{"from":507,"to":787,"weight":-0.17298719457492379,"gater":null},{"from":507,"to":788,"weight":-0.4407248972477106,"gater":null},{"from":507,"to":789,"weight":1.1301720087346903,"gater":null},{"from":507,"to":790,"weight":0.20270191368096008,"gater":null},{"from":508,"to":784,"weight":-0.026241832192326172,"gater":null},{"from":508,"to":785,"weight":0.3439455211233072,"gater":null},{"from":508,"to":786,"weight":-1.2162376324568502,"gater":null},{"from":508,"to":787,"weight":0.30123159346060746,"gater":null},{"from":508,"to":788,"weight":-1.0638515320962694,"gater":null},{"from":508,"to":789,"weight":0.2160968535577332,"gater":null},{"from":508,"to":790,"weight":1.1043814496506914,"gater":null},{"from":509,"to":784,"weight":-0.12470082100521684,"gater":null},{"from":509,"to":785,"weight":0.7420750737469829,"gater":null},{"from":509,"to":786,"weight":-0.9149884556040098,"gater":null},{"from":509,"to":787,"weight":-0.06032333670297299,"gater":null},{"from":509,"to":788,"weight":-0.6472304163268998,"gater":null},{"from":509,"to":789,"weight":-1.01885714279069,"gater":null},{"from":509,"to":790,"weight":1.5401057073898252,"gater":null},{"from":510,"to":784,"weight":-0.6119256768007107,"gater":null},{"from":510,"to":785,"weight":0.8225389792725666,"gater":null},{"from":510,"to":786,"weight":-0.5631613378135465,"gater":null},{"from":510,"to":787,"weight":0.6388512511546621,"gater":null},{"from":510,"to":788,"weight":0.5818692269555834,"gater":null},{"from":510,"to":789,"weight":0.7194461280238781,"gater":null},{"from":510,"to":790,"weight":2.008556738601949,"gater":null},{"from":511,"to":784,"weight":-2.500749829991191,"gater":null},{"from":511,"to":785,"weight":-0.3642048549822454,"gater":null},{"from":511,"to":786,"weight":-0.7214748884958467,"gater":null},{"from":511,"to":787,"weight":1.722689673010225,"gater":null},{"from":511,"to":788,"weight":1.34212143044987,"gater":null},{"from":511,"to":789,"weight":-1.4293892893920432,"gater":null},{"from":511,"to":790,"weight":2.330944545910304,"gater":null},{"from":512,"to":784,"weight":-1.4146707029856849,"gater":null},{"from":512,"to":785,"weight":-0.7943227905900544,"gater":null},{"from":512,"to":786,"weight":0.7928517027626437,"gater":null},{"from":512,"to":787,"weight":0.9605220204035488,"gater":null},{"from":512,"to":788,"weight":1.4545162623032837,"gater":null},{"from":512,"to":789,"weight":-3.0250550436866277,"gater":null},{"from":512,"to":790,"weight":3.390559765069635,"gater":null},{"from":513,"to":784,"weight":0.12421605262835338,"gater":null},{"from":513,"to":785,"weight":0.5705944070648432,"gater":null},{"from":513,"to":786,"weight":0.03374961322485177,"gater":null},{"from":513,"to":787,"weight":1.114533576379019,"gater":null},{"from":513,"to":788,"weight":1.4830243075290797,"gater":null},{"from":513,"to":789,"weight":-0.6889736870760823,"gater":null},{"from":513,"to":790,"weight":3.685854119742525,"gater":null},{"from":514,"to":784,"weight":-1.5597624072510592,"gater":null},{"from":514,"to":785,"weight":0.6699459816074396,"gater":null},{"from":514,"to":786,"weight":2.0441296544159084,"gater":null},{"from":514,"to":787,"weight":3.6289633796888867,"gater":null},{"from":514,"to":788,"weight":-0.6001483151582052,"gater":null},{"from":514,"to":789,"weight":-0.20893264123718072,"gater":null},{"from":514,"to":790,"weight":1.8346126720437992,"gater":null},{"from":515,"to":784,"weight":-1.5538740675230962,"gater":null},{"from":515,"to":785,"weight":0.7777815981296738,"gater":null},{"from":515,"to":786,"weight":-0.6315311264257675,"gater":null},{"from":515,"to":787,"weight":1.5313603400613693,"gater":null},{"from":515,"to":788,"weight":-2.1184805881126074,"gater":null},{"from":515,"to":789,"weight":-1.1562396012115377,"gater":null},{"from":515,"to":790,"weight":1.388758395331074,"gater":null},{"from":516,"to":784,"weight":0.849207843497821,"gater":null},{"from":516,"to":785,"weight":-1.4528269566039702,"gater":null},{"from":516,"to":786,"weight":-1.8595443538773042,"gater":null},{"from":516,"to":787,"weight":-0.039919894513237505,"gater":null},{"from":516,"to":788,"weight":-1.958298669986782,"gater":null},{"from":516,"to":789,"weight":-2.708894754220284,"gater":null},{"from":516,"to":790,"weight":-1.9774967603785576,"gater":null},{"from":517,"to":784,"weight":1.388029409858877,"gater":null},{"from":517,"to":785,"weight":0.19349742683723783,"gater":null},{"from":517,"to":786,"weight":-0.9579322695823524,"gater":null},{"from":517,"to":787,"weight":-0.31705896762383573,"gater":null},{"from":517,"to":788,"weight":-4.4318410366802485,"gater":null},{"from":517,"to":789,"weight":-2.8351940509086484,"gater":null},{"from":517,"to":790,"weight":0.16040111445004124,"gater":null},{"from":518,"to":784,"weight":2.5675052807652934,"gater":null},{"from":518,"to":785,"weight":-0.46991486425277673,"gater":null},{"from":518,"to":786,"weight":0.42721668711280375,"gater":null},{"from":518,"to":787,"weight":-1.622776501974809,"gater":null},{"from":518,"to":788,"weight":-0.3009852976777673,"gater":null},{"from":518,"to":789,"weight":-0.5957760427460853,"gater":null},{"from":518,"to":790,"weight":0.3515033694499627,"gater":null},{"from":519,"to":784,"weight":-0.03288635987945119,"gater":null},{"from":519,"to":785,"weight":-0.03594762293235118,"gater":null},{"from":519,"to":786,"weight":1.937121462925995,"gater":null},{"from":519,"to":787,"weight":1.9445323458810484,"gater":null},{"from":519,"to":788,"weight":-0.024097778900584597,"gater":null},{"from":519,"to":789,"weight":-1.5210809109228776,"gater":null},{"from":519,"to":790,"weight":1.1423899833117475,"gater":null},{"from":520,"to":784,"weight":-0.5642774408536816,"gater":null},{"from":520,"to":785,"weight":2.753300746504672,"gater":null},{"from":520,"to":786,"weight":-1.1038400190554498,"gater":null},{"from":520,"to":787,"weight":1.9458597011136851,"gater":null},{"from":520,"to":788,"weight":-1.7141101927970976,"gater":null},{"from":520,"to":789,"weight":-0.40987942934324545,"gater":null},{"from":520,"to":790,"weight":1.788220464008377,"gater":null},{"from":521,"to":784,"weight":-0.10003042196573768,"gater":null},{"from":521,"to":785,"weight":1.5735959654398106,"gater":null},{"from":521,"to":786,"weight":1.2588205045726903,"gater":null},{"from":521,"to":787,"weight":2.785091356401202,"gater":null},{"from":521,"to":788,"weight":0.25206724266458336,"gater":null},{"from":521,"to":789,"weight":-0.904223243024764,"gater":null},{"from":521,"to":790,"weight":1.7974424806796558,"gater":null},{"from":522,"to":784,"weight":0.06258121102931968,"gater":null},{"from":522,"to":785,"weight":1.187351703726734,"gater":null},{"from":522,"to":786,"weight":-0.8507168403091736,"gater":null},{"from":522,"to":787,"weight":-0.32815226541195724,"gater":null},{"from":522,"to":788,"weight":0.13570826293547317,"gater":null},{"from":522,"to":789,"weight":0.7146817596852905,"gater":null},{"from":522,"to":790,"weight":0.6029796929905493,"gater":null},{"from":523,"to":784,"weight":0.7696605818669433,"gater":null},{"from":523,"to":785,"weight":-0.05053946238158348,"gater":null},{"from":523,"to":786,"weight":-0.24172536943879558,"gater":null},{"from":523,"to":787,"weight":0.3618634665432761,"gater":null},{"from":523,"to":788,"weight":-0.5890039244190891,"gater":null},{"from":523,"to":789,"weight":-1.056519743704762,"gater":null},{"from":523,"to":790,"weight":1.2750886618335224,"gater":null},{"from":524,"to":784,"weight":0.7611771930480878,"gater":null},{"from":524,"to":785,"weight":-1.1428413595460538,"gater":null},{"from":524,"to":786,"weight":0.8191864807778955,"gater":null},{"from":524,"to":787,"weight":0.9027078353240172,"gater":null},{"from":524,"to":788,"weight":-0.05884768524662014,"gater":null},{"from":524,"to":789,"weight":-0.96703032583296,"gater":null},{"from":524,"to":790,"weight":0.3621628428909436,"gater":null},{"from":525,"to":784,"weight":-1.2055636761137127,"gater":null},{"from":525,"to":785,"weight":-0.8621358403922187,"gater":null},{"from":525,"to":786,"weight":1.6839304791658372,"gater":null},{"from":525,"to":787,"weight":1.3153850742285262,"gater":null},{"from":525,"to":788,"weight":1.360349331940173,"gater":null},{"from":525,"to":789,"weight":0.19274996363928634,"gater":null},{"from":525,"to":790,"weight":2.185262739167032,"gater":null},{"from":526,"to":784,"weight":-4.4592325663556664,"gater":null},{"from":526,"to":785,"weight":-0.911342269515777,"gater":null},{"from":526,"to":786,"weight":-2.770992683769974,"gater":null},{"from":526,"to":787,"weight":1.7339017373283199,"gater":null},{"from":526,"to":788,"weight":-0.45106985240845515,"gater":null},{"from":526,"to":789,"weight":-2.4774921185767687,"gater":null},{"from":526,"to":790,"weight":1.9501045329121283,"gater":null},{"from":527,"to":784,"weight":-4.097739219910973,"gater":null},{"from":527,"to":785,"weight":-1.2829228076137864,"gater":null},{"from":527,"to":786,"weight":-1.8515148288055308,"gater":null},{"from":527,"to":787,"weight":1.2804979561623657,"gater":null},{"from":527,"to":788,"weight":-1.4303545253580676,"gater":null},{"from":527,"to":789,"weight":-3.6642363197316796,"gater":null},{"from":527,"to":790,"weight":1.5480153708775732,"gater":null},{"from":528,"to":784,"weight":-1.9031732908776358,"gater":null},{"from":528,"to":785,"weight":-0.5739812034930238,"gater":null},{"from":528,"to":786,"weight":-1.8335342134004209,"gater":null},{"from":528,"to":787,"weight":1.0139438226682485,"gater":null},{"from":528,"to":788,"weight":-0.5707875095385988,"gater":null},{"from":528,"to":789,"weight":-1.6902871490775968,"gater":null},{"from":528,"to":790,"weight":0.15121674964596377,"gater":null},{"from":529,"to":784,"weight":-0.6020700482538034,"gater":null},{"from":529,"to":785,"weight":0.334303551043411,"gater":null},{"from":529,"to":786,"weight":-0.9367318567042178,"gater":null},{"from":529,"to":787,"weight":0.36488966540024054,"gater":null},{"from":529,"to":788,"weight":-0.3003405181746561,"gater":null},{"from":529,"to":789,"weight":-0.263652692915513,"gater":null},{"from":529,"to":790,"weight":0.14285085870852487,"gater":null},{"from":530,"to":784,"weight":0.019609999753848667,"gater":null},{"from":530,"to":785,"weight":-0.048382824890910586,"gater":null},{"from":530,"to":786,"weight":0.223573411227184,"gater":null},{"from":530,"to":787,"weight":0.1945661210102284,"gater":null},{"from":530,"to":788,"weight":-0.09901395352864908,"gater":null},{"from":530,"to":789,"weight":-0.0065444636002382085,"gater":null},{"from":530,"to":790,"weight":0.00351795485963523,"gater":null},{"from":531,"to":784,"weight":0.08517512838624872,"gater":null},{"from":531,"to":785,"weight":-0.3590795339372437,"gater":null},{"from":531,"to":786,"weight":-0.030517247559714432,"gater":null},{"from":531,"to":787,"weight":0.1724028347459892,"gater":null},{"from":531,"to":788,"weight":0.008732723952427622,"gater":null},{"from":531,"to":789,"weight":0.03755898945031819,"gater":null},{"from":531,"to":790,"weight":-0.11710750536726819,"gater":null},{"from":532,"to":784,"weight":-0.049598195607308694,"gater":null},{"from":532,"to":785,"weight":0.04109658000511329,"gater":null},{"from":532,"to":786,"weight":0.09855100162211611,"gater":null},{"from":532,"to":787,"weight":-0.03808495937849785,"gater":null},{"from":532,"to":788,"weight":0.09022347053223295,"gater":null},{"from":532,"to":789,"weight":-0.0682196978525242,"gater":null},{"from":532,"to":790,"weight":0.04553724473528903,"gater":null},{"from":533,"to":784,"weight":0.02279398457274287,"gater":null},{"from":533,"to":785,"weight":0.07965779271442847,"gater":null},{"from":533,"to":786,"weight":-0.013246390958007087,"gater":null},{"from":533,"to":787,"weight":-0.071545802690693,"gater":null},{"from":533,"to":788,"weight":-0.05685650134126821,"gater":null},{"from":533,"to":789,"weight":-0.054023238810569744,"gater":null},{"from":533,"to":790,"weight":0.04890898964960319,"gater":null},{"from":534,"to":784,"weight":-0.199793627917991,"gater":null},{"from":534,"to":785,"weight":-0.17996691463103304,"gater":null},{"from":534,"to":786,"weight":0.3580766372057567,"gater":null},{"from":534,"to":787,"weight":0.10715731627837793,"gater":null},{"from":534,"to":788,"weight":0.06836095899620312,"gater":null},{"from":534,"to":789,"weight":0.7326409090586754,"gater":null},{"from":534,"to":790,"weight":-0.49214097299345927,"gater":null},{"from":535,"to":784,"weight":-0.15221593827874205,"gater":null},{"from":535,"to":785,"weight":-0.17823879670096046,"gater":null},{"from":535,"to":786,"weight":-0.2649391356276981,"gater":null},{"from":535,"to":787,"weight":-0.3193466051997856,"gater":null},{"from":535,"to":788,"weight":-0.9670179831881257,"gater":null},{"from":535,"to":789,"weight":1.042996038620469,"gater":null},{"from":535,"to":790,"weight":0.5159374403079998,"gater":null},{"from":536,"to":784,"weight":-1.3101091533451927,"gater":null},{"from":536,"to":785,"weight":0.040377780929133404,"gater":null},{"from":536,"to":786,"weight":0.9105097617129896,"gater":null},{"from":536,"to":787,"weight":0.16993850038685387,"gater":null},{"from":536,"to":788,"weight":-0.5946169356455443,"gater":null},{"from":536,"to":789,"weight":-0.07128774513713793,"gater":null},{"from":536,"to":790,"weight":0.6891004950193869,"gater":null},{"from":537,"to":784,"weight":-2.1712369136338707,"gater":null},{"from":537,"to":785,"weight":0.8987839525481888,"gater":null},{"from":537,"to":786,"weight":0.01709930768837498,"gater":null},{"from":537,"to":787,"weight":-0.07781581917614766,"gater":null},{"from":537,"to":788,"weight":-0.8538717560373467,"gater":null},{"from":537,"to":789,"weight":0.1836842959101834,"gater":null},{"from":537,"to":790,"weight":1.8696780787117333,"gater":null},{"from":538,"to":784,"weight":-0.1791204717598499,"gater":null},{"from":538,"to":785,"weight":0.6610404177233967,"gater":null},{"from":538,"to":786,"weight":1.14317135736126,"gater":null},{"from":538,"to":787,"weight":1.4569375806682767,"gater":null},{"from":538,"to":788,"weight":0.23586841623823662,"gater":null},{"from":538,"to":789,"weight":0.7825134878104454,"gater":null},{"from":538,"to":790,"weight":1.9716569529484322,"gater":null},{"from":539,"to":784,"weight":-0.7826432003374335,"gater":null},{"from":539,"to":785,"weight":0.3856153330091138,"gater":null},{"from":539,"to":786,"weight":1.418710422450215,"gater":null},{"from":539,"to":787,"weight":2.228868574000992,"gater":null},{"from":539,"to":788,"weight":-0.00457029232141247,"gater":null},{"from":539,"to":789,"weight":1.106537294526796,"gater":null},{"from":539,"to":790,"weight":3.1280972711137798,"gater":null},{"from":540,"to":784,"weight":-2.669689563260392,"gater":null},{"from":540,"to":785,"weight":0.9799890676398152,"gater":null},{"from":540,"to":786,"weight":-1.4405604636272333,"gater":null},{"from":540,"to":787,"weight":1.2159570090972631,"gater":null},{"from":540,"to":788,"weight":0.7455613786603024,"gater":null},{"from":540,"to":789,"weight":0.6931910656242322,"gater":null},{"from":540,"to":790,"weight":3.2784082245584742,"gater":null},{"from":541,"to":784,"weight":-3.161625405899621,"gater":null},{"from":541,"to":785,"weight":0.7081699646303266,"gater":null},{"from":541,"to":786,"weight":-1.8957075516510646,"gater":null},{"from":541,"to":787,"weight":0.5780397234171312,"gater":null},{"from":541,"to":788,"weight":0.17959658520808788,"gater":null},{"from":541,"to":789,"weight":-0.3286597968161162,"gater":null},{"from":541,"to":790,"weight":0.012381783019470554,"gater":null},{"from":542,"to":784,"weight":-3.0339482243912124,"gater":null},{"from":542,"to":785,"weight":-0.6079876115245968,"gater":null},{"from":542,"to":786,"weight":-1.307682898190826,"gater":null},{"from":542,"to":787,"weight":0.3317241209990508,"gater":null},{"from":542,"to":788,"weight":1.462165450450716,"gater":null},{"from":542,"to":789,"weight":-1.8689891669788348,"gater":null},{"from":542,"to":790,"weight":-0.5132945467802191,"gater":null},{"from":543,"to":784,"weight":-2.613153559070228,"gater":null},{"from":543,"to":785,"weight":0.8133977023985879,"gater":null},{"from":543,"to":786,"weight":0.7965863332270515,"gater":null},{"from":543,"to":787,"weight":0.668726156969207,"gater":null},{"from":543,"to":788,"weight":0.6572329932091853,"gater":null},{"from":543,"to":789,"weight":-1.3582148977135178,"gater":null},{"from":543,"to":790,"weight":0.7279266098108287,"gater":null},{"from":544,"to":784,"weight":-2.84345036840325,"gater":null},{"from":544,"to":785,"weight":0.6255765350862347,"gater":null},{"from":544,"to":786,"weight":2.1930702658619423,"gater":null},{"from":544,"to":787,"weight":0.3616840084663658,"gater":null},{"from":544,"to":788,"weight":0.2552226337496298,"gater":null},{"from":544,"to":789,"weight":-2.1732543067923045,"gater":null},{"from":544,"to":790,"weight":-1.9001290577684022,"gater":null},{"from":545,"to":784,"weight":0.13820242235156785,"gater":null},{"from":545,"to":785,"weight":-0.35764453465516965,"gater":null},{"from":545,"to":786,"weight":1.3097482712784922,"gater":null},{"from":545,"to":787,"weight":-0.518460419259474,"gater":null},{"from":545,"to":788,"weight":-2.6685294331919676,"gater":null},{"from":545,"to":789,"weight":-1.435153668658998,"gater":null},{"from":545,"to":790,"weight":0.42401648357109706,"gater":null},{"from":546,"to":784,"weight":-1.0078117291090734,"gater":null},{"from":546,"to":785,"weight":0.5531327715081709,"gater":null},{"from":546,"to":786,"weight":-0.78405740207618,"gater":null},{"from":546,"to":787,"weight":1.1992231334725783,"gater":null},{"from":546,"to":788,"weight":-0.5678003548589667,"gater":null},{"from":546,"to":789,"weight":-0.18670734318540586,"gater":null},{"from":546,"to":790,"weight":-0.7267081976544133,"gater":null},{"from":547,"to":784,"weight":-0.8381818080967752,"gater":null},{"from":547,"to":785,"weight":-0.9930807404792632,"gater":null},{"from":547,"to":786,"weight":1.6491097832013817,"gater":null},{"from":547,"to":787,"weight":-1.6524186957780538,"gater":null},{"from":547,"to":788,"weight":-2.2424061756478872,"gater":null},{"from":547,"to":789,"weight":-1.1387498959098383,"gater":null},{"from":547,"to":790,"weight":-0.7477407083704577,"gater":null},{"from":548,"to":784,"weight":-0.6297431754932584,"gater":null},{"from":548,"to":785,"weight":1.358763294692691,"gater":null},{"from":548,"to":786,"weight":2.025339916213624,"gater":null},{"from":548,"to":787,"weight":0.08421313640066881,"gater":null},{"from":548,"to":788,"weight":0.22805028696591992,"gater":null},{"from":548,"to":789,"weight":-0.9631316980434353,"gater":null},{"from":548,"to":790,"weight":2.1840682320623843,"gater":null},{"from":549,"to":784,"weight":-1.1590464649159353,"gater":null},{"from":549,"to":785,"weight":-0.07702702625039545,"gater":null},{"from":549,"to":786,"weight":-1.7613544657954283,"gater":null},{"from":549,"to":787,"weight":1.0528165391933355,"gater":null},{"from":549,"to":788,"weight":-1.956240100548706,"gater":null},{"from":549,"to":789,"weight":0.6095546803312463,"gater":null},{"from":549,"to":790,"weight":1.4449960703160896,"gater":null},{"from":550,"to":784,"weight":-2.28934199616906,"gater":null},{"from":550,"to":785,"weight":-0.2849553948393438,"gater":null},{"from":550,"to":786,"weight":1.747675003437283,"gater":null},{"from":550,"to":787,"weight":0.9433520823047353,"gater":null},{"from":550,"to":788,"weight":-0.3055763252265824,"gater":null},{"from":550,"to":789,"weight":-0.6555023960003552,"gater":null},{"from":550,"to":790,"weight":0.6105882579444862,"gater":null},{"from":551,"to":784,"weight":0.977122958612705,"gater":null},{"from":551,"to":785,"weight":-0.5500365564579315,"gater":null},{"from":551,"to":786,"weight":2.393481299390867,"gater":null},{"from":551,"to":787,"weight":-0.23923056220299355,"gater":null},{"from":551,"to":788,"weight":-1.1662220386758155,"gater":null},{"from":551,"to":789,"weight":-0.6964557297425306,"gater":null},{"from":551,"to":790,"weight":2.5401488399644316,"gater":null},{"from":552,"to":784,"weight":-0.8054702359886252,"gater":null},{"from":552,"to":785,"weight":-1.5625969828636648,"gater":null},{"from":552,"to":786,"weight":1.4278387054645256,"gater":null},{"from":552,"to":787,"weight":-1.9513185899300884,"gater":null},{"from":552,"to":788,"weight":0.09857262697903214,"gater":null},{"from":552,"to":789,"weight":0.8285421879393337,"gater":null},{"from":552,"to":790,"weight":0.8373840785327289,"gater":null},{"from":553,"to":784,"weight":-1.0583865416735925,"gater":null},{"from":553,"to":785,"weight":-0.8596176637366238,"gater":null},{"from":553,"to":786,"weight":-0.929593588622334,"gater":null},{"from":553,"to":787,"weight":0.25341446913740057,"gater":null},{"from":553,"to":788,"weight":0.5144863343162852,"gater":null},{"from":553,"to":789,"weight":3.545618430413092,"gater":null},{"from":553,"to":790,"weight":1.8236547635751652,"gater":null},{"from":554,"to":784,"weight":-3.1017231165125683,"gater":null},{"from":554,"to":785,"weight":-0.5278283987498746,"gater":null},{"from":554,"to":786,"weight":-1.0394153502555767,"gater":null},{"from":554,"to":787,"weight":1.8223059873761662,"gater":null},{"from":554,"to":788,"weight":-1.336075331048149,"gater":null},{"from":554,"to":789,"weight":0.3651173504663341,"gater":null},{"from":554,"to":790,"weight":1.165827195988316,"gater":null},{"from":555,"to":784,"weight":-1.6096329145333679,"gater":null},{"from":555,"to":785,"weight":-1.1150567274986667,"gater":null},{"from":555,"to":786,"weight":-0.24876827277943703,"gater":null},{"from":555,"to":787,"weight":1.5393015738821951,"gater":null},{"from":555,"to":788,"weight":-0.9625705328900791,"gater":null},{"from":555,"to":789,"weight":-2.086062522772169,"gater":null},{"from":555,"to":790,"weight":0.27193096163121694,"gater":null},{"from":556,"to":784,"weight":0.2880420145361222,"gater":null},{"from":556,"to":785,"weight":-0.668709558764946,"gater":null},{"from":556,"to":786,"weight":-1.6409580492234221,"gater":null},{"from":556,"to":787,"weight":1.455377947458927,"gater":null},{"from":556,"to":788,"weight":-0.16981500225427473,"gater":null},{"from":556,"to":789,"weight":-1.1063629308467537,"gater":null},{"from":556,"to":790,"weight":-0.15330912237578775,"gater":null},{"from":557,"to":784,"weight":0.0017913485699965989,"gater":null},{"from":557,"to":785,"weight":-0.0017537871962694735,"gater":null},{"from":557,"to":786,"weight":-0.9635660413238438,"gater":null},{"from":557,"to":787,"weight":0.06179740979681694,"gater":null},{"from":557,"to":788,"weight":-0.0865895618466687,"gater":null},{"from":557,"to":789,"weight":-0.29130584020883016,"gater":null},{"from":557,"to":790,"weight":0.0055143967093562556,"gater":null},{"from":558,"to":784,"weight":0.02656418158893903,"gater":null},{"from":558,"to":785,"weight":-0.04900231306779851,"gater":null},{"from":558,"to":786,"weight":0.038874819953162415,"gater":null},{"from":558,"to":787,"weight":-0.003545766977043818,"gater":null},{"from":558,"to":788,"weight":-0.07492935526015175,"gater":null},{"from":558,"to":789,"weight":-0.014985580656758925,"gater":null},{"from":558,"to":790,"weight":0.048254722316495115,"gater":null},{"from":559,"to":784,"weight":0.04452606889353585,"gater":null},{"from":559,"to":785,"weight":-0.008178487495271943,"gater":null},{"from":559,"to":786,"weight":-0.03718000945379892,"gater":null},{"from":559,"to":787,"weight":-0.09266408635741404,"gater":null},{"from":559,"to":788,"weight":-0.04483329799670801,"gater":null},{"from":559,"to":789,"weight":-0.025916823405164102,"gater":null},{"from":559,"to":790,"weight":-0.08195293209535051,"gater":null},{"from":560,"to":784,"weight":0.0009901344576988824,"gater":null},{"from":560,"to":785,"weight":-0.03882832349249617,"gater":null},{"from":560,"to":786,"weight":0.0966783809661047,"gater":null},{"from":560,"to":787,"weight":0.052286576178648625,"gater":null},{"from":560,"to":788,"weight":-0.09798993374529373,"gater":null},{"from":560,"to":789,"weight":-0.05201768858100042,"gater":null},{"from":560,"to":790,"weight":0.01719110398266066,"gater":null},{"from":561,"to":784,"weight":-0.06505019429723707,"gater":null},{"from":561,"to":785,"weight":0.00679302025577852,"gater":null},{"from":561,"to":786,"weight":-0.017361305551430922,"gater":null},{"from":561,"to":787,"weight":-0.011134060289783101,"gater":null},{"from":561,"to":788,"weight":-0.042683034239770296,"gater":null},{"from":561,"to":789,"weight":-0.019229756271697915,"gater":null},{"from":561,"to":790,"weight":0.024321488241154474,"gater":null},{"from":562,"to":784,"weight":-0.20307687383351009,"gater":null},{"from":562,"to":785,"weight":0.057418386631166676,"gater":null},{"from":562,"to":786,"weight":-0.8194159672236462,"gater":null},{"from":562,"to":787,"weight":0.02242566659702048,"gater":null},{"from":562,"to":788,"weight":-0.04586406316538038,"gater":null},{"from":562,"to":789,"weight":0.4661750652942426,"gater":null},{"from":562,"to":790,"weight":0.05966554539805689,"gater":null},{"from":563,"to":784,"weight":-0.228874232197329,"gater":null},{"from":563,"to":785,"weight":-0.008080200085846766,"gater":null},{"from":563,"to":786,"weight":-1.3571668135957582,"gater":null},{"from":563,"to":787,"weight":0.21034345565027818,"gater":null},{"from":563,"to":788,"weight":-1.2488314628953838,"gater":null},{"from":563,"to":789,"weight":1.1531358427739893,"gater":null},{"from":563,"to":790,"weight":0.5483350929551633,"gater":null},{"from":564,"to":784,"weight":-0.21705335271440118,"gater":null},{"from":564,"to":785,"weight":0.06281580876906454,"gater":null},{"from":564,"to":786,"weight":0.72558463682092,"gater":null},{"from":564,"to":787,"weight":0.04086712975637586,"gater":null},{"from":564,"to":788,"weight":-0.1458695768297305,"gater":null},{"from":564,"to":789,"weight":1.434889260061883,"gater":null},{"from":564,"to":790,"weight":0.6760837477868858,"gater":null},{"from":565,"to":784,"weight":-1.7285236843490852,"gater":null},{"from":565,"to":785,"weight":1.5814988245735693,"gater":null},{"from":565,"to":786,"weight":-2.875625285811335,"gater":null},{"from":565,"to":787,"weight":0.757097210845721,"gater":null},{"from":565,"to":788,"weight":-1.2416780422616938,"gater":null},{"from":565,"to":789,"weight":1.5007386950138761,"gater":null},{"from":565,"to":790,"weight":2.385893365515352,"gater":null},{"from":566,"to":784,"weight":-0.7951829898258902,"gater":null},{"from":566,"to":785,"weight":0.6458320550915356,"gater":null},{"from":566,"to":786,"weight":-2.172156786521172,"gater":null},{"from":566,"to":787,"weight":0.6685106582223503,"gater":null},{"from":566,"to":788,"weight":-0.5048233700720927,"gater":null},{"from":566,"to":789,"weight":-1.8951310370166576,"gater":null},{"from":566,"to":790,"weight":2.935863599907402,"gater":null},{"from":567,"to":784,"weight":-2.966026209213926,"gater":null},{"from":567,"to":785,"weight":0.42280314368844724,"gater":null},{"from":567,"to":786,"weight":0.1313184747652878,"gater":null},{"from":567,"to":787,"weight":0.9925115512612417,"gater":null},{"from":567,"to":788,"weight":-1.6828088394204295,"gater":null},{"from":567,"to":789,"weight":0.7079873543213789,"gater":null},{"from":567,"to":790,"weight":2.9483639652162927,"gater":null},{"from":568,"to":784,"weight":-3.725555700798565,"gater":null},{"from":568,"to":785,"weight":1.3769955704133081,"gater":null},{"from":568,"to":786,"weight":1.029979825634275,"gater":null},{"from":568,"to":787,"weight":1.4921205572245095,"gater":null},{"from":568,"to":788,"weight":-0.3758204963848138,"gater":null},{"from":568,"to":789,"weight":1.089427227260833,"gater":null},{"from":568,"to":790,"weight":1.2427490276213042,"gater":null},{"from":569,"to":784,"weight":-2.8238664150781134,"gater":null},{"from":569,"to":785,"weight":0.15963222122305612,"gater":null},{"from":569,"to":786,"weight":-1.1364540127411003,"gater":null},{"from":569,"to":787,"weight":0.4287677744420136,"gater":null},{"from":569,"to":788,"weight":-1.0141710018704195,"gater":null},{"from":569,"to":789,"weight":0.3966896222100227,"gater":null},{"from":569,"to":790,"weight":0.010761580178273387,"gater":null},{"from":570,"to":784,"weight":-3.8586026642150673,"gater":null},{"from":570,"to":785,"weight":-0.3353258879863892,"gater":null},{"from":570,"to":786,"weight":0.6095183706292672,"gater":null},{"from":570,"to":787,"weight":-0.5673273590823399,"gater":null},{"from":570,"to":788,"weight":1.7436557799275643,"gater":null},{"from":570,"to":789,"weight":-2.241195465048755,"gater":null},{"from":570,"to":790,"weight":-1.6993862326470925,"gater":null},{"from":571,"to":784,"weight":-0.3939215419084859,"gater":null},{"from":571,"to":785,"weight":-0.8823630181260094,"gater":null},{"from":571,"to":786,"weight":1.141568365901816,"gater":null},{"from":571,"to":787,"weight":0.5053692917729901,"gater":null},{"from":571,"to":788,"weight":1.1452334484387277,"gater":null},{"from":571,"to":789,"weight":-1.9132780991340812,"gater":null},{"from":571,"to":790,"weight":-2.2709767305912223,"gater":null},{"from":572,"to":784,"weight":-3.2491759815082086,"gater":null},{"from":572,"to":785,"weight":-0.5963970718552694,"gater":null},{"from":572,"to":786,"weight":0.9041340998234296,"gater":null},{"from":572,"to":787,"weight":-0.10816799733061144,"gater":null},{"from":572,"to":788,"weight":-0.036633746460861365,"gater":null},{"from":572,"to":789,"weight":-0.6729359534928525,"gater":null},{"from":572,"to":790,"weight":-2.331734118085254,"gater":null},{"from":573,"to":784,"weight":-1.9891591226842817,"gater":null},{"from":573,"to":785,"weight":-1.5890664663924403,"gater":null},{"from":573,"to":786,"weight":2.4305064776790517,"gater":null},{"from":573,"to":787,"weight":1.4171468493087847,"gater":null},{"from":573,"to":788,"weight":-1.5419565608967316,"gater":null},{"from":573,"to":789,"weight":0.8853783894371522,"gater":null},{"from":573,"to":790,"weight":-0.5302104351687089,"gater":null},{"from":574,"to":784,"weight":-1.3141747273745474,"gater":null},{"from":574,"to":785,"weight":0.6556257390595537,"gater":null},{"from":574,"to":786,"weight":0.2504913335747295,"gater":null},{"from":574,"to":787,"weight":1.452675012212026,"gater":null},{"from":574,"to":788,"weight":-2.6398005361432704,"gater":null},{"from":574,"to":789,"weight":-2.3081411866481627,"gater":null},{"from":574,"to":790,"weight":-0.18999108385635682,"gater":null},{"from":575,"to":784,"weight":0.8528241930533144,"gater":null},{"from":575,"to":785,"weight":0.6223069715205785,"gater":null},{"from":575,"to":786,"weight":1.857731164399713,"gater":null},{"from":575,"to":787,"weight":-0.24771042613157926,"gater":null},{"from":575,"to":788,"weight":-1.2765330258391983,"gater":null},{"from":575,"to":789,"weight":-0.8428291607793864,"gater":null},{"from":575,"to":790,"weight":0.1625765460654197,"gater":null},{"from":576,"to":784,"weight":-0.013033587532296132,"gater":null},{"from":576,"to":785,"weight":0.07298133249710065,"gater":null},{"from":576,"to":786,"weight":-1.6606117371993827,"gater":null},{"from":576,"to":787,"weight":0.11217680752994189,"gater":null},{"from":576,"to":788,"weight":-2.5941990532246035,"gater":null},{"from":576,"to":789,"weight":-1.6597807975153729,"gater":null},{"from":576,"to":790,"weight":1.2885418239954234,"gater":null},{"from":577,"to":784,"weight":-0.5017309200644374,"gater":null},{"from":577,"to":785,"weight":0.3958085365864654,"gater":null},{"from":577,"to":786,"weight":2.07626573266669,"gater":null},{"from":577,"to":787,"weight":1.2790036891020022,"gater":null},{"from":577,"to":788,"weight":-0.8751858764019117,"gater":null},{"from":577,"to":789,"weight":0.4318891108288405,"gater":null},{"from":577,"to":790,"weight":2.037476338689321,"gater":null},{"from":578,"to":784,"weight":-1.052193422447045,"gater":null},{"from":578,"to":785,"weight":-0.08615937866421422,"gater":null},{"from":578,"to":786,"weight":1.4464429711500906,"gater":null},{"from":578,"to":787,"weight":0.8248819019793775,"gater":null},{"from":578,"to":788,"weight":-0.21756372804589502,"gater":null},{"from":578,"to":789,"weight":-2.001694058866753,"gater":null},{"from":578,"to":790,"weight":1.168639604844043,"gater":null},{"from":579,"to":784,"weight":-0.2881060984677971,"gater":null},{"from":579,"to":785,"weight":0.6254159033603415,"gater":null},{"from":579,"to":786,"weight":-2.06303095332088,"gater":null},{"from":579,"to":787,"weight":1.3928147890490898,"gater":null},{"from":579,"to":788,"weight":-0.5572333709145189,"gater":null},{"from":579,"to":789,"weight":-0.972473727781533,"gater":null},{"from":579,"to":790,"weight":3.692499680679694,"gater":null},{"from":580,"to":784,"weight":-2.4349056605855983,"gater":null},{"from":580,"to":785,"weight":0.24054054124064503,"gater":null},{"from":580,"to":786,"weight":-1.6190178774819188,"gater":null},{"from":580,"to":787,"weight":0.9049043695037094,"gater":null},{"from":580,"to":788,"weight":-0.9990582592835909,"gater":null},{"from":580,"to":789,"weight":-0.9914869913924723,"gater":null},{"from":580,"to":790,"weight":1.0568505012479608,"gater":null},{"from":581,"to":784,"weight":0.07833800349766416,"gater":null},{"from":581,"to":785,"weight":0.39982290430264333,"gater":null},{"from":581,"to":786,"weight":-4.136749128395001,"gater":null},{"from":581,"to":787,"weight":0.6978672870088704,"gater":null},{"from":581,"to":788,"weight":-1.435038541493971,"gater":null},{"from":581,"to":789,"weight":-1.138199589599858,"gater":null},{"from":581,"to":790,"weight":0.36213662419067855,"gater":null},{"from":582,"to":784,"weight":0.32085658190719046,"gater":null},{"from":582,"to":785,"weight":0.44626276192352393,"gater":null},{"from":582,"to":786,"weight":-0.3992084750014914,"gater":null},{"from":582,"to":787,"weight":1.0944908644618179,"gater":null},{"from":582,"to":788,"weight":-1.1609774181653165,"gater":null},{"from":582,"to":789,"weight":0.11144844889931169,"gater":null},{"from":582,"to":790,"weight":0.27300922909921665,"gater":null},{"from":583,"to":784,"weight":1.7894711314088498,"gater":null},{"from":583,"to":785,"weight":0.06872242093029832,"gater":null},{"from":583,"to":786,"weight":-0.3858670499234253,"gater":null},{"from":583,"to":787,"weight":0.685531193200385,"gater":null},{"from":583,"to":788,"weight":-0.4054930624239494,"gater":null},{"from":583,"to":789,"weight":-1.5050370856202482,"gater":null},{"from":583,"to":790,"weight":0.015763149566812733,"gater":null},{"from":584,"to":784,"weight":1.9621657212540802,"gater":null},{"from":584,"to":785,"weight":-0.30525163006199657,"gater":null},{"from":584,"to":786,"weight":-1.8332549715239634,"gater":null},{"from":584,"to":787,"weight":0.3855065533768495,"gater":null},{"from":584,"to":788,"weight":-0.26933381669894507,"gater":null},{"from":584,"to":789,"weight":-1.450375430009307,"gater":null},{"from":584,"to":790,"weight":-0.26832957326532436,"gater":null},{"from":585,"to":784,"weight":-0.0648989988126731,"gater":null},{"from":585,"to":785,"weight":-0.06862173268257463,"gater":null},{"from":585,"to":786,"weight":-0.1346638008339204,"gater":null},{"from":585,"to":787,"weight":-0.13888628906878256,"gater":null},{"from":585,"to":788,"weight":0.02708519069694304,"gater":null},{"from":585,"to":789,"weight":-0.09852879791476632,"gater":null},{"from":585,"to":790,"weight":-0.12757472533051342,"gater":null},{"from":586,"to":784,"weight":-0.09987455216656135,"gater":null},{"from":586,"to":785,"weight":-0.019205638541065686,"gater":null},{"from":586,"to":786,"weight":-0.23623495353742485,"gater":null},{"from":586,"to":787,"weight":-0.0021112858168884415,"gater":null},{"from":586,"to":788,"weight":0.07610373843834664,"gater":null},{"from":586,"to":789,"weight":-0.0812752290386585,"gater":null},{"from":586,"to":790,"weight":-0.05940312418832741,"gater":null},{"from":587,"to":784,"weight":-0.04538718161936461,"gater":null},{"from":587,"to":785,"weight":0.039975660315079646,"gater":null},{"from":587,"to":786,"weight":-0.046457634928846185,"gater":null},{"from":587,"to":787,"weight":-0.07010113988478957,"gater":null},{"from":587,"to":788,"weight":0.0795417234017997,"gater":null},{"from":587,"to":789,"weight":-0.0857868774803707,"gater":null},{"from":587,"to":790,"weight":0.03972763045087227,"gater":null},{"from":588,"to":784,"weight":0.04627367884472927,"gater":null},{"from":588,"to":785,"weight":0.00843640544362359,"gater":null},{"from":588,"to":786,"weight":0.025813941474643165,"gater":null},{"from":588,"to":787,"weight":0.037799922434660294,"gater":null},{"from":588,"to":788,"weight":-0.020972888977528206,"gater":null},{"from":588,"to":789,"weight":-0.020011858620294504,"gater":null},{"from":588,"to":790,"weight":-0.0011448734866541521,"gater":null},{"from":589,"to":784,"weight":-0.05242970302808772,"gater":null},{"from":589,"to":785,"weight":-0.001444011753484048,"gater":null},{"from":589,"to":786,"weight":0.022020378508452065,"gater":null},{"from":589,"to":787,"weight":-0.012695755029373507,"gater":null},{"from":589,"to":788,"weight":0.030933216908538036,"gater":null},{"from":589,"to":789,"weight":-0.043708603472258294,"gater":null},{"from":589,"to":790,"weight":0.08188542735324544,"gater":null},{"from":590,"to":784,"weight":0.017519683747117407,"gater":null},{"from":590,"to":785,"weight":-0.007631244371689541,"gater":null},{"from":590,"to":786,"weight":-0.43539849997730373,"gater":null},{"from":590,"to":787,"weight":0.06723859081943626,"gater":null},{"from":590,"to":788,"weight":-0.05585991537167494,"gater":null},{"from":590,"to":789,"weight":0.06885351780667816,"gater":null},{"from":590,"to":790,"weight":-0.04796442537913602,"gater":null},{"from":591,"to":784,"weight":-0.432636158631554,"gater":null},{"from":591,"to":785,"weight":0.19530886309488635,"gater":null},{"from":591,"to":786,"weight":-1.3139619740514243,"gater":null},{"from":591,"to":787,"weight":0.5257245706901144,"gater":null},{"from":591,"to":788,"weight":-0.7980813885729289,"gater":null},{"from":591,"to":789,"weight":-0.670605205979534,"gater":null},{"from":591,"to":790,"weight":0.08431302398488938,"gater":null},{"from":592,"to":784,"weight":-0.25232373196121505,"gater":null},{"from":592,"to":785,"weight":0.33918269172835797,"gater":null},{"from":592,"to":786,"weight":0.31656253852895466,"gater":null},{"from":592,"to":787,"weight":0.7033539726378957,"gater":null},{"from":592,"to":788,"weight":0.5883669744977598,"gater":null},{"from":592,"to":789,"weight":0.982668936494316,"gater":null},{"from":592,"to":790,"weight":0.42687101309268455,"gater":null},{"from":593,"to":784,"weight":-1.418426022735575,"gater":null},{"from":593,"to":785,"weight":0.4971092307753107,"gater":null},{"from":593,"to":786,"weight":0.4066123236936986,"gater":null},{"from":593,"to":787,"weight":1.4820511077709597,"gater":null},{"from":593,"to":788,"weight":-0.4277568056176518,"gater":null},{"from":593,"to":789,"weight":0.25589626332798454,"gater":null},{"from":593,"to":790,"weight":1.639107447414182,"gater":null},{"from":594,"to":784,"weight":-2.38142833391138,"gater":null},{"from":594,"to":785,"weight":-0.04499748280312955,"gater":null},{"from":594,"to":786,"weight":-1.2378977520336867,"gater":null},{"from":594,"to":787,"weight":-0.08197985959939944,"gater":null},{"from":594,"to":788,"weight":-0.4286474932295733,"gater":null},{"from":594,"to":789,"weight":-1.924695913177486,"gater":null},{"from":594,"to":790,"weight":0.6526328821300976,"gater":null},{"from":595,"to":784,"weight":-2.6288826327098853,"gater":null},{"from":595,"to":785,"weight":0.03178535027668837,"gater":null},{"from":595,"to":786,"weight":-0.693176815140626,"gater":null},{"from":595,"to":787,"weight":0.17488344845583279,"gater":null},{"from":595,"to":788,"weight":-0.607655435000784,"gater":null},{"from":595,"to":789,"weight":-0.8495835466606447,"gater":null},{"from":595,"to":790,"weight":1.2115023623142556,"gater":null},{"from":596,"to":784,"weight":-2.449039459249118,"gater":null},{"from":596,"to":785,"weight":-0.5972473595606498,"gater":null},{"from":596,"to":786,"weight":1.4015050657671793,"gater":null},{"from":596,"to":787,"weight":0.11505815760254641,"gater":null},{"from":596,"to":788,"weight":-0.3282641727925547,"gater":null},{"from":596,"to":789,"weight":2.120687608923673,"gater":null},{"from":596,"to":790,"weight":1.0259658542824244,"gater":null},{"from":597,"to":784,"weight":-1.6849653103544715,"gater":null},{"from":597,"to":785,"weight":0.14398083186466587,"gater":null},{"from":597,"to":786,"weight":0.09002814736409306,"gater":null},{"from":597,"to":787,"weight":0.272584635859292,"gater":null},{"from":597,"to":788,"weight":1.055145184000286,"gater":null},{"from":597,"to":789,"weight":-0.11863899257210611,"gater":null},{"from":597,"to":790,"weight":0.04257725352345103,"gater":null},{"from":598,"to":784,"weight":-1.0645056333558502,"gater":null},{"from":598,"to":785,"weight":-0.3378150743864783,"gater":null},{"from":598,"to":786,"weight":-0.2360847048352836,"gater":null},{"from":598,"to":787,"weight":-1.7639518809428778,"gater":null},{"from":598,"to":788,"weight":0.6843987075234134,"gater":null},{"from":598,"to":789,"weight":-1.8055574247201207,"gater":null},{"from":598,"to":790,"weight":-0.06709214447813501,"gater":null},{"from":599,"to":784,"weight":-0.8259017412555574,"gater":null},{"from":599,"to":785,"weight":-1.213661553656658,"gater":null},{"from":599,"to":786,"weight":2.369734368805731,"gater":null},{"from":599,"to":787,"weight":0.14923955145413303,"gater":null},{"from":599,"to":788,"weight":0.6249243377069243,"gater":null},{"from":599,"to":789,"weight":-0.4437128080090159,"gater":null},{"from":599,"to":790,"weight":-3.638038221822414,"gater":null},{"from":600,"to":784,"weight":-2.133015923631184,"gater":null},{"from":600,"to":785,"weight":1.4547235456477612,"gater":null},{"from":600,"to":786,"weight":-0.637466774821063,"gater":null},{"from":600,"to":787,"weight":0.16451859830902066,"gater":null},{"from":600,"to":788,"weight":0.4780281328862517,"gater":null},{"from":600,"to":789,"weight":-3.494722267967228,"gater":null},{"from":600,"to":790,"weight":0.4813882059389821,"gater":null},{"from":601,"to":784,"weight":-1.8376145808348754,"gater":null},{"from":601,"to":785,"weight":1.0060191211102352,"gater":null},{"from":601,"to":786,"weight":0.254025618428357,"gater":null},{"from":601,"to":787,"weight":0.805111864975228,"gater":null},{"from":601,"to":788,"weight":-0.9917735422186639,"gater":null},{"from":601,"to":789,"weight":-1.9211993828545049,"gater":null},{"from":601,"to":790,"weight":0.18359096535489672,"gater":null},{"from":602,"to":784,"weight":0.770782071418317,"gater":null},{"from":602,"to":785,"weight":0.9329007489368405,"gater":null},{"from":602,"to":786,"weight":3.2568172474485086,"gater":null},{"from":602,"to":787,"weight":0.27005879144842265,"gater":null},{"from":602,"to":788,"weight":0.5163198233454689,"gater":null},{"from":602,"to":789,"weight":-0.4476123102723447,"gater":null},{"from":602,"to":790,"weight":0.6378187730644838,"gater":null},{"from":603,"to":784,"weight":-1.4516226439569366,"gater":null},{"from":603,"to":785,"weight":-1.080564000619162,"gater":null},{"from":603,"to":786,"weight":0.49583264285912054,"gater":null},{"from":603,"to":787,"weight":0.7412568597279281,"gater":null},{"from":603,"to":788,"weight":0.2166545751405407,"gater":null},{"from":603,"to":789,"weight":1.4091737498276056,"gater":null},{"from":603,"to":790,"weight":-1.0452261734309871,"gater":null},{"from":604,"to":784,"weight":-0.7224840779308633,"gater":null},{"from":604,"to":785,"weight":-0.5415787399315852,"gater":null},{"from":604,"to":786,"weight":0.47383973357926373,"gater":null},{"from":604,"to":787,"weight":-0.6137943294197591,"gater":null},{"from":604,"to":788,"weight":0.6936474984848415,"gater":null},{"from":604,"to":789,"weight":-1.8733688245665123,"gater":null},{"from":604,"to":790,"weight":-0.16279596603848814,"gater":null},{"from":605,"to":784,"weight":-1.2282624889843647,"gater":null},{"from":605,"to":785,"weight":1.982879178851103,"gater":null},{"from":605,"to":786,"weight":-1.011984019890542,"gater":null},{"from":605,"to":787,"weight":2.2802802095388977,"gater":null},{"from":605,"to":788,"weight":-1.6732265100140185,"gater":null},{"from":605,"to":789,"weight":-1.1418993259201011,"gater":null},{"from":605,"to":790,"weight":0.02276911321186282,"gater":null},{"from":606,"to":784,"weight":0.276778566340832,"gater":null},{"from":606,"to":785,"weight":1.1213004521228311,"gater":null},{"from":606,"to":786,"weight":-0.030414792448083483,"gater":null},{"from":606,"to":787,"weight":1.6401889467010984,"gater":null},{"from":606,"to":788,"weight":-1.4605118158721446,"gater":null},{"from":606,"to":789,"weight":-1.4461851016415455,"gater":null},{"from":606,"to":790,"weight":2.6334152127982176,"gater":null},{"from":607,"to":784,"weight":-0.3266545719128904,"gater":null},{"from":607,"to":785,"weight":1.8588784619783607,"gater":null},{"from":607,"to":786,"weight":-2.556618985570368,"gater":null},{"from":607,"to":787,"weight":2.2297632142898083,"gater":null},{"from":607,"to":788,"weight":-1.1946684105109266,"gater":null},{"from":607,"to":789,"weight":-1.181001144244483,"gater":null},{"from":607,"to":790,"weight":3.7872459580120097,"gater":null},{"from":608,"to":784,"weight":-1.0464084749059832,"gater":null},{"from":608,"to":785,"weight":1.0216973578284843,"gater":null},{"from":608,"to":786,"weight":-0.8895729018935358,"gater":null},{"from":608,"to":787,"weight":0.9753430371960935,"gater":null},{"from":608,"to":788,"weight":-1.2319100843778834,"gater":null},{"from":608,"to":789,"weight":-1.2515690312379393,"gater":null},{"from":608,"to":790,"weight":1.4922032632613837,"gater":null},{"from":609,"to":784,"weight":0.8868538437000351,"gater":null},{"from":609,"to":785,"weight":0.914103400660462,"gater":null},{"from":609,"to":786,"weight":-0.9550626059725094,"gater":null},{"from":609,"to":787,"weight":0.6573345085356951,"gater":null},{"from":609,"to":788,"weight":-0.2541240096592195,"gater":null},{"from":609,"to":789,"weight":-0.8579488168829403,"gater":null},{"from":609,"to":790,"weight":0.5555427171783592,"gater":null},{"from":610,"to":784,"weight":0.4790465984659839,"gater":null},{"from":610,"to":785,"weight":0.4458136640065729,"gater":null},{"from":610,"to":786,"weight":0.33686366231249654,"gater":null},{"from":610,"to":787,"weight":0.22809152030423552,"gater":null},{"from":610,"to":788,"weight":-0.3895750080664566,"gater":null},{"from":610,"to":789,"weight":-0.33286594587579754,"gater":null},{"from":610,"to":790,"weight":0.6242502791922179,"gater":null},{"from":611,"to":784,"weight":0.9694960729139326,"gater":null},{"from":611,"to":785,"weight":0.14286290202592014,"gater":null},{"from":611,"to":786,"weight":-1.3758746652752039,"gater":null},{"from":611,"to":787,"weight":0.2438344027545327,"gater":null},{"from":611,"to":788,"weight":-0.7962843773091266,"gater":null},{"from":611,"to":789,"weight":-2.1618885460785044,"gater":null},{"from":611,"to":790,"weight":0.03594391617933501,"gater":null},{"from":612,"to":784,"weight":1.0556417663413427,"gater":null},{"from":612,"to":785,"weight":-0.14120427285820056,"gater":null},{"from":612,"to":786,"weight":-0.500402018993863,"gater":null},{"from":612,"to":787,"weight":0.010035560190087932,"gater":null},{"from":612,"to":788,"weight":-0.0011257938273058384,"gater":null},{"from":612,"to":789,"weight":-1.0197355361315992,"gater":null},{"from":612,"to":790,"weight":-0.1484840566320916,"gater":null},{"from":613,"to":784,"weight":0.12968833750645906,"gater":null},{"from":613,"to":785,"weight":-0.08922391616632624,"gater":null},{"from":613,"to":786,"weight":-0.3204151014433069,"gater":null},{"from":613,"to":787,"weight":-0.148535571421042,"gater":null},{"from":613,"to":788,"weight":0.07124593328674311,"gater":null},{"from":613,"to":789,"weight":-0.016683473643080367,"gater":null},{"from":613,"to":790,"weight":-0.09561872632801854,"gater":null},{"from":614,"to":784,"weight":-0.07028152320184124,"gater":null},{"from":614,"to":785,"weight":-0.06926491135389062,"gater":null},{"from":614,"to":786,"weight":-0.10639769927590143,"gater":null},{"from":614,"to":787,"weight":0.03095262240123276,"gater":null},{"from":614,"to":788,"weight":-0.02645247352313755,"gater":null},{"from":614,"to":789,"weight":-0.07659461046150186,"gater":null},{"from":614,"to":790,"weight":0.09178777846742997,"gater":null},{"from":615,"to":784,"weight":-0.02206606203308943,"gater":null},{"from":615,"to":785,"weight":-0.08948978617480946,"gater":null},{"from":615,"to":786,"weight":0.024173141689526154,"gater":null},{"from":615,"to":787,"weight":-0.07094995230421129,"gater":null},{"from":615,"to":788,"weight":0.04351180996946352,"gater":null},{"from":615,"to":789,"weight":-0.007783397895644487,"gater":null},{"from":615,"to":790,"weight":-0.08182114162109477,"gater":null},{"from":616,"to":784,"weight":-0.09394516272001621,"gater":null},{"from":616,"to":785,"weight":0.014028749141291957,"gater":null},{"from":616,"to":786,"weight":0.09212671966713254,"gater":null},{"from":616,"to":787,"weight":-0.018918394962203114,"gater":null},{"from":616,"to":788,"weight":0.07744527622442768,"gater":null},{"from":616,"to":789,"weight":-0.06979902829433118,"gater":null},{"from":616,"to":790,"weight":-0.020029255510240818,"gater":null},{"from":617,"to":784,"weight":0.04272235536193841,"gater":null},{"from":617,"to":785,"weight":-0.012304929359877231,"gater":null},{"from":617,"to":786,"weight":0.09147245282840483,"gater":null},{"from":617,"to":787,"weight":0.09641326627607269,"gater":null},{"from":617,"to":788,"weight":0.044594581978731174,"gater":null},{"from":617,"to":789,"weight":-0.04751509341753635,"gater":null},{"from":617,"to":790,"weight":-0.0025343762126074088,"gater":null},{"from":618,"to":784,"weight":-0.5682249291933749,"gater":null},{"from":618,"to":785,"weight":0.0748571448610284,"gater":null},{"from":618,"to":786,"weight":0.060554484875777054,"gater":null},{"from":618,"to":787,"weight":-0.06436152329178782,"gater":null},{"from":618,"to":788,"weight":0.06098746342150902,"gater":null},{"from":618,"to":789,"weight":-0.04382974452226302,"gater":null},{"from":618,"to":790,"weight":0.029055407821506295,"gater":null},{"from":619,"to":784,"weight":-0.9300008295734703,"gater":null},{"from":619,"to":785,"weight":-0.04629199630070132,"gater":null},{"from":619,"to":786,"weight":-0.3122485974254597,"gater":null},{"from":619,"to":787,"weight":0.2940061025460171,"gater":null},{"from":619,"to":788,"weight":-0.47174039810302093,"gater":null},{"from":619,"to":789,"weight":-1.5211076558197487,"gater":null},{"from":619,"to":790,"weight":-0.015848772920897713,"gater":null},{"from":620,"to":784,"weight":-1.0047049733728992,"gater":null},{"from":620,"to":785,"weight":0.07560854910012266,"gater":null},{"from":620,"to":786,"weight":0.40380207634372445,"gater":null},{"from":620,"to":787,"weight":0.7722692233241222,"gater":null},{"from":620,"to":788,"weight":-0.4595656417010055,"gater":null},{"from":620,"to":789,"weight":-1.3793421867654696,"gater":null},{"from":620,"to":790,"weight":0.35053514980747535,"gater":null},{"from":621,"to":784,"weight":-1.9829966470931841,"gater":null},{"from":621,"to":785,"weight":-0.35629385508914807,"gater":null},{"from":621,"to":786,"weight":0.5415988275068432,"gater":null},{"from":621,"to":787,"weight":0.5786109501451202,"gater":null},{"from":621,"to":788,"weight":0.8547922128227499,"gater":null},{"from":621,"to":789,"weight":1.2907685159220619,"gater":null},{"from":621,"to":790,"weight":-0.1363068528957347,"gater":null},{"from":622,"to":784,"weight":-2.0582969178808077,"gater":null},{"from":622,"to":785,"weight":-0.39424785900234316,"gater":null},{"from":622,"to":786,"weight":-2.234924325710067,"gater":null},{"from":622,"to":787,"weight":-0.3685668222682964,"gater":null},{"from":622,"to":788,"weight":0.1945060754595841,"gater":null},{"from":622,"to":789,"weight":0.6602680572366807,"gater":null},{"from":622,"to":790,"weight":-1.4988133973449589,"gater":null},{"from":623,"to":784,"weight":-1.3936014603998648,"gater":null},{"from":623,"to":785,"weight":-0.7326131938188177,"gater":null},{"from":623,"to":786,"weight":-1.8120395910964568,"gater":null},{"from":623,"to":787,"weight":-0.34505781186487683,"gater":null},{"from":623,"to":788,"weight":-0.5337609678914484,"gater":null},{"from":623,"to":789,"weight":-3.623090954987278,"gater":null},{"from":623,"to":790,"weight":-1.2431768358279132,"gater":null},{"from":624,"to":784,"weight":0.045037494373834905,"gater":null},{"from":624,"to":785,"weight":-0.7030805616319138,"gater":null},{"from":624,"to":786,"weight":-0.5368937292692731,"gater":null},{"from":624,"to":787,"weight":-0.19666505609118756,"gater":null},{"from":624,"to":788,"weight":-0.12213649470500819,"gater":null},{"from":624,"to":789,"weight":-0.9690422080443281,"gater":null},{"from":624,"to":790,"weight":-0.580385705370307,"gater":null},{"from":625,"to":784,"weight":-1.417067304072012,"gater":null},{"from":625,"to":785,"weight":-1.1794993596154493,"gater":null},{"from":625,"to":786,"weight":-0.6203847233061653,"gater":null},{"from":625,"to":787,"weight":0.07120059808730228,"gater":null},{"from":625,"to":788,"weight":1.0446540793716583,"gater":null},{"from":625,"to":789,"weight":0.1109164289857711,"gater":null},{"from":625,"to":790,"weight":0.42193173322230765,"gater":null},{"from":626,"to":784,"weight":-0.4991860863349479,"gater":null},{"from":626,"to":785,"weight":0.6278265081249053,"gater":null},{"from":626,"to":786,"weight":-0.5450312162648143,"gater":null},{"from":626,"to":787,"weight":1.7260314018625007,"gater":null},{"from":626,"to":788,"weight":0.05842141997150963,"gater":null},{"from":626,"to":789,"weight":-1.8368454790956101,"gater":null},{"from":626,"to":790,"weight":0.20838593552606155,"gater":null},{"from":627,"to":784,"weight":0.6405516708943232,"gater":null},{"from":627,"to":785,"weight":0.47019242897110564,"gater":null},{"from":627,"to":786,"weight":0.3731047928890027,"gater":null},{"from":627,"to":787,"weight":-0.797871152302045,"gater":null},{"from":627,"to":788,"weight":-0.909994218917033,"gater":null},{"from":627,"to":789,"weight":1.2058920764972274,"gater":null},{"from":627,"to":790,"weight":-0.8205943419504002,"gater":null},{"from":628,"to":784,"weight":-1.4818072741491075,"gater":null},{"from":628,"to":785,"weight":1.5070927670859304,"gater":null},{"from":628,"to":786,"weight":-2.1574699996136952,"gater":null},{"from":628,"to":787,"weight":0.43021573645393096,"gater":null},{"from":628,"to":788,"weight":0.951662514474886,"gater":null},{"from":628,"to":789,"weight":-0.3272263757873644,"gater":null},{"from":628,"to":790,"weight":0.21130613320477762,"gater":null},{"from":629,"to":784,"weight":-1.9555576778790622,"gater":null},{"from":629,"to":785,"weight":0.5127455835964587,"gater":null},{"from":629,"to":786,"weight":1.603414555671994,"gater":null},{"from":629,"to":787,"weight":1.0907568174534692,"gater":null},{"from":629,"to":788,"weight":2.3983936500649863,"gater":null},{"from":629,"to":789,"weight":1.2880656209500936,"gater":null},{"from":629,"to":790,"weight":0.12597961552423415,"gater":null},{"from":630,"to":784,"weight":0.5156925773626717,"gater":null},{"from":630,"to":785,"weight":-1.8951016647820584,"gater":null},{"from":630,"to":786,"weight":-1.7230458168189329,"gater":null},{"from":630,"to":787,"weight":0.25088989609505347,"gater":null},{"from":630,"to":788,"weight":-0.26407285377639744,"gater":null},{"from":630,"to":789,"weight":0.03517970734868049,"gater":null},{"from":630,"to":790,"weight":0.8702963214588594,"gater":null},{"from":631,"to":784,"weight":-1.4215638433866828,"gater":null},{"from":631,"to":785,"weight":1.589089166319941,"gater":null},{"from":631,"to":786,"weight":0.6473156728733842,"gater":null},{"from":631,"to":787,"weight":1.0482582578749295,"gater":null},{"from":631,"to":788,"weight":0.5151492191458148,"gater":null},{"from":631,"to":789,"weight":-0.29915789176811075,"gater":null},{"from":631,"to":790,"weight":-0.985261429052361,"gater":null},{"from":632,"to":784,"weight":2.479067819828216,"gater":null},{"from":632,"to":785,"weight":-0.8063715106514665,"gater":null},{"from":632,"to":786,"weight":4.321421140519119,"gater":null},{"from":632,"to":787,"weight":0.33598466823274836,"gater":null},{"from":632,"to":788,"weight":-1.3989667893483875,"gater":null},{"from":632,"to":789,"weight":0.5225330836848756,"gater":null},{"from":632,"to":790,"weight":-0.06328358081010185,"gater":null},{"from":633,"to":784,"weight":-1.8816927553500506,"gater":null},{"from":633,"to":785,"weight":-1.158206141545377,"gater":null},{"from":633,"to":786,"weight":-2.18085043087391,"gater":null},{"from":633,"to":787,"weight":0.3213391091914141,"gater":null},{"from":633,"to":788,"weight":-0.958795052775779,"gater":null},{"from":633,"to":789,"weight":-0.4140825601062916,"gater":null},{"from":633,"to":790,"weight":0.7223861960012645,"gater":null},{"from":634,"to":784,"weight":0.27830772800883585,"gater":null},{"from":634,"to":785,"weight":-1.1406369655991317,"gater":null},{"from":634,"to":786,"weight":2.242274138669281,"gater":null},{"from":634,"to":787,"weight":-0.46178966691291445,"gater":null},{"from":634,"to":788,"weight":-1.3287461064930661,"gater":null},{"from":634,"to":789,"weight":-2.581255816800689,"gater":null},{"from":634,"to":790,"weight":0.9690439090599022,"gater":null},{"from":635,"to":784,"weight":-0.8946636467987715,"gater":null},{"from":635,"to":785,"weight":0.4776703723390716,"gater":null},{"from":635,"to":786,"weight":1.6102234144090548,"gater":null},{"from":635,"to":787,"weight":1.1556998555412024,"gater":null},{"from":635,"to":788,"weight":-0.8085925894371285,"gater":null},{"from":635,"to":789,"weight":-1.647145769340547,"gater":null},{"from":635,"to":790,"weight":2.1314125370766344,"gater":null},{"from":636,"to":784,"weight":-0.8372400490723786,"gater":null},{"from":636,"to":785,"weight":0.8024932532697149,"gater":null},{"from":636,"to":786,"weight":0.3815660968810921,"gater":null},{"from":636,"to":787,"weight":0.3131831224439394,"gater":null},{"from":636,"to":788,"weight":-0.5482501114642965,"gater":null},{"from":636,"to":789,"weight":0.3818203964852054,"gater":null},{"from":636,"to":790,"weight":1.4641208365074565,"gater":null},{"from":637,"to":784,"weight":-0.09469133737429869,"gater":null},{"from":637,"to":785,"weight":0.2298041927302634,"gater":null},{"from":637,"to":786,"weight":0.017494345647948446,"gater":null},{"from":637,"to":787,"weight":0.2531878773599918,"gater":null},{"from":637,"to":788,"weight":-0.3891848584792999,"gater":null},{"from":637,"to":789,"weight":-1.5306114843213965,"gater":null},{"from":637,"to":790,"weight":0.7285280011423864,"gater":null},{"from":638,"to":784,"weight":-0.7528911405068782,"gater":null},{"from":638,"to":785,"weight":-0.002455987030055372,"gater":null},{"from":638,"to":786,"weight":1.330380508096693,"gater":null},{"from":638,"to":787,"weight":0.3720442076636924,"gater":null},{"from":638,"to":788,"weight":-0.606570307380888,"gater":null},{"from":638,"to":789,"weight":-1.4296138534266694,"gater":null},{"from":638,"to":790,"weight":0.712536103386935,"gater":null},{"from":639,"to":784,"weight":0.040101008290569534,"gater":null},{"from":639,"to":785,"weight":-0.006887017926457334,"gater":null},{"from":639,"to":786,"weight":-1.098894719004461,"gater":null},{"from":639,"to":787,"weight":0.049498791966938516,"gater":null},{"from":639,"to":788,"weight":-0.7439226462799066,"gater":null},{"from":639,"to":789,"weight":-1.7831623175930922,"gater":null},{"from":639,"to":790,"weight":-0.24852278716222048,"gater":null},{"from":640,"to":784,"weight":1.2478929943797739,"gater":null},{"from":640,"to":785,"weight":0.1082145639674203,"gater":null},{"from":640,"to":786,"weight":0.010530822477158386,"gater":null},{"from":640,"to":787,"weight":-0.05848786821328307,"gater":null},{"from":640,"to":788,"weight":-0.023919366876467466,"gater":null},{"from":640,"to":789,"weight":-0.5000882975263018,"gater":null},{"from":640,"to":790,"weight":0.00666512829512043,"gater":null},{"from":641,"to":784,"weight":0.12054227907411866,"gater":null},{"from":641,"to":785,"weight":0.054156992088544506,"gater":null},{"from":641,"to":786,"weight":-0.24394545305559198,"gater":null},{"from":641,"to":787,"weight":-0.0751529067227055,"gater":null},{"from":641,"to":788,"weight":-0.05815682858774186,"gater":null},{"from":641,"to":789,"weight":-0.12797907812419998,"gater":null},{"from":641,"to":790,"weight":-0.07771995337440846,"gater":null},{"from":642,"to":784,"weight":0.035113458259914326,"gater":null},{"from":642,"to":785,"weight":-0.05965269221442886,"gater":null},{"from":642,"to":786,"weight":-0.08751923332730895,"gater":null},{"from":642,"to":787,"weight":0.002729839418042083,"gater":null},{"from":642,"to":788,"weight":0.07127972800246833,"gater":null},{"from":642,"to":789,"weight":0.0300379352785765,"gater":null},{"from":642,"to":790,"weight":-0.08560936215917057,"gater":null},{"from":643,"to":784,"weight":-0.08082083604970541,"gater":null},{"from":643,"to":785,"weight":0.09979803531199094,"gater":null},{"from":643,"to":786,"weight":-0.02347174863536776,"gater":null},{"from":643,"to":787,"weight":-0.001837227280107892,"gater":null},{"from":643,"to":788,"weight":-0.014592751192308823,"gater":null},{"from":643,"to":789,"weight":0.025971180739557675,"gater":null},{"from":643,"to":790,"weight":0.07462400545722811,"gater":null},{"from":644,"to":784,"weight":0.09490428600825523,"gater":null},{"from":644,"to":785,"weight":0.003523723866802525,"gater":null},{"from":644,"to":786,"weight":-0.07447115366603092,"gater":null},{"from":644,"to":787,"weight":-0.025766832464330314,"gater":null},{"from":644,"to":788,"weight":0.09223713942427333,"gater":null},{"from":644,"to":789,"weight":-0.09775773526997589,"gater":null},{"from":644,"to":790,"weight":0.012331759208290466,"gater":null},{"from":645,"to":784,"weight":-0.06705333887802345,"gater":null},{"from":645,"to":785,"weight":-0.06823405496839836,"gater":null},{"from":645,"to":786,"weight":-0.09055369364840096,"gater":null},{"from":645,"to":787,"weight":0.08045331436616343,"gater":null},{"from":645,"to":788,"weight":-0.005391350757662033,"gater":null},{"from":645,"to":789,"weight":-0.046333377349394626,"gater":null},{"from":645,"to":790,"weight":0.06564410815430902,"gater":null},{"from":646,"to":784,"weight":-0.3616082522525284,"gater":null},{"from":646,"to":785,"weight":0.0011780200239052377,"gater":null},{"from":646,"to":786,"weight":0.09714316647007924,"gater":null},{"from":646,"to":787,"weight":-0.09470993672999187,"gater":null},{"from":646,"to":788,"weight":0.013081651281232395,"gater":null},{"from":646,"to":789,"weight":-0.053575958725341724,"gater":null},{"from":646,"to":790,"weight":0.06499845044149796,"gater":null},{"from":647,"to":784,"weight":-0.6673385853708145,"gater":null},{"from":647,"to":785,"weight":-0.05144739137265874,"gater":null},{"from":647,"to":786,"weight":-0.8260968491224076,"gater":null},{"from":647,"to":787,"weight":0.5715083514027913,"gater":null},{"from":647,"to":788,"weight":0.0041206765307340975,"gater":null},{"from":647,"to":789,"weight":-0.22755701289911592,"gater":null},{"from":647,"to":790,"weight":0.0784088211261047,"gater":null},{"from":648,"to":784,"weight":-1.4917862794329957,"gater":null},{"from":648,"to":785,"weight":-0.09644583555739814,"gater":null},{"from":648,"to":786,"weight":-0.9218854964753194,"gater":null},{"from":648,"to":787,"weight":0.453041090084987,"gater":null},{"from":648,"to":788,"weight":-0.4848108115051804,"gater":null},{"from":648,"to":789,"weight":-1.3927228291685958,"gater":null},{"from":648,"to":790,"weight":0.40785688993598734,"gater":null},{"from":649,"to":784,"weight":-1.0912415581980603,"gater":null},{"from":649,"to":785,"weight":-0.4568113270505156,"gater":null},{"from":649,"to":786,"weight":-0.5705055667450191,"gater":null},{"from":649,"to":787,"weight":-0.3264705132244912,"gater":null},{"from":649,"to":788,"weight":0.10471588967491148,"gater":null},{"from":649,"to":789,"weight":-0.12333505081887591,"gater":null},{"from":649,"to":790,"weight":-1.2575759894718523,"gater":null},{"from":650,"to":784,"weight":-0.6106922525058738,"gater":null},{"from":650,"to":785,"weight":-1.778497303775738,"gater":null},{"from":650,"to":786,"weight":-0.32121920347817884,"gater":null},{"from":650,"to":787,"weight":-1.315494082973864,"gater":null},{"from":650,"to":788,"weight":-0.4488129054525126,"gater":null},{"from":650,"to":789,"weight":-0.08315225576817512,"gater":null},{"from":650,"to":790,"weight":-1.8385548096866902,"gater":null},{"from":651,"to":784,"weight":0.3312506691951448,"gater":null},{"from":651,"to":785,"weight":-1.2947763054747352,"gater":null},{"from":651,"to":786,"weight":-0.7285546828336428,"gater":null},{"from":651,"to":787,"weight":-1.4704448368404937,"gater":null},{"from":651,"to":788,"weight":-0.19308287837196425,"gater":null},{"from":651,"to":789,"weight":-0.8235363502935416,"gater":null},{"from":651,"to":790,"weight":-1.112278587119836,"gater":null},{"from":652,"to":784,"weight":0.7768024783384967,"gater":null},{"from":652,"to":785,"weight":0.8806965663770888,"gater":null},{"from":652,"to":786,"weight":1.640699909758448,"gater":null},{"from":652,"to":787,"weight":-1.176968659527091,"gater":null},{"from":652,"to":788,"weight":-0.20194068092844145,"gater":null},{"from":652,"to":789,"weight":1.8511169201731956,"gater":null},{"from":652,"to":790,"weight":0.704164774443413,"gater":null},{"from":653,"to":784,"weight":-0.5222754446065679,"gater":null},{"from":653,"to":785,"weight":0.5990125035697987,"gater":null},{"from":653,"to":786,"weight":-0.39184761712662813,"gater":null},{"from":653,"to":787,"weight":1.1517480605105626,"gater":null},{"from":653,"to":788,"weight":0.8208348706448928,"gater":null},{"from":653,"to":789,"weight":2.9408081444488454,"gater":null},{"from":653,"to":790,"weight":3.466329911590023,"gater":null},{"from":654,"to":784,"weight":-0.560077136023655,"gater":null},{"from":654,"to":785,"weight":-0.3535977534413898,"gater":null},{"from":654,"to":786,"weight":0.5232472837322018,"gater":null},{"from":654,"to":787,"weight":1.1122185174052934,"gater":null},{"from":654,"to":788,"weight":0.25174620351099913,"gater":null},{"from":654,"to":789,"weight":1.35337743575084,"gater":null},{"from":654,"to":790,"weight":0.19261304453686318,"gater":null},{"from":655,"to":784,"weight":-0.38151948828671334,"gater":null},{"from":655,"to":785,"weight":0.6032466833911668,"gater":null},{"from":655,"to":786,"weight":0.5201185226788161,"gater":null},{"from":655,"to":787,"weight":-0.09199197447806344,"gater":null},{"from":655,"to":788,"weight":-0.2740479353016779,"gater":null},{"from":655,"to":789,"weight":-0.26326579632358854,"gater":null},{"from":655,"to":790,"weight":0.19586403105790431,"gater":null},{"from":656,"to":784,"weight":-0.17017414508708797,"gater":null},{"from":656,"to":785,"weight":-0.7301217157399914,"gater":null},{"from":656,"to":786,"weight":-1.0507836635241792,"gater":null},{"from":656,"to":787,"weight":1.5232783517291255,"gater":null},{"from":656,"to":788,"weight":1.9716171807409457,"gater":null},{"from":656,"to":789,"weight":-0.5032357795626697,"gater":null},{"from":656,"to":790,"weight":0.5792898018953295,"gater":null},{"from":657,"to":784,"weight":0.9902038154125146,"gater":null},{"from":657,"to":785,"weight":-0.4682347446225311,"gater":null},{"from":657,"to":786,"weight":-2.0398503870953486,"gater":null},{"from":657,"to":787,"weight":0.6250994780256623,"gater":null},{"from":657,"to":788,"weight":1.624314464409854,"gater":null},{"from":657,"to":789,"weight":1.4218044623699855,"gater":null},{"from":657,"to":790,"weight":-0.08155669938612747,"gater":null},{"from":658,"to":784,"weight":-0.9649891765557709,"gater":null},{"from":658,"to":785,"weight":1.4399625897971722,"gater":null},{"from":658,"to":786,"weight":-0.5312175781660929,"gater":null},{"from":658,"to":787,"weight":2.1834443765931377,"gater":null},{"from":658,"to":788,"weight":1.1100400228816731,"gater":null},{"from":658,"to":789,"weight":2.72730235870394,"gater":null},{"from":658,"to":790,"weight":1.6473069768150896,"gater":null},{"from":659,"to":784,"weight":-1.5239354511795995,"gater":null},{"from":659,"to":785,"weight":-0.8970103723721259,"gater":null},{"from":659,"to":786,"weight":-0.29650221946010547,"gater":null},{"from":659,"to":787,"weight":0.7016295434568774,"gater":null},{"from":659,"to":788,"weight":-0.3604552407278963,"gater":null},{"from":659,"to":789,"weight":1.5573785395331998,"gater":null},{"from":659,"to":790,"weight":0.7169320803836489,"gater":null},{"from":660,"to":784,"weight":-1.691285609515173,"gater":null},{"from":660,"to":785,"weight":-2.6741855872225786,"gater":null},{"from":660,"to":786,"weight":0.14068081992247614,"gater":null},{"from":660,"to":787,"weight":-0.8205799965597051,"gater":null},{"from":660,"to":788,"weight":0.5357019039814365,"gater":null},{"from":660,"to":789,"weight":0.3326040982951233,"gater":null},{"from":660,"to":790,"weight":-0.43185653206790586,"gater":null},{"from":661,"to":784,"weight":-0.6330371015410773,"gater":null},{"from":661,"to":785,"weight":-3.2622627166855036,"gater":null},{"from":661,"to":786,"weight":1.5147437667782502,"gater":null},{"from":661,"to":787,"weight":0.09404142009588908,"gater":null},{"from":661,"to":788,"weight":-0.13098248609495936,"gater":null},{"from":661,"to":789,"weight":1.5201549284480864,"gater":null},{"from":661,"to":790,"weight":0.3256953764436929,"gater":null},{"from":662,"to":784,"weight":0.17724500218583297,"gater":null},{"from":662,"to":785,"weight":-1.0929168553171626,"gater":null},{"from":662,"to":786,"weight":0.8823080591678877,"gater":null},{"from":662,"to":787,"weight":0.27672005961436436,"gater":null},{"from":662,"to":788,"weight":-0.42632154986368614,"gater":null},{"from":662,"to":789,"weight":2.4070207480410604,"gater":null},{"from":662,"to":790,"weight":0.24540841987182613,"gater":null},{"from":663,"to":784,"weight":0.7955663308827297,"gater":null},{"from":663,"to":785,"weight":0.04642662269255822,"gater":null},{"from":663,"to":786,"weight":1.5365685707175336,"gater":null},{"from":663,"to":787,"weight":0.8535354464000424,"gater":null},{"from":663,"to":788,"weight":-1.0558095175735849,"gater":null},{"from":663,"to":789,"weight":2.883831689255198,"gater":null},{"from":663,"to":790,"weight":0.919724665202181,"gater":null},{"from":664,"to":784,"weight":-0.527749859008216,"gater":null},{"from":664,"to":785,"weight":0.190730403896837,"gater":null},{"from":664,"to":786,"weight":2.103028942810582,"gater":null},{"from":664,"to":787,"weight":0.3806946485284274,"gater":null},{"from":664,"to":788,"weight":-1.0683665025111773,"gater":null},{"from":664,"to":789,"weight":1.3320820880045023,"gater":null},{"from":664,"to":790,"weight":0.42307979450472777,"gater":null},{"from":665,"to":784,"weight":-1.1865414657880937,"gater":null},{"from":665,"to":785,"weight":-0.20706892160089402,"gater":null},{"from":665,"to":786,"weight":1.0317095012633233,"gater":null},{"from":665,"to":787,"weight":0.3291547892939333,"gater":null},{"from":665,"to":788,"weight":-0.9004829545342468,"gater":null},{"from":665,"to":789,"weight":0.2040015872764274,"gater":null},{"from":665,"to":790,"weight":1.2868737551550367,"gater":null},{"from":666,"to":784,"weight":-0.45175962505619066,"gater":null},{"from":666,"to":785,"weight":-0.535962214346182,"gater":null},{"from":666,"to":786,"weight":-0.6151097930324455,"gater":null},{"from":666,"to":787,"weight":0.16202502643129593,"gater":null},{"from":666,"to":788,"weight":-0.43091228301714973,"gater":null},{"from":666,"to":789,"weight":-1.195185454540682,"gater":null},{"from":666,"to":790,"weight":0.33624111610361,"gater":null},{"from":667,"to":784,"weight":0.20787422831481722,"gater":null},{"from":667,"to":785,"weight":-0.275665285444586,"gater":null},{"from":667,"to":786,"weight":0.21489431183088195,"gater":null},{"from":667,"to":787,"weight":-0.11849940687317773,"gater":null},{"from":667,"to":788,"weight":-0.6476540043071946,"gater":null},{"from":667,"to":789,"weight":-0.6122370752272854,"gater":null},{"from":667,"to":790,"weight":-0.3404157168095127,"gater":null},{"from":668,"to":784,"weight":0.20754865698631272,"gater":null},{"from":668,"to":785,"weight":-0.13530710599546436,"gater":null},{"from":668,"to":786,"weight":-0.04134896691798708,"gater":null},{"from":668,"to":787,"weight":0.17675006571525906,"gater":null},{"from":668,"to":788,"weight":0.004723911283235831,"gater":null},{"from":668,"to":789,"weight":-0.5454089698225294,"gater":null},{"from":668,"to":790,"weight":-0.1650399028473319,"gater":null},{"from":669,"to":784,"weight":0.0761694608915594,"gater":null},{"from":669,"to":785,"weight":-0.03407884168025621,"gater":null},{"from":669,"to":786,"weight":0.011239013341514685,"gater":null},{"from":669,"to":787,"weight":0.08076470798034532,"gater":null},{"from":669,"to":788,"weight":-0.036330161832142195,"gater":null},{"from":669,"to":789,"weight":-0.07523941065494369,"gater":null},{"from":669,"to":790,"weight":-0.09095755880741063,"gater":null},{"from":670,"to":784,"weight":-0.07597962271899115,"gater":null},{"from":670,"to":785,"weight":0.06839643116578793,"gater":null},{"from":670,"to":786,"weight":0.06598276669546248,"gater":null},{"from":670,"to":787,"weight":-0.0828545908955042,"gater":null},{"from":670,"to":788,"weight":-0.03741189687717524,"gater":null},{"from":670,"to":789,"weight":0.06128848053660435,"gater":null},{"from":670,"to":790,"weight":-0.08799348660487981,"gater":null},{"from":671,"to":784,"weight":0.05264636103784012,"gater":null},{"from":671,"to":785,"weight":-0.05760029550654253,"gater":null},{"from":671,"to":786,"weight":-0.03469862876250654,"gater":null},{"from":671,"to":787,"weight":-0.09306353749618257,"gater":null},{"from":671,"to":788,"weight":-0.09293561772225273,"gater":null},{"from":671,"to":789,"weight":0.06653130453165698,"gater":null},{"from":671,"to":790,"weight":-0.037505542553858184,"gater":null},{"from":672,"to":784,"weight":0.011355296368436768,"gater":null},{"from":672,"to":785,"weight":0.06467393758635645,"gater":null},{"from":672,"to":786,"weight":-0.078478675388951,"gater":null},{"from":672,"to":787,"weight":0.015158636560364022,"gater":null},{"from":672,"to":788,"weight":0.0890234326782344,"gater":null},{"from":672,"to":789,"weight":-0.02399535245446427,"gater":null},{"from":672,"to":790,"weight":0.08417300018475812,"gater":null},{"from":673,"to":784,"weight":-0.001310754558836752,"gater":null},{"from":673,"to":785,"weight":-0.09485746585559399,"gater":null},{"from":673,"to":786,"weight":0.05227666813854248,"gater":null},{"from":673,"to":787,"weight":0.061795865252023935,"gater":null},{"from":673,"to":788,"weight":-0.06506812282950986,"gater":null},{"from":673,"to":789,"weight":0.007691626131777832,"gater":null},{"from":673,"to":790,"weight":0.05677066834467803,"gater":null},{"from":674,"to":784,"weight":0.06701880925111045,"gater":null},{"from":674,"to":785,"weight":-0.005852734619926234,"gater":null},{"from":674,"to":786,"weight":0.054500004402259355,"gater":null},{"from":674,"to":787,"weight":0.04345400475212066,"gater":null},{"from":674,"to":788,"weight":-0.09312473387766712,"gater":null},{"from":674,"to":789,"weight":0.05546194473141561,"gater":null},{"from":674,"to":790,"weight":0.09514897468341005,"gater":null},{"from":675,"to":784,"weight":-0.859272025879774,"gater":null},{"from":675,"to":785,"weight":0.05678292629696332,"gater":null},{"from":675,"to":786,"weight":-0.06036632921239968,"gater":null},{"from":675,"to":787,"weight":0.389587088070944,"gater":null},{"from":675,"to":788,"weight":-0.08520970477341991,"gater":null},{"from":675,"to":789,"weight":0.4589785894693228,"gater":null},{"from":675,"to":790,"weight":0.11910054815648341,"gater":null},{"from":676,"to":784,"weight":-2.1499269443189943,"gater":null},{"from":676,"to":785,"weight":0.05759078955545501,"gater":null},{"from":676,"to":786,"weight":0.17190956585946035,"gater":null},{"from":676,"to":787,"weight":0.26556857761390384,"gater":null},{"from":676,"to":788,"weight":-0.17064835528379668,"gater":null},{"from":676,"to":789,"weight":0.5514761712711996,"gater":null},{"from":676,"to":790,"weight":-0.019157785248378238,"gater":null},{"from":677,"to":784,"weight":-0.46120536514612476,"gater":null},{"from":677,"to":785,"weight":-0.024884163267200957,"gater":null},{"from":677,"to":786,"weight":-0.31238328916498675,"gater":null},{"from":677,"to":787,"weight":-0.4344400202995575,"gater":null},{"from":677,"to":788,"weight":-0.3141965350397864,"gater":null},{"from":677,"to":789,"weight":1.0572353232253369,"gater":null},{"from":677,"to":790,"weight":-1.3584697531042782,"gater":null},{"from":678,"to":784,"weight":0.6376620579617716,"gater":null},{"from":678,"to":785,"weight":-1.5090293000952404,"gater":null},{"from":678,"to":786,"weight":-2.1054102649492936,"gater":null},{"from":678,"to":787,"weight":-1.449953341565908,"gater":null},{"from":678,"to":788,"weight":-1.026261164383467,"gater":null},{"from":678,"to":789,"weight":0.9713781118676168,"gater":null},{"from":678,"to":790,"weight":-3.1251295492532343,"gater":null},{"from":679,"to":784,"weight":-0.2832811641696923,"gater":null},{"from":679,"to":785,"weight":1.2270134518764655,"gater":null},{"from":679,"to":786,"weight":-0.8017587678247577,"gater":null},{"from":679,"to":787,"weight":-0.20946689258967613,"gater":null},{"from":679,"to":788,"weight":0.01541076945877503,"gater":null},{"from":679,"to":789,"weight":-1.4718977079361986,"gater":null},{"from":679,"to":790,"weight":-2.2339714333692022,"gater":null},{"from":680,"to":784,"weight":-0.3263441975552332,"gater":null},{"from":680,"to":785,"weight":2.4267269195275887,"gater":null},{"from":680,"to":786,"weight":1.307837397109862,"gater":null},{"from":680,"to":787,"weight":0.26346556836931156,"gater":null},{"from":680,"to":788,"weight":0.5030486512798761,"gater":null},{"from":680,"to":789,"weight":-0.08661402875681777,"gater":null},{"from":680,"to":790,"weight":-0.07052355871319323,"gater":null},{"from":681,"to":784,"weight":-1.6138993590962287,"gater":null},{"from":681,"to":785,"weight":0.9896759668185151,"gater":null},{"from":681,"to":786,"weight":-1.2487860955367296,"gater":null},{"from":681,"to":787,"weight":1.9922969051021469,"gater":null},{"from":681,"to":788,"weight":-1.0754047301109997,"gater":null},{"from":681,"to":789,"weight":0.2767624100784638,"gater":null},{"from":681,"to":790,"weight":0.8793776325726121,"gater":null},{"from":682,"to":784,"weight":-0.08659771108735437,"gater":null},{"from":682,"to":785,"weight":-0.3082140691124788,"gater":null},{"from":682,"to":786,"weight":-1.0306522506243474,"gater":null},{"from":682,"to":787,"weight":0.4174974416337801,"gater":null},{"from":682,"to":788,"weight":-0.6023160929967343,"gater":null},{"from":682,"to":789,"weight":-0.41394278968730913,"gater":null},{"from":682,"to":790,"weight":0.8221981447068604,"gater":null},{"from":683,"to":784,"weight":0.38841971660343283,"gater":null},{"from":683,"to":785,"weight":0.31462795730495297,"gater":null},{"from":683,"to":786,"weight":1.7477787232609088,"gater":null},{"from":683,"to":787,"weight":1.0046198846714367,"gater":null},{"from":683,"to":788,"weight":0.11718677117121787,"gater":null},{"from":683,"to":789,"weight":-0.18109971262592606,"gater":null},{"from":683,"to":790,"weight":0.19943757105225624,"gater":null},{"from":684,"to":784,"weight":-1.4547577878654823,"gater":null},{"from":684,"to":785,"weight":1.588093001223822,"gater":null},{"from":684,"to":786,"weight":1.2985942287222616,"gater":null},{"from":684,"to":787,"weight":1.365783713186878,"gater":null},{"from":684,"to":788,"weight":-0.711879054623124,"gater":null},{"from":684,"to":789,"weight":-0.06700207846524894,"gater":null},{"from":684,"to":790,"weight":2.1832023098557576,"gater":null},{"from":685,"to":784,"weight":-2.0743863893326675,"gater":null},{"from":685,"to":785,"weight":1.456828013010008,"gater":null},{"from":685,"to":786,"weight":-1.5015108452695372,"gater":null},{"from":685,"to":787,"weight":0.6767409973672533,"gater":null},{"from":685,"to":788,"weight":-1.827966431922843,"gater":null},{"from":685,"to":789,"weight":1.0536600394716364,"gater":null},{"from":685,"to":790,"weight":-0.7742192216749556,"gater":null},{"from":686,"to":784,"weight":-1.7439464791848815,"gater":null},{"from":686,"to":785,"weight":1.0143984518358469,"gater":null},{"from":686,"to":786,"weight":2.473448819732307,"gater":null},{"from":686,"to":787,"weight":1.7735947043026488,"gater":null},{"from":686,"to":788,"weight":-1.5154211379972025,"gater":null},{"from":686,"to":789,"weight":2.6611173833498443,"gater":null},{"from":686,"to":790,"weight":-0.617991016480039,"gater":null},{"from":687,"to":784,"weight":-1.9776723907682723,"gater":null},{"from":687,"to":785,"weight":1.7905518608369124,"gater":null},{"from":687,"to":786,"weight":-3.069222576064693,"gater":null},{"from":687,"to":787,"weight":0.5818396227127142,"gater":null},{"from":687,"to":788,"weight":0.08915096715438277,"gater":null},{"from":687,"to":789,"weight":2.203966050849587,"gater":null},{"from":687,"to":790,"weight":-3.156687859396379,"gater":null},{"from":688,"to":784,"weight":-2.858865077297478,"gater":null},{"from":688,"to":785,"weight":0.770353597663145,"gater":null},{"from":688,"to":786,"weight":-0.6815341839234664,"gater":null},{"from":688,"to":787,"weight":2.727005515916238,"gater":null},{"from":688,"to":788,"weight":0.19573158537388433,"gater":null},{"from":688,"to":789,"weight":2.255113313440736,"gater":null},{"from":688,"to":790,"weight":-0.2709265789578383,"gater":null},{"from":689,"to":784,"weight":0.47372483778272784,"gater":null},{"from":689,"to":785,"weight":0.12081042327834,"gater":null},{"from":689,"to":786,"weight":1.440847701438494,"gater":null},{"from":689,"to":787,"weight":0.8274279157634197,"gater":null},{"from":689,"to":788,"weight":0.2014679014310941,"gater":null},{"from":689,"to":789,"weight":2.6865045695751038,"gater":null},{"from":689,"to":790,"weight":0.16903478936368235,"gater":null},{"from":690,"to":784,"weight":0.49578113381421124,"gater":null},{"from":690,"to":785,"weight":0.2570864256829917,"gater":null},{"from":690,"to":786,"weight":-0.4971370843797691,"gater":null},{"from":690,"to":787,"weight":0.6074422634586862,"gater":null},{"from":690,"to":788,"weight":-0.33370798443965516,"gater":null},{"from":690,"to":789,"weight":2.2848629264326674,"gater":null},{"from":690,"to":790,"weight":1.7252104291934525,"gater":null},{"from":691,"to":784,"weight":-0.46938068449391196,"gater":null},{"from":691,"to":785,"weight":0.12435368196206749,"gater":null},{"from":691,"to":786,"weight":-0.7978076650616005,"gater":null},{"from":691,"to":787,"weight":0.44616303616340575,"gater":null},{"from":691,"to":788,"weight":-0.9285524007891959,"gater":null},{"from":691,"to":789,"weight":2.259676229133335,"gater":null},{"from":691,"to":790,"weight":0.9401499848628345,"gater":null},{"from":692,"to":784,"weight":-0.2277848260275127,"gater":null},{"from":692,"to":785,"weight":-0.20014755340792836,"gater":null},{"from":692,"to":786,"weight":0.5997873511594394,"gater":null},{"from":692,"to":787,"weight":0.12074949427033663,"gater":null},{"from":692,"to":788,"weight":-0.8958487406691956,"gater":null},{"from":692,"to":789,"weight":1.1228490073718476,"gater":null},{"from":692,"to":790,"weight":0.3691980983411846,"gater":null},{"from":693,"to":784,"weight":-0.3498066342964539,"gater":null},{"from":693,"to":785,"weight":-0.289585025354444,"gater":null},{"from":693,"to":786,"weight":0.16535279020581,"gater":null},{"from":693,"to":787,"weight":-0.32993186025358484,"gater":null},{"from":693,"to":788,"weight":-0.6144370698633306,"gater":null},{"from":693,"to":789,"weight":1.8400368825194615,"gater":null},{"from":693,"to":790,"weight":2.1382579744745422,"gater":null},{"from":694,"to":784,"weight":-0.2887023351721923,"gater":null},{"from":694,"to":785,"weight":-0.29629801234940345,"gater":null},{"from":694,"to":786,"weight":-0.09951759633350743,"gater":null},{"from":694,"to":787,"weight":-0.2855778283137267,"gater":null},{"from":694,"to":788,"weight":-0.22681286423123462,"gater":null},{"from":694,"to":789,"weight":1.012966829391927,"gater":null},{"from":694,"to":790,"weight":1.3956938573324709,"gater":null},{"from":695,"to":784,"weight":0.0903047648462919,"gater":null},{"from":695,"to":785,"weight":-0.1563606336108569,"gater":null},{"from":695,"to":786,"weight":-0.2561233796845458,"gater":null},{"from":695,"to":787,"weight":0.19267465740349948,"gater":null},{"from":695,"to":788,"weight":-0.32219182083586556,"gater":null},{"from":695,"to":789,"weight":0.7083205750611008,"gater":null},{"from":695,"to":790,"weight":-0.034479826798854134,"gater":null},{"from":696,"to":784,"weight":0.1517057655555804,"gater":null},{"from":696,"to":785,"weight":-0.09743845882292591,"gater":null},{"from":696,"to":786,"weight":-0.45037175408907176,"gater":null},{"from":696,"to":787,"weight":0.042584123508234574,"gater":null},{"from":696,"to":788,"weight":-0.12107927480617896,"gater":null},{"from":696,"to":789,"weight":-0.6509758124670696,"gater":null},{"from":696,"to":790,"weight":-0.04135149412228897,"gater":null},{"from":697,"to":784,"weight":-0.07393564148681123,"gater":null},{"from":697,"to":785,"weight":-0.1091085336656298,"gater":null},{"from":697,"to":786,"weight":-0.05234555094456745,"gater":null},{"from":697,"to":787,"weight":0.10206870534153961,"gater":null},{"from":697,"to":788,"weight":0.08261820964475207,"gater":null},{"from":697,"to":789,"weight":-0.1765102052721424,"gater":null},{"from":697,"to":790,"weight":0.07883852448615213,"gater":null},{"from":698,"to":784,"weight":-0.013620819724049979,"gater":null},{"from":698,"to":785,"weight":-0.07754536489727917,"gater":null},{"from":698,"to":786,"weight":-0.06173096905307456,"gater":null},{"from":698,"to":787,"weight":-0.03378538505932087,"gater":null},{"from":698,"to":788,"weight":-0.040147074567495805,"gater":null},{"from":698,"to":789,"weight":0.07542080811385685,"gater":null},{"from":698,"to":790,"weight":-0.027072836286174254,"gater":null},{"from":699,"to":784,"weight":0.06944907624536492,"gater":null},{"from":699,"to":785,"weight":0.04471752060319681,"gater":null},{"from":699,"to":786,"weight":-0.047336540323737665,"gater":null},{"from":699,"to":787,"weight":-0.0010505443741335024,"gater":null},{"from":699,"to":788,"weight":-0.07553767895532199,"gater":null},{"from":699,"to":789,"weight":-0.09021811248963751,"gater":null},{"from":699,"to":790,"weight":0.004974077431965457,"gater":null},{"from":700,"to":784,"weight":-0.07485315031585071,"gater":null},{"from":700,"to":785,"weight":-0.015193869660395126,"gater":null},{"from":700,"to":786,"weight":-0.012951329845588416,"gater":null},{"from":700,"to":787,"weight":0.05425522530965213,"gater":null},{"from":700,"to":788,"weight":0.03461521472514034,"gater":null},{"from":700,"to":789,"weight":0.008430116160264636,"gater":null},{"from":700,"to":790,"weight":0.07433984276419578,"gater":null},{"from":701,"to":784,"weight":0.05490449817923157,"gater":null},{"from":701,"to":785,"weight":0.052494099140457495,"gater":null},{"from":701,"to":786,"weight":-0.07885418204951639,"gater":null},{"from":701,"to":787,"weight":-0.07686626319346668,"gater":null},{"from":701,"to":788,"weight":0.04890285162948507,"gater":null},{"from":701,"to":789,"weight":0.048003576209183996,"gater":null},{"from":701,"to":790,"weight":0.08582637486196762,"gater":null},{"from":702,"to":784,"weight":-0.08781601477302133,"gater":null},{"from":702,"to":785,"weight":-0.07799679867250076,"gater":null},{"from":702,"to":786,"weight":0.011829007772758346,"gater":null},{"from":702,"to":787,"weight":0.09799584095625571,"gater":null},{"from":702,"to":788,"weight":0.08096927495524361,"gater":null},{"from":702,"to":789,"weight":0.09008681593757176,"gater":null},{"from":702,"to":790,"weight":-0.09237556432325067,"gater":null},{"from":703,"to":784,"weight":-0.2059954261723174,"gater":null},{"from":703,"to":785,"weight":-0.004933642922703304,"gater":null},{"from":703,"to":786,"weight":-0.011607853573214689,"gater":null},{"from":703,"to":787,"weight":-0.16222093928994008,"gater":null},{"from":703,"to":788,"weight":-0.05042810086326545,"gater":null},{"from":703,"to":789,"weight":0.05785902467780578,"gater":null},{"from":703,"to":790,"weight":-0.027992291275444833,"gater":null},{"from":704,"to":784,"weight":-0.7656116793646477,"gater":null},{"from":704,"to":785,"weight":0.041504665969189926,"gater":null},{"from":704,"to":786,"weight":0.04975943205373229,"gater":null},{"from":704,"to":787,"weight":0.008132681441802032,"gater":null},{"from":704,"to":788,"weight":-0.09446601647929098,"gater":null},{"from":704,"to":789,"weight":0.21296806266279572,"gater":null},{"from":704,"to":790,"weight":-0.2202965437141076,"gater":null},{"from":705,"to":784,"weight":0.393896601224886,"gater":null},{"from":705,"to":785,"weight":0.29697372160701524,"gater":null},{"from":705,"to":786,"weight":0.03862997129584228,"gater":null},{"from":705,"to":787,"weight":-0.6369339814380373,"gater":null},{"from":705,"to":788,"weight":0.03381456788261565,"gater":null},{"from":705,"to":789,"weight":0.5328477513396218,"gater":null},{"from":705,"to":790,"weight":0.19476237793035758,"gater":null},{"from":706,"to":784,"weight":0.7545631996023752,"gater":null},{"from":706,"to":785,"weight":0.3224121948278967,"gater":null},{"from":706,"to":786,"weight":0.1851682226551073,"gater":null},{"from":706,"to":787,"weight":-0.5390297206569588,"gater":null},{"from":706,"to":788,"weight":0.047548899966073685,"gater":null},{"from":706,"to":789,"weight":0.9949647214148063,"gater":null},{"from":706,"to":790,"weight":-0.08735941817219693,"gater":null},{"from":707,"to":784,"weight":-0.29789263238719993,"gater":null},{"from":707,"to":785,"weight":1.3003832114063343,"gater":null},{"from":707,"to":786,"weight":-0.12587357301450963,"gater":null},{"from":707,"to":787,"weight":-0.6350712619942541,"gater":null},{"from":707,"to":788,"weight":0.11572662138828503,"gater":null},{"from":707,"to":789,"weight":1.3537505904472973,"gater":null},{"from":707,"to":790,"weight":-0.7196362331423292,"gater":null},{"from":708,"to":784,"weight":0.2172961069640233,"gater":null},{"from":708,"to":785,"weight":0.7003353381717544,"gater":null},{"from":708,"to":786,"weight":-0.3271802907700902,"gater":null},{"from":708,"to":787,"weight":-1.6166287758777838,"gater":null},{"from":708,"to":788,"weight":-0.2680737616244731,"gater":null},{"from":708,"to":789,"weight":1.3924569260488313,"gater":null},{"from":708,"to":790,"weight":-0.12813696130055968,"gater":null},{"from":709,"to":784,"weight":-1.1160970994597186,"gater":null},{"from":709,"to":785,"weight":0.18564726291174047,"gater":null},{"from":709,"to":786,"weight":-1.2393991207080675,"gater":null},{"from":709,"to":787,"weight":-0.8718703596462501,"gater":null},{"from":709,"to":788,"weight":-0.4765840217095105,"gater":null},{"from":709,"to":789,"weight":1.3372961390271196,"gater":null},{"from":709,"to":790,"weight":-1.9267232150735916,"gater":null},{"from":710,"to":784,"weight":-0.8996178555029939,"gater":null},{"from":710,"to":785,"weight":1.9305217992805692,"gater":null},{"from":710,"to":786,"weight":-2.048829911221085,"gater":null},{"from":710,"to":787,"weight":-0.6615214775646077,"gater":null},{"from":710,"to":788,"weight":-0.37079526259452006,"gater":null},{"from":710,"to":789,"weight":1.3706009397953614,"gater":null},{"from":710,"to":790,"weight":-0.0714433526828878,"gater":null},{"from":711,"to":784,"weight":1.5388220654320808,"gater":null},{"from":711,"to":785,"weight":1.4804710846584224,"gater":null},{"from":711,"to":786,"weight":-1.6700279676573242,"gater":null},{"from":711,"to":787,"weight":-0.3394641741537152,"gater":null},{"from":711,"to":788,"weight":1.1121193929592625,"gater":null},{"from":711,"to":789,"weight":0.9562799920358032,"gater":null},{"from":711,"to":790,"weight":-1.9694508199369658,"gater":null},{"from":712,"to":784,"weight":-0.36493570711791645,"gater":null},{"from":712,"to":785,"weight":0.6364873554203047,"gater":null},{"from":712,"to":786,"weight":-2.4908805870096797,"gater":null},{"from":712,"to":787,"weight":0.4800876872452308,"gater":null},{"from":712,"to":788,"weight":0.7100312972882946,"gater":null},{"from":712,"to":789,"weight":0.47074471829453224,"gater":null},{"from":712,"to":790,"weight":-3.993381719899208,"gater":null},{"from":713,"to":784,"weight":-0.8912007787929409,"gater":null},{"from":713,"to":785,"weight":-0.24472003077326196,"gater":null},{"from":713,"to":786,"weight":-5.063655483491845,"gater":null},{"from":713,"to":787,"weight":0.9817272506859405,"gater":null},{"from":713,"to":788,"weight":0.1498226227199043,"gater":null},{"from":713,"to":789,"weight":0.5427621651821942,"gater":null},{"from":713,"to":790,"weight":-1.85183080488047,"gater":null},{"from":714,"to":784,"weight":0.632124728964264,"gater":null},{"from":714,"to":785,"weight":-0.1309263295100079,"gater":null},{"from":714,"to":786,"weight":-2.20559737787116,"gater":null},{"from":714,"to":787,"weight":0.0366356527350241,"gater":null},{"from":714,"to":788,"weight":0.4189352806115211,"gater":null},{"from":714,"to":789,"weight":0.727445533044473,"gater":null},{"from":714,"to":790,"weight":-1.1631688542017091,"gater":null},{"from":715,"to":784,"weight":-0.2728534985249442,"gater":null},{"from":715,"to":785,"weight":0.9214388355055573,"gater":null},{"from":715,"to":786,"weight":0.3756981123465554,"gater":null},{"from":715,"to":787,"weight":-1.9660671584697649,"gater":null},{"from":715,"to":788,"weight":-0.19411559566638298,"gater":null},{"from":715,"to":789,"weight":1.1147298532929197,"gater":null},{"from":715,"to":790,"weight":0.06364400040901962,"gater":null},{"from":716,"to":784,"weight":0.021345254914398523,"gater":null},{"from":716,"to":785,"weight":1.3384981739483004,"gater":null},{"from":716,"to":786,"weight":-2.8321032370853763,"gater":null},{"from":716,"to":787,"weight":1.1538925818729202,"gater":null},{"from":716,"to":788,"weight":0.15762170817017068,"gater":null},{"from":716,"to":789,"weight":1.2724018276211286,"gater":null},{"from":716,"to":790,"weight":0.7625924463090098,"gater":null},{"from":717,"to":784,"weight":-0.8101887869121491,"gater":null},{"from":717,"to":785,"weight":1.0729055316750102,"gater":null},{"from":717,"to":786,"weight":-2.594340519402437,"gater":null},{"from":717,"to":787,"weight":1.2990552216939264,"gater":null},{"from":717,"to":788,"weight":0.24105057093812296,"gater":null},{"from":717,"to":789,"weight":0.7131260460168062,"gater":null},{"from":717,"to":790,"weight":0.5227473236945879,"gater":null},{"from":718,"to":784,"weight":0.5311267604110308,"gater":null},{"from":718,"to":785,"weight":0.8801405559862637,"gater":null},{"from":718,"to":786,"weight":-5.463776826631882,"gater":null},{"from":718,"to":787,"weight":0.9584162474140481,"gater":null},{"from":718,"to":788,"weight":-0.022014538831008183,"gater":null},{"from":718,"to":789,"weight":0.9146992470896619,"gater":null},{"from":718,"to":790,"weight":1.319434119550576,"gater":null},{"from":719,"to":784,"weight":-0.8358114572753909,"gater":null},{"from":719,"to":785,"weight":0.3494812164929504,"gater":null},{"from":719,"to":786,"weight":-4.973070583030006,"gater":null},{"from":719,"to":787,"weight":0.3513212232746304,"gater":null},{"from":719,"to":788,"weight":-0.23490518766079133,"gater":null},{"from":719,"to":789,"weight":1.17931558667168,"gater":null},{"from":719,"to":790,"weight":0.6649731098835078,"gater":null},{"from":720,"to":784,"weight":0.5760228741841196,"gater":null},{"from":720,"to":785,"weight":-0.02884778868835059,"gater":null},{"from":720,"to":786,"weight":-3.097188274359972,"gater":null},{"from":720,"to":787,"weight":0.08453679588740645,"gater":null},{"from":720,"to":788,"weight":-0.34235880945023883,"gater":null},{"from":720,"to":789,"weight":0.4418808195001195,"gater":null},{"from":720,"to":790,"weight":1.063008763175489,"gater":null},{"from":721,"to":784,"weight":-0.44059932531224777,"gater":null},{"from":721,"to":785,"weight":-0.04758588190191534,"gater":null},{"from":721,"to":786,"weight":-2.8702570136917274,"gater":null},{"from":721,"to":787,"weight":0.5533909564903745,"gater":null},{"from":721,"to":788,"weight":0.01038890325025411,"gater":null},{"from":721,"to":789,"weight":0.18372992257152576,"gater":null},{"from":721,"to":790,"weight":2.272721788745831,"gater":null},{"from":722,"to":784,"weight":-0.3733491229248336,"gater":null},{"from":722,"to":785,"weight":-0.06953588889346463,"gater":null},{"from":722,"to":786,"weight":-0.961918979374979,"gater":null},{"from":722,"to":787,"weight":-0.050485008275216056,"gater":null},{"from":722,"to":788,"weight":-0.1610478952843558,"gater":null},{"from":722,"to":789,"weight":0.19389189110519744,"gater":null},{"from":722,"to":790,"weight":1.1557259413338845,"gater":null},{"from":723,"to":784,"weight":0.10215471053169882,"gater":null},{"from":723,"to":785,"weight":0.12799422571295535,"gater":null},{"from":723,"to":786,"weight":-0.6567863113580903,"gater":null},{"from":723,"to":787,"weight":-0.42152094372338095,"gater":null},{"from":723,"to":788,"weight":-0.06662556599806274,"gater":null},{"from":723,"to":789,"weight":0.30021940199622177,"gater":null},{"from":723,"to":790,"weight":0.43766687350841027,"gater":null},{"from":724,"to":784,"weight":0.06050446843772693,"gater":null},{"from":724,"to":785,"weight":-0.08441802217713681,"gater":null},{"from":724,"to":786,"weight":-0.1346191646752155,"gater":null},{"from":724,"to":787,"weight":-0.05592335990527156,"gater":null},{"from":724,"to":788,"weight":-0.12573118399950642,"gater":null},{"from":724,"to":789,"weight":-0.0020139333184089297,"gater":null},{"from":724,"to":790,"weight":0.030688011338477414,"gater":null},{"from":725,"to":784,"weight":0.0950064540244566,"gater":null},{"from":725,"to":785,"weight":0.030642072027616152,"gater":null},{"from":725,"to":786,"weight":0.057537469252606416,"gater":null},{"from":725,"to":787,"weight":-0.04237497621949809,"gater":null},{"from":725,"to":788,"weight":-0.021251871690362953,"gater":null},{"from":725,"to":789,"weight":0.03220162821692524,"gater":null},{"from":725,"to":790,"weight":-0.027433417554606265,"gater":null},{"from":726,"to":784,"weight":0.06986664730721612,"gater":null},{"from":726,"to":785,"weight":-0.03045101460815962,"gater":null},{"from":726,"to":786,"weight":0.030819948658823787,"gater":null},{"from":726,"to":787,"weight":-0.08029944828884267,"gater":null},{"from":726,"to":788,"weight":-0.08396561997445429,"gater":null},{"from":726,"to":789,"weight":0.02087730446825184,"gater":null},{"from":726,"to":790,"weight":0.0917061288369477,"gater":null},{"from":727,"to":784,"weight":-0.02252101697608104,"gater":null},{"from":727,"to":785,"weight":-0.04931724860530609,"gater":null},{"from":727,"to":786,"weight":-0.06831461884365604,"gater":null},{"from":727,"to":787,"weight":0.09961879498701962,"gater":null},{"from":727,"to":788,"weight":0.02954876887436725,"gater":null},{"from":727,"to":789,"weight":0.05313147590676032,"gater":null},{"from":727,"to":790,"weight":-0.04340973040848986,"gater":null},{"from":728,"to":784,"weight":0.0015776631910976724,"gater":null},{"from":728,"to":785,"weight":-0.003267249346718154,"gater":null},{"from":728,"to":786,"weight":0.06840033832711256,"gater":null},{"from":728,"to":787,"weight":-0.040197942958154265,"gater":null},{"from":728,"to":788,"weight":-0.08218632647073405,"gater":null},{"from":728,"to":789,"weight":0.012038809142017645,"gater":null},{"from":728,"to":790,"weight":0.09199784895117441,"gater":null},{"from":729,"to":784,"weight":-0.0258128907922882,"gater":null},{"from":729,"to":785,"weight":0.01763228371558076,"gater":null},{"from":729,"to":786,"weight":-0.04243411916778644,"gater":null},{"from":729,"to":787,"weight":0.02226867779031841,"gater":null},{"from":729,"to":788,"weight":0.02385668065337465,"gater":null},{"from":729,"to":789,"weight":0.055951624317056636,"gater":null},{"from":729,"to":790,"weight":0.05910012208763468,"gater":null},{"from":730,"to":784,"weight":0.04085525746308205,"gater":null},{"from":730,"to":785,"weight":-0.05018618754029452,"gater":null},{"from":730,"to":786,"weight":-0.022947069470709056,"gater":null},{"from":730,"to":787,"weight":0.014345784147742652,"gater":null},{"from":730,"to":788,"weight":0.0425147166044299,"gater":null},{"from":730,"to":789,"weight":-0.07489092426887312,"gater":null},{"from":730,"to":790,"weight":0.03281347177733235,"gater":null},{"from":731,"to":784,"weight":-0.05705166824025725,"gater":null},{"from":731,"to":785,"weight":0.023239211362566504,"gater":null},{"from":731,"to":786,"weight":0.021856245001390967,"gater":null},{"from":731,"to":787,"weight":0.0799002849751108,"gater":null},{"from":731,"to":788,"weight":0.017210038721780566,"gater":null},{"from":731,"to":789,"weight":0.07312245270103841,"gater":null},{"from":731,"to":790,"weight":-0.010108579771071153,"gater":null},{"from":732,"to":784,"weight":0.14992223655158154,"gater":null},{"from":732,"to":785,"weight":0.006511497432112123,"gater":null},{"from":732,"to":786,"weight":0.07782513297195594,"gater":null},{"from":732,"to":787,"weight":-0.07067814978280758,"gater":null},{"from":732,"to":788,"weight":0.08520629308380931,"gater":null},{"from":732,"to":789,"weight":-0.005130831184342985,"gater":null},{"from":732,"to":790,"weight":0.3738736439191255,"gater":null},{"from":733,"to":784,"weight":0.797091890187753,"gater":null},{"from":733,"to":785,"weight":-0.0045306306698570525,"gater":null},{"from":733,"to":786,"weight":-0.049297493775038094,"gater":null},{"from":733,"to":787,"weight":0.06985037405359582,"gater":null},{"from":733,"to":788,"weight":0.1167237166848722,"gater":null},{"from":733,"to":789,"weight":-0.042951991823807836,"gater":null},{"from":733,"to":790,"weight":-0.1562750100039289,"gater":null},{"from":734,"to":784,"weight":0.47252657716900753,"gater":null},{"from":734,"to":785,"weight":0.20768127820514365,"gater":null},{"from":734,"to":786,"weight":0.4281832228627257,"gater":null},{"from":734,"to":787,"weight":-0.016080429610548612,"gater":null},{"from":734,"to":788,"weight":0.040372754765282036,"gater":null},{"from":734,"to":789,"weight":0.06945582702411218,"gater":null},{"from":734,"to":790,"weight":0.44069108511600674,"gater":null},{"from":735,"to":784,"weight":0.6764846987056292,"gater":null},{"from":735,"to":785,"weight":0.29527467281254316,"gater":null},{"from":735,"to":786,"weight":0.08099711911690738,"gater":null},{"from":735,"to":787,"weight":-0.1707668440460232,"gater":null},{"from":735,"to":788,"weight":0.13745440266417058,"gater":null},{"from":735,"to":789,"weight":-0.0035163584931084727,"gater":null},{"from":735,"to":790,"weight":0.8927265207058829,"gater":null},{"from":736,"to":784,"weight":0.803357509681404,"gater":null},{"from":736,"to":785,"weight":0.16374704931139575,"gater":null},{"from":736,"to":786,"weight":-0.7251737798069021,"gater":null},{"from":736,"to":787,"weight":-0.8347740939230761,"gater":null},{"from":736,"to":788,"weight":-0.026902182817724437,"gater":null},{"from":736,"to":789,"weight":0.153679678618698,"gater":null},{"from":736,"to":790,"weight":0.35290996762348675,"gater":null},{"from":737,"to":784,"weight":0.6311488821670552,"gater":null},{"from":737,"to":785,"weight":0.22509368972118152,"gater":null},{"from":737,"to":786,"weight":-0.95287835552043,"gater":null},{"from":737,"to":787,"weight":-0.3764089124026874,"gater":null},{"from":737,"to":788,"weight":-0.21010682436624112,"gater":null},{"from":737,"to":789,"weight":0.09497386052381203,"gater":null},{"from":737,"to":790,"weight":-0.041507068722673804,"gater":null},{"from":738,"to":784,"weight":-0.043300642655624576,"gater":null},{"from":738,"to":785,"weight":0.315658823222523,"gater":null},{"from":738,"to":786,"weight":-0.24629151622940737,"gater":null},{"from":738,"to":787,"weight":0.16718917701153324,"gater":null},{"from":738,"to":788,"weight":-0.4633362235695198,"gater":null},{"from":738,"to":789,"weight":0.11605856610433643,"gater":null},{"from":738,"to":790,"weight":-1.0115114013158608,"gater":null},{"from":739,"to":784,"weight":1.4203778967806338,"gater":null},{"from":739,"to":785,"weight":0.6572966788535263,"gater":null},{"from":739,"to":786,"weight":-0.9051321655995199,"gater":null},{"from":739,"to":787,"weight":0.2406759567351491,"gater":null},{"from":739,"to":788,"weight":-0.3849776137229447,"gater":null},{"from":739,"to":789,"weight":0.293016684450769,"gater":null},{"from":739,"to":790,"weight":0.6627907669135464,"gater":null},{"from":740,"to":784,"weight":0.7333421695868968,"gater":null},{"from":740,"to":785,"weight":0.7370863367169447,"gater":null},{"from":740,"to":786,"weight":-1.0310303063888393,"gater":null},{"from":740,"to":787,"weight":-0.1229356047016223,"gater":null},{"from":740,"to":788,"weight":-0.25707492666163495,"gater":null},{"from":740,"to":789,"weight":0.27682552419003637,"gater":null},{"from":740,"to":790,"weight":-0.1603381112657283,"gater":null},{"from":741,"to":784,"weight":-0.7359585076409186,"gater":null},{"from":741,"to":785,"weight":0.20294327640023002,"gater":null},{"from":741,"to":786,"weight":-1.8612251451995498,"gater":null},{"from":741,"to":787,"weight":0.2833193472352143,"gater":null},{"from":741,"to":788,"weight":-0.07295027282577635,"gater":null},{"from":741,"to":789,"weight":-0.016226969219419133,"gater":null},{"from":741,"to":790,"weight":-0.8349396253240534,"gater":null},{"from":742,"to":784,"weight":-1.1221799073146304,"gater":null},{"from":742,"to":785,"weight":0.06961595416357026,"gater":null},{"from":742,"to":786,"weight":-4.849066137391259,"gater":null},{"from":742,"to":787,"weight":0.5937143255398342,"gater":null},{"from":742,"to":788,"weight":0.07271985792033127,"gater":null},{"from":742,"to":789,"weight":0.12332840066857315,"gater":null},{"from":742,"to":790,"weight":1.1087831525671474,"gater":null},{"from":743,"to":784,"weight":-0.7301370671044243,"gater":null},{"from":743,"to":785,"weight":0.4731906530593642,"gater":null},{"from":743,"to":786,"weight":-3.590753266706216,"gater":null},{"from":743,"to":787,"weight":0.6139711899705721,"gater":null},{"from":743,"to":788,"weight":-0.06001218193130533,"gater":null},{"from":743,"to":789,"weight":0.09664248623680244,"gater":null},{"from":743,"to":790,"weight":0.6760471232074002,"gater":null},{"from":744,"to":784,"weight":0.864908336407305,"gater":null},{"from":744,"to":785,"weight":0.27963192810557225,"gater":null},{"from":744,"to":786,"weight":-2.30020879060792,"gater":null},{"from":744,"to":787,"weight":0.7445877951771688,"gater":null},{"from":744,"to":788,"weight":0.14287334903004284,"gater":null},{"from":744,"to":789,"weight":0.15581263656569255,"gater":null},{"from":744,"to":790,"weight":-0.4682550882669861,"gater":null},{"from":745,"to":784,"weight":-0.1389149516502811,"gater":null},{"from":745,"to":785,"weight":0.0266153901449728,"gater":null},{"from":745,"to":786,"weight":-1.6864274217752124,"gater":null},{"from":745,"to":787,"weight":0.688154716073418,"gater":null},{"from":745,"to":788,"weight":0.18454330934579613,"gater":null},{"from":745,"to":789,"weight":-0.05109310586837365,"gater":null},{"from":745,"to":790,"weight":-1.62344905288352,"gater":null},{"from":746,"to":784,"weight":-0.46139329254425426,"gater":null},{"from":746,"to":785,"weight":-0.04643106547941777,"gater":null},{"from":746,"to":786,"weight":-1.4975005405086552,"gater":null},{"from":746,"to":787,"weight":0.5308088332130554,"gater":null},{"from":746,"to":788,"weight":-0.052580924768975024,"gater":null},{"from":746,"to":789,"weight":-0.0710414981039563,"gater":null},{"from":746,"to":790,"weight":-0.8441410401971047,"gater":null},{"from":747,"to":784,"weight":-0.5620142503527893,"gater":null},{"from":747,"to":785,"weight":0.09876756887466474,"gater":null},{"from":747,"to":786,"weight":-1.2006111698570145,"gater":null},{"from":747,"to":787,"weight":0.0920150621571322,"gater":null},{"from":747,"to":788,"weight":-0.13033573984379299,"gater":null},{"from":747,"to":789,"weight":-0.023678216015999193,"gater":null},{"from":747,"to":790,"weight":-0.23004291955560932,"gater":null},{"from":748,"to":784,"weight":-0.6960676772130139,"gater":null},{"from":748,"to":785,"weight":0.05273982490999717,"gater":null},{"from":748,"to":786,"weight":-0.9909209537368759,"gater":null},{"from":748,"to":787,"weight":-0.02476110678208795,"gater":null},{"from":748,"to":788,"weight":0.045768227138690776,"gater":null},{"from":748,"to":789,"weight":0.1598114585903356,"gater":null},{"from":748,"to":790,"weight":-0.22392469490068825,"gater":null},{"from":749,"to":784,"weight":-0.11100480415365911,"gater":null},{"from":749,"to":785,"weight":0.039413630673208626,"gater":null},{"from":749,"to":786,"weight":-0.6542075510184512,"gater":null},{"from":749,"to":787,"weight":0.5842697177725938,"gater":null},{"from":749,"to":788,"weight":0.07760147081759702,"gater":null},{"from":749,"to":789,"weight":-0.025685896519114734,"gater":null},{"from":749,"to":790,"weight":1.2247347584077375,"gater":null},{"from":750,"to":784,"weight":0.21525678018095243,"gater":null},{"from":750,"to":785,"weight":0.0794209543398826,"gater":null},{"from":750,"to":786,"weight":-0.2852928321706502,"gater":null},{"from":750,"to":787,"weight":0.7110001033279812,"gater":null},{"from":750,"to":788,"weight":0.06131606568900245,"gater":null},{"from":750,"to":789,"weight":0.14423680735768693,"gater":null},{"from":750,"to":790,"weight":1.144075937559985,"gater":null},{"from":751,"to":784,"weight":0.10249828175195902,"gater":null},{"from":751,"to":785,"weight":-0.05651047713564437,"gater":null},{"from":751,"to":786,"weight":-0.16365711812621542,"gater":null},{"from":751,"to":787,"weight":0.22591745295866741,"gater":null},{"from":751,"to":788,"weight":0.008531711490438547,"gater":null},{"from":751,"to":789,"weight":0.011619448446751775,"gater":null},{"from":751,"to":790,"weight":0.2676437034141194,"gater":null},{"from":752,"to":784,"weight":0.022798374887847125,"gater":null},{"from":752,"to":785,"weight":0.07295733303321739,"gater":null},{"from":752,"to":786,"weight":0.026849039126578905,"gater":null},{"from":752,"to":787,"weight":0.09287408097924774,"gater":null},{"from":752,"to":788,"weight":0.05260354702949313,"gater":null},{"from":752,"to":789,"weight":0.018171004859406592,"gater":null},{"from":752,"to":790,"weight":0.07927503909167388,"gater":null},{"from":753,"to":784,"weight":0.020125693571377126,"gater":null},{"from":753,"to":785,"weight":0.07813201381515364,"gater":null},{"from":753,"to":786,"weight":0.05055104614519382,"gater":null},{"from":753,"to":787,"weight":-0.029801619162214577,"gater":null},{"from":753,"to":788,"weight":0.03334030967265092,"gater":null},{"from":753,"to":789,"weight":0.019865414266879308,"gater":null},{"from":753,"to":790,"weight":-0.057019929939544946,"gater":null},{"from":754,"to":784,"weight":0.00991398529487686,"gater":null},{"from":754,"to":785,"weight":0.05504421105839602,"gater":null},{"from":754,"to":786,"weight":-0.076148816698624,"gater":null},{"from":754,"to":787,"weight":-0.046894529834346124,"gater":null},{"from":754,"to":788,"weight":0.0813490089413956,"gater":null},{"from":754,"to":789,"weight":0.024934792185970875,"gater":null},{"from":754,"to":790,"weight":0.05712132936329764,"gater":null},{"from":755,"to":784,"weight":0.00014026975554370935,"gater":null},{"from":755,"to":785,"weight":0.08227741234058458,"gater":null},{"from":755,"to":786,"weight":-0.09681983963827645,"gater":null},{"from":755,"to":787,"weight":0.015394700131581063,"gater":null},{"from":755,"to":788,"weight":-0.08749142869789416,"gater":null},{"from":755,"to":789,"weight":0.08425340040193449,"gater":null},{"from":755,"to":790,"weight":-0.09975997975935491,"gater":null},{"from":756,"to":784,"weight":-0.06449988095784173,"gater":null},{"from":756,"to":785,"weight":-0.07583730981054325,"gater":null},{"from":756,"to":786,"weight":0.08503122322877049,"gater":null},{"from":756,"to":787,"weight":0.056925225675424684,"gater":null},{"from":756,"to":788,"weight":-0.05279285627017538,"gater":null},{"from":756,"to":789,"weight":-0.009918904001226372,"gater":null},{"from":756,"to":790,"weight":-0.028261735840722224,"gater":null},{"from":757,"to":784,"weight":-0.051765661045725914,"gater":null},{"from":757,"to":785,"weight":0.06794345219060668,"gater":null},{"from":757,"to":786,"weight":0.05098281146665248,"gater":null},{"from":757,"to":787,"weight":-0.07594298571298018,"gater":null},{"from":757,"to":788,"weight":-0.0851840778836393,"gater":null},{"from":757,"to":789,"weight":-0.04046503822346388,"gater":null},{"from":757,"to":790,"weight":0.021672502310591396,"gater":null},{"from":758,"to":784,"weight":-0.015823892128269887,"gater":null},{"from":758,"to":785,"weight":0.05989933812479592,"gater":null},{"from":758,"to":786,"weight":-0.09748914584035484,"gater":null},{"from":758,"to":787,"weight":0.07070847422545407,"gater":null},{"from":758,"to":788,"weight":0.09003105056895677,"gater":null},{"from":758,"to":789,"weight":-0.014294760118650454,"gater":null},{"from":758,"to":790,"weight":0.018618026738503837,"gater":null},{"from":759,"to":784,"weight":-0.08900907326811663,"gater":null},{"from":759,"to":785,"weight":0.030538468086883264,"gater":null},{"from":759,"to":786,"weight":-0.0022236068723922864,"gater":null},{"from":759,"to":787,"weight":-0.051974067845210616,"gater":null},{"from":759,"to":788,"weight":-0.0352065944487248,"gater":null},{"from":759,"to":789,"weight":-0.0629039056678436,"gater":null},{"from":759,"to":790,"weight":0.0440778110924967,"gater":null},{"from":760,"to":784,"weight":-0.034865276008839444,"gater":null},{"from":760,"to":785,"weight":-0.06029175275592458,"gater":null},{"from":760,"to":786,"weight":-0.0065977672728674275,"gater":null},{"from":760,"to":787,"weight":0.06660696379534245,"gater":null},{"from":760,"to":788,"weight":-0.039228196221681035,"gater":null},{"from":760,"to":789,"weight":-0.025263901241139572,"gater":null},{"from":760,"to":790,"weight":-0.005935171252978891,"gater":null},{"from":761,"to":784,"weight":-0.03188642690318575,"gater":null},{"from":761,"to":785,"weight":-0.0678457062634909,"gater":null},{"from":761,"to":786,"weight":-0.06058134831376717,"gater":null},{"from":761,"to":787,"weight":0.06422507499677974,"gater":null},{"from":761,"to":788,"weight":-0.0819428099330186,"gater":null},{"from":761,"to":789,"weight":-0.019953456896545888,"gater":null},{"from":761,"to":790,"weight":-0.07181751074368871,"gater":null},{"from":762,"to":784,"weight":-0.07614770649033034,"gater":null},{"from":762,"to":785,"weight":0.06788020742345596,"gater":null},{"from":762,"to":786,"weight":-0.021549809932376193,"gater":null},{"from":762,"to":787,"weight":0.008253223067741238,"gater":null},{"from":762,"to":788,"weight":0.07771339853062863,"gater":null},{"from":762,"to":789,"weight":0.06009906388010357,"gater":null},{"from":762,"to":790,"weight":0.06552323164997356,"gater":null},{"from":763,"to":784,"weight":-0.01612662761794233,"gater":null},{"from":763,"to":785,"weight":-0.061297392791928265,"gater":null},{"from":763,"to":786,"weight":0.02811823269532057,"gater":null},{"from":763,"to":787,"weight":-0.04401277796291573,"gater":null},{"from":763,"to":788,"weight":-0.012763458401960918,"gater":null},{"from":763,"to":789,"weight":-0.02991109841160333,"gater":null},{"from":763,"to":790,"weight":0.01639836357297001,"gater":null},{"from":764,"to":784,"weight":-0.03478554264032995,"gater":null},{"from":764,"to":785,"weight":-0.009139500482341748,"gater":null},{"from":764,"to":786,"weight":-0.07168843016280498,"gater":null},{"from":764,"to":787,"weight":0.033674708654480585,"gater":null},{"from":764,"to":788,"weight":0.028882179472425034,"gater":null},{"from":764,"to":789,"weight":0.001564669635711483,"gater":null},{"from":764,"to":790,"weight":-0.036061504006482115,"gater":null},{"from":765,"to":784,"weight":0.006205438816380187,"gater":null},{"from":765,"to":785,"weight":0.040405236309146525,"gater":null},{"from":765,"to":786,"weight":0.003683125447635209,"gater":null},{"from":765,"to":787,"weight":-0.03309983204202237,"gater":null},{"from":765,"to":788,"weight":-0.022694120039459597,"gater":null},{"from":765,"to":789,"weight":0.07848517030573798,"gater":null},{"from":765,"to":790,"weight":0.037624916934835315,"gater":null},{"from":766,"to":784,"weight":0.0023526046284878194,"gater":null},{"from":766,"to":785,"weight":-0.09734059536630738,"gater":null},{"from":766,"to":786,"weight":-0.11946510356534573,"gater":null},{"from":766,"to":787,"weight":-0.08839144022789634,"gater":null},{"from":766,"to":788,"weight":0.061400040665992174,"gater":null},{"from":766,"to":789,"weight":-0.06645781007043733,"gater":null},{"from":766,"to":790,"weight":0.02583511932544224,"gater":null},{"from":767,"to":784,"weight":-0.026841869989889435,"gater":null},{"from":767,"to":785,"weight":0.020166702099327066,"gater":null},{"from":767,"to":786,"weight":-0.09181965543100289,"gater":null},{"from":767,"to":787,"weight":0.021960794174350724,"gater":null},{"from":767,"to":788,"weight":0.052977395939147603,"gater":null},{"from":767,"to":789,"weight":0.0625774208053423,"gater":null},{"from":767,"to":790,"weight":-0.06836179888346194,"gater":null},{"from":768,"to":784,"weight":0.5458049222554182,"gater":null},{"from":768,"to":785,"weight":-0.044694977921623545,"gater":null},{"from":768,"to":786,"weight":-0.27080098964077765,"gater":null},{"from":768,"to":787,"weight":-0.025731235150630437,"gater":null},{"from":768,"to":788,"weight":0.05879071304545708,"gater":null},{"from":768,"to":789,"weight":-0.031420744410236325,"gater":null},{"from":768,"to":790,"weight":-0.10267647273797682,"gater":null},{"from":769,"to":784,"weight":0.38634101083875283,"gater":null},{"from":769,"to":785,"weight":-0.02318485786680667,"gater":null},{"from":769,"to":786,"weight":-0.3366621202280294,"gater":null},{"from":769,"to":787,"weight":0.04448640398010249,"gater":null},{"from":769,"to":788,"weight":0.03668126256309429,"gater":null},{"from":769,"to":789,"weight":0.07349764537669312,"gater":null},{"from":769,"to":790,"weight":-0.8809029931026467,"gater":null},{"from":770,"to":784,"weight":0.10464048872571954,"gater":null},{"from":770,"to":785,"weight":0.08508225836003484,"gater":null},{"from":770,"to":786,"weight":-0.10559943042424352,"gater":null},{"from":770,"to":787,"weight":-0.06083577170990121,"gater":null},{"from":770,"to":788,"weight":-0.0016939897046705868,"gater":null},{"from":770,"to":789,"weight":0.07576022890561872,"gater":null},{"from":770,"to":790,"weight":-0.445404149991613,"gater":null},{"from":771,"to":784,"weight":-0.05121960146952905,"gater":null},{"from":771,"to":785,"weight":0.07381915976440286,"gater":null},{"from":771,"to":786,"weight":-0.7492196971461398,"gater":null},{"from":771,"to":787,"weight":-0.01965599584273805,"gater":null},{"from":771,"to":788,"weight":0.0001869733345278836,"gater":null},{"from":771,"to":789,"weight":-0.07924431429158792,"gater":null},{"from":771,"to":790,"weight":0.4299953603600312,"gater":null},{"from":772,"to":784,"weight":0.05222392930966314,"gater":null},{"from":772,"to":785,"weight":0.07105358042358834,"gater":null},{"from":772,"to":786,"weight":-0.2872028917569253,"gater":null},{"from":772,"to":787,"weight":-0.0774370558423295,"gater":null},{"from":772,"to":788,"weight":-0.13364617391161132,"gater":null},{"from":772,"to":789,"weight":-0.0638555216033552,"gater":null},{"from":772,"to":790,"weight":0.0444913950184244,"gater":null},{"from":773,"to":784,"weight":0.07656080688633407,"gater":null},{"from":773,"to":785,"weight":0.01263681170890101,"gater":null},{"from":773,"to":786,"weight":-0.24921007650216773,"gater":null},{"from":773,"to":787,"weight":-0.08713386849425682,"gater":null},{"from":773,"to":788,"weight":0.018784315166601576,"gater":null},{"from":773,"to":789,"weight":-0.07808633151319996,"gater":null},{"from":773,"to":790,"weight":-0.16052701306265774,"gater":null},{"from":774,"to":784,"weight":0.21016259571644744,"gater":null},{"from":774,"to":785,"weight":-0.07410859726788954,"gater":null},{"from":774,"to":786,"weight":-0.12650522832509645,"gater":null},{"from":774,"to":787,"weight":0.0019797684379403036,"gater":null},{"from":774,"to":788,"weight":-0.00974517724439056,"gater":null},{"from":774,"to":789,"weight":-0.03782294366499733,"gater":null},{"from":774,"to":790,"weight":-0.008233862546561563,"gater":null},{"from":775,"to":784,"weight":0.1266151268856735,"gater":null},{"from":775,"to":785,"weight":0.0466626316614315,"gater":null},{"from":775,"to":786,"weight":-0.10109403014949621,"gater":null},{"from":775,"to":787,"weight":-0.03258185552660298,"gater":null},{"from":775,"to":788,"weight":0.05241684769029318,"gater":null},{"from":775,"to":789,"weight":-0.08843635280504213,"gater":null},{"from":775,"to":790,"weight":-0.4354731373408065,"gater":null},{"from":776,"to":784,"weight":-0.007385417980858897,"gater":null},{"from":776,"to":785,"weight":0.05794921380420879,"gater":null},{"from":776,"to":786,"weight":-0.34349369777020833,"gater":null},{"from":776,"to":787,"weight":0.08604422056552588,"gater":null},{"from":776,"to":788,"weight":-0.05570897834593212,"gater":null},{"from":776,"to":789,"weight":0.09994968757848896,"gater":null},{"from":776,"to":790,"weight":-1.2061477922819732,"gater":null},{"from":777,"to":784,"weight":0.01609667692843629,"gater":null},{"from":777,"to":785,"weight":0.049172139690329006,"gater":null},{"from":777,"to":786,"weight":-0.18779097757524557,"gater":null},{"from":777,"to":787,"weight":0.21644714035714488,"gater":null},{"from":777,"to":788,"weight":-0.04946340656159424,"gater":null},{"from":777,"to":789,"weight":-0.06443748870707053,"gater":null},{"from":777,"to":790,"weight":-0.4836762772591493,"gater":null},{"from":778,"to":784,"weight":0.04916901607803137,"gater":null},{"from":778,"to":785,"weight":-0.06485125873373551,"gater":null},{"from":778,"to":786,"weight":-0.13868778886879657,"gater":null},{"from":778,"to":787,"weight":0.23104128886698747,"gater":null},{"from":778,"to":788,"weight":-0.05861333424223434,"gater":null},{"from":778,"to":789,"weight":0.016031642998304882,"gater":null},{"from":778,"to":790,"weight":0.4953046193678079,"gater":null},{"from":779,"to":784,"weight":0.06845372285825704,"gater":null},{"from":779,"to":785,"weight":0.030971953470883218,"gater":null},{"from":779,"to":786,"weight":-0.038997018736620516,"gater":null},{"from":779,"to":787,"weight":0.03429968667576855,"gater":null},{"from":779,"to":788,"weight":0.06726415986993348,"gater":null},{"from":779,"to":789,"weight":0.025909264571947588,"gater":null},{"from":779,"to":790,"weight":-0.07550047850058227,"gater":null},{"from":780,"to":784,"weight":0.0937900196988306,"gater":null},{"from":780,"to":785,"weight":0.02611909591803957,"gater":null},{"from":780,"to":786,"weight":0.04474293461949355,"gater":null},{"from":780,"to":787,"weight":0.005363063143276656,"gater":null},{"from":780,"to":788,"weight":-0.04426559120486062,"gater":null},{"from":780,"to":789,"weight":-0.009912686347444757,"gater":null},{"from":780,"to":790,"weight":-0.013340717908371852,"gater":null},{"from":781,"to":784,"weight":0.06306283580581176,"gater":null},{"from":781,"to":785,"weight":0.030548425632183157,"gater":null},{"from":781,"to":786,"weight":-0.018705682037248428,"gater":null},{"from":781,"to":787,"weight":-0.05694629027325191,"gater":null},{"from":781,"to":788,"weight":-0.00868657197942331,"gater":null},{"from":781,"to":789,"weight":0.041966902326978583,"gater":null},{"from":781,"to":790,"weight":-0.06166385238593822,"gater":null},{"from":782,"to":784,"weight":0.09153012143720232,"gater":null},{"from":782,"to":785,"weight":0.004881140227154385,"gater":null},{"from":782,"to":786,"weight":0.012846255222322037,"gater":null},{"from":782,"to":787,"weight":-0.02481819819764608,"gater":null},{"from":782,"to":788,"weight":-0.04616030530070497,"gater":null},{"from":782,"to":789,"weight":-0.0021212185910402387,"gater":null},{"from":782,"to":790,"weight":0.03500477150577894,"gater":null},{"from":783,"to":784,"weight":-0.040328785919182854,"gater":null},{"from":783,"to":785,"weight":-0.02117601075125823,"gater":null},{"from":783,"to":786,"weight":-0.0034462597441564657,"gater":null},{"from":783,"to":787,"weight":0.019932950382301806,"gater":null},{"from":783,"to":788,"weight":-0.06797456638785385,"gater":null},{"from":783,"to":789,"weight":-0.08711296315408168,"gater":null},{"from":783,"to":790,"weight":-0.0029919561879694356,"gater":null},{"from":784,"to":791,"weight":8.74678174688464,"gater":null},{"from":784,"to":792,"weight":-1.0988558246373743,"gater":null},{"from":784,"to":793,"weight":-6.187558366846167,"gater":null},{"from":784,"to":794,"weight":2.5132795982462195,"gater":null},{"from":784,"to":795,"weight":0.7851435957370053,"gater":null},{"from":785,"to":791,"weight":3.6866087700394927,"gater":null},{"from":785,"to":792,"weight":7.571899898765888,"gater":null},{"from":785,"to":793,"weight":-1.733832040862493,"gater":null},{"from":785,"to":794,"weight":5.9214908345836905,"gater":null},{"from":785,"to":795,"weight":0.8157366753652743,"gater":null},{"from":786,"to":791,"weight":0.745913171456262,"gater":null},{"from":786,"to":792,"weight":-7.195470366830493,"gater":null},{"from":786,"to":793,"weight":-0.60247574670361,"gater":null},{"from":786,"to":794,"weight":3.7898332582327554,"gater":null},{"from":786,"to":795,"weight":0.6240639085145285,"gater":null},{"from":787,"to":791,"weight":-6.076027375530717,"gater":null},{"from":787,"to":792,"weight":3.4690619360303683,"gater":null},{"from":787,"to":793,"weight":8.524958925441162,"gater":null},{"from":787,"to":794,"weight":-1.3435997751628073,"gater":null},{"from":787,"to":795,"weight":1.0434878777520271,"gater":null},{"from":788,"to":791,"weight":7.221144650215602,"gater":null},{"from":788,"to":792,"weight":2.6975280271585342,"gater":null},{"from":788,"to":793,"weight":5.893566300206436,"gater":null},{"from":788,"to":794,"weight":1.7969787855829826,"gater":null},{"from":788,"to":795,"weight":0.5532224937371721,"gater":null},{"from":789,"to":791,"weight":2.2370001752959374,"gater":null},{"from":789,"to":792,"weight":2.721669291627596,"gater":null},{"from":789,"to":793,"weight":-5.131129220101776,"gater":null},{"from":789,"to":794,"weight":1.824916155590223,"gater":null},{"from":789,"to":795,"weight":0.8849377513418561,"gater":null},{"from":790,"to":791,"weight":-1.5293808700745406,"gater":null},{"from":790,"to":792,"weight":-4.09368040762408,"gater":null},{"from":790,"to":793,"weight":-1.2079635916729938,"gater":null},{"from":790,"to":794,"weight":9.685261780271178,"gater":null},{"from":790,"to":795,"weight":1.0752111327483034,"gater":null},{"from":791,"to":796,"weight":6.823394926906307,"gater":null},{"from":791,"to":797,"weight":-6.864181636681172,"gater":null},{"from":791,"to":798,"weight":-4.841509465454079,"gater":null},{"from":791,"to":799,"weight":-6.2624750673438045,"gater":null},{"from":791,"to":800,"weight":5.303872307104662,"gater":null},{"from":791,"to":801,"weight":-8.31702160046012,"gater":null},{"from":791,"to":802,"weight":-7.92191599023075,"gater":null},{"from":791,"to":803,"weight":8.429810927638723,"gater":null},{"from":791,"to":804,"weight":-7.231501453887172,"gater":null},{"from":791,"to":805,"weight":4.5689680932507954,"gater":null},{"from":792,"to":796,"weight":2.441806837443316,"gater":null},{"from":792,"to":797,"weight":-6.18576870380765,"gater":null},{"from":792,"to":798,"weight":2.968103962884522,"gater":null},{"from":792,"to":799,"weight":6.453592613682001,"gater":null},{"from":792,"to":800,"weight":-7.284475037240118,"gater":null},{"from":792,"to":801,"weight":-1.4715224809195337,"gater":null},{"from":792,"to":802,"weight":-3.286806412899933,"gater":null},{"from":792,"to":803,"weight":1.4169311467426207,"gater":null},{"from":792,"to":804,"weight":5.4397615577681435,"gater":null},{"from":792,"to":805,"weight":7.540695878534538,"gater":null},{"from":793,"to":796,"weight":9.747934718669214,"gater":null},{"from":793,"to":797,"weight":-9.938325470168325,"gater":null},{"from":793,"to":798,"weight":7.228722941477059,"gater":null},{"from":793,"to":799,"weight":-5.358637025275922,"gater":null},{"from":793,"to":800,"weight":-3.2663659687867654,"gater":null},{"from":793,"to":801,"weight":-7.638697508916943,"gater":null},{"from":793,"to":802,"weight":8.088679028894918,"gater":null},{"from":793,"to":803,"weight":-3.720588699937633,"gater":null},{"from":793,"to":804,"weight":-4.850577966717025,"gater":null},{"from":793,"to":805,"weight":-8.245509932342644,"gater":null},{"from":794,"to":796,"weight":3.3177472778762556,"gater":null},{"from":794,"to":797,"weight":-10.171590289758882,"gater":null},{"from":794,"to":798,"weight":-6.980552677533326,"gater":null},{"from":794,"to":799,"weight":-0.586095173236651,"gater":null},{"from":794,"to":800,"weight":11.182120891111694,"gater":null},{"from":794,"to":801,"weight":11.03379200343929,"gater":null},{"from":794,"to":802,"weight":8.878477215449847,"gater":null},{"from":794,"to":803,"weight":-7.771312477525539,"gater":null},{"from":794,"to":804,"weight":0.7498511276964804,"gater":null},{"from":794,"to":805,"weight":7.576936108120272,"gater":null},{"from":795,"to":796,"weight":-7.8482394059364005,"gater":null},{"from":795,"to":797,"weight":1.3963692491404238,"gater":null},{"from":795,"to":798,"weight":-1.6848886353653647,"gater":null},{"from":795,"to":799,"weight":-2.039816169210724,"gater":null},{"from":795,"to":800,"weight":-5.765205447755633,"gater":null},{"from":795,"to":801,"weight":-3.5079291273198034,"gater":null},{"from":795,"to":802,"weight":-5.190407933437427,"gater":null},{"from":795,"to":803,"weight":-2.355978389538985,"gater":null},{"from":795,"to":804,"weight":-1.8752692018291177,"gater":null},{"from":795,"to":805,"weight":-7.490935316268493,"gater":null}]}'));
}

}
}

loadScripts(main);




/**

var Neuron = synaptic.Neuron,
  Layer = synaptic.Layer,
  Network = synaptic.Network,
  Trainer = synaptic.Trainer,
  Architect = synaptic.Architect;   **/




// extend the prototype chain


//train();
loadNetwork();
itterate();

// For this demo pre load a previously trained network I made.


















// Commenting out entire 'Doodle Script for the time being'




/**

 

// Port of Character recognition neural network from here:
// https://github.com/CodingTrain/Toy-Neural-Network-JS/tree/master/examples/mnist
// with many modifications 


// --- defined by MNIST - do not change these ---------------------------------------

const PIXELS        = 28;                       // images in data set are tiny 
const PIXELSSQUARED = PIXELS * PIXELS;

// number of training and test exemplars in the data set:
const NOTRAIN = 60000;
const NOTEST  = 10000;



//--- can modify all these --------------------------------------------------

// no of nodes in network 
const noinput  = PIXELSSQUARED;
const nohidden = 64;
const nooutput = 10;

const learningrate = 0.1;   // default 0.1  

// should we train every timestep or not 
let do_training = true;

// how many to train and test per timestep 
const TRAINPERSTEP = 30;
const TESTPERSTEP  = 5;

// multiply it by this to magnify for display 
const ZOOMFACTOR    = 7;                        
const ZOOMPIXELS    = ZOOMFACTOR * PIXELS; 

// 3 rows of
// large image + 50 gap + small image    
// 50 gap between rows 

const canvaswidth = ( PIXELS + ZOOMPIXELS ) + 50;
const canvasheight = ( ZOOMPIXELS * 3 ) + 100;


const DOODLE_THICK = 18;    // thickness of doodle lines 
const DOODLE_BLUR = 3;      // blur factor applied to doodles 


let mnist;      
// all data is loaded into this 
// mnist.train_images
// mnist.train_labels
// mnist.test_images
// mnist.test_labels


let nn;

let trainrun = 1;
let train_index = 0;

let testrun = 1;
let test_index = 0;
let total_tests = 0;
let total_correct = 0;

// images in LHS:
let doodle, demo;
let doodle_exists = false;
let demo_exists = false;

let mousedrag = false;      // are we in the middle of a mouse drag drawing?  


// save inputs to global var to inspect
// type these names in console 
var train_inputs, test_inputs, demo_inputs, doodle_inputs;


// Matrix.randomize() is changed to point to this. Must be defined by user of Matrix. 

function randomWeight()
{
    return ( AB.randomFloatAtoB ( -0.5, 0.5 ) );
            // Coding Train default is -1 to 1
}    



// CSS trick 
// make run header bigger 
 $("#runheaderbox").css ( { "max-height": "95vh" } );



//--- start of AB.msgs structure: ---------------------------------------------------------
// We output a serious of AB.msgs to put data at various places in the run header 
var thehtml;

  // 1 Doodle header 
  thehtml = "<hr> <h1> 1. Doodle </h1> Top row: Doodle (left) and shrunk (right). <br> " +
        " Draw your doodle in top LHS. <button onclick='wipeDoodle();' class='normbutton' >Clear doodle</button> <br> ";
   AB.msg ( thehtml, 1 );

  // 2 Doodle variable data (guess)
  
  // 3 Training header
  thehtml = "<hr> <h1> 2. Training </h1> Middle row: Training image magnified (left) and original (right). <br>  " +
        " <button onclick='do_training = false;' class='normbutton' >Stop training</button> <br> ";
  AB.msg ( thehtml, 3 );
     
  // 4 variable training data 
  
  // 5 Testing header
  thehtml = "<h3> Hidden tests </h3> " ;
  AB.msg ( thehtml, 5 );
           
  // 6 variable testing data 
  
  // 7 Demo header 
  thehtml = "<hr> <h1> 3. Demo </h1> Bottom row: Test image magnified (left) and  original (right). <br>" +
        " The network is <i>not</i> trained on any of these images. <br> " +
        " <button onclick='makeDemo();' class='normbutton' >Demo test image</button> <br> ";
   AB.msg ( thehtml, 7 );
   
  // 8 Demo variable data (random demo ID)
  // 9 Demo variable data (changing guess)
  
const greenspan = "<span style='font-weight:bold; font-size:x-large; color:darkgreen'> "  ;

//--- end of AB.msgs structure: ---------------------------------------------------------




function setup() 
{
  createCanvas ( canvaswidth, canvasheight );

  doodle = createGraphics ( ZOOMPIXELS, ZOOMPIXELS );       // doodle on larger canvas 
  doodle.pixelDensity(1);
  
// JS load other JS 
// maybe have a loading screen while loading the JS and the data set 

      AB.loadingScreen();
 
 $.getScript ( "/uploads/codingtrain/matrix.js", function()
 {
   $.getScript ( "/uploads/codingtrain/nn.js", function()
   {
        $.getScript ( "/uploads/codingtrain/mnist.js", function()
        {
            console.log ("All JS loaded");
            nn = new NeuralNetwork(  noinput, nohidden, nooutput );
            nn.setLearningRate ( learningrate );
            loadData();
        });
   });
 });
}



// load data set from local file (on this server)

function loadData()    
{
  loadMNIST ( function(data)    
  {
    mnist = data;
    console.log ("All data loaded into mnist object:")
    console.log(mnist);
    AB.removeLoading();     // if no loading screen exists, this does nothing 
  });
}



function getImage ( img )      // make a P5 image object from a raw data array   
{
    let theimage  = createImage (PIXELS, PIXELS);    // make blank image, then populate it 
    theimage.loadPixels();        
    
    for (let i = 0; i < PIXELSSQUARED ; i++) 
    {
        let bright = img[i];
        let index = i * 4;
        theimage.pixels[index + 0] = bright;
        theimage.pixels[index + 1] = bright;
        theimage.pixels[index + 2] = bright;
        theimage.pixels[index + 3] = 255;
    }
    
    theimage.updatePixels();
    return theimage;
}


function getInputs ( img )      // convert img array into normalised input array 
{
    let inputs = [];
    for (let i = 0; i < PIXELSSQUARED ; i++)          
    {
        let bright = img[i];
        inputs[i] = bright / 255;       // normalise to 0 to 1
    } 
    return ( inputs );
}

 

function trainit (show)        // train the network with a single exemplar, from global var "train_index", show visual on or off 
{
  let img   = mnist.train_images[train_index];
  let label = mnist.train_labels[train_index];
  
  // optional - show visual of the image 
  if (show)                
  {
    var theimage = getImage ( img );    // get image from data array 
    image ( theimage,   0,                ZOOMPIXELS+50,    ZOOMPIXELS,     ZOOMPIXELS  );      // magnified 
    image ( theimage,   ZOOMPIXELS+50,    ZOOMPIXELS+50,    PIXELS,         PIXELS      );      // original
  }

  // set up the inputs
  let inputs = getInputs ( img );       // get inputs from data array 

  // set up the outputs
  let targets = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
  targets[label] = 1;       // change one output location to 1, the rest stay at 0 

  // console.log(train_index);
  // console.log(inputs);
  // console.log(targets);

  train_inputs = inputs;        // can inspect in console 
  nn.train ( inputs, targets );

  thehtml = " trainrun: " + trainrun + "<br> no: " + train_index ;
  AB.msg ( thehtml, 4 );

  train_index++;
  if ( train_index == NOTRAIN ) 
  {
    train_index = 0;
    console.log( "finished trainrun: " + trainrun );
    trainrun++;
  }
}


function testit()    // test the network with a single exemplar, from global var "test_index"
{ 
  let img   = mnist.test_images[test_index];
  let label = mnist.test_labels[test_index];

  // set up the inputs
  let inputs = getInputs ( img ); 
  
  test_inputs = inputs;        // can inspect in console 
  let prediction    = nn.predict(inputs);       // array of outputs 
  let guess         = findMax(prediction);      // the top output 

  total_tests++;
  if (guess == label)  total_correct++;

  let percent = (total_correct / total_tests) * 100 ;
  
  thehtml =  " testrun: " + testrun + "<br> no: " + total_tests + " <br> " +
        " correct: " + total_correct + "<br>" +
        "  score: " + greenspan + percent.toFixed(2) + "</span>";
  AB.msg ( thehtml, 6 );

  test_index++;
  if ( test_index == NOTEST ) 
  {
    console.log( "finished testrun: " + testrun + " score: " + percent.toFixed(2) );
    testrun++;
    test_index = 0;
    total_tests = 0;
    total_correct = 0;
  }
}




//--- find no.1 (and maybe no.2) output nodes ---------------------------------------
// (restriction) assumes array values start at 0 (which is true for output nodes) 


function find12 (a)         // return array showing indexes of no.1 and no.2 values in array 
{
  let no1 = 0;
  let no2 = 0;
  let no1value = 0;     
  let no2value = 0;
  
  for (let i = 0; i < a.length; i++) 
  {
    if (a[i] > no1value) 
    {
      no1 = i;
      no1value = a[i];
    }
    else if (a[i] > no2value) 
    {
      no2 = i;
      no2value = a[i];
    }
  }
  
  var b = [ no1, no2 ];
  return b;
}


// just get the maximum - separate function for speed - done many times 
// find our guess - the max of the output nodes array

function findMax (a)        
{
  let no1 = 0;
  let no1value = 0;     
  
  for (let i = 0; i < a.length; i++) 
  {
    if (a[i] > no1value) 
    {
      no1 = i;
      no1value = a[i];
    }
  }
  
  return no1;
}




// --- the draw function -------------------------------------------------------------
// every step:
 
function draw() 
{
  // check if libraries and data loaded yet:
  if ( typeof mnist == 'undefined' ) return;


// how can we get white doodle on black background on yellow canvas?
//        background('#ffffcc');    doodle.background('black');

      background ('black');
    
if ( do_training )    
{
  // do some training per step 
    for (let i = 0; i < TRAINPERSTEP; i++) 
    {
      if (i == 0)    trainit(true);    // show only one per step - still flashes by  
      else           trainit(false);
    }
    
  // do some testing per step 
    for (let i = 0; i < TESTPERSTEP; i++) 
      testit();
}

  // keep drawing demo and doodle images 
  // and keep guessing - we will update our guess as time goes on 
  
  if ( demo_exists )
  {
    drawDemo();
    guessDemo();
  }
  if ( doodle_exists ) 
  {
    drawDoodle();
    guessDoodle();
  }


// detect doodle drawing 
// (restriction) the following assumes doodle starts at 0,0 

  if ( mouseIsPressed )         // gets called when we click buttons, as well as if in doodle corner  
  {
     // console.log ( mouseX + " " + mouseY + " " + pmouseX + " " + pmouseY );
     var MAX = ZOOMPIXELS + 20;     // can draw up to this pixels in corner 
     if ( (mouseX < MAX) && (mouseY < MAX) && (pmouseX < MAX) && (pmouseY < MAX) )
     {
        mousedrag = true;       // start a mouse drag 
        doodle_exists = true;
        doodle.stroke('white');
        doodle.strokeWeight( DOODLE_THICK );
        doodle.line(mouseX, mouseY, pmouseX, pmouseY);      
     }
  }
  else 
  {
      // are we exiting a drawing
      if ( mousedrag )
      {
            mousedrag = false;
            // console.log ("Exiting draw. Now blurring.");
            doodle.filter (BLUR, DOODLE_BLUR);    // just blur once 
            //   console.log (doodle);
      }
  }
}




//--- demo -------------------------------------------------------------
// demo some test image and predict it
// get it from test set so have not used it in training


function makeDemo()
{
    demo_exists = true;
    var  i = AB.randomIntAtoB ( 0, NOTEST - 1 );  
    
    demo        = mnist.test_images[i];     
    var label   = mnist.test_labels[i];
    
   thehtml =  "Test image no: " + i + "<br>" + 
            "Classification: " + label + "<br>" ;
   AB.msg ( thehtml, 8 );
   
   // type "demo" in console to see raw data 
}


function drawDemo()
{
    var theimage = getImage ( demo );
     //  console.log (theimage);
     
    image ( theimage,   0,                canvasheight - ZOOMPIXELS,    ZOOMPIXELS,     ZOOMPIXELS  );      // magnified 
    image ( theimage,   ZOOMPIXELS+50,    canvasheight - ZOOMPIXELS,    PIXELS,         PIXELS      );      // original
}


function guessDemo()
{
   let inputs = getInputs ( demo ); 
   
  demo_inputs = inputs;  // can inspect in console 
  
  let prediction    = nn.predict(inputs);       // array of outputs 
  let guess         = findMax(prediction);      // the top output 

   thehtml =   " We classify it as: " + greenspan + guess + "</span>" ;
   AB.msg ( thehtml, 9 );
}




//--- doodle -------------------------------------------------------------

function drawDoodle()
{
    // doodle is createGraphics not createImage
    let theimage = doodle.get();
    // console.log (theimage);
    
    image ( theimage,   0,                0,    ZOOMPIXELS,     ZOOMPIXELS  );      // original 
    image ( theimage,   ZOOMPIXELS+50,    0,    PIXELS,         PIXELS      );      // shrunk
}
      
      
function guessDoodle() 
{
   // doodle is createGraphics not createImage
   let img = doodle.get();
  
  img.resize ( PIXELS, PIXELS );     
  img.loadPixels();

  // set up inputs   
  let inputs = [];
  for (let i = 0; i < PIXELSSQUARED ; i++) 
  {
     inputs[i] = img.pixels[i * 4] / 255;
  }
  
  doodle_inputs = inputs;     // can inspect in console 

  // feed forward to make prediction 
  let prediction    = nn.predict(inputs);       // array of outputs 
  let b             = find12(prediction);       // get no.1 and no.2 guesses  

  thehtml =   " We classify it as: " + greenspan + b[0] + "</span> <br>" +
            " No.2 guess is: " + greenspan + b[1] + "</span>";
  AB.msg ( thehtml, 2 );
}


function wipeDoodle()    
{
    doodle_exists = false;
    doodle.background('black');
}




// --- debugging --------------------------------------------------
// in console
// showInputs(demo_inputs);
// showInputs(doodle_inputs);


function showInputs ( inputs )
// display inputs row by row, corresponding to square of pixels 
{
    var str = "";
    for (let i = 0; i < inputs.length; i++) 
    {
      if ( i % PIXELS == 0 )    str = str + "\n";                                   // new line for each row of pixels 
      var value = inputs[i];
      str = str + " " + value.toFixed(2) ; 
    }
    console.log (str);
}


**/