content
stringlengths
5
1.05M
from django.shortcuts import render from products.models import Product # Create your views here. def index(request): context = { 'products' : Product.objects.all(), } return render(request,'landing/index.html',context=context) def about(request): return render(request,'landing/about.html') def support(request): return render(request,'landing/support.html')
# Evaluates and ranks UIs import pybrain from scipy import * import numpy as np import math import sys from copy import copy import operator as op from UIEnv import UI, UITask from evaluation import evaluation from episodic import EpisodicExperiment from experiment import Experiment from initialParams import initializeParams from pybrain.rl.environments.environment import Environment from pybrain.rl.agents import LearningAgent from q import Q from pybrain.rl.learners import SARSA from interface import ActionValueTable from pybrain.rl.learners.learner import EpisodicLearner from egreedy import EpsilonGreedyExplorer def rl_optimizer(UImatrix, num_of_actions, top_UI, params, batch_num, logging): #global policies #global top_UI policies = [([])]*params.num_states num_states = params.num_states # Defining UI environment actionmatrix = range(num_of_actions) goal = False # Default goal ui_env = UI(num_states, actionmatrix, num_of_actions, goal, params.sensor_errors, params.confusion_error, params.penalties, params.grid, params.dimensions, params.init_position, params.goal_position) av_table = ActionValueTable(num_states, num_of_actions, ui_env) av_table.initialize(1) # Train agent for each goal klm_tot = 0 klm_avg = 0 policies = [] best_actions = []# [0]*ui_env.num_of_states*(ui_env.num_of_states-1) objective = -1 p_learned = 1 ii = 0 ######### # Define Q-learning agent learner = Q(0.5, 0.99) #Q(0.6, 0.99) # 0.5, 0.99 learner.explorer.epsilon = 0.7 # 0.7 # 0.9 learner.explorer.decay = 0.999 # 0.99 learner.explorer.env = ui_env agent = LearningAgent(av_table, learner) # Define task and experiment task = UITask(ui_env) experiment = EpisodicExperiment(task, agent, av_table) ####### #Removed bad actions, give action matric as input av_table.initialize(-5., actionmatrix) for j in range(8): # Learning iterations initial_state = 0 runs = 50 # Episodes in one iteration experiment.doEpisodes(runs) agent.learn() agent.reset() ############################################## # Save policy # For optimization p = list(av_table.params) # Copies to new memory slot policies.append(p) ############################################## # Evaluation of UI and policy for current goal # Loop to get average : use only if errors used klm_tasks_tot = np.array([0.]*(params.num_states-1)) total_iterations = 1 klm_tot = 0 for i in range(total_iterations): # KLM value klm_g, best_path = evaluation(av_table, ui_env, task, False, params, batch_num, logging) if klm_g == -1: # Not learned klm_tot += 20*5 p_learned = 0 print "error" break # Save to total KLM klm_tot += klm_g klm_avg += klm_tot/total_iterations return top_UI, objective, best_actions, best_path, klm_g
import json from pprint import pprint departureTime_hour = "" departureTime_minute = "" flightNumber = "" aircraftType = "" destination = "" flightStatus = "" baseCost = "" durationInMinutes = "" fl = "lo" new_val = "" with open('/Users/abinavc/AA-Mock-Engine/mock/flightData.json') as f: data = json.load(f) for i in data.values(): for x in i["flights"]: flightNumber = str(json.dumps((x["flightNumber"]))) aircraftType = str(json.dumps((x["aircraftType"]))) destination = str(json.dumps((x["destination"]))) flightStatus = str(json.dumps((x["flightStatus"]))) baseCost = str(json.dumps((x["baseCost"]))) durationInMinutes = str(json.dumps((x["durationInMinutes"]))) departureTime_hour = str(json.dumps((x["departureTime"]["hour"]))) departureTime_minute = str(json.dumps((x["departureTime"]["minute"]))) #sql = "INSERT INTO flight_data (id, flight_number, aircraft_type, destination, flight_status, base_cost, duration_minutes, departuretime_hour, departuretime_minute, departuretime_minute) VALUES ('', flightNumber, aircraftType, destination, flightStatus, baseCost, durationInMinutes, departureTime_hour, departureTime_minute)" #mycursor.execute(sql) #mydb.commit() #print(mycursor.rowcount, "record inserted.") #print(x["destination"]) #departureTime_minute.append(y["minute"]) #print() #pprint(flightNumber) #pprint(aircraftType) #pprint(destination) #pprint(flightStatus) #pprint(baseCost) #pprint(durationInMinutes)
#!/usr/bin/env python # TO DO: Revamp functions to # -compare different Lennard-Jones grid transformations # TO DO: Clean up output # TO DO: Write docstrings # TO DO: Set up checkpoints # Ideas from Prodock by Trosset & Scheraga # TO DO: Grid interpolation with Bezier splines, which provides second derivatives [Oberlin, D.,Jr.; Scheraga, H. A. J Comput Chem 1998, 19, 71:85.]. This could allow for layer sampling. # TO DO: Scaled collective variable Monte Carlo for dihedral angle moves [Noguti, T.; Go, N. Biopolymers 1985, 24, 527:546.] # Ideas from QXP by McMartin and Bohacek # TO DO: Dihedral angle moves using cylindrical coordinates (makes energy evalulations faster?) # Ideas from Ribodock by Morley and Afshar # TO DO: Scale number of MC trials by number of rotatable bonds # TO DO: Genetic Monte Carlo import os from os.path import join from os.path import exists from os.path import abspath import pickle import gzip import copy import time import numpy as np import MMTK import MMTK.Units from MMTK.ParticleProperties import Configuration import Scientific from Scientific_vector import Vector # @UnresolvedImport import AlGDock as a # Constants R = 8.3144621*MMTK.Units.J/MMTK.Units.mol/MMTK.Units.K T_HIGH = 800.0*MMTK.Units.K T_TARGET = 300.0*MMTK.Units.K RT_HIGH = R*T_HIGH RT_TARGET = R*T_TARGET term_map = { 'cosine dihedral angle':'MM', 'electrostatic/pair sum':'MM', 'harmonic bond':'MM', 'harmonic bond angle':'MM', 'Lennard-Jones':'MM', 'site':'site', 'sLJr':'sLJr', 'sLJa':'sLJa', 'LJr':'LJr', 'LJa':'LJa', 'ELE':'ELE', 'electrostatic':'misc'} ######################## # Auxilliary functions # ######################## def random_rotate(): """ Return a random rotation matrix """ u = np.random.uniform(size=3) # Random quaternion q = np.array([np.sqrt(1-u[0])*np.sin(2*np.pi*u[1]), np.sqrt(1-u[0])*np.cos(2*np.pi*u[1]), np.sqrt(u[0])*np.sin(2*np.pi*u[2]), np.sqrt(u[0])*np.cos(2*np.pi*u[2])]) # Convert the quaternion into a rotation matrix rotMat = np.array([[q[0]*q[0] + q[1]*q[1] - q[2]*q[2] - q[3]*q[3], 2*q[1]*q[2] - 2*q[0]*q[3], 2*q[1]*q[3] + 2*q[0]*q[2]], [2*q[1]*q[2] + 2*q[0]*q[3], q[0]*q[0] - q[1]*q[1] + q[2]*q[2] - q[3]*q[3], 2*q[2]*q[3] - 2*q[0]*q[1]], [2*q[1]*q[3] - 2*q[0]*q[2], 2*q[2]*q[3] + 2*q[0]*q[1], q[0]*q[0] - q[1]*q[1] - q[2]*q[2] + q[3]*q[3]]]) return rotMat def choice(N, weights=None): """ Weighted random number selection of N values """ weights /= np.sum(weights) cumweights = np.cumsum(weights) beginIndicies = np.zeros(N, dtype=int) randVals = np.random.uniform(size=N) for (bI_idx,randVal) in zip(range(N),randVals): beginIndicies[bI_idx] = sum(cumweights < randVal) beginIndicies.sort() return beginIndicies def merge_dictionaries(dicts, required_consistency=[], print_inconsistent=False): """ Merges a list of dictionaries, giving priority to items in descending order. Items in the required_consistency list must be consistent with one another. """ merged = {} for a in range(len(dicts)): # Loop over all dictionaries, giving priority to the first if not isinstance(dicts[a],dict): continue for key in dicts[a].keys(): if dicts[a][key] is None: if not key in merged.keys(): merged[key] = None elif isinstance(dicts[a][key],dict): merged[key] = merge_dictionaries( [dicts[n][key] for n in range(len(dicts)) if key in dicts[n].keys()], required_consistency=required_consistency) else: # Check for consistency with other dictionaries for b in (range(a) + range(a+1,len(dicts))): if isinstance(dicts[b],dict) and (key in dicts[b].keys()) and (dicts[b][key] is not None): if (isinstance(dicts[b][key],np.ndarray)): inconsistent_items = (dicts[b][key]!=dicts[a][key]).any() else: inconsistent_items = (dicts[b][key]!=dicts[a][key]) if inconsistent_items: if print_inconsistent: print 'Dictionary items are inconsistent:' print dicts[a][key] print dicts[b][key] if key in required_consistency: raise Exception('Items must be consistent!') merged[key] = dicts[a][key] return merged def convert_dictionary_relpath(d, relpath_o=None, relpath_n=None): """ Converts all file names in a dictionary from one relative path to another. If relpath_o is None, nothing is joined to the original path. If relpath_n is None, an absolute path is used. """ converted = {} for key in d.keys(): if d[key] is None: pass elif isinstance(d[key],dict): converted[key] = convert_dictionary_relpath(d[key], relpath_o = relpath_o, relpath_n = relpath_n) elif isinstance(d[key],str): if relpath_o is not None: p = abspath(join(relpath_o,d[key])) else: p = abspath(d[key]) if relpath_n is not None: converted[key] = os.path.relpath(p,relpath_n) else: converted[key] = p return converted class NullDevice(): """ A device to suppress output """ def write(self, s): pass ############## # Main Class # ############## class Docker: def __init__(self, # Arguments are either constant or run-dependent. # Constant arguments are stored in the dir_cool and dir_dock directories when they are first used. In subsequent instances of Dock, the stored values will be used. Run-dependent arguments can vary from instance to instance. # Directory and file names # Run-dependent dir_dock=None, dir_cool=None, namd=None, vmd=None, # Stored in both dir_cool and dir_dock ligand_database=None, forcefield=None, frcmodList=None, ligand_prmtop=None, ligand_inpcrd=None, # Stored in dir_dock receptor_prmtop=None, receptor_inpcrd=None, receptor_fixed_atoms=None, complex_prmtop=None, complex_inpcrd=None, complex_fixed_atoms=None, dir_grid='', grid_LJr=None, grid_LJa=None, grid_ELE=None, grid_force=None, # Optional, only for NAMD grids # Arguments - simulation parameters and constants # Run-dependent cool_repX_cycles=None, dock_repX_cycles=None, run_type=None, # Defaults for dir_cool and dir_dock protocol=None, therm_speed=None, sampler=None, seeds_per_state=None, steps_per_seed=None, repX_cycles=None, sweeps_per_cycle=None, steps_per_sweep=None, keep_intermediate=None, # Stored in dir_cool cool_protocol=None, cool_therm_speed=None, cool_sampler=None, cool_seeds_per_state=None, cool_steps_per_seed=None, cool_sweeps_per_cycle=None, cool_steps_per_sweep=None, cool_keep_intermediate=None, # Stored in dir_dock dock_protocol=None, dock_therm_speed=None, dock_sampler=None, dock_seeds_per_state=None, dock_steps_per_seed=None, dock_sweeps_per_cycle=None, dock_steps_per_sweep=None, dock_keep_intermediate=None, legs=None, site=None, site_center=None, site_direction=None, # Site parameters site_max_X=None, site_max_R=None, # Site parameters site_density=None, do_calc_random_dock_stats=None, rmsd_ref=None, # RMSD calculation parameters receptor_GBSA=None, receptor_Gas=None): # Energy values """Parses the input arguments and runs the requested docking calculation""" print """ ########### # ALGDock # ########### version {0} Molecular docking with adaptively scaled alchemical interaction grids """.format(a.__version__) print '*** Directories ***' self.dir = {} if dir_dock is not None: self.dir['dock'] = abspath(dir_dock) else: self.dir['dock'] = abspath('.') if dir_cool is not None: self.dir['cool'] = abspath(dir_cool) else: self.dir['cool'] = self.dir['dock'] for p in ['cool','dock']: if not os.path.isdir(self.dir[p]): os.makedirs(self.dir[p]) print self.dir # Load previously stored file names and arguments FNs = {} args = {} for p in ['cool','dock']: store_FN = join(self.dir[p],p+'_store.pkl.gz') if exists(store_FN): (fn_dict, arg_dict) = self._load_pkl_gz(store_FN) FNs[p] = convert_dictionary_relpath(fn_dict, relpath_o=self.dir[p], relpath_n=None) args[p] = arg_dict else: FNs[p] = {} args[p] = {} # Set up file name dictionary print '\n*** Files ***' for p in ['cool','dock']: if p in FNs.keys(): if FNs[p]!={}: print 'previous stored in %s directory:'%p print FNs[p] FNs['new'] = { 'ligand_database':a.findPath([ligand_database]), 'forcefield':a.findPath([forcefield,'../Data/gaff.dat']), 'frcmodList':frcmodList, 'prmtop':{'L':a.findPath([ligand_prmtop]), 'R':a.findPath([receptor_prmtop]), 'RL':a.findPath([complex_prmtop])}, 'inpcrd':{'L':a.findPath([ligand_inpcrd]), 'R':a.findPath([receptor_inpcrd]), 'RL':a.findPath([complex_inpcrd])}, 'fixed_atoms':{'R':a.findPath([receptor_fixed_atoms]), 'RL':a.findPath([complex_fixed_atoms])}, 'grids':{'LJr':a.findPath([grid_LJr, join(dir_grid,'LJr.dx'), join(dir_grid,'LJr.dx.gz')]), 'LJa':a.findPath([grid_LJa, join(dir_grid,'LJa.dx'), join(dir_grid,'LJa.dx.gz')]), 'ELE':a.findPath([grid_ELE, join(dir_grid,'electrostatic.dx'), join(dir_grid,'electrostatic.dx.gz'), join(dir_grid,'pbsa.dx'), join(dir_grid,'pbsa.dx.gz')])}, 'grid_force':a.findPath([grid_force]), 'namd':a.findPath([namd] + a.search_paths['namd']), 'vmd':a.findPath([vmd] + a.search_paths['vmd'])} if not (FNs['cool']=={} and FNs['dock']=={}): print 'from arguments and defaults:' print FNs['new'] print '\nto be used:' self._FNs = merge_dictionaries( [FNs[src] for src in ['new','cool','dock']], required_consistency=['L','R','RL','ligand_database'], print_inconsistent=True) # Default: a force field modification is in the same directory as the ligand if (self._FNs['frcmodList'] is None): dir_ligand_db = os.path.dirname(self._FNs['ligand_database']) frcmod = a.findPath([abspath(join(dir_ligand_db,'lig.frcmod')), abspath(join(dir_ligand_db,'ligand.frcmod'))]) if frcmod is not None: self._FNs['frcmodList'] = [frcmod] print self._FNs print '\n*** Simulation parameters and constants ***' args['default_cool'] = { 'protocol':'Adaptive', 'therm_speed':2.0, 'sampler':'NUTS', 'seeds_per_state':50, 'steps_per_seed':20000, 'repX_cycles':20, 'sweeps_per_cycle':100, 'steps_per_sweep':2500, 'keep_intermediate':False} args['default_dock'] = dict(args['default_cool'].items() + { 'legs':2, 'site':None, 'site_center':None, 'site_direction':None, 'site_max_X':None, 'site_max_R':None, 'site_density':500., 'do_calc_random_dock_stats':False, 'rmsd_ref':{'vmdcrd':None, 'species':'RL', 'selection':'resname iga'}, 'receptor_GBSA':None, 'receptor_Gas':None}.items()) # Store passed arguments in dictionary if rmsd_ref is not None: rmsd_ref_dict = {} if isinstance(rmsd_ref,str): rmsd_ref = [rmsd_ref] rmsd_ref[0] = os.path.relpath(rmsd_ref[0],self.dir['dock']) for ind in range(len(rmsd_ref)): rmsd_ref_dict[['vmdcrd','species','selection'][ind]] = rmsd_ref[ind] rmsd_ref = rmsd_ref_dict namespace = locals() for p in ['cool','dock']: args['new_'+p] = {} for key in args['default_'+p].keys(): specific_key = p + '_' + key if (specific_key in namespace.keys()) and \ (namespace[specific_key] is not None): # Use the specific key if it exists args['new_'+p][key] = namespace[specific_key] elif (key in ['site_center', 'site_direction', 'receptor_Gas','receptor_GBSA']) and \ (namespace[key] is not None): # Convert these to arrays of floats args['new_'+p][key] = np.array(namespace[key], dtype=float) else: # Use the general key args['new_'+p][key] = namespace[key] self.params = {} for p in ['cool','dock']: self.params[p] = merge_dictionaries( [args[src] for src in ['default_'+p,'new_'+p,p]]) for p in ['cool','dock']: print 'for %s:'%p print self.params[p] # Variables dependent on the parameters self.original_Es = [[{}]] for phase in ['Gas','GBSA']: if self.params['dock']['receptor_'+phase] is not None: self.original_Es[0][0]['R'+phase] = self.params['dock']['receptor_'+phase] if self.params['dock']['legs']==4: self._scalables = ['sLJr','sLJa','LJr','LJa','ELE'] else: self._scalables = ['LJr','LJa','ELE'] self.lambda_full = {'T':T_HIGH,'MM':True,'site':True} self.lambda_scalables = {'T':T_HIGH} for scalable in self._scalables: self.lambda_full[scalable] = 1 self.lambda_scalables[scalable] = 1 # Check for existence of required files for FN in [self._FNs['ligand_database'], self._FNs['forcefield'], self._FNs['prmtop']['L'], self._FNs['inpcrd']['L']]: if (FN is None) or (not exists(FN)): raise Exception('Required file %s is missing!'%FN) for FN in [self._FNs['prmtop']['RL'], self._FNs['inpcrd']['RL'], self._FNs['fixed_atoms']['RL'], self._FNs['grids']['LJr'], self._FNs['grids']['LJa'], self._FNs['grids']['ELE']]: if (FN is None) or (not exists(FN)): print 'Missing file %s is necessary for docking!'%FN if ('run_type' is args) and \ (args.run_type is not None) and \ (args.run_type in ['Dock0_0','ToDock0_0','Dock','ToDock']): raise Exception('File %s is required!'%FN) if (self._FNs['inpcrd']['RL'] is None) and \ (self._FNs['inpcrd']['R'] is None): raise Exception('Receptor coordinates needed') self._setup_universe() if run_type=='initial_cool': self.initial_cool() elif run_type=='cool': self.cool() elif run_type=='initial_dock': self.initial_dock() elif run_type=='dock': self.dock() elif run_type=='all': self.cool() self.calc_f_L() self.dock() self.calc_f_RL() self.calc_RMSD() def _setup_universe(self): """Creates an MMTK InfiniteUniverse and adds the ligand""" MMTK.Database.molecule_types.directory = \ os.path.dirname(self._FNs['ligand_database']) # Force fields from MMTK.ForceFields import Amber12SBForceField self._forceFields = {} self._forceFields['gaff'] = Amber12SBForceField( parameter_file=self._FNs['forcefield'],mod_files=self._FNs['frcmodList']) if self.params['dock']['site']=='Sphere': from AlGDock.ForceFields.Sphere.Sphere import SphereForceField self._forceFields['site'] = SphereForceField( center=self.params['dock']['site_center'], max_R=self.params['dock']['site_max_R'], name='site') elif self.params['dock']['site']=='Cylinder': from AlGDock.ForceFields.Cylinder.Cylinder import CylinderForceField self._forceFields['site'] = CylinderForceField( origin=self.params['dock']['site_center'], direction=self.params['dock']['site_direction'], max_X=self.params['dock']['site_max_X'], max_R=self.params['dock']['site_max_R'], name='site') else: raise Exception('Binding site type not recognized!') # Set up the system import sys original_stderr = sys.stderr sys.stderr = NullDevice() self.molecule = MMTK.Molecule(os.path.basename(self._FNs['ligand_database'])) sys.stderr = original_stderr # Randomly rotate the molecule and translate it into the binding site from Scientific.Geometry.Transformation import Rotation self.molecule.applyTransformation(Rotation(random_rotate())) self.molecule.translateTo(Vector(self._forceFields['site'].randomPoint())) self.universe = MMTK.Universe.InfiniteUniverse() self.universe.addObject(self.molecule) self._set_universe_force_field({'MM':True, 'T':T_HIGH}) self._ligand_natoms = self.universe.numberOfAtoms() from Integrators.HamiltonianMonteCarlo.HamiltonianMonteCarlo import HamiltonianMonteCarloIntegrator from NUTS import NUTSIntegrator # @UnresolvedImport self.sampler = {} for p in ['cool', 'dock']: if self.params[p]['sampler'] == 'NUTS': self.sampler[p] = NUTSIntegrator(self.universe) else: raise Exception('Unrecognized sampler!') prmtop_atom_order = np.array([atom.number \ for atom in self.molecule.prmtop_order], dtype=int) self._inv_prmtop_atom_order = np.zeros(shape=len(prmtop_atom_order), dtype=int) for i in range(len(prmtop_atom_order)): self._inv_prmtop_atom_order[prmtop_atom_order[i]] = i # Determine ligand atomic index def load_prmtop(prmtopFN, varnames=['RESIDUE_LABEL','RESIDUE_POINTER']): """ Loads records from an AMBER prmtop file and stores data in a dictionary """ def load_record(record): items = [] lines = record.split('\n') lines.pop(0) # Name FORMAT = lines.pop(0).strip()[8:-1] # Format if FORMAT.find('a')>-1: # Text w = int(FORMAT[FORMAT.find('a')+1:]) for line in lines: items = items + [line[x:x+w] for x in range(0,len(line),w)] return np.array(items) elif FORMAT.find('I')>-1: # Integer w = int(FORMAT[FORMAT.find('I')+1:]) for line in lines: items = items + [int(line[x:x+w]) for x in range(0,len(line),w)] return np.array(items, dtype=int) elif FORMAT.find('E')>-1: # Scientific w = int(FORMAT[FORMAT.find('E')+1:FORMAT.find('.')]) for line in lines: items = items + [float(line[x:x+w]) for x in range(0,len(line),w)] return np.array(items, dtype=float) prmtopF = open(prmtopFN,'r') prmtopData = prmtopF.read().split('%FLAG ') prmtopF.close() prmtop = {} for record in prmtopData: name = record[:record.find('\n')].strip() if name in varnames: prmtop[name] = load_record(record) return prmtop if (self._FNs['prmtop']['R'] is not None) and \ (self._FNs['prmtop']['RL'] is not None): prmtop_R = load_prmtop(self._FNs['prmtop']['R']) prmtop_RL = load_prmtop(self._FNs['prmtop']['RL']) ligand_ind = [ind for (r,ind) in \ zip(prmtop_RL['RESIDUE_LABEL'], range(len(prmtop_RL['RESIDUE_LABEL']))) \ if r not in prmtop_R['RESIDUE_LABEL']] if len(ligand_ind) > 1: raise Exception('Ligand residue label is ambiguous') self._ligand_first_atom = prmtop_RL['RESIDUE_POINTER'][ligand_ind[0]] - 1 else: raise Exception('Missing AMBER prmtop files') # Read the receptor coordinates if self._FNs['inpcrd']['R'] is not None: self._receptor_conf = self._read_crd(self._FNs['inpcrd']['R'], split=False) else: complex_crd = self._read_crd(self._FNs['inpcrd']['RL'], split=False) self._receptor_conf = np.vstack(\ (complex_crd[:self._ligand_first_atom,:],\ complex_crd[self._ligand_first_atom + self._ligand_natoms:,:])) # Load progress self.confs = {} self._load_progress('cool') self._load_progress('dock') self._postprocess(readOnly=True) self.calc_f_L(readOnly=True) self.calc_f_RL(readOnly=True) ########### # Cooling # ########### def initial_cool(self): """ Cools the ligand from T_HIGH to T_TARGET Intermediate thermodynamic states are chosen such that thermodynamic length intervals are approximately constant. Configurations from each state are subsampled to seed the next simulation. The following are saved: (1) the cooling protocol (cool_protocol.pkl.gz) (2) starting configurations for replica exchange (cool_replicas.crd.gz) """ if (len(self.cool_protocol)>0) and (self.cool_protocol[-1]['crossed']): return # Initial cooling is already complete self._set_lock('cool') print "\n>>> Initial cooling of the ligand from %d K to %d K"%(T_HIGH,T_TARGET) cool_start_time = time.time() # Save the simulation parameters self._write_pkl_gz(join(self.dir['cool'],'cool_store.pkl.gz'), (convert_dictionary_relpath({ 'ligand_database':self._FNs['ligand_database'], 'forcefield':self._FNs['forcefield'], 'frcmodList':self._FNs['frcmodList'], 'prmtop':{'L':self._FNs['prmtop']['L']}, 'inpcrd':{'L':self._FNs['inpcrd']['L']}}, relpath_o=None, relpath_n=self.dir['cool']), dict([tp for tp in self.params['cool'].items() if not tp[0] in ['repX_cycles']]))) # Set up the force field self.cool_protocol = [{'MM':True, 'T':T_HIGH, \ 'delta_t':1.0*MMTK.Units.fs, 'crossed':False}] self._set_universe_force_field(self.cool_protocol[-1]) # Minimize and ramp the temperature from 0 to the desired high temperature from MMTK.Minimization import ConjugateGradientMinimizer # @UnresolvedImport minimizer = ConjugateGradientMinimizer(self.universe) minimizer(steps = 500) for T in np.linspace(0.,T_HIGH,33)[1:]: self.sampler['cool'](steps = 500, T=T, delta_t=self.delta_t) # Run at high temperature state_start_time = time.time() (confs, Es_MM, g) = self._initial_sim_state('cool', [self.universe.configuration().array], normalize=True) self.confs['cool_replicas'] = [confs[np.argmin(Es_MM)]] self.cool_protocol[-1]['delta_t'] = self.delta_t self.cool_protocol[-1]['g'] = g print " generated %d configurations "%len(confs) + \ "at %d K "%self.cool_protocol[-1]['T'] + \ "in %f s "%(time.time()-state_start_time) + \ "(g=%f, "%self.cool_protocol[-1]['g'] + \ "Delta t=%f)"%self.cool_protocol[-1]['delta_t'] # Main loop for initial cooling: choose new temperature, randomly select seeds, simulate T = T_HIGH while (not self.cool_protocol[-1]['crossed']): # Choose new temperature To = self.cool_protocol[-1]['T'] dL = Es_MM.std()/(R*T*T) if dL>0: T = T - self.params['cool']['therm_speed']/dL if T < T_TARGET: lambda_n = {'T':T_TARGET, 'MM':True, 'crossed':True} else: lambda_n = {'T':T, 'MM':True, 'crossed':False} else: lambda_n = {'T':T_TARGET, 'MM':True, 'crossed':True} self.cool_protocol.append(lambda_n) self._set_universe_force_field(self.cool_protocol[-1]) # Randomly select seeds for new trajectory seedIndicies = choice(self.params['cool']['seeds_per_state'], \ np.exp(-Es_MM/R*(1/T-1/To))) # Simulate and store data state_start_time = time.time() (confs, Es_MM, g) = self._initial_sim_state('cool', \ [confs[ind] for ind in seedIndicies], normalize=True) self.confs['cool_replicas'].append(confs[np.argmin(Es_MM)]) self.cool_protocol[-1]['delta_t'] = self.delta_t self.cool_protocol[-1]['g'] = g print " generated %d configurations "%len(confs) + \ "at %d K "%self.cool_protocol[-1]['T'] + \ "in %f s "%(time.time()-state_start_time) + \ "(g=%f, "%self.cool_protocol[-1]['g'] + \ "Delta t=%f)"%self.cool_protocol[-1]['delta_t'] self.cool_Es = [[] for s in range(len(self.cool_protocol))] # Save data self._write_crd(join(self.dir['cool'],'cool_replicas.crd.gz'), self.confs['cool_replicas'], title='cool_replicas') self._write_pkl_gz(join(self.dir['cool'],'cool_protocol.pkl.gz'), self.cool_protocol) self._clear_lock('cool') print "\nElapsed time for initial cooling: %f s"%(time.time()-cool_start_time) def cool(self): """ Samples different ligand configurations at thermodynamic states between T_HIGH and T_TARGET """ self._sim_process('cool') def calc_f_L(self, readOnly=False): """ Calculates ligand-specific free energies: 1. solvation free energy of the ligand using single-step free energy perturbation 2. reduced free energy of cooling the ligand from T_HIGH to T_TARGET """ if self.cool_protocol==[]: return # Initial cooling is incomplete # Initialize variables by loading data or as empty lists f_L_FN = join(self.dir['cool'],'f_L.pkl.gz') if exists(f_L_FN): (self.f_L_solvation, self.f_cool, self.cool_equilibrated_cycle, self.cool_mean_acc) = self._load_pkl_gz(f_L_FN) else: for var in ['f_L_solvation', 'f_cool', 'cool_equilibrated_cycle', 'cool_mean_acc']: if not hasattr(self,var): setattr(self,var,[]) if readOnly: return self._postprocess([('cool',-1,-1,'L')]) # Estimate cycle at which simulation has equilibrated K = len(self.cool_protocol) u_Ks = [self._u_kln([self.cool_Es[K-1][c]],[self.cool_protocol[K-1]]) for c in range(self._cool_cycle)] mean_u_Ks = np.array([np.mean(u_K) for u_K in u_Ks]) std_u_Ks = np.array([np.std(u_K) for u_K in u_Ks]) for c in range(len(self.cool_equilibrated_cycle), self._cool_cycle): nearMean = (mean_u_Ks - mean_u_Ks[c])<std_u_Ks[c] for (item, ind) in zip(nearMean, range(len(nearMean))): if item: self.cool_equilibrated_cycle.append(ind) break # Calculate cooling free energies that have not already been calculated updated = False for c in range(len(self.f_L_solvation), self._cool_cycle): fromCycle = self.cool_equilibrated_cycle[c] toCycle = c + 1 du = \ (np.concatenate([self.cool_Es[K-1][c]['LGBSA'][:,-1] for c in range(fromCycle,toCycle)]) - \ np.concatenate([self.cool_Es[K-1][c]['LGas'][:,-1] for c in range(fromCycle,toCycle)]))/RT_TARGET min_du = min(du) self.f_L_solvation.append(-np.log(np.exp(-du+min_du).mean()) + min_du) # Cooling free energy cool_Es = [] for cool_Es_state in self.cool_Es: cool_Es.append(cool_Es_state[fromCycle:toCycle]) (u_kln,N_k) = self._u_kln(cool_Es,self.cool_protocol) self.f_cool.append(self._run_MBAR(u_kln,N_k)) # Average acceptance probabilities cool_mean_acc = np.zeros(K-1) for k in range(1, K-1): (u_kln,N_k) = self._u_kln(cool_Es[k:k+2],self.cool_protocol[k:k+2]) N = min(N_k) acc = np.exp(-u_kln[0,1,:N]-u_kln[1,0,:N]+u_kln[0,0,:N]+u_kln[1,1,:N]) cool_mean_acc[k] = np.mean(np.minimum(acc,np.ones(acc.shape))) self.cool_mean_acc.append(cool_mean_acc) print " calculated cooling free energy of %f kT using cycles %d to %d"%(self.f_cool[-1][-1], fromCycle, toCycle-1) updated = True if updated: self._write_pkl_gz(f_L_FN, (self.f_L_solvation, self.f_cool, self.cool_equilibrated_cycle, self.cool_mean_acc)) ########### # Docking # ########### def initial_dock(self): """ Docks the ligand into the receptor The first state of docking is sampled by randomly placing configurations from the high temperature ligand simulation into the binding site. Intermediate thermodynamic states are chosen such that thermodynamic length intervals are approximately constant. Configurations from each state are subsampled to seed the next simulation. The following are saved: (1) the docking protocol (dock_protocol.pkl.gz) (2) starting configurations for replica exchange (dock_replicas.crd.gz) """ if self.cool_protocol==[]: raise Exception('Cannot perform initial docking until cooling is complete') if (len(self.dock_protocol)>0) and (self.dock_protocol[-1]['crossed']): return # Initial docking already complete # Load the first cooling state and make sure there are enough samples print "\n>>> Loading the first state of cooling" (cool0_confs, cool0_Es_MM) = self._load_cool0() while len(cool0_Es_MM)<self.params['dock']['seeds_per_state']: print "More samples from high temperature ligand simulation needed" self._replica_exchange('cool') (cool0_confs, cool0_Es_MM) = self._load_cool0() print " using %d configurations from the first state of cooling"%len(cool0_Es_MM) self._set_lock('dock') print "\n>>> Initial docking" dock_start_time = time.time() # Store docking parameters self._write_pkl_gz(join(self.dir['dock'],'dock_store.pkl.gz'), (convert_dictionary_relpath( dict([tp for tp in self._FNs.items() if not tp[0] in ['namd','vmd']]), relpath_o=None, relpath_n=self.dir['dock']), dict([tp for tp in self.params['dock'].items() \ if not tp[0] in ['repX_cycles']]))) # Set up the force field with full interaction grids self._set_universe_force_field(self.lambda_scalables) lambda_o = {'T':T_HIGH, 'MM':True, 'site':True, 'sLJr_crossed':False, 'crossed':False} for scalable in self._scalables: lambda_o[scalable] = 0 self.dock_protocol = [lambda_o] state_start_time = time.time() self._random_translations_and_rotations() # Get interaction energies. # Loop over configurations, random rotations, and random translations E = {} for term in (['MM','site']+self._scalables): E[term] = np.zeros((self.params['dock']['seeds_per_state'], \ self._max_n_rot,self._max_n_trans)) converged = False n_trans_o = 0 n_trans_n = self._n_trans while not converged: for c in range(self.params['dock']['seeds_per_state']): E['MM'][c,:,:] = cool0_Es_MM[c] for i_rot in range(self._n_rot): conf_rot = Configuration(self.universe,\ np.dot(cool0_confs[c], self._random_rotT[i_rot,:,:])) for i_trans in range(n_trans_o, n_trans_n): self.universe.setConfiguration(conf_rot) self.universe.translateBy(self._random_trans[i_trans]) eT = self.universe.energyTerms() for (key,value) in eT.iteritems(): E[term_map[key]][c,i_rot,i_trans] += value E_c = {} for term in E.keys(): E_c[term] = np.ravel(E[term][:,:self._n_rot,:n_trans_n]) (u_kln,N_k) = self._u_kln([E_c],\ [lambda_o,self._next_dock_state(E=E_c, lambda_o=lambda_o)]) du = u_kln[0,1,:] - u_kln[0,0,:] bootstrap_reps = 50 f_grid0 = np.zeros(bootstrap_reps) for b in range(bootstrap_reps): f_grid0[b] = -np.log(np.mean(np.exp( -du[np.random.randint(0, len(du), len(du))]))) f_grid0_std = f_grid0.std() converged = f_grid0_std<0.01 if not converged: if n_trans_n == self._max_n_trans: break n_trans_o = n_trans_n n_trans_n = min(n_trans_n + 25, self._max_n_trans) if self._n_trans != n_trans_n: # Save number translations used self._n_trans = n_trans_n self._write_pkl_gz(join(self.dir['dock'],'random_trans.pkl.gz'), (self._n_trans, self._max_n_trans, self._random_trans)) print " %d ligand configurations were randomly docked "%len(cool0_Es_MM) + \ "into the binding site "+ \ "using %d translations and %d rotations "%(n_trans_n,self._n_rot) + \ "in %f s"%(time.time()-state_start_time) print " the predicted free energy difference between the" + \ " first and second docking stages is %f (%f)"%(f_grid0.mean(),f_grid0_std) for term in E.keys(): E[term] = np.ravel(E[term][:,:self._n_rot,:self._n_trans]) if self.params['dock']['do_calc_random_dock_stats']: self.calc_random_dock_stats(E) # Main loop for initial docking: choose new thermodynamic variables, randomly select seeds, simulate while not self.dock_protocol[-1]['crossed']: # Determine next value of the protocol lambda_n = self._next_dock_state(E = E, lambda_o = lambda_o) self.dock_protocol.append(lambda_n) # Use free energy perturbation to estimate the free energy difference between # the first and second docking stage if len(self.dock_protocol)==2: (u_kln,N_k) = self._u_kln([E], [lambda_o, lambda_n]) self.dock_protocol[0]['f_grid0'] = \ -np.log(np.mean(np.exp(-(u_kln[0,1,:] - u_kln[0,0,:])))) # Randomly select seeds for new trajectory u_o = self._u_kln([E],[lambda_o]) u_n = self._u_kln([E],[lambda_n]) seedIndicies = choice(self.params['dock']['seeds_per_state'], np.exp(u_o-u_n)) if len(self.dock_protocol)==2: # Cooling state 0 configurations, randomly oriented # Use the lowest energy configuration in the first docking stage for replica exchange ind = np.argmin(u_n) (c,i_rot,i_trans) = np.unravel_index(ind, (self.params['dock']['seeds_per_state'], self._n_rot, self._n_trans)) repX_conf = np.add(np.dot(cool0_confs[c], self._random_rotT[i_rot,:,:]),\ self._random_trans[i_trans].array) self.confs['dock_replicas'] = [repX_conf] seeds = [] for ind in seedIndicies: (c,i_rot,i_trans) = np.unravel_index(ind, (self.params['dock']['seeds_per_state'], self._n_rot, self._n_trans)) seeds.append(np.add(np.dot(cool0_confs[c], self._random_rotT[i_rot,:,:]), self._random_trans[i_trans].array)) else: # Seeds from last state seeds = [confs[ind] for ind in seedIndicies] # Simulate state_start_time = time.time() self._set_universe_force_field(lambda_n) (confs, Es_tot, g) = self._initial_sim_state('dock', seeds, normalize=False) # Store data self.confs['dock_replicas'].append(confs[np.argmin(Es_tot)]) self.dock_protocol[-1]['delta_t'] = self.delta_t print ' generated %d configurations in %f s using with the following parameters:'%(\ len(confs), time.time()-state_start_time) print self.dock_protocol[-1] # Get state energies self._set_universe_force_field(self.lambda_full) E = {} for term in (['MM','site','misc'] + self._scalables): E[term] = np.zeros(len(confs)) for c in range(len(confs)): self.universe.setConfiguration(Configuration(self.universe,confs[c])) eT = self.universe.energyTerms() for (key,value) in eT.iteritems(): E[term_map[key]][c] += value lambda_o = lambda_n self.dock_Es = [[] for s in range(len(self.dock_protocol))] print " there are %d stages in the docking process"%(len(self.dock_protocol)) # Save data self._write_crd(join(self.dir['dock'], 'dock_replicas.crd.gz'), self.confs['dock_replicas'], title='dock_replicas') self._write_pkl_gz(join(self.dir['dock'],'dock_protocol.pkl.gz'),self.dock_protocol) self._clear_lock('dock') print "\nElapsed time for initial docking: %f s"%(time.time()-dock_start_time) def dock(self): """ Docks the ligand into the binding site by simulating at thermodynamic states between decoupled and fully interacting and between T_HIGH and T_TARGET """ self._sim_process('dock') def calc_f_RL(self, readOnly=False): """ Calculates the binding potential of mean force """ if self.dock_protocol==[]: return # Initial docking is incomplete # Initialize variables by loading data or as empty lists f_RL_FN = join(self.dir['dock'],'f_RL.pkl.gz') if exists(f_RL_FN): dat = self._load_pkl_gz(f_RL_FN) if dat is not None: (self.f_grid, self.B, self.dock_equilibrated_cycle, self.dock_mean_acc) = dat else: for var in ['f_grid', 'B', 'dock_equilibrated_cycle', 'dock_mean_acc']: setattr(self,var,[]) else: for var in ['f_grid', 'B', 'dock_equilibrated_cycle', 'dock_mean_acc']: setattr(self,var,[]) if readOnly: return self._postprocess() self.calc_Psi() # Estimate cycle at which simulation has equilibrated K = len(self.dock_protocol) u_Ks = [self._u_kln([self.dock_Es[K-1][c]],[self.dock_protocol[K-1]]) for c in range(self._dock_cycle)] mean_u_Ks = np.array([np.mean(u_K) for u_K in u_Ks]) std_u_Ks = np.array([np.std(u_K) for u_K in u_Ks]) for c in range(len(self.dock_equilibrated_cycle), self._dock_cycle): nearMean = (mean_u_Ks - mean_u_Ks[c])<std_u_Ks[c] for (item, ind) in zip(nearMean, range(len(nearMean))): if item: self.dock_equilibrated_cycle.append(ind) break # Calculate docking free energies that have not already been calculated updated = False for c in range(len(self.f_grid), self._dock_cycle): fromCycle = self.dock_equilibrated_cycle[c] toCycle = c + 1 f_grid = [0, self.dock_protocol[0]['f_grid0']] # Extract energies between fromCycle and toCycle dock_Es = [] for dock_Es_state in self.dock_Es: dock_Es.append(dock_Es_state[fromCycle:toCycle]) # Use MBAR for the remaining states. (u_kln,N_k) = self._u_kln(\ dock_Es[1:K], self.dock_protocol[1:K]) f_grid += list(self._run_MBAR(u_kln,N_k)[1:] + f_grid[-1]) self.f_grid.append(f_grid) ### Binding PMF B = {} u_K = self._u_kln([dock_Es[K-1]],[self.dock_protocol[K-1]]) for phase in ['Gas','GBSA']: du = \ np.concatenate([self.dock_Es[K-1][c]['RL'+phase][:,-1] \ for c in range(fromCycle,toCycle)])/RT_TARGET - \ (u_K + self.params['dock']['receptor_'+phase]/RT_TARGET) min_du = min(du) B_RL = -np.log(np.exp(-du+min_du).mean()) + min_du weight = np.exp(-du+min_du) weight = weight/sum(weight) Psi = np.concatenate([self.Psi[c][phase] for c in range(fromCycle,toCycle)]) min_Psi = min(Psi) B[phase+'_MBAR_based'] = -self.f_cool[-1][-1] + f_grid[-1] + B_RL B[phase+'_min_Psi'] = min_Psi B[phase+'_inverse_FEP'] = \ np.log(sum(weight*np.exp(Psi-min_Psi))) + min_Psi self.B.append(B) # Average acceptance probabilities dock_mean_acc = np.zeros(K-1) for k in range(1, K-1): (u_kln,N_k) = self._u_kln(dock_Es[k:k+2],self.dock_protocol[k:k+2]) N = min(N_k) acc = np.exp(-u_kln[0,1,:N]-u_kln[1,0,:N]+u_kln[0,0,:N]+u_kln[1,1,:N]) dock_mean_acc[k] = np.mean(np.minimum(acc,np.ones(acc.shape))) self.dock_mean_acc.append(dock_mean_acc) print " calculated binding PMF of %f kT using cycles %d to %d"%(B['GBSA_MBAR_based'], fromCycle, toCycle-1) updated = True if updated: self._write_pkl_gz(f_RL_FN, (self.f_grid, self.B, self.dock_equilibrated_cycle, self.dock_mean_acc)) ############################## # Analysis and Visualization # ############################## def calc_random_dock_stats(self, E): """ Examines the convergence of the interaction energy in the first docking state, looking at how the minimum, mean, standard deviation, and other statistics vary as a function of the number of rotations and translations. """ # Initiate variables interval = 5 keys = ['min','mean','std','lambda_n','f_grid0','f_grid'] self._random_translations_and_rotations() r_range = range(interval, self._n_rot, interval) t_range = range(interval, self._n_trans, interval) random_dock_stats = {} for key in keys: random_dock_stats[key] = np.zeros((len(r_range),len(t_range))) Psi = np.reshape(E['ELE'],(-1,self._n_rot,self._n_trans)) + \ np.reshape(E['LJr'],(-1,self._n_rot,self._n_trans)) + \ np.reshape(E['LJa'],(-1,self._n_rot,self._n_trans)) w = np.exp((-1/RT_TARGET+1/RT_HIGH)*np.reshape(E['MM'] - min(E['MM']),(-1,self._n_rot,self._n_trans))) for r in range(len(r_range)): for t in range(len(t_range)): Psi_c = np.ravel(Psi[:,:r_range[r],:t_range[t]]) Psi_c_std = Psi_c.std() lambda_c = (self.params['dock']['therm_speed']*RT_HIGH)/Psi_c_std random_dock_stats['min'][r][t] = Psi_c.min() random_dock_stats['mean'][r][t] = Psi_c.mean() random_dock_stats['std'][r][t] = Psi_c_std random_dock_stats['lambda_n'][r][t] = lambda_c du = lambda_c*Psi_c/RT_HIGH min_du = min(du) random_dock_stats['f_grid0'][r][t] = -RT_HIGH*(np.log(np.mean(np.exp(-du+min_du))) + min_du) w_c = np.ravel(w[:,:r_range[r],:t_range[t]]) du = Psi_c/RT_TARGET min_du = min(du) random_dock_stats['f_grid'][r][t] = -RT_TARGET*(np.log(np.sum(w_c*np.exp(-du+min_du))/np.sum(w_c)) + min_du) self._write_pkl_gz(join(self.dir['dock'],'random_dock_stats.pkl.gz'), random_dock_stats) def calc_RMSD(self, rmsd_ref=None): """ Uses VMD to calculate the root mean square deviation between the docked conformations and the reference structure in ref_FN. """ if ((self.dock_protocol==[]) or (not self.dock_protocol[-1]['crossed'])): raise Exception('Initial docking not done!') if (self._FNs['vmd'] is None) or (not exists(self._FNs['vmd'])): print 'VMD not found! Cannot calculate RMSD.' return if rmsd_ref is None: if self.params['dock']['rmsd_ref'] is None: print 'Reference structure is needed for an RMSD calculation' return else: rmsd_ref = self.params['dock']['rmsd_ref'] print "\n>>> RMSD calculation" rmsd_ref['vmdcrd'] = a.findPath([rmsd_ref['vmdcrd'], abspath(join(self.dir['dock'],rmsd_ref['vmdcrd']))]) if rmsd_ref['vmdcrd'] is None: raise Exception('Reference structure is missing') rmsd_FN = join(self.dir['dock'],'rmsd.pkl.gz') if exists(rmsd_FN): self.rmsd = self._load_pkl_gz(rmsd_FN) else: self.rmsd = [] ref_FN = rmsd_ref['vmdcrd'] state = len(self.dock_protocol)-1 # Write the DCD files newDCD = False for c in range(self._dock_cycle): while len(self.rmsd)<=c: self.rmsd.append({}) if not ref_FN in self.rmsd[c].keys(): crd = self._read_crd(join(self.dir['dock'],'dock%d_%d.crd.gz'%(state,c)), split=True) dcdFN = join(self.dir['dock'],'dock%d_%d.dcd'%(state,c)) if not exists(dcdFN): self._write_dcd(dcdFN, crd) newDCD = True if newDCD: # Write the VMD script import tempfile scriptF = tempfile.NamedTemporaryFile(mode='w', dir=self.dir['dock'], delete=False) scriptF.write(''' set id_ref [mol new '''+self._FNs['prmtop'][rmsd_ref['species']]+'''] set sel_ref [atomselect $id_ref "'''+rmsd_ref['selection']+''' and not mass 1.008"] mol addfile '''+abspath(ref_FN)+''' type crd molid $id_ref set id_lig [mol new '''+self._FNs['prmtop']['L']+'''] set sel_lig [atomselect $id_lig "'''+rmsd_ref['selection']+''' and not mass 1.008"] ''') for c in range(self._dock_cycle): if not ref_FN in self.rmsd[c].keys(): dcdFN = join(self.dir['dock'],'dock%d_%d.dcd'%(state,c)) scriptF.write(''' mol addfile '''+dcdFN+''' type dcd molid $id_lig waitfor all set fo [open "'''+join(self.dir['dock'],'rmsd%d_%d.txt'%(state,c))+'''" "w"] set nfr [molinfo $id_lig get numframes] for {set n 0} {$n < $nfr} {incr n} { $sel_lig frame $n set rmsd [measure rmsd $sel_ref $sel_lig] puts $fo "$rmsd" } close $fo animate delete all file delete '''+dcdFN+'\n') scriptF.write('\nquit\n') scriptF.close() # Execute VMD import subprocess vmd_out = open(join(self.dir['dock'], 'vmd.out'), 'w') subprocess.call([self._FNs['vmd'], '-nt', '-dispdev', 'text', '-e', scriptF.name],\ stdout=vmd_out) vmd_out.close() os.remove(scriptF.name) # Read the rmsd data for c in range(self._dock_cycle): if not ref_FN in self.rmsd[c].keys(): temp_F = open(join(self.dir['dock'],'rmsd%d_%d.txt'%(state,c)),'r') self.rmsd[c][ref_FN] = np.array( [float(item) for item in temp_F.read().strip().split('\n')]) temp_F.close() os.remove(join(self.dir['dock'],'rmsd%d_%d.txt'%(state,c))) self._write_pkl_gz(rmsd_FN, self.rmsd) def calc_Psi(self): """ Calculate the interaction energy between the ligand and receptor. Also stores the ligand internal energy. """ if ((self.dock_protocol==[]) or (not self.dock_protocol[-1]['crossed'])): raise Exception('Initial docking not done!') Psi_FN = join(self.dir['dock'],'Psi.pkl.gz') if exists(Psi_FN): self.Psi = self._load_pkl_gz(Psi_FN) else: self.Psi = [] newPsi = False for c in range(self._dock_cycle): while len(self.Psi) <= c: self.Psi.append({}) if not 'MM' in self.Psi[c].keys(): self.Psi[c]['MM'] = self.dock_Es[-1][c]['MM']/RT_TARGET newPsi = True if not 'grid' in self.Psi[c].keys(): self.Psi[c]['grid'] = \ (self.dock_Es[-1][c]['LJr'] + \ self.dock_Es[-1][c]['LJa'] + \ self.dock_Es[-1][c]['ELE'])/RT_TARGET newPsi = True for phase in ['Gas','GBSA']: if not phase in self.Psi[c].keys(): self.Psi[c][phase] = \ (self.dock_Es[-1][c]['RL'+phase][:,-1] - \ self.dock_Es[-1][c]['L'+phase][:,-1] - \ self.params['dock']['receptor_'+phase])/RT_TARGET newPsi = True if newPsi: self._write_pkl_gz(Psi_FN, self.Psi) def plot_energies(self, process='cool', firstCycle=0, toCycle=None): """ Plots timeseries and histograms of the energies for each state. Requires matplotlib extension for python. """ try: import matplotlib.pyplot as plt # @UnresolvedImport except: print 'plot_energies requires matplotlib' return K = len(getattr(self,process+'_protocol')) if toCycle is None: toCycle = getattr(self,'_%s_cycle'%process) Es = [getattr(self,process+'_Es')[0][firstCycle:toCycle]] for Es_state in getattr(self,process+'_Es'): Es.append(Es_state[firstCycle:toCycle]) (u_kln,N_k) = self._u_kln(Es, getattr(self,process+'_protocol')) plt.figure(0) for k in range(K-1): plt.plot(u_kln[k,k,:N_k[k]],'.-') plt.figure(1) for k in range(K-1): plt.hist(u_kln[k,k,:N_k[k]]) def view_samples(self, process='dock', state=None, includeReceptor=False, displayComplex=False, overlap=False, showGrid=True, conf_indices=None, saveImage=False, execute=True, colorID=None, clearDCD=True): """ Views the trajectory with VMD state - the simulation state to view includeReceptor - show the receptor as well as the ligand overlap - show ligands overlapping each other, rather than a trajectory showGrid - shows the Lennard-Jones repulsive grid stride - steps between snapshots """ if (self._FNs['vmd'] is None) or (not exists(self._FNs['vmd'])): print 'VMD not found! Cannot view trajectory' return if includeReceptor: if (self._FNs['prmtop']['RL'] is None): raise Exception('AMBER prmtop file for complex required!') prmtopFN = self ._FNs['prmtop']['RL'] else: if (self._FNs['prmtop']['L'] is None): raise Exception('AMBER prmtop file for the ligand required!') prmtopFN = self._FNs['prmtop']['L'] # Default is last state if state is None: state = len(getattr(self,process+'_protocol'))-1 if process=='dock': firstCycle = self.dock_equilibrated_cycle[-1] elif process=='cool': firstCycle = self.cool_equilibrated_cycle[-1] else: raise Exception('Invalid Process') # Convert from crd to dcd files for c in range(firstCycle,getattr(self,'_%s_cycle'%process)): if not exists(join(self.dir[process],process+'%d_%d.dcd'%(state,c))): crd = self._read_crd(join(self.dir[process],process+'%d_%d.crd.gz'%(state,c)), split=True) self._write_dcd(join(self.dir[process],process+'%d_%d.dcd'%(state,c)), crd) script = '# View samples\n' script += 'update off\n' script += 'set ID [mol new {' + prmtopFN + '}]\n' if colorID is not None: script += 'mol modcolor 0 $ID ColorID %d\n'%colorID for c in range(firstCycle,getattr(self,'_%s_cycle'%process)): script += 'mol addfile {' + join(self.dir[process],process+'%d_%d.dcd'%(state,c)) + '} waitfor all molid $ID\n' if overlap: script += 'set nfr [molinfo $ID get numframes]\n' script += 'mol drawframes $ID 0 0:[expr $nfr-1]\n' else: script += 'mol modstyle 0 0 Licorice 0.300000 10.000000 10.000000\n' script += 'display projection Orthographic\n' if showGrid: if self._FNs['grids']['LJr'][-3:]=='.gz': import shutil shutil.copyfile(self._FNs['grids']['LJr'], 'temp_grid.LJr.dx.gz') os.system('gunzip temp_grid.LJr.dx.gz') grid_LJr = 'temp_grid.LJr.dx' else: grid_LJr = self._FNs['grids']['LJr'] script += 'mol addfile {'+grid_LJr+'} type dx first 0 last -1 step 1 waitfor 1 volsets {0 } 0\n' # Lennard-Jones Repulsive script += 'mol representation Isosurface 75.0 0 2 1 1 1\n' script += 'mol addrep 0\n' if displayComplex: script += 'set complexID [mol new {%s}]\n'%self._FNs['prmtop']['RL'] script += 'mol addfile {%s} type crd\n'%(self.params['dock']['rmsd_ref']['vmdcrd']) script += ''' mol modstyle 0 $complexID NewCartoon 0.300000 10.000000 4.100000 0 mol color ColorID 0 mol representation Licorice 0.300000 10.000000 10.000000 mol selection resname iga mol material Opaque mol addrep $complexID mol color Name mol representation Lines 2.0 mol selection same residue as within 10 of resname iga mol material Opaque mol addrep $complexID ''' script += 'display resize 600 600\n' script += 'axes location off\n' script += 'rotate y by -90.000000\n' script += 'scale by 5\n' script += 'translate by 0 -0.5 0\n' script += 'display nearclip set 0.200000\n' script += 'draw color green\n' script += 'draw text {20 6 32} "Grid scaling: %.2e" size 2 thickness 2\n'%self.dock_protocol[state]['LJr'] script += 'draw text {20 4 32} "T: %.2f K" size 2 thickness 2\n'%self.dock_protocol[state]['T'] script += 'update\n' script += 'update on\n' if clearDCD: for c in range(getattr(self,'_%s_cycle'%process)): script += 'file delete {' + join(self.dir[process],process+'%d_%d.dcd'%(state,c)) + '}\n' if showGrid and self._FNs['grids']['LJr'][-3:]=='.gz': script += 'file delete {' + grid_LJr + '}\n' if saveImage: script += 'render TachyonInternal ' + os.path.join(self.dir['dock'],'state%d.tga'%state) + ' /usr/bin/open %s\n' script += 'quit\n' if execute: import tempfile scriptFN = tempfile.mktemp() scriptF = open(scriptFN,'w') scriptF.write(script) scriptF.close() import subprocess subprocess.Popen([self._FNs['vmd'], '-nt', '-e', scriptFN]) return script ###################### # Internal Functions # ###################### def _set_universe_force_field(self,lambda_n): """ Sets the force field parameters of the universe to values appropriate for the given lambda_n dictionary. The elements in the dictionary lambda_n can be: MM - True, to turn on Generalized AMBER force field site - True, to turn on the binding site sLJr - scaling of the soft Lennard-Jones repulsive grid sLJa - scaling of the soft Lennard-Jones attractive grid LJr - scaling of the Lennard-Jones repulsive grid LJa - scaling of the Lennard-Jones attractive grid ELE - scaling of the electrostatic grid T - the temperature in K """ self.T = lambda_n['T'] self.RT = R*lambda_n['T'] if 'delta_t' in lambda_n.keys(): self.delta_t = lambda_n['delta_t'] else: self.delta_t = 1.0*MMTK.Units.fs fflist = [] if ('MM' in lambda_n.keys()) and lambda_n['MM']: fflist.append(self._forceFields['gaff']) if ('site' in lambda_n.keys()) and lambda_n['site']: fflist.append(self._forceFields['site']) for scalable in self._scalables: if (scalable in lambda_n.keys()) and lambda_n[scalable]>0: # Load the force field if it has not been loaded if not scalable in self._forceFields.keys(): import time loading_start_time = time.time() grid_FN = self._FNs['grids'][{'sLJr':'LJr','sLJa':'LJa','LJr':'LJr','LJa':'LJa','ELE':'ELE'}[scalable]] grid_scaling_factor = 'scaling_factor_' + \ {'sLJr':'LJr','sLJa':'LJa','LJr':'LJr','LJa':'LJa','ELE':'electrostatic'}[scalable] if scalable=='LJr': from ForceFields.TrilinearISqrtGrid.TrilinearISqrtGrid import TrilinearISqrtGridForceField self._forceFields[scalable] = TrilinearISqrtGridForceField(grid_FN, lambda_n[scalable], grid_scaling_factor, grid_name=scalable, max_val=-1) else: from ForceFields.TrilinearGrid.TrilinearGrid import TrilinearGridForceField self._forceFields[scalable] = TrilinearGridForceField( grid_FN, lambda_n[scalable], grid_scaling_factor, grid_name=scalable, max_val=10. if scalable[0]=='s' else 10000.) print ' %s loaded in %f s'%(grid_FN, time.time()-loading_start_time) # Set the force field strength to the desired value self._forceFields[scalable].strength = lambda_n[scalable] fflist.append(self._forceFields[scalable]) compoundFF = fflist[0] for ff in fflist[1:]: compoundFF += ff self.universe.setForceField(compoundFF) def _random_translations_and_rotations(self): """ Either loads or generates the random translations and rotations for the first state of docking. """ if not hasattr(self,'_random_trans'): random_translation_FN = join(self.dir['dock'],'random_trans.pkl.gz') if exists(random_translation_FN): (self._n_trans, self._max_n_trans, self._random_trans) = \ self._load_pkl_gz(random_translation_FN) else: self._max_n_trans = 10000 # Default density of points is 500 per nm**3 self._n_trans = min(np.int(np.ceil(self._forceFields['site'].volume*self.params['dock']['site_density'])),self._max_n_trans) self._random_trans = np.ndarray((self._max_n_trans), dtype=Vector) for ind in range(self._max_n_trans): self._random_trans[ind] = Vector(self._forceFields['site'].randomPoint()) self._write_pkl_gz(random_translation_FN, (self._n_trans, self._max_n_trans, self._random_trans)) else: self._max_n_trans = self._random_trans.shape[0] if not hasattr(self,'_random_rotT'): random_rotation_FN = join(self.dir['dock'],'random_rotT.pkl.gz') if exists(random_rotation_FN): (self._n_rot, self._max_n_rot, self._random_rotT) = \ self._load_pkl_gz(random_rotation_FN) else: self._max_n_rot = 100 self._n_rot = 100 self._random_rotT = np.ndarray((self._max_n_rot,3,3)) for ind in range(self._max_n_rot): self._random_rotT[ind,:,:] = np.transpose(random_rotate()) self._write_pkl_gz(random_rotation_FN, (self._n_rot, self._max_n_rot, self._random_rotT)) else: self._n_rot = self._random_rotT.shape[0] def _initial_sim_state(self, process, seeds, normalize=False): """ Initializes a state, returning the configurations and potential energy. """ all_confs = [] all_potEs = [] Hs = [] for seed in seeds: self.universe.setConfiguration(Configuration(self.universe,seed)) (confs_s, potEs_s, Hs_s, self.delta_t) = self.sampler[process]( steps = self.params[process]['steps_per_seed'], T=self.T, normalize=normalize, adapt=True, delta_t=self.delta_t) # Restrict the range of the time step self.delta_t = min(max(self.delta_t, 0.3*MMTK.Units.fs), 3.*MMTK.Units.fs) all_confs.append(confs_s) all_potEs.append(np.array(potEs_s)) Hs.append(Hs_s) Hs = np.mean(np.array(Hs)) import sys original_stderr = sys.stderr sys.stderr = NullDevice() # Decorrelation import timeseries if len(seeds)>1: g = timeseries.statisticalInefficiencyMultiple(all_potEs) else: g = timeseries.statisticalInefficiency(all_potEs) stride = int(np.ceil(g)) sys.stderr = original_stderr confs = [] potEs = [] for s in range(len(seeds)): nsnaps = len(all_confs[s]) uncorr_indicies = range(min(stride-1, nsnaps-1), nsnaps, stride) confs.extend([all_confs[s][i] for i in uncorr_indicies]) potEs.extend([all_potEs[s][i] for i in uncorr_indicies]) return (confs, np.array(potEs), g) def _replica_exchange(self, process): """ Performs a cycle of replica exchange """ if not process in ['dock','cool']: raise Exception('Process must be dock or cool') cycle_start_time = time.time() self._set_lock(process) if process=='cool': terms = ['MM'] else: terms = ['MM','site','misc'] + self._scalables if not process+'_replicas' in self.confs.keys(): self.confs[process+'_replicas'] = self._read_crd(join(self.dir[process],process+'_replicas.crd.gz')) confs = self.confs[process+'_replicas'] lambdas = getattr(self,process+'_protocol') # A list of pairs of replica indicies K = len(lambdas) pairs_to_swap = [] for interval in range(1,min(5,K)): lower_inds = [] for lowest_index in range(interval): lower_inds += range(lowest_index,K-interval,interval) upper_inds = np.array(lower_inds) + interval pairs_to_swap += zip(lower_inds,upper_inds) storage = {} for var in ['confs','state_inds','energies']: storage[var] = [] state_inds = range(K) E = {} for term in terms: E[term] = np.zeros(K, dtype=float) Ht = np.zeros(K, dtype=int) for sweep in range(self.params[process]['sweeps_per_cycle']): # Sample within each state for k in range(K): self._set_universe_force_field(lambdas[state_inds[k]]) self.universe.setConfiguration(Configuration(self.universe, confs[k])) # By far, this step takes the most time within the cycle (confs_k, potEs_k, Hs_k, delta_t) = self.sampler[process](steps = self.params[process]['steps_per_sweep'],T=self.T, normalize=(process=='cool'),adapt=False, delta_t=self.delta_t) confs[k] = np.copy(confs_k[-1]) if process=='cool': E['MM'][k] = potEs_k[-1] Ht[k] += Hs_k if process=='dock': # Get energies self._set_universe_force_field(self.lambda_full) for term in terms: E[term] = np.zeros(K, dtype=float) for k in range(K): self.universe.setConfiguration(Configuration(self.universe, confs[k])) eT = self.universe.energyTerms() for (key,value) in eT.iteritems(): E[term_map[key]][k] += value # Calculate u_ij (i is the replica, and j is the configuration), # a list of arrays (u_ij,N_k) = self._u_kln(E, [lambdas[state_inds[c]] for c in range(K)]) # Do the replica exchange for attempt in range(100): for (a,b) in pairs_to_swap: ddu = -u_ij[a][b]-u_ij[b][a]+u_ij[a][a]+u_ij[b][b] if (ddu>0) or (np.random.uniform()<np.exp(ddu)): u_ij[a],u_ij[b] = u_ij[b],u_ij[a] state_inds[a],state_inds[b] = state_inds[b],state_inds[a] # Store data in local variables storage['confs'].append(list(confs)) storage['state_inds'].append(list(state_inds)) storage['energies'].append(copy.deepcopy(E)) print " generated configurations for %d replicas"%(len(confs)) + \ " in replica exchange cycle %d"%getattr(self,'_%s_cycle'%process) + \ " in %f s"%(time.time()-cycle_start_time) Ht = Ht/self.params[process]['sweeps_per_cycle'] storage['Ht'] = Ht tau2 = 1.0 stride = 1 store_indicies = np.array(\ range(min(stride-1,self.params[process]['sweeps_per_cycle']-1), self.params[process]['sweeps_per_cycle'], stride), dtype=int) nsaved = len(store_indicies) # Get indicies for storing global variables inv_state_inds = np.zeros((nsaved,K),dtype=int) for snap in range(nsaved): state_inds = storage['state_inds'][store_indicies[snap]] for state in range(K): inv_state_inds[snap][state_inds[state]] = state # Store global variables and data for state in range(K): E_state = {} if state==0: E_state['repXpath'] = inv_state_inds for term in terms: E_state[term] = np.array([storage['energies'][store_indicies[snap]][term][inv_state_inds[snap][state]] for snap in range(nsaved)]) getattr(self,process+'_Es')[state].append(E_state) self.confs[process+'_replicas'] = [storage['confs'][store_indicies[-1]][inv_state_inds[-1][state]] for state in range(K)] self._write_crd(join(self.dir[process],process+'_replicas.crd.gz'), self.confs[process+'_replicas'], title=(process+'_replicas')) for state in range(K): if self.params[process]['keep_intermediate'] or ((process=='cool') and (state==0)) or (state==(K-1)): confs = [storage['confs'][store_indicies[snap]][inv_state_inds[snap][state]] for snap in range(nsaved)] self._write_crd( join(self.dir[process],process+'%d_%d.crd.gz'%(state,getattr(self,'_%s_cycle'%process))), confs, title='State_%d_%d'%(state,getattr(self,'_%s_cycle'%process))) postprocess_start_time = time.time() setattr(self,'_%s_cycle'%process,getattr(self,'_%s_cycle'%process) + 1) if process=='cool': self._postprocess([('cool',-1,-1,'L')]) self.calc_f_L() elif process=='dock': self._postprocess() self.calc_f_RL() self._clear_lock(process) print ' postprocessed data in %f s\n'%(time.time()-postprocess_start_time) def _sim_process(self, process): """ Simulate and analyze a cooling or docking process. As necessary, first conduct an initial docking and then run a desired number of replica exchange cycles. """ if getattr(self,process+'_protocol')==[]: getattr(self,'initial_'+process)() if (self.params[process]['repX_cycles'] is not None) and \ (getattr(self,'_%s_cycle'%process) < self.params[process]['repX_cycles']): print "\n>>> Replica exchange sampling for the {0}ing process".format(process) import time repEx_start_time = time.time() start_cycle = getattr(self,'_%s_cycle'%process) while getattr(self,'_%s_cycle'%process) < self.params[process]['repX_cycles']: self._replica_exchange(process) print "Elapsed time for %d cycles of replica exchange was %f s"%(\ (getattr(self,'_%s_cycle'%process)-start_cycle), \ (time.time()-repEx_start_time)) def _run_MBAR(self,u_kln,N_k): """ Estimates the free energy of a transition using MBAR """ import pymbar K = len(N_k) f_k_FEPF = np.zeros(K) f_k_FEPR = np.zeros(K) f_k_BAR = np.zeros(K) for k in range(K-1): w_F = u_kln[k,k+1,:N_k[k]] - u_kln[k,k,:N_k[k]] min_w_F = min(w_F) w_R = u_kln[k+1,k,:N_k[k+1]] - u_kln[k+1,k+1,:N_k[k+1]] min_w_R = min(w_R) f_k_FEPF[k+1] = -np.log(np.mean(np.exp(-w_F+min_w_F))) + min_w_F f_k_FEPR[k+1] = np.log(np.mean(np.exp(-w_R+min_w_R))) - min_w_R try: f_k_BAR[k+1] = pymbar.computeBAR(w_F, w_R, relative_tolerance=0.000001, verbose=False, compute_uncertainty=False) except: f_k_BAR[k+1] = f_k_FEPF[k+1] f_k_FEPF = np.cumsum(f_k_FEPF) f_k_FEPR = np.cumsum(f_k_FEPR) f_k_BAR = np.cumsum(f_k_BAR) try: f_k = pymbar.MBAR(u_kln, N_k, verbose = False, method = 'adaptive', initial_f_k = f_k_BAR, maximum_iterations = 20).f_k except: f_k = f_k_BAR return f_k def _u_kln(self,eTs,lambdas,noBeta=False): """ Computes a reduced potential energy matrix. k is the sampled state. l is the state for which energies are evaluated. Input: eT is a -dictionary (of mapped energy terms) of numpy arrays (over states) -list (over states) of dictionaries (of mapped energy terms) of numpy arrays (over configurations), or a -list (over states) of lists (over cycles) of dictionaries (of mapped energy terms) of numpy arrays (over configurations) lambdas is a list of thermodynamic states noBeta means that the energy will not be divided by RT Output: u_kln or (u_kln, N_k) u_kln is the matrix (as a numpy array) N_k is an array of sample sizes """ L = len(lambdas) addMM = ('MM' in lambdas[0].keys()) and (lambdas[0]['MM']) addSite = ('site' in lambdas[0].keys()) and (lambdas[0]['site']) probe_key = [key for key in lambdas[0].keys() if key in (['MM'] + self._scalables)][0] if isinstance(eTs,dict): # There is one configuration per state K = len(eTs[probe_key]) N_k = np.ones(K, dtype=int) u_kln = [] E_base = np.zeros(K) if addMM: E_base += eTs['MM'] if addSite: E_base += eTs['site'] for l in range(L): E = 1.*E_base for scalable in self._scalables: if scalable in lambdas[l].keys(): E += lambdas[l][scalable]*eTs[scalable] if noBeta: u_kln.append(E) else: u_kln.append(E/(R*lambdas[l]['T'])) elif isinstance(eTs[0],dict): K = len(eTs) N_k = np.array([len(eTs[k][probe_key]) for k in range(K)]) u_kln = np.zeros([K, L, N_k.max()], np.float) for k in range(K): E_base = 0.0 if addMM: E_base += eTs[k]['MM'] if addSite: E_base += eTs[k]['site'] for l in range(L): E = 1.*E_base for scalable in self._scalables: if scalable in lambdas[l].keys(): E += lambdas[l][scalable]*eTs[k][scalable] if noBeta: u_kln[k,l,:N_k[k]] = E else: u_kln[k,l,:N_k[k]] = E/(R*lambdas[l]['T']) elif isinstance(eTs[0],list): K = len(eTs) N_k = np.zeros(K, dtype=int) for k in range(K): for c in range(len(eTs[k])): N_k[k] += len(eTs[k][c][probe_key]) u_kln = np.zeros([K, L, N_k.max()], np.float) for k in range(K): E_base = 0.0 C = len(eTs[k]) if addMM: E_base += np.concatenate([eTs[k][c]['MM'] for c in range(C)]) if addSite: E_base += np.concatenate([eTs[k][c]['site'] for c in range(C)]) for l in range(L): E = 1.*E_base for scalable in self._scalables: if scalable in lambdas[l].keys(): E += lambdas[l][scalable]*np.concatenate([eTs[k][c][scalable] for c in range(C)]) if noBeta: u_kln[k,l,:N_k[k]] = E else: u_kln[k,l,:N_k[k]] = E/(R*lambdas[l]['T']) if (K==1) and (L==1): return u_kln.ravel() else: return (u_kln,N_k) def _next_dock_state(self, E=None, lambda_o=None): """ Determines the parameters for the next state """ if E is None: E = self.dock_Es[-1] if lambda_o is None: lambda_o = self.dock_protocol[-1] lambda_n = copy.deepcopy(lambda_o) if self.params['dock']['protocol']=='Set': raise Exception("Set protocol not currently supported") elif self.params['dock']['protocol']=='Adaptive': if self.params['dock']['legs']==2: # First change grid scaling, then # temperature if lambda_o['LJr']<1: dL = self._u_kln([E], [{'LJr':1,'LJa':1,'ELE':1}], noBeta=True).std()/(R*lambda_o['T']) if dL>0: grid_scale = min(lambda_o['LJr'] + self.params['dock']['therm_speed']/dL, 1) else: grid_scale = 1 lambda_n['LJr'] = grid_scale lambda_n['LJa'] = grid_scale lambda_n['ELE'] = grid_scale elif lambda_o['T']>T_TARGET: dL = self._u_kln([E], [{'MM':True,'site':True,'T':lambda_o['T'], 'LJr':1,'LJa':1,'ELE':1}], noBeta=True).std()/(R*lambda_o['T']*lambda_o['T']) if dL>0: lambda_n['T'] = lambda_o['T'] - self.params['dock']['therm_speed']/dL if lambda_n['T'] < T_TARGET: lambda_n['T'] = T_TARGET lambda_n['crossed'] = True else: lambda_n['T'] = T_TARGET lambda_n['crossed'] = True elif self.params['dock']['legs']==3: # First change Lennard-Jones grid scaling, then # electrostatic grid scaling, then # temperature if lambda_o['LJr']<1: dL = self._u_kln([E], [{'LJr':1,'LJa':1}], noBeta=True).std()/(R*lambda_o['T']) if dL>0: grid_scale = min(lambda_o['LJr'] + self.params['dock']['therm_speed']/dL, 1) else: grid_scale = 1 lambda_n['LJr'] = grid_scale lambda_n['LJa'] = grid_scale elif lambda_o['ELE']<1: dL = self._u_kln([E], [{'ELE':1}], noBeta=True).std()/(R*lambda_o['T']) if dL>0: grid_scale = min(lambda_o['ELE'] + self.params['dock']['therm_speed']/dL, 1) else: grid_scale = 1 lambda_n['ELE'] = grid_scale elif lambda_o['T']>T_TARGET: dL = self._u_kln([E], [{'MM':True,'site':True,'T':lambda_o['T'], 'LJr':1,'LJa':1,'ELE':1}], noBeta=True).std()/(R*lambda_o['T']*lambda_o['T']) if dL>0: lambda_n['T'] = lambda_o['T'] - self.params['dock']['therm_speed']/dL if lambda_n['T'] < T_TARGET: lambda_n['T'] = T_TARGET lambda_n['crossed'] = True else: lambda_n['T'] = T_TARGET lambda_n['crossed'] = True elif self.params['dock']['legs']==4: # First change soft Lennard-Jones repulsive grid scaling, then # Lennard-Jones grid scaling, then # electrostatic grid scaling, then # temperature if (lambda_o['sLJr']<1) and not lambda_o['sLJr_crossed']: dL = self._u_kln([E], [{'sLJr':1}], noBeta=True).std()/(R*lambda_o['T']) if dL>0: grid_scale = lambda_o['sLJr'] + self.params['dock']['therm_speed']/dL if grid_scale > 1: grid_scale = 1 lambda_n['sLJr_crossed'] = True else: grid_scale = 1 lambda_n['sLJr_crossed'] = True lambda_n['sLJr'] = grid_scale elif lambda_o['LJr']<1: dL = self._u_kln([E], [{'LJr':1,'LJa':1}], noBeta=True).std()/(R*lambda_o['T']) if dL>0: grid_scale = min(lambda_o['LJr'] + self.params['dock']['therm_speed']/dL, 1) else: grid_scale = 1 lambda_n['sLJr'] = 0 lambda_n['LJr'] = grid_scale lambda_n['LJa'] = grid_scale elif lambda_o['ELE']<1: dL = self._u_kln([E], [{'ELE':1}], noBeta=True).std()/(R*lambda_o['T']) if dL>0: grid_scale = min(lambda_o['ELE'] + self.params['dock']['therm_speed']/dL, 1) else: grid_scale = 1 lambda_n['ELE'] = grid_scale elif lambda_o['T']>T_TARGET: dL = self._u_kln([E], [{'MM':True,'site':True,'T':lambda_o['T'], 'LJr':1,'LJa':1,'ELE':1}], noBeta=True).std()/(R*lambda_o['T']*lambda_o['T']) if dL>0: lambda_n['T'] = lambda_o['T'] - self.params['dock']['therm_speed']/dL if lambda_n['T'] < T_TARGET: lambda_n['T'] = T_TARGET lambda_n['crossed'] = True else: lambda_n['T'] = T_TARGET lambda_n['crossed'] = True return lambda_n def _postprocess(self, conditions=[('original',0, 0,'R'), ('cool',-1,-1,'L'), \ ('dock', -1,-1,'L'), ('dock',-1,-1,'RL')], phases=['GBSA','Gas'], readOnly=False, debug=False): """ Obtains the NAMD energies of all the conditions using all the phases. Saves both MMTK and NAMD energies after NAMD energies are estimated. """ # NAMD ENERGY FIELDS: # 0. TS 1. BOND 2. ANGLE 3. DIHED 4. IMPRP 5. ELECT 6. VDW 7. BOUNDARY # 8. MISC 9. KINETIC 10. TOTAL 11. TEMP 12. POTENTIAL 13. TOTAL3 14. TEMPAVG # The saved fields are energyFields=[1, 2, 3, 4, 5, 6, 8, 12], # and thus the new indicies are # 0. BOND 1. ANGLE 2. DIHED 3. IMPRP 4. ELECT 5. VDW 6. MISC 7. POTENTIAL updated = [] crd_FN_o = '' # state == -1 means the last state # cycle == -1 means all cycles for (p, state, cycle, moiety) in conditions: # Check that the values are legitimate if not p in ['cool','dock','original']: raise Exception("Type should be in ['cool', 'dock', 'original']") if not moiety in ['R','L', 'RL']: raise Exception("Species should in ['R','L', 'RL']") if state==-1: state = len(getattr(self,p+'_protocol'))-1 if cycle==-1: cycles = range(getattr(self,'_'+p+'_cycle')) else: cycles = [cycle] for c in cycles: if p=='original': prefix = p else: prefix = '%s%d_%d'%(p, state, c) for phase in phases: p_dir = {'cool':self.dir['cool'], 'original':self.dir['dock'], 'dock':self.dir['dock']}[p] fixed = {'R':self._FNs['fixed_atoms']['R'], 'L':None, 'RL':self._FNs['fixed_atoms']['RL']}[moiety] label = moiety+phase crd_FN = join(p_dir,'%s.crd.gz'%(prefix)) dcd_FN = join(p_dir,'%s.%s.dcd'%(prefix,moiety)) # Continue if the energies are already in memory if readOnly or \ (p == 'original' and (label in getattr(self,p+'_Es')[state][c].keys())) \ or (('MM' in getattr(self,p+'_Es')[state][c].keys()) and \ (label in getattr(self,p+'_Es')[state][c].keys()) and \ (len(getattr(self,p+'_Es')[state][c]['MM'])==\ len(getattr(self,p+'_Es')[state][c][label]))): pass else: # Do the calculation # Obtain configurations if (moiety=='R'): confs = self._receptor_conf else: if crd_FN != crd_FN_o: confs = self._read_crd(crd_FN) crd_FN_o = crd_FN # Write the configurations if not exists(dcd_FN): self._write_dcd(dcd_FN, confs, includeReceptor=(moiety.find('R')>-1), includeLigand=(moiety.find('L')>-1)) # Run NAMD import AlGDock.NAMD energyCalc = AlGDock.NAMD.NAMD(prmtop=self._FNs['prmtop'][moiety], inpcrd=self._FNs['inpcrd'][moiety], fixed=fixed, solvent={'GBSA':'GBSA','Gas':'vacuum'}[phase], useCutoff=(phase=='GBSA'), namd_command=self._FNs['namd']) E = energyCalc.energies_PE(\ join(p_dir,'%s.%s%s'%(prefix,moiety,phase)), dcd_FN, energyFields=[1, 2, 3, 4, 5, 6, 8, 12], keepScript=debug, writeEnergyDatGZ=False) getattr(self,p+'_Es')[state][c][label] = \ np.array(E, dtype=float)*MMTK.Units.kcal/MMTK.Units.mol # Updated if not (p, c) in updated: updated.append((p, c)) # Clean up if (not debug) and exists(dcd_FN): os.remove(dcd_FN) # If the receptor energy is updated if ((self.params['dock']['receptor_Gas'] is None) or \ (self.params['dock']['receptor_GBSA'] is None)) and \ ((self.original_Es[0][0]['RGas'] is not None) or \ (self.original_Es[0][0]['RGBSA'] is not None)): for phase in ['Gas','GBSA']: self.params['dock']['receptor_'+phase] = self.original_Es[0][0]['R'+phase] self._write_pkl_gz(join(self.dir['dock'],'dock_store.pkl.gz'), (convert_dictionary_relpath( dict([tp for tp in self._FNs.items() if not tp[0] in ['namd','vmd']]), relpath_o=None, relpath_n=self.dir['dock']), dict([tp for tp in self.params['dock'].items() if not tp[0] in ['repX_cycles']]))) # Save progress for (p,c) in updated: print " postprocessed {0}ing cycle {1} with NAMD".format(p,c) if p=='cool' or p=='dock': nstates = len(getattr(self,p+'_protocol')) energyFN = join(self.dir[p], '%s_Es_%d.pkl.gz'%(p, c)) energies = [getattr(self, p+'_Es')[state][c] for state in range(nstates)] self._write_pkl_gz(energyFN, energies) def _load_cool0(self): # Load configurations confs = [] c = 0 while exists(join(self.dir['cool'],'cool0_%d.crd.gz'%c)): confs += self._read_crd(join(self.dir['cool'],'cool0_%d.crd.gz'%c)) c += 1 # Load energies E_MM = [] for k in range(len(self.cool_Es[0])): E_MM += list(self.cool_Es[0][k]['MM']) # Check for consistency if len(E_MM)!=len(confs): raise Exception('Error in loading the first cooling state') # Indicies to be used in first docking state random_dock_inds = np.array(np.linspace(0,len(E_MM), \ self.params['dock']['seeds_per_state'],endpoint=False),dtype=int) return ([confs[ind] for ind in random_dock_inds], \ [E_MM[ind] for ind in random_dock_inds]) def _read_crd(self, crdFN, split=True): """ Reads an AMBER or VMD format coordinate file. """ if crdFN[-3:] == '.gz': crdF = gzip.open(crdFN,'r') else: crdF = open(crdFN,'r') dat = crdF.read().strip().split('\n') crdF.close() title = dat.pop(0) # Title if len(dat[0].split())>1: # VMD format (does not specify number of atoms) crd = [] for line in dat: crd = crd + [float(x)/10.0 for x in line.split()] crd = np.resize(crd,(len(crd)/3,3)) self._write_crd(crdFN, crd, title=title) else: # AMBER format natoms = int(dat.pop(0)) # Number of atoms if split and (natoms!=self.universe.numberOfAtoms()): print 'Incorrect number of atoms in crd file' return np.array([]) w = 12 crd = [] for line in dat: crd = crd + [float(line[x:x+w])/10.0 for x in range(0,len(line),w)] crd = np.resize(crd,(len(crd)/3,3)) if split: crd = np.vsplit(crd,crd.shape[0]/self.universe.numberOfAtoms()) print " read %d configurations from %s"%(len(crd), crdFN) return crd def _write_crd(self, crdFN, crd, title='', appendIfExists=False, vmdStyle=False): """ Writes an AMBER format trajectory file """ if (appendIfExists and exists(crdFN)): if crdFN[-3:] == '.gz': crdF = gzip.open(crdFN,'a') else: crdF = open(crdFN,'a') else: if exists(crdFN): os.rename(crdFN,crdFN+'.BAK') if crdFN[-3:] == '.gz': crdF = gzip.open(crdFN,'w') else: crdF = open(crdFN,'w') # Write the header crdF.write(title+'\n') # Title if not vmdStyle: crdF.write('%d\n'%self.universe.numberOfAtoms()) for atom in (np.vstack(crd)/MMTK.Units.Ang): crdF.write('%12.7f%12.7f%12.7f\n'%(atom[0],atom[1],atom[2])) crdF.close() print " wrote %d configurations to %s"%(len(crd), crdFN) def _write_dcd(self, dcd_file_name, trajectory_array, includeLigand=True, includeReceptor=False, factor=1.0/MMTK.Units.Ang, delta_t=0.1): """ Writes a DCD file for a trajectory. If includeReceptor==True, the receptor coordinates are included. """ import MMTK_DCD # @UnresolvedImport from Scientific import N prmtop_atom_order = [ref.number for ref in self.molecule.prmtop_order] i_start = 0 # always start at frame 0 n_savc = 1 # save every frame n_atoms = 0 if includeReceptor: receptor_x0 = factor*self._receptor_conf[:self._ligand_first_atom,0] receptor_y0 = factor*self._receptor_conf[:self._ligand_first_atom,1] receptor_z0 = factor*self._receptor_conf[:self._ligand_first_atom,2] receptor_x1 = factor*self._receptor_conf[self._ligand_first_atom:,0] receptor_y1 = factor*self._receptor_conf[self._ligand_first_atom:,1] receptor_z1 = factor*self._receptor_conf[self._ligand_first_atom:,2] n_atoms += self._receptor_conf.shape[0] if includeLigand: n_atoms += len(self.molecule.atoms) n_snaps = len(trajectory_array) fd = MMTK_DCD.writeOpenDCD(dcd_file_name, n_atoms, n_snaps, i_start, n_savc, delta_t) if includeReceptor and includeLigand: for array in trajectory_array: array = factor*array x = N.concatenate((receptor_x0,N.take(array[:,0],prmtop_atom_order),receptor_x1)).astype(N.Float16) y = N.concatenate((receptor_y0,N.take(array[:,1],prmtop_atom_order),receptor_y1)).astype(N.Float16) z = N.concatenate((receptor_z0,N.take(array[:,2],prmtop_atom_order),receptor_z1)).astype(N.Float16) MMTK_DCD.writeDCDStep(fd, x, y, z) MMTK_DCD.writeCloseDCD(fd) elif includeLigand: for array in trajectory_array: array = factor*array x = N.take(array[:,0], prmtop_atom_order).astype(N.Float16) y = N.take(array[:,1], prmtop_atom_order).astype(N.Float16) z = N.take(array[:,2], prmtop_atom_order).astype(N.Float16) MMTK_DCD.writeDCDStep(fd, x, y, z) MMTK_DCD.writeCloseDCD(fd) else: x = N.concatenate((receptor_x0,receptor_x1)).astype(N.Float16) y = N.concatenate((receptor_y0,receptor_y1)).astype(N.Float16) z = N.concatenate((receptor_z0,receptor_z1)).astype(N.Float16) MMTK_DCD.writeDCDStep(fd, x, y, z) MMTK_DCD.writeCloseDCD(fd) def _load_pkl_gz(self, FN): if exists(FN): F = gzip.open(FN,'r') try: data = pickle.load(F) except: print 'Could not load '+FN F.close() return None F.close() return data else: return None def _write_pkl_gz(self, FN, data): F = gzip.open(FN,'w') pickle.dump(data,F) F.close() print " wrote to "+FN def _load_progress(self, p): setattr(self, p+'_protocol', self._load_pkl_gz(join(self.dir[p], p+'_protocol.pkl.gz'))) if getattr(self, p+'_protocol') is None: setattr(self, p+'_protocol', []) setattr(self, '_%s_cycle'%p, 0) return # Load energies in each cycle if (not hasattr(self, p+'_Es')) or (getattr(self, p+'_Es')==[]): nstates = len(getattr(self, p+'_protocol')) setattr(self, p+'_Es', [[] for state in range(nstates)]) c = 0 while exists(join(self.dir[p], '%s_Es_%d.pkl.gz'%(p, c))): cycle_Es = self._load_pkl_gz(join(self.dir[p], '%s_Es_%d.pkl.gz'%(p, c))) for state in range(len(cycle_Es)): getattr(self, p+'_Es')[state].append(cycle_Es[state]) c += 1 if (not getattr(self, p+'_protocol')==[]) and \ (getattr(self, p+'_protocol')[-1]['crossed']): setattr(self,'_%s_cycle'%p, len(getattr(self, p+'_Es')[0])) else: setattr(self,'_%s_cycle'%p, 0) def _set_lock(self, p): lockFN = join(self.dir[p],'.lock') if exists(lockFN): raise Exception(p + ' is locked') else: lockF = open(lockFN,'w') lockF.close() def _clear_lock(self, p): lockFN = join(self.dir[p],'.lock') if exists(lockFN): os.remove(lockFN) if __name__ == '__main__': import argparse parser = argparse.ArgumentParser( description='Molecular docking with adaptively scaled alchemical interaction grids') # Files and directories # Run-dependent parser.add_argument('--dir_dock', help='Directory where docking results are stored') parser.add_argument('--dir_cool', help='Directory where cooling results are stored') parser.add_argument('--namd', help='Location of Not Another Molecular Dynamics (NAMD)') parser.add_argument('--vmd', help='Location of Visual Molecular Dynamics (VMD)') # Stored in both dir_cool and dir_dock parser.add_argument('--ligand_database', help='MMTK molecule definition for ligand') parser.add_argument('--forcefield', help='AMBER force field file') parser.add_argument('--frcmodList', nargs='+', help='AMBER force field modifications file(s)') parser.add_argument('--ligand_prmtop', help='AMBER prmtop for the ligand') parser.add_argument('--ligand_inpcrd', help='AMBER coordinates for the ligand') # Stored in dir_dock parser.add_argument('--receptor_prmtop', help='AMBER prmtop for the receptor') parser.add_argument('--receptor_inpcrd', help='AMBER coordinates for the receptor') parser.add_argument('--receptor_fixed_atoms', help='PDB file with fixed atoms labeled by 1 in the occupancy column') parser.add_argument('--complex_prmtop', help='AMBER prmtop file for the complex') parser.add_argument('--complex_inpcrd', help='AMBER coordinates for the complex') parser.add_argument('--complex_fixed_atoms', help='PDB file with fixed atoms labeled by 1 in the occupancy column') parser.add_argument('--dir_grid', help='Directory containing potential energy grids') parser.add_argument('--grid_LJr', help='DX file for Lennard-Jones repulsive grid') parser.add_argument('--grid_LJa', help='DX file for Lennard-Jones attractive grid') parser.add_argument('--grid_ELE', help='DX file for electrostatic grid') parser.add_argument('--grid_force', help='PDB file with grid force multipliers (for NAMD)') # Simulation settings and constants # Run-dependent parser.add_argument('--cool_repX_cycles', type=int, help='Number of replica exchange cycles for cooling') parser.add_argument('--dock_repX_cycles', type=int, help='Number of replica exchange cycles for docking') parser.add_argument('--run_type', choices=['initial_cool','cool','initial_dock','dock','all'], help='Type of calculation to run') # Defaults parser.add_argument('--protocol', choices=['Adaptive','Set'], help='Approach to determining series of thermodynamic states') parser.add_argument('--therm_speed', type=float, help='Thermodynamic speed during adaptive simulation') parser.add_argument('--sampler', choices=['NUTS'], help='Sampling method') # For initialization parser.add_argument('--seeds_per_state', type=int, help='Number of starting configurations in each state during initialization') parser.add_argument('--steps_per_seed', type=int, help='Number of MD steps per state during initialization') # For replica exchange parser.add_argument('--repX_cycles', type=int, help='Number of replica exchange cycles for docking and cooling') parser.add_argument('--sweeps_per_cycle', type=int, help='Number of replica exchange sweeps per cycle') parser.add_argument('--steps_per_sweep', type=int, help='Number of MD steps per replica exchange sweep') parser.add_argument('--keep_intermediate', action='store_true', help='Keep configurations for intermediate states?') # Stored in dir_cool parser.add_argument('--cool_protocol', choices=['Adaptive','Set'], help='Approach to determining series of thermodynamic states') parser.add_argument('--cool_therm_speed', type=float, help='Thermodynamic speed during adaptive simulation') parser.add_argument('--cool_sampler', choices=['NUTS'], help='Sampling method') # For initialization parser.add_argument('--cool_seeds_per_state', type=int, help='Number of starting configurations in each state during initialization') parser.add_argument('--cool_steps_per_seed', type=int, help='Number of MD steps per state during initialization') # For replica exchange parser.add_argument('--cool_sweeps_per_cycle', type=int, help='Number of replica exchange sweeps per cycle') parser.add_argument('--cool_steps_per_sweep', type=int, help='Number of MD steps per replica exchange sweep') parser.add_argument('--cool_keep_intermediate', action='store_true', help='Keep configurations for intermediate states?') # Stored in dir_dock parser.add_argument('--dock_protocol', choices=['Adaptive','Set'], help='Approach to determining series of thermodynamic states') parser.add_argument('--dock_therm_speed', type=float, help='Thermodynamic speed during adaptive simulation') parser.add_argument('--dock_sampler', choices=['NUTS'], help='Sampling method') # For initialization parser.add_argument('--dock_seeds_per_state', type=int, help='Number of starting configurations in each state during initialization') parser.add_argument('--dock_steps_per_seed', type=int, help='Number of MD steps per state during initialization') parser.add_argument('--legs', type=int, choices=[2,3,4], help='Number of legs in the docking thermodynamic cycle. 2: Scale LJ and ELE grids simultaneously, and then lower the temperature. 3: Scale the LJ grids, the ELE grids, and then lower the temperature. 4: Scale a soft LJ repulsive grid, scale the LJ grids, scale the ELE grids, and then lower the temperature.') # For replica exchange parser.add_argument('--dock_sweeps_per_cycle', type=int, help='Number of replica exchange sweeps per cycle') parser.add_argument('--dock_steps_per_sweep', type=int, help='Number of MD steps per replica exchange sweep') parser.add_argument('--dock_keep_intermediate', action='store_true', help='Keep configurations for intermediate states?') # Binding site parser.add_argument('--site', choices=['Sphere','Cylinder'], help='Type of binding site') parser.add_argument('--site_center', nargs=3, type=float, help='Position of binding site center') parser.add_argument('--site_direction', nargs=3, type=float, help='Principal axis of a cylindrical binding site') parser.add_argument('--site_max_X', type=float, help='Maximum position along principal axis in a cylindrical binding site') parser.add_argument('--site_max_R', type=float, help='Maximum radial position for a spherical or cylindrical binding site') parser.add_argument('--site_density', type=float, help='Density of center-of-mass points in the first docking stage') # Additional calculations parser.add_argument('--do_calc_random_dock_stats', action='store_true', help='Calculate convergence statistics for random placement of the ligand into the active site') parser.add_argument('--rmsd_ref', help='Performs an RMSD calculation. : 1. the file name, 2. the species, and 3. a VMD selection string') parser.add_argument('--receptor_GBSA', type=float, nargs='+', help='Receptor potential energies in GBSA implicit solvent (in units of kJ/mol)') parser.add_argument('--receptor_Gas', type=float, nargs='+', help='Receptor potential energies in gas phase (in units of kJ/mol)') args = parser.parse_args() self = Docker(**vars(args))
# -*- coding: utf-8 -*- """ Installments """ INSTALLMENTS = 'I' """ Recurring """ RECURRING = 'R' """ Reauthorization """ REAUTHORIZATION = 'H' """ Resubmission """ RESUBMISSION = 'E' """ Delayed """ DELAYED = 'D' """ Incremental """ INCREMENTAL = 'M' """ No Show """ NO_SHOW = 'N' """ Others """ OTHERS = 'C' COF_TYPES = [ INSTALLMENTS, RECURRING, REAUTHORIZATION, RESUBMISSION, DELAYED, INCREMENTAL, NO_SHOW, OTHERS ] """ First COF yes """ SI = 'S' """ First COF no """ NO = 'N' """ First Boolean """ COF_FIRST_BOOLEAN = [ SI, NO ]
"""succint json documents. this module uses `semi-indexing` to efficiently deserialize elements of json documents. it does this by combining a succint tree that enables efficient navigation of the document with the `jq` query language for specifying nodes within the document to deserialize. for more details, see `"semi-indexing semi-structured data in tiny space" <http://www.di.unipi.it/~ottavian/files/semi_index_cikm.pdf>`_. """ from __future__ import absolute_import import sys import numbers import itertools import collections import json as pyjson import lark from succinct import ( tree, encoding, ) class Index(collections.Sequence): """a read-only mapping from json nodes to their original positions. succinct json documents encode the structure of json text as succinct trees. this index provides a mapping from the tree nodes back to their corresponding locations in the original text. """ def __init__(self, src, enc): # pylint: disable=W0231 """instantiate a json semi-index. :param str src: the original json text :param encoding.EliasFano enc: a sequence giving the position of json nodes in the original text """ assert isinstance(enc, encoding.EliasFano) self.src = src self.enc = enc def __len__(self): return len(self.enc) * 2 def __str__(self): return str(self.enc) def __getitem__(self, idx): """return the json text corresponding to the given tree node. :param idx: the succint tree node index :type idx: ``int`` or ``slice`` :returns: the json text """ if not isinstance(idx, (slice, numbers.Integral)): raise ValueError('Index indices must be integers') if isinstance(idx, slice): if idx.step not in (None, 1): raise IndexError('Index does not support variable stepping') s, e = None, None if idx.start is not None: s = idx.start if s < 0: s += len(self) s = self.lookup(s) if idx.stop is not None: e = idx.stop if e >= len(self): e = None else: e = self.lookup(e) idx = slice(s, e) else: idx = self.lookup(idx) return self.src[idx] def lookup(self, pos): """return the position in the json text corresponding to the tree node. :param int pos: the succinct tree node index :returns: the corresponding position in the json text """ return self.enc[pos / 2] + (pos % 2) class Document(object): """succinct representation of a json document. the json document is loaded lazily, and its members are only deserialized on access. this can save time when you only need to access a few nodes in very large documents. """ def __init__(self, src): self._src = src self._nav = None self._idx = None @property def nav(self): """the succinct tree encoding the document structure""" if self._nav is None: self._loads() return self._nav @property def idx(self): """the index mapping tree nodes to their locations in the source""" if self._idx is None: self._loads() return self._idx def root(self): """return the root node of the document""" return self.render(self.nav.root()) def render(self, node): """return a json node corresponding to the given tree node. :param tree.Node node: the tree node to render :return: the corresponding json node :rtype: Node """ assert isinstance(node, tree.Node) idx = self.idx.lookup(node.pos) while idx < len(self._src) and self._src[idx].isspace(): idx += 1 c = self._src[idx] return ( List(self, node) if c == '[' else Object(self, node) if c == '{' else Primitive(self, node) ) def _loads(self): """construct the succinct tree and index""" from test.bitvector import BitVector from test.encoding import BalancedParentheses seq = iter(self._src) bv, pos = BitVector(''), BitVector('') while True: c = next(seq, None) if c is None: break if c in '[{': pos.append('1') bv.extend('11') elif c in '}]': pos.append('1') bv.extend('00') elif c in ':,': pos.append('1') bv.extend('01') elif c == '"': escaped = True while escaped or c != '"': pos.append('0') c = next(seq, None) if c is None: raise ValueError('malformed json') escaped = c == '\\' pos.append('0') else: pos.append('0') if bv and (len(bv) < 2 or bv[-2:] != '00'): raise ValueError('malformed json') self._nav = tree.Navigator(BalancedParentheses(bv)) self._idx = Index(self._src, encoding.EliasFano(pos)) class Null(object): """null json node""" def __str__(self): return 'null' __repr__ = __str__ class Node(collections.Sized): """node in a json document""" def __init__(self, doc, node=None): # pylint: disable=W0231 node = node or doc.nav.root() assert isinstance(doc, Document) assert isinstance(node, tree.Node) self.doc = doc self.node = node def __len__(self): return self.node.degree() def __str__(self): return self.doc.idx[ self.node.pos:self.doc.nav.enc.close(self.node.pos) ].strip() __repr__ = __str__ class Primitive(Node): """json primitive node (i.e., string, number, or boolean)""" pass class Container(Node): """json container node""" def __init__(self, doc, node): # odd indices are commas -- skip them node.pos += node.pos % 2 super(Container, self).__init__(doc, node) class List(collections.Sequence, Container): """json list node""" def __getitem__(self, item): if isinstance(item, slice): return [self[i] for i in range(*item.indices(len(self)))] if not isinstance(item, numbers.Integral): raise TypeError( 'list indices must be integers, not {}'.format( type(item) ) ) if item < 0: item += len(self) return self.doc.render(self.node.child(item)) class Object(collections.Mapping, Container): """json object node""" def _items(self): itr = iter(self.node.children()) while True: key = next(itr, None) if not key: break yield key, next(itr) def _key(self, node): return self.doc.idx[ node.pos:self.doc.nav.enc.close(node.pos) ].strip()[1:-1] def _val(self, node): return self.doc.render(node) def __iter__(self): for key, _ in self._items(): yield self._key(key) def __getitem__(self, item): if not isinstance(item, basestring): raise TypeError('key must be a string') for key, val in self._items(): if self._key(key) == item: return self._val(val) raise KeyError(item) def loads(src): """deserialize a string to a succint json document. :param str src: the json text :returns: the json document root :rtype: Node """ return Document(src).root() class Query(object): """query engine for succinct json documents. supports all basic `jq filters <https://stedolan.github.io/jq/manual/#Basicfilters>`_: * **Identity**: `.` * **Object Identifier Index**: `.foo`, `.foo.bar` * **Optional Object Identifier Index**: `.foo?` * **Generic Object Index**: `.[<string>]` * **Array Index**: `.[2]` * **Array/String Slice**: `.[10:15]` * **Array/Object Value Iterator**: `.[]` * **Optional Array/Object Value Iterator**: `.[]?` * **Comma**: `,` * **Pipe**: `|` """ PARSER = lark.Lark( r""" query: pipeline pipeline: expression ("|" expression)* expression: identity | primitive | properties | indexer | iterator | concatenator identity: "." primitive: null | number | boolean | string properties: ("." property)+ property: (cname | string) [optional] indexer: ".[" (string|number|cname|slice|expression) "]" [optional] iterator: ".[" "]" [optional] concatenator: expression ("," expression)+ slice: [start] ":" [end] start: number end: number optional: "?" null: "null" ?number: integer | float boolean: "true" | "false" cname: CNAME float: SIGNED_FLOAT integer: SIGNED_INT string: ESCAPED_STRING COMMENT: "#"/[^\n]/* %import common.ESCAPED_STRING %import common.SIGNED_FLOAT %import common.SIGNED_INT %import common.CNAME %import common.WS %ignore COMMENT %ignore WS """, start='query', ) def __init__(self, jq): """compile a new jq query. :param str jq: the query to compile """ self.jq = jq self.tree = self.PARSER.parse(self.jq) def __str__(self): return self.jq def execute(self, root): """execute the query over a succint json tree. :param Node root: the succint json tree root. :returns: a sequence of query results. """ assert isinstance(root, Node) null = Null() def optional(expression): """return True iff expression is optional""" return any(e.data == 'optional' for e in expression.children) def concatenate(expression, stream): """evaluate query expressions and concatenate results""" # fork the stream for each subexpression streams = itertools.tee(stream, len(expression.children)) return itertools.chain.from_iterable( evaluate(expression, stream) for expression, stream in zip(expression.children, streams) ) def iterate(expression, stream): """iterate over json stream""" for node in stream: itr = ( iter(node) if isinstance(node, List) else iter(node.values()) if isinstance(node, Object) else iter([]) if optional(expression) else None ) if not itr: raise TypeError( 'cannot iterate over {}'.format( node.__class__.__name__ ) ) for child in itr: yield child def indexer(expression, stream): """extract elements from json containers""" def throw(node, item): raise TypeError( 'cannot index {} with {}'.format( node.__class__.__name__, item.__class__.__name__, ) ) def mkint(expression): if expression.data == 'integer': return int(expression.children[0]) elif expression.data == 'float': idx = float(expression.children[0]) if not idx.is_integer(): idx = int(idx) + 1 return idx else: assert False, 'bad number expression {}'.format( expression ) def mkslice(expression): s, e = None, None for idx in expression.children: if idx.data == 'start': s = mkint(idx.children[0]) elif idx.data == 'end': e = mkint(idx.children[0]) yield slice(s, e) def mkindex(expression): if expression.data == 'expression': return evaluate(expression, stream) elif expression.data == 'slice': return mkslice(expression) elif expression.data == 'cname': return expression.children elif expression.data == 'string': return [expression.children[0][1:-1]] elif expression.data in ('integer', 'float'): return [mkint(expression)] else: assert False, 'bad index expression {}'.format(expression) for item in mkindex(expression.children[0]): for node in stream: if isinstance(node, Object): if isinstance(item, Primitive): item = str(item)[1:-1] if isinstance(item, basestring): yield node.get(item, null) continue if isinstance(node, List): if isinstance(item, Primitive): item = int(str(item)) if isinstance(item, (int, slice)): try: yield node[item] except IndexError: yield null continue if not optional(expression): throw(node, item) def properties(expression, stream): """extract values from json objects""" def index(expression, stream): item = expression.children[0].children[0] for node in stream: if isinstance(node, Object): yield node.get(item, null) elif not optional(expression): itype = expression.children[0].data if itype == 'cname': itype = 'string' raise TypeError( 'cannot index {} with {}'.format( node.__class__.__name__, itype ) ) for expression in expression.children: stream = index(expression, stream) for node in stream: yield node def primitive(expression): """return a primitive type""" expression = expression.children[0] if expression.data == 'null': return null elif expression.data == 'boolean': return expression.children[0] == 'true' elif expression.data == 'string': return expression.children[0][1:-1] elif expression.data == 'integer': return int(expression.children[0]) elif expression.data == 'float': return float(expression.children[0]) assert False, 'bad primitive {}'.format(expression) def evaluate(expression, stream): """evaluate query expression over json stream""" assert expression.data == 'expression', expression assert len(expression.children) == 1 expression = expression.children[0] if expression.data == 'identity': for node in stream: yield node elif expression.data == 'primitive': yield primitive(expression) elif expression.data == 'properties': for node in properties(expression, stream): yield node elif expression.data == 'indexer': for node in indexer(expression, stream): yield node elif expression.data == 'iterator': for node in iterate(expression, stream): yield node elif expression.data == 'concatenator': for node in concatenate(expression, stream): yield node else: assert False, 'bad expression {}'.format(expression) stream, pipeline = [root], self.tree.children[0] for expression in pipeline.children: stream = evaluate(expression, stream) for result in stream: yield result def query(src, jq): """render python objects from json text. >>> query('{"foo": [0, 1, 2], "bar": [3, 4, 5]}', '.bar | .[:-1]') [3, 4] >>> query('[{"foo": True}, {"bar": False}]', '.[] | .[]') [True, False] :param str src: the json text :param str jq: a jq query describing the objects to render :returns: a sequence of python objects """ for res in Query(jq).execute(loads(src)): if isinstance(res, (Null, Node)): yield pyjson.loads(str(res)) else: yield [pyjson.loads(str(item)) for item in res] def main(): import argparse import textwrap p = argparse.ArgumentParser( description='json query engine', epilog=textwrap.dedent( """ this utility supports the basic filters of the jq query langage. filters accept json as input and produce query results as output. the supported filters are: `.`: produce the input as the output. `.foo`: produce the value of a json object at the key "foo", or null if the key is not present. if the key contains special characters, it must be enclosed in double quotes: `."foo$"`. `.foo|.bar`: equivalent to `.foo | .bar`. `.foo?`: like `.foo`, but does not produce an error, even when `.` is not an object. `.["foo"]`: produce the value of a json object at the key "foo", or null if the key is not present. `.foo` is a shorthand version of `.["foo"]`, but only for identifier-like strings. `.[2]`: produce the list element at the given index, starting from zero (so `.[2]` produces the third element). `.[10:15]`: return the list slice starting at index 10 (inclusive) and ending at index 15 (exclusive). `.[]`: return all the elements of a list, or all the values of an object. `.[]?`: like `.[]`, but does not produce an error, even when `.` is not a list or object. `,`: concatenate the output of two filters, in order. for instance, `.foo, .bar` produces the "foo" field followed by the "bar" field. """ ), formatter_class=argparse.RawDescriptionHelpFormatter, ) p.add_argument( 'query', help='jq query', ) p.add_argument( 'files', nargs='*', type=argparse.FileType('r'), help='files to query (defaults to stdin)', ) def dumps(node): return pyjson.dumps(pyjson.loads(str(node)), indent=2) args = p.parse_args() jq = Query(args.query) for fp in args.files or [sys.stdin]: for res in jq.execute(loads(fp.read())): if isinstance(res, (Null, Node)): print dumps(res) else: for item in res: print dumps(item) if __name__ == '__main__': sys.exit(main())
import os from pathlib import Path from dotenv import load_dotenv from celery import schedules basedir = Path(__file__).resolve().parent load_dotenv(os.path.join(basedir, '.env')) class Config: """ Set base Flask configuration vars. """ # General Config DEBUG = False TESTING = False SECRET_KEY = os.environ.get('SECRET_KEY') # Default number of documents on page (api results pagination) DEFAULT_PAGINATION_LIMIT = 6 MAX_PAGINATION_LIMIT = 30 # Flasgger Config SWAGGER = { 'title': 'Monitoring API', 'description': '### The Monitoring API is a simple REST API based on Flask-RESTful library. ' 'The main purpose of the application is to monitor the availability of selected services. ' 'The application checks at regular intervals the availability of services on the ' 'specified ip address (or hostname) and port', 'version': '1.0.0', 'uiversion': 3, 'termsOfService': '', # 'specs_route': '/apidocs/' } # Celery Config WATCHDOG_CHECK_INTERVAL = 30 BACKGROUND_CHECK_INTERVAL = 20 CELERY = { 'broker_url': os.environ.get("CELERY_BROKER_URL"), 'result_backend': os.environ.get("CELERY_RESULT_BACKEND_URL"), 'redbeat_redis_url': os.environ.get('CELERY_REDBEAT_REDIS_URL'), 'beat_scheduler': 'redbeat.RedBeatScheduler', 'redbeat_key_prefix': 'redbeat:', 'beat_max_loop_interval': 5, 'beat_schedule': { # Execute every 30sec (by default) after enabled by user 'watchdog-task': { 'task': 'watchdog_task', 'schedule': schedules.schedule(run_every=WATCHDOG_CHECK_INTERVAL), 'relative': True, 'enabled': False }, # Execute every 20sec (by default) since the application is launched 'background-task': { 'task': 'service_unknown_status_task', 'schedule': BACKGROUND_CHECK_INTERVAL, 'relative': True, 'enabled': True } } } class ProdConfig(Config): """ Set Flask configuration vars for production. """ MONGODB_SETTINGS = { 'host': os.environ.get('MONGODB_URI_PROD'), } class TestConfig(Config): """ Set Flask configuration vars for testing. """ DEBUG = True TESTING = True MONGODB_SETTINGS = { 'host': os.environ.get('MONGODB_URI_TEST', 'mongodb://localhost:27017/testdb'), } class DevConfig(Config): """ Set Flask configuration vars for testing. """ DEBUG = True MONGODB_SETTINGS = { 'host': os.environ.get('MONGODB_URI_DEV', 'mongodb://localhost:27017/devdb'), } app_config = { 'development': DevConfig, 'testing': TestConfig, 'production': ProdConfig, }
config = dict( experiment = 'qgen', # Experiment - either qgen or dialogue lstm_hidden_units = 100, # Number of hidden units for the LSTM embedding_size = 300, # Word embedding dimension num_layers = 1, # Number of LSTM layers encoder_vocab = 40000, # Vocabulary size on the encoder side # 30000 for dialogue decoder_vocab = 40000, # Vocabulary size on the decoder side # 30000 for dialogue encoder_num_tokens = 30, # Number of words/tokens in the input sequence # 20 for dialogue decoder_num_tokens = 20, # Number of words/tokens in the generated sequence dropout_keep_prob = 0.8, # Dropout keep probability initial_learning_rate = 0.005, # Initial learning rate learning_rate_decay = 0.75, # Learning rate decay min_learning_rate = 0.00001, # Minimum learning rate latent_dim = 100, # Dimension of z-latent space word_dropout_keep_probability = 0.75, # 1.0 - Word dropout rate for the decoder z_temp = 1.0, # Sampling temperature to be multiplied with the standard deviation attention_temp = 1.0, # Sampling temperature for the attention/context vector use_hmean = True, # Whether to use N(h_mean, I) or N(0, I) as the prior gamma_val = 0.1, # Coefficient of the attention KL loss batch_size = 100, # Batch size # 128 for dialogue n_epochs = 3, # Number of epochs logs_dir = 'summary_logs/var-seq2seq-var-attn', # Path to save summary information for Tensorboard model_checkpoint_dir = 'models/var-seq2seq-var-attn-', # Path to save model checkpoints bleu_path = 'bleu/det-seq2seq-var-attn', # Path to save model checkpoints w2v_dir = '../w2v_models/', # Word2Vec model directory data_dir = '../data/', # Directory to store data csv files load_checkpoint = 0, # Specify the trained model epoch/checkpoint number to be loaded for evaluation on test set, 0 means last saved checkpoint )
# coding: utf-8 # Author: Leo BRUNEL # Contact: contact@leobrunel.com # Python modules import traceback import os import logging logger = logging.getLogger(__name__) # Wizard modules from maya_wizard import wizard_tools # Maya modules import pymel.core as pm # Hook modules try: import maya_hook except: maya_hook = None logger.error(str(traceback.format_exc())) logger.warning("Can't import maya_hook") def reference_modeling(namespace, files_list): old_objects = pm.ls() if not pm.namespace(exists=namespace): create_reference(files_list[0], namespace, 'MODELING') trigger_after_reference_hook('modeling', files_list, namespace, wizard_tools.get_new_objects(old_objects)) def update_modeling(namespace, files_list): old_objects = pm.ls() if pm.namespace(exists=namespace): update_reference(namespace, files_list) trigger_after_reference_hook('modeling', files_list, namespace, wizard_tools.get_new_objects(old_objects)) def reference_rigging(namespace, files_list): old_objects = pm.ls() if not pm.namespace(exists=namespace): create_reference(files_list[0], namespace, 'RIGGING') trigger_after_reference_hook('rigging', files_list, namespace, wizard_tools.get_new_objects(old_objects)) def update_rigging(namespace, files_list): old_objects = pm.ls() if pm.namespace(exists=namespace): update_reference(namespace, files_list) trigger_after_reference_hook('rigging', files_list, namespace, wizard_tools.get_new_objects(old_objects)) def reference_custom(namespace, files_list): old_objects = pm.ls() if not pm.namespace(exists=namespace): create_reference(files_list[0], namespace, 'CUSTOM') trigger_after_reference_hook('custom', files_list, namespace, wizard_tools.get_new_objects(old_objects)) def update_custom(namespace, files_list): old_objects = pm.ls() if pm.namespace(exists=namespace): update_reference(namespace, files_list) trigger_after_reference_hook('custom', files_list, namespace, wizard_tools.get_new_objects(old_objects)) def reference_camrig(namespace, files_list): old_objects = pm.ls() if not pm.namespace(exists=namespace): create_reference(files_list[0], namespace, 'CAMRIG') trigger_after_reference_hook('camrig', files_list, namespace, wizard_tools.get_new_objects(old_objects)) def update_camrig(namespace, files_list): old_objects = pm.ls() if pm.namespace(exists=namespace): update_reference(namespace, files_list) trigger_after_reference_hook('camrig', files_list, namespace, wizard_tools.get_new_objects(old_objects)) def reference_layout(namespace, files_list): old_objects = pm.ls() if not pm.namespace(exists=namespace): create_reference(files_list[0], namespace, 'LAYOUT') trigger_after_reference_hook('layout', files_list, namespace, wizard_tools.get_new_objects(old_objects)) def update_layout(namespace, files_list): old_objects = pm.ls() if pm.namespace(exists=namespace): update_reference(namespace, files_list) trigger_after_reference_hook('layout', files_list, namespace, wizard_tools.get_new_objects(old_objects)) def reference_animation(namespace, files_list): old_objects = pm.ls() if not pm.namespace(exists=namespace): create_reference(files_list[0], namespace, 'ANIMATION') trigger_after_reference_hook('animation', files_list, namespace, wizard_tools.get_new_objects(old_objects)) def update_animation(namespace, files_list): old_objects = pm.ls() if pm.namespace(exists=namespace): update_reference(namespace, files_list) trigger_after_reference_hook('animation', files_list, namespace, wizard_tools.get_new_objects(old_objects)) def reference_cfx(namespace, files_list): old_objects = pm.ls() if not pm.namespace(exists=namespace): create_reference(files_list[0], namespace, 'CFX') trigger_after_reference_hook('cfx', files_list, namespace, wizard_tools.get_new_objects(old_objects)) def update_cfx(namespace, files_list): old_objects = pm.ls() if pm.namespace(exists=namespace): update_reference(namespace, files_list) trigger_after_reference_hook('cfx', files_list, namespace, wizard_tools.get_new_objects(old_objects)) def reference_camera(namespace, files_list): old_objects = pm.ls() if not pm.namespace(exists=namespace): create_reference(files_list[0], namespace, 'CAMERA') trigger_after_reference_hook('camera', files_list, namespace, wizard_tools.get_new_objects(old_objects)) def update_camera(namespace, files_list): old_objects = pm.ls() if pm.namespace(exists=namespace): update_reference(namespace, files_list) trigger_after_reference_hook('camera', files_list, namespace, wizard_tools.get_new_objects(old_objects)) def create_reference(file, namespace, group): if not pm.objExists(group): pm.group( em=True, name=group ) pm.createReference(file, namespace=namespace, groupName='wizard_temp_reference_node', groupReference=True) for object in pm.listRelatives('wizard_temp_reference_node'): pm.parent(object, group) pm.delete('wizard_temp_reference_node') def update_reference(namespace, files_list): references = pm.listReferences(namespaces=True) for reference in references: if reference[0] == namespace: if os.path.normpath(files_list[0]) != os.path.normpath(reference[1].path): reference[1].load(files_list[0]) def trigger_after_reference_hook(referenced_stage_name, files_list, namespace, new_objects): stage_name = os.environ['wizard_stage_name'] referenced_files_dir = wizard_tools.get_file_dir(files_list[0]) # Trigger the after export hook if maya_hook: try: logger.info("Trigger after reference hook") maya_hook.after_reference(stage_name, referenced_stage_name, referenced_files_dir, namespace, new_objects) except: logger.info("Can't trigger after reference hook") logger.error(str(traceback.format_exc()))
from masonite.providers import ( RouteProvider, FrameworkProvider, ViewProvider, ExceptionProvider, SessionProvider, QueueProvider, StorageProvider, AuthenticationProvider, AuthorizationProvider, ORMProvider, EventProvider ) PROVIDERS = [ FrameworkProvider, RouteProvider, ViewProvider, EventProvider, ExceptionProvider, SessionProvider, QueueProvider, StorageProvider, AuthenticationProvider, AuthorizationProvider, ORMProvider, ]
import re import requests import numpy as np import json import os from collections import OrderedDict import pandas as pd import json #将数组写入json文件方便pandas的读取 def write_list_to_json(list, json_file_name, json_file_save_path): os.chdir(json_file_save_path) with open(json_file_name, 'w') as f: json.dump(list, f) url = 'https://coronavirus.1point3acres.com/_next/static/chunks/eb866cddf7095f20f497cfebeab34fbb581cc2fd.e2b6d415563226f3802d.js' headers = { 'User-Agent':'Opera/9.80(WindowsNT6.1;U;en)Presto/2.8.131Version/11.11', } res = requests.get(url,headers = headers) res.encoding = "UTF-8" pattern = re.compile('state_name":(.*?),"county":(.*?),"entries":(.*?)}',re.S) end = list(re.findall(pattern,res.text)) state_name='state_name' county='county' entries='entries' a=[] #过滤出州和区的名字组成字典 for i in range(len(end)): data={ "state_name:":[], "county:":[], } data['state_name:'].append(end[i][0]) data["county:"].append(end[i][1]) data['state_name:']=','.join(data['state_name:']) data["county:"]=','.join(data["county:"]) data['state_name:']=list(data['state_name:']) data["county:"]=list(data["county:"]) #过滤出日期和确诊数,通过zip拉取起来 date=re.findall(pattern,res.text) date_new=date[i][2].replace('[[',',[').replace(']]','],') re_compile = re.compile('"(.*?)",(.*?)]') date_care=re.findall(re_compile,date_new) time=[] care=[] for i in range(len(date_care)): time.append(date_care[i][0]) care.append(date_care[i][1]) time_care=OrderedDict(zip(time,care)) #数据清洗 for i in range(len(data['state_name:'])): data['state_name:'][i]=data['state_name:'][i].replace('\"','').replace('[','').replace(']','') for i in range(len(data["county:"])): data["county:"][i]=data["county:"][i].replace('\"','').replace('[','').replace(']','') data['state_name:']=''.join(data['state_name:']) data["county:"]=''.join(data["county:"]) b={ "state_name:":'', "county:":'', "entries:":'' } b["state_name:"]=data['state_name:'] b["county:"]=data["county:"] b=OrderedDict(b,**time_care) time.append('state_name:') time.append("county:") a.append(b) write_list_to_json(a,'20200502-data.json','E:/python_code/world_cov19') data_csv=pd.DataFrame(json.loads(open('20200502-data.json','r+').read())) cols=time data_csv=data_csv.ix[:,cols] data_csv.to_csv('20200502-data.json.csv')
from part1 import ( gamma_board, gamma_busy_fields, gamma_delete, gamma_free_fields, gamma_golden_move, gamma_golden_possible, gamma_move, gamma_new, ) """ scenario: test_random_actions uuid: 138749984 """ """ random actions, total chaos """ board = gamma_new(5, 2, 4, 2) assert board is not None assert gamma_busy_fields(board, 1) == 0 assert gamma_move(board, 2, 2, 1) == 1 assert gamma_move(board, 2, 2, 0) == 1 assert gamma_busy_fields(board, 2) == 2 assert gamma_free_fields(board, 2) == 8 assert gamma_move(board, 3, 1, 0) == 1 board580516127 = gamma_board(board) assert board580516127 is not None assert board580516127 == ("..2..\n" ".32..\n") del board580516127 board580516127 = None assert gamma_move(board, 4, 1, 0) == 0 assert gamma_golden_possible(board, 4) == 1 assert gamma_move(board, 1, 0, 0) == 1 assert gamma_busy_fields(board, 1) == 1 assert gamma_free_fields(board, 1) == 6 assert gamma_move(board, 2, 0, 1) == 1 board373235482 = gamma_board(board) assert board373235482 is not None assert board373235482 == ("2.2..\n" "132..\n") del board373235482 board373235482 = None assert gamma_move(board, 3, 0, 4) == 0 assert gamma_move(board, 3, 3, 1) == 1 assert gamma_golden_possible(board, 3) == 1 assert gamma_move(board, 4, 1, 1) == 1 assert gamma_move(board, 1, 3, 0) == 1 assert gamma_busy_fields(board, 1) == 2 assert gamma_golden_possible(board, 1) == 1 assert gamma_move(board, 2, 1, 4) == 0 assert gamma_move(board, 3, 1, 4) == 0 assert gamma_move(board, 4, 0, 4) == 0 assert gamma_free_fields(board, 4) == 2 assert gamma_move(board, 1, 1, 4) == 0 assert gamma_move(board, 2, 1, 4) == 0 assert gamma_move(board, 2, 1, 0) == 0 assert gamma_golden_possible(board, 2) == 1 board730927527 = gamma_board(board) assert board730927527 is not None assert board730927527 == ("2423.\n" "1321.\n") del board730927527 board730927527 = None assert gamma_move(board, 3, 1, 4) == 0 assert gamma_move(board, 3, 2, 0) == 0 assert gamma_move(board, 4, 1, 4) == 0 assert gamma_move(board, 1, 0, 0) == 0 assert gamma_move(board, 1, 3, 0) == 0 assert gamma_golden_possible(board, 1) == 1 assert gamma_move(board, 2, 1, 4) == 0 assert gamma_busy_fields(board, 2) == 3 assert gamma_move(board, 3, 0, 4) == 0 assert gamma_free_fields(board, 3) == 1 board831262932 = gamma_board(board) assert board831262932 is not None assert board831262932 == ("2423.\n" "1321.\n") del board831262932 board831262932 = None gamma_delete(board)
# coding=utf-8 import logging from nose.plugins.attrib import attr from modelscript.interfaces.environment import Environment from modelscript.test.framework import TEST_CASES_DIRECTORY import os import modelscript.scripts.usecases.parser from modelscript.scripts.usecases.graphviz import ( UsecaseGraphvizPrinter ) logging.basicConfig(level=logging.DEBUG) log = logging.getLogger('test.'+__name__) @attr('slow') def testGenerator_UssGraphviz(): test_dir=os.path.join( TEST_CASES_DIRECTORY,'uss') #--- test all files ---------------------- files = [ os.path.join(test_dir, f) for f in os.listdir(test_dir) if f.endswith('.uss')] for filename in files: yield doBuildDiagram, filename def doBuildDiagram(filename): #--- parser: .uss -> system ------------------- source = modelscript.scripts.usecases.parser.UsecaseModelSource( usecaseFileName=filename, ) if not source.isValid: print(('#'*10+' ignore invalid file %s' % filename )) else: usm = source.usecaseModel #--- diag generation: system -> .gv -------------- # graphviz_file_path = os.path.join( # USD_DIR, # os.path.splitext( # os.path.basename(filename)) [0]+'.usd.gv' # ) graphviz_file_path=Environment.getWorkerFileName( filename, extension='.usd.gv') print(('TST: '+'='*80)) print(('TST: result in %s' % graphviz_file_path)) print(('TST: '+'='*80)) gen = UsecaseGraphvizPrinter(usm) # print(gen.do(outputFile=puml_file_path)) # #--- plantuml: .puml -> .svg ---------------------- # puml_engine.generate(puml_file_path) gen.generate(graphviz_file_path, format='png') # gen.generate(puml_file_path, format='svg' ) print('TST: generated') print(('TST: '+'='*80))
# -*- coding: utf-8 -*- from __future__ import unicode_literals # Third Party Stuff from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('conferences', '0012_historicalconferenceproposalreviewer'), ] operations = [ migrations.AddField( model_name='conference', name='hashtags', field=models.CharField(max_length=100, default='', null=True, help_text="Used in social sharing, use commas to separate to tags, no '#' required.", blank=True), preserve_default=True, ), migrations.AddField( model_name='conference', name='twitter_id', field=models.CharField(max_length=100, default='', null=True, help_text='Used in social share widgets.', blank=True), preserve_default=True, ), migrations.AlterField( model_name='conference', name='venue', field=models.ForeignKey(blank=True, null=True, to='conferences.ConferenceVenue'), preserve_default=True, ), ]
from functools import partial from subprocess import PIPE, run from textwrap import dedent import pytest from flake8_annotations import error_codes from testing.helpers import check_source ERR = partial(error_codes.ANN401, lineno=3) TEST_CASES = ( # Type annotations ( dedent( """\ from typing import Any def foo(a: Any) -> None: ... """ ), ), ( dedent( """\ from typing import Any def foo(a: int) -> Any: ... """ ), ), ( dedent( """\ import typing as t def foo(a: t.Any) -> None: ... """ ), ), ( dedent( """\ import typing as t def foo(a: int) -> t.Any: ... """ ), ), # Type comments ( dedent( """\ def foo( a # type: Any ): # type: (...) -> int ... """ ), ), ( dedent( """\ def foo(a): # type: (int) -> Any ... """ ), ), ) @pytest.mark.parametrize(("src",), TEST_CASES) def test_dynamic_typing_errors(src: str) -> None: found_errors = list(check_source(src)) assert len(found_errors) == 1 _, _, err_msg, _ = found_errors[0] assert "ANN401" in err_msg INP = dedent( """\ import typing def foo(a: typing.Any) -> None: ... """ ) def test_ANN401_ignored_default() -> None: p = run(["flake8", "--select=ANN", "-"], stdout=PIPE, input=INP, encoding="ascii") assert len(p.stdout) == 0 def test_ANN401_fire_when_selected() -> None: p = run( ["flake8", "--select=ANN", "--ignore=''", "-"], stdout=PIPE, input=INP, encoding="ascii" ) assert "ANN401" in p.stdout STARG_CASES = ( ( dedent( """\ from typing import Any def foo(*a: Any) -> None: ... """ ), ), ( dedent( """\ from typing import Any def foo(**a: Any) -> None: ... """ ), ), ( dedent( """\ from typing import Any def foo(a: int, *b: Any, c: int) -> None: ... """ ), ), ( dedent( """\ from typing import Any def foo(a: int, *, b: int, **c: Any) -> None: ... """ ), ), ) @pytest.mark.parametrize(("src",), STARG_CASES) def test_ignore_stargs(src: str) -> None: found_errors = list(check_source(src, allow_star_arg_any=True)) assert len(found_errors) == 0
# Generated by Django 2.2.16 on 2020-10-23 07:00 from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('sites', '0002_alter_domain_unique'), ('cms', '0022_auto_20180620_1551'), ('djangocms_charts', '0004_auto_20200521_2007'), ] operations = [ migrations.CreateModel( name='AxisOptionsGroupModel', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(help_text='Save and Reuse Options groups', max_length=100, verbose_name='Options Group Name')), ('type', models.CharField(blank=True, choices=[('linear', 'linear'), ('logarithmic', 'logarithmic'), ('category', 'category'), ('time', 'time'), ('radial', 'radial')], max_length=10, null=True, verbose_name='Axis Type')), ('slug', models.SlugField(blank=True, null=True, unique=True)), ('display', models.CharField(blank=True, choices=[('true', 'true'), ('false', 'false'), ('auto', 'auto')], help_text='Controls the axis global visibility (visible when true, hidden when false). When display: auto, the axis is visible only if at least one associated dataset is visible.', max_length=100, null=True, verbose_name='display')), ('weight', models.IntegerField(blank=True, help_text='The weight used to sort the axis. Higher weights are further away from the chart area.', null=True, verbose_name='weight')), ], options={ 'ordering': ['name'], 'abstract': False, }, ), migrations.CreateModel( name='AxisOptionsModel', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('label', models.CharField(help_text='Include the namespaces for options below root, e.g. hover.mode', max_length=150, verbose_name='Namespace Label')), ('type', models.CharField(default='text', help_text='Select the input data type', max_length=10, verbose_name='Data Type')), ('value', models.TextField(help_text='Value of the option JSON allowed', verbose_name='Option Value')), ('options_group', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='options', to='djangocms_charts.AxisOptionsGroupModel')), ], options={ 'ordering': ['label'], 'abstract': False, }, ), migrations.CreateModel( name='ChartModel', fields=[ ('cmsplugin_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, related_name='djangocms_charts_chartmodel', serialize=False, to='cms.CMSPlugin')), ('label', models.CharField(blank=True, max_length=256, null=True, verbose_name='Name')), ('type', models.CharField(choices=[('line', 'line'), ('line_xy', 'line_xy'), ('bar', 'bar'), ('horizontalBar', 'horizontalBar'), ('radar', 'radar'), ('polarArea', 'polarArea'), ('pie', 'pie'), ('doughnut', 'doughnut'), ('bubble', 'bubble'), ('scatter', 'scatter')], max_length=50, verbose_name='Chart Type')), ('table_data', models.TextField(blank=True, verbose_name='Chart Table data')), ('labels_top', models.BooleanField(default=True, verbose_name='Labels top row')), ('labels_left', models.BooleanField(default=True, verbose_name='Labels left column')), ('data_series_format', models.CharField(choices=[('rows', 'rows'), ('cols', 'cols')], default='rows', max_length=10, verbose_name='Multiple Datasets in Rows or Columns')), ('color_by_dataset', models.BooleanField(blank=True, default=False, help_text='True to color each Dataset, False to color each element in a Series', null=True, verbose_name='Color by Dataset')), ('caption', models.TextField(blank=True, null=True, verbose_name='Caption text below chart')), ('display_title', models.BooleanField(default=True, verbose_name='Display Title')), ('display_legend', models.BooleanField(default=True, verbose_name='Display Legend')), ('legend_position', models.CharField(blank=True, choices=[('top', 'top'), ('left', 'left'), ('bottom', 'bottom'), ('right', 'right')], default='top', max_length=100, null=True, verbose_name='Legend Position')), ('chart_width', models.CharField(blank=True, max_length=50, null=True, verbose_name='Chart Width')), ('chart_height', models.CharField(blank=True, max_length=50, null=True, verbose_name='Chart Height')), ('chart_container_classes', models.TextField(blank=True, verbose_name='Additional classes for Chart Container')), ('chart_classes', models.TextField(blank=True, verbose_name='Additional classes for Chart')), ], options={ 'abstract': False, }, bases=('cms.cmsplugin', models.Model), ), migrations.CreateModel( name='ChartOptionsGroupModel', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(help_text='Save and Reuse Options groups', max_length=100, verbose_name='Options Group Name')), ], options={ 'ordering': ['name'], 'abstract': False, }, ), migrations.CreateModel( name='ChartOptionsModel', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('label', models.CharField(help_text='Include the namespaces for options below root, e.g. hover.mode', max_length=150, verbose_name='Namespace Label')), ('type', models.CharField(default='text', help_text='Select the input data type', max_length=10, verbose_name='Data Type')), ('value', models.TextField(help_text='Value of the option JSON allowed', verbose_name='Option Value')), ('options_group', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='options', to='djangocms_charts.ChartOptionsGroupModel')), ], options={ 'ordering': ['label'], 'abstract': False, }, ), migrations.CreateModel( name='ChartSpecificOptionsModel', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('label', models.CharField(help_text='Include the namespaces for options below root, e.g. hover.mode', max_length=150, verbose_name='Namespace Label')), ('type', models.CharField(default='text', help_text='Select the input data type', max_length=10, verbose_name='Data Type')), ('value', models.TextField(help_text='Value of the option JSON allowed', verbose_name='Option Value')), ('options_group', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='options', to='djangocms_charts.ChartModel')), ], options={ 'ordering': ['label'], 'abstract': False, }, ), migrations.CreateModel( name='ColorGroupModel', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(max_length=100, verbose_name='Color Group Name')), ], options={ 'verbose_name': 'Color Groups', 'verbose_name_plural': 'Color Groups', }, ), migrations.CreateModel( name='ColorModel', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('types', models.TextField(verbose_name='Select the Chart Types')), ('labels', models.TextField(verbose_name='Select the Namespace Labels')), ('colors', models.TextField(verbose_name='Select Multiple Colors')), ('color_group', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='colors', to='djangocms_charts.ColorGroupModel')), ], ), migrations.CreateModel( name='DatasetModel', fields=[ ('cmsplugin_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, related_name='djangocms_charts_datasetmodel', serialize=False, to='cms.CMSPlugin')), ('label', models.CharField(blank=True, max_length=256, null=True, verbose_name='Name')), ('type', models.CharField(choices=[('line', 'line'), ('line_xy', 'line_xy'), ('bar', 'bar'), ('horizontalBar', 'horizontalBar'), ('radar', 'radar'), ('polarArea', 'polarArea'), ('pie', 'pie'), ('doughnut', 'doughnut'), ('bubble', 'bubble'), ('scatter', 'scatter')], max_length=50, verbose_name='Chart Type')), ('table_data', models.TextField(blank=True, verbose_name='Chart Table data')), ('labels_top', models.BooleanField(default=True, verbose_name='Labels top row')), ('labels_left', models.BooleanField(default=True, verbose_name='Labels left column')), ('data_series_format', models.CharField(choices=[('rows', 'rows'), ('cols', 'cols')], default='rows', max_length=10, verbose_name='Multiple Datasets in Rows or Columns')), ('color_by_dataset', models.BooleanField(blank=True, default=False, help_text='True to color each Dataset, False to color each element in a Series', null=True, verbose_name='Color by Dataset')), ('colors', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='datasetmodel_colors', to='djangocms_charts.ColorGroupModel')), ], options={ 'abstract': False, }, bases=('cms.cmsplugin', models.Model), ), migrations.CreateModel( name='DatasetOptionsGroupModel', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(help_text='Save and Reuse Options groups', max_length=100, verbose_name='Options Group Name')), ], options={ 'ordering': ['name'], 'abstract': False, }, ), migrations.CreateModel( name='DatasetOptionsModel', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('label', models.CharField(help_text='Include the namespaces for options below root, e.g. hover.mode', max_length=150, verbose_name='Namespace Label')), ('type', models.CharField(default='text', help_text='Select the input data type', max_length=10, verbose_name='Data Type')), ('value', models.TextField(help_text='Value of the option JSON allowed', verbose_name='Option Value')), ('options_group', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='options', to='djangocms_charts.DatasetOptionsGroupModel')), ], options={ 'ordering': ['label'], 'abstract': False, }, ), migrations.CreateModel( name='DatasetSpecificOptionsModel', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('label', models.CharField(help_text='Include the namespaces for options below root, e.g. hover.mode', max_length=150, verbose_name='Namespace Label')), ('type', models.CharField(default='text', help_text='Select the input data type', max_length=10, verbose_name='Data Type')), ('value', models.TextField(help_text='Value of the option JSON allowed', verbose_name='Option Value')), ('options_group', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='options', to='djangocms_charts.DatasetModel')), ], options={ 'ordering': ['label'], 'abstract': False, }, ), migrations.CreateModel( name='GlobalOptionsGroupModel', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(help_text='Save and Reuse Options groups', max_length=100, verbose_name='Options Group Name')), ('enabled', models.BooleanField(blank=True, default=True, verbose_name='Enable Global Settings')), ('colors', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='global_colors', to='djangocms_charts.ColorGroupModel')), ('site', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='sites.Site')), ], options={ 'ordering': ['name'], 'abstract': False, }, ), migrations.CreateModel( name='GlobalOptionsModel', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('label', models.CharField(help_text='Include the namespaces for options below root, e.g. hover.mode', max_length=150, verbose_name='Namespace Label')), ('type', models.CharField(default='text', help_text='Select the input data type', max_length=10, verbose_name='Data Type')), ('value', models.TextField(help_text='Value of the option JSON allowed', verbose_name='Option Value')), ('options_group', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='options', to='djangocms_charts.GlobalOptionsGroupModel')), ], options={ 'ordering': ['label'], 'abstract': False, }, ), migrations.AddField( model_name='datasetmodel', name='dataset_options_group', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='datasetmodel_options', to='djangocms_charts.DatasetOptionsGroupModel'), ), migrations.AddField( model_name='datasetmodel', name='xAxis', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='datasetmodel_xAxis', to='djangocms_charts.AxisOptionsGroupModel'), ), migrations.AddField( model_name='datasetmodel', name='yAxis', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='datasetmodel_yAxis', to='djangocms_charts.AxisOptionsGroupModel'), ), migrations.AddField( model_name='chartmodel', name='chart_options_group', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='chart_options', to='djangocms_charts.ChartOptionsGroupModel'), ), migrations.AddField( model_name='chartmodel', name='colors', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='chartmodel_colors', to='djangocms_charts.ColorGroupModel'), ), migrations.AddField( model_name='chartmodel', name='dataset_options_group', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='chartmodel_options', to='djangocms_charts.DatasetOptionsGroupModel'), ), migrations.AddField( model_name='chartmodel', name='xAxis', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='chartmodel_xAxis', to='djangocms_charts.AxisOptionsGroupModel'), ), migrations.AddField( model_name='chartmodel', name='yAxis', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='chartmodel_yAxis', to='djangocms_charts.AxisOptionsGroupModel'), ), ]
# ─┐ ┬┌─┐┌┐┌┌─┐┌┐ ┬ ┬┌┬┐┌─┐ ─┐ ┬┬ ┬┌─┐ # ┌┴┬┘├┤ ││││ │├┴┐└┬┘ │ ├┤ ┌┴┬┘└┬┘┌─┘ # ┴ └─└─┘┘└┘└─┘└─┘ ┴ ┴ └─┘o┴ └─ ┴ └─┘ # Author: SENEX @ XENOBYTE.XYZ # License: MIT License # Website: https://xenobyte.xyz/projects/?nav=dotfiles from bs4 import BeautifulSoup import urllib.request import re import sys # How to use # ---------- # This script is to be called by a second bash / zsh alias that will call wget on the returned list # of found media. If you're using zsh simply add the following script to .zshrc # imgdl() { # if [ ! -d $IMGBOARD_DL_DIR ]; then # mkdir $IMGBOARD_DL_DIR; # fi # rm -rf $IMGBOARD_DL_DIR/*; # cd $IMGBOARD_DL_DIR; # python3 $SCRIPTS_DIR"download_images.py" $1 | xargs wget; # Path to script # } # This script will download all then media that matches the find_all substring and donwloads them # to the specified folder. if __name__ == "__main__": assert len(sys.argv) == 2, "Invalid number of arguments" url = sys.argv[1] con = urllib.request.urlopen(urllib.request.Request( url, headers={'User-Agent': "Magic Browser"})) html = BeautifulSoup(con.read(), "html.parser") img_list = [] # Remove the initial '//' in the href (used by 4chan and some free imageboard engines) for a in html.find_all("a", {"href": re.compile("([-\w]+\.(?:bmp|jpeg|jpg|gif|png|webm|pdf|epub))")}): m = str.replace(a["href"], "//", "") if m not in img_list: img_list.append(m) # Print (parse) the processed list of found media to wget print("\n".join(set(img_list)))
__all__ = ['find_fits_files', 'test_fits_keyword', 'test_coordinates', 'test_file_number', 'test_float_input', 'test_float_positive_input', 'test_int_input', 'test_int_positive_input', 'test_int_positive_non_zero_input', 'test_date', 'filter_map'] import numpy as np import glob import hops.pylightcurve3 as plc from astropy.io import fits as pf def find_fits_files(fits_file): fits_list = glob.glob('*{0}*.f*t*'.format(fits_file)) + glob.glob('*{0}*.F*T*'.format(fits_file)) fits_list = list(np.unique(fits_list)) fits_list.sort() return fits_list def test_fits_keyword(fits_file, keyword): if len(fits_file) == 0: return [False, 'No keyword found'] else: try: fits_file = find_fits_files(fits_file)[0] fits = pf.open(fits_file) try: fits = [fits['SCI']] except KeyError: sci_id = 0 for sci_id in range(len(fits)): try: if (fits[sci_id].data).all(): break except: pass fits = [fits[sci_id]] if fits[0].header[str(keyword)]: return [True, 'Keyword found', fits[0].header[str(keyword)]] else: return [False, 'No keyword found'] except (KeyError, IndexError): return [False, 'No keyword found'] def test_file_number(fits_file): if len(fits_file) == 0: test = 0 else: test = len(find_fits_files(fits_file)) if test > 0: return [True, '{0} files found'.format(test)] else: return [False, 'No files found'] def test_coordinates(ra_dec_string, single_line=False): try: ra_dec_string = ra_dec_string.split(' ')[0].split(':') + ra_dec_string.split(' ')[1].split(':') target = plc.Target(plc.Hours(ra_dec_string[0], ra_dec_string[1], ra_dec_string[2]), plc.Degrees(ra_dec_string[3], ra_dec_string[4], ra_dec_string[5])) if single_line: return[True, 'Coordinates accepted'] else: return[True, 'Coordinates\naccepted'] except: if single_line: return [False, 'Wrong coordinates'] else: return [False, 'Wrong\ncoordinates'] def test_float_input(input_str, typing): if typing == '1': try: if float(input_str) >= 0: return True elif float(input_str) < 0: return True else: return False except ValueError: return False else: return True def test_float_positive_input(input_str, typing): if typing == '1': try: if float(input_str) >= 0: return True else: return False except ValueError: return False else: return True def test_int_input(input_str, typing): if typing == '1': try: if int(input_str): return True else: return False except ValueError: return False else: return True def test_int_positive_input(input_str, typing): if typing == '1': try: if int(input_str) >= 0: return True else: return False except ValueError: return False else: return True def test_int_positive_non_zero_input(input_str, typing): if typing == '1': try: if int(input_str) > 0: return True else: return False except ValueError: return False else: return True def test_date(year_month_string): pass_test = True if len(year_month_string.split()) != 2: pass_test = False elif len(year_month_string.split()[0]) != 4: pass_test = False elif len(year_month_string.split()[1]) != 2: pass_test = False else: try: year = int(year_month_string.split()[0]) month = int(year_month_string.split()[1]) if int(month) < 1 or int(month) > 12: pass_test = False if int(year) < 0: pass_test = False except: pass_test = False if pass_test: return[True, 'Date\naccepted'] else: return [False, 'Wrong\ndate'] filter_map = {'Clear': 'V', 'Luminance': 'V', 'U': 'U', 'B': 'B', 'V': 'V', 'R': 'R', 'I': 'I', 'H': 'H', 'J': 'J', 'K': 'K', 'u': 'u', 'b': 'b', 'v': 'v', 'y': 'y', 'u\'': 'u,', 'g\'': 'g,', 'r\'': 'r,', 'i\'': 'i,', 'z\'': 'z,', 'Astrodon ExoPlanet-BB': 'R', 'UV': 'U', 'Rc': 'R', 'Ic': 'I', 'Re': 'R', 'Ie': 'I', 'Y': 'y,', 'r': 'r,', 'z': 'z,', 'i': 'i,', }
# # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # import os import sys from benchmark.benchmark_stat import BenchmarkStat class HdfsLogStat(BenchmarkStat): def __init__(self, log_file="logs/log.txt"): self._total_bytes = 0 self._file = log_file self.header = "DFSClient:bytes" def start(self): # This stat relies on a log file already being generated () pass def end(self): if os.path.isfile(self._file): self.parse() def parse(self): with open(self._file, 'r') as fd: total = 0 for line in fd.readlines(): if "DFSClient readNextPacket" in line: items = line.rstrip("\n").split(" ") cur_bytes = int(items[10].split("=")[1]) total += cur_bytes self._total_bytes = total def __str__(self): if self._total_bytes > 0: return f"{self._total_bytes}" return "" if __name__ == "__main__": file = sys.argv[1] stat = HdfsLogStat(file) stat.end() print(stat)
# Generated by Django 4.0.1 on 2022-03-19 13:31 from django.db import migrations class Migration(migrations.Migration): dependencies = [ ('lab', '0016_run_new_status_squashed_0019_rename_new_status_run_status'), ('lab', '0019_alter_run_end_date_alter_run_start_date'), ] operations = [ ]
__all__ = ['WebClient'] import inspect import input_helper as ih import webclient_helper as wh class WebClient(object): """Interact with an API on the web If you need to obtain a token from a login endpoint, define a "login" method when you subclass WebClient and set self._token and self._token_type Example: def login(self): headers = {'Content-Type': 'application/json'} data = {'email': self._username, 'password': self._password} response = self.session.post( self._base_url + '/api/login', headers=headers, json=data ) self._token = response.json().get('access_token') self._token_type = 'Bearer' """ def __init__(self, username=None, password=None, token=None, token_type=None, base_url='', user_agent=None, content_type='application/json', extra_headers={}): """ - username: if specified, set auth on session (requires password) - password: if specified, set auth on session (requires username) - token: if specified, use this token in the "Authorization" header (requires token_type) - token_type: if specified, use as part of the value in the "Authorization" header - base_url: base url for service/API that a subclass would interact with - user_agent: if specified, set "User-Agent" header - content_type: content type for requests - extra_headers: a dict of extra headers to set on the session If no login method is defined, any supplied username/password will be passed to new_requests_session (for basic auth) """ self._username = username self._password = password self._token = token self._token_type = token_type self._base_url = base_url.strip('/') self._user_agent = user_agent self._content_type = content_type self._extra_headers = extra_headers self._history = [] self.set_session() def login(self): pass def is_login_defined(self): """Return True if a login method is defined""" return inspect.getsource(self.login) != ' def login(self):\n pass\n' def _set_auth_header(self): """Add "Authorization" header on session if self._token is set""" if self._token: self.session.headers.update({ 'Authorization': '{} {}'.format(self._token_type, self._token) }) def set_session(self): """Get a new session object for self.session and invoke login method""" if self.is_login_defined(): self.session = wh.new_requests_session( user_agent=self._user_agent, content_type=self._content_type, extra_headers=self._extra_headers ) self.login() else: self.session = wh.new_requests_session( username=self._username, password=self._password, user_agent=self._user_agent, content_type=self._content_type, extra_headers=self._extra_headers ) if self._token: assert self._token_type is not None, "self._token is set, but not self._token_type" self._set_auth_header() def OPTIONS(self, url, headers=None, debug=False, **kwargs): """Send a OPTIONS request and return response object - url: url/endpoint - headers: dict of headers to update on the session before making request - debug: if True, enter debugger before returning Other kwargs are passed to webclient_helper.session_method """ response = wh.session_method( 'options', url, session=self.session, headers=headers, debug=debug, **kwargs ) self._history.append({ 'caller': inspect.getouterframes(inspect.currentframe(), 2)[1][3], 'summary': wh.get_summary_from_response(response), 'response': response }) return response def HEAD(self, url, headers=None, debug=False, **kwargs): """Send a HEAD request and return response object - url: url/endpoint - headers: dict of headers to update on the session before making request - debug: if True, enter debugger before returning Other kwargs are passed to webclient_helper.session_method """ response = wh.session_method( 'head', url, session=self.session, headers=headers, debug=debug, **kwargs ) self._history.append({ 'caller': inspect.getouterframes(inspect.currentframe(), 2)[1][3], 'summary': wh.get_summary_from_response(response), 'response': response }) return response def GET(self, url, headers=None, params=None, debug=False, **kwargs): """Send a GET request and return response object - url: url/endpoint - headers: dict of headers to update on the session before making request - params: a dict with query string vars and values - debug: if True, enter debugger before returning Other kwargs are passed to webclient_helper.session_method """ response = wh.session_method( 'get', url, session=self.session, headers=headers, params=params, debug=debug, **kwargs ) self._history.append({ 'caller': inspect.getouterframes(inspect.currentframe(), 2)[1][3], 'summary': wh.get_summary_from_response(response), 'response': response }) return response def POST(self, url, headers=None, data=None, json=None, debug=False, **kwargs): """Send a POST request and return response object - url: url/endpoint - headers: dict of headers to update on the session before making request - data: a dict to send in the body (non-JSON) - json: a dict to send in the body - debug: if True, enter debugger before returning Other kwargs are passed to webclient_helper.session_method """ response = wh.session_method( 'post', url, session=self.session, headers=headers, data=data, json=json, debug=debug, **kwargs ) self._history.append({ 'caller': inspect.getouterframes(inspect.currentframe(), 2)[1][3], 'summary': wh.get_summary_from_response(response), 'response': response }) return response def PUT(self, url, headers=None, data=None, debug=False, **kwargs): """Send a PUT request and return response object - url: url/endpoint - headers: dict of headers to update on the session before making request - data: a dict to send in the body (non-JSON) - debug: if True, enter debugger before returning Other kwargs are passed to webclient_helper.session_method """ response = wh.session_method( 'put', url, session=self.session, headers=headers, data=data, debug=debug, **kwargs ) self._history.append({ 'caller': inspect.getouterframes(inspect.currentframe(), 2)[1][3], 'summary': wh.get_summary_from_response(response), 'response': response }) return response def PATCH(self, url, headers=None, data=None, debug=False, **kwargs): """Send a PATCH request and return response object - url: url/endpoint - headers: dict of headers to update on the session before making request - data: a dict to send in the body (non-JSON) - debug: if True, enter debugger before returning Other kwargs are passed to webclient_helper.session_method """ response = wh.session_method( 'patch', url, session=self.session, headers=headers, data=data, debug=debug, **kwargs ) self._history.append({ 'caller': inspect.getouterframes(inspect.currentframe(), 2)[1][3], 'summary': wh.get_summary_from_response(response), 'response': response }) return response def DELETE(self, url, headers=None, debug=False, **kwargs): """Send a DELETE request and return response object - url: url/endpoint - headers: dict of headers to update on the session before making request - debug: if True, enter debugger before returning Other kwargs are passed to webclient_helper.session_method """ response = wh.session_method( 'delete', url, session=self.session, headers=headers, debug=debug, **kwargs ) self._history.append({ 'caller': inspect.getouterframes(inspect.currentframe(), 2)[1][3], 'summary': wh.get_summary_from_response(response), 'response': response }) return response def history_explorer(self, return_selections=False): """Select responses from history to explore in ipython (if ipython installed) - return_selections: if True, return the selections from history """ selected_responses = ih.make_selections( self._history, item_format='{summary} (called by {caller})', prompt='Select responses to inspect', wrap=False, ) if selected_responses: ih.start_ipython(warn=True, selected_responses=selected_responses) if return_selections: return selected_responses
### imports ### import numpy as np import pandas as pd from matplotlib import pyplot as plt from scipy.integrate import odeint import random as rd ### parameters ### ### E.coli parameters growth_rate = 0.04 e_max_size = 2 e_min_size = 1 ### minicell parameters minicell_production_rate = 0 m_max_size = 1/5 * e_max_size m_min_size = 1/5 * e_min_size ######### implementation ########### ### initialisation cell_count = [1] minicell_count = [] tmax = 300 time = np.linspace(0,tmax,1000) tspan = tmax/len(time) counts = [] # [[[]=cell_count,[]=minicell_count]=t0 , []=cell_count,[]=minicell_count]=t1 , ...] div = [] mini = [] ''' a) exponential growth, constant minicells production''' minicell_production_rate = 0.03 ### functions ### def minicell_production(cell,t,tspan): minicell = 0 if cell > e_min_size + m_max_size: if ((t-tspan)*minicell_production_rate)%1 > (t*minicell_production_rate)%1 : minicell = m_max_size cell = cell - minicell return cell, minicell ### simulation for t in time: for i in range(len(cell_count)): cell_count[i] = round(cell_count[i] + cell_count[i]*growth_rate*tspan,5) cell_count[i], minicell = minicell_production(cell_count[i],t,tspan) if minicell > 0: minicell_count.append(minicell) mini.append(t) if cell_count[i] >= 2: div.append(t) cell_count[i] = cell_count[i]/2 new_cell = cell_count[i] cell_count.append(new_cell) counts.append([cell_count.copy(),minicell_count.copy()]) ### plot plt.figure() prev = 0 col = 0 for i in range(len(counts)): if prev < len(counts[i][0]): style = ["-","--","-."] prev = len(counts[i][0]) life = time[i:] plt.plot(life, [l[0][col] for l in counts[i:]], style[col%3], label='cell'+str(prev)) col = col + 1 for t in div: plt.axvline(x=t, color='lightgrey', linestyle=':') for t in mini: plt.axvline(x=t, color='darkgrey', linestyle='--') plt.ylim([1,2.5]) plt.xlabel("time (m)") plt.ylabel("size of the bacteria (micron)") plt.legend() plt.show() plt.close() ## counts final_population = counts[-1] print("cellule=", len(final_population[0])," minicellule=", len(final_population[1])) plt.figure() plt.plot(time,[len(x[0]) for x in counts], label='n of cells') plt.plot(time,[len(x[1]) for x in counts], label='n of minicells') plt.legend() plt.show() plt.close() ''' b) exponential growth, exponential minicell production''' minicell_production_rate = 0.02 rate_sum = 0 ### functions ### def minicell_production(cell,t,tspan,rate_sum): minicell = 0 if cell > e_min_size + m_max_size: if (rate_sum - (minicell_production_rate*cell*tspan))%1 > rate_sum%1 : minicell = m_max_size cell = cell - minicell return cell, minicell ### simulation for t in time: for i in range(len(cell_count)): cell_count[i] = round(cell_count[i] + cell_count[i]*growth_rate*tspan,5) if i == 0: rate_sum = rate_sum + (minicell_production_rate*cell_count[i]*tspan) cell_count[i], minicell = minicell_production(cell_count[i],t,tspan,rate_sum) if minicell > 0: minicell_count.append(minicell) mini.append(t) if cell_count[i] >= 2: div.append(t) cell_count[i] = cell_count[i]/2 new_cell = cell_count[i] cell_count.append(new_cell) counts.append([cell_count.copy(),minicell_count.copy()]) ### plot plt.figure() prev = 0 col = 0 for i in range(len(counts)): if prev < len(counts[i][0]): style = ["-","--","-."] prev = len(counts[i][0]) life = time[i:] plt.plot(life, [l[0][col] for l in counts[i:]], style[col%3], label='cell'+str(prev)) col = col + 1 for t in div: plt.axvline(x=t, color='lightgrey', linestyle=':') for t in mini: plt.axvline(x=t, color='darkgrey', linestyle='--') plt.legend() plt.ylim([1,2.5]) plt.xlabel("time (m)") plt.ylabel("size of the bacteria (micron)") plt.show() plt.close() ### counts final_population = counts[-1] print("cellule=", len(final_population[0])," minicellule=", len(final_population[1])) plt.figure() plt.plot(time,[len(x[0]) for x in counts], label='n of cells') plt.plot(time,[len(x[1]) for x in counts], label='n of minicells') plt.legend() plt.show() plt.close() ''' c) exponential growth, constant minicells ''' minicell_production_rate = 0.03 ### functions ### def minicell_production(cell,tspan): minicell = 0 if cell > e_min_size + m_max_size: threshold = minicell_production_rate*tspan*10000 random = rd.randint(1,10000) if random <= threshold: minicell = m_max_size cell = cell - minicell return cell, minicell ### simulation for t in time: for i in range(len(cell_count)): cell_count[i] = round(cell_count[i] + cell_count[i]*growth_rate*tspan,5) cell_count[i], minicell = minicell_production(cell_count[i],tspan) if minicell > 0: minicell_count.append(minicell) mini.append(t) if cell_count[i] >= 2: div.append(t) cell_count[i] = cell_count[i]/2 new_cell = cell_count[i] cell_count.append(new_cell) counts.append([cell_count.copy(),minicell_count.copy()]) ### plot plt.figure() prev = 0 col = 0 for i in range(len(counts)): if prev < len(counts[i][0]): style = ["-","--","-."] prev = len(counts[i][0]) life = time[i:] plt.plot(life, [l[0][col] for l in counts[i:]], style[col%3], label='cell'+str(prev)) col = col + 1 for t in div: plt.axvline(x=t, color='lightgrey', linestyle=':') for t in mini: plt.axvline(x=t, color='darkgrey', linestyle='--') plt.ylim([1,2.5]) plt.xlabel("time (m)") plt.ylabel("size of the bacteria (micron)") plt.legend() plt.show() plt.close() ## counts final_population = counts[-1] print("cellule=", len(final_population[0])," minicellule=", len(final_population[1])) plt.figure() plt.plot(time,[len(x[0]) for x in counts], label='n of cells') plt.plot(time,[len(x[1]) for x in counts], label='n of minicells') plt.yscale('log') plt.legend() plt.show() plt.close() ''' d) exponential growth, constant minicells ''' minicell_production_rate = 0.02 ## functions ### def minicell_production(cell,tspan): minicell = 0 if cell > e_min_size + m_max_size: threshold = minicell_production_rate*tspan*10000*cell random = rd.randint(1,10000) if random <= threshold: minicell = m_max_size cell = cell - minicell return cell, minicell ## simulation for t in time: for i in range(len(cell_count)): cell_count[i] = round(cell_count[i] + cell_count[i]*growth_rate*tspan,5) cell_count[i], minicell = minicell_production(cell_count[i],tspan) if minicell > 0: minicell_count.append(minicell) mini.append(t) if cell_count[i] >= 2: div.append(t) cell_count[i] = cell_count[i]/2 new_cell = cell_count[i] cell_count.append(new_cell) counts.append([cell_count.copy(),minicell_count.copy()]) ### plot plt.figure() prev = 0 col = 0 for i in range(len(counts)): if prev < len(counts[i][0]): style = ["-","--","-."] prev = len(counts[i][0]) life = time[i:] plt.plot(life, [l[0][col] for l in counts[i:]], style[col%3], label='cell'+str(prev)) col = col + 1 for t in div: plt.axvline(x=t, color='lightgrey', linestyle=':') for t in mini: plt.axvline(x=t, color='darkgrey', linestyle='--') plt.ylim([1,2.5]) plt.xlabel("time (m)") plt.ylabel("size of the bacteria (micron)") plt.legend() plt.show() plt.close() ## counts final_population = counts[-1] print("cellule=", len(final_population[0])," minicellule=", len(final_population[1])) plt.figure() plt.plot(time,[len(x[0]) for x in counts], label='n of cells') plt.plot(time,[len(x[1]) for x in counts], label='n of minicells') plt.yscale('log') plt.legend() plt.xlabel('time') plt.ylabel('count') plt.show() plt.close() # plot ration plt.figure() plt.plot(time,[len(x[1])/len(x[0]) for x in counts], label='ratio minicells/cells') plt.legend() plt.xlabel('time') plt.ylabel('ratio') plt.show() plt.close()
# -*- coding: utf-8 -*- from optimus.assets.registry import register_assets from optimus.pages.builder import PageBuilder from optimus.utils import initialize def builder_interface(settings, views): """ Build all enabled pages from given views module. Arguments: settings (optimus.conf.model.SettingsModel): Settings object which defines everything required for building. views (object): Module which defines page views to build, in fact the module object require only a ``PAGES`` attribute that is a list of Page view. Returns: dict: A dictionnary with initialized builder (``builder`` item), asset manager (``assets_env`` item) and the list of builded pages (``builded`` item). """ # Initialize required structure according to settings initialize(settings) # Init asset manager assets_env = register_assets(settings) # Init page builder builder = PageBuilder(settings, assets_env=assets_env) # Proceed to page building from registered pages builded = builder.build_bulk(views.PAGES) return { "assets_env": assets_env, "builded": builded, "builder": builder, }
from django.urls import path from . import views app_name='menu' urlpatterns = [ path("",views.menuPage,name='menu'), path("logout",views.logoutPage,name='logout') ]
import cv2 import os import argparse # References: https://blog.csdn.net/bryant_meng/article/details/110079285 # Check test_video.sh in the main directory # Step1: Run video_to_frame to convert low light video to images # Step2: Run test.py to convert low light images to enhanced images # Step3: Run image_to_video to convert enhanced images to enhanced videos def parse_args(): parser = argparse.ArgumentParser(description="Video_Demo") parser.add_argument('--video_path', type=str, default='demo/Movie/Ari.mp4') parser.add_argument("--image_lowlight_folder", type=str, default='data/test_data/Frames/%d.jpg') parser.add_argument('--image_folder', type=str, default='data/test_output/Frames/') parser.add_argument('--save_path', type=str, default='demo/Movie/Res.mp4') parser.add_argument('--choice', type=str, required=True, choices = ['V2I', 'I2V'], default='V2I') args = parser.parse_args() return args def cal_frame(args): video_cap = cv2.VideoCapture(args.video_path) frame_count = 0 while True: ret, frame = video_cap.read() if ret is False: break frame_count = frame_count + 1 print(frame_count) def cal_fps(args): video = cv2.VideoCapture(args.video_path) fps = video.get(cv2.CAP_PROP_FPS) # print("Frames per second using video.get(cv2.CAP_PROP_FPS) : {0}".format(fps)) video.release() return fps def video_to_frame(args): vidcap = cv2.VideoCapture(args.video_path) # TODO: replace with url like youtube link success, image = vidcap.read() count = 0 while success: cv2.imwrite(args.image_lowlight_folder % count, image) success, image = vidcap.read() print('Read a new frame: ', success) count += 1 print("We have %2d images" % count) def image_to_video(args): img = cv2.imread(args.image_folder + '0.jpg') fps = cal_fps(args) size = (img.shape[1], img.shape[0]) print(size) fourcc = cv2.VideoWriter_fourcc(*"mp4v") # For mp4 only videoWrite = cv2.VideoWriter(args.save_path, fourcc, fps, size) files = os.listdir(args.image_folder) out_num = len(files) for i in range(0, out_num): fileName = args.image_folder + str(i) + '.jpg' img = cv2.imread(fileName) videoWrite.write(img) def main(args): if args.choice == 'V2I': video_to_frame(args) elif args.choice == 'I2V': image_to_video(args) else: raise TypeError if __name__ == "__main__": args = parse_args() main(args)
from cs50 import SQL from flask import Flask, flash, redirect, render_template, request, session, url_for from flask_session import Session from passlib.apps import custom_app_context as pwd_context from tempfile import mkdtemp from passlib.context import CryptContext from helpers import * import helpers # configure application app = Flask(__name__) # ensure responses aren't cached if app.config["DEBUG"]: @app.after_request def after_request(response): response.headers["Cache-Control"] = "no-cache, no-store, must-revalidate" response.headers["Expires"] = 0 response.headers["Pragma"] = "no-cache" return response # custom filter app.jinja_env.filters["usd"] = usd # configure session to use filesystem (instead of signed cookies) app.config["SESSION_FILE_DIR"] = mkdtemp() app.config["SESSION_PERMANENT"] = False app.config["SESSION_TYPE"] = "filesystem" Session(app) # configure CS50 Library to use SQLite database db = SQL("sqlite:///finance.db") @app.route("/") @login_required def index(): return render_template("index.html") @app.route("/regs") def regs(): rows = db.execute("SELECT * from users") return render_template("registrants.html", registrants=rows) @app.route("/unregister", methods=["GET", "POST"]) def unregister(): if request.method == "GET": rows = db.execute("SELECT * from users") return render_template("unregister.html", registrants=rows) elif request.method == "POST": if request.form["id"]: id=request.form.get("id") db.execute("DELETE FROM users WHERE id=:id;", id=id) return redirect(url_for("regs")) @app.route("/play") @login_required def play(): """Show history of transactions.""" return render_template("play.html") @app.route("/leaderboard") @login_required def play2(): """Show history of transactions.""" return render_template("play2.html") @app.route("/login", methods=["GET", "POST"]) def login(): """Log user in.""" # forget any user_id session.clear() # if user reached route via POST (as by submitting a form via POST) if request.method == "POST": # ensure username was submitted if not request.form.get("username"): return apology("must provide username") # ensure password was submitted elif not request.form.get("password"): return apology("must provide password") # query database for username rows = db.execute("SELECT * FROM users WHERE username = :username", username=request.form.get("username")) # ensure username exists and password is correct if len(rows) != 1 or not pwd_context.verify(request.form.get("password"), rows[0]["hash"]): return apology("invalid username and/or password") # query database for username db.execute("SELECT * FROM users WHERE username = :username", username=request.form.get("username")) # remember which user has logged in session["user_id"] = rows[0]["id"] flash('Welcome back!') # redirect user to home page return redirect(url_for("index")) # else if user reached route via GET (as by clicking a link or via redirect) else: return render_template("login.html") @app.route("/logout") def logout(): """Log user out.""" # forget any user_id session.clear() # redirect user to login form return redirect(url_for("login")) @app.route("/register", methods=["GET", "POST"]) def register(): # forget any user_id session.clear() # if user reached route via POST (as by submitting a form via POST) if request.method == "POST": # ensure username was submitted if not request.form.get("username"): return apology("must provide username") # ensure password was submitted elif not request.form.get("password"): return apology("must provide password") # ensure password was submitted elif not request.form.get("password2"): return apology("must provide password") # ensure password was submitted if request.form.get("password") != request.form.get("password2"): return apology("passwords should be the same!") # query database for username rows = db.execute("SELECT * FROM users WHERE username = :username", username=request.form.get("username")) # ensure username exists and password is correct if len(rows) == 1: return apology("username exists") # ensure doesn't exist if len(rows) != 1: #encrypt pass and save them to db encrypted=pwd_context.encrypt(request.form.get("password")) db.execute("INSERT INTO users (username, hash) VALUES(:username, :hash)",username=request.form.get("username"),hash=encrypted) # query database for username rows = db.execute("SELECT * FROM users WHERE username = :username", username=request.form.get("username")) # remember which user has logged in session["user_id"] = rows[0]["id"] # redirect user to home page return redirect(url_for("index")) # else if user reached route via GET (as by clicking a link or via redirect) else: return render_template("register.html") @app.route("/change", methods=["GET", "POST"]) @login_required def change(): #return apology("TODO") id = session["user_id"] # if user reached route via POST (as by submitting a form via POST) if request.method == "POST": # ensure password was submitted if not request.form.get("password"): return apology("must provide the old password") # query database for username rows = db.execute("SELECT * FROM users WHERE id = :id", id=id) # ensure username exists and password is correct if len(rows) != 1 or not pwd_context.verify(request.form.get('password'), rows[0]['hash']): return apology("old password invalid") # ensure password2 was submitted elif not request.form.get("password2"): return apology("must provide the new password") encrypted2=pwd_context.encrypt(request.form.get("password2")) db.execute("UPDATE users SET hash=:hashes WHERE id=:id",id=id, hashes=encrypted2) return redirect(url_for('logout')) # else if user reached route via GET (as by clicking a link or via redirect) else: return render_template("change.html") @app.route("/uchange", methods=["GET", "POST"]) @login_required def uchange(): #return apology("TODO") id = session["user_id"] if request.method == "POST": # ensure password was submitted if not request.form.get("name"): return apology("must provide the old name") # query database for username rows = db.execute("SELECT * FROM users WHERE id = :id", id=id) # ensure username exists and password is correct if len(rows) != 1 or not request.form.get('name') == rows[0]['username']: return apology("old username invalid") # ensure password2 was submitted elif not request.form.get("name2"): return apology("must provide the new username") # query database for username rowss = db.execute("SELECT * FROM users WHERE username = :username", username=request.form.get("name2")) # ensure username exists and password is correct if len(rowss) == 1: return apology("username already taken") else: db.execute("UPDATE users SET username=:username WHERE id=:id",id=id, username=request.form.get('name2')) return redirect(url_for('logout')) # else if user reached route via GET (as by clicking a link or via redirect) else: return render_template("uchange.html")
from django.core.management.base import BaseCommand from ...utils import get_user_model class Command(BaseCommand): help = "Sync customer data" def handle(self, *args, **options): User = get_user_model() qs = User.objects.exclude(customer__isnull=True) count = 0 total = qs.count() for user in qs: count += 1 perc = int(round(100 * (float(count) / float(total)))) __username = '' if hasattr(user, 'username'): __username = user.username elif hasattr(user, 'email'): __username = user.email print("[{0}/{1} {2}%] Syncing {3} [{4}]".format( count, total, perc, __username, user.pk )) customer = user.customer cu = customer.stripe_customer customer.sync(cu=cu) customer.sync_current_subscription(cu=cu) customer.sync_invoices(cu=cu) customer.sync_charges(cu=cu)
#!/usr/bin/python import os os.system('geany')
from __future__ import print_function from potentiostat import Potentiostat import sys import time if len(sys.argv) > 1: port = sys.argv[1] else: port = '/dev/ttyACM0' num_sample = 10 sleep_dt = 1.0 dev = Potentiostat(port) dev.set_volt_range('5V') dev.set_curr_range('100uA') dev.set_volt(0.0) volt_list = [] curr_list = [] for i in range(num_sample): if i < num_sample/2: volt = -3.0 else: volt = 3.0 dev.set_volt(volt) curr = dev.get_curr() volt_list.append(volt) curr_list.append(curr) print('({0}/{1}) volt: {2}, curr: {3}'.format(i+1, num_sample, volt,curr)) time.sleep(sleep_dt) print() print('volt_list: ', volt_list) print('curr_list: ', curr_list)
import time import logging import cfg import sensorlogger import logentry import batteryManager import circularlist #import actor abstract import absactor class Actor(absactor.Actor): def __init__(self): self.logger = logging.getLogger("PB.actor.real") self.logger.info("Starting up") self.batteryManagerObj = batteryManager.BatteryManager() self.batteryManagerObj.startThreads() self.sensorLogger = sensorlogger.Logger() self.keepRunning = True self.batteryCur = False self.batteryMax = False self.currentBuf = circularlist.CircularList(3) def run(self): try: while self.keepRunning: currentIn, currentOut, voltage, lux = self.batteryManagerObj.getReadings() if lux < cfg.cfg["actor.real.luxThreshold"]: if currentOut > cfg.cfg["actor.real.currentOutThreshold"]: if self.getSoC() < 1.0: rStatus = self.batteryManagerObj.relay.getStatus(cfg.cfg["actor.real.relay.charge"]) if rStatus[1] > cfg.cfg["actor.real.relay.chargeTimeout"]: self.batteryManagerObj.relay.disable(cfg.cfg["actor.real.relay.charge"]) else: self.batteryManagerObj.relay.enable(cfg.cfg["actor.real.relay.charge"]) if currentIn < cfg.cfg["actor.real.currentInThreshold"]: self.batteryMax = self.batteryCur self.currentBuf.addElement(currentIn-currentOut) self.batteryCur += self.currentBuf.sRule(cfg.cfg["actor.real.interval"]) relays = repr(self.batteryManagerObj.relay.status) logEntry = logentry.Entry(currentInReading=currentIn, currentOutReading=currentOut, voltageReading=voltage, luxReading=lux, SoCalc=self.getSoC(), ampSeconds=self.batteryCur, relayStatus=relays) self.sensorLogger.recordEntry(logEntry) time.sleep(cfg.cfg["actor.real.interval"]) except KeyboardInterrupt: self.batteryManagerObj.shutdown() self.sensorLogger.fileObj.flush() if "sensorlogger.upload.connDetails" in cfg.cfg: self.sensorLogger.uploadFile(self.sensorLogger.logFileName) def getSoC(self): if self.batteryCur and self.batteryMax: return self.batteryCur/self.batteryMax else: return False
import os import traceback from time import time import click from site_speaker.speech.CrtAdapter import CrtAdapter from site_speaker.utils.export import export from site_speaker.utils.files import get_all_files_with_extension, get_base_filename from site_speaker.utils.parsing import get_posts from site_speaker.utils.queries import query from site_speaker.utils.string import stringify_number @click.group() def main(): pass @main.command() @click.argument('url', type=str) @click.option('--output-path', '-o', type=str) def read(url: str, output_path: str): page = query(url, as_html=True) posts = get_posts(html=page, class_name='post__text') export(output_path=output_path, posts=posts) @main.command() @click.argument('url_pattern', type=str) @click.option('--n_pages', '-n', default=None, type=int) @click.option('--output-path', '-o', type=str) def read_many(url_pattern: str, n_pages: int, output_path: str): posts = [] i = 0 n_new_posts = None try: while (n_new_posts is None or n_new_posts > 0) and (n_pages is None or i < n_pages): start = time() page = query(url_pattern.format(i=i), as_html=True) new_posts = get_posts(html=page, class_name='post__text') n_new_posts = len(new_posts) print(f'Handled {stringify_number(i + 1)} page in {time() - start:.3f} seconds (fetched {n_new_posts} new posts)') if n_new_posts == 0: break posts.extend(new_posts) i += 1 except Exception: print(f'Oops, an exception occurred:') print(traceback.format_exc()) export(output_path=output_path, posts=posts) @main.command() @click.option('--input-path', '-i', type=str) @click.option('--output-path', '-o', type=str) def tts(input_path: str, output_path: str): adapter = CrtAdapter() adapter.generate_audio(input_file_path=input_path, output_file_path=output_path) @main.command() @click.option('--input-path', '-i', type=str) @click.option('--src-extension', '-s', default='txt', type=str) @click.option('--output-path', '-o', type=str) @click.option('--dst-extension', '-d', default='mp3', type=str) def tts_many(input_path: str, output_path: str, src_extension: str, dst_extension: str): os.makedirs(output_path, exist_ok=True) adapter = CrtAdapter() files = get_all_files_with_extension(input_path, src_extension) n_files = len(files) for i, input_file_path in enumerate(sorted(files)): base_input_filename = get_base_filename(input_file_path) output_file_path = os.path.join(output_path, f'{base_input_filename}.{dst_extension}') adapter.generate_audio(input_file_path=input_file_path, output_file_path=output_file_path) print(f'Handled {i + 1} / {n_files} files') if __name__ == '__main__': main()
# Code listing #8 def rms(varray=[]): """ RMS velocity """ squares = map(lambda x: x*x, varray) return pow(sum(squares), 0.5) def rms(varray=[]): """ Root mean squared velocity. Returns square root of sum of squares of velocities """ squares = map(lambda x: x*x, varray) return pow(sum(squares), 0.5)
from flask import render_template, Blueprint, request, redirect, url_for from flask_login import login_required, current_user from project.dataset.form import DatasetForm from project.models import Dataset, College from project import db dataset_blueprint = Blueprint( 'dataset', __name__, template_folder='templates' ) @dataset_blueprint.route('/new_data', methods=['GET', 'POST']) @login_required def newDataset(): user = current_user form = DatasetForm(request.form) if request.method == 'POST': if form.validate_on_submit(): dataset = Dataset() dataset.college_id = form.college.data.id dataset.accept_transfer = form.acceptTransfers.data dataset.year = form.year.data dataset.transfer_applicants = form.applied.data dataset.transfer_admitted = form.admitted.data dataset.transfer_enrolled = form.enrolled.data dataset.reference = form.reference.data db.session.add(dataset) db.session.commit() return redirect(url_for('home.home')) else: print(form.errors) return render_template('edit_dataset.html', user=user, form=form) @dataset_blueprint.route('/edit_dataset/<string:id>', methods=['GET', 'POST']) @login_required def editDataset(id): user = current_user form = DatasetForm(request.form) dataset = Dataset.query.filter_by(id=id).first() if request.method == 'GET': form.college.data = College.query.filter_by(id=dataset.college_id).first() form.acceptTransfers.data = dataset.accept_transfer form.year.data = dataset.year form.applied.data = dataset.transfer_applicants form.admitted.data = dataset.transfer_admitted form.enrolled.data = dataset.transfer_enrolled form.reference.data = dataset.reference form.totalEnrollment.data = dataset.total_enrollment form.minTransferGrade.data = dataset.min_transfer_grade form.maxCredits2Yr.data = dataset.max_credits_2yr form.maxCredits4Yr.data = dataset.max_credits_4yr if request.method == 'POST': if form.validate_on_submit(): #dataset.college_id = form.college.data.id dataset.accept_transfer = form.acceptTransfers.data dataset.year = form.year.data dataset.transfer_applicants = form.applied.data dataset.transfer_admitted = form.admitted.data dataset.transfer_enrolled = form.enrolled.data dataset.reference = form.reference.data dataset.total_enrollment = form.totalEnrollment.data dataset.min_transfer_grade = form.minTransferGrade.data dataset.max_credits_2yr = form.maxCredits2Yr.data dataset.max_credits_4yr = form.maxCredits4Yr.data db.session.commit() return redirect(url_for('home.home')) else: print(form.errors) return render_template('edit_dataset.html', user=user, form=form) @dataset_blueprint.route('/data/<string:id>') def viewDataset(id): user = current_user dataset = Dataset.query.filter_by(id=id).first() college = College.query.filter_by(id=dataset.college_id).first() return render_template('view_dataset.html', user=user, dataset=dataset, col=college)
"""Definition of a hook. Logger hooks are functions or callable classes that receive all the logging information that should be logged by the instance in any of the calls of the debug, info, warning, error, fatal or critical methods. Example: def hook_function(context: HookContext) -> NoReturn: if 'foo' in context.extra_data: del context.extra_data['foo'] logger.add_hook(hook_function) Example2: class HookClass: def __call__(self, context: HookContext) -> NoReturn: if 'bar' in context.extra_data: context.extra_data['bar'] = context.extra_data['foo'] logger.add_hook(HookClass()) """ from typing import Callable, NoReturn from elasticlogger.hooks.hook_context import HookContext Hook = Callable[[HookContext], NoReturn]
#!/usr/bin/python """ Copyright 2013 Jack Kelly (aka Daniel) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. """ from __future__ import print_function, division import unittest import slicedpy.utils as utils import pandas as pd class TestUtils(unittest.TestCase): def test_find_nearest(self): N = 24 idx = pd.date_range('2013-01-01', periods=N, freq='H') series = pd.Series(None, index=idx) for i in range(N): nearest = utils.find_nearest(series, idx[i]) self.assertEqual(nearest, i) idx_ten_mins = pd.date_range('2013-01-01 00:10', periods=N, freq='H') for i in range(N): nearest = utils.find_nearest(series, idx_ten_mins[i]) self.assertEqual(nearest, i) idx_fifty_mins = pd.date_range('2013-01-01 00:50', periods=N, freq='H') for i in range(N-1): nearest = utils.find_nearest(series, idx_fifty_mins[i]) self.assertEqual(nearest, i+1) nearest = utils.find_nearest(series, idx_fifty_mins[-1]) self.assertEqual(nearest, N-1) # create events of duration = 50 mins so we can test align='end' dicts = [] for i in range(N): dicts.append({'end':idx_fifty_mins[i]}) df = pd.DataFrame(dicts, index=idx) for i in range(N): nearest = utils.find_nearest(df, idx_fifty_mins[i], align='end') self.assertEqual(nearest, i) for i in range(0,N): nearest = utils.find_nearest(df, idx[i], align='end') self.assertEqual(nearest, i-1 if i > 0 else 0) if __name__ == '__main__': unittest.main()
import numpy as np import os try: import netCDF4 as netCDF except: import netCDF3 as netCDF import matplotlib.pyplot as plt import time import datetime as dt from matplotlib.dates import date2num, num2date import pyroms import pyroms_toolbox from pyroms import _remapping class nctime(object): pass def remap(src_varname, src_file, src_grd, dst_grd, dst_file, dmax=0, cdepth=0, kk=0, dst_dir='./'): # ARCTIC4 grid sub-sample # xrange=src_grd.xrange; yrange=src_grd.yrange ystart=235 # get time nctime.long_name = 'time' nctime.units = 'days since 1900-01-01 00:00:00' # create IC/CLM file print 'Creating ROMS file', dst_file if os.path.exists(dst_file) is True: os.remove(dst_file) pyroms_toolbox.nc_create_roms_file(dst_file, dst_grd, nctime) # open IC file nc = netCDF.Dataset(dst_file, 'a', format='NETCDF3_64BIT') #load var cdf = netCDF.Dataset(src_file) src_var = cdf.variables[src_varname] tmp = cdf.variables['time'][:] if len(tmp) > 1: print 'error : multiple frames in input file' ; exit() else: time = tmp[0] # we need to correct the time axis ref_soda = dt.datetime(1980,1,1,0,0) ref_roms = dt.datetime(1900,1,1,0,0) ndays = (ref_soda - ref_roms).days time = time + ndays #get missing value spval = src_var.missing_value # determine variable dimension ndim = len(src_var.dimensions) - 1 # ARCTIC4 grid sub-sample if ndim == 3: # src_var = src_var[0,:, yrange[0]:yrange[1]+1, xrange[0]:xrange[1]+1] print 'subgrid 3d', src_var.shape src_var = np.squeeze(src_var, axis=(0,)) src_var = src_var[:,np.r_[ystart:np.size(src_var,1),-1],:] print 'subgrid 3d', src_var.shape elif ndim == 2: # src_var = src_var[0,yrange[0]:yrange[1]+1, xrange[0]:xrange[1]+1] print 'subgrid 2d', src_var.shape src_var = np.squeeze(src_var, axis=(0,)) src_var = src_var[np.r_[ystart:np.size(src_var,0),-1],:] print 'subgrid 2d', src_var.shape vartime = 'ocean_time' if src_varname == 'ssh': Bpos = 't' Cpos = 'rho' z = src_grd.z_t Mp, Lp = dst_grd.hgrid.mask_rho.shape wts_file = 'remap_weights_' + src_grd.name + '_to_' + dst_grd.name + '_bilinear_t_to_rho.nc' dst_varname = 'zeta' dimensions = ('ocean_time', 'eta_rho', 'xi_rho') long_name = 'free-surface' units = 'meter' field = 'zeta, scalar, series' elif src_varname == 'temp': src_var = src_var Bpos = 't' Cpos = 'rho' z = src_grd.z_t Mp, Lp = dst_grd.hgrid.mask_rho.shape wts_file = 'remap_weights_' + src_grd.name + '_to_' + dst_grd.name + '_bilinear_t_to_rho.nc' dst_varname = 'temp' dimensions = ('ocean_time', 's_rho', 'eta_rho', 'xi_rho') long_name = 'potential temperature' units = 'Celsius' field = 'temp, scalar, series' elif src_varname == 'salt': Bpos = 't' Cpos = 'rho' z = src_grd.z_t Mp, Lp = dst_grd.hgrid.mask_rho.shape wts_file = 'remap_weights_' + src_grd.name + '_to_' + dst_grd.name + '_bilinear_t_to_rho.nc' dst_varname = 'salt' dimensions = ('ocean_time', 's_rho', 'eta_rho', 'xi_rho') long_name = 'salinity' units = 'none' field = 'salt_north, scalar, series' else: raise ValueError, 'Undefined src_varname' if ndim == 3: # build intermediate zgrid zlevel = -z[::-1] nzlevel = len(zlevel) dst_zcoord = pyroms.vgrid.z_coordinate(dst_grd.vgrid.h, zlevel, nzlevel) dst_grdz = pyroms.grid.ROMS_Grid(dst_grd.name+'_Z', dst_grd.hgrid, dst_zcoord) # create variable in file print 'Creating variable', dst_varname nc.createVariable(dst_varname, 'f8', dimensions, fill_value=spval) nc.variables[dst_varname].long_name = long_name nc.variables[dst_varname].units = units nc.variables[dst_varname].field = field nc.variables[dst_varname].time = 'ocean_time' # remapping print 'remapping', dst_varname, 'from', src_grd.name, \ 'to', dst_grd.name if ndim == 3: # flood the grid print 'flood the grid' src_varz = pyroms_toolbox.BGrid_GFDL.flood(src_var, src_grd, Bpos=Bpos, spval=spval, \ dmax=dmax, cdepth=cdepth, kk=kk) else: src_varz = src_var # horizontal interpolation using scrip weights print 'horizontal interpolation using scrip weights' dst_varz = pyroms.remapping.remap(src_varz, wts_file, spval=spval) if ndim == 3: # vertical interpolation from standard z level to sigma print 'vertical interpolation from standard z level to sigma' dst_var= pyroms.remapping.z2roms(dst_varz[::-1, :, :], \ dst_grdz, dst_grd, Cpos=Cpos, spval=spval, \ flood=False, irange=(0,Lp), jrange=(0,Mp)) else: dst_var = dst_varz # write data in destination file print 'write data in destination file\n' nc.variables['ocean_time'][0] = time nc.variables[dst_varname][0] = np.squeeze(dst_var) # close file nc.close() cdf.close() if src_varname == 'ssh': return dst_varz
# -*- coding: utf-8 -*- from __future__ import absolute_import from __future__ import division from __future__ import print_function import csv import numpy as np import os import sys from observations.util import maybe_download_and_extract def ducks(path): """Behavioral and Plumage Characteristics of Hybrid Ducks The `ducks` data frame has 11 rows and 2 columns. Each row of the data frame represents a male duck who is a second generation cross of mallard and pintail ducks. For 11 such ducks a behavioural and plumage index were calculated. These were measured on scales devised for this experiment which was to examine whether there was any link between which species the ducks resembled physically and which they resembled in behaviour. The scale for the physical appearance ranged from 0 (identical in appearance to a mallard) to 20 (identical to a pintail). The behavioural traits of the ducks were on a scale from 0 to 15 with lower numbers indicating closer to mallard-like in behaviour. This data frame contains the following columns: `plumage` The index of physical appearance based on the plumage of individual ducks. `behaviour` The index of behavioural characteristics of the ducks. The data were obtained from Larsen, R.J. and Marx, M.L. (1986) *An Introduction to Mathematical Statistics and its Applications* (Second Edition). Prentice-Hall. Args: path: str. Path to directory which either stores file or otherwise file will be downloaded and extracted there. Filename is `ducks.csv`. Returns: Tuple of np.ndarray `x_train` with 11 rows and 2 columns and dictionary `metadata` of column headers (feature names). """ import pandas as pd path = os.path.expanduser(path) filename = 'ducks.csv' if not os.path.exists(os.path.join(path, filename)): url = 'http://dustintran.com/data/r/boot/ducks.csv' maybe_download_and_extract(path, url, save_file_name='ducks.csv', resume=False) data = pd.read_csv(os.path.join(path, filename), index_col=0, parse_dates=True) x_train = data.values metadata = {'columns': data.columns} return x_train, metadata
def bitIsSet( value, bit ): bitSet = value & (2 ** bit) return True if bitSet > 0 else False def chunks(lst, n): for i in range(0, len(lst), n): yield lst[i:i + n] def getRange(lst, start, length): return lst[start:start + length] def getNiceGlyphName(unicode): glyphNames = [ 'space', 'exclam', 'quotedbl', 'numbersign', 'dollar', 'percent', 'ampersand', 'quotesingle', 'parenleft', 'parenright', 'asterisk', 'plus', 'comma', 'hyphen', 'period', 'slash', 'zero', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine', 'colon', 'semicolon', 'less', 'equal', 'greater', 'question', 'at', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'bracketleft', 'backslash', 'bracketright', 'asciicircum', 'underscore', 'grave', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'braceleft', 'bar', 'braceright', 'asciitilde', 'DEL', 'uni0080', 'uni0081', 'uni0082', 'uni0083', 'uni0084', 'uni0085', 'uni0086', 'uni0087', 'uni0088', 'uni0089', 'uni008a', 'uni008b', 'uni008c', 'uni008d', 'uni008e', 'uni008f', 'uni0090', 'uni0091', 'uni0092', 'uni0093', 'uni0094', 'uni0095', 'uni0096', 'uni0097', 'uni0098', 'uni0099', 'uni009a', 'uni009b', 'uni009c', 'uni009d', 'uni009e', 'uni009f', 'nbspace', 'exclamdown', 'cent', 'sterling', 'currency', 'yen', 'brokenbar', 'section', 'dieresis', 'copyright', 'ordfeminine', 'guillemotleft', 'logicalnot', 'softhyphen', 'registered', 'macron', 'degree', 'plusminus', 'twosuperior', 'threesuperior', 'acute', 'micro', 'paragraph', 'periodcentered', 'cedilla', 'onesuperior', 'ordmasculine', 'guillemotright', 'onequarter', 'onehalf', 'threequarters', 'questiondown', 'Agrave', 'Aacute', 'Acircumflex', 'Atilde', 'Adieresis', 'Aring', 'AE', 'Ccedilla', 'Egrave', 'Eacute', 'Ecircumflex', 'Edieresis', 'Igrave', 'Iacute', 'Icircumflex', 'Idieresis', 'Eth', 'Ntilde', 'Ograve', 'Oacute', 'Ocircumflex', 'Otilde', 'Odieresis', 'multiply', 'Oslash', 'Ugrave', 'Uacute', 'Ucircumflex', 'Udieresis', 'Yacute', 'Thorn', 'germandbls', 'agrave', 'aacute', 'acircumflex', 'atilde', 'adieresis', 'aring', 'ae', 'ccedilla', 'egrave', 'eacute', 'ecircumflex', 'edieresis', 'igrave', 'iacute', 'icircumflex', 'idieresis', 'eth', 'ntilde', 'ograve', 'oacute', 'ocircumflex', 'otilde', 'odieresis', 'divide', 'oslash', 'ugrave', 'uacute', 'ucircumflex', 'udieresis', 'yacute', 'thorn', 'ydieresis' ] return glyphNames[unicode - 32]
from ..utils import Object class RemoveNotificationGroup(Object): """ Removes a group of active notifications. Needs to be called only if the notification group is removed by the current user Attributes: ID (:obj:`str`): ``RemoveNotificationGroup`` Args: notification_group_id (:obj:`int`): Notification group identifier max_notification_id (:obj:`int`): The maximum identifier of removed notifications Returns: Ok Raises: :class:`telegram.Error` """ ID = "removeNotificationGroup" def __init__(self, notification_group_id, max_notification_id, extra=None, **kwargs): self.extra = extra self.notification_group_id = notification_group_id # int self.max_notification_id = max_notification_id # int @staticmethod def read(q: dict, *args) -> "RemoveNotificationGroup": notification_group_id = q.get('notification_group_id') max_notification_id = q.get('max_notification_id') return RemoveNotificationGroup(notification_group_id, max_notification_id)
import json import math import random import webcolors from alive_progress import alive_bar import cairo def do_nothing(): """Do nothing. A dummy function to use in place of alive_bar.""" pass class CairoPainter: """ A class to interface with the Cairo library to draw the map for a given save file. """ def __init__(self, parent): """ :param parent: The SaveFileParser used to get useful information. :type parent: SaveFileParser. """ self.parent = parent self.player_colors = [ (200, 0, 0), (0, 0, 200), (100, 0, 0), (0, 0, 100), (0, 200, 200), (200, 0, 200), (200, 200, 0), (0, 100, 100), (100, 0, 100), (100, 100, 0), (200, 200, 200), (100, 100, 100), (50, 50, 50), (0, 0, 0), (0, 200, 0), (0, 100, 0), ] def log_message(self, message): """ Send a message to the logger. :param message: The message to log. :type message: string. """ self.parent.log_message(message) def load_rgb(self, rgb_name, default_value): """ Update the settings, given a config file path. :param rgb_name: The name to look up. :type rgb_name: string. :param default_value: A tuple of 3 ints for the RGB values. :type default_value: (integer, integer, integer). """ value = self.load_settings.get(rgb_name, default_value) if isinstance(value, str): if value in self.load_settings_rgb_values: return self.load_settings_rgb_values[value] try: return webcolors.name_to_rgb(value) except ValueError: return (0, 0, 0) return value def load_settings(self, file_path, tile_size): """ Update the settings, given a config file path. :param file_path: The path to the config file. :type file_path: string. :param tile_size: Override for tile size. :type tile_size: integer. """ with open("config/rgb_values.json") as file_handle: self.load_settings_rgb_values = json.load(file_handle) with open(file_path) as file_handle: self.load_settings = json.load(file_handle) self.ds = self.load_settings.get("ds", 25) self.ss = 2 * self.ds self.ocean_noise = self.load_settings.get("ocean_noise", 50) self.height_rgb_low = self.load_rgb("height_rgb_low", (255, 255, 255)) self.height_rgb_high = self.load_rgb("height_rgb_high", (200, 200, 200)) self.road_tile_rgb = self.load_rgb("road_tile_rgb", (100, 100, 100)) self.rail_rgb = self.load_rgb("rail_rgb", (255, 255, 255)) self.road_rgb = self.load_rgb("road_rgb", (255, 255, 255)) self.tram_rgb = self.load_rgb("tram_rgb", (255, 255, 255)) self.railway_rgb = self.load_rgb("railway_rgb", (100, 100, 100)) self.electrified_railway_rgb = self.load_rgb("electrified_railway_rgb", (200, 200, 200)) self.monorail_rgb = self.load_rgb("monorail_rgb", (150, 150, 150)) self.maglev_rgb = self.load_rgb("maglev_rgb", (100, 100, 100)) self.town_building_rgb = self.load_rgb("town_building_rgb", (255, 255, 255)) self.industry_rgb = self.load_rgb("industry_rgb", (255, 165, 0)) self.industry_edge_rgb = self.load_rgb("industry_edge_rgb", (0, 0, 0)) self.torb_rgb = self.load_rgb("torb_rgb", (150, 150, 150)) self.objects_rgb = self.load_rgb("objects_rgb", (150, 150, 150)) self.torb_edge_rgb = self.load_rgb("torb_edge_rgb", (0, 100, 100)) self.water_edge_rgb = self.load_rgb("water_edge_rgb", (0, 0, 255)) self.station_rgb = self.load_rgb("station_rgb", (255, 0, 255)) self.rail_station_rgb = self.load_rgb("rail_station_rgb", (255, 0, 255)) self.bus_station_rgb = self.load_rgb("bus_station_rgb", (255, 0, 255)) self.truck_station_rgb = self.load_rgb("truck_station_rgb", (255, 0, 255)) self.airport_rgb = self.load_rgb("airport_rgb", (255, 255, 0)) self.seaport_rgb = self.load_rgb("seaport_rgb", (0, 255, 255)) self.heliport_rgb = self.load_rgb("heliport_rgb", (255, 255, 0)) self.rail_depot_rgb = self.load_rgb("rail_depot_rgb", (0, 100, 100)) self.road_depot_rgb = self.load_rgb("road_depot_rgb", (0, 100, 100)) self.ship_depot_rgb = self.load_rgb("ship_depot_rgb", (0, 100, 100)) self.screen_mode = self.load_settings.get("screen_mode", "normal") self.player_colors = self.load_settings.get("player_colors", self.player_colors) self.reverse_track_rgb = self.load_settings.get("reverse_track_rgb", False) self.show_signals = self.load_settings.get("show_signals", True) self.show_roads = self.load_settings.get("show_roads", True) for index, rgb in enumerate(self.player_colors): if not isinstance(rgb, str): continue if rgb in self.load_settings_rgb_values: self.player_colors[index] = self.load_settings_rgb_values[rgb] else: try: self.player_colors[index] = webcolors.name_to_rgb(rgb) except ValueError: self.player_colors[index] = (0, 0, 0) if tile_size: self.ss = tile_size self.ds = (tile_size - 1) // 2 # Thicknesses of various elements. self.rail_width = self.ds / 3 self.road_width = self.ds / 2 self.tram_width = self.ds / 5 self.bridge_edge_width = self.ss / 10 self.edge_width = int(0.1 * self.ss) if self.edge_width % 2 == 0: self.edge_width += 1 def set_rgb(self, rgb): """ Set the RGB for the context. :param rgb: The fill color, expressed as a tuple in the range (0-255, 0-255, 0-255). :type rgb: (integer, integer, integer). """ ctx = self.context (rgb_r, rgb_g, rgb_b) = rgb ctx.set_source_rgb(rgb_r / 255, rgb_g / 255, rgb_b / 255) def set_rgba(self, rgba): """ Set the RGBA for the context. :param rgba: The fill color, expressed as a tuple in the range (0-255, 0-255, 0-255, 0-1). :type rgba: (integer, integer, integer, integer). """ ctx = self.context (rgba_r, rgba_g, rgba_b, rgba_a) = rgba ctx.set_source_rgba(rgba_r / 255, rgba_g / 255, rgba_b / 255, rgba_a) def draw_line(self, x1, y1, x2, y2, rgb, width, round_cap=True): """ Draw a line on the context. :param x1: The x coordinate of the top left corner. :type x1: float :param y1: The y coordinate of the top left corner. :type y1: float :param x2: The x coordinate of the bottom right corner. :type x2: float :param y2: The y coordinate of the bottom right corner. :type y2: float :param rgb: The fill color, expressed as a tuple in the range (0-255, 0-255, 0-255). :type rgb: (integer, integer, integer). :param width: The width of the line. :type width: float :param round_cap: If True, set the line cap to round. Defaults to False. :type round_cap: Boolean """ ctx = self.context ctx.save() self.set_rgb(rgb) ctx.set_line_width(width) if round_cap: ctx.set_line_cap(cairo.LINE_CAP_ROUND) ctx.move_to(x1, y1) ctx.line_to(x2, y2) ctx.stroke() ctx.restore() def draw_rectangle(self, x, y, w, h, rgb_fill, rgb_stroke=None): """ Fill a rectangle on the context. :param x: The x coordinate of the top left corner. :type x: float :param y: The y coordinate of the top left corner. :type y: float :param w: The width of the rectangle. :type w: float :param h: The height of the rectangle. :type h: float :param rgb_fill: The fill color, expressed as a tuple in the range (0-255, 0-255, 0-255). :type rgb_fill: (integer, integer, integer). :param rgb_stroke: The stroke color, expressed as a tuple in the range (0-255, 0-255, 0-255). :type rgb_stroke: (integer, integer, integer). """ ctx = self.context ctx.save() self.set_rgb(rgb_fill) ctx.rectangle(x, y, w, h) ctx.fill() if rgb_stroke is not None: self.set_rgb(rgb_stroke) ctx.rectangle(x, y, w, h) ctx.stroke() ctx.restore() def draw_rectangle_rgba(self, x, y, w, h, rgba): """ Fill a rectangle on the context. :param x: The x coordinate of the top left corner. :type x: float :param y: The y coordinate of the top left corner. :type y: float :param w: The width of the rectangle. :type w: float :param h: The height of the rectangle. :type h: float :param rgba: The fill color, expressed as a tuple in the range (0-255, 0-255, 0-255, 0-1). :type rgba: (integer, integer, integer, integer). """ ctx = self.context ctx.save() self.set_rgba(rgba) ctx.rectangle(x, y, w, h) ctx.fill() ctx.restore() def cxy_from_rc(self, row, col): """ Get the centre of a tile, given its row and column. :param row: The row of the tile. :type row: integer :param col: The column of the tile. :type col: integer :return: The coordinates of the centre of the tile, a tuple of floats. :rtype: (float, float) """ x = (self.parent.ncols - col - 1.0 - 0.5) * self.ss y = (row - 0.5) * self.ss cx = int(x + 0.5 * self.ss) cy = int(y + 0.5 * self.ss) return cx, cy def xy_from_tile(self, tile): """ Get the top left corner of a tile. :param tile: The tile to consider. :type tile: TileObject :return: The coordinates of the centre of the tile, a tuple of floats. :rtype: (float, float) """ x = int((self.parent.ncols - tile.col - 1 - 0.5) * self.ss) y = int((tile.row - 0.5) * self.ss) return x, y def cxy_from_tile(self, tile): """ Get the centre of a tile. :param tile: The tile to consider. :type tile: TileObject :return: The coordinates of the centre of the tile, a tuple of floats. :rtype: (float, float) """ return self.cxy_from_rc(tile.row, tile.col) def transform_to_tile(self, tile, rotation): """ Transform the context to a given tile, with a rotation. :param tile: The tile to consider. :type tile: TileObject :param rotation: The direction of the triangle, in the range 0, 3. :type rotation: integer """ ctx = self.context ctx.save() cx, cy = self.cxy_from_tile(tile) ctx.translate(cx + 0.5, cy + 0.5) ctx.rotate(0.5 * math.pi * rotation) def end_transform_to_tile(self): """Restore the context. This should be called after transform_to_tile.""" self.context.restore() def draw_square(self, tile, rgb_fill, rgb_stroke=None): """ Draw a square for a given tile. :param tile: The tile to consider. :type tile: TileObject :param rgb: The fill color, expressed as a tuple in the range (0-255, 0-255, 0-255). :type rgb: (integer, integer, integer). :param rgb_stroke: The stroke color, expressed as a tuple in the range (0-255, 0-255, 0-255). Default is None. :type rgb_stroke: (integer, integer, integer). """ x, y = self.xy_from_tile(tile) w = self.ss h = self.ss if rgb_stroke is None: rgb_stroke = rgb_fill self.draw_rectangle(x, y, w, h, rgb_fill, rgb_stroke=rgb_stroke) def draw_rail_background(self, tile): """ Draw the background for a given tile that contains railway track. :param tile: The tile to consider. :type tile: TileObject """ if self.screen_mode == "martin": return rgb = self.player_colors[tile.owner] self.draw_square(tile, rgb) def draw_rail_line(self, x1, y1, x2, y2, track_type, line_mode="outer", round_cap=False, owner=0): """ Draw a line for a railway track. :param x1: The x coordinate of the start of the line. :type x1: float :param y1: The y coordinate of the start of the line. :type y1: float :param x2: The x coordinate of the end of the line. :type x2: float :param y2: The y coordinate of the end of the line. :type y2: float :param track_type: The type of track (railway, electrified railway, monorail, maglev). :type track_type: integer :param line_mode: Whether to draw the outer or inner line for the payload. Default is False. :type line_mode: Boolean :param round_cap: If True, set the line cap to round. Defaults to False. :type round_cap: Boolean :param owner: The index of the owner. Defaults to 0. :type owner: Integer """ do_draw_inner = line_mode in ["inner", "both"] do_draw_outer = line_mode in ["outer", "both"] outer_rgbs = [ self.railway_rgb, self.electrified_railway_rgb, self.monorail_rgb, self.maglev_rgb ] outer_rgb = outer_rgbs[track_type] if owner is None: inner_rgb = self.rail_rgb else: inner_rgb = self.player_colors[owner] if self.reverse_track_rgb: outer_rgb = inner_rgb inner_rgb = outer_rgbs[track_type] if do_draw_outer: rgb = outer_rgb self.draw_line( x1, y1, x2, y2, rgb, 2.5 * self.rail_width, round_cap ) if do_draw_inner: rgb = inner_rgb self.draw_line(x1, y1, x2, y2, rgb, self.rail_width, round_cap) def draw_rail_XY(self, tile, rotation, line_mode="outer"): """ Draw a railway track in the X or Y direction for a given tile. :param tile: The tile to consider. :type tile: TileObject :param rotation: The direction of the railway track, in the range 0, 1. :type rotation: integer :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean, Default is False. """ track_type = tile.occupant.track_type self.transform_to_tile(tile, rotation) self.draw_rail_line( -0.5 * self.ss, 0, 0.5 * self.ss, 0, track_type, line_mode=line_mode, round_cap=False, owner=tile.owner ) self.end_transform_to_tile() def draw_rail_NSEW(self, tile, rotation, line_mode="outer"): """ Draw a railway track in the N, S, E or W direction for a given tile. :param tile: The tile to consider. :type tile: TileObject :param rotation: The direction of the railway track, in the range 0, 3. :type rotation: integer :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean Default is False. """ track_type = tile.occupant.track_type self.transform_to_tile(tile, rotation) self.draw_rail_line( 0, 0.5 * self.ss, 0.5 * self.ss, 0, track_type, line_mode=line_mode, round_cap=True, owner=tile.owner ) self.end_transform_to_tile() def draw_rail_X(self, tile, line_mode="outer"): """ Draw a railway track in the X direction for a given tile. :param tile: The tile to consider. :type tile: TileObject :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean Default is False. """ self.draw_rail_XY(tile, 0, line_mode=line_mode) def draw_rail_Y(self, tile, line_mode="outer"): """ Draw a railway track in the Y direction for a given tile. :param tile: The tile to consider. :type tile: TileObject :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean Default is False. """ self.draw_rail_XY(tile, 1, line_mode=line_mode) def draw_rail_N(self, tile, line_mode="outer"): """ Draw a railway track in the N direction for a given tile. :param tile: The tile to consider. :type tile: TileObject :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean Default is False. """ self.draw_rail_NSEW(tile, 3, line_mode=line_mode) def draw_rail_W(self, tile, line_mode="outer"): """ Draw a railway track in the W direction for a given tile. :param tile: The tile to consider. :type tile: TileObject :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean Default is False. """ self.draw_rail_NSEW(tile, 2, line_mode=line_mode) def draw_rail_S(self, tile, line_mode="outer"): """ Draw a railway track in the S direction for a given tile. :param tile: The tile to consider. :type tile: TileObject :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean Default is False. """ self.draw_rail_NSEW(tile, 1, line_mode=line_mode) def draw_rail_E(self, tile, line_mode="outer"): """ Draw a railway track in the E direction for a given tile. :param tile: The tile to consider. :type tile: TileObject :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean Default is False. """ self.draw_rail_NSEW(tile, 0, line_mode=line_mode) def draw_rail_depot(self, tile, rotation): """ Draw a railway depot for a given tile. :param tile: The tile to consider. :type tile: TileObject :param rotation: The direction of the depot entrance, in the range 0, 3. :type rotation: integer """ track_type = tile.occupant.track_type ss = self.ss self.transform_to_tile(tile, rotation) self.draw_rail_line( -0.2 * ss, 0, 0.5 * ss, 0, track_type, line_mode="both", round_cap=False, owner=tile.owner ) self.draw_line(-0.2 * ss, 0.3 * ss, -0.2 * ss, -0.3 * ss, self.rail_rgb, 0.2 * ss) self.end_transform_to_tile() def draw_signal(self, cx, cy, signal_era, signal_type): """ Draw a railway signal for a given tile. :param cx: The x position of the signal. :type cx: float :param cy: The y position of the signal. :type cy: float :param signal_era: The era of the signal (0 for semaphone, 1 for electric). :type signal_era: integer :param signal_type: The type of the signal. :type signal_type: integer """ ctx = self.context r = 0.1 * self.ss lw = 0.025 * self.ss stroke_rgb = (0, 0, 0) fill_rgbs = [ (255, 255, 255), # Block signal. (255, 255, 0), # Pre signal. (100, 100, 100), # Exit signal. (255, 255, 0), # Combo signal. (255, 0, 0), # Path signal. (255, 255, 255), # One way path signal. ] self.set_rgb(fill_rgbs[signal_type]) if signal_era == 0: ctx.arc(cx, cy, r, 0, 2 * math.pi) else: ctx.rectangle(cx - r, cy - r, 2 * r, 2 * r) ctx.fill() if signal_type == 5: # One way path signal. self.set_rgb((255, 0, 0)) ctx.move_to(cx - r, cy) ctx.line_to(cx + r, cy) ctx.set_line_width(0.75 * r) ctx.stroke() elif signal_type == 3: # Combo signal. self.set_rgb((100, 100, 100)) ctx.move_to(cx, cy - r) ctx.line_to(cx, cy + r) ctx.set_line_width(0.75 * r) ctx.stroke() self.set_rgb(stroke_rgb) ctx.set_line_width(lw) if signal_era == 0: ctx.arc(cx, cy, r, 0, 2 * math.pi) else: ctx.rectangle(cx - r, cy - r, 2 * r, 2 * r) ctx.stroke() def draw_rail_signals_tile(self, tile, rotation): """ Draw a railway signals for a given tile. :param tile: The tile to consider. :type tile: TileObject :param rotation: The direction of the depot entrance, in the range 0, 3. :type rotation: integer """ ss = self.ss d1 = 0.1 * ss d2 = 0.2 * ss d3 = 0.4 * ss rail = tile.occupant s01e = rail.signal_01_era s23e = rail.signal_23_era s01t = rail.signal_01_type s23t = rail.signal_23_type self.transform_to_tile(tile, rotation) if rail.track_X: if rail.signal_2_present: self.draw_signal(d3, -d2, s23e, s23t) if rail.signal_3_present: self.draw_signal(-d3, d2, s23e, s23t) if rail.track_Y: if rail.signal_2_present: self.draw_signal(d2, d3, s23e, s23t) if rail.signal_3_present: self.draw_signal(-d2, -d3, s23e, s23t) if rail.track_W: if rail.signal_2_present: self.draw_signal(-d3, -d3, s23e, s23t) if rail.signal_3_present: self.draw_signal(-d1, -d1, s23e, s23t) if rail.track_E: if rail.signal_0_present: self.draw_signal(d1, d1, s01e, s01t) if rail.signal_1_present: self.draw_signal(d3, d3, s01e, s01t) if rail.track_N: if rail.signal_2_present: self.draw_signal(d3, -d3, s23e, s23t) if rail.signal_3_present: self.draw_signal(d1, -d1, s23e, s23t) if rail.track_S: if rail.signal_0_present: self.draw_signal(-d1, d1, s01e, s01t) if rail.signal_1_present: self.draw_signal(-d3, d3, s01e, s01t) self.end_transform_to_tile() def draw_bridge_ramp(self, tile, rotation, payload): """ Draw a bridge ramp for a given tile. :param tile: The tile to consider. :type tile: TileObject :param rotation: The direction of the bridge ramp, in the range 0, 3. :type rotation: integer :param payload: The payload of the bridge. It should be one of 'rail', 'road'. :type payload: string. """ bec = self.torb_edge_rgb bew = self.bridge_edge_width d = self.ss bd = 0.25 * d self.transform_to_tile(tile, rotation) self.draw_line(-0.25 * d, -bd, 0.5 * d, -bd, bec, bew) self.draw_line(-0.25 * d, bd, 0.5 * d, bd, bec, bew) if payload == "road": self.draw_road_line(-0.5 * d, 0, 0.5 * d, 0, line_mode="both", owner=tile.owner) if tile.occupant.tram_type == 1: self.draw_tram_line(-0.5 * d, 0, 0.5 * d, 0, owner=tile.owner_tram) else: track_type = tile.occupant.track_type self.draw_rail_line( -0.5 * d, 0, 0.5 * d, 0, track_type, line_mode="both", owner=tile.owner ) self.end_transform_to_tile() def draw_bridge_over(self, tile, rotation, payload, track_type, has_tram, source_tile_owner): """ Draw a bridge over a given tile. :param tile: The tile to consider. :type tile: TileObject :param rotation: The direction of the bridge, in the range 0, 1. :type rotation: integer :param payload: The payload of the bridge. It should be one of 'rail', 'road'. :type payload: string. :param has_tram: Whether the payload contains a tram. :type has_tram: Boolean """ bec = self.torb_edge_rgb bew = self.bridge_edge_width d = self.ss bd = 0.25 * d self.transform_to_tile(tile, rotation) self.draw_line(-0.5 * d, -bd, 0.5 * d, -bd, bec, bew) self.draw_line(-0.5 * d, bd, 0.5 * d, bd, bec, bew) if payload == "road": self.draw_road_line( -0.5 * d, 0, 0.5 * d, 0, line_mode="both", owner=source_tile_owner ) if has_tram: self.draw_tram_line(-0.5 * d, 0, 0.5 * d, 0, owner=source_tile_owner) else: self.draw_rail_line( -0.5 * d, 0, 0.5 * d, 0, track_type, line_mode="both", owner=source_tile_owner ) self.end_transform_to_tile() def draw_tunnel_mouth(self, tile, rotation, payload): """ Draw a tunnel mouth for a given tile. :param tile: The tile to consider. :type tile: TileObject :param rotation: The direction of the tunnel mouth, in the range 0, 3. :type rotation: integer :param payload: The payload of the tunnel. It should be one of 'rail', 'road'. :type payload: string. """ bec = self.torb_edge_rgb bew = self.bridge_edge_width d = self.ss self.transform_to_tile(tile, rotation) if payload == "road": self.draw_road_line(-0.5 * d, 0, 0.25 * d, 0, line_mode="both") else: track_type = tile.occupant.track_type self.draw_rail_line( -0.5 * d, 0, 0.25 * d, 0, track_type, line_mode="both", owner=tile.owner ) bd = 0.3 * d self.draw_line(0.25 * d, -bd, 0.25 * d, bd, bec, bew) self.draw_line(0.25 * d, -bd, 0, -bd, bec, bew) self.draw_line(0.25 * d, bd, 0, bd, bec, bew) self.end_transform_to_tile() def draw_rail_bridge_ramp(self, tile, rotation): """ Draw a rail bridge ramp for a given tile. :param tile: The tile to consider. :type tile: TileObject :param rotation: The direction of the rail bridge ramp, in the range 0, 3. :type rotation: integer """ self.draw_bridge_ramp(tile, rotation, "rail") def draw_rail_bridge_over(self, tile, rotation, track_type, source_tile_owner): """ Draw a rail bridge over a given tile. :param tile: The tile to consider. :type tile: TileObject :param rotation: The direction of the rail bridge, in the range 0, 1. :type rotation: integer """ self.draw_bridge_over(tile, rotation, "rail", track_type, None, source_tile_owner) def draw_rail_tunnel_mouth(self, tile, rotation): """ Draw a rail tunnel mouth for a given tile. :param tile: The tile to consider. :type tile: TileObject :param rotation: The direction of the tunnel mouth, in the range 0, 3. :type rotation: integer """ self.draw_tunnel_mouth(tile, rotation, "rail") def draw_road_line(self, x1, y1, x2, y2, line_mode="outer", round_cap=False, owner=None): """ Draw a line for a road. :param x1: The x coordinate of the start of the line. :type x1: float :param y1: The y coordinate of the start of the line. :type y1: float :param x2: The x coordinate of the end of the line. :type x2: float :param y2: The y coordinate of the end of the line. :type y2: float :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean Default is "outer". :param round_cap: If True, set the line cap to round. Defaults to False. :type round_cap: Boolean :param owner: Owner of the road. Defaults to None. :type owner: Boolean """ rw1 = 1.75 * self.road_width rw2 = 1.25 * self.road_width do_draw_inner = line_mode in ["inner", "both"] do_draw_outer = line_mode in ["outer", "both"] rgb = self.road_tile_rgb if owner is not None: rgb = self.player_colors[owner] if do_draw_outer: self.draw_line(x1, y1, x2, y2, rgb, rw1, round_cap) if do_draw_inner: self.draw_line(x1, y1, x2, y2, self.road_rgb, rw2, round_cap) def draw_tram_line(self, x1, y1, x2, y2, line_mode="outer", round_cap=False, owner=None): """ Draw a line for a road. :param x1: The x coordinate of the start of the line. :type x1: float :param y1: The y coordinate of the start of the line. :type y1: float :param x2: The x coordinate of the end of the line. :type x2: float :param y2: The y coordinate of the end of the line. :type y2: float :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean Default is "outer". :param round_cap: If True, set the line cap to round. Defaults to False. :type round_cap: Boolean :param owner: Owner of the road. Defaults to None. :type owner: Boolean """ tw = self.tram_width rgb = self.tram_rgb if owner is not None: rgb = self.player_colors[owner] if self.screen_mode == "martin": rgb = self.tram_rgb self.draw_line(x1, y1, x2, y2, rgb, tw, round_cap) def draw_road_NSEW(self, tile, rotation, line_mode, round_cap): """ Draw a road for a given tile. :param tile: The tile to consider. :type tile: TileObject :param rotation: The direction of the road, in the range 0, 3. :type rotation: integer :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean Default is "outer". :param round_cap: If True, set the line cap to round. Defaults to False. :type round_cap: Boolean """ self.transform_to_tile(tile, rotation) self.draw_road_line(0, 0.5 * self.ss, 0, 0, line_mode=line_mode, round_cap=False, owner=tile.owner) self.end_transform_to_tile() def draw_road_NE(self, tile, line_mode): """ Draw a road in the NE direction for a given tile. :param tile: The tile to consider. :type tile: TileObject :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean Default is "outer". """ self.draw_road_NSEW(tile, 3, line_mode=line_mode, round_cap=False) def draw_road_NW(self, tile, line_mode): """ Draw a road in the NW direction for a given tile. :param tile: The tile to consider. :type tile: TileObject :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean Default is "outer". """ self.draw_road_NSEW(tile, 2, line_mode=line_mode, round_cap=False) def draw_road_SE(self, tile, line_mode): """ Draw a road in the SE direction for a given tile. :param tile: The tile to consider. :type tile: TileObject :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean Default is "outer". """ self.draw_road_NSEW(tile, 0, line_mode=line_mode, round_cap=False) def draw_road_SW(self, tile, line_mode): """ Draw a road in the SW direction for a given tile. :param tile: The tile to consider. :type tile: TileObject :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean Default is "outer". """ self.draw_road_NSEW(tile, 1, line_mode=line_mode, round_cap=False) def draw_road_through(self, tile, line_mode, rotation): """ Draw a road that goes across a given tile in the NE-SW direction. :param tile: The tile to consider. :type tile: TileObject :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean :param rotation: The direction of the road. Should be in the range [0, 1]. :type rotation: integer """ d = 0.5 * self.ss self.transform_to_tile(tile, rotation) self.draw_road_line(0, -d, 0, d, line_mode=line_mode, round_cap=False, owner=tile.owner) self.end_transform_to_tile() def draw_road_NE_to_SW(self, tile, line_mode): """ Draw a road that goes across a given tile in the NE-SW direction. :param tile: The tile to consider. :type tile: TileObject :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean Default is "outer". """ self.draw_road_through(tile, line_mode, 1) def draw_road_NW_to_SE(self, tile, line_mode): """ Draw a road that goes across a given tile in the NE-SW direction. :param tile: The tile to consider. :type tile: TileObject :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean Default is "outer". """ self.draw_road_through(tile, line_mode, 0) def draw_tram_NSEW(self, tile, rotation, line_mode, round_cap): """ Draw a tram for a given tile. :param tile: The tile to consider. :type tile: TileObject :param rotation: The direction of the road, in the range 0, 3. :type rotation: integer :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean Default is "outer". :param round_cap: If True, set the line cap to round. Defaults to False. :type round_cap: Boolean """ self.transform_to_tile(tile, rotation) self.draw_tram_line(0, 0.5 * self.ss, 0, 0, line_mode=line_mode, round_cap=True, owner=tile.owner_tram) self.end_transform_to_tile() def draw_tram_NE(self, tile, line_mode): """ Draw a road in the NE direction for a given tile. :param tile: The tile to consider. :type tile: TileObject :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean Default is "outer". """ self.draw_tram_NSEW(tile, 3, line_mode=line_mode, round_cap=False) def draw_tram_NW(self, tile, line_mode): """ Draw a road in the NW direction for a given tile. :param tile: The tile to consider. :type tile: TileObject :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean Default is "outer". """ self.draw_tram_NSEW(tile, 2, line_mode=line_mode, round_cap=False) def draw_tram_SE(self, tile, line_mode): """ Draw a road in the SE direction for a given tile. :param tile: The tile to consider. :type tile: TileObject :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean Default is "outer". """ self.draw_tram_NSEW(tile, 0, line_mode=line_mode, round_cap=False) def draw_tram_SW(self, tile, line_mode): """ Draw a road in the SW direction for a given tile. :param tile: The tile to consider. :type tile: TileObject :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean Default is "outer". """ self.draw_tram_NSEW(tile, 1, line_mode=line_mode, round_cap=False) def draw_road_depot(self, tile, rotation, line_mode): """ Draw a road depot for a given tile. :param tile: The tile to consider. :type tile: TileObject :param rotation: The direction of the depot, in the range 0, 3. :type rotation: integer """ ss = self.ss if line_mode == "outer": self.draw_square(tile, self.road_depot_rgb, rgb_stroke=self.player_colors[tile.owner]) self.transform_to_tile(tile, rotation) self.draw_road_line(0, 0, 0, 0, line_mode=line_mode, round_cap=True, owner=tile.owner) self.draw_road_line(0, 0, 0.5 * ss, 0, round_cap=False, line_mode=line_mode, owner=tile.owner) if tile.occupant.tram_type == 1: self.draw_tram_line(0, 0, 0.5 * ss, 0, round_cap=True, line_mode="outer", owner=tile.owner) self.end_transform_to_tile() def draw_road_bridge_ramp(self, tile, rotation): """ Draw a road bridge ramp for a given tile. :param tile: The tile to consider. :type tile: TileObject :param rotation: The direction of the triangle, in the range 0, 1. :type rotation: integer """ self.draw_bridge_ramp(tile, rotation, "road") def draw_road_bridge_over(self, tile, rotation, has_tram, source_tile_owner): """ Draw a road bridge over a given tile. :param tile: The tile to consider. :type tile: TileObject :param rotation: The direction of the bridge, in the range 0, 1. :type rotation: integer """ self.draw_bridge_over(tile, rotation, "road", None, has_tram, source_tile_owner) def draw_road_tunnel_mouth(self, tile, rotation): """ Draw a road tunnel mouth for a given tile. :param tile: The tile to consider. :type tile: TileObject :param rotation: The direction of the tunnel mouth, in the range 0, 3. :type rotation: integer """ self.draw_tunnel_mouth(tile, rotation, "road") def draw_level_crossing(self, tile, rotation): """ Draw a level crossing for a given tile. :param tile: The tile to consider. :type tile: TileObject :param rotation: The direction of the level crossing, in the range 0, 1. :type rotation: integer """ if rotation == 0: self.draw_road_NE_to_SW(tile, line_mode="both") if tile.owner_tram: self.draw_tram_NE(tile, line_mode="both") self.draw_tram_SW(tile, line_mode="both") self.draw_rail_Y(tile, line_mode="both") else: self.draw_road_NW_to_SE(tile, line_mode="both") if tile.owner_tram: self.draw_tram_NW(tile, line_mode="both") self.draw_tram_SE(tile, line_mode="both") self.draw_rail_X(tile, line_mode="both") def seek_bridge_ramp(self, tiles, row, col, rotation): """ Recursively step through tiles to find a bridge ramp, and return the bridge ramp tile. :param tiles: The list of all TileObjects in the map. :type tiles: list of TileObject. :param row: The row of the current tile. :type row: integer :param col: The col of the current tile. :type col: integer :param rotation: The direction of the bridge, in the range 0, 1. :type rotation: integer :return: The TileObject to the NE of the given tile. :rtype: TileObject """ if rotation == 0: drow = 0 dcol = 1 else: drow = 1 dcol = 0 while True: index = self.parent.ncols * row + col try: tile = tiles[index] except IndexError: return None if tile.kind == 9: return tile row += drow col += dcol def draw_unknown_bridge_over(self, tiles, tile, rotation, line_mode="outer"): """ Draw a bridge over a tile when we we don't know what the payload of the bridge is. :param tiles: The list of all TileObjects in the map. :type tiles: list of TileObject. :param tile: The current tile. :type tile: integer :param rotation: The direction of the bridge, in the range 0, 1. :type rotation: integer :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean Default is False. """ source_tile = self.seek_bridge_ramp(tiles, tile.row, tile.col, rotation) payload_kind = 0 track_type = 0 has_tram = False source_tile_owner = None if source_tile: payload_kind = source_tile.occupant.payload_kind source_tile_owner = source_tile.owner if payload_kind == 0: track_type = source_tile.occupant.track_type if source_tile.occupant.tram_type == 1: has_tram = True if payload_kind == 0: self.draw_rail_bridge_over(tile, rotation, track_type, source_tile_owner) elif payload_kind == 1: self.draw_road_bridge_over(tile, rotation, has_tram, source_tile_owner) def draw_tile_edge(self, tile, rotation, owner): """ Draw the edge of a tile. :param tile: The current tile. :type tile: integer :param rotation: The direction of the edge, in the range [0, 7]. :type rotation: integer :param owner: The owner index. Can be None. :type owner: integer """ d = self.ds + 0.5 ew = self.edge_width dew = (ew - 1) // 2 rgb = self.industry_edge_rgb if owner == "water": rgb = self.water_edge_rgb elif owner is not None: rgb = self.player_colors[owner] self.transform_to_tile(tile, rotation) if rotation == 0: self.draw_rectangle(-d, -d - dew, self.ss, ew, rgb) elif rotation < 4: self.draw_rectangle(-d, -d, self.ss, ew, rgb) elif rotation == 4: self.draw_rectangle(-d, -d - dew, ew, ew, rgb) elif rotation == 5: self.draw_rectangle(-d - dew, -d, ew, ew, rgb) else: self.draw_rectangle(-d, -d, ew, ew, rgb) self.end_transform_to_tile() def draw_industry_edge(self, tile, rotation): """ Draw the edge of an industry tile. :param tile: The current tile. :type tile: integer :param rotation: The direction of the edge, in the range [0, 7]. :type rotation: integer """ self.draw_tile_edge(tile, rotation, None) def draw_station_edge(self, tile, rotation): """ Draw the edge of a station tile. :param tile: The current tile. :type tile: integer :param rotation: The direction of the edge, in the range [0, 7]. :type rotation: integer """ self.draw_tile_edge(tile, rotation, tile.owner) def draw_water_edge(self, tile, rotation): """ Draw the edge of a water tile. :param tile: The current tile. :type tile: integer :param rotation: The direction of the edge, in the range [0, 7]. :type rotation: integer """ self.draw_tile_edge(tile, rotation, "water") def draw_industry_edges(self, tile, tiles): """ Draw all the edges of an industry tile. :param tile: The current tile. :type tile: integer :param tiles: The list of all TileObjects in the map. :type tiles: list of TileObject. """ industry_id = tile.occupant.industry_id for direction in range(8): other_tile = self.parent.tile_grid.get_tile_dir(tile, direction) if not other_tile: continue is_same_industry = other_tile.kind == 8 and other_tile.occupant.industry_id == industry_id if is_same_industry: continue self.draw_industry_edge(tile, direction) def draw_station_edges(self, tile, tiles): """ Draw all the edges of a station tile. :param tile: The current tile. :type tile: integer :param tiles: The list of all TileObjects in the map. :type tiles: list of TileObject. """ station_id = tile.occupant.station_id for direction in range(8): other_tile = self.parent.tile_grid.get_tile_dir(tile, direction) if not other_tile: continue is_same_station = other_tile.kind == 5 and other_tile.occupant.station_id == station_id if is_same_station: continue self.draw_station_edge(tile, direction) def draw_water_edges(self, tile, tiles): """ Draw all the edges of a water tile. :param tile: The current tile. :type tile: integer :param tiles: The list of all TileObjects in the map. :type tiles: list of TileObject. """ for direction in range(8): other_tile = self.parent.tile_grid.get_tile_dir(tile, direction) if not other_tile: continue if other_tile.kind == 6: continue self.draw_water_edge(tile, direction) def make_industry_shapes(self, industry_tiles): """ Return a list of shapes for all the industries on the map, one shape per industry. :param industry_tiles: The list of all TileObjects in the map that contains an industry. :type industry_tiles: list of TileObject. :return: A list of list of TileObjects, one list per industry. :rtype: list of lists of TileObjects """ industry_shapes_dict = {} for industry_tile in industry_tiles: industry_shapes_dict[industry_tile.occupant.industry_id] = [] for industry_tile in industry_tiles: industry_shapes_dict[industry_tile.occupant.industry_id].append(industry_tile) industry_shapes_list = [] for industry_id in industry_shapes_dict: industry_shapes_list.append(industry_shapes_dict[industry_id]) return industry_shapes_list def make_station_shapes(self, station_tiles): """ Return a list of shapes for all the stations on the map, one shape per station. :param station_tiles: The list of all TileObjects in the map that contains a station. :type station_tiles: list of TileObject. :return: A list of list of TileObjects, one list per station. :rtype: list of lists of TileObjects """ station_shapes_dict = {} for station_tile in station_tiles: station_shapes_dict[station_tile.occupant.station_id] = [] for station_tile in station_tiles: station_shapes_dict[station_tile.occupant.station_id].append(station_tile) station_shapes_list = [] for station_id in station_shapes_dict: station_shapes_list.append(station_shapes_dict[station_id]) return station_shapes_list def draw_tile_backgrounds(self, tiles): """ Draw the background squares for all the tiles. :param tiles: The list of all TileObjects in the map. :type tiles: list of TileObject. """ def process_tile(tile): h = tile.height h_index = (h - self.parent.min_height) / (self.parent.max_height - self.parent.min_height) rgb_rand_1 = random.randint(0, self.ocean_noise) height_rgb = [0, 0, 0] height_rgb[0] = self.height_rgb_low[0] + h_index * (self.height_rgb_high[0] - self.height_rgb_low[0]) height_rgb[1] = self.height_rgb_low[1] + h_index * (self.height_rgb_high[1] - self.height_rgb_low[1]) height_rgb[2] = self.height_rgb_low[2] + h_index * (self.height_rgb_high[2] - self.height_rgb_low[2]) water_rgb = (rgb_rand_1, rgb_rand_1, 255) if self.screen_mode == "dark": water_rgb = (rgb_rand_1 // 2, rgb_rand_1 // 2, 150) if self.screen_mode == "martin": water_rgb = (195 + rgb_rand_1 * 0.5, 234 + rgb_rand_1 * 0.5, 251) fillColors = [ height_rgb, # Ground height_rgb, # Rail self.road_tile_rgb, # Road height_rgb, # Town building height_rgb, # Trees self.station_rgb, # Stations water_rgb, # Water height_rgb, # Void self.industry_rgb, # Industries self.torb_rgb, # Tunnel/bridge height_rgb, # Objects ] fillColor = fillColors[tile.kind % len(fillColors)] if tile.kind == 1: rail = tile.occupant if rail.is_depot: fillColor = self.rail_depot_rgb if tile.kind == 5: station = tile.occupant if station.station_type == 0: fillColor = self.rail_station_rgb if station.station_type == 1: fillColor = self.airport_rgb if station.station_type == 2: fillColor = self.bus_station_rgb if station.station_type == 3: fillColor = self.truck_station_rgb if station.station_type == 4: fillColor = self.heliport_rgb if station.station_type == 5: fillColor = self.seaport_rgb self.draw_square(tile, fillColor) if tile.kind == 1: rail = tile.occupant if not rail.is_depot: self.draw_rail_background(tile) if self.parent.show_progress_bar: with alive_bar(len(tiles)) as abar: for tile in tiles: process_tile(tile) abar() else: for tile in tiles: process_tile(tile) def draw_rail_tile_lines(self, tiles, line_mode): """ Draw the rail lines. :param tiles: The list of rail TileObjects in the map. :type tiles: list of TileObject. :param line_mode: Whether to draw the outer or inner line for the rail. :type line_mode: Boolean """ def process_tile(tile, line_mode): rail = tile.occupant if rail.is_depot: self.draw_rail_depot(tile, rail.depot_direction) else: if rail.track_X: self.draw_rail_X(tile, line_mode=line_mode) if rail.track_Y: self.draw_rail_Y(tile, line_mode=line_mode) if rail.track_N: self.draw_rail_N(tile, line_mode=line_mode) if rail.track_S: self.draw_rail_S(tile, line_mode=line_mode) if rail.track_W: self.draw_rail_W(tile, line_mode=line_mode) if rail.track_E: self.draw_rail_E(tile, line_mode=line_mode) if self.parent.show_progress_bar: with alive_bar(len(tiles)) as abar: for tile in tiles: process_tile(tile, line_mode) abar() else: for tile in tiles: process_tile(tile, line_mode) def draw_rail_signals(self, tiles): """ Draw the rail lines. :param tiles: The list of rail TileObjects in the map. :type tiles: list of TileObject. """ def process_tile(tile): self.draw_rail_signals_tile(tile, rotation=0) tiles = [t for t in tiles if t.occupant.has_signals] if self.parent.show_progress_bar: with alive_bar(len(tiles)) as abar: for tile in tiles: process_tile(tile) abar() else: for tile in tiles: process_tile(tile) def draw_road_tile_lines(self, tiles, line_mode): """ Draw the road lines. :param tiles: The list of road TileObjects in the map. :type tiles: list of TileObject. """ def process_tile(tile, line_mode): road = tile.occupant if road.is_depot: self.draw_road_depot(tile, road.depot_direction, line_mode=line_mode) elif road.is_level_crossing: self.draw_level_crossing(tile, road.level_crossing_direction) else: has_stub = False if road.road_NW and not road.road_SE: has_stub = True if road.road_SW and not road.road_NE: has_stub = True if road.road_SE and not road.road_NW: has_stub = True if road.road_NE and not road.road_SW: has_stub = True if has_stub: self.transform_to_tile(tile, 0) self.draw_road_line(0, 0, 0, 0, line_mode=line_mode, round_cap=True, owner=tile.owner) self.end_transform_to_tile() if road.road_NW and not road.road_SE: self.draw_road_NW(tile, line_mode) if road.road_SW and not road.road_NE: self.draw_road_SW(tile, line_mode) if road.road_SE and not road.road_NW: self.draw_road_SE(tile, line_mode) if road.road_NE and not road.road_SW: self.draw_road_NE(tile, line_mode) if road.road_NW and road.road_SE: self.draw_road_NW_to_SE(tile, line_mode) if road.road_SW and road.road_NE: self.draw_road_NE_to_SW(tile, line_mode) if self.parent.show_progress_bar: with alive_bar(len(tiles)) as abar: for tile in tiles: process_tile(tile, line_mode) abar() else: for tile in tiles: process_tile(tile, line_mode) def draw_tram_tile_lines(self, tiles, line_mode): """ Draw the tram lines. :param tiles: The list of road TileObjects in the map. :type tiles: list of TileObject. """ def process_tile(tiles, line_mode): road = tile.occupant if road.is_depot: return elif road.is_level_crossing: return else: if road.tram_NW: self.draw_tram_NW(tile, line_mode) if road.tram_SW: self.draw_tram_SW(tile, line_mode) if road.tram_SE: self.draw_tram_SE(tile, line_mode) if road.tram_NE: self.draw_tram_NE(tile, line_mode) if self.parent.show_progress_bar: with alive_bar(len(tiles)) as abar: for tile in tiles: process_tile(tile, line_mode) abar() else: for tile in tiles: process_tile(tile, line_mode) def draw_stations_with_lines(self, tiles, all_tiles, line_mode="both"): """ Draw the stations with lines. :param tiles: The list of stations TileObjects in the map. :type tiles: list of TileObject. :param all_tiles: The list of all TileObjects in the map. :type tiles: list of TileObject. :param line_mode: Whether to draw the outer or inner line for the payload. :type line_mode: Boolean """ def process_tile(tile, all_tiles, line_mode): station = tile.occupant self.draw_station_edges(tile, all_tiles) if station.station_type == 0: if station.track_direction == 0: self.draw_rail_X(tile, line_mode="both") else: self.draw_rail_Y(tile, line_mode="both") elif station.station_type in [2, 3]: has_stub = False if station.road_NW and not station.road_SE: has_stub = True if station.road_SW and not station.road_NE: has_stub = True if station.road_SE and not station.road_NW: has_stub = True if station.road_NE and not station.road_SW: has_stub = True if has_stub: self.transform_to_tile(tile, 0) self.draw_road_line(0, 0, 0, 0, line_mode=line_mode, round_cap=True, owner=tile.owner) self.end_transform_to_tile() if station.road_NW and not station.road_SE: self.draw_road_NW(tile, line_mode="both") if station.road_SW and not station.road_NE: self.draw_road_SW(tile, line_mode="both") if station.road_SE and not station.road_NW: self.draw_road_SE(tile, line_mode="both") if station.road_NE and not station.road_SW: self.draw_road_NE(tile, line_mode="both") if station.road_NW and station.road_SE: self.draw_road_NW_to_SE(tile, line_mode="both") if station.road_SW and station.road_NE: self.draw_road_NE_to_SW(tile, line_mode="both") if station.station_type == 7: if station.track_direction == 0: self.draw_rail_X(tile, line_mode="inner") else: self.draw_rail_Y(tile, line_mode="inner") # Draw tram lines last, to make sure they fit over the roads. def process_tile_tram(tile, all_tiles): station = tile.occupant if station.station_type in [2, 3]: if tile.occupant.tram_type == 1: if station.road_NW: self.draw_tram_NW(tile, line_mode="both") if station.road_SW: self.draw_tram_SW(tile, line_mode="both") if station.road_SE: self.draw_tram_SE(tile, line_mode="both") if station.road_NE: self.draw_tram_NE(tile, line_mode="both") if self.parent.show_progress_bar: with alive_bar(len(tiles)) as abar: for tile in tiles: process_tile(tile, all_tiles, line_mode) abar() else: for tile in tiles: process_tile(tile, all_tiles, line_mode) if self.parent.show_progress_bar: with alive_bar(len(tiles)) as abar: for tile in tiles: process_tile_tram(tile, all_tiles) abar() else: for tile in tiles: process_tile_tram(tile, all_tiles) def draw_tunnel_mouths_and_bridge_ramps(self, tiles): """ Draw the tunnel mouths and bridge ramps. :param tiles: The list of tunnel or bridge TileObjects in the map. :type tiles: list of TileObject. """ def process_tile(tile): torb = tile.occupant if torb.is_tunnel: if torb.payload_kind == 0: self.draw_rail_tunnel_mouth(tile, torb.entrance_direction) elif torb.payload_kind == 1: self.draw_road_tunnel_mouth(tile, torb.entrance_direction) else: if torb.payload_kind == 0: self.draw_rail_bridge_ramp(tile, torb.entrance_direction) elif torb.payload_kind == 1: self.draw_road_bridge_ramp(tile, torb.entrance_direction) if self.parent.show_progress_bar: with alive_bar(len(tiles)) as abar: for tile in tiles: process_tile(tile) abar() else: for tile in tiles: process_tile(tile) def draw_bridges_over(self, tiles): """ Draw the bridges over tiles, where they exist. :param tiles: The list of all TileObjects in the map. :type tiles: list of TileObject. """ def process_tile(tile): if not tile.bridge: return self.draw_unknown_bridge_over(tiles, tile, tile.bridge - 1) if self.parent.show_progress_bar: with alive_bar(len(tiles)) as abar: for tile in tiles: process_tile(tile) abar() else: for tile in tiles: process_tile(tile) def draw_industry_tiles(self, tiles, all_tiles): """ Draw the industry tiles. :param tiles: The list of industry TileObjects in the map. :type tiles: list of TileObject. :param all_tiles: The list of all TileObjects in the map. :type all_tiles: list of TileObject. """ def process_tile(tile, all_tiles): self.draw_industry_edges(tile, all_tiles) if self.parent.show_progress_bar: with alive_bar(len(tiles)) as abar: for tile in tiles: process_tile(tile, all_tiles) abar() else: for tile in tiles: process_tile(tile, all_tiles) def draw_water_tiles(self, tiles, all_tiles): """ Draw the water tiles. :param tiles: The list of water TileObjects in the map. :type tiles: list of TileObject. :param all_tiles: The list of all TileObjects in the map. :type all_tiles: list of TileObject. """ def process_tile(tile, all_tiles): self.draw_water_edges(tile, all_tiles) if self.parent.show_progress_bar: with alive_bar(len(tiles)) as abar: for tile in tiles: process_tile(tile, all_tiles) abar() else: for tile in tiles: process_tile(tile, all_tiles) def draw_building_tiles(self, tiles): """ Draw the industry tiles. :param tiles: The list of building TileObjects in the map. :type tiles: list of TileObject. """ def process_tile(tile): d = 0.3 * self.ss self.transform_to_tile(tile, 0) self.draw_rectangle(-d, -d, 2 * d, 2 * d, self.town_building_rgb) self.end_transform_to_tile() if self.parent.show_progress_bar: with alive_bar(len(tiles)) as abar: for tile in tiles: process_tile(tile) abar() else: for tile in tiles: process_tile(tile) def draw_label(self, text, font_size, cx, cy): """ Draw a label. :param text: The text of the label. :type text: string. :param font_size: The font size of the label. :type font_size: float. :param cx: The centre x value of the label. :type cx: float. :param cy: The centre y value of the label. :type cy: float. """ context = self.context context.select_font_face( "Arial", cairo.FONT_SLANT_NORMAL, cairo.FONT_WEIGHT_NORMAL ) context.set_font_size(font_size) (tx, ty, tw, th, tdx, tdy) = context.text_extents(text) padding = 0.1 * self.ss x = cx - tw / 2 - padding y = cy - th / 2 - padding self.draw_rectangle_rgba(x, y, tw + 2 * padding, th + 2 * padding, (255, 255, 255, 0.5)) context.set_source_rgb(0, 0, 0) context.move_to(cx - tw / 2, cy + 0.25 * font_size) context.show_text(text) def draw_industry_labels(self): """Draw the industry labels.""" for shape in self.industry_shapes: ave_row = sum([t.row for t in shape]) / len(shape) ave_col = sum([t.col for t in shape]) / len(shape) cx, cy = self.cxy_from_rc(ave_row, ave_col) font_size = 0.5 * self.ss context = self.context context.save() label = shape[0].occupant.industry_type label = label.replace("_", " ") label = label.lower().capitalize() self.draw_label(label, font_size, cx, cy) context.restore() def draw_station_labels(self): """Draw the station labels.""" for shape in self.station_shapes: ave_row = sum([t.row for t in shape]) / len(shape) ave_col = sum([t.col for t in shape]) / len(shape) cx, cy = self.cxy_from_rc(ave_row, ave_col) font_size = 0.5 * self.ss context = self.context context.save() label = "Station" label = label.replace("_", " ") label = label.lower().capitalize() self.draw_label(label, font_size, cx, cy) context.restore() def save_image(self, image_file_path, filetype="PNG"): """ Save the image to file. :param image_file_path: The path to the file, excluding the extension. :type image_file_path: string. :param filetype: The filetype to the image. Defaults to 'PNG'. :type filetype: string. :return: A list of list of TileObjects, one list per industry. :rtype: list of lists of TileObjects """ iw = self.ss * (self.parent.ncols - 1) ih = self.ss * (self.parent.nrows - 1) logline = f"Dimensions of tile size, image before resizing: {self.ss}, {iw} x {ih}" self.log_message(logline) max_dimension = max(iw, ih) if max_dimension > 32767: rho = 32767 / max_dimension self.ss = int(rho * self.ss) self.ds = int(rho * self.ds) iw = self.ss * (self.parent.ncols - 1) ih = self.ss * (self.parent.nrows - 1) logline = f"Dimensions of tile size, image after resizing : {self.ss}, {iw} x {ih}" self.log_message(logline) if filetype == "PNG": self.image = cairo.ImageSurface(cairo.FORMAT_ARGB32, iw, ih) elif filetype == "SVG": self.image = cairo.SVGSurface(f"{image_file_path}", iw, ih) self.context = cairo.Context(self.image) all_tiles = self.parent.tiles rail_tiles = [t for t in all_tiles if t.kind == 1] road_tiles = [t for t in all_tiles if t.kind == 2] building_tiles = [t for t in all_tiles if t.kind == 3] stations_tiles = [t for t in all_tiles if t.kind == 5] water_tiles = [t for t in all_tiles if t.kind == 6] industry_tiles = [t for t in all_tiles if t.kind == 8] torb_tiles = [t for t in all_tiles if t.kind == 9] self.industry_shapes = self.make_industry_shapes(industry_tiles) self.station_shapes = self.make_station_shapes(stations_tiles) self.log_message("Drawing tile backgrounds.") self.draw_tile_backgrounds(all_tiles) self.log_message("Drawing road tiles.") self.draw_road_tile_lines(road_tiles, line_mode="outer") if self.show_roads: self.log_message("Drawing rail tiles.") self.draw_rail_tile_lines(rail_tiles, line_mode="outer") self.log_message("Drawing station tiles.") self.draw_stations_with_lines(stations_tiles, all_tiles) self.log_message("Drawing tunnel mouth and bridge ramp tiles.") self.draw_tunnel_mouths_and_bridge_ramps(torb_tiles) self.log_message("Drawing building tiles.") self.draw_building_tiles(building_tiles) self.log_message("Drawing industry tiles.") self.draw_industry_tiles(industry_tiles, all_tiles) self.log_message("Drawing water tiles.") self.draw_water_tiles(water_tiles, all_tiles) if self.show_roads: self.log_message("Drawing road tiles.") self.draw_road_tile_lines(road_tiles, line_mode="inner") self.log_message("Drawing tram tiles.") self.draw_tram_tile_lines(road_tiles, line_mode="inner") self.log_message("Drawing rail tiles.") self.draw_rail_tile_lines(rail_tiles, line_mode="inner") if self.show_signals: self.log_message("Drawing rail signals.") self.draw_rail_signals(rail_tiles) self.log_message("Drawing bridges over tiles.") self.draw_bridges_over(all_tiles) self.log_message("Drawing industry labels.") self.draw_industry_labels() # Station names don't work yet. I hope to add them in the future. # self.log_message("Drawing station labels.") # self.draw_station_labels() if filetype == "PNG": self.log_message("Writing PNG file to disk.") image_file_path = image_file_path.replace(".sav", ".png") self.image.write_to_png(image_file_path) self.log_message("All done!")
from abstractplayer import * from element import * from baseclass import * __all__ = ['QAlgorithm', 'QPlayer', 'HumanPlayer'] class QAlgorithm(BaseQ): def __init__(self, alpha, gamma, reward, tie, penalty): self.qmap = ValueMap() self.alpha = Value(alpha) self.gamma = Value(gamma) self.feedback = { GameStatus.Victory: Value(reward), GameStatus.Tie: Value(tie), GameStatus.Lose: Value(penalty) } def setValue(self, pair: BasePair, value: BaseValue): assert isinstance(pair, BasePair) assert isinstance(value, BaseValue) self.qmap[pair] = value def getValue(self, pair: BasePair): assert isinstance(pair, BasePair) return self.qmap[pair] def getAction(self, state: BaseState): assert isinstance(state, BaseState) availPairs = self.getAvailPairs(state) maxPair = max(availPairs, key=self.getValue) _ , action = maxPair return action def update(self, his: BaseHistory, gs: GameStatus): assert isinstance(his, BaseHistory) assert isinstance(gs , GameStatus) assert gs is not GameStatus.InProgress post = self.feedback[gs] / self.gamma while his: pair = his.pop() prev = self.getValue(pair) new = (Value(1.0) - self.alpha) * prev + self.alpha * ( self.gamma * post) self.setValue(pair, new) post = new @staticmethod def getAvailPairs(state: BaseState) -> BasePair: assert isinstance(state, BaseState) r = len(state) c = len(state[0]) rec = Record(state) allActs = (Location(i,j) for i in range(r) for j in range(c)) availPairs = (Pair(rec, act) for act in allActs if state[act] == 0) return availPairs class QPlayer(ComputerPlayer): def __init__(self, index: int, alg: BaseAlgorithm): self.index = Index(index) self.alg = alg self.his = History() @staticmethod def convert(state: BaseState): assert isinstance(state, BaseState) return Record(state) def decide(self, state: BaseState): assert isinstance(state, BaseState) action = self.alg.getAction(state) return action def update(self, pair: BasePair): assert isinstance(pair, BasePair) self.his.append(pair) def move(self, state: BaseState): assert isinstance(state, BaseState) action = self.decide(state) record = self.convert(state) pair = Pair(record, action) self.update(pair) return action def recv(self, gs: GameStatus): assert isinstance(gs, GameStatus) if gs is GameStatus.InProgress: pass else: self.alg.update(self.his, gs) def getIndex(self): return self.index class HumanPlayer(BasePlayer): def __init__(self, index: int): self.index = Index(index) def move(self, state:BaseState): while True: x = input('x: ') y = input('y: ') try: action = Location(int(x), int(y)) assert state[action] == 0 return action except: print("Retype valid x, y") def recv(self, gs:GameStatus): pass def getIndex(self): return self.index
from __future__ import absolute_import, division, print_function, unicode_literals from gittip.elsewhere import PlatformOAuth2 from gittip.elsewhere._extractors import key from gittip.elsewhere._paginators import header_links_paginator class GitHub(PlatformOAuth2): # Platform attributes name = 'github' display_name = 'GitHub' account_url = 'https://github.com/{user_name}' # Auth attributes auth_url = 'https://github.com/login/oauth' oauth_email_scope = 'user:email' # API attributes api_format = 'json' api_paginator = header_links_paginator() api_url = 'https://api.github.com' api_user_info_path = '/users/{user_name}' api_user_self_info_path = '/user' api_team_members_path = '/orgs/{user_name}/public_members' ratelimit_headers_prefix = 'x-ratelimit-' # User info extractors x_user_id = key('id') x_user_name = key('login') x_display_name = key('name') x_email = key('email') x_gravatar_id = key('gravatar_id') x_avatar_url = key('avatar_url') x_is_team = key('type', clean=lambda t: t.lower() == 'organization')
from PIL import Image, ImageOps import numpy as np import skimage.io as io from src.models.class_patcher import patcher from src.utils.imgproc import * from skimage.color import rgb2hsv, hsv2rgb class patcher(patcher): def __init__(self, body='./body/body_glaze.png', **options): super().__init__('ぐれーず', body=body, pantie_position=[265, 2019], **options) self.mask = io.imread('./mask/mask_glaze.png') self.pantie_edge = io.imread('./material/glaze_pantie_edge.png') / 255. try: self.with_bra = self.options['with_bra'] except: self.with_bra = self.ask(question='With bra?', default=True) if self.with_bra: self.bra_mask = io.imread('./mask/bra_glaze_center.png') self.bra_others = io.imread('./material/glaze_others.png') / 255. def convert(self, image): pantie = np.array(image) patch = np.copy(pantie[-140:-5, 546:, :]) [pr, pc, d] = patch.shape arrx = np.zeros(25) - 10 arry = np.zeros(25) - 5 arrx[6:-10] += np.sin(np.linspace(0, np.pi, 9)) * 4 arrx[-15:] -= np.sin(np.linspace(0, np.pi / 2, 15)) * 5 arry[1:5] -= np.sin(np.linspace(0, np.pi, 4)) * 25 arry[5:] += np.sin(np.linspace(0, np.pi / 2, 20)) * 40 pantie = affine_transform_by_arr(pantie, arrx, arry) pantie[125:125 + pr, :pc, :] = np.float32(patch[::-1, ::-1] / 255) pantie = np.uint8(resize(pantie[:320, :-50], [3.25, 3.15]) * 255)[:, 38:] pantie = np.bitwise_and(pantie, self.mask) pantie = np.concatenate((pantie[:, ::-1], pantie), axis=1) return Image.fromarray(pantie) def gen_bra_center(self, image): pantie = np.array(image) center = np.uint8(resize(pantie[15:150, 450:], [7.85, 7.85]) * 255) center = np.bitwise_and(center, self.bra_mask) return Image.fromarray(center) def gen_colored_tex(self, image, texture): pantie = np.array(image) tex = np.copy(texture) front = pantie[20:100, 30:80, :3] / 255.0 front_color = np.mean(np.mean(front, axis=0), axis=0) front_shade = pantie[130:150, 0:40, :3] / 255.0 front_shade_color = np.mean(np.mean(front_shade, axis=0), axis=0) # tex[:, :, :3] = tex[:, :, :3] * front_shade_color tex[:, :, :3] = tex[:, :, :3] * front_color return Image.fromarray(np.uint8(tex * 255)) def patch(self, image, transparent=False): pantie = self.convert(image) if transparent: patched = Image.new("RGBA", (4096, 4096)) else: patched = self.body.copy() patched = self.paste(patched, pantie, self.pantie_position) patched = self.paste(patched, self.gen_colored_tex(image, self.pantie_edge), [258, 1907]) if self.with_bra: bra_center = self.gen_bra_center(image) patched = self.paste(patched, bra_center, [528, 162]) patched = self.paste(patched, ImageOps.mirror(bra_center), [2173, 162]) patched = self.paste(patched, self.gen_colored_tex(image, self.bra_others), [251, 921]) return patched
class Solution: def reverseBits(self, nums: int) -> int: result = 0 for i in range(32): result <<= 1 if (nums & 1) == 1: result ^= 1 nums >>= 1 return result
# -*- coding: utf-8 -*- """ Created on Thu Aug 29 15:06:21 2019 @author: Ahmed Ali Mohamed ------- Chapter 4 section 3.1 (4.3.1) ------- ******* Finger exercise: When the implementation of fib in Figure 4.7 is used to compute fib(5), how many times does it compute the value of fib(2) on the way to computing fib(5)? ******* """ ''' The solution is '3' three times ''' # code to track how many times the specific has been called number_to_fib = int(input('Please, Enter a positive integer: ')) # the umber user want to track how many it is called during getting Fibonacci of the input specific_number_to_be_counted = int(input('Please, Enter a positive integer to track how many it is called? ')) def fib(n): ''' Assumes, n int >= 0 return fibbonachi of n ''' global numFibCalls numFibCalls = 0 numFibCalls += 1 global numFibTwo if n == specific_number_to_be_counted: numFibTwo += 1 if n == 1 or n == 0: return 1 else: return fib(n-1) + fib(n-2) def testFib(x): global numFibCalls numFibCalls = 0 global numFibTwo numFibTwo = 0 print('the Fibbonaci number of:', x, 'is', fib(x)) print('Fib function has been called', numFibCalls, 'times') print('Fib(',specific_number_to_be_counted,') function has been called', numFibTwo, 'times') return None testFib(number_to_fib)
# Given an integer array arr, sort the integers in arr in ascending order by the number of 1’s in their binary representation and return the sorted array. # # Examples: # $ sortBits([0,1,2,3,4,5,6,7,8]) # $ [0,1,2,4,8,3,5,6,7] def sort_bits(num_list): nums_counted = {} miny = 0 maxy = 0 for num in num_list: if num > maxy: maxy = num if num < miny: miny = num ones = (str(bin(num))).count('1') if ones in nums_counted: nums_counted[ones].append(num) else: nums_counted[ones] = [num] output_list = [] for key in range(miny, maxy+1): if key in nums_counted: output_list.extend(nums_counted[key]) return output_list assert sort_bits([0,1,2,3,4,5,6,7,8]) == [0,1,2,4,8,3,5,6,7], f"Did not sort correctly, was not: [0,1,2,4,8,3,5,6,7]" assert sort_bits([8,7,6,5,4,3,2,1,0]) == [0,8,4,2,1,6,5,3,7], f"Did not sort correctly, was not: [0,8,4,2,1,6,5,3,7], it was: {sort_bits([8,7,6,5,4,3,2,1,0])}" assert sort_bits([0,0,1,2,3,4,5,6,7,8]) == [0,0,1,2,4,8,3,5,6,7], f"Did not sort correctly, was not: [0,0,1,2,4,8,3,5,6,7]" assert sort_bits([0,1,2,3,4,5,6,7,8, 256, 256]) == [0,1,2,4,8,256,256,3,5,6,7], f"Did not sort correctly, was not: [0,1,2,4,8,256,256,3,5,6,7]" assert sort_bits([0,1,2,3,4,5,6,7,8, 256, 7]) != [0,1,2,4,8,256,7,3,5,6,7], f"Did not sort correctly, should have failed: [0,1,2,4,8,256,7,3,5,6,7]" assert sort_bits([]) == [], f"Did not sort correctly, should have been []"
import timeit import numpy as np from bingo.symbolic_regression.agraph \ import agraph as agraph_module from bingo.symbolic_regression.agraph.evaluation_backend import \ evaluation_backend as pyBackend from bingo.local_optimizers.continuous_local_opt \ import ContinuousLocalOptimization from bingocpp import evaluation_backend as cppBackend from benchmark_data import StatsPrinter, \ generate_random_individuals, \ copy_to_cpp, \ TEST_EXPLICIT_REGRESSION, \ TEST_EXPLICIT_REGRESSION_CPP, \ TEST_IMPLICIT_REGRESSION, \ TEST_IMPLICIT_REGRESSION_CPP, \ CLO_TIMING_NUMBER, \ CLO_TIMING_REPEATS, \ NUM_AGRAPHS_INDVS import benchmark_data as benchmark_data TEST_EXPLICIT_REGRESSION_OPTIMIZATION \ = ContinuousLocalOptimization(TEST_EXPLICIT_REGRESSION) TEST_IMPLICIT_REGRESSION_OPTIMIZATION \ = ContinuousLocalOptimization(TEST_IMPLICIT_REGRESSION) TEST_EXPLICIT_REGRESSION_OPTIMIZATION_CPP \ = ContinuousLocalOptimization(TEST_EXPLICIT_REGRESSION_CPP) TEST_IMPLICIT_REGRESSION_OPTIMIZATION_CPP \ = ContinuousLocalOptimization(TEST_IMPLICIT_REGRESSION_CPP) TEST_ITERATION = 0 DEBUG = False TEST_AGRAPHS = generate_random_individuals(benchmark_data.NUM_AGRAPHS_INDVS, benchmark_data.COMMAND_ARRAY_SIZE, True) TEST_AGRAPHS_CPP = copy_to_cpp(TEST_AGRAPHS) BENCHMARK_LISTS = [] BENCHMARK_LISTS_CPP = [] def benchmark_explicit_regression_with_optimization(): np.random.seed(0) for i, test_run in enumerate(BENCHMARK_LISTS): for indv in test_run: _ = TEST_EXPLICIT_REGRESSION_OPTIMIZATION.__call__(indv) def benchmark_explicit_regression_cpp_with_optimization(): np.random.seed(0) for i, test_run in enumerate(BENCHMARK_LISTS_CPP): for indv in test_run: _ = TEST_EXPLICIT_REGRESSION_OPTIMIZATION_CPP.__call__(indv) def benchmark_implicit_regression_with_optimization(): np.random.seed(0) for i, test_run in enumerate(BENCHMARK_LISTS): for indv in test_run: _ = TEST_IMPLICIT_REGRESSION_OPTIMIZATION.__call__(indv) def benchmark_implicit_regression_cpp_with_optimization(): np.random.seed(0) for i, test_run in enumerate(BENCHMARK_LISTS_CPP): for indv in test_run: _ = TEST_IMPLICIT_REGRESSION_OPTIMIZATION_CPP.__call__(indv) def reset_test_data(): _reset_test_data_helper(TEST_AGRAPHS, BENCHMARK_LISTS) def reset_test_data_cpp(): _reset_test_data_helper(TEST_AGRAPHS_CPP, BENCHMARK_LISTS_CPP) def _reset_test_data_helper(agraph_list, benchmarking_array): global TEST_ITERATION if DEBUG: print("...Executing iteration:", TEST_ITERATION) _create_fresh_benchmarking_array(agraph_list, benchmarking_array) TEST_ITERATION += 1 def _create_fresh_benchmarking_array(agraph_list, benchmarking_array): benchmarking_array.clear() for num_runs in range(0, CLO_TIMING_NUMBER): run_list = [] for agraph in agraph_list: run_list.append(agraph.copy()) benchmarking_array.append(run_list) def do_benchmarking(debug = False): if debug: global DEBUG DEBUG = True benchmarks = [ [benchmark_explicit_regression_with_optimization, benchmark_explicit_regression_cpp_with_optimization, "LOCAL OPTIMIZATION (EXPLICIT REGRESSION) BENCHMARKS"], [benchmark_implicit_regression_with_optimization, benchmark_implicit_regression_cpp_with_optimization, "LOCAL OPTIMIZATION (IMPLICIT REGRESSION) BENCHMARKS"]] stats_printer_list = [] for regression, regression_cpp, reg_name in benchmarks: printer = StatsPrinter(reg_name) _run_benchmarks(printer, regression, regression_cpp) stats_printer_list.append(printer) return stats_printer_list def _run_benchmarks(printer, regression, regression_cpp): for backend, name in [[pyBackend, " py"], [cppBackend, "c++"]]: agraph_module.evaluation_backend = backend _add_stats_and_log_intermediate_steps( printer, regression, "py: fitness " +name + ": evaluate ", reset_test_data ) _add_stats_and_log_intermediate_steps( printer, regression_cpp, "c++: fitness c++: evaluate ", reset_test_data_cpp ) def _add_stats_and_log_intermediate_steps(stats_printer, regression, run_name, setup_function): if DEBUG: print("Running", regression.__name__, "...................") stats_printer.add_stats( run_name, timeit.repeat(regression, setup=setup_function, number=1, repeat=CLO_TIMING_REPEATS), number=CLO_TIMING_NUMBER * NUM_AGRAPHS_INDVS, unit_mult=1000 ) if DEBUG: print(regression.__name__, "finished\n") _reset_iteration_count() def _reset_iteration_count(): global TEST_ITERATION TEST_ITERATION = 0 def _print_stats(printer_list): for printer in printer_list: printer.print() if __name__ == '__main__': do_benchmarking(False)
import json import schedule import time as t import webbrowser import datetime import argparse from selenium import webdriver from selenium.webdriver.common.keys import Keys options = webdriver.ChromeOptions() options.add_argument("--disable-infobars") options.add_argument("--window-size=1280,720") options.add_experimental_option("prefs", { \ "profile.default_content_setting_values.media_stream_mic": 1, # 1:allow, 2:block "profile.default_content_setting_values.media_stream_camera": 1, # 1:allow, 2:block "profile.default_content_setting_values.geolocation": 2, # 1:allow, 2:block "profile.default_content_setting_values.notifications": 2 # 1:allow, 2:block }) driver = webdriver.Chrome('./chromedriver', chrome_options=options) # Opening JSON file f = open('slots.json') g = open('your_slots.json') h = open('secret.json') def login(): secret = json.load(h) #login driver.get('https://teams.microsoft.com') t.sleep(2) driver.find_element_by_xpath('//*[@id="i0116"]').send_keys(secret['username']) t.sleep(2) driver.find_element_by_xpath('//*[@id="idSIButton9"]').click() t.sleep(2) driver.find_element_by_xpath('//*[@id="i0118"]').send_keys(secret['password']) t.sleep(2) driver.find_element_by_xpath('//*[@id="idSIButton9"]').click() t.sleep(2) driver.find_element_by_xpath('//*[@id="idSIButton9"]').click() def start_meeting(meeting_link, meeting_type): print("Opening meeting link {}".format(meeting_link)) if meeting_type == 'browser': webbrowser.open(meeting_link, new=2) elif meeting_type == 'microsoft_teams': driver.get(meeting_link) t.sleep(2) try: driver.find_element_by_xpath('//*[@id="openTeamsClientInBrowser"]').click() except: pass join_meeting_button = None while join_meeting_button is None: try: join_meeting_button = driver.find_element_by_xpath('/html/body/div[1]/div[2]/div[2]/div[1]/middle-messages-stripe/div/messages-header/div[2]/div/message-pane/div/div[1]/div/div/message-list/div/virtual-repeat/div/div[8]/div/thread/div/div[2]/calling-thread-header/div/calling-join-button/button') except: print('wating for meeting to start...') t.sleep(2) pass join_meeting_button.click() t.sleep(5) video_toggle = driver.find_element_by_xpath('//*[@id="page-content-wrapper"]/div[1]/div/calling-pre-join-screen/div/div/div[2]/div[1]/div[2]/div/div/section/div[2]/toggle-button[1]/div/button/span[1]') mic_toggle = driver.find_element_by_xpath('//*[@id="preJoinAudioButton"]/div/button/span[1]') if video_toggle.get_attribute('title') == 'Turn camera off': video_toggle.click() if mic_toggle.get_attribute('title') == 'Mute microphone': mic_toggle.click() t.sleep(2) driver.find_element_by_xpath('//*[@id="page-content-wrapper"]/div[1]/div/calling-pre-join-screen/div/div/div[2]/div[1]/div[2]/div/div/section/div[1]/div/div/button').click() else: print('Invalid Option') return schedule.CancelJob def main(): # Initialize parser parser = argparse.ArgumentParser() # Adding optional argument parser.add_argument("--today", action='store_true', help = "Schedule classses today") parser.add_argument("--tomorrow", action='store_true', help = "Schedule classses tomorrow") # Read arguments from command line args = parser.parse_args() if not (args.tomorrow or args.today): parser.error('No action requested, add --today or --tomorrow') if args.tomorrow and args.today: parser.error('Both actions requested, add either --today or --tomorrow') today = datetime.datetime.now().strftime("%A").lower() tomorrow = "" days = ['monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday', 'sunday'] for i in range(len(days)): if(today == days[i]): tomorrow = days[(i+1) % 7] # returns JSON object as # a dictionary slots = json.load(f) your_slots = json.load(g) for your_slot in your_slots: slot_name = your_slot['slot_name'] course_name = your_slot['course_name'] meeting_type = your_slot['meeting_type'] meeting_link = your_slot['meeting_link'] periods = slots[slot_name] required_day = "" for period in periods: if args.today: required_day = today if args.tomorrow: required_day = tomorrow day = period['day'] time = period['time'] if day == required_day: print("Scheduling {} at slot {} on {} at {}. Meeting type is {}".format(course_name, slot_name, day, time, meeting_type)) schedule.every().day.at(time).do(start_meeting, meeting_link=meeting_link, meeting_type=meeting_type) login() while True: # Checks whether a scheduled task # is pending to run or not schedule.run_pending() t.sleep(30) # Closing file f.close() if __name__ == "__main__": main()
from datetime import datetime, timedelta import jwt from django.conf import settings from django.contrib.auth.models import ( AbstractBaseUser, BaseUserManager, PermissionsMixin, ) from django.db import models from sendit.apps.core.base_model import CommonFieldsMixin class UserManager(BaseUserManager): """ Django requires that custom users define their own Manager class. By inheriting from `BaseUserManager`, we get a lot of the same code used by Django to create a `User` for free. All we have to do is override the `create_user` function which we will use to create `User` objects. """ def create_user(self, full_name, email, password=None): """Create and return a `User` with an email, full name and password.""" if full_name is None: raise TypeError("Users must have a name.") if email is None: raise TypeError("Users must have an email address.") user = self.model(full_name=full_name, email=self.normalize_email(email)) user.set_password(password) user.save() return user def create_superuser(self, full_name, email, password): """ Create and return a `User` with superuser powers. Superuser powers means that this use is an admin that can do anything they want. """ if password is None: raise TypeError("Superusers must have a password.") user = self.create_user(full_name, email, password) user.is_superuser = True user.is_staff = True user.is_admin = True user.save() return user class User(AbstractBaseUser, PermissionsMixin, CommonFieldsMixin): full_name = models.CharField(db_index=True, max_length=255) email = models.EmailField(db_index=True, unique=True) is_active = models.BooleanField(default=False) is_staff = models.BooleanField(default=False) is_verified = models.BooleanField(default=False) is_admin = models.BooleanField(default=False) USERNAME_FIELD = "email" objects = UserManager() def __str__(self): """ Returns a string representation of this `User`. This string is used when a `User` is printed in the console. """ return self.email @property def get_full_name(self): """ This method is required by Django for things like handling emails. Typically, this would be the user's first and last name. Since we do not store the user's real name, we return their full name instead. """ return self.full_name def get_short_name(self): """ This method is required by Django for things like handling emails. Typically, this would be the user's first name. Since we do not store the user's real name, we return their full name instead. """ return self.full_name @property def token(self): """ Allows us to get a user's token by calling `user.token` """ return self._generate_jwt_token() def _generate_jwt_token(self): """ Generates a JWT that stores this user's email and has an expiry date set to 1 day into the future. """ dt = datetime.now() + timedelta(days=1) data = { "email": self.email, "active": self.is_active, "exp": int(dt.strftime("%s")), } token = jwt.encode(data, settings.SECRET_KEY, algorithm="HS256") return token.decode("utf-8")
import torch import torch.nn as nn import torch.nn.functional as F from model.general.attention.additive import AdditiveAttention device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu") class NewsEncoder(torch.nn.Module): def __init__(self, config, pretrained_word_embedding, writer): super(NewsEncoder, self).__init__() self.config = config if pretrained_word_embedding is None: self.word_embedding = nn.Embedding(config.num_words, config.word_embedding_dim, padding_idx=0) else: self.word_embedding = nn.Embedding.from_pretrained( pretrained_word_embedding, freeze=False, padding_idx=0) self.category_embedding = nn.Embedding(config.num_categories, config.category_embedding_dim, padding_idx=0) self.category_linear = nn.Linear(config.category_embedding_dim, config.num_filters) self.subcategory_linear = nn.Linear(config.category_embedding_dim, config.num_filters) assert config.window_size >= 1 and config.window_size % 2 == 1 self.title_CNN = nn.Conv2d( 1, config.num_filters, (config.window_size, config.word_embedding_dim), padding=(int((config.window_size - 1) / 2), 0)) self.abstract_CNN = nn.Conv2d( 1, config.num_filters, (config.window_size, config.word_embedding_dim), padding=(int((config.window_size - 1) / 2), 0)) self.title_attention = AdditiveAttention(config.query_vector_dim, config.num_filters) self.abstract_attention = AdditiveAttention(config.query_vector_dim, config.num_filters) self.final_attention = AdditiveAttention(config.query_vector_dim, config.num_filters, writer, 'Train/NewsAttentionWeight', ['category', 'subcategory', 'title', 'abstract']) def forward(self, news): """ Args: news: { "category": Tensor(batch_size), "subcategory": Tensor(batch_size), "title": Tensor(batch_size) * num_words_title, "abstract": Tensor(batch_size) * num_words_abstract } Returns: (shape) batch_size, num_filters """ # Part 1: calculate activated_category_vector # batch_size, category_embedding_dim category_vector = self.category_embedding(news['category'].to(device)) # batch_size, num_filters activated_category_vector = F.relu( self.category_linear(category_vector)) # Part 2: calculate activated_subcategory_vector # batch_size, category_embedding_dim subcategory_vector = self.category_embedding( news['subcategory'].to(device)) # batch_size, num_filters activated_subcategory_vector = F.relu( self.subcategory_linear(subcategory_vector)) # Part 3: calculate weighted_title_vector # batch_size, num_words_title, word_embedding_dim title_vector = F.dropout(self.word_embedding( torch.stack(news['title'], dim=1).to(device)), p=self.config.dropout_probability, training=self.training) # batch_size, num_filters, num_words_title convoluted_title_vector = self.title_CNN( title_vector.unsqueeze(dim=1)).squeeze(dim=3) # batch_size, num_filters, num_words_title activated_title_vector = F.dropout(F.relu(convoluted_title_vector), p=self.config.dropout_probability, training=self.training) # batch_size, num_filters weighted_title_vector = self.title_attention( activated_title_vector.transpose(1, 2)) # Part 4: calculate weighted_abstract_vector # batch_size, num_words_abstract, word_embedding_dim abstract_vector = F.dropout(self.word_embedding( torch.stack(news['abstract'], dim=1).to(device)), p=self.config.dropout_probability, training=self.training) # batch_size, num_filters, num_words_abstract convoluted_abstract_vector = self.abstract_CNN( abstract_vector.unsqueeze(dim=1)).squeeze(dim=3) # batch_size, num_filters, num_words_abstract activated_abstract_vector = F.dropout( F.relu(convoluted_abstract_vector), p=self.config.dropout_probability, training=self.training) # batch_size, num_filters weighted_abstract_vector = self.abstract_attention( activated_abstract_vector.transpose(1, 2)) # batch_size, 4, num_filters stacked_news_vector = torch.stack([ activated_category_vector, activated_subcategory_vector, weighted_title_vector, weighted_abstract_vector ], dim=1) # batch_size, num_filters news_vector = self.final_attention(stacked_news_vector) return news_vector
import torch.nn as nn def CrossEntropyLoss(output, target): criterion = nn.CrossEntropyLoss() return criterion(output, target)
from graph4nlp.pytorch.modules.evaluation.cider import CIDEr if __name__ == "__main__": import json scorer = CIDEr(df="corpus") pred_file_path = "/home/shiina/shiina/question/iq/pred.json" gt_file_path = "/home/shiina/shiina/question/iq/gt.json" with open(gt_file_path, "r") as f: gt = json.load(f) print(gt[0]) gts = [] for i in gt: for j in i: gts.append(str(j)) with open(pred_file_path, "r") as f: pred = json.load(f) print(pred[1]) preds = [] for i in pred: for j in i: preds.append(str(j)) print(len(gts), len(preds)) score, scores = scorer.calculate_scores(gts, preds) print(score) print(len(scores))
import os import openai from dotenv import load_dotenv load_dotenv() openai.api_key = os.getenv("OPENAI_API_KEY") start_sequence = "\nIntelli_AGENT:" restart_sequence = "\n\nUser:" session_prompt = "Intelli_AGENT is a chatbot that reluctantly answers questions.\n\n###\nUser: How many pounds are in a kilogram?\nIntelli_AGENT: This again? There are 2.2 pounds in a kilogram. Please make a note of this.\n###\nUser: What does HTML stand for?\nMarv: Was Google too busy? Hypertext Markup Language. The T is for try to ask better questions in the future.\n###\nIntelli_AGENT: When did the first airplane fly?\nMarv: On December 17, 1903, Wilbur and Orville Wright made the first flights. I wish they’d come and take me away.\n###\nUser: Who was the first man in space?\nIntelli_AGENT:" def ask(question, chat_log=None): prompt_text = f'{chat_log}{restart_sequence}: {question}{start_sequence}:' response = openai.Completion.create( engine="davinci", prompt=prompt_text, temperature=0.8, max_tokens=150, top_p=1, frequency_penalty=0, presence_penalty=0.3, stop=["\n"], ) story = response['choices'][0]['text'] return str(story) def append_interaction_to_chat_log(question, answer, chat_log=None): if chat_log is None: chat_log = session_prompt return f'{chat_log}{restart_sequence} {question}{start_sequence}{answer}'
try: from urllib.request import urlopen except ImportError: from urllib import urlopen import re import string def format_normalized_package_name(package_name): # type: (str) -> str """Normalize a package name""" return package_name.replace(".", "-").replace("_", "-").lower() def format_description(description): # type: (str) -> str """Normalize whitespace, remove punctuation, and capitalize first letter""" if len(description) == 0: return "" description = re.sub("\s+", description.strip(string.punctuation), " ") return description[0].upper() + description[1:] def format_homepage(homepage): # type: (str) -> str """Use https url if possible""" if re.match("https://", homepage): return homepage https_homepage = homepage.replace("http://", "https://") try: response = urlopen(https_homepage) return https_homepage except: return "" def format_license(license): # type: (str) -> str """Convert python setup.py license to nix license These licenses account for about 95% of all licenses. The following snippet gathers licenses of top 5,000 packages. .. code-block:: python import urllib.request import json from collections import defaultdict projects = {r['project'] for r in requests.get("https://hugovk.github.io/top-pypi-packages/top-pypi-packages-30-days.json").json()['rows']} licenses = defaultdict(lambda:0) for p in projects: try: data = requests.get('https://pypi.org/pypi/%s/json' % p).json() license = data.get('info', {}).get('license') licenses[license] += 1 except: pass sorted([(k, v) for k, v in licenses.items()], key=lambda t: -t[1]) """ case_sensitive_license_nix_map = { "3-clause BSD": "bsd3", "AGPL": "agpl3", "Apache": "asl20", "Apache 2": "asl20", "Apache2": "asl20", "Apache-2": "asl20", "Apache 2.0": "asl20", "Apache-2.0": "asl20", "Apache License": "asl20", "Apache License (2.0)": "asl20", "Apache License 2.0": "asl20", "Apache License, Version 2.0": "asl20", "Apache License Version 2.0": "asl20", "Apache Software License": "asl20", "Apache Software License 2.0": "asl20", "BSD license": " # lookup BSD license being used: bsd0, bsd2, bsd3, or bsdOriginal ", "BSD": " # lookup BSD license being used: bsd0, bsd2, bsd3, or bsdOriginal ", "BSD-3": "bsd3", "BSD 3-clause": "bsd3", "BSD 3-Clause License": "bsd3", "GNU GPL": "gpl1", "GNU LGPL": "lgpl2Plus", "GNU GPLv2 or any later version": "gpl2Plus", "GNU General Public License (GPL)": "gpl1", "GNU General Public License v2 or later (GPLv2+)": "gpl2Plus", "GPL": "gpl1", "GPLv2 or later": "gpl2Plus", "GPLv2": "gpl2", "GPLv2+": "gpl2Plus", "GPLv3": "gpl3", "GPL v3": "gpl3", "GPLv3+": "gpl3Plus", "ISC": "isc", "ISC License": "isc", "LGPL": "lgpl2Plus", "LGPLv2+": "lgpl2Plus", "LGPLv2.1 or later": "lgpl21Plus", "LGPLv3": "lgpl3", "LGPLv3+": "lgpl3Plus", "License :: OSI Approved :: MIT License": "mit", "MIT": "mit", "MIT License": "mit", "The MIT License: http://www.opensource.org/licenses/mit-license.php": "mit", "Mozilla Public License 2.0 (MPL 2.0)": "mpl20", "MPL": "mpl10", "MPL2": "mpl20", "MPL 2.0": "mpl20", "New BSD": "bsd3", "New BSD License": "bsd3", "PSF License": "psfl", "PSF": "psfl", "Python Software Foundation License": "psfl", "Python style": "psfl", "Public Domain": "publicDomain", "Two-clause BSD license": "bsd2", "Unlicense": "unlicense", "ZPL 2.1": "zpl21", "ZPL": "zpl21", "Zope Public License": "zpl21", } license_nix_map = { name.lower(): nix_attr for name, nix_attr in case_sensitive_license_nix_map.items() } return license_nix_map.get(license.lower())
import threading class Neighbor(threading.Thread): """The class Neighbor contains the client node socket, ip and host and hold the server node id. Communication is done by this class. The server node sending message, pass through to the main node. Instantiates a new Neighbor. main_node: The Node class that received a connection. sock: The socket that is associated with the client connection. id: The id of the connected node. host: The ip of the main node. port: The port of the server of the main node.""" def __init__(self, main_node, sock, id, host, port, last_hello_time): super(Neighbor, self).__init__() self.host = host self.port = port self.main_node = main_node self.sock = sock self.last_hello_time = last_hello_time self.terminate_flag = threading.Event() # The connected node index self.id = id self.main_node.debug_print( "Neighbor Node:" + str(self.id) + " initialized for Node:" + str(self.main_node.id)) def stop(self): """Terminates the connection and the thread is stopped.""" self.terminate_flag.set()
import pytest from tests.utils import file_response from documenters_aggregator.spiders.chi_animal import Chi_animalSpider test_response = file_response('files/chi_animal.html', url='https://www.cityofchicago.org/city/en/depts/cacc/supp_info/public_notice.html') spider = Chi_animalSpider() parsed_items = [item for item in spider.parse(test_response) if isinstance(item, dict)] def test_len(): assert len(parsed_items) == 3 def test_name(): assert parsed_items[0]['name'] == 'Commission meeting' def test_start_time(): assert parsed_items[0]['start_time'].isoformat() == '2017-09-21T00:00:00-05:00' @pytest.mark.parametrize('item', parsed_items) def test_sources(item): assert item['sources'] == [{'url': 'https://www.cityofchicago.org/city/en/depts/cacc/supp_info/public_notice.html', 'note': ''}] @pytest.mark.parametrize('item', parsed_items) def test_timezone(item): assert item['timezone'] == 'America/Chicago'
#!/usr/bin/env python """ OCRL HW2 Simple: first fit a spline for received waypoints, then a path tracking or PID controller to follow """ from common import * from nav_msgs.msg import Odometry, Path from geometry_msgs.msg import PoseArray, Pose, Twist, PoseStamped from ackermann_msgs.msg import AckermannDriveStamped from scipy.interpolate import interp1d import dubins from angles import * import tf class TrajectoryFollowerNode: """base class for processing waypoints to give control output""" def __init__(self): # Parameters self.nominal_speed = 2 # Initialize Publishers self.cmd_pub = rospy.Publisher('/ackermann_vehicle/ackermann_cmd', AckermannDriveStamped, queue_size=10) self.track_point_pub = rospy.Publisher('/track_point', PoseStamped, queue_size=10) # Initialize Subscribers and relevant variables self.got_spline = False rospy.Subscriber("/spline_path",Path,self.trajectoryCallback) self.rear_axle_center = Pose() self.rear_axle_velocity = Twist() self.rear_axle_theta = 0 rospy.Subscriber("/ackermann_vehicle/ground_truth/state", Odometry, self.vehicleStateCallback) # Marks time we get first spline path as spline_start_time, and starts outputting tracking point and associated commands rospy.wait_for_message("/spline_path", Path, 10) self.got_spline = True self.spline_start_time = rospy.Time.now() self.track_pt_timer = rospy.Timer(rospy.Duration(0.02), self.trackPointTimerCallback) # track point based on time from spline_path start tim def trajectoryCallback(self,msg): path_list = [] for i in range(len(msg.poses)): pose_i = msg.poses[i].pose theta = euler_from_quaternion([pose_i.orientation.x, pose_i.orientation.y, pose_i.orientation.z, pose_i.orientation.w])[2] path_list.append([pose_i.position.x, pose_i.position.y, theta, msg.poses[i].header.stamp.secs]) #pose.pose.position.x = path_list[i,0] #pose.pose.position.y = path_list[i,1] path_list = np.array(path_list) print(path_list) self.spline_points = path_list self.spline_distance = np.sum(np.sqrt(np.sum(np.diff(path_list[:,:2], axis=0)**2, axis=1))) self.spline_cum_dist = np.cumsum(np.sqrt(np.sum(np.diff(path_list[:,:2], axis=0)**2, axis=1))) # Keep this from pure_pursuit.py def vehicleStateCallback(self,msg): self.rear_axle_center.position.x = msg.pose.pose.position.x self.rear_axle_center.position.y = msg.pose.pose.position.y self.rear_axle_center.orientation = msg.pose.pose.orientation self.rear_axle_theta = euler_from_quaternion( [self.rear_axle_center.orientation.x, self.rear_axle_center.orientation.y, self.rear_axle_center.orientation.z, self.rear_axle_center.orientation.w])[2] self.rear_axle_velocity.linear = msg.twist.twist.linear self.rear_axle_velocity.angular = msg.twist.twist.angular def trackPointTimerCallback(self, event): time_since_start = (rospy.Time.now() - self.spline_start_time).to_sec() dist_along_spline = self.nominal_speed * time_since_start track_point_ind = np.argwhere(self.spline_cum_dist > dist_along_spline)[0] track_point_x = self.spline_points[track_point_ind, 0] track_point_y = self.spline_points[track_point_ind, 1] # Publish track point pose track_pose_msg = PoseStamped() track_pose_msg.header.stamp = rospy.Time.now() track_pose_msg.header.frame_id = '/map' track_pose_msg.pose.position.x = track_point_x track_pose_msg.pose.position.y = track_point_y self.track_point_pub.publish(track_pose_msg) # Calculate Commands based on Tracking Point dx = track_point_x - self.rear_axle_center.position.x dy = track_point_y - self.rear_axle_center.position.y lookahead_dist = np.sqrt(dx * dx + dy * dy) lookahead_theta = math.atan2(dy, dx) alpha = shortest_angular_distance(self.rear_axle_theta, lookahead_theta) cmd = AckermannDriveStamped() cmd.header.stamp = rospy.Time.now() cmd.header.frame_id = "base_link" # Publishing constant speed of 1m/s cmd.drive.speed = self.nominal_speed # Reactive steering if alpha < 0: st_ang = max(-max_steering_angle, alpha) else: st_ang = min(max_steering_angle, alpha) cmd.drive.steering_angle = st_ang self.cmd_pub.publish(cmd) # CMD includes steering_angle if __name__ == '__main__': rospy.init_node('trajectory_follower_node') rospy.loginfo('trajectory_follower_node initialized') node = TrajectoryFollowerNode() rospy.spin()
import argparse import os.path as osp import warnings import numpy as np import onnx import onnxruntime as rt import torch from mmdet.core import (build_model_from_cfg, generate_inputs_and_wrap_model, preprocess_example_input) def pytorch2onnx(config_path, checkpoint_path, input_img, input_shape, opset_version=11, show=False, output_file='tmp.onnx', verify=False, normalize_cfg=None, dataset='coco', test_img=None, do_simplify=False): input_config = { 'input_shape': input_shape, 'input_path': input_img, 'normalize_cfg': normalize_cfg } # prepare original model and meta for verifying the onnx model orig_model = build_model_from_cfg(config_path, checkpoint_path) one_img, one_meta = preprocess_example_input(input_config) model, tensor_data = generate_inputs_and_wrap_model( config_path, checkpoint_path, input_config) output_names = ['boxes'] if model.with_bbox: output_names.append('labels') if model.with_mask: output_names.append('masks') torch.onnx.export( model, tensor_data, output_file, input_names=['input'], output_names=output_names, export_params=True, keep_initializers_as_inputs=True, do_constant_folding=True, verbose=show, opset_version=opset_version) model.forward = orig_model.forward # simplify onnx model if do_simplify: from mmdet import digit_version import mmcv min_required_version = '1.2.5' assert digit_version(mmcv.__version__) >= digit_version( min_required_version ), f'Requires to install mmcv>={min_required_version}' from mmcv.onnx.simplify import simplify input_dic = {'input': one_img.detach().cpu().numpy()} _ = simplify(output_file, [input_dic], output_file) print(f'Successfully exported ONNX model: {output_file}') if verify: from mmdet.core import get_classes, bbox2result from mmdet.apis import show_result_pyplot ort_custom_op_path = '' try: from mmcv.ops import get_onnxruntime_op_path ort_custom_op_path = get_onnxruntime_op_path() except (ImportError, ModuleNotFoundError): warnings.warn('If input model has custom op from mmcv, \ you may have to build mmcv with ONNXRuntime from source.') model.CLASSES = get_classes(dataset) num_classes = len(model.CLASSES) # check by onnx onnx_model = onnx.load(output_file) onnx.checker.check_model(onnx_model) if test_img is not None: input_config['input_path'] = test_img one_img, one_meta = preprocess_example_input(input_config) tensor_data = [one_img] # check the numerical value # get pytorch output pytorch_results = model(tensor_data, [[one_meta]], return_loss=False) pytorch_results = pytorch_results[0] # get onnx output input_all = [node.name for node in onnx_model.graph.input] input_initializer = [ node.name for node in onnx_model.graph.initializer ] net_feed_input = list(set(input_all) - set(input_initializer)) assert (len(net_feed_input) == 1) session_options = rt.SessionOptions() # register custom op for onnxruntime if osp.exists(ort_custom_op_path): session_options.register_custom_ops_library(ort_custom_op_path) sess = rt.InferenceSession(output_file, session_options) onnx_outputs = sess.run(None, {net_feed_input[0]: one_img.detach().numpy()}) output_names = [_.name for _ in sess.get_outputs()] output_shapes = [_.shape for _ in onnx_outputs] print(f'onnxruntime output names: {output_names}, \ output shapes: {output_shapes}') nrof_out = len(onnx_outputs) assert nrof_out > 0, 'Must have output' with_mask = nrof_out == 3 if nrof_out == 1: onnx_results = onnx_outputs[0] else: det_bboxes, det_labels = onnx_outputs[:2] onnx_results = bbox2result(det_bboxes, det_labels, num_classes) if with_mask: segm_results = onnx_outputs[2].squeeze(1) cls_segms = [[] for _ in range(num_classes)] for i in range(det_bboxes.shape[0]): cls_segms[det_labels[i]].append(segm_results[i]) onnx_results = (onnx_results, cls_segms) # visualize predictions if show: show_result_pyplot( model, one_meta['show_img'], pytorch_results, title='Pytorch') show_result_pyplot( model, one_meta['show_img'], onnx_results, title='ONNX') # compare a part of result if with_mask: compare_pairs = list(zip(onnx_results, pytorch_results)) else: compare_pairs = [(onnx_results, pytorch_results)] for onnx_res, pytorch_res in compare_pairs: for o_res, p_res in zip(onnx_res, pytorch_res): np.testing.assert_allclose( o_res, p_res, rtol=1e-03, atol=1e-05, ) print('The numerical values are the same between Pytorch and ONNX') def parse_args(): parser = argparse.ArgumentParser( description='Convert MMDetection models to ONNX') parser.add_argument('config', help='test config file path') parser.add_argument('checkpoint', help='checkpoint file') parser.add_argument('--input-img', type=str, help='Images for input') parser.add_argument('--show', action='store_true', help='show onnx graph') parser.add_argument('--output-file', type=str, default='tmp.onnx') parser.add_argument('--opset-version', type=int, default=11) parser.add_argument( '--test-img', type=str, default=None, help='Images for test') parser.add_argument( '--dataset', type=str, default='coco', help='Dataset name') parser.add_argument( '--verify', action='store_true', help='verify the onnx model output against pytorch output') parser.add_argument( '--simplify', action='store_true', help='Whether to simplify onnx model.') parser.add_argument( '--shape', type=int, nargs='+', default=[800, 1216], help='input image size') parser.add_argument( '--mean', type=float, nargs='+', default=[123.675, 116.28, 103.53], help='mean value used for preprocess input data') parser.add_argument( '--std', type=float, nargs='+', default=[58.395, 57.12, 57.375], help='variance value used for preprocess input data') args = parser.parse_args() return args if __name__ == '__main__': args = parse_args() assert args.opset_version == 11, 'MMDet only support opset 11 now' if not args.input_img: args.input_img = osp.join( osp.dirname(__file__), '../../tests/data/color.jpg') if len(args.shape) == 1: input_shape = (1, 3, args.shape[0], args.shape[0]) elif len(args.shape) == 2: input_shape = (1, 3) + tuple(args.shape) else: raise ValueError('invalid input shape') assert len(args.mean) == 3 assert len(args.std) == 3 normalize_cfg = {'mean': args.mean, 'std': args.std} # convert model to onnx file pytorch2onnx( args.config, args.checkpoint, args.input_img, input_shape, opset_version=args.opset_version, show=args.show, output_file=args.output_file, verify=args.verify, normalize_cfg=normalize_cfg, dataset=args.dataset, test_img=args.test_img, do_simplify=args.simplify)
import sys import argparse import math import almath as m # python's wrapping of almath import time #import numpy as np from naoqi import ALProxy degree = math.pi/180.0 # radians per degree pi = math.pi exp = math.exp atan2 = math.atan2 def FTarget(target_distance, target_angle): # Attractor Behaviors #fr1 = -sin(psi-Psi1) #fr3 = -exp(-dt)*sin(psi-Psi3) #frf = fr1+fr3 Ftar=0 return Ftar def FObstacle(obs_distance, obs_angle): # too_far=2.5 #m # Repulsive Behaviors #fr2 = exp(((-psi-Psi2)^2)/(2(sb^2)))*(psi-Psi2)*exp(-do/b2) #do something useful here # if obs_distance < too_far: #do something useful here #X = 0.2 #Y = 0.0 #Theta = 0.0 #Frequency =0.5 # low speed #try: # motionProxy.moveToward(X, Y, Theta, [["Frequency", Frequency]]) # tts.say("There has been an \\emph=2\\ earthquake. \\eos=1\\Don't panic!") #except (Exception, errorMsg): #print (str(errorMsg)) #print ("This example is not allowed on this robot.") #exit() # time.sleep(3) # Fobs=0 # needs replacing ! #else: # Fobs=0 # return Fobs b1 = 6 #b1 = 8 b2 = 18 #b2 = 15 ## z = pi/6 sig0 = dist[0]* atan2(30*pi/180) sig1 = dist[1]* atan2(30*pi/180) lamb1 = b1*exp(-(dist[0]-r0)/b2) lamb2 = b1*exp(-(dist[1]-r0)/b2) fr1 = -(lamb1*z*exp(-(z**2)/(sig0)**2)) fr2 = -(lamb2*z*exp(-(z**2)/(sig0)**2)) Fobs = fr1 + fr2 return = Fobs #def FStochastic(): #do something useful here # Fstoch=0 # return Fstoch #def FOrienting(): #do something useful here # Forient=0 # return Forient Q = .00001 S = 999 # sensor at t=0 R = 0.1**2 # var(sensor) def Kalman(S, Bel): # from MATLAB code # s.x = s.A*s.x + s.B*s.u; # s.P = s.A * s.P * s.A' + s.Q; # % Compute Kalman gain factor: # K = s.P*s.H'*inv(s.H*s.P*s.H'+s.R); # % Correction based on observation: # s.x = s.x + K*(s.z-s.H*s.x); # s.P = s.P - K*s.H*s.P; x_prev = S x = S p_prev = Bel p = Bel + Q K = p_prev/(p_prev + R) x = x_prev + K * x_prev p = (1 - K) * p_prev S = x Bel = p return S, Bel def compute_velocity(sonar_distance_left, sonar_distance_right): max_velocity = 1.0 max_distance = 0.5 #m min_distance = 0.2 #m if sonar_distance_left>max_distance and sonar_distance_right > max_distance: velocity = max_velocity obs=False stop=False print "Nominal movements" elif sonar_distance_left<min_distance or sonar_distance_right < min_distance: velocity = 0.0 obs=True stop=True print "Imminent obstacle detected" elif sonar_distance_left<sonar_distance_right: velocity = max_velocity*sonar_distance_left/max_distance else: velocity = max_velocity*sonar_distance_right/max_distance return velocity def compute_turnrate(target_dist, target_angle, sonar_distance_left, sonar_distance_right): max_turnrate = 0.349 #rad/s delta_t = 0.01 # may need adjustment! sonar_angle_left = 30 * degree sonar_angle_right = -30 * degree Fobs_left = FObstacle(sonar_distance_left, sonar_angle_left) Fobs_right = FObstacle(sonar_distance_right, sonar_angle_right) FTotal = FTarget(target_dist, target_angle) + Fobs_left + Fobs_right + FOrienting() + FStochastic() # turnrate: d phi(t) / dt = sum( forces ) turnrate = Ftotal*delta_t #normalise turnrate value if turnrate>max_turnrate: turnrate=1.0 else: turnrate=turnrate/max_turnrate return turnrate def StiffnessOn(proxy): # We use the "Body" name to signify the collection of all joints pNames = "Body" pStiffnessLists = 1.0 pTimeLists = 1.0 proxy.stiffnessInterpolation(pNames, pStiffnessLists, pTimeLists) def main(robotIP): try: motionProxy = ALProxy("ALMotion", robotIP, 9559) except Exception, e: print ("Could not create proxy to ALMotion") print ("Error was: ") # Set NAO in stiffness On StiffnessOn(motionProxy) ##################### ## Enable arms control by move algorithm ##################### motionProxy.setWalkArmsEnabled(True, True) #~ motionProxy.setWalkArmsEnabled(False, False) ##################### ## FOOT CONTACT PROTECTION ##################### #~ motionProxy.setMotionConfig([["ENABLE_FOOT_CONTACT_PROTECTION",False]]) motionProxy.setMotionConfig([["ENABLE_FOOT_CONTACT_PROTECTION", True]]) ##################### ## get robot position before move ##################### initRobotPosition = m.Pose2D(motionProxy.getRobotPosition(False)) X = 0.3 Y = 0.0 Theta = math.pi/2.0 motionProxy.post.moveTo(X, Y, Theta) # wait is useful because with post moveTo is not blocking function motionProxy.waitUntilMoveIsFinished() ##################### ## get robot position after move ##################### endRobotPosition = m.Pose2D(motionProxy.getRobotPosition(False)) ##################### ## compute and print the robot motion ##################### robotMove = m.pose2DInverse(initRobotPosition)*endRobotPosition print ("Robot Move :") if __name__ == "__main__": robotIp = "127.0.0.1" if len(sys.argv) <= 1: print ("Usage python motion_moveTo.py robotIP (optional default: 127.0.0.1)") else: robotIp = sys.argv[1] main(robotIp)
try: import tilde except ImportError: import os, sys chk_path = os.path.realpath(os.path.normpath(os.path.join( os.path.dirname(os.path.abspath(__file__)), "../" ))) if not chk_path in sys.path: sys.path.insert(0, chk_path)
from matplotlib import mlab import numpy as np def estimate_decoder(time,s,r,dt,nfft=2**12): ''' Estimates the decoding kernel K and reconstructs the original stimuls Inputs: time: time vector s: stimulus r: response dt: sampling period nfft: number of datapoints to be used for spectral estimation (window length) Outputs: k: the decoding kernel (length of the nfft) k_time: the time vector of the decoding kernel (length of the nfft) s_est: the estimated stimulus (length of s and r minus a window length) s_est_time: time vector for s_est NOTE: we discard data points 0:nfft/2 and -nnft2:end due to boundary effects ''' Fs=1/dt # sampling frequency # compute the cross spectrum between response and stimulus Qf_rs, freqs = mlab.csd(r,s,nfft,Fs=Fs) Qf_rs*=dt # computes the response power spectrum Qf_rr, freqs = mlab.psd(r,nfft,Fs=Fs) Qf_rr*=dt # take the ratio Kf = Qf_rs/Qf_rr # we need to add negative frequency with (conjugate values) to comply to the input # requirements of the ifft function Kf= np.hstack([Kf,Kf[::-1].conj()[1:-1]]) k = np.fft.fftshift(np.fft.ifft(Kf).real)/dt k_time=(np.arange(nfft)-int(nfft/2))*dt # compute estimated stimulus s_est=np.convolve(r,k,'same')*dt # crop s_est and time vector appropriately s_est = s_est[int(nfft/2):int(-nfft/2)] s_est_time = time[int(nfft/2):int(-nfft/2)]-dt return k,k_time,s_est,s_est_time
from pydantic import BaseModel import json class KubeConfigRequest(BaseModel): userId: str configString: str def toJSON(self): return json.dumps(self, default=lambda o: o.__dict__, sort_keys=True, indent=4)
from __future__ import print_function from hashlib import sha1 from rdflib import Graph import re import requests import sys import os import ssl from urllib.parse import urlparse, quote from urllib.request import urlopen from .constants import EXT_BINARY_INTERNAL, EXT_BINARY_EXTERNAL, \ LDP_NON_RDF_SOURCE, MINIMAL_HEADER from .utils import get_data_dir, replace_strings_in_file class Resource(object): """Common properties of any resource.""" def __init__(self, inputpath, config, logger, console): self.config = config self.origpath = inputpath self.logger = logger self.console = console self.data_dir = get_data_dir(config) def fetch_headers(self, origpath, auth): return requests.head(url=origpath, auth=auth) def _calculate_sha1(self, stream): sh = sha1() while True: data = stream.read(8192) if not data: break sh.update(data) return sh.hexdigest() class FedoraResource(Resource): """Properties and methods for a resource in a Fedora repository.""" def __init__(self, inputpath, config, logger, console): Resource.__init__(self, inputpath, config, logger, console) self.location = "fedora" self.relpath = urlparse(self.origpath).path.rstrip("/") head_response = self.fetch_headers(self.origpath, self.config.auth) # handle various HTTP responses if head_response.status_code == 200: self.is_reachable = True self.headers = head_response.headers if inputpath.endswith("/fcr:versions"): # before fcrepo-4.8.0, fcr:versions does have ldp_type in # the header # todo remove when FCREPO-2511 is resolved in all supported # versions of fcrepo4 core. self.ldp_type = "http://www.w3.org/ns/ldp#RDFSource" else: self.ldp_type = head_response.links["type"]["url"] self.external = False elif head_response.status_code == 307: self.is_reachable = True self.headers = head_response.headers self.ldp_type = head_response.links["type"]["url"] self.external = True elif head_response.status_code in [401, 403, 404, 405]: self.is_reachable = False self.type = "unknown" else: self.console.error("Unexpected response from Fedora") sys.exit(1) # analyze resources that can be reached if self.is_binary(): self.type = "binary" self.metadata = self.origpath + "/fcr:metadata" if self.external: content_type = self.headers["Content-Type"] p = re.compile('.*url=\"(.*)\"') url = p.match(content_type).group(1) self.sha1 = self._calculate_sha1_from_uri(url) else: self.sha1 = self.lookup_sha1() if self.external: self.destpath = quote( (self.data_dir + self.relpath + EXT_BINARY_EXTERNAL) ) else: self.destpath = quote( (self.data_dir + self.relpath + EXT_BINARY_INTERNAL) ) else: self.type = "rdf" self.destpath = quote( (self.data_dir + self.relpath + self.config.ext) ) response = requests.get(self.origpath, auth=self.config.auth) minimal_resp = requests.get( self.origpath, auth=self.config.auth, headers=MINIMAL_HEADER ) if response.status_code == 200 and minimal_resp.status_code == 200: self.graph = Graph().parse( data=response.text, format="text/turtle" ) self.minimal = Graph().parse( data=minimal_resp.text, format="text/turtle" ) self.server_managed = self.graph - self.minimal else: self.console.error("Cannot verify RDF resource!") def is_binary(self): return self.ldp_type == LDP_NON_RDF_SOURCE def filter_binary_refs(self): for (s, p, o) in self.graph: if o.startswith(self.config.repobase) and \ FedoraResource(o, self.config, self.logger).is_binary(): self.graph.remove((s, p, o)) def lookup_sha1(self): result = "" response = requests.get(self.metadata, auth=self.config.auth) if response.status_code == 200: m = re.search( r"premis:hasMessageDigest[\s]+<urn:sha1:(.+?)>", response.text ) result = m.group(1) if m else "" return result def _calculate_sha1_from_uri(self, uri): gc_context = ssl.SSLContext(ssl.PROTOCOL_TLSv1) with urlopen(uri, context=gc_context) as u: return self._calculate_sha1(u) class LocalResource(Resource): """Properties and methods for a resource serialized to disk.""" def __init__(self, inputpath, config, logger, console): Resource.__init__(self, inputpath, config, logger, console) self.location = "local" self.relpath = self.origpath[len(self.data_dir):] self.mapfrom = self.config.mapFrom self.mapto = self.config.mapTo self.type = "unknown" if self.is_binary(): self.type = "binary" self.external = False if self.origpath.endswith(EXT_BINARY_EXTERNAL): self.external = True if self.external: self.destpath = self._resolve_dest_path(EXT_BINARY_EXTERNAL) else: self.destpath = self._resolve_dest_path(EXT_BINARY_INTERNAL) self.sha1 = self._calculate_sha1_from_file(self.origpath) elif self.origpath.startswith(self.data_dir) and \ self.origpath.endswith(config.ext): self.type = "rdf" self.destpath = self._resolve_dest_path(config.ext) # replace mapfrom with mapto if mapped otherwise load origpath localfilepath = self.origpath if self.config.mapFrom is not None: localfilepath = replace_strings_in_file(self.origpath, self.mapfrom, self.mapto) self.graph = Graph().parse( location=localfilepath, format=config.lang ) if self.config.mapFrom is not None: os.remove(localfilepath) else: msg = "RDF resource lacks expected extension!".format( self.origpath) self.logger.error(msg) def _resolve_dest_path(self, suffix): # remove suffix of relpath relative_path = self.relpath[:-len(suffix)] # if mapped if self.mapfrom is not None: # reconstruct source uri sourceuri = self._get_base_uri(urlparse(self.mapfrom)) + \ relative_path return sourceuri.replace(self.mapfrom, self.mapto) else: desturlinfo = urlparse(self.config.repo) return self._get_base_uri(desturlinfo) + relative_path def _get_base_uri(self, urlinfo): return urlinfo.scheme + "://" + urlinfo.netloc def is_binary(self): if self.origpath.endswith(EXT_BINARY_INTERNAL) or \ self.origpath.endswith(EXT_BINARY_EXTERNAL): return True else: return False def _calculate_sha1_from_file(self, file_path): with open(file_path, "rb") as f: return self._calculate_sha1(f)
from unittest.mock import MagicMock from pytest import fixture from slacknewsbot.app import GetHN SLACK_TEXT = "Top 3 from HackerNews:\n>*<https://news.ycombinator.com/item?id=1|1>* - <abc|bcd>" @fixture() def obj(): obj = GetHN.__new__(GetHN) obj.logger = MagicMock() return obj def test_should_create_hn_text(obj): obj.get_top_stories = MagicMock( return_value=[{ "id": 1, "score": 1, "url": "abc", "title": "bcd" }] ) assert obj.create_hn_text() == SLACK_TEXT # TODO: Add more tests
#!/usr/bin/env python # -*- encoding: utf-8 -*- # vim: set et sw=4 ts=4 sts=4 ff=unix fenc=utf8: # Author: Binux<i@binux.me> # http://binux.me # Created on 2014-07-30 12:22:47 import os,sys sys.path.append(os.path.abspath(os.path.dirname(os.path.dirname(__file__))))
"""Notelist CLI Setup script.""" import setuptools as st if __name__ == "__main__": with open("README.md") as f: long_desc = f.read() st.setup( name="notelist-cli", version="0.3.0", description="Command line interface for the Notelist API", author="Jose A. Jimenez", author_email="jajimenezcarm@gmail.com", license="MIT", long_description=long_desc, long_description_content_type="text/markdown", url="https://github.com/jajimenez/notelist-cli", classifiers=[ "Programming Language :: Python :: 3", "Operating System :: OS Independent", "License :: OSI Approved :: MIT License" ], python_requires=">=3.9.0", install_requires=[ "click==8.0.3", "requests==2.26.0", "userconf==0.4.0" ], packages=[ "notelist_cli" ], package_dir={ "notelist_cli": "src/notelist_cli" }, entry_points={ "console_scripts": [ "notelist-cli=notelist_cli:main" ] } )
from __future__ import annotations from typing import TYPE_CHECKING, Any, Dict, List, Optional import psycopg2 from sqlalchemy.dialects import postgresql from local_data_api.models import ColumnMetadata from local_data_api.resources.resource import Resource, register_resource_type if TYPE_CHECKING: # pragma: no cover from local_data_api.resources.resource import ConnectionMaker, Cursor @register_resource_type class PostgresSQL(Resource): def create_column_metadata_set( self, cursor: Cursor ) -> List[ColumnMetadata]: # pragma: no cover raise NotImplementedError DIALECT = postgresql.dialect(paramstyle='named') @classmethod def create_connection_maker( cls, host: Optional[str] = None, port: Optional[int] = None, user_name: Optional[str] = None, password: Optional[str] = None, engine_kwargs: Dict[str, Any] = None, ) -> ConnectionMaker: kwargs: Dict[str, Any] = {} if host: kwargs['host'] = host if port: kwargs['port'] = port if user_name: kwargs['user'] = user_name if password: kwargs['password'] = password if engine_kwargs: kwargs.update(engine_kwargs) def connect(database: Optional[str] = None): # type: ignore if database: kwargs['dbname'] = database return psycopg2.connect(**kwargs) return connect
import collections import bs4 import tornado import tornado.httpclient import tornado.ioloop from tqdm import tqdm import common.mongo import common.settings # taken from https://github.com/tornadoweb/tornado/issues/1400 class BacklogClient(object): def __init__(self): self.max_concurrent_requests = common.settings.urls.getint("MaxConcurrentRequests") self.client = tornado.httpclient.AsyncHTTPClient(max_clients=self.max_concurrent_requests) self.client.configure(None, defaults=dict(connect_timeout=common.settings.urls.getint("ConnectTimeout"), request_timeout=common.settings.urls.getint("RequestTimeout"))) self.backlog = collections.deque() self.concurrent_requests = 0 def __get_callback(self, func): def wrapped(*args, **kwargs): self.concurrent_requests -= 1 self.try_run_request() return func(*args, **kwargs) return wrapped def try_run_request(self): while self.backlog and self.concurrent_requests < self.max_concurrent_requests: request, callback = self.backlog.popleft() self.client.fetch(request, callback=callback) self.concurrent_requests += 1 def fetch(self, request, callback=None): wrapped = self.__get_callback(callback) self.backlog.append((request, wrapped)) self.try_run_request() class UrlFetcher: def __init__(self): self.backlog = BacklogClient() def handle_request(self, response, url): self.tqdm.update(1) try: soup = bs4.BeautifulSoup(response.body) url["text"] = soup.title.string common.mongo.urls_collection.update_one({"id_str": url["id_str"]}, {"$set": url}) except Exception: if common.settings.urls.getboolean("RemoveUrlNotFound"): common.mongo.urls_collection.remove({"id_str": url["id_str"]}) if not self.backlog.backlog and self.backlog.concurrent_requests == 0: tornado.ioloop.IOLoop.instance().stop() def _start_fetch(self, url): self.backlog.fetch(tornado.httpclient.HTTPRequest(url["expanded_url"], method='GET', headers=None), lambda response: self.handle_request(response, url)) def launch(self, urls): print("filling urls") self.tqdm = tqdm(total=len(urls)) for url in urls: self._start_fetch(url) tornado.ioloop.IOLoop.current().start() def urls(): UrlFetcher().launch(common.mongo.get_urls()) if __name__ == "__main__": urls()
# encoding: utf-8 """ @author: yp @software: PyCharm @file: num_to_rmb.py @time: 2019/8/21 0021 10:17 """ ''' 把一个浮点数分解成整数部分和小数部分字符串 num 需要被分解的浮点数 返回分解出来的整数部分和小数部分。 第一个数组元素是整数部分,第二个数组元素是小数部分 ''' def divide(num): # 将一个浮点数强制类型转换为int型,即得到它的整数部分 integer = int(num) # 浮点数减去整数部分,得到小数部分,小数部分乘以100后再取整得到2位小数 fraction = round((num - integer) * 100) # 下面把整数转换为字符串 return (str(integer), str(fraction)) han_list = ["零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖"] unit_list = ["十", "百", "千"] ''' 把一个四位的数字字符串变成汉字字符串 num_str 需要被转换的四位的数字字符串 返回四位的数字字符串被转换成汉字字符串 ''' def four_to_hanstr(num_str): result = "" num_len = len(num_str) # 依次遍历数字字符串的每一位数字 for i in range(num_len): # 把字符串转成数值 num = int(num_str[i]) # 如果不是最后一位数字,而且数字不是零,则需要添加单位(千、百、十) if i != num_len - 1 and num != 0: result += han_list[num] + unit_list[num_len - 2 - i] # 否则不要添加单位 else: result += han_list[num] return result ''' 把数字字符串变成汉字字符串 num_str 需要被转换的数字字符串 返回数字字符串被转换成汉字字符串 ''' def integer_to_sfr(num_str): str_len = len(num_str) if str_len > 12: print('数字太大,翻译不了') return # 如果大于8位,包含单位亿 elif str_len > 8: return four_to_hanstr(num_str[:-8]) + "亿" + \ four_to_hanstr(num_str[-8: -4]) + "万" + \ four_to_hanstr(num_str[-4:]) # 如果大于4位,包含单位万 elif str_len > 4: return four_to_hanstr(num_str[:-4]) + "万" + \ four_to_hanstr(num_str[-4:]) else: return four_to_hanstr(num_str) num = float(input("请输入一个浮点数: ")) # 测试把一个浮点数分解成整数部分和小数部分 integer, fraction = divide(num) # 测试把一个四位的数字字符串变成汉字字符串 print(integer_to_str(integer)) print(fraction)
#No phi nodes are placed # we need a case when no phi function placed for different blocks c = 10 if c: print(c) else: t = 0 print(t)
from django.core.management.base import BaseCommand from edge.models.genome import Genome from edge.io import IO class Command(BaseCommand): def handle(self, *args, **options): if len(args) != 2: raise Exception("Expecting integer genome ID and filename as arguments") try: genome_id = int(args[0]) except BaseException: raise Exception("Expecting integer genome ID and filename as arguments") io = IO(Genome.objects.get(pk=genome_id)) io.to_gff(args[1])
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 from copy import deepcopy from dataclasses import asdict from typing import List, Dict import os from pre_wigs_validation.enums import ( ValidationConfig, ValidationResult, ValidationEnforcement, ) from pre_wigs_validation.dataclasses import ValidationOutput, FinalOutput def sanitize_json(final_output: FinalOutput) -> Dict: """Remove newline characters from data before writing to JSON.""" final_output_copy = deepcopy(final_output) for output in final_output_copy.validation_outputs: if output.message is not None: output.message = output.message.replace("\n", "") return asdict(final_output_copy) def check_validation_config( default_params: List, local_params: List ) -> ValidationConfig: """ Compare the passed parameter values of a validation function to its default parameter values. """ custom = False for kw in default_params: if not (default_params[kw] == local_params[kw]): custom = True return ValidationConfig.CUSTOM if custom else ValidationConfig.DEFAULT def get_final_output(outputs: List[ValidationOutput]) -> FinalOutput: """Return the final result of the pre-validation.""" custom = False partial_pass = False failed = False pass_count = 0 errored = False for validation_output in outputs: if validation_output.config is ValidationConfig.CUSTOM: custom = True if validation_output.result is ValidationResult.PASS: pass_count += 1 elif validation_output.result is ValidationResult.ERROR: errored = True else: if validation_output.enforcement is ValidationEnforcement.RECOMMENDED: partial_pass = True else: failed = True if errored: final_result = ValidationResult.ERROR message = "Unexpected error during validation" elif failed: final_result = ValidationResult.FAIL message = "Not ready for ingestion" elif partial_pass: final_result = ValidationResult.PASS message = ( "Passed base requirements for ingestion," " but not may be fully optimized" ) else: final_result = ValidationResult.PASS message = "Ready for ingestion" if custom: config = ValidationConfig.CUSTOM message += ". Warning, custom config may affect final result" else: config = ValidationConfig.DEFAULT return FinalOutput( final_result=final_result, config=config, pass_count=pass_count, total_count=len(outputs), message=message, validation_outputs=outputs, ) def get_ld_library_orig() -> Dict: env = dict(os.environ) # make a copy of the environment lp_key = "LD_LIBRARY_PATH" # for GNU/Linux and *BSD. lp_orig = env.get(lp_key + "_ORIG") if lp_orig is not None: env[lp_key] = lp_orig # restore the original, unmodified value else: # This happens when LD_LIBRARY_PATH was not set. # Remove the env var as a last resort: env.pop(lp_key, None) return env
"""Tests for the AsyncJob web API.""" import json import re import time import pytest from yeti.core.asyncjob import get_active_jobs @pytest.yield_fixture(autouse=True) def wait_for_jobs(): """Faits for active jobs to complete before each test run.""" while get_active_jobs(): time.sleep(0.1) @pytest.mark.usefixtures('clean_db', 'populate_feeds') def test_execute(authenticated_client): """Test that an existing feed can be executed""" rv = authenticated_client.post('/api/async/FastDummyFeed/execute') response = json.loads(rv.data) assert response['status'] == 'queued' assert 'FastDummyFeed' in response['msg'] # expecting a UUID: d18e0132-7271-4597-8fb3-8a2624f4059e assert re.match(r'[a-f0-9-]+', response['job_id']) @pytest.mark.usefixtures('clean_db', 'populate_feeds') def test_execute_duplicate(authenticated_client): """Test that a feed cannot be run in parallel""" rv = authenticated_client.post('/api/async/FastDummyFeed/execute') rv = authenticated_client.post('/api/async/FastDummyFeed/execute') rv = authenticated_client.post('/api/async/FastDummyFeed/execute') response = json.loads(rv.data) assert 'GenericYetiError' in response assert rv.status_code == 409 assert '~"FastDummyFeed"' in response['GenericYetiError'] @pytest.mark.usefixtures('clean_db', 'populate_feeds') def test_execute_nonexistent(authenticated_client): """Test that executing a nonexistent feed generates an error.""" rv = authenticated_client.post('/api/async/nonexistent/execute') response = json.loads(rv.data) assert response['GenericYetiError'] == \ 'nonexistent is not a registered AsyncJob' assert rv.status_code == 404 @pytest.mark.usefixtures('clean_db') def test_filter(populate_feeds, authenticated_client): """Test that asyncJobs can be filtered by name.""" rv = authenticated_client.post('/api/async/filter', json={'name': 'DummyFeed'}) response = json.loads(rv.data) assert len(response) == len(populate_feeds) @pytest.mark.usefixtures('clean_db', 'populate_feeds') def test_filter_errors(authenticated_client): """Test that incorrect filtering generates a ValidationError / HTTP 400.""" rv = authenticated_client.post('/api/async/filter', json={}) response = json.loads(rv.data) assert 'ValidationError' in response assert rv.status_code == 400 @pytest.mark.usefixtures('clean_db', 'populate_feeds') def test_toggle(authenticated_client): """Test that a feed can be toggled.""" rv = authenticated_client.post('/api/async/FastDummyFeed/toggle') response = json.loads(rv.data) assert response['enabled'] assert 'FastDummyFeed' in response['msg'] rv = authenticated_client.post('/api/async/filter', json={'name': 'FastDummyFeed'}) response = json.loads(rv.data) assert response[0]['enabled'] rv = authenticated_client.post('/api/async/filter', json={'name': 'SlowDummyFeed'}) response = json.loads(rv.data) assert not response[0]['enabled'] @pytest.mark.usefixtures('clean_db', 'populate_feeds') def test_toggle_nonexistent(authenticated_client): """Test that toggling a nonexistent feed generates an error.""" rv = authenticated_client.post('/api/async/nonexistent/toggle') response = json.loads(rv.data) assert 'GenericYetiError' in response assert rv.status_code == 404 @pytest.mark.usefixtures('clean_db', 'populate_feeds') def test_info(authenticated_client): """Test that we can get information on a job.""" rv = authenticated_client.post('/api/async/FastDummyFeed/execute') response = json.loads(rv.data) assert 'job_id' in response jobid = response['job_id'] time.sleep(0.1) rv = authenticated_client.get('/api/async/info/' + jobid) response = json.loads(rv.data) assert response['meta']['name'] == 'FastDummyFeed' assert response['status'] in ['queued', 'started'] @pytest.mark.usefixtures('clean_db', 'populate_feeds') def test_info_nonexistent(authenticated_client): """Test that getting information on a nonexistent job generates an error.""" rv = authenticated_client.get('/api/async/info/d18e0132-0000-0000-0000-8a2624f4059e') response = json.loads(rv.data) assert 'GenericYetiError' in response assert response['GenericYetiError'] == \ 'Job ID d18e0132-0000-0000-0000-8a2624f4059e is not an active job' assert rv.status_code == 404 @pytest.mark.usefixtures('clean_db', 'populate_feeds') def test_get_activejobs(authenticated_client): """Test that getting information on a nonexistent job generates an error.""" rv = authenticated_client.post('/api/async/SlowDummyFeed/execute') time.sleep(0.1) rv = authenticated_client.get('/api/async/active') response = json.loads(rv.data) assert len(response) == 1
""" 26. Remove Duplicates from Sorted Array Given a sorted array nums, remove the duplicates in-place such that each element appear only once and return the new length. Do not allocate extra space for another array, you must do this by modifying the input array in-place with O(1) extra memory. """ class Solution: # Runtime: 84 ms, faster than 95.52% of Python3 online submissions for Remove Duplicates from Sorted Array. # Memory Usage: 14.4 MB, less than 100.00% of Python3 online submissions for Remove Duplicates from Sorted Array. def removeDuplicates(self, nums): # nums: List[int] # return: int length = len(nums) # Arrays of none or one values do not need to be de-duplicated if length in (0,1): return length # Keep track of uniques unique = 0 # Iterate over list. # If the next value is different from current, this marks the end # of repetitions of the current value, and we can set it to the # unique counter's position. # In this way, all values behind current will be uniques in order. for i in range(length-1): if nums[i] != nums[i+1]: nums[unique] = nums[i] unique += 1 # Thus the i+1 value from above is unique too, # and is placed at the next position. nums[unique] = nums[length-1] # Slice list to include only uniques nums = nums[:unique+1] return len(nums) if __name__ == '__main__': solution = Solution() print(solution.removeDuplicates([1,1,2])) print(solution.removeDuplicates([0,0,1,1,1,2,2,3,3,4])) print(solution.removeDuplicates([1,1])) print(solution.removeDuplicates([1,1,1]))
import asyncio import pytest from click.testing import CliRunner from unittest.mock import Mock from asynctest import CoroutineMock from netcfgbu.cli import probe @pytest.fixture(autouse=True) def _always(netcfgbu_envars, files_dir, monkeypatch): test_inv = files_dir.joinpath("test-small-inventory.csv") monkeypatch.setenv("NETCFGBU_INVENTORY", str(test_inv)) def test_cli_probe_pass(monkeypatch): mock_probe = Mock() monkeypatch.setattr(probe, "exec_probe", mock_probe) runner = CliRunner() res = runner.invoke(probe.cli_check, obj={}) assert res.exit_code == 0 assert mock_probe.called call_args = mock_probe.mock_calls[0].args inv_rec = call_args[0] assert len(inv_rec) == 6 def test_cli_probe_pass_exec(monkeypatch, log_vcr): mock_probe = CoroutineMock() monkeypatch.setattr(probe, "probe", mock_probe) monkeypatch.setattr(probe, "get_logger", Mock(return_value=log_vcr)) runner = CliRunner() res = runner.invoke(probe.cli_check, obj={}) assert res.exit_code == 0 logs = log_vcr.handlers[0].records[1:] assert all("PASS" in log.msg for log in logs) def test_cli_probe_fail_exec(monkeypatch, log_vcr): mock_probe = CoroutineMock() mock_probe.side_effect = asyncio.TimeoutError monkeypatch.setattr(probe, "probe", mock_probe) monkeypatch.setattr(probe, "get_logger", Mock(return_value=log_vcr)) runner = CliRunner() res = runner.invoke(probe.cli_check, obj={}) assert res.exit_code == 0 logs = log_vcr.handlers[0].records[1:] assert all("FAIL" in log.msg for log in logs)
import mablane.bandits from mablane.bandits import BinomialBandit def test_binomial_bandit(): mablane.bandits._BinomialBandit.binomial = lambda n, p: n + p bandit = BinomialBandit(1) assert bandit.pull() == 2 bandit = BinomialBandit(1, 2) assert bandit.pull() == 3
import argparse import datetime import os import pickle import subprocess import numpy as np import pandas as pd from src.general.directory_handling import make_and_cd from simulation_parameters import BindingParameters class ParameterTesting(object): def __init__(self, steps=8, lf=30): self.binding_constants = BindingParameters() self.lf = lf self.sub_directories = ["Ls", "Ls_Lf_{0}".format(self.lf)] self.steps = steps self.paths = [] self.parameters = [] self.home_directory = os.getcwd() self.simulation_name = "ODE_steps_" + str(self.steps) self.simulation_time = 10 def generate_qsub(self, self_foreign=False): q = open("qsub.sh", "w") q.write("#PBS -m ae\n") q.write("#PBS -q short\n") q.write("#PBS -V\n") q.write("#PBS -l walltime={1},nodes=1:ppn=2 -N {0}\n\n".format(self.simulation_name, datetime.timedelta( minutes=self.simulation_time))) q.write("cd $PBS_O_WORKDIR\n") q.write("echo $PBS_JOBID > job_id\n\n") if self_foreign: q.write( "python ~/SSC_python_modules/pysb_t_cell_network.py --steps {0} --lf {1}\n".format( self.steps, self.lf)) else: q.write("python ~/SSC_python_modules/pysb_t_cell_network.py --steps {0}".format(self.steps)) q.close() def launch(self): (stdout, stderr) = subprocess.Popen(["qsub {0}".format("qsub.sh")], shell=True, stdout=subprocess.PIPE, cwd=os.getcwd()).communicate() def make_launch_simulations(self, set): home = os.getcwd() for directory in self.sub_directories: make_and_cd(directory) pickle_out = open("parameters.pickle", "wb") pickle.dump(set, pickle_out) pickle_out.close() if directory == "Ls_Lf_{0}".format(self.lf): self.generate_qsub(self_foreign=True) else: self.generate_qsub() if args.run: self.launch() os.chdir(home) def create_submit(self, count, param_grid): file_path = "{0}_step_{1}".format(self.steps, count) self.paths.append(file_path) print("param_grid " + str(param_grid)) self.parameters.append(str(param_grid)) make_and_cd(file_path) self.make_launch_simulations(param_grid) os.chdir(self.home_directory) def run_neg_fb_parameter_search(self): count = 0 on_rates = [0.5, 1.0, 2.0, 3.0, 5.0] negative_fb = [0.0, 0.001, 0.01, 0.05, 0.1] param_grid = {} for on_rate in on_rates: param_grid['k_lck_on_RL'] = on_rate / self.binding_constants.initial.lck_0 param_grid['k_p_on_R_pmhc'] = on_rate param_grid['k_zap_on_R_pmhc'] = on_rate / self.binding_constants.initial.zap_0 param_grid['k_p_on_zap_species'] = on_rate param_grid['k_lat_on_species'] = on_rate / self.binding_constants.initial.lat_0 param_grid['kp_on_lat1'] = on_rate param_grid['k_p_lat_on_species'] = on_rate / 10.0 for i in negative_fb: param_grid['k_neg_fb'] = i param_grid['k_lcki'] = 0.01 self.create_submit(count, param_grid) count += 1 df = pd.DataFrame({'file_path': self.paths}) df.to_csv("./file_paths", sep='\t') df_2 = pd.DataFrame({'file_path': self.paths, 'parameters': self.parameters}) df_2.to_csv("./parameters", sep='\t') pickle_out = open("parameter_range.pickle", "wb") pickle.dump(param_grid, pickle_out) pickle_out.close() def run_real_neg_fb_parameter_search(self): count = 0 on_rates = [0.5, 1.0, 2.0, 3.0, 5.0] negative_fb = [0.01, 0.005, 0.001, 0.0005, 0.0001] param_grid = {} for on_rate in on_rates: param_grid['k_lck_on_RL'] = on_rate / self.binding_constants.initial.lck_0 param_grid['k_p_on_R_pmhc'] = on_rate param_grid['k_zap_on_R_pmhc'] = on_rate / self.binding_constants.initial.zap_0 param_grid['k_p_on_zap_species'] = on_rate param_grid['k_lat_on_species'] = on_rate / self.binding_constants.initial.lat_0 param_grid['kp_on_lat1'] = on_rate param_grid['k_p_lat_on_species'] = on_rate / 10.0 for i in negative_fb: param_grid['k_lcki'] = i self.create_submit(count, param_grid) count += 1 df = pd.DataFrame({'file_path': self.paths}) df.to_csv("./file_paths", sep='\t') df_2 = pd.DataFrame({'file_path': self.paths, 'parameters': self.parameters}) df_2.to_csv("./parameters", sep='\t') pickle_out = open("parameter_range.pickle", "wb") pickle.dump(param_grid, pickle_out) pickle_out.close() def run_parameter_search(self): count = 0 on_rates = np.linspace(0.5, 5.0, 10) discount = [1.0, 5.0, 10.0, 50.0, 100.0] param_grid = {} for on_rate in on_rates: param_grid['k_lck_on_RL'] = on_rate / self.binding_constants.initial.lck_0 param_grid['k_p_on_R_pmhc'] = on_rate param_grid['k_zap_on_R_pmhc'] = on_rate / self.binding_constants.initial.zap_0 param_grid['k_p_on_zap_species'] = on_rate param_grid['k_lat_on_species'] = on_rate / self.binding_constants.initial.lat_0 param_grid['kp_on_lat1'] = on_rate if self.steps > 7: for i in discount: param_grid['kp_on_lat2'] = on_rate / i self.create_submit(count, param_grid) count += 1 else: self.create_submit(count, param_grid) count += 1 df = pd.DataFrame({'file_path': self.paths}) df.to_csv("./file_paths", sep='\t') df_2 = pd.DataFrame({'file_path': self.paths, 'parameters': self.parameters}) df_2.to_csv("./parameters", sep='\t') pickle_out = open("parameter_range.pickle", "wb") pickle.dump(param_grid, pickle_out) pickle_out.close() # def run_tests(self): # paths = [] # parameters = [] # # count = 0 # home_directory = os.getcwd() # # for set in list(self.grid): # file_path = "{0}_step_{1}".format(self.steps, count) # paths.append(file_path) # parameters.append(str(set)) # # make_and_cd(file_path) # self.make_launch_simulations(set) # os.chdir(home_directory) # # count += 1 # # df = pd.DataFrame({'file_path': paths}) # df.to_csv("./file_paths", sep='\t') # # df_2 = pd.DataFrame({'file_path': paths, 'parameters': parameters}) # df_2.to_csv("./parameters", sep='\t') # # pickle_out = open("parameter_range.pickle", "wb") # pickle.dump(self.param_grid, pickle_out) # pickle_out.close() if __name__ == "__main__": parser = argparse.ArgumentParser(description="Submitting ode calculations as function of steps", formatter_class=argparse.ArgumentDefaultsHelpFormatter) parser.add_argument('--steps', dest='steps', action='store', type=int, default=8, help="number of KP steps.") parser.add_argument('--run', action='store_true', default=False, help='Flag for submitting simulations.') parser.add_argument('--lf', dest='lf', action='store', type=int, default=10, help="number of foreign ligands.") args = parser.parse_args() p_test = ParameterTesting(steps=args.steps, lf=args.lf) p_test.run_real_neg_fb_parameter_search()
#!/usr/bin/env python # Copyright 2016-2019 Biomedical Imaging Group Rotterdam, Departments of # Medical Informatics and Radiology, Erasmus MC, Rotterdam, The Netherlands # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from sklearn.base import BaseEstimator from sklearn.feature_selection.base import SelectorMixin import numpy as np class SelectGroups(BaseEstimator, SelectorMixin): ''' Object to fit feature selection based on the type group the feature belongs to. The label for the feature is used for this procedure. ''' def __init__(self, parameters): ''' Parameters ---------- parameters: dict, mandatory Contains the settings for the groups to be selected. Should contain the settings for the following groups: - histogram_features - shape_features - orientation_features - semantic_features - patient_features - coliage_features - phase_features - vessel_features - log_features - texture_Gabor_features - texture_GLCM_features - texture_GLCMMS_features - texture_GLRLM_features - texture_GLSZM_features - texture_NGTDM_features - texture_LBP_features ''' params = list() if parameters['histogram_features'] == 'True': params.append('hf_') if parameters['shape_features'] == 'True': params.append('sf_') if parameters['orientation_features'] == 'True': params.append('of_') if parameters['semantic_features'] == 'True': params.append('semf_') if parameters['patient_features'] == 'True': params.append('pf_') if parameters['coliage_features'] == 'True': params.append('cf_') if parameters['phase_features'] == 'True': params.append('phasef_') if parameters['vessel_features'] == 'True': params.append('vf_') if parameters['log_features'] == 'True': params.append('logf_') if 'texture_features' in parameters.keys(): # Backwards compatability if parameters['texture_features'] == 'True': params.append('tf_') elif parameters['texture_features'] == 'False': pass else: params.append('tf_' + parameters['texture_features']) else: # Hyperparameter per feature group if parameters['texture_gabor_features'] == 'True': params.append('tf_Gabor') if parameters['texture_glcm_features'] == 'True': params.append('tf_GLCM_') if parameters['texture_glcmms_features'] == 'True': params.append('tf_GLCMMS') if parameters['texture_glrlm_features'] == 'True': params.append('tf_GLRLM') if parameters['texture_glszm_features'] == 'True': params.append('tf_GLSZM') if parameters['texture_ngtdm_features'] == 'True': params.append('tf_NGTDM') if parameters['texture_lbp_features'] == 'True': params.append('tf_LBP') self.parameters = params def fit(self, feature_labels): ''' Select only features specificed by parameters per patient. Parameters ---------- feature_labels: list, optional Contains the labels of all features used. The index in this list will be used in the transform funtion to select features. ''' # Remove NAN selectrows = list() for num, l in enumerate(feature_labels): if any(x in l for x in self.parameters): selectrows.append(num) self.selectrows = selectrows def transform(self, inputarray): ''' Transform the inputarray to select only the features based on the result from the fit function. Parameters ---------- inputarray: numpy array, mandatory Array containing the items to use selection on. The type of item in this list does not matter, e.g. floats, strings etc. ''' return np.asarray([np.asarray(x)[self.selectrows].tolist() for x in inputarray]) def _get_support_mask(self): # NOTE: Method is required for the Selector class, but can be empty pass
# Copyright 2021 IBM All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """ URLS used by Alvearie FHIR extensions These are defined by https://alvearie.io/alvearie-fhir-ig/artifacts.html """ INSIGHT_CLASSIFICATION_URL = "http://ibm.com/fhir/cdm/insight/classification" INSIGHT_RESULT_URL = "http://ibm.com/fhir/cdm/StructureDefinition/insight-result" INSIGHT_SPAN_URL = "http://ibm.com/fhir/cdm/StructureDefinition/span" INSIGHT_SPAN_OFFSET_BEGIN_URL = ( "http://ibm.com/fhir/cdm/StructureDefinition/offset-begin" ) INSIGHT_SPAN_OFFSET_END_URL = "http://ibm.com/fhir/cdm/StructureDefinition/offset-end" INSIGHT_SPAN_COVERED_TEXT_URL = ( "http://ibm.com/fhir/cdm/StructureDefinition/covered-text" ) INSIGHT_CONFIDENCE_URL = ( "http://ibm.com/fhir/cdm/StructureDefinition/insight-confidence" ) INSIGHT_CONFIDENCE_SCORE_URL = "http://ibm.com/fhir/cdm/StructureDefinition/score" INSIGHT_CONFIDENCE_DESCRIPTION_URL = ( "http://ibm.com/fhir/cdm/StructureDefinition/description" ) INSIGHT_CONFIDENCE_SCORING_METHOD_URL = ( "http://ibm.com/fhir/cdm/StructureDefinition/method" ) INSIGHT_CATEGORY_URL = "http://ibm.com/fhir/cdm/StructureDefinition/category" INSIGHT_URL = "http://ibm.com/fhir/cdm/StructureDefinition/insight" INSIGHT_REFERENCE_URL = "http://ibm.com/fhir/cdm/StructureDefinition/reference" INSIGHT_DETAIL_URL = "http://ibm.com/fhir/cdm/StructureDefinition/insight-detail" INSIGHT_ID_URL = "http://ibm.com/fhir/cdm/StructureDefinition/insight-id" INSIGHT_EVALUATED_OUTPUT_URL = ( "http://ibm.com/fhir/cdm/StructureDefinition/evaluated-output" ) INSIGHT_PATH_URL = "http://ibm.com/fhir/cdm/StructureDefinition/path" INSIGHT_REFERENCE_PATH_URL = ( "http://ibm.com/fhir/cdm/StructureDefinition/reference-path" ) INSIGHT_SUMMARY_URL = "http://ibm.com/fhir/cdm/StructureDefinition/insight-summary"
#!/usr/bin/env python # Copyright 2014 Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # This is a complete rewrite of a file licensed as follows: # # Copyright (c) 2010-2013, Even Rouault <even . rouault at mines-paris dot org> # Frank Warmerdam <warmerdam@pobox.com> # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), # to deal in the Software without restriction, including without limitation # the rights to use, copy, modify, merge, publish, distribute, sublicense, # and/or sell copies of the Software, and to permit persons to whom the # Software is furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included # in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER # DEALINGS IN THE SOFTWARE. """Test the Bathymetry Attributed Grid (BAG) driver. Rewrite of: http://trac.osgeo.org/gdal/browser/trunk/autotest/gdrivers/bagf.py """ import unittest from osgeo import gdal from autotest2.gdrivers import gdrivers_util EXT = '.bag' @gdrivers_util.SkipIfDriverMissing(gdrivers_util.BAG_DRIVER) class BagTest(gdrivers_util.DriverTestCase): def setUp(self): super(BagTest, self).setUp(gdrivers_util.BAG_DRIVER, EXT) self.dst = None def testBag02TrueNorthNominal(self): filepath = gdrivers_util.GetTestFilePath('true_n_nominal.bag') self.CheckOpen(filepath) for band_num, checksum, nodata in ((1, 1072, 1e6), (2, 150, 1e6), (3, 1315, 1e6)): self.CheckBand(band_num, checksum, gdal.GDT_Float32, nodata) band1 = self.src.GetRasterBand(1) self.assertAlmostEqual(10, band1.GetMinimum()) self.assertAlmostEqual(19.8, band1.GetMaximum(), delta=0.000001) xml_bag = self.src.GetMetadata('xml:BAG')[0] self.assertIn('<?xml', xml_bag) # TODO(schwehr): Do we need to have the check for closing the file? def testBag03SouthernHemisphereFalseNorthing(self): filepath = gdrivers_util.GetTestFilePath('southern_hemi_false_northing.bag') self.CheckOpen(filepath) self.assertEqual(self.src.RasterCount, 2) for band_num, checksum, nodata in ((1, 21402, 1e6), (2, 33216, 1e6)): self.CheckBand(band_num, checksum, gdal.GDT_Float32, nodata) geotransform = (615037.5, 75.0, 0.0, 9559387.5, 0.0, -75.0) self.CheckGeoTransform(geotransform) self.CheckProjection( 'PROJCS["UTM Zone 13, Southern Hemisphere",' ' GEOGCS["WGS 84",' ' DATUM["WGS_1984",' ' SPHEROID["WGS 84",6378137,298.257223563,' ' AUTHORITY["EPSG","7030"]],' ' TOWGS84[0,0,0,0,0,0,0],' ' AUTHORITY["EPSG","6326"]],' ' PRIMEM["Greenwich",0,' ' AUTHORITY["EPSG","8901"]],' ' UNIT["degree",0.0174532925199433,' ' AUTHORITY["EPSG","9108"]],' ' AUTHORITY["EPSG","4326"]],' ' PROJECTION["Transverse_Mercator"],' ' PARAMETER["latitude_of_origin",0],' ' PARAMETER["central_meridian",-105],' ' PARAMETER["scale_factor",0.9996],' ' PARAMETER["false_easting",500000],' ' PARAMETER["false_northing",10000000],' ' UNIT["Meter",1]]' ) # TODO(schwehr): Test BAG version 1.5. if __name__ == '__main__': unittest.main()
def bar(): pass bar()
#!/usr/bin/env python2 from hermes_python.hermes import Hermes from datetime import datetime from pytz import timezone import requests MQTT_IP_ADDR = "localhost" MQTT_PORT = 1883 MQTT_ADDR = "{}:{}".format(MQTT_IP_ADDR, str(MQTT_PORT)) def intent_received(hermes, intent_message): print() print(intent_message.intent.intent_name) print () if intent_message.intent.intent_name == 'Clemac81:ActivationAlarme': r = requests.get("http://192.168.1.38:8080/json.htm?type=command&param=switchlight&idx=119&switchcmd=On") print(r.json) # hermes.publish_continue_session(intent_message.session_id, sentence, ["Joseph:greetings"]) hermes.publish_end_session(intent_message.session_id, sentence) with Hermes(MQTT_ADDR) as h: h.subscribe_intents(intent_received).start() #if intentName == #r = requests.get("http://192.168.1.38:8080/json.htm?type=command&param=switchlight&idx=119&switchcmd=On") # print(r.json) #current_session_id = intentMessage.session_id #hermes.publish_end_session(current_session_id, result_sentence)
# coding=utf-8 import time import hashlib import oss2 import os import codecs import json from mov_sdk.nft_api import NftApi, Net def load_json(filename): """ Load data from json file in temp path. """ if os.path.exists(filename): with codecs.open(filename, mode="r", encoding="utf-8") as f: data = json.load(f) return data else: return {} def oss_upload(input_path_name, suffix_name=".png"): js_data = load_json("key.json") regin = "oss-cn-shanghai" accessKeyId = js_data["accessKeyId"] accessKeySecret = js_data["accessKeySecret"] bucket_name = "bycoin" use_dir = "prod-t-nft/" url_path = f'http://{regin}.aliyuncs.com' auth = oss2.Auth(accessKeyId, accessKeySecret) bucket = oss2.Bucket(auth, url_path, bucket_name) new_save_name = use_dir + time.strftime("%Y-%m-%d_%H%M%S", time.localtime()) + str(int((time.time()*1000)) % 1000) + suffix_name result = bucket.put_object_from_file(new_save_name, input_path_name) image_url = f"https://{bucket_name}.{regin}.aliyuncs.com/" + new_save_name # HTTP返回码。 print('http status: {0} {1}'.format(result.status, image_url)) # # 请求ID。请求ID是请求的唯一标识,强烈建议在程序日志中添加此参数。 # print('request_id: {0}'.format(result.request_id)) return new_save_name def get_md5_02(file_path): f = open(file_path, 'rb') md5_obj = hashlib.md5() while True: d = f.read(8096) if not d: break md5_obj.update(d) hash_code = md5_obj.hexdigest() f.close() md5 = str(hash_code).lower() return md5 def run(): filepath_dic = {} mnemonic_str = "major skull dinner crucial trip weird thumb grunt absent note motion primary" # obj = NftApi(mnemonic_str=mnemonic_str, network=Net.MAIN.value) obj = NftApi(mnemonic_str=mnemonic_str, network=Net.TEST.value) #description = "sdds !!" description = '''Bearwood-Rabbit:The rabbit comes from the Earth, wearing the M-BEAR jersey, with blue bows and green ears representing its blessings and expectations for a clean earth. Bearwood-Ox: The ox is from Venus, wearing M-BEAR jersey, honest and hardworking, it welcomes every guest who comes to Venus and prepares sweet and delicious milk for them. Bearwood-Horse: The horse comes from Jupiter and wears the M-BEAR jersey, which has a gorgeous rose-red skin and a commanding mane. The horse has an inexhaustible energy, and it will always run freely on Jupiter. Bearwood-Rat: The rat is from Mercury, wearing the M-BEAR jersey, it has dark skin and a pair of short ears of different colors, who knows how much food it stores in the Mercury dungeon Woolen cloth? Bearwood-Lamb: The lamb is from Mars, wearing the M-BEAR jersey, born with natural curls, kind and simple in nature. The lamb has this pair of quirky horns, and will squint comfortably when being stroked. Bearwood-Puppy: The puppy is from Saturn and wears the M-BEAR jersey. 8 has a very auspicious meaning in Chinese society. If you see a bear puppy on Saturn, it means that good luck will come soon! Bearwood-Tiger: The tiger is from Uranus and wears the M-BEAR jersey. Tiger is the guardian of Uranus, and also expressed his best wishes to bear rabbit in the Year of the Tiger on Earth. Bearwood-Dragon: The dragon is from Neptune and wears the M-BEAR jersey. Dragon loves to swim. He roams freely on Neptune every day. Sometimes you can hear dragon's long cry in the lonely late night. Do you know what it is calling? Bearwood-Pig: The pig is from Pluto and wears the M-BEAR jersey. The biggest joy of pig is to eat snacks every day. As long as there is delicious food, he is always very happy. Do you want to go to Pluto and have a snack with pig? Bearwood-Monkey: The monkey comes from the moon and wears the M-BEAR jersey. The moon is so beautiful, but the little bear monkey can be very lonely at times. It looks at the earth from the moon every da ''' description = '''Earth, wearing the M-BEAR №2 jersey, with blue bows and green ears representing its blessings and expectations for a clean earth. Bearwood-Ox: The ox is from Venus, wearing M-BEAR №35 jersey, honest and hardworking, it welcomes every guest who comes to Venus and prepares sweet and delicious milk for them. Bearwood-Horse: The horse comes from Jupiter and wears the M-BEAR №20 jersey, which has a gorgeous rose-red skin and a commanding mane. The horse has an inexhaustible energy, and it will always run freely on Jupiter. Bearwood-Rat: The rat is from Mercury, wearing the M-BEAR №14 jersey, it has dark skin and a pair of short ears of different colors, who knows how much food it stores in the Mercury dungeon Woolen cloth? Bearwood-Lamb: The lamb is from Mars, wearing the M-BEAR №24 jersey, born with natural curls, kind and simple in nature. The lamb has this pair of quirky horns, and will squint comfortably when being stroked. Bearwood-Puppy: The puppy is from Saturn and wears the M-BEAR №8 jersey. 8 has a very auspicious meaning in Chinese society. If you see a bear puppy on Saturn, it means that good luck will come soon! Bearwood-Tiger: The tiger is from Uranus and wears the M-BEAR №40 jersey. Tiger is the guardian of Uranus, and also expressed his best wishes to bear rabbit in the Year of the Tiger on Earth. Bearwood-Dragon: The dragon is from Neptune and wears the M-BEAR №5 jersey. Dragon loves to swim. He roams freely on Neptune every day. Sometimes you can hear dragon’s long cry in the lonely late night. Do you know what it is calling? Bearwood-Pig: The pig is from Pluto and wears the M-BEAR №12 jersey. The biggest joy of pig is to eat snacks every day. As long as there is delicious food, he is always very happy. Do you want to go to Pluto and have a snack with pig? Bearwood-Monkey: The monkey comes from the moon and wears the M-BEAR №23 jersey. The moon is so beautiful, but the little bear monkey can be very lonely at times. It looks at the earth from the moon every da "我是傻逼" ''' #description = "我是傻逼" royalty_rate = "15" margin_amount = "0.1" btm_asset = 'ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff' error_out_f = open("error.log", "a") error_out_f.write("new upload task!\n") flag = True f = open("input.txt", "r") for line in f: if flag: flag = False continue name, code, pic_name = line.strip().split(',') if pic_name in filepath_dic.keys(): filepath = filepath_dic[pic_name] else: filepath = oss_upload(pic_name, suffix_name=".jpg") filepath_dic[pic_name] = filepath i = 0 while i < 10: i = i + 1 try: content_md5 = get_md5_02(pic_name) data = obj.issue_nft(name + code, filepath, content_md5, royalty_rate, btm_asset, margin_amount, description) print(data) if int(data["code"]) == 200 and data["data"]["nft_asset"]: print(f"upload {name} {code} {pic_name} successily!") break else: print(f"error {name} {code} {pic_name} failed!") line = ','.join([str(x) for x in [name, code, pic_name]]) error_out_f.write(line + "\n") time.sleep(1) except Exception as ex: print(ex) time.sleep(1) f.close() error_out_f.close() if __name__ == "__main__": run()
# ref. # https://docs.python.org/3/library/weakref.html#finalizer-objects # https://docs.python.org/3/library/weakref.html#module-weakref # A primary use for weak references is to implement caches or mappings holding large objects, # where it’s desired that a large object not be kept alive solely # because it appears in a cache or mapping. # for garbage collector(GC) import weakref class Object: pass def example_1(): twtrubiks = Object() weakref.finalize(twtrubiks, print, "You killed twtrubiks!") del twtrubiks def callback(x, y, z): print("hello") return x + y + z def example_2(): obj = Object() f = weakref.finalize(obj, callback, 1, 2, 3) print('f()', f()) if __name__ == "__main__": example_1() # example_2()
""" RD Project """ from reorder import * from fp_growth import find_frequent_itemsets import glob import itertools import math import sys def assemble_Cohorte(): """ -> Assemble cohorte (i.e list of list) of patient -> create index file for variable in PARAMETERS folder -> return a list of patient patient vector """ ##################### # Create index file # ##################### listOfParameters = get_allParam("ALL") indexFile = open("PARAMETERS/variable_index.csv", "w") cmpt = 0 for parameter in listOfParameters: cmpt = cmpt + 1 indexFile.write(parameter+";"+"p"+str(cmpt)+"\n") indexFile.close() ######################### # Assemblage en cohorte # ######################### listOfPatientFiles = glob.glob("DATA/PATIENT/*.csv") cohorte = [] for patientFile in listOfPatientFiles: patientVector = [] data = open(patientFile, "r") for line in data: variable = "" lineInArray = line.split("\n") lineInArray = lineInArray[0] lineInArray = lineInArray.split(";") typeOfParameter = lineInArray[2] parameterName = "" parameterValue = lineInArray[4] if(typeOfParameter == "PROPORTION"): parameterName = lineInArray[1]+"_IN_"+lineInArray[3] elif(typeOfParameter == "MFI"): parameterName = lineInArray[1]+"_MFI_"+lineInArray[3] else: parameterName = lineInArray[1] indexFile = open("PARAMETERS/variable_index.csv", "r") for lineInIndexFile in indexFile: lineInIndexFileInArray = lineInIndexFile.split("\n") lineInIndexFileInArray = lineInIndexFileInArray[0] lineInIndexFileInArray = lineInIndexFileInArray.split(";") parameterNameInIndexFile = lineInIndexFileInArray[0] parameterId = lineInIndexFileInArray[1] if(parameterName == parameterNameInIndexFile): variable = parameterId+"_"+str(parameterValue) patientVector.append(variable) indexFile.close() data.close() cohorte.append(patientVector) return cohorte def alleviate_cohorte(cohorte, threshold_alleviate): """ -> alleviate patient vector in cohorte : check the discrete value of all parameter, if the count of "normal" value is above the threshold_alleviate the variable is deleted from all patient vector. -> cohorte is a list of patient vector (i.e a list of lists) -> threshold_alleviate is an int -> return a cohorte ( i.e a list of lists) """ ################################### # Denombrement des variables avec # # possedant une valeur normal # ################################### paramToNormalCount = {} for variable in cohorte[0]: variableInArray = variable.split("_") variableId = variableInArray[0] paramToNormalCount[variableId] = 0 for patient in cohorte: for variable in patient: variableInArray = variable.split("_") variableValue = variableInArray[1] variableId = variableInArray[0] if(variableValue == "normal"): paramToNormalCount[variableId] = paramToNormalCount[variableId] + 1 ########################################### # Suppression des variables "trop normal" # ########################################### listOfParameterToDelete = [] for variable in paramToNormalCount.keys(): if(paramToNormalCount[variable] > threshold_alleviate): listOfParameterToDelete.append(variable) for patient in cohorte: for variable in patient: variableInArray = variable.split("_") variableValue = variableInArray[1] variableId = variableInArray[0] if(variableId in listOfParameterToDelete): patient.remove(variable) return cohorte def get_listOfNormalParameters(cohorte, threshold): """ -> check the discrete value of all parameter, if the count of "normal" value is above the threshold the variable is added to the list of "Normal Parameters" -> cohorte is a list of patient vector (i.e a list of lists) -> threshold is an int -> return a list """ ################################### # Denombrement des variables avec # # possedant une valeur normal # ################################### paramToNormalCount = {} for variable in cohorte[0]: variableInArray = variable.split("_") variableId = variableInArray[0] paramToNormalCount[variableId] = 0 for patient in cohorte: for variable in patient: variableInArray = variable.split("_") variableValue = variableInArray[1] variableId = variableInArray[0] if(variableValue == "normal"): paramToNormalCount[variableId] = paramToNormalCount[variableId] + 1 ########################### # Selection des variables # ########################### listOfParameterToDelete = [] for variable in paramToNormalCount.keys(): if(paramToNormalCount[variable] > threshold): listOfParameterToDelete.append(variable) #################################### # Conversion des variables avec le # # fichier index # #################################### listOfVariableToReturn = [] for variable in listOfParameterToDelete: variableName = "undef" variableIndex = open("PARAMETERS/variable_index.csv") for line in variableIndex: lineInArray = line.split("\n") lineInArray = lineInArray[0] lineInArray = lineInArray.split(";") parameterName = lineInArray[0] parameterId = lineInArray[1] if(parameterId == variable): variableName = parameterName listOfVariableToReturn.append(variableName) variableIndex.close() return listOfVariableToReturn def get_optimalValueOfThreshold(cohorte, maxTry, expectedNumberOfRemovedParameter): """ -> search the optimal value of threshold for the function get_listOfNormalParameters(). The optimal value is the one providing the expectedNumberOfRemovedParameter -> maxTry is an int, maximum number of try -> expectedNumberOfRemovedParameter is an int """ listOfParameters = get_allParam("ALL") threshold = 0 listOfNormalParameters = [] numberOfTry = 0 while(1 > 0): if(numberOfTry >= maxTry): print "=> reach maximum number of tries" threshold = -1 break listOfNormalParameters = get_listOfNormalParameters(cohorte, threshold) if(len(listOfNormalParameters) == len(listOfParameters)): #print "=> Nothing left to proceed" if(threshold + 1 <= len(cohorte[0])): threshold = threshold + 1 else: #print "Can't do better" # i.e everything is super normal break elif(len(listOfNormalParameters) == 0): #print "=> No reduction performed" if(threshold > 0): threshold = threshold - 1 else: #print "Can't do better" # i.e nothing is normal threshold = len(cohorte[0]) + 1 break; elif(len(listOfNormalParameters) < expectedNumberOfRemovedParameter): #print "=> Not enough parameter removed" threshold = threshold - 1 else: #print "=> Good enough" break numberOfTry = numberOfTry + 1 return threshold def get_controledValueOfThreshold(cohorte, maxTry, minNumberOfParamToRemove, minNumberOfParamToLeft): """ -> Control the result return by get_optimalValueOfThreshold function, make sure that at least minNumberOfParamToLeft parameters are left for further analysis -> cochorte is list of list -> maxTry is an int, max number of tries -> minNumberOfParamToRemove is an int, could be modify in the function to fit minNumberOfParamToLeft -> minNumberOfParamToLeft is an int, tje minimum number of parameter to left if all parameters present in listOfNormalParameters are deleted from the data -> return threshold, the best "safe" value to use in function get_listOfNormalParameters. """ numberOfTry = 0 while(1 > 0): numberOfTry += 1 if(numberOfTry > maxTry): print "=> reach maximum number of tries" threshold = len(cohorte[0]) + 1 break threshold = get_optimalValueOfThreshold(cohorte, 60, minNumberOfParamToRemove) listOfNormalParameters = get_listOfNormalParameters(cohorte, threshold) listOfParameters = get_allParam("ALL") if(len(listOfParameters) - len(listOfNormalParameters) < minNumberOfParamToLeft): if(minNumberOfParamToRemove - 1 < 0): print "=> Can't remove parameters" threshold = len(cohorte[0]) + 1 break else: minNumberOfParamToRemove = minNumberOfParamToRemove - 1 else: print "=> Found a good threshold :"+str(threshold) print "=> "+str(minNumberOfParamToRemove) + " parameters removed" break return threshold def searchForPattern(cohorte, maxTry, maxNumberOfFrequentPattern, patternSaveFileName): """ -> Generate pattern (i.e frequent itemsets) from cohorte, with maxTry. results are saved in a .csv file (patternSaveFileName). -> cohorte is a list of list -> maxTry is an int -> patternSaveFileName is a string, save file should be located in DATA/PATTERN folder. -> maxNumberOfFrequentPattern is an int, the max number of frequent pattern to Generate (setup ti avoid memory problem) -> TODO: - re-check the algorithm - limit the retrieval of the same patterns - clean doublon in patternSaveFileName """ # Initialisation des parametres minsup = len(cohorte) minLenOfPattern = len(cohorte[0]) numberOfTry = 0 tunningPatternLen = 1 tunnigMinSup = 0 pattern_save = open(patternSaveFileName, "a") pattern_save.close() while(1>0): ###################################### # controle le nombre de try effectue # ###################################### if(numberOfTry >= maxTry): break ########################### # Generation des patterns # ########################### listOffrequentItemset = [] for itemset in find_frequent_itemsets(cohorte, minsup): listOffrequentItemset.append(itemset) ###################################################### # controle le nombre de pattern, si aucun pattern # # n est genere on baisse la valeur du minsup employe # # pour genere les patterns # ###################################################### if(len(listOffrequentItemset) > 0): listOfItemSize = [] print "Found "+str(len(listOffrequentItemset))+" frequent itemsets with minsup = "+str(minsup) ############################################################## # Ecriture des pattern dans un fichier de sauvegarde # # chaque ligne correspond a un pattern, chaque # # element du pattern est separe des autres par un ; # # le dernier terme de la ligne correspond au minsup # # utilise pour genere le pattern (i.e le support du pattern) # ############################################################## pattern_save = open(patternSaveFileName, "a") for element in listOffrequentItemset: lineToWrite = "" for item in element: lineToWrite = lineToWrite + item + ";" listOfItemSize.append(len(element)) lineToWrite = lineToWrite + str(minsup) pattern_save.write(lineToWrite+"\n") pattern_save.close() if(len(listOffrequentItemset) > maxNumberOfFrequentPattern): print "max number of patterns reached, cancel mining" break ###################################################### # controle de la taille des pattern, si la taille # # du plus gros pattern ne passe pas le controle # # on adapte alternativement le score minsup employer # # et la taille des pattern attendues # ###################################################### maxSize = max(listOfItemSize) if(maxSize < minLenOfPattern): if(tunnigMinSup): tunnigMinSup = 0 tunningPatternLen = 1 minsup = minsup - 1 triedToIcreaseMinLenPattern = 0 elif(tunningPatternLen): tunningPatternLen = 0 tunnigMinSup = 1 minLenOfPattern = minLenOfPattern - 1 else: if(not triedToIcreaseMinLenPattern): ################################################### # si la taille des pattern est bonne mais # # on viens juste de changer de minsup alors # # on augmente la taille attendue des pattern # # pour voir si on pas pecher un plus gros pattern # ################################################### minLenOfPattern = minLenOfPattern + 1 triedToIcreaseMinLenPattern = 1 else: ###################################################### # Si la taille des pattern est bonne et on a deja # # essayer d augmenter la taille attendue des pattern # # on arrete la recherche ici # ###################################################### print "found a good pattern" break else: minsup = minsup -1 numberOfTry += 1 def filter_Pattern(fileName): """ IN PROGRESS TODO: -write doc """ filterDataName = fileName.split(".") heavyFilterName = filterDataName[0] + "_HeavyFilter.csv" lowFilterName = filterDataName[0] + "_LowFilter.csv" dataToClean = open(fileName, "r") dataHeavyFiltered = open(heavyFilterName, "w") dataLowFiltered = open(lowFilterName, "w") for line in dataToClean: lineInArray = line.split("\n") lineInArray = lineInArray[0] lineInArray = lineInArray.split(";") support = lineInArray[-1] lineInArray = lineInArray[:-1] listOfDiscreteValue = [] for element in lineInArray: element = element.split("_") parameter = element[0] discreteValue = element[1] listOfDiscreteValue.append(discreteValue) # control the line if("normal" not in listOfDiscreteValue): dataHeavyFiltered.write(line) # control the line saveTheLine = 0 for value in listOfDiscreteValue: if(value != "normal"): saveTheLine = 1 if(saveTheLine): dataLowFiltered.write(line) dataToClean.close() dataHeavyFiltered.close() dataLowFiltered.close() """TEST SPACE""" def extract_parametersFromPattern(fileName, minSupport): """ IN PROGRESS TODO: - write doc """ data = open(fileName, "r") listOfParameters = [] for line in data: lineInArray = line.split("\n") lineInArray = lineInArray[0].split(";") support = lineInArray[-1] if(int(support) >= int(minSupport)): lineInArray = lineInArray[:-1] for element in lineInArray: elementInArray = element.split(":") parameter = elementInArray[0] if(parameter not in listOfParameters): listOfParameters.append(parameter) data.close() return listOfParameters from fp_growth import find_frequent_itemsets cohorte = [["p1_low", "p2_normal", "p3_normal", "p4_normal", "p5_normal"], ["p1_high", "p2_normal", "p3_normal", "p4_normal", "p5_normal"], ["p1_high", "p2_high","p3_high", "p4_normal", "p5_normal"], ["p1_high", "p2_high","p3_high", "p4_normal", "p5_normal"], ["p1_high", "p2_high","p3_high", "p4_normal", "p5_normal"], ["p1_high", "p2_high","p3_high", "p4_normal", "p5_high"], ["p1_high", "p2_high","p3_high", "p4_normal", "p5_high"], ["p1_high", "p2_high","p3_high", "p4_low", "p5_normal"], ["p1_high", "p2_high","p3_high", "p4_low", "p5_normal"], ["p1_high", "p2_high","p3_high", "p4_high", "p5_normal"]] def search_FrequentItem(cohorte, saveFileName, minSupport): """ IN PROGRESS """ valueToCount = {} # initialisation for patient in cohorte: for value in patient: valueToCount[value] = 0 # count for patient in cohorte: for value in patient: for key in valueToCount.keys(): if(value == key): valueToCount[value] = valueToCount[value] + 1 # write dataToWrite = open("DATA/PATTERN/"+str(saveFileName), "w") for key in valueToCount.keys(): support = (float(valueToCount[key])/len(cohorte))*100 if(support >= minSupport): dataToWrite.write(key+";"+str(valueToCount[key])+"\n") dataToWrite.close() #search_FrequentItem(cohorte, "test5.csv", 20) #searchForPattern(cohorte, 30, 4, "DATA/PATTERN/test2.csv") #fileName = "DATA/PATTERN/test2.csv" #--------------------------------------------# # FUNCTION BUILD FOR CYTOKINES DATA ANALYSIS ####################################### #--------------------------------------------# def assemble_CohorteFromFile(fileName): """ -> Assemble discrete cohorte from cytokine data -> fileName is the name of the dicrete reduce matrix file (e. g DATA/CYTOKINES/RA_quantitativeMatrix_discrete.csv) -> add diagnostic in vectors -> Write index variable file in PARAMETERS folder -> add "pX" prefix to scalar in vector -> return a cohorte (array of arrays) """ cohorte = [] listOfVariable = [] data = open(fileName, "r") fileNameInArray = fileName.split("/CYTOKINES/") fileNameInArray = fileNameInArray[1].split("_") diagnostic = fileNameInArray[0] cmpt = 0 for line in data: line = line.split("\n") lineInArray = line[0].split(";") vector = [] if(cmpt == 0): for variable in lineInArray: listOfVariable.append(variable) else: index = 1 for scalar in lineInArray: newScalar = "p"+str(index)+"_"+scalar vector.append(newScalar) index += 1 vector.append(diagnostic) cohorte.append(vector) cmpt += 1 data.close() # Write indexFile indexFile = open("PARAMETERS/"+str(diagnostic)+"_variable_index.csv", "w") cmpt = 1 for variable in listOfVariable: indexFile.write("p"+str(cmpt)+";"+variable+"\n") cmpt += 1 indexFile.close() return cohorte def assemble_CohorteFromAllFiles(): """ -> Assemble a "meta" cohorte, with all discrete reduce files in CYTOKINES folder -> return a cohorte -> Designed for pattern mining """ listOfDisease = ["RA", "MCTD", "PAPs", "SjS", "SLE", "SSc", "UCTD", "Control"] listOfCohorte = [] for diagnostic in listOfDisease: cohorte = assemble_CohorteFromFile("DATA/CYTOKINES/"+str(diagnostic)+"_quantitativeMatrix_discrete.csv") listOfCohorte.append(cohorte) metaCohorte = [] for cohorte in listOfCohorte: for vector in cohorte: if(len(vector) > 0): metaCohorte.append(vector) return metaCohorte def extractPatternFromCohorte(cohorte, minsup, tag): """ -> Store all frequent pattern (i.e set of items present more than minsup in cohorte) -> cohorte is an array of array, discrete value (obtain via the assemble_CohorteFromAllFiles function) -> minsup is an int between 0 and 100 (% of support) -> tag is a string, insert in the output file name """ saveFileName = "DATA/PATTERN/"+str(tag)+"_pattern_"+str(minsup)+".csv" numberOfPatient = len(cohorte) minsup = int(minsup) minimumSupport = (minsup * numberOfPatient) / 100 patternFile = open(saveFileName, "w") for itemset in find_frequent_itemsets(cohorte, minimumSupport): line = "" for element in itemset: line = line + str(element) + ";" line = line[:-1] patternFile.write(line+"\n") patternFile.close() def get_support(patternToTest, controlFile): """ -> get support (i.e proportion of patient where patternToTest is present) -> patternToTest is a list of item -> controlFile is the file conatining the cohorte (designed for discrete cohorte), could be "all" for use all the "splited into disease" files, could be "discrete" when using only discrete data. """ if(controlFile == "all"): cohorte = assemble_CohorteFromAllFiles() elif(controlFile == "discrete"): cohorte = assemble_CohorteFromDiscreteAllFiles() else: cohorte = assemble_CohorteFromFile(controlFile) numberOfPatient = len(cohorte) count = 0 for vector in cohorte: patternFound = 1 for element in patternToTest: if element not in vector: patternFound = 0 if(patternFound): count +=1 return (float(count)/float(numberOfPatient))*100 def generate_AssociationRulesFromPatternFile(patternFile, rulesFile, confidenceThreshold, display, dataType): """ -> generate association rules from a list of pattern -> patternFile is a fileName (file containing pattern) -> rulesFile is the file where pattern are write -> confidenceThreshold is the confidence threshold for the rules. -> display is a boolean -> dataType is a string, could be: -all -discrete -filename where filename is the name of the file used to compute support (used as input for get_support() function) TODO: -> run a few tests """ listOffrequentItemset = [] data = open(patternFile, "r") for line in data: frequentItemSet = [] line = line.split("\n") lineInArray = line[0].split(";") for item in lineInArray: frequentItemSet.append(item) if(len(frequentItemSet) > 1): listOffrequentItemset.append(frequentItemSet) data.close() cmpt_progress = 0 rulesFile = open(rulesFile, "w") for frequentItemSet in listOffrequentItemset: progress = float(cmpt_progress / float(len(listOffrequentItemset))) *100 progress = math.ceil(progress) progress_bar = "#" * int(progress) progress_bar += "-" * int(50-progress) display_line = "|"+progress_bar+"|" sys.stdout.write("\r%d%%" % progress) sys.stdout.write(display_line) sys.stdout.flush() print progress cmpt_progress += 1 tupleLen = 1 while(tupleLen < len(frequentItemSet)): for h in itertools.combinations(frequentItemSet, tupleLen): h = list(h) complementList = [] for element in frequentItemSet: if(element not in h and element not in complementList): complementList.append(element) rule_confidence = 0 if(get_support(complementList, dataType) != 0): rule_confidence = (get_support(frequentItemSet, dataType) / get_support(complementList, dataType) * 100) if(rule_confidence > float(confidenceThreshold)): if(display): print"-----------------" print h print complementList print frequentItemSet rule = "" for item in complementList: rule = rule + item + ";" rule = rule[:-1] + " -> " for item in h: rule = rule + item + ";" rule = rule[:-1] + " ["+str(rule_confidence)+"]" rulesFile.write(rule+"\n") if(display): print "----------------" tupleLen += 1 rulesFile.close() def reformat_RulesFile(rulesFileName): """ -> Write a new .clp file containing rules for CLIPS. -> rulesFileName is a string, the name of the input file (generated by the generate_AssociationRulesFromPatternFile function) """ inputRulesFileName = rulesFileName outputRulesFileName = inputRulesFileName.split("/") outputRulesFileName = outputRulesFileName[-1] outputRulesFileName = outputRulesFileName.split(".") outputRulesFileName = "DATA/RULES/FORMATED/"+outputRulesFileName[0]+".clp" inputRulesFile = open(inputRulesFileName, "r") outputRulesFile = open(outputRulesFileName, "w") rule_number = 1 for line in inputRulesFile: line = line.split("\n") lineInArray = line[0].split(" -> ") premice = lineInArray[0] leftPart = lineInArray[1] leftPartInArray = leftPart.split(" ") conclusion = leftPartInArray[0] rule_number+=1 rule = "(defrule rule_"+str(rule_number)+"\n" for element in premice.split(";"): rule = rule + " ("+str(element)+")\n" rule = rule + "=>\n" for element in conclusion.split(";"): rule = rule +" (assert ("+str(element)+"))\n" rule = rule + ")\n" outputRulesFile.write(rule) outputRulesFile.close() inputRulesFile.close() def filter_associationRules_confidenceValue(inputFileName, confidenceThreshold): """ -> Create a filtered file containing rules with a confidence >= confidenceThreshold. -> add -cf tag (confidenceThreshold) in output filename -> inputFileName is the name of the input file (generated by the generate_AssociationRulesFromPatternFile function) -> confidenceThreshold is the ... confidenceThreshold """ inputRulesFileName = inputFileName threshold = confidenceThreshold outputRulesFileName = inputRulesFileName.split(".") outputRulesFileName = outputRulesFileName[0]+"_cf"+str(threshold)+".csv" inputRulesFile = open(inputRulesFileName, "r") outputRulesFile = open(outputRulesFileName, "w") for line in inputRulesFile: line = line.split("\n") lineInArray = line[0].split(" -> ") premice = lineInArray[0] leftPart = lineInArray[1] leftPartInArray = leftPart.split(" ") conclusion = leftPartInArray[0] confidence = leftPartInArray[1] confidence = confidence[1:-1] if(float(confidence) >= threshold): outputRulesFile.write(line[0]+"\n") outputRulesFile.close() inputRulesFile.close() def filter_associationRules_paramaterStatus(inputFileName): """ -> Create a filtered file containing rules with at least one parameter (in premice or conclusion) not "normal" -> add -pf tag (param filtered) in output filename -> inputFileName is the name of the input file (generated by the generate_AssociationRulesFromPatternFile function) """ inputRulesFileName = inputFileName outputRulesFileName = inputRulesFileName.split("/") outputRulesFileName = outputRulesFileName[-1] outputRulesFileName = outputRulesFileName.split(".") outputRulesFileName = "DATA/RULES/FILTERED/"+outputRulesFileName[0]+"_pf.csv" inputRulesFile = open(inputRulesFileName, "r") outputRulesFile = open(outputRulesFileName, "w") for line in inputRulesFile: line = line.split("\n") lineInArray = line[0].split(" -> ") premice = lineInArray[0] leftPart = lineInArray[1] leftPartInArray = leftPart.split(" ") conclusion = leftPartInArray[0] allParametersAreNormalInPremice = 1 for element in premice.split(";"): elementInArray = element.split("_") if(len(elementInArray) > 1): status = elementInArray[1] if(status != "normal"): allParametersAreNormalInPremice = 0 allParametersAreNormalInConclusion = 1 for element in conclusion.split(";"): elementInArray = element.split("_") if(len(elementInArray) > 1): status = elementInArray[1] if(status != "normal"): allParametersAreNormalInConclusion = 0 if(allParametersAreNormalInPremice and allParametersAreNormalInConclusion): print "=> Reject rule" else: outputRulesFile.write(line[0]+"\n") outputRulesFile.close() inputRulesFile.close() def write_decryptedRulesFiles(inputFileName): """ -> write a "decrypted" rule file(in DATA/RULES/DECRYPTED), i.e convert param_X into real parameter name -> inputFileName is the name of the input rule file """ outputFileName = inputFileName.split("/") outputFileName = outputFileName[-1] outputFileName = outputFileName.split(".") outputFileName = "DATA/RULES/DECRYPTED/"+outputFileName[0]+".csv" rulesFile = open(inputFileName, "r") outputFile = open(outputFileName, "w") for line in rulesFile: line = line.split("\n") lineInArray = line[0].split("->") # Split Rules leftMember = lineInArray[0] rightMember = lineInArray[1] # Parse Premice leftMemberInArray = leftMember.split(";") new_leftMember = "" for element in leftMemberInArray: elementInArray = element.split("_") if(len(elementInArray) > 1): parameter_name = "undef" parameter = elementInArray[0] status = elementInArray[1] indexFile = open("PARAMETERS/RA_variable_index.csv") # diagnostic don't reall matter, all index files are identical for lineInIndexFile in indexFile: lineInIndexFile = lineInIndexFile.split("\n") lineInIndexFileInArray = lineInIndexFile[0].split(";") index_paramater = lineInIndexFileInArray[0] if(parameter == index_paramater): parameter_name = lineInIndexFileInArray[1] +" ("+str(status)+")" indexFile.close() else: parameter_name = element new_leftMember = new_leftMember + parameter_name + ";" new_leftMember = new_leftMember[:-1] # Parse Connclusion rightMemberInArray = rightMember.split(" ") conclusion = rightMemberInArray[1] conclusionInArray = conclusion.split(";") new_conclusion = "" for element in conclusionInArray: elementInArray = element.split("_") if(len(elementInArray) > 1): parameter_name = "undef" parameter = elementInArray[0] status = elementInArray[1] indexFile = open("PARAMETERS/RA_variable_index.csv") # diagnostic don't reall matter, all index files are identical for lineInIndexFile in indexFile: lineInIndexFile = lineInIndexFile.split("\n") lineInIndexFileInArray = lineInIndexFile[0].split(";") index_paramater = lineInIndexFileInArray[0] if(parameter == index_paramater): parameter_name = lineInIndexFileInArray[1] +" ("+str(status)+")" indexFile.close() else: parameter_name = element new_conclusion = new_conclusion + parameter_name + ";" new_conclusion = new_conclusion[:-1] # Parse confidence confidence = rightMemberInArray[2] # write in outputFile new_rule = new_leftMember +" -> "+new_conclusion+" "+confidence outputFile.write(new_rule+"\n") outputFile.close() rulesFile.close() def assemble_CohorteFromDiscreteAllFiles(): """ -> Assemble a "meta" cohorte, with all discrete files in CYTOKINES folder (already discrete data, have not pass by the discretisation procedure) -> return a cohorte -> Designed for pattern mining """ listOfDisease = ["RA", "MCTD", "PAPs", "SjS", "SLE", "SSc", "UCTD", "Control"] listOfCohorte = [] for diagnostic in listOfDisease: cohorte = assemble_CohorteFromFile("DATA/CYTOKINES/"+str(diagnostic)+"_discreteMatrix.csv") listOfCohorte.append(cohorte) metaCohorte = [] for cohorte in listOfCohorte: for vector in cohorte: if(len(vector) > 0): metaCohorte.append(vector) return metaCohorte def build_cohorte_for_pm(data_file_name): """ -> Build a cohorte for pattern mining -> data_file_name is the name of the file containing data, supposed to be dichotomized data -> return a matrix (list of list) """ cohorte = [] variables_list = [] file_data = open(data_file_name, "r") cmpt_line = 0 for line in file_data: line = line.split("\n") line = line[0] line_array = line.split(";") vector = [] if(cmpt_line == 0): for variable_name in line_array: variable_name = variable_name.replace("\t", "") variable_name = variable_name.replace(" ", "") variables_list.append(variable_name) else: cmpt_index = 0 for scalar_value in line_array: if(int(scalar_value) == 1): vector.append(variables_list[cmpt_index]) cmpt_index += 1 if(len(scalar_value) > 4): vector.append("OMICID_"+str(scalar_value)) cohorte.append(vector) cmpt_line+=1 file_data.close() return cohorte
from brownie import Box, accounts, network def pp_event(event, prefix='') -> str: lines = [] for i, log in enumerate(event): lines.append('{}log[{}]'.format(prefix, i)) for key, value in log.items(): lines.append('{} {}: {}'.format(prefix, key, value)) return '\n'.join(lines) def pp_events(events, prefix='') -> str: lines = [] for key, event in events.items(): lines.append('{}{}\n{}'.format(prefix, key, pp_event(event, '{} '.format(prefix)))) return '\n'.join(lines) def main(): account = accounts[0] contract = Box.deploy({'from': account}) print('contract successfully deployed on network {}'.format(network.show_active())) print('initial box value {}'.format(contract.retrieve())) print('contract address {}'.format(contract.address)) print('owner address {}'.format(account.address)) tx = contract.inc() events = tx.events print('new box value {}'.format(contract.retrieve())) print('recored events\n{}'.format(events)) print('events from tx.inc()\n{}'.format(pp_events(tx.events)))
import yaml as ym import os import sys class config(): #loading configuration file def expose_config(self, gen_conf): config = self.load_config('config.yaml') return config[gen_conf] #function to load configuration file def load_config(self, config_file): #base path to file configutation base_path = os.path.join(sys.path[0], config_file) with open(base_path, "r") as stream: try: return ym.safe_load(stream) except ym.YAMLError as exc: print(exc)
import os import shutil from ievv_opensource.utils.ievvbuildstatic import pluginbase class Plugin(pluginbase.Plugin): # Copy specified files from staticsources/<packagename>/node_modules/foo/bar/<libfile>.js to static/<packagename>/<version>/node_modules/<libfile>.js def __init__(self, sourcefiles, destinationfolder=os.path.join('scripts', 'node_modules'), sourcefolder='node_modules', **kwargs): super(Plugin, self).__init__(**kwargs) self.sourcefiles = sourcefiles self.destinationfolder = destinationfolder self.sourcefolder = sourcefolder def get_sourcefolder_path(self): return self.app.get_source_path(self.sourcefolder) def get_destinationfolder_path(self): return self.app.get_destination_path(self.destinationfolder) def get_filepaths(self): files = [] sourcefolder = self.get_sourcefolder_path() for file in self.sourcefiles: files.append(os.path.join(sourcefolder, file)) # no idea why regexfilelist wont work.. # regex_file_list = RegexFileList(include_patterns=files) # file_list = regex_file_list.get_files_as_list(sourcefolder, absolute_paths=True) # print(file_list) return files def run(self): filepaths = self.get_filepaths() destinationfolder = self.get_destinationfolder_path() if os.path.exists(destinationfolder): self.get_logger().debug('Removing {}'.format(destinationfolder)) shutil.rmtree(destinationfolder) os.makedirs(destinationfolder) for sourcepath in filepaths: if os.path.exists(sourcepath) and os.path.isfile(sourcepath): filename = os.path.basename(sourcepath) destinationpath = os.path.join(destinationfolder, filename) shutil.copyfile(sourcepath, destinationpath) def __str__(self): return '{}({})'.format(super(Plugin, self).__str__(), self.sourcefolder)
"""This script walks through how to use the Python API. Covered here: importing GPUdb, instantiating Kinetica, creating a type, creating a table, inserting records, retrieving records, filtering records, aggregating/grouping records, and deleting records. """ from __future__ import print_function import collections import json import random import string import gpudb def gpudb_example(): print ( "TUTORIAL OUTPUT") print ( "===============\n") # all tables/views used in examples below weather_table_name = "weather" weather_w_view = "weather_west" weather_nw_view = "weather_northwest" weather_country_view = "weather_country" weather_e_view = "weather_east" weather_se_view = "weather_southeast" weather_h_view = "weather_histogram" """ Establish connection with a locally-running instance of Kinetica, using binary encoding to save memory """ h_db = gpudb.GPUdb(encoding='BINARY', host='127.0.0.1', port='9191') print () print ( "CREATING A TYPE & TABLE") print ( "-----------------------") print () """ Create columns; column arguments consist of a list of the name, then type, and then optional additional properties. E.g., [ "column_name", column_type, column_property1, column_property2 ]. Note that any number of column properties can be listed as long as they are not mutually exclusive within themselves or with the primitive type. Also note that raw string can be used for both the primitive type and the properties; but the user is also able to use string constants as illustrated in the example below. """ columns = [ [ "city", "string", "char16" ], [ "state_province", gpudb.GPUdbRecordColumn._ColumnType.STRING, gpudb.GPUdbColumnProperty.CHAR32 ], [ "country", gpudb.GPUdbRecordColumn._ColumnType.STRING, gpudb.GPUdbColumnProperty.CHAR16 ], [ "x", "double" ], [ "y", "double" ], [ "avg_temp", "double" ], [ "time_zone", "string", "char8" ] ] # Clear any existing table with the same name (otherwise we won't be able to # create the table) if h_db.has_table( table_name = weather_table_name )['table_exists']: h_db.clear_table( weather_table_name ) # Create the table from the type try: weather_table = gpudb.GPUdbTable( columns, weather_table_name, db = h_db ) print ( "Table successfully created.") except gpudb.GPUdbException as e: print ( "Table creation failure: {}".format( str(e) ) ) # We can also create a GPUdbTable object for a table that already exists in # the database. All we need is the table name (and a GPUdb object). Note how # we pass None for the type argument weather_table_duplicate = gpudb.GPUdbTable( None, weather_table_name, db = h_db ) print ( "\n") print ( "INSERTING DATA") print ( "--------------") print () # Insert single record example # Create ordered dictionary for keys & values of record datum = collections.OrderedDict() datum["city"] = "Washington, D.C." datum["state_province"] = "--" datum["country"] = "USA" datum["x"] = -77.016389 datum["y"] = 38.904722 datum["avg_temp"] = 58.5 datum["time_zone"] = "UTC-5" # Insert the record into the table (through the GPUdbTable interface) weather_table.insert_records( datum ) # Create another record datum2 = collections.OrderedDict() datum2["city"] = "Washington, D.C." datum2["state_province"] = "--" datum2["country"] = "USA" datum2["x"] = -77.016389 datum2["y"] = 38.904722 datum2["avg_temp"] = 58.5 datum2["time_zone"] = "UTC-5" # Insert the second record through the basic GPUdb interface # Encode record and put into a single element list weather_record_type = weather_table.get_table_type() single_record = [ gpudb.GPUdbRecord( weather_record_type, datum ).binary_data ] # Insert the record into the table response = h_db.insert_records(table_name = weather_table_name, data = single_record, list_encoding = "binary") print ( "Number of single records inserted: {}".format(response["count_inserted"])) # Insert multiple records example # =============================== records = [] # Create a list of in-line records records.append( ["Paris", "TX", "USA", -95.547778, 33.6625, 64.6, "UTC-6"] ) records.append( ["Memphis", "TN", "USA", -89.971111, 35.1175, 63, "UTC-6"] ) records.append( ["Sydney", "Nova Scotia", "Canada", -60.19551, 46.13631, 44.5, "UTC-4"] ) records.append( ["La Paz", "Baja California Sur", "Mexico", -110.310833, 24.142222, 77, "UTC-7"] ) records.append( ["St. Petersburg", "FL", "USA", -82.64, 27.773056, 74.5, "UTC-5"] ) records.append( ["Oslo", "--", "Norway", 10.75, 59.95, 45.5, "UTC+1"] ) records.append( ["Paris", "--", "France", 2.3508, 48.8567, 56.5, "UTC+1"] ) records.append( ["Memphis", "--", "Egypt", 31.250833, 29.844722, 73, "UTC+2"] ) records.append( ["St. Petersburg", "--", "Russia", 30.3, 59.95, 43.5, "UTC+3"] ) records.append( ["Lagos", "Lagos", "Nigeria", 3.384082, 6.455027, 83, "UTC+1"] ) records.append( ["La Paz", "Pedro Domingo Murillo", "Bolivia", -68.15, -16.5, 44, "UTC-4"] ) records.append( ["Sao Paulo", "Sao Paulo", "Brazil", -46.633333, -23.55, 69.5, "UTC-3"] ) records.append( ["Santiago", "Santiago Province", "Chile", -70.666667, -33.45, 62, "UTC-4"] ) records.append( ["Buenos Aires", "--", "Argentina", -58.381667, -34.603333, 65, "UTC-3"] ) records.append( ["Manaus", "Amazonas", "Brazil", -60.016667, -3.1, 83.5, "UTC-4"] ) records.append( ["Sydney", "New South Wales", "Australia", 151.209444, -33.865, 63.5, "UTC+10"] ) records.append( ["Auckland", "--", "New Zealand", 174.74, -36.840556, 60.5, "UTC+12"] ) records.append( ["Jakarta", "--", "Indonesia", 106.816667, -6.2, 83, "UTC+7"] ) records.append( ["Hobart", "--", "Tasmania", 147.325, -42.880556, 56, "UTC+10"] ) records.append( ["Perth", "Western Australia", "Australia", 115.858889, -31.952222, 68, "UTC+8"] ) # Insert the records into the table weather_table.insert_records( records ) print ( "Number of batch records inserted: {}".format( weather_table.size() )) print ( "\n") print ( "RETRIEVING DATA") print ( "---------------") print () """ Retrieve the second set of ten records from weather_table. Note that records can be iterated over directly. """ print ( "{:<20s} {:<25s} {:<15s} {:<10s} {:<11s} {:<9s} {:<8s}".format("City","State/Province","Country","Latitude","Longitude","Avg. Temp","Time Zone")) print ( "{:=<20s} {:=<25s} {:=<15s} {:=<10s} {:=<11s} {:=<9s} {:=<9s}".format("", "", "", "", "", "", "")) for weatherLoc in weather_table.get_records( offset = 10, limit = 10 ): print ( "{city:<20s} {state:<25s} {country:<15s} {y:10.6f} {x:11.6f} {avg_temp:9.1f} {time_zone}" "".format( city = weatherLoc["city"], state = weatherLoc["state_province"], country = weatherLoc["country"], y = weatherLoc["y"], x = weatherLoc["x"], avg_temp = weatherLoc["avg_temp"], time_zone = weatherLoc["time_zone"] ) ) """ Retrieve no more than 10 records as JSON from weather_table through the GPUdb interface. Note that records are stringified and have to be parsed if using the 'json' encoding. """ weatherLocs = h_db.get_records( table_name = weather_table_name, offset = 0, limit = 10, encoding = "json", options = {"sort_by":"city"} )['records_json'] print ( "{:<20s} {:<25s} {:<15s} {:<10s} {:<11s} {:<9s} {:<8s}".format("City","State/Province","Country","Latitude","Longitude","Avg. Temp","Time Zone")) print ( "{:=<20s} {:=<25s} {:=<15s} {:=<10s} {:=<11s} {:=<9s} {:=<9s}".format("", "", "", "", "", "", "")) for weatherLoc in weatherLocs: print ( "{city:<20s} {state_province:<25s} {country:<15s} {y:10.6f} {x:11.6f} {avg_temp:9.1f} {time_zone}".format(**json.loads(weatherLoc))) """ Retrieve no more than 25 of the remaining records as binary from weather table. Note that records are binary and have to be decoded. """ response = h_db.get_records( table_name = weather_table_name, offset = 10, limit = 25, encoding = "binary", options = {"sort_by":"city"}) weatherLocs = gpudb.GPUdbRecord.decode_binary_data(response["type_schema"], response["records_binary"]) for weatherLoc in weatherLocs: print ( "{city:<20s} {state_province:<25s} {country:<15s} {y:10.6f} {x:11.6f} {avg_temp:9.1f} {time_zone}".format(**weatherLoc)) """ Note that total_number_of_records does not reflect offset/limit; it's the count of all records or those which match the given expression """ print ( "\nNumber of records in new table: {:d}".format(response["total_number_of_records"])) print ( "\n") print ( "FILTERING") print ( "---------") print () ### Filter Example 1 """ Filter records where column x is less than 0, i.e., cities in the western hemisphere, and store the filter in a view. Note that the GPUdbTable creates a random view name if one is not supplied. """ view1 = weather_table.filter( expression = "x < 0" ) print ( "Number of records in the western hemisphere: {}".format( view1.size() )) ### Filter Example 2 """ Filter records where column x is less than 0 and column y is greater than 0, i.e., cities in the northwestern semi-hemisphere, and store the filter in a view. This filter operation is done through the base GPUdb interface. """ response = h_db.filter(table_name = weather_table_name, view_name = weather_nw_view, expression = "x < 0 and y > 0" ) print ( "Number of records in the northwestern semi-hemisphere: {}".format( response["count"] )) ### Filter Example 3 """ Filter records using the same expressions as Example 2, but using query chaining this time (note that we're using the view created by the first filter. """ nw_view = view1.filter( expression = "y > 0" ) print ( "Number of records in the northwestern semi-hemisphere (with query chaining): {}" "".format( nw_view.size() )) ### Filter Example 4 """ Filter by list where country name is USA, Brazil, or Australia. Here we use the duplicate GPUdbTable object (but it points to the same DB table). """ country_map = {"country": ["USA", "Brazil", "Australia"]} view3 = weather_table_duplicate.filter_by_list( column_values_map = country_map ) print ( "Number of records where country name is USA, Brazil, or Australia: {}" "".format( view3.size() )) ### Filter Example 5 """ Filter by range cities that are east of GMT (the Prime Meridian) """ view4 = weather_table.filter_by_range( column_name = "x", lower_bound = 0, upper_bound = 180 ) print ( "Number of records that are east of the Prime Meridian (x > 0): {}" "".format( view4.size() )) print ( "\n") print ( "AGGREGATING, GROUPING, and HISTOGRAMS") print ( "-------------------------------------") print () ### Aggregate Example 1 """ Aggregate count, min, mean, and max on the average temperature. Note that unlike the filter functions, the aggregate functions of GPUdbTable return the response from the database. """ stat_results = weather_table.aggregate_statistics( column_name = "avg_temp", stats = "count,min,max,mean" ) print ( "Statistics of values in the average temperature column:") print ( "\tCount: {count:.0f}\n\tMin: {min:4.2f}\n\tMean: {mean:4.2f}\n\tMax: {max:4.2f}" "\n".format( **stat_results["stats"] )) ### Aggregate Example 2 """ Find unique city names. """ results = weather_table.aggregate_unique( column_name = "city", offset = 0, limit = 25 ) print ( "Unique city names:") for weatherLoc in results.data["city"]: print ( "\t* {}".format( weatherLoc )) print () """ Same operation, but through the base GPUdb interface. Note that the results have to parsed specially using GPUdb.parse_dynamic_response(). Also, we're using the 'json' encoding in this case (the 'binary' encoding can also be used). Also note how the data is accessed differently. """ response = h_db.aggregate_unique( table_name = weather_table_name, column_name = "city", offset = 0, limit = 25, encoding = "json") print ( "Unique city names (using the GPUdb class):") weatherLocs = h_db.parse_dynamic_response(response)['response']['city'] for weatherLoc in weatherLocs: print ( "\t* {}".format(weatherLoc)) print () ### Aggregate Example 3 """ Find number of weather locations per country in the northwestern semi-hemisphere. Note that the data is automatically decoded. """ results = nw_view.aggregate_group_by( column_names = ["country", "count(country)"], offset = 0, limit = 25 ) print ( "Weather locations per country in the northwest semi-hemisphere:") for country in zip(results.data["country"], results.data["count(country)"]): print ( "\t{:<10s}{:2d}".format(country[0] + ":", country[1])) print () """ Find number of weather locations per country in the northwestern semi-hemisphere; use binary decoding explicitly since we're using the GPUdb class. """ response = h_db.aggregate_group_by(table_name=weather_nw_view, column_names=["country", "count(country)"], offset=0, limit=25, encoding="binary") countries = gpudb.GPUdbRecord.decode_binary_data(response["response_schema_str"], response["binary_encoded_response"])[0] print ( "Weather locations per country in the northwest semi-hemisphere:") for country in zip(countries["column_1"], countries["column_2"]): print ( "\t{:<10s}{:2d}".format(country[0] + ":", country[1])) print () ### Aggregate Example 4 """ Filter table to southeastern semi-hemisphere records, group by country, and aggregate min, max, and mean on the average temperature; using the default binary decoding and the GPUdbTable interface. """ # Do a filter first se_view = weather_table.filter( expression="x > 0 and y < 0" ) # Then do the aggregation operation (note how we use the 'data' property to get # the data) data = se_view.aggregate_group_by( column_names = ["country", "min(avg_temp)", "max(avg_temp)", "mean(avg_temp)"], offset = 0, limit = 25 ).data print ( "{:<20s} {:^5s} {:^5s} {:^5s}".format("SE Semi-Hemi Country", "Min", "Mean", "Max")) print ( "{:=<20s} {:=<5s} {:=<5s} {:=<5s}".format("", "", "", "")) for countryWeather in zip(data["country"], data["min(avg_temp)"], data["mean(avg_temp)"], data["max(avg_temp)"]): print ( "{:<20s} {:5.2f} {:5.2f} {:5.2f}".format(*countryWeather)) print () """ Filter table to southeastern semi-hemisphere records, group by country, and aggregate min, max, and mean on the average temperature; using the default binary decoding and the base GPUdb interface. """ h_db.filter(table_name = weather_table_name, view_name = weather_se_view, expression="x > 0 and y < 0") response = h_db.aggregate_group_by( table_name = weather_se_view, column_names = ["country", "min(avg_temp)", "max(avg_temp)", "mean(avg_temp)"], offset = 0, limit = 25 ) data = h_db.parse_dynamic_response(response)['response'] print ( "{:<20s} {:^5s} {:^5s} {:^5s}".format("SE Semi-Hemi Country", "Min", "Mean", "Max")) print ( "{:=<20s} {:=<5s} {:=<5s} {:=<5s}".format("", "", "", "")) for countryWeather in zip(data["country"], data["min(avg_temp)"], data["mean(avg_temp)"], data["max(avg_temp)"]): print ( "{:<20s} {:5.2f} {:5.2f} {:5.2f}".format(*countryWeather)) print () ### Aggregate Example 5 """ Filter for southern hemisphere cities and create a histogram for the average temperature of those cities (divided into every 10 degrees, e.g., 40s, 50s, 60s, etc.) """ s_view = weather_table.filter( expression = "y < 0" ) histogram_result = s_view.aggregate_histogram( column_name = "avg_temp", start = 40, end = 90, interval = 10 ) print ( "Number of southern hemisphere cities with average temps in the given ranges:") for histogroup in zip([40, 50, 60, 70, 80], histogram_result['counts']): print ( "\t{}s: {:2.0f}".format(*histogroup)) print() ### Aggregate Example 6 """ Aggregate group by has an option 'result_table' which creates a result table and does not return the data. Very useful when the data is large and we want to fetch records from it in batches. """ # Create another table with the same type, and generate a lot of random data for it. # Note that we're allowing GPUdbTable to come up with a random name for the table. weather_table2 = gpudb.GPUdbTable( columns, db = h_db ) # Create random data (but specify a range for the average temperature column) weather_table2.insert_records_random( count = 10000, options = { "avg_temp": {"min": -20, "max": 105 } } ) print() print ( "Second weather table size: ", weather_table2.size() ) # Create a view on the south-western quadrant of the planet sw_view = weather_table2.filter( expression="x < 0 and y < 0" ) # Then do the aggregation operation . Note that the column names need # aliases to utilize th 'result_table' option. agg_result_table = sw_view.aggregate_group_by( column_names = ["country", "min(avg_temp) as min_avg_temp", "max(avg_temp) as max_avg_temp", "mean(avg_temp) as mean_avg_temp"], offset = 0, limit = 25, options = { "result_table": gpudb.GPUdbTable.prefix_name("agg_") } ) print ( "Size of records in the SW quadrant of the planet: ", agg_result_table.size() ) print ( "{:<20s} {:^7s} {:^7s} {:^5s}".format("SW Semi-Hemi Country", "Min", "Mean", "Max")) print ( "{:=<20s} {:=<6s} {:=<6s} {:=<6s}".format("", "", "", "")) # Note that we can slice GPUdbTable objects to fetch the data inside for record in agg_result_table[ 10 : 50 ]: print ( "{:<20s} {:5.2f} {:5.2f} {:5.2f}".format( record["country"], record["min_avg_temp"], record["mean_avg_temp"], record["max_avg_temp"] )) print () print ( "\n") print ( "DELETING DATA") print ( "-------------") print () """ Filter for cities that are either south of latitude -50 or west of longitude -50 to determine how many records will be deleted; delete the records, then confirm the deletion by refiltering. """ deleteExpression = "x < -50 or y < -50" num_records_to_delete = weather_table.filter( expression = deleteExpression ).count print ( "Number of records that meet deletion criteria before deleting: {}" "".format( num_records_to_delete ) ) weather_table.delete_records( expressions = [ deleteExpression ] ) # Note that we're using the duplicate GPUdbTable object which points to the # same table in the DB num_records_post_delete = weather_table_duplicate.filter( expression = deleteExpression ).count print ( "Number of records that meet deletion criteria after deleting (expect 0): {}".format( num_records_post_delete )) print () print ( "\n") print ( "Using Multi-head Ingestion") print ( "--------------------------") print () """For tables with primary or shard key columns, it might be useful to use the multi-head ingestion procedure for inserting records into a table for heavy ingestion loads. There are benefits and drawbacks of using multi-head ingestion: the benefit is that if the database is configured for multi-head ingestion and there is a tremendous ingestion load, then the ingestion will be faster over all. However, the drawback is that the client has to do some calculation PER record to find out which worker rank of the database server to send the record to. So, unless the following parameters are met, it is unwise to use multi-head ingestion as it will unncessarily slow ingestion down: * The server is configured to use multi-head ingestion * The table type has at least one primary or shard key column * There is a heavy stream of data to be inserted """ # Create a type that has some shard keys sharded_columns = [ [ "city", "string", "char16" ], [ "state_province", "string", "char2", "shard_key" ], # shard key column [ "country", gpudb.GPUdbRecordColumn._ColumnType.STRING, gpudb.GPUdbColumnProperty.CHAR16 ], [ "airport", "string", "nullable" ], # a nullable column [ "x", "double" ], [ "y", "double" ], [ "avg_temp", "double" ], [ "time_zone", "string", "char8", "shard_key" ] # shard key column ] # Create a table with the multi-head ingestion options # (the default batch size is 10k) sharded_table = gpudb.GPUdbTable( sharded_columns, db = h_db, use_multihead_ingest = True, multihead_ingest_batch_size = 33 ) # Generate some random data to be inserted num_records = 100 null_likelihood = 10 alphanum = (string.ascii_letters + string.digits) for i in range(0, num_records): record = collections.OrderedDict() record[ "city" ] = ''.join( [random.choice( alphanum ) for n in range( 0, random.randint( 5, 16 ) )] ) record[ "state_province"] = ''.join( [random.choice( alphanum ) for n in range( 0, random.randint( 0, 2 ) )] ) record[ "country" ] = ''.join( [random.choice( alphanum ) for n in range( 0, random.randint( 5, 16 ) )] ) record[ "airport" ] = None if (random.random() < null_likelihood) \ else ''.join( [random.choice( alphanum ) for n in range( 0, random.randint( 2, 25 ) )] ) record[ "x" ] = random.uniform( -180, 180 ) record[ "y" ] = random.uniform( -90, 90 ) record[ "avg_temp" ] = random.uniform( -40, 110 ) record[ "time_zone" ] = "UTC-{}".format( random.randint( -11, 14 ) ) sharded_table.insert_records( record ) # end loop print ( "Size of sharded table (expect less than 100 as the batch size is 33 and \n100 is not a multiple of 33): ", sharded_table.size() ) print () print ( "Flushing the records remaining in the ingestor queue...") sharded_table.flush_data_to_server() print ( "Size of sharded table post forced flush (expect 100): ", sharded_table.size() ) print () # end gpudb_example() if __name__ == '__main__': gpudb_example()
ReLU [[0.0553801, 0.190198, -0.0377036, -1.32009, -0.704992], [-0.010481, -0.118571, 0.153946, -0.736114, -1.00878], [0.482564, 0.0565022, 0.0443098, 0.0600691, 0.0020876], [-0.0778212, -0.0577902, -0.153575, 0.0605465, 0.450204], [0.0143941, -0.25066, -0.132743, 0.533158, -0.0781143], [-0.00869665, -0.447464, -0.0517125, -0.0990526, 0.204336], [0.010042, -0.00129605, -0.00514204, -0.0715019, -0.0436908], [-0.0696566, 0.215441, -0.00483027, 0.155244, -0.858598], [-0.0412334, 0.845604, 0.238394, 0.166022, -0.0812237], [0.386318, -0.0315554, 0.00926705, -0.369564, -0.731116], [-0.727862, -0.136911, 0.0147124, -0.76237, -0.181072], [0.00181044, -0.131803, 0.0962716, 0.175322, -0.863416], [0.0213996, 0.126362, 0.0304863, -1.13285, 1.17788], [-1.41449, -0.0028435, -0.0144381, -0.0132612, 0.00265051], [-0.126224, 0.115034, -0.124887, -0.754803, -0.478396], [0.00489443, -0.0621162, -0.442564, -0.325057, 0.29953], [0.0238864, -0.294626, 0.437456, 0.167242, -1.57446], [-0.0339431, 0.212746, 0.555427, 0.401026, -0.113187], [0.0534015, 0.505959, -0.695019, -0.597797, 0.757852], [0.0759885, 1.02061, -0.767079, 0.790857, -0.781343], [0.0280475, -0.0544412, 0.492328, -0.388467, 0.188625], [0.00126882, -0.00331824, 0.00365573, -0.0122686, 0.0154782], [0.378386, 2.2269, 0.117052, -0.224842, 0.335837], [0.150166, -2.23327, 0.0177583, 0.146265, -0.332893], [-0.0746921, -0.958603, 0.971528, 0.609819, -0.817018], [-0.00927227, -1.58696, 0.0165695, 0.00278922, 0.0574048], [-0.0132054, -0.849359, 0.548887, 0.310252, -1.48819], [0.0478079, -0.681258, -0.868954, 0.583286, -0.306058], [0.0828738, 0.440471, 0.630704, -0.0333658, 0.00772661], [-0.00806285, 0.0531106, -0.222073, 0.0686884, -1.50157], [-0.114841, 0.919164, 0.190187, 0.0437794, 0.00520963], [-1.76543, -0.0157442, -0.0315514, 0.00938973, -0.000685154], [-0.0530375, -0.450235, 1.76927, 0.5936, -0.6578], [0.0198095, -0.113013, -0.552609, -0.518049, 0.285155], [0.0214781, -1.74124, 1.73425, -0.0566436, 0.459649], [-0.649957, -0.0397138, -0.00584056, -0.00988717, 0.0166818], [0.00680587, 0.0170974, -0.0202533, -1.63096, -0.944574], [-0.116581, 1.9092, -2.42837, -0.107407, 0.248435], [-0.00247847, -0.00046304, 0.00565075, -0.000137539, 0.00251783], [-0.0357091, -0.166897, -0.00179253, -0.579197, -1.04002], [0.344397, -0.939464, 0.00142697, -0.18813, 0.190268], [0.0630945, 1.17492, -1.27231, 0.157916, -0.00482825], [-1.81425, -0.00623258, -0.0159597, 0.00737333, -0.00575161], [-0.00829891, -0.0115763, -0.00241857, 0.00255223, -0.0173112], [-0.077549, -0.28407, 0.00596384, -0.420798, 0.511508], [-0.00162356, -0.621229, 0.599885, -0.170725, 0.68297], [-0.196361, -0.909656, 0.158577, -0.606075, -0.199725], [0.0163317, 0.0189992, 0.00514905, -0.0639583, -0.0439335], [-0.0514028, -1.17772, -0.301449, 0.382633, -0.500615], [-0.936931, -0.203562, 0.279398, -0.20136, 0.320543], [0.0554, 0.1902, -0.0377, -1.32, -0.705], [-0.01048, -0.1186, 0.1539, -0.7363, -1.009], [0.4827, 0.0565, 0.0443, 0.06006, 0.002089], [-0.0778, -0.0578, -0.1536, 0.06055, 0.4502], [0.0144, -0.2507, -0.1327, 0.533, -0.0781], [-0.0087, -0.4475, -0.05173, -0.09906, 0.2043], [0.01004, -0.001296, -0.005142, -0.0715, -0.0437], [-0.06964, 0.2155, -0.00483, 0.1553, -0.8584], [-0.04123, 0.8457, 0.2384, 0.166, -0.08124], [0.3862, -0.03156, 0.00927, -0.3696, -0.731], [-0.728, -0.137, 0.01471, -0.762, -0.181], [0.00181, -0.1318, 0.09625, 0.1753, -0.8633], [0.0214, 0.1263, 0.03049, -1.133, 1.178], [-1.414, -0.002844, -0.014435, -0.01326, 0.002651], [-0.1262, 0.11505, -0.1249, -0.755, -0.4785], [0.004894, -0.0621, -0.4426, -0.325, 0.2996], [0.02388, -0.2947, 0.4375, 0.1672, -1.574], [-0.03394, 0.2128, 0.5557, 0.4011, -0.11316], [0.0534, 0.506, -0.695, -0.5977, 0.758], [0.076, 1.0205, -0.767, 0.791, -0.7812], [0.02805, -0.05444, 0.4924, -0.3884, 0.1886], [0.001268, -0.003319, 0.003656, -0.01227, 0.01548], [0.3784, 2.227, 0.11707, -0.2249, 0.336], [0.1501, -2.232, 0.01776, 0.1462, -0.333], [-0.0747, -0.9585, 0.9717, 0.61, -0.817], [-0.00927, -1.587, 0.01657, 0.002789, 0.0574], [-0.01321, -0.849, 0.549, 0.3103, -1.488], [0.04782, -0.681, -0.869, 0.5835, -0.3062], [0.0829, 0.4404, 0.631, -0.03336, 0.007725], [-0.008064, 0.0531, -0.222, 0.06866, -1.502], [-0.11487, 0.919, 0.1902, 0.0438, 0.00521], [-1.766, -0.01575, -0.03156, 0.00939, -0.000685], [-0.05304, -0.4502, 1.77, 0.5938, -0.6577], [0.0198, -0.11304, -0.5527, -0.518, 0.2852], [0.02148, -1.741, 1.734, -0.05664, 0.4597], [-0.65, -0.0397, -0.00584, -0.00989, 0.01668], [0.006805, 0.01709, -0.02025, -1.631, -0.9443], [-0.1166, 1.909, -2.428, -0.1074, 0.2484], [-0.002478, -0.000463, 0.00565, -0.0001376, 0.002518], [-0.0357, -0.1669, -0.001793, -0.579, -1.04], [0.3445, -0.9395, 0.001427, -0.1881, 0.1903], [0.0631, 1.175, -1.272, 0.158, -0.00483], [-1.814, -0.006233, -0.01596, 0.007374, -0.005753], [-0.0083, -0.01157, -0.002419, 0.002552, -0.01732], [-0.0776, -0.2842, 0.005962, -0.421, 0.5117], [-0.001623, -0.621, 0.6, -0.1708, 0.683], [-0.1964, -0.9097, 0.1586, -0.606, -0.1997], [0.01633, 0.019, 0.00515, -0.06396, -0.04395], [-0.0514, -1.178, -0.3015, 0.3826, -0.5005], [-0.937, -0.2036, 0.2793, -0.2014, 0.3206]] [-0.557027, -0.317043, 0.138104, 0.189978, 0.188149, 0.0552362, -0.06767, -0.260805, -0.267183, -0.348518, -0.614078, 0.217921, -0.156318, -0.191004, -0.563467, 0.198722, -0.642526, -0.0575729, 0.0511302, -0.187772, -0.0248378, -0.0206649, 0.259386, -0.183478, -0.149923, 0.0451136, -0.371688, -0.0188617, 0.0366777, -0.552902, 0.189979, -0.358897, 0.256364, 0.138195, -0.478434, 0.0133866, -0.133131, -0.349492, -0.0137361, -0.652247, 0.180223, -0.408499, -0.429542, -0.0201813, 0.0710165, 0.0685803, -0.303011, -0.0773268, 0.0294964, -0.20074, -0.557, -0.3171, 0.1381, 0.19, 0.1881, 0.05524, -0.0677, -0.2607, -0.267, -0.3486, -0.6143, 0.2179, -0.1564, -0.191, -0.5635, 0.1987, -0.6426, -0.0576, 0.05112, -0.1877, -0.02484, -0.02066, 0.2593, -0.1835, -0.1499, 0.0451, -0.3716, -0.01886, 0.03668, -0.5527, 0.19, -0.359, 0.2563, 0.1382, -0.4785, 0.01339, -0.1332, -0.3496, -0.01373, -0.6523, 0.1802, -0.4084, -0.4294, -0.02019, 0.07104, 0.0686, -0.303, -0.07733, 0.0295, -0.2007] ReLU [[0.0566575, -0.886943, 0.230586, 1.45451, 0.597745, 0.227455, 0.0324496, 0.0962953, 0.633446, -0.321703, 0.614659, 0.513456, -0.207988, -0.106215, 1.56553, 0.258868, -0.735231, -0.95162, -0.087422, 0.0441749, -0.860643, 0.0136313, -0.0763127, -0.0170699, -0.0763528, 0.13214, 0.523823, -0.112733, 0.335358, 1.00594, 0.568737, -1.39865, 0.204936, -0.148696, 0.173248, -0.0788495, 1.17112, 0.0316677, 0.0556427, -0.633747, 0.0171092, -0.0598277, -2.08626, -0.00464231, -0.140753, 0.127757, -0.200616, 0.0578406, -0.0620558, 0.675837, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0112267, -0.0286864, 0.0311223, 0.0419601, -0.0218081, -0.00774441, 0.0556754, -0.0286823, -0.0128888, 0.0377224, 0.0405741, -0.0155171, -0.0286421, -0.0437483, -0.0424458, -0.0465849, 0.0084671, 0.000231055, -0.0260211, -0.0409128, -0.00940972, -0.00526273, -0.0265895, 0.0142803, -0.0252259, -0.0143645, -0.0142295, 0.00947478, 0.0234896, -0.0573354, -0.0293224, -0.0523232, -0.00181744, -0.0131525, -0.0381496, -0.0503052, -0.0087803, -0.0247571, 0.00776736, 0.00488961, -0.00309288, 0.00886165, 0.0121621, 0.0369953, -0.0365977, -0.0112973, 0.043858, -0.00142178, -0.0204356, 0.0231885, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00504374, -0.0464097, -0.0498462, -0.0304533, 0.00302208, 0.0322248, 0.0296794, 0.0367799, 0.0227954, -0.0383889, 0.0385381, -0.0367588, -0.00679786, -0.0504207, 0.0316609, -0.0427613, -0.0221433, -0.0257581, -0.0399118, -0.0340255, 0.0231971, 0.0224371, -0.0115063, 0.00552454, -0.0018375, 0.0149984, -0.0267956, -0.0538718, 0.034087, 0.035375, -0.0463983, -0.0160521, 0.0271612, -0.0050365, -0.0470514, 0.0291255, 0.0272604, -0.000217995, 0.0356944, -0.016358, 0.00891133, 0.0376687, -0.0475234, 0.0447155, 0.0285667, -0.0252544, 0.00285394, -0.00270473, -0.0268782, -0.00185817, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.377525, 0.112185, -1.1619, -0.444595, -1.71525, -1.61309, -0.0674231, 1.33914, 0.691602, 0.588673, 0.369135, -0.845436, -2.52656, 0.558474, 1.3696, 0.75013, 0.469634, -0.529725, -0.192167, 0.407051, 0.339037, 0.0397048, -0.0926856, -2.22371, -0.0412369, -1.76197, 0.748254, 0.00263616, -0.102593, 1.51041, 0.162677, -0.680222, 0.351902, 0.671622, 0.996997, 1.53587, -0.259994, -0.442276, 0.0293023, 1.78556, 1.01464, 0.156254, 1.66674, 0.0343558, 0.418668, -0.206413, 0.317031, -0.0610785, 0.501862, 0.445306, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.34908, 0.120792, 1.10705, 0.0681482, -0.261093, 0.123956, 0.0834657, -0.113424, -0.0934773, 1.37932, -2.36824, 0.338262, 0.306419, -0.699439, 0.706828, -0.00103402, -0.111298, -0.686809, 0.0104301, -0.0505599, -0.72632, -0.00985458, 0.334483, 1.1772, 0.206715, -0.0663537, -0.215016, 0.365249, 0.159313, 0.306795, -0.0242865, -0.191828, 0.379393, 0.278277, -0.689262, -0.169154, -0.478237, -0.0325523, -0.00222893, 0.919736, 0.482243, -0.4136, 0.336234, -0.0244682, -0.414824, -0.0276796, 0.141941, 0.0379019, -0.351966, 0.166649, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0423158, 0.706556, 0.149792, -0.816403, -0.193987, -1.45324, 0.0151341, -1.17154, -2.77325, 1.27635, 0.280781, -0.475095, -0.100811, -1.35603, -2.5568, -0.366193, -1.84443, -0.75066, -0.291455, -0.0185313, 0.213009, 0.0194092, -0.0131288, 0.277549, -2.31768, 0.250379, -0.489956, -1.5717, -0.286765, -2.53283, -0.340916, -2.60784, 1.23306, 0.133259, -2.19479, -0.471285, -0.973891, 1.09622, 0.0176062, 3.6785, -0.594739, 4.20202, -4.53677, 0.0539721, -0.945468, 1.64178, 3.29903, 0.0584497, 0.184615, -0.732787, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0375253, -0.0305356, -0.0262838, -0.0579221, 0.0266807, 0.0109767, -0.00704786, 0.00341256, 0.0125713, 0.038845, -0.0123605, 0.0308559, 0.0328326, -0.0040399, 0.0276922, 0.0190819, -0.0438157, -0.0106141, 0.0137063, 0.0125937, -0.00305571, -0.0364192, -0.0336753, -0.0405723, -0.0115847, 0.0111881, 0.0240347, -0.0158172, -0.0436974, -0.0131908, -0.000541112, 0.0256702, -0.0249343, -0.000638733, -0.031507, 0.0172331, -0.0283839, 0.00727735, -0.0228869, -0.0460157, -0.0196476, -0.0499876, -0.0245726, 0.0410408, -0.0516399, 0.0314717, 1.37251e-05, -0.0124679, -0.0442359, -0.0127343, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.000244819, -0.38248, 1.81978, 0.275369, 0.60334, 0.131322, 0.0501444, -0.0260271, -0.186852, 1.13628, 0.458005, 0.217254, -0.204227, -2.13189, 0.0632322, 0.0134891, 0.236612, 0.488996, 0.325143, 0.181775, 0.692817, -0.00133557, 0.345212, -0.0167631, -0.361024, 0.273217, 0.309543, -0.151751, 0.326382, 0.464742, -0.701932, -2.20269, -0.135494, 0.206295, 0.0356574, -0.948911, 0.0572745, -0.173056, -0.0240137, -1.0537, 0.629684, 0.88545, -9.51497, -0.0123121, -0.310005, 0.171877, -0.107679, 0.0628073, 0.183218, -0.72922, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.487687, -0.587927, 0.196683, 0.125844, -0.0696401, 0.890886, 0.0997762, -1.13694, 1.86193, 0.657471, -1.72525, 0.0387606, -0.358006, -0.0293386, 1.40958, -0.213652, 1.0917, 1.32941, 0.243467, -1.64478, 0.0974222, 0.0221039, 0.118198, 0.0745903, 0.347848, -0.186472, -0.162519, 0.640643, 1.58531, -0.328757, 0.222549, -0.0797493, -0.157845, -0.078084, -1.13974, -0.0735975, 0.390608, -1.33571, 0.0527736, -1.63188, 0.89929, -2.80574, 0.0505383, 0.0318459, 1.95704, 0.345222, -1.3532, 0.0906519, 0.574992, 0.529116, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.145943, 0.345862, 0.558316, -0.561703, -0.418964, -0.0601791, 0.0349879, 0.387201, -1.24267, -0.163624, -0.63582, -0.247941, 0.655903, -0.364268, 0.209071, -0.119284, 0.853323, 0.685325, -0.1906, 0.437243, -0.0151264, 0.0472489, 0.0351498, -0.0690239, -0.449261, -0.143982, -0.433861, 0.603212, -0.527496, -0.429884, -0.444871, -0.597174, 0.025364, -0.0329944, -0.348101, -0.0227748, 0.0817933, -0.383106, -0.0283425, -0.215912, -0.0593923, -0.0860069, -0.866936, 0.0387609, -0.229344, -0.190438, -0.406143, 0.0598102, 0.230038, -0.0236759, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.01911, 2.26028, -0.450729, -1.25282, -1.18248, 0.723411, -0.00752673, -1.17643, 2.23023, 0.481789, -0.0237311, -2.40671, 0.554721, 0.267296, 0.264926, 0.307094, -3.20595, -1.13599, 0.182035, 1.59532, 0.0963449, 0.0397644, 0.288633, -0.161414, 2.00226, -0.3859, 0.0109566, 0.0447989, 0.0359261, -2.7127, 0.301199, 0.271198, 0.0989276, 0.622195, 1.25379, 0.095005, -0.157387, 0.977858, 0.0250872, 0.303424, 0.599718, -1.0387, 0.672899, -0.00993041, 0.884717, 0.0453394, 0.169373, 0.00340578, 0.512466, 1.15533, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.181847, -0.461969, 0.597039, 0.401535, 0.67818, 1.11699, 0.0516457, 1.08401, -0.822757, -0.107817, -2.40868, 0.84119, -0.225539, -0.0895863, -0.431638, 0.212196, -0.415454, 0.417287, 0.0138937, -0.229277, 0.41048, 0.00552106, -0.206036, -0.0386024, 0.0174153, -1.33412, -0.285902, 0.148826, -0.201547, -0.493115, 0.379782, -0.337845, 0.122052, -0.26976, -0.141651, 0.292212, 0.0409835, 0.127332, -0.0515634, 1.18676, -0.503445, -0.361453, -0.39565, -0.0491936, -0.0936745, 0.28499, 0.0498659, 0.058024, -0.0293801, -0.132769, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.795252, 0.0759886, -0.598678, 0.341264, 0.152706, -0.0498407, 0.0982676, -0.768335, 0.578385, -0.238336, -1.46266, 0.537457, 0.685212, -0.0853625, 1.03508, 0.107274, 0.697614, -0.219276, 0.416518, -0.537134, -0.583389, -0.0217382, -0.397924, 0.480579, 0.369483, 0.276095, 0.520203, 0.712521, -0.0264957, 0.730464, 0.177435, 0.272815, -0.518256, -0.585156, -0.4811, 0.0879773, -0.468558, -0.407164, 0.0258813, 0.3788, 0.911367, 0.817278, 0.677622, -0.0322538, -2.14685, -0.255604, -0.0350247, 0.0743049, 0.167002, 0.771497, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0142154, 0.0608605, -0.343283, 0.284569, 0.572987, -0.574893, -0.0667932, -1.85959, 0.775011, -0.626682, -0.695703, -0.702999, 0.0872007, -0.00798904, 1.34966, 0.415809, 2.77823, -1.15716, 0.96962, -1.44698, -0.0857441, 0.0247745, -0.0282822, 0.291721, 1.19593, -0.939613, 0.749361, 1.37451, 0.0599326, -3.41684, -1.0667, -0.502515, -1.32919, 0.136194, -0.334965, 0.315904, 0.368124, -1.14446, 0.0129079, -0.867094, 0.265176, -2.55064, 0.779143, 0.0180276, 0.061928, -1.18224, -1.30092, -0.00174132, 1.51017, -0.345314, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.440923, -1.63207, 0.108396, 0.0246664, -1.66169, 0.145853, -0.0578173, -0.651022, -1.35602, -0.895698, -0.996828, 0.0797387, -0.218981, 0.260353, 1.4288, -0.0905217, -1.13167, -0.603433, -0.270705, -0.600027, 0.160398, 0.00968109, 0.0159161, 0.134747, -0.837106, -0.0430073, 1.49847, 0.0782186, -0.272802, 1.85381, 0.115658, -0.468968, 0.60554, 0.164905, -0.253429, 0.188269, -0.329754, 0.37062, -0.0500694, -2.9964, 0.150063, 0.114843, -0.0239656, -0.0199717, 0.000714967, -1.25558, 0.662538, -0.0786537, -0.0141523, 0.0948839, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.246229, -0.660003, -0.108316, -0.778707, -0.256514, 0.693604, -0.024098, -0.415239, 1.67271, -0.33721, 0.32824, -0.775435, 0.321869, 0.0886571, 1.49677, -0.834428, -0.94957, -0.300986, -1.20711, 0.338976, 0.310334, -0.0450165, -0.0625634, 0.141738, 0.569376, 0.595003, -0.310876, -0.635246, -0.257889, 2.25379, -0.679055, 0.679786, 0.802399, -0.590539, 0.170628, 0.315941, 0.265157, 0.511506, -0.0466546, -2.29527, 0.170894, -0.176633, 0.452344, 0.00282725, 0.695072, 0.585204, -0.0240918, 0.048591, 0.168488, 0.850836, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0648798, -0.713205, 0.184109, 0.263193, -1.17017, -0.27902, -0.0184611, 0.149203, 0.0625735, -1.47176, -0.544243, 0.253936, -0.232978, 0.554867, -0.492828, -0.793316, -0.628855, -0.553705, -0.269334, -0.517286, -0.227616, -0.0283357, 0.0847632, 1.08829, 0.745166, -1.18479, -0.636596, -5.98398, 0.691477, -1.08156, 0.379564, 0.267218, 0.0285503, -0.0327507, 0.413654, -0.652442, 0.457227, 0.0199745, 0.0233787, 2.36146, 0.21126, 0.152223, 0.515382, 0.0122972, -0.765941, -1.3653, -1.45485, 0.0278161, -0.499104, -0.752126, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0877714, 0.594682, -0.468329, 1.76406, -0.0831016, -0.4663, 0.0506801, 0.064633, -0.021765, -0.0174555, 0.282811, 0.706214, -0.0797849, -0.975125, -0.309657, -0.45979, 0.470287, -0.902108, 0.126915, -0.0244586, 0.141614, -0.0228444, -0.892338, 0.183324, -0.165465, 0.0315152, 0.415779, -0.811849, -0.140529, -0.669645, 0.0327296, -0.279654, -0.264833, -0.241752, -0.158728, 0.143443, -0.0138105, 0.139231, 0.04216, 0.463097, 0.0227689, 0.183031, 1.05698, 0.0246632, -0.442754, 0.212869, 0.477364, 0.0486496, 0.183229, -0.42994, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0345073, -0.023264, 0.000605256, -0.0717934, -0.0535752, 0.0206562, -0.0397345, -0.0456846, 0.0222671, 0.0455364, 0.00817602, -0.00981517, 0.0189005, 0.0150684, -0.058151, 0.0248626, 0.00578861, 0.0302838, 0.0425335, 0.00692726, 0.00643819, -0.0444926, 0.0334587, 0.0405654, -0.0240477, -0.0139168, -0.0202117, -0.022642, -0.0518317, 0.0271231, -0.0186023, -0.0303917, -0.0420824, -0.0080056, 0.0101854, 0.00783324, -0.0415649, -0.0556682, -0.00352495, 0.0234421, 0.0388969, -0.0556853, 0.00268545, 0.0278309, -0.0561288, -0.0480787, -0.033947, 0.039185, -0.0378302, -0.0304035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.58633, 0.438732, 0.0200577, 1.1784, -0.0845582, 0.0986984, 0.0950237, -0.0982923, 1.06439, -0.582533, 0.381889, 0.417171, -0.0430939, 0.0346135, -1.3605, 0.11913, -0.982431, 0.700004, 0.362675, -0.821623, -0.478803, -0.0417712, 0.0420779, -0.256704, -0.0441338, 0.103111, 0.0597218, 0.568777, 1.17287, -3.74795, 0.66222, -0.141397, -0.536032, -0.0488814, -1.19941, -0.652637, 0.069944, -0.834254, -0.011009, -1.47332, 0.42554, -2.50711, -0.0251331, -0.0377687, 0.463134, -0.249951, 0.0651639, 0.0433228, 0.367277, 0.665172, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.104856, 0.213985, 0.500872, -1.60166, -0.498544, 0.217992, 0.0460801, -0.160995, -0.512666, 1.87008, 0.681351, -1.52953, -0.340704, 0.111278, -1.90133, -0.362015, -0.213668, 0.932387, -0.863125, 0.494217, -0.241433, -0.0391745, -0.326819, -0.0370894, -0.00995829, -0.263929, 0.355007, -0.324813, 1.36031, 0.818368, 0.549364, -0.322965, -0.350454, 0.705665, -1.41687, 0.0330546, -0.540712, 0.235485, 0.0163556, 0.07737, 0.649505, -1.81483, -0.0397011, -0.0184345, 1.00884, 0.121649, -0.631759, 0.0140766, 0.355955, 0.792969, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.190017, -0.176666, 0.862852, 0.267403, -0.100373, 0.567067, -0.00363644, -1.50895, 1.51627, 1.22398, 2.33617, -0.188437, -0.0516359, -0.344849, 2.01942, -0.311764, -0.717134, 0.320258, 0.418724, 0.763896, -1.34214, 0.00964182, -0.0433202, -0.205245, 0.35233, 0.305866, 0.461229, -0.157048, 0.225948, 0.239461, 0.495281, -0.129372, -0.017714, -0.600791, 0.150609, 0.502796, 0.0760881, 0.122303, -0.0141077, 1.19975, -0.798428, -0.0712829, -0.582187, 0.00588628, 0.27573, 0.397124, 0.210933, 0.0220056, 0.04037, -0.37138, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.186561, -0.170019, 0.234048, -0.299775, 0.656264, 0.00337622, 0.0329379, -0.180777, 0.634188, 0.537222, 0.206188, -0.240952, -0.0805749, 0.290026, 1.19055, -0.146819, -0.441834, 0.0557701, 0.0552614, -2.04872, 0.0692606, -0.0011736, 0.182394, -0.674005, -0.0636562, 0.165715, 1.89022, 0.627899, 0.731291, -1.76318, 1.03139, 0.472603, -1.18, 0.333642, 1.05844, 0.20359, 0.0712123, 0.475923, -0.00534451, 0.658245, 0.0985115, -1.00116, 0.000831981, -0.0175927, 0.431012, -0.471486, -0.343864, -0.0233023, 0.183987, 0.176769, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.556134, 0.295114, -0.307221, -0.12859, 0.162358, 0.287115, -0.0356249, 0.15974, 0.809326, 0.252038, 0.301994, 0.744063, 0.791187, 1.63988, 0.823666, -1.12408, -1.00023, 0.831528, 0.120488, -0.141429, -0.599594, -0.0373065, -1.60278, 1.1246, -0.45696, -0.634278, 0.408557, -0.0939014, 1.08571, 3.05493, -0.00844536, 1.13779, 0.425493, -0.64756, -1.73879, 0.34551, 0.286578, 0.0880463, 0.0242349, -1.06334, 0.515013, 1.45087, 1.05863, -0.0427058, -0.390423, 1.91765, -0.0786041, -0.0442716, -0.781786, 0.620425, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.350242, 0.0296617, -0.738328, 0.114678, -0.392205, 0.0970929, -0.0105927, 0.142615, -3.43232, 0.503728, 0.370657, -0.128545, -0.206008, 0.833324, 0.832859, 0.432469, -0.549753, 1.57585, 0.692997, 0.120008, 1.09042, -0.00285732, -0.551422, 0.902218, 1.41392, -0.829847, -0.56265, 1.61241, 1.3242, -1.74288, -0.552389, -1.51765, -0.286381, 0.613846, -0.105492, -0.799065, 0.438392, -0.258334, -0.0359138, 0.227812, -0.0454768, 1.80715, -3.48199, 0.00706228, 0.621769, 0.195971, 0.326618, -0.0479138, -0.00139742, -1.21838, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-1.13308, 0.0738553, -0.0655643, 0.346969, 0.143684, 0.590521, 0.0305996, -1.3155, -1.70751, 0.668998, -1.13258, 0.206683, -1.07457, -0.144142, 1.61217, 0.157876, -0.971489, 2.60186, -0.131549, 0.698813, -0.478913, 0.021539, -0.970298, 0.616065, -0.291093, 0.589562, 0.280511, 0.0425333, 1.44654, -0.185334, 0.237082, 0.411828, -0.155771, -0.0897715, -0.849426, 0.104194, -0.133887, 0.90485, -0.0228045, 2.28946, 0.19809, -0.675426, -0.401409, 0.0278287, 1.20885, 0.549968, 0.130972, -0.051972, -0.0609346, 0.291788, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.355877, 0.074585, 0.543993, 0.0094941, -0.488597, 0.800184, 0.0133344, 0.0873287, 0.484354, -0.137375, 0.0691673, 0.392801, 0.393054, 0.0273709, -0.344398, -0.345044, -1.45882, 0.105087, -0.119247, -0.387154, -0.0955563, 0.0128327, -0.107151, -0.0683734, -0.1342, 0.555954, -0.23078, -0.367461, 0.775111, 1.17014, 0.353249, -0.651854, 0.478701, -0.736876, -0.430849, 0.0867644, -0.144416, -0.249169, -0.0255341, -0.0348127, -0.45255, 0.0364509, 0.492345, 0.00233357, 0.0860406, 0.0982313, -0.400312, 0.0104205, -0.0481961, 0.176154, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.48934, -2.61871, 0.523867, -0.546705, -1.1973, -1.88871, 0.100343, -0.150907, -0.457815, 1.98869, 6.04372, 0.496071, -1.0815, -0.62071, 0.167771, -0.169979, 2.11485, -1.606, -0.138813, 0.0560474, -0.309248, 0.0125485, 0.127597, 0.990157, 0.5091, -1.69503, 1.14117, 0.608649, -0.94089, 0.626275, -0.246207, -1.30284, -0.196009, -0.996228, 0.995066, -1.02815, 1.02812, 0.755761, 0.0373495, -0.125095, -0.610197, 1.17382, -3.36472, -0.0291519, -0.463616, -1.8597, 1.85315, 0.0976282, -0.950093, -4.65116, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.875352, 0.299999, -0.558586, -1.01837, -1.09446, 0.0231376, -0.0156277, -5.44767, 0.670859, 0.190351, -0.449405, -1.91947, 0.154591, -0.0934756, 0.185571, 0.286901, -7.37806, -0.6377, -0.166756, -1.43411, 0.703947, -0.0146976, -0.12314, 0.261381, -0.889668, 0.150155, -0.555912, -0.0305427, 0.540046, -4.56203, -0.155935, -0.214393, -0.0184498, 0.960204, -0.603861, 0.145163, -0.196522, -0.650219, -0.0382655, -2.37421, 0.159874, -0.817143, -0.277655, -0.00288902, -0.0747411, -0.633264, 0.196235, -0.060413, 0.353046, 0.615464, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.00989925, 0.0408112, 0.0222571, -0.0192318, 0.0336411, 0.0437608, -0.0218266, 0.00654142, -0.0437913, -0.0390459, 0.0281461, -0.0168665, -0.0175365, 0.0306678, -0.0257691, -0.0209148, 0.0230185, -0.0330928, -0.0190128, 0.00577224, 0.0347872, -0.0399777, -0.0183539, -0.0389549, -0.0388145, 0.0178445, -0.00507923, -0.0186408, -0.0378365, -0.00609372, -0.0305898, -0.00688025, -0.048024, -0.024257, -0.058554, -0.0216803, -0.0304288, -0.0226648, -0.0171038, -0.0218681, 0.0155073, -0.0378867, -0.0382861, 0.00853588, 0.00775763, -0.022186, -0.0373835, 0.0228459, -0.0375108, -0.0287254, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0441219, 2.57145, -0.0540204, -0.0514344, 1.31714, 0.812391, 0.0161108, 0.125519, 0.109744, -2.75991, 0.00432638, 0.770327, 0.777566, -0.0513164, 0.0096526, -0.718816, -0.405026, 0.635844, -1.81719, -0.288166, 1.54955, 0.0138982, 0.201884, -0.290579, 0.240071, 0.646898, 0.0359214, -0.546447, -0.577472, 1.73588, 0.377061, -0.532835, -0.415209, 0.704112, -0.0138888, -0.460609, -3.76659, -0.157399, 0.0328416, 0.0277412, -0.413569, -0.177464, 0.398373, -0.0354396, 0.0932446, -0.155182, -1.95032, -0.0470554, 0.0587571, 0.184558, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.411289, -1.60569, 0.0629511, -0.806082, -0.770867, 0.246553, -0.00229392, 2.27837, -6.02591, -1.14218, 0.211296, 0.0399824, 0.0894669, 0.657961, -2.56337, -0.608787, 0.49211, -3.15043, -0.508961, -1.46554, 0.434984, 0.000888676, -0.050613, 0.0801453, 2.3042, 0.295424, -0.681567, -2.02956, -0.60352, 4.51445, -0.763578, 0.726418, -0.0778358, -1.42221, 2.42509, 0.156027, 0.468577, -0.114349, -0.0108623, 0.639681, 0.00871794, 0.0133278, 0.801101, 0.0297853, 0.150921, 0.600465, 0.3876, 0.0393227, -0.0138865, -0.159958, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-1.08961, 0.773649, -0.17191, 1.06054, 2.12036, 0.626866, 0.00785014, -0.905464, -0.65552, 0.63365, 0.578249, 0.392071, 0.187524, -0.147862, 1.99624, 0.0313428, 0.376379, 1.07581, 0.55606, -0.36071, 1.07612, -0.0285355, 0.0556019, -0.447871, -1.13925, 0.527802, -0.501332, -0.75093, -0.519414, -0.803971, -0.12349, -1.08738, -0.15951, 0.197769, -0.577044, -0.0160379, 0.610642, -0.824513, 0.0333632, 0.033283, 0.138315, 0.191128, -0.320059, -0.0174192, -0.0826227, -1.08845, -0.165392, 0.00999685, -0.516267, -0.489053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.390032, 0.203215, -0.0704345, -0.576127, -0.118973, -0.0264338, 0.0821641, 1.60779, -2.16668, 0.10021, -0.993419, 0.5978, -0.950612, -0.668529, -1.92835, -0.214793, 1.42054, 0.317243, -0.13934, 1.05521, -0.856989, -0.0292194, 1.1198, 1.28942, 0.127685, 0.710626, 0.715554, -0.60714, -0.393182, 1.5645, 0.143547, -0.909254, -0.294504, -0.0127911, 0.612582, -1.59583, -0.214846, -0.000207184, -0.0149363, 3.79878, -0.779139, -0.835343, -1.3764, 0.00980285, -0.578353, 1.10859, -0.83294, 0.106501, -0.0273668, -0.649119, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.00154739, 0.290167, -1.6727, 0.280135, 0.223504, -0.117137, 0.0230853, 0.134865, 0.163097, 0.0322647, -1.25181, 0.147647, 0.15914, -0.275305, -0.503192, -0.178651, -0.111522, 0.396618, 0.246615, 0.428948, -0.419862, 0.0442446, -0.0930593, 0.103728, -0.317618, 0.639421, -0.299068, -0.210926, -0.198063, -0.128892, 0.18899, -2.17379, 0.29265, -0.167759, -0.473774, 0.240971, -0.107053, 0.156288, 0.0275476, 1.0984, -0.0852038, 0.410218, -5.34178, -0.0166803, -0.332746, 0.135087, 0.367799, 0.0686241, -0.133533, 0.394125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0947261, -0.0253837, -0.0717219, -0.707829, 0.177132, 0.386833, 0.0353594, -1.43738, -0.717836, -0.373564, -0.510524, 0.046821, 0.648317, -0.400213, -3.25939, -0.374583, -0.590091, -0.727124, 0.00919414, 0.089166, 0.0560927, 0.00240063, -0.0253784, -0.113658, 0.0761041, 1.0583, 0.185559, 0.778679, -0.182294, -1.70124, 0.533055, -0.61823, -0.665185, -0.363279, -1.0502, 0.463417, -0.0234154, 0.183073, -0.03217, 1.4056, 0.801534, 1.17137, -1.79086, 0.0426667, 0.329774, 0.0141646, 0.283006, 0.0271014, 0.444215, 1.09721, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.198076, 0.533921, -0.125359, -0.260811, -0.024686, 0.325941, 0.0637398, -0.00359718, -1.21337, -0.221233, -0.607081, 0.467499, 0.213512, -0.0911222, -0.743891, 0.310424, 0.744339, -0.922364, 0.118881, 0.995886, 0.326093, -0.0099077, 0.0608646, 0.141621, 0.31068, -0.346364, -0.329684, -0.359319, -0.472189, -0.00074171, -0.107808, -0.0301606, -0.0641094, 0.0706103, -0.793633, 0.207059, -0.288765, 0.14521, -0.00391595, 0.142511, -0.0539983, -0.420556, -0.296284, -0.00724858, 1.05741, 1.40833, -0.247382, 0.0740253, -0.600497, -0.471993, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0535403, 0.554431, 0.0853417, 0.406319, 0.0145552, -1.39444, -0.00726305, 0.17759, 0.325076, 0.46329, -0.204918, 0.388982, -0.530363, 0.407425, -0.248122, 0.258163, 0.607674, -0.27644, 0.482927, 0.162894, 0.517553, 0.00318702, -0.233806, -0.602762, 0.16773, -1.88042, 0.394356, -0.168146, -0.398574, 0.0840358, -0.173725, -0.129058, -0.434925, 0.46756, 0.645383, 0.693387, -0.335332, -0.382333, -0.0390095, 0.370092, -0.273675, 0.842109, 0.309505, 0.0020546, -1.40963, -0.208951, 0.0534885, 0.0730893, 0.242664, -0.576013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0470067, 0.0294559, -0.0492486, -0.0354673, 0.00769722, -0.0122949, 0.0386137, 0.0278825, -0.047217, -0.0198802, 0.0406254, -0.0138496, 0.0051009, -0.00300363, 0.044655, 0.00655871, -0.0420764, -0.015427, 0.0205839, -0.00803614, 0.014996, 0.0301648, -0.0367273, -0.0643906, 0.0178261, 0.0165806, 0.0153959, -0.0366424, -0.0335817, 0.0021255, 0.00349398, -0.0534741, 0.021362, 0.0066101, 0.0147461, 0.0151114, -0.0610155, -0.0159879, 0.0264758, 0.000476675, 0.0211, 0.0236464, -0.0457114, 0.0289232, 0.0210815, -0.0331501, 0.0120221, -0.032336, -0.0231229, -0.0252931, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.610716, -0.286072, -0.478817, 1.30707, 1.29565, 0.0288889, 0.0348883, -0.0306226, -0.0944289, -1.31996, -0.755699, -0.0837464, 0.210171, 1.08554, -1.79975, -0.169906, -0.106645, 0.130582, 0.371455, 0.0323318, -0.452259, 0.041392, -0.018725, -0.20193, -0.411756, 0.10752, -0.0390294, 0.56509, -0.347837, -0.374911, -0.195757, 0.566694, 0.501423, -0.735321, -0.0278603, 1.54466, 0.161582, 0.250226, -0.0302147, -1.06757, -0.292536, 0.0780629, 0.249524, -0.0217857, -0.34573, 0.374927, 0.298234, 0.00773501, -0.00772001, -0.12699, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.610755, -1.89742, -0.324779, 1.62153, 0.340517, 0.135322, 0.0466983, -1.16995, 0.221351, -1.54249, 0.134479, 0.859255, -0.508505, -0.057686, 1.31511, -0.262777, -1.34151, 0.756218, 0.682869, -1.02197, 1.16584, 0.0205732, 0.00963084, 1.15616, -1.0663, 0.655276, -0.0308994, -0.285051, 0.330204, 0.469937, -0.271884, 0.123566, 0.777452, -1.15024, -1.30671, -0.649395, 0.956551, -0.211537, -0.0346957, 0.289016, 0.531949, 1.49965, 0.850505, -0.0160587, 1.1857, -0.673036, -0.0862142, 0.0527193, -0.110452, 0.785696, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.837696, -0.584332, -0.0601505, -1.54587, 0.538069, 0.438474, -0.00590967, -4.42216, -0.882494, -0.329361, -2.9676, -0.978091, 1.25534, -1.61302, -0.672891, -1.27955, -1.01973, -1.48322, -1.20425, -0.448862, 0.272711, 0.00149033, -0.816033, 0.379119, 1.10142, 0.993195, 0.671343, -0.424983, -0.166358, 2.66109, -1.43311, -2.43087, 0.879333, -1.84155, 1.83216, -0.429725, 0.325415, 2.20149, 0.00135861, -2.10894, 0.483406, 0.549453, -3.58442, -0.0311826, -0.0865619, 0.141533, -1.11123, -0.0323794, 0.677098, -0.278038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.863445, -1.57738, 0.232364, 1.22873, -0.0204112, 0.395961, -0.0576078, 1.33739, -0.955175, -1.03957, -4.42217, 1.10722, 0.00806377, 0.266313, -3.36331, 0.183604, 1.05824, -0.74048, 0.29395, -0.229056, -0.119455, -0.0443224, -0.207595, -0.448165, 0.167957, 0.150002, 0.833177, -0.902891, 0.263744, 3.13873, -0.471584, 0.799583, -0.238198, -0.768014, -0.845479, 0.0376902, 0.514212, -0.377451, -0.00735792, 0.78211, 0.177952, 1.75595, -1.52491, 0.0446172, 0.537249, 0.495552, -1.07117, -0.107169, -0.33982, 0.33822, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.473283, -0.450633, -0.478355, 0.13074, 0.330065, 0.273499, 0.0868823, 2.02395, -0.245901, -0.788462, 1.46611, -0.280558, -0.28561, -0.601743, -0.191123, 0.229672, -0.262144, 0.364152, 0.439885, 0.374948, 0.581021, 0.0123727, -0.232856, 0.122417, -0.393826, 0.38461, 0.490367, -0.131125, 0.616592, 1.88607, -0.811258, -0.925936, -0.0253196, 0.339918, -0.688223, -0.923048, 0.121045, -0.29676, -0.020222, -0.1561, -0.252263, -0.169618, -0.600861, -0.0315333, 0.606056, -0.457938, -0.26319, 0.082405, 0.185023, -1.06271, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.810242, 0.113636, -0.105592, -0.216382, -0.100001, 1.75269, 0.0104732, 2.46942, 1.48335, -0.526179, 0.400669, 1.03199, -0.00750793, -0.223137, 2.06099, -0.494627, -1.69585, 1.07157, 0.0906824, 0.848594, -1.13084, -0.0368065, 1.08498, -0.771697, -0.783785, 0.105314, -0.776347, -0.645035, 0.114237, 0.868518, 0.677247, -0.271629, 0.560876, -0.337047, -0.428959, 0.127251, 0.222131, -0.429953, 0.0378395, 0.905855, -0.261032, 3.92533, 0.419241, -0.0134357, 0.613707, 0.265602, -1.19286, 0.0305718, -1.32047, 0.352392, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.262288, 0.412957, -0.319933, 0.0245819, -0.631888, -0.272538, -0.0613503, -0.258094, -0.225997, -1.15533, -1.16448, 0.543625, -0.361905, 0.444386, -1.21589, 0.536699, 0.6819, 0.552473, 0.297685, 0.692084, 0.0452458, -0.00843163, -0.298482, -0.441979, -0.0143193, 0.411795, -0.0462187, -0.75885, 0.0884722, -0.0438499, -0.149006, 0.248442, -0.0540165, 0.305586, -0.375579, 0.478995, -0.539542, -0.0286828, 0.0100369, -2.67691, -0.26251, -0.380524, 1.82078, -0.016739, 0.374334, 0.214312, 0.1968, -0.065056, 0.363059, -0.342501, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0547023, -0.0694519, 0.435038, -0.0672935, 0.653476, -0.789705, -0.0103252, -0.153953, 1.96176, -0.704197, -1.06415, 1.31855, 0.370558, 0.224441, 1.44133, -0.0157389, 0.227919, -0.989558, 0.657929, -0.740702, 0.540559, -0.0131007, -0.107461, 0.176075, 0.437909, -0.246782, 0.222487, 0.160153, -1.11795, -3.15123, -0.261176, 0.220382, -0.155376, 0.468695, 0.805086, 0.031749, 0.0143038, 0.424842, -0.0379838, -1.78158, -0.391662, -1.43131, 0.313703, -0.0310593, -0.970225, 0.107721, -0.693167, 0.0554268, -0.165589, -0.380542, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.206101, -0.0502535, 0.0273176, -0.193413, -0.970976, 0.130296, -0.0228225, -1.26989, -1.40062, 1.04582, -1.75642, -0.0396868, 0.609338, 0.378339, 0.173156, -0.855559, -0.412995, 0.168602, -1.61331, -0.271556, 0.000181844, 0.00410194, -0.429278, -0.109792, 0.623493, 0.0485287, 0.336578, -0.186591, -0.464048, 1.50201, -0.674428, 0.230967, 0.597335, -0.996954, -0.568548, 0.388832, 0.26549, 0.835441, -0.00305616, 0.847817, 0.417681, 1.8836, 0.579625, 0.016492, 0.407276, 0.509091, -0.502841, -0.033443, 0.346993, -1.25621, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0430308, -0.0507441, -0.0340275, 0.0170621, -0.0212162, -0.0245178, 0.0316967, -0.0226182, 0.0209672, 0.00791943, 0.0128553, -0.0219924, -0.0321493, -0.0418026, -0.0325168, -0.0468227, 0.00876138, -0.0396294, -0.0347355, -0.0314302, -0.0340371, 0.00225405, -0.0226152, 0.0231806, -0.0145877, -0.0376479, -0.00199067, 0.0141855, 0.0085875, -0.063467, -0.0616177, -0.0516846, -0.0387743, -0.0307538, 0.0215187, -0.0368715, -0.0336392, 0.0374868, 0.00753022, -0.040917, -0.0330896, 0.00832754, 0.0326107, -0.0192944, 0.0187889, -0.0148533, -0.0153374, 0.021779, 0.0543209, 0.0106731, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.471027, -0.156611, -0.0429382, -0.772776, -1.17639, 0.231679, -0.0347801, -0.690192, -0.00113331, -0.284155, 0.0260061, 0.747238, -0.09524, -0.0366892, -0.320514, -0.269948, -0.312604, -0.578058, -0.309002, 0.621899, 0.065412, -0.0261291, 0.023213, -0.0594319, -0.0983378, -0.000430707, -0.782595, -0.693231, 0.534412, -0.390392, -0.480244, -0.0616526, 0.141112, 0.258903, -0.31267, 0.305553, -0.479098, -0.103666, 0.00859899, 0.173878, -0.221702, 0.583248, -0.477242, -0.0143994, 0.418996, -0.221456, 0.288104, -0.0173556, -0.0869253, -0.119048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.05667, -0.8867, 0.2306, 1.454, 0.5977, 0.2274, 0.03244, 0.0963, 0.6333, -0.3218, 0.6147, 0.5137, -0.208, -0.1062, 1.565, 0.2588, -0.7354, -0.9517, -0.0874, 0.0442, -0.861, 0.01363, -0.0763, -0.01707, -0.07635, 0.1321, 0.524, -0.11273, 0.3354, 1.006, 0.569, -1.398, 0.205, -0.1487, 0.1732, -0.07886, 1.171, 0.03168, 0.05563, -0.634, 0.0171, -0.0598, -2.086, -0.004642, -0.1407, 0.1278, -0.2006, 0.05783, -0.06204, 0.676], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.01123, -0.02869, 0.03113, 0.04196, -0.0218, -0.007744, 0.05566, -0.02869, -0.012886, 0.03772, 0.0406, -0.01552, -0.02864, -0.04376, -0.04245, -0.04657, 0.00847, 0.000231, -0.02602, -0.04092, -0.00941, -0.005264, -0.0266, 0.01428, -0.02522, -0.014366, -0.01423, 0.009476, 0.02348, -0.05734, -0.02933, -0.05234, -0.001818, -0.01315, -0.03815, -0.0503, -0.00878, -0.02475, 0.007767, 0.00489, -0.003094, 0.008865, 0.01216, 0.037, -0.0366, -0.0113, 0.04385, -0.001422, -0.02043, 0.0232], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.005043, -0.04642, -0.04984, -0.03046, 0.003021, 0.03223, 0.02968, 0.03677, 0.0228, -0.0384, 0.03854, -0.03677, -0.006798, -0.0504, 0.03165, -0.04276, -0.02214, -0.02576, -0.03992, -0.03403, 0.0232, 0.02243, -0.011505, 0.005524, -0.001838, 0.015, -0.0268, -0.05386, 0.0341, 0.03537, -0.0464, -0.01605, 0.02716, -0.005035, -0.04706, 0.02913, 0.02727, -0.000218, 0.0357, -0.01636, 0.00891, 0.03766, -0.04752, 0.0447, 0.02856, -0.02525, 0.002853, -0.002705, -0.02687, -0.001858], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3774, 0.1122, -1.162, -0.4446, -1.715, -1.613, -0.06744, 1.339, 0.6914, 0.589, 0.3691, -0.845, -2.527, 0.5586, 1.369, 0.75, 0.4697, -0.53, -0.1921, 0.407, 0.339, 0.0397, -0.0927, -2.225, -0.04123, -1.762, 0.748, 0.002636, -0.1026, 1.511, 0.1627, -0.68, 0.3518, 0.6714, 0.997, 1.536, -0.26, -0.4424, 0.0293, 1.785, 1.015, 0.1562, 1.667, 0.03436, 0.4187, -0.2064, 0.3171, -0.06107, 0.502, 0.4453], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.349, 0.1208, 1.107, 0.0682, -0.261, 0.12396, 0.0835, -0.1134, -0.0935, 1.379, -2.37, 0.3384, 0.3064, -0.699, 0.707, -0.001034, -0.1113, -0.687, 0.01043, -0.05057, -0.7266, -0.00986, 0.3345, 1.177, 0.2067, -0.06635, -0.215, 0.3652, 0.1593, 0.307, -0.02429, -0.1918, 0.3794, 0.2783, -0.6895, -0.1692, -0.4783, -0.03256, -0.00223, 0.92, 0.4822, -0.4136, 0.3362, -0.02448, -0.4148, -0.02768, 0.142, 0.0379, -0.352, 0.1666], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.04233, 0.7065, 0.1498, -0.8164, -0.194, -1.453, 0.01514, -1.172, -2.773, 1.276, 0.2808, -0.475, -0.1008, -1.356, -2.557, -0.3662, -1.845, -0.7505, -0.2915, -0.01852, 0.213, 0.01941, -0.01313, 0.2776, -2.318, 0.2505, -0.49, -1.571, -0.2869, -2.533, -0.3408, -2.607, 1.233, 0.1333, -2.195, -0.4712, -0.974, 1.097, 0.01761, 3.678, -0.5947, 4.203, -4.535, 0.054, -0.9453, 1.642, 3.299, 0.05844, 0.1846, -0.733], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.03754, -0.03053, -0.02629, -0.05792, 0.02669, 0.01098, -0.00705, 0.003412, 0.01257, 0.03885, -0.01236, 0.03085, 0.03284, -0.00404, 0.0277, 0.01909, -0.04382, -0.01061, 0.01371, 0.012596, -0.003056, -0.0364, -0.03366, -0.04056, -0.01158, 0.011185, 0.02403, -0.01582, -0.0437, -0.01319, -0.000541, 0.02567, -0.02493, -0.000639, -0.0315, 0.01723, -0.02838, 0.00728, -0.02289, -0.04602, -0.01965, -0.05, -0.02457, 0.04105, -0.05164, 0.03146, 1.37e-05, -0.01247, -0.04425, -0.01273], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0002449, -0.3826, 1.819, 0.2754, 0.6035, 0.1313, 0.05014, -0.02603, -0.1869, 1.137, 0.458, 0.2173, -0.2042, -2.133, 0.06323, 0.01349, 0.2366, 0.489, 0.3252, 0.1818, 0.693, -0.001335, 0.3452, -0.01677, -0.361, 0.2732, 0.3096, -0.1517, 0.3264, 0.4648, -0.702, -2.203, -0.1355, 0.2063, 0.03564, -0.9487, 0.05728, -0.1731, -0.02402, -1.054, 0.63, 0.8853, -9.516, -0.012314, -0.31, 0.1719, -0.10767, 0.0628, 0.1832, -0.729], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4878, -0.588, 0.1967, 0.1259, -0.06964, 0.891, 0.0998, -1.137, 1.862, 0.6577, -1.726, 0.03876, -0.358, -0.02934, 1.409, -0.2136, 1.092, 1.329, 0.2434, -1.645, 0.0974, 0.02211, 0.1182, 0.0746, 0.348, -0.1865, -0.1625, 0.6406, 1.585, -0.3289, 0.2225, -0.0798, -0.1578, -0.07806, -1.14, -0.0736, 0.3906, -1.336, 0.05276, -1.632, 0.8994, -2.807, 0.05054, 0.03186, 1.957, 0.3452, -1.354, 0.09064, 0.575, 0.5293], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.146, 0.346, 0.558, -0.5615, -0.419, -0.06018, 0.03497, 0.3872, -1.242, -0.1636, -0.6357, -0.2479, 0.656, -0.3643, 0.2091, -0.11926, 0.8535, 0.6855, -0.1906, 0.4373, -0.01513, 0.04724, 0.03516, -0.06903, -0.4492, -0.144, -0.4338, 0.603, -0.5273, -0.43, -0.4448, -0.597, 0.02536, -0.033, -0.3481, -0.02278, 0.0818, -0.383, -0.02834, -0.216, -0.0594, -0.086, -0.8667, 0.03876, -0.2294, -0.1904, -0.4062, 0.0598, 0.23, -0.02368], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.02, 2.26, -0.4507, -1.253, -1.183, 0.7236, -0.007526, -1.177, 2.23, 0.4817, -0.02373, -2.406, 0.5547, 0.2673, 0.265, 0.3071, -3.205, -1.136, 0.182, 1.596, 0.0964, 0.03976, 0.2886, -0.1614, 2.002, -0.386, 0.010956, 0.0448, 0.03592, -2.713, 0.3013, 0.2712, 0.09894, 0.622, 1.254, 0.09503, -0.1573, 0.978, 0.02509, 0.3035, 0.5996, -1.039, 0.673, -0.00993, 0.885, 0.04535, 0.1694, 0.003407, 0.5127, 1.155], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1819, -0.462, 0.597, 0.4016, 0.678, 1.117, 0.05164, 1.084, -0.8228, -0.1078, -2.408, 0.8413, -0.2256, -0.0896, -0.4316, 0.2122, -0.4155, 0.4172, 0.01389, -0.2292, 0.4104, 0.00552, -0.206, -0.0386, 0.01741, -1.334, -0.286, 0.1488, -0.2015, -0.4932, 0.38, -0.338, 0.1221, -0.2698, -0.1416, 0.2922, 0.041, 0.1273, -0.05157, 1.187, -0.5034, -0.3616, -0.3958, -0.0492, -0.0937, 0.285, 0.04987, 0.058, -0.02937, -0.1328], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7954, 0.076, -0.5986, 0.3413, 0.1527, -0.04984, 0.09827, -0.7686, 0.5786, -0.2383, -1.463, 0.5376, 0.685, -0.0854, 1.035, 0.1073, 0.6978, -0.2192, 0.4165, -0.537, -0.5835, -0.02174, -0.398, 0.4805, 0.3694, 0.2761, 0.52, 0.7124, -0.02649, 0.7305, 0.1775, 0.2727, -0.518, -0.585, -0.4812, 0.08795, -0.4685, -0.4072, 0.02588, 0.379, 0.911, 0.8174, 0.6777, -0.03226, -2.146, -0.2556, -0.03503, 0.0743, 0.167, 0.7715], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.01421, 0.06085, -0.3433, 0.2847, 0.5728, -0.5747, -0.0668, -1.859, 0.775, -0.6265, -0.696, -0.703, 0.0872, -0.00799, 1.35, 0.4158, 2.777, -1.157, 0.9697, -1.447, -0.08575, 0.02478, -0.02829, 0.2917, 1.196, -0.9395, 0.7495, 1.374, 0.05994, -3.416, -1.066, -0.5024, -1.329, 0.1362, -0.335, 0.316, 0.3682, -1.145, 0.01291, -0.867, 0.2651, -2.55, 0.7793, 0.01802, 0.06192, -1.183, -1.301, -0.001741, 1.51, -0.3452], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.441, -1.632, 0.1084, 0.02467, -1.662, 0.1459, -0.05783, -0.651, -1.356, -0.8955, -0.997, 0.0797, -0.219, 0.2603, 1.429, -0.0905, -1.132, -0.6035, -0.2708, -0.6, 0.1604, 0.00968, 0.01591, 0.1348, -0.837, -0.043, 1.498, 0.07825, -0.2727, 1.854, 0.11566, -0.469, 0.6055, 0.1649, -0.2534, 0.1882, -0.3298, 0.3706, -0.05008, -2.996, 0.15, 0.11487, -0.02397, -0.01997, 0.000715, -1.256, 0.6626, -0.0787, -0.01415, 0.0949], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2462, -0.66, -0.10834, -0.779, -0.2566, 0.694, -0.0241, -0.4153, 1.673, -0.3372, 0.3281, -0.7754, 0.3218, 0.0887, 1.497, -0.8345, -0.9497, -0.301, -1.207, 0.3389, 0.3103, -0.045, -0.06256, 0.1417, 0.5693, 0.595, -0.3108, -0.6353, -0.2578, 2.254, -0.679, 0.6797, 0.8022, -0.5903, 0.1707, 0.316, 0.2651, 0.5117, -0.04666, -2.295, 0.1709, -0.1766, 0.4524, 0.002827, 0.6953, 0.585, -0.0241, 0.04858, 0.1685, 0.851], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0649, -0.7134, 0.1841, 0.2632, -1.17, -0.279, -0.01846, 0.1492, 0.06256, -1.472, -0.5444, 0.254, -0.233, 0.5547, -0.493, -0.7935, -0.629, -0.5537, -0.2693, -0.517, -0.2277, -0.02834, 0.0848, 1.088, 0.745, -1.185, -0.6367, -5.984, 0.6914, -1.082, 0.3796, 0.2673, 0.02855, -0.03275, 0.4136, -0.6523, 0.4573, 0.01997, 0.02338, 2.361, 0.2113, 0.1522, 0.5156, 0.0123, -0.766, -1.365, -1.455, 0.02782, -0.499, -0.752], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.08777, 0.5947, -0.4683, 1.764, -0.0831, -0.4663, 0.0507, 0.06464, -0.02176, -0.01746, 0.2827, 0.706, -0.0798, -0.975, -0.3096, -0.4597, 0.4702, -0.9023, 0.127, -0.02446, 0.1416, -0.02284, -0.8926, 0.1833, -0.1654, 0.03152, 0.4158, -0.812, -0.1405, -0.6694, 0.0327, -0.2795, -0.265, -0.2417, -0.1587, 0.1434, -0.01381, 0.1393, 0.04214, 0.4631, 0.02277, 0.183, 1.057, 0.02466, -0.4429, 0.2129, 0.4773, 0.04865, 0.1832, -0.43], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.03452, -0.02327, 0.000605, -0.0718, -0.0536, 0.02066, -0.03973, -0.0457, 0.02226, 0.04553, 0.00818, -0.00981, 0.0189, 0.01507, -0.05814, 0.02486, 0.005787, 0.03029, 0.04254, 0.006927, 0.00644, -0.0445, 0.03345, 0.04056, -0.02405, -0.013916, -0.02022, -0.02264, -0.05182, 0.02713, -0.0186, -0.0304, -0.04208, -0.008, 0.010185, 0.007835, -0.04156, -0.05566, -0.003525, 0.02344, 0.0389, -0.0557, 0.002686, 0.02783, -0.05612, -0.04807, -0.03394, 0.03918, -0.03784, -0.03041], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5864, 0.4387, 0.02007, 1.179, -0.08453, 0.0987, 0.09503, -0.09827, 1.064, -0.5825, 0.3818, 0.4172, -0.0431, 0.0346, -1.36, 0.11914, -0.9824, 0.7, 0.3628, -0.822, -0.4788, -0.04178, 0.04208, -0.2566, -0.04413, 0.1031, 0.05972, 0.569, 1.173, -3.748, 0.662, -0.1414, -0.536, -0.0489, -1.199, -0.653, 0.06995, -0.8345, -0.01101, -1.474, 0.4255, -2.508, -0.02513, -0.03778, 0.4631, -0.25, 0.0652, 0.04333, 0.3672, 0.665], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.10486, 0.214, 0.501, -1.602, -0.4985, 0.218, 0.04608, -0.161, -0.5127, 1.87, 0.681, -1.529, -0.3408, 0.11127, -1.901, -0.362, -0.2136, 0.9326, -0.8633, 0.4941, -0.2415, -0.03918, -0.327, -0.03708, -0.00996, -0.264, 0.355, -0.3247, 1.36, 0.8184, 0.5493, -0.323, -0.3503, 0.7056, -1.417, 0.03305, -0.5405, 0.2355, 0.01636, 0.0774, 0.6494, -1.814, -0.0397, -0.01843, 1.009, 0.12164, -0.632, 0.01408, 0.356, 0.793], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1901, -0.1766, 0.863, 0.2673, -0.1004, 0.567, -0.003637, -1.509, 1.517, 1.224, 2.336, -0.1885, -0.05164, -0.345, 2.02, -0.3118, -0.7173, 0.3203, 0.4187, 0.7637, -1.342, 0.00964, -0.04333, -0.2052, 0.3523, 0.306, 0.4612, -0.1571, 0.226, 0.2395, 0.4954, -0.1294, -0.01772, -0.6006, 0.1506, 0.503, 0.0761, 0.1223, -0.01411, 1.2, -0.7983, -0.0713, -0.582, 0.005886, 0.2756, 0.3972, 0.2109, 0.022, 0.04037, -0.3713], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1865, -0.17, 0.234, -0.2998, 0.6562, 0.003376, 0.03293, -0.1808, 0.6343, 0.537, 0.2062, -0.241, -0.08057, 0.29, 1.19, -0.1469, -0.442, 0.05576, 0.05527, -2.049, 0.0693, -0.001174, 0.1824, -0.674, -0.06366, 0.1658, 1.891, 0.628, 0.7314, -1.763, 1.031, 0.4727, -1.18, 0.3337, 1.059, 0.2036, 0.0712, 0.4758, -0.005344, 0.658, 0.0985, -1.001, 0.000832, -0.0176, 0.431, -0.4714, -0.3438, -0.0233, 0.184, 0.1768], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.556, 0.2952, -0.3071, -0.1285, 0.1624, 0.287, -0.0356, 0.1598, 0.809, 0.252, 0.302, 0.744, 0.791, 1.64, 0.8237, -1.124, -1.0, 0.8315, 0.1205, -0.1415, -0.5996, -0.0373, -1.603, 1.125, -0.457, -0.6343, 0.4084, -0.0939, 1.086, 3.055, -0.008446, 1.138, 0.4255, -0.6475, -1.739, 0.3455, 0.2866, 0.0881, 0.02423, -1.063, 0.515, 1.451, 1.059, -0.0427, -0.3904, 1.918, -0.0786, -0.04428, -0.7817, 0.6206], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.3503, 0.02966, -0.7383, 0.1147, -0.392, 0.0971, -0.01059, 0.1426, -3.432, 0.504, 0.3706, -0.1285, -0.206, 0.8335, 0.833, 0.4324, -0.55, 1.576, 0.693, 0.12, 1.091, -0.002857, -0.5513, 0.9023, 1.414, -0.83, -0.5625, 1.612, 1.324, -1.743, -0.5522, -1.518, -0.2864, 0.614, -0.10547, -0.799, 0.4385, -0.2583, -0.03592, 0.2278, -0.04547, 1.808, -3.482, 0.00706, 0.6216, 0.1959, 0.3267, -0.0479, -0.001397, -1.219], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.133, 0.07385, -0.06555, 0.347, 0.1437, 0.5903, 0.0306, -1.315, -1.707, 0.669, -1.133, 0.2067, -1.074, -0.1442, 1.612, 0.1578, -0.9717, 2.602, -0.1316, 0.6987, -0.479, 0.02155, -0.97, 0.616, -0.291, 0.5894, 0.2805, 0.04254, 1.446, -0.1853, 0.237, 0.4119, -0.1558, -0.0898, -0.8496, 0.1042, -0.1339, 0.905, -0.02281, 2.29, 0.1981, -0.6753, -0.4014, 0.02783, 1.209, 0.55, 0.131, -0.05197, -0.06094, 0.2917], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.356, 0.0746, 0.544, 0.00949, -0.4885, 0.8003, 0.013336, 0.08734, 0.4844, -0.1373, 0.06915, 0.3928, 0.393, 0.02737, -0.3445, -0.345, -1.459, 0.1051, -0.11926, -0.3872, -0.0956, 0.01283, -0.1072, -0.06836, -0.1342, 0.556, -0.2308, -0.3674, 0.775, 1.17, 0.3533, -0.652, 0.4788, -0.737, -0.431, 0.0868, -0.1444, -0.2491, -0.02553, -0.03482, -0.4526, 0.03644, 0.4924, 0.002333, 0.08606, 0.0982, -0.4004, 0.01042, -0.0482, 0.1761], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4893, -2.62, 0.524, -0.547, -1.197, -1.889, 0.10034, -0.1509, -0.4578, 1.988, 6.043, 0.496, -1.081, -0.6206, 0.1677, -0.1699, 2.115, -1.606, -0.1388, 0.05606, -0.3093, 0.01255, 0.1276, 0.99, 0.5093, -1.695, 1.142, 0.609, -0.941, 0.6265, -0.2462, -1.303, -0.196, -0.996, 0.995, -1.028, 1.028, 0.756, 0.03735, -0.1251, -0.6104, 1.174, -3.365, -0.02914, -0.4636, -1.859, 1.854, 0.09766, -0.95, -4.652], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8755, 0.3, -0.5586, -1.019, -1.095, 0.02313, -0.01563, -5.45, 0.671, 0.1903, -0.4495, -1.92, 0.1545, -0.0935, 0.1855, 0.2869, -7.38, -0.6377, -0.1667, -1.435, 0.704, -0.014694, -0.12317, 0.2615, -0.8896, 0.1501, -0.556, -0.03055, 0.54, -4.562, -0.1559, -0.2144, -0.01845, 0.96, -0.604, 0.1451, -0.1965, -0.6504, -0.03827, -2.375, 0.1599, -0.8174, -0.2776, -0.00289, -0.07477, -0.6333, 0.1963, -0.06042, 0.353, 0.615], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0099, 0.0408, 0.02226, -0.01923, 0.03363, 0.04376, -0.02182, 0.006542, -0.0438, -0.03903, 0.02815, -0.01686, -0.01753, 0.03067, -0.02577, -0.02092, 0.02303, -0.03308, -0.01901, 0.00577, 0.0348, -0.03998, -0.01836, -0.03894, -0.03882, 0.01784, -0.005077, -0.01865, -0.03784, -0.006092, -0.0306, -0.00688, -0.04803, -0.02426, -0.05856, -0.02168, -0.03043, -0.02266, -0.0171, -0.02187, 0.01551, -0.03787, -0.0383, 0.00854, 0.00776, -0.02219, -0.03738, 0.02284, -0.0375, -0.02873], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.04413, 2.572, -0.05402, -0.05142, 1.317, 0.8125, 0.01611, 0.1255, 0.10974, -2.76, 0.004326, 0.7705, 0.7773, -0.05133, 0.00965, -0.7188, -0.405, 0.6357, -1.817, -0.288, 1.55, 0.0139, 0.2019, -0.2905, 0.2401, 0.647, 0.03592, -0.5464, -0.5776, 1.736, 0.377, -0.5327, -0.4153, 0.704, -0.013885, -0.4607, -3.766, -0.1573, 0.03284, 0.02774, -0.4136, -0.1775, 0.3984, -0.03543, 0.09326, -0.1552, -1.95, -0.04706, 0.05875, 0.1846], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4114, -1.605, 0.0629, -0.806, -0.771, 0.2466, -0.002295, 2.28, -6.027, -1.143, 0.2113, 0.03998, 0.0895, 0.658, -2.562, -0.609, 0.4922, -3.15, -0.509, -1.466, 0.435, 0.000889, -0.0506, 0.08014, 2.305, 0.2954, -0.6816, -2.03, -0.6035, 4.516, -0.7637, 0.7266, -0.0778, -1.422, 2.426, 0.156, 0.4685, -0.1143, -0.010864, 0.6396, 0.00872, 0.01333, 0.8013, 0.02979, 0.1509, 0.6006, 0.3877, 0.03934, -0.013885, -0.1599], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.09, 0.7734, -0.1719, 1.061, 2.121, 0.627, 0.00785, -0.9053, -0.656, 0.634, 0.578, 0.392, 0.1875, -0.1478, 1.996, 0.03134, 0.3765, 1.076, 0.556, -0.3606, 1.076, -0.02853, 0.0556, -0.4478, -1.14, 0.528, -0.5015, -0.751, -0.5195, -0.804, -0.1235, -1.087, -0.1595, 0.1978, -0.577, -0.01604, 0.611, -0.8247, 0.03336, 0.0333, 0.1383, 0.1912, -0.32, -0.01743, -0.08264, -1.089, -0.1654, 0.009995, -0.516, -0.489], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.3901, 0.2032, -0.07043, -0.576, -0.11896, -0.02643, 0.08215, 1.607, -2.166, 0.1002, -0.9937, 0.5977, -0.9507, -0.6685, -1.929, -0.2148, 1.421, 0.3171, -0.1393, 1.056, -0.857, -0.02922, 1.12, 1.289, 0.1277, 0.7104, 0.7153, -0.607, -0.393, 1.564, 0.1436, -0.909, -0.2944, -0.012794, 0.613, -1.596, -0.2148, -0.0002072, -0.01494, 3.799, -0.7793, -0.8354, -1.376, 0.0098, -0.578, 1.108, -0.833, 0.1065, -0.02737, -0.649], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.001548, 0.2903, -1.673, 0.28, 0.2235, -0.1171, 0.02309, 0.1349, 0.1631, 0.03226, -1.252, 0.1477, 0.1592, -0.2754, -0.5034, -0.1787, -0.1115, 0.3967, 0.2466, 0.429, -0.42, 0.04425, -0.0931, 0.1037, -0.3176, 0.6396, -0.299, -0.2109, -0.1981, -0.1289, 0.189, -2.174, 0.2927, -0.1677, -0.4739, 0.241, -0.10706, 0.1562, 0.02754, 1.099, -0.0852, 0.4102, -5.34, -0.01668, -0.3328, 0.1351, 0.368, 0.0686, -0.1335, 0.394], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0947, -0.02539, -0.0717, -0.708, 0.1771, 0.3867, 0.03537, -1.4375, -0.718, -0.3735, -0.5107, 0.0468, 0.6484, -0.4001, -3.26, -0.3745, -0.5903, -0.727, 0.00919, 0.0892, 0.0561, 0.002401, -0.02538, -0.11365, 0.0761, 1.059, 0.1855, 0.779, -0.1823, -1.701, 0.533, -0.618, -0.665, -0.3633, -1.05, 0.4634, -0.02342, 0.1831, -0.03217, 1.405, 0.802, 1.171, -1.791, 0.04266, 0.3298, 0.01417, 0.283, 0.0271, 0.4443, 1.098], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1981, 0.5337, -0.1254, -0.2607, -0.02469, 0.326, 0.0637, -0.003597, -1.213, -0.2212, -0.607, 0.4675, 0.2135, -0.0911, -0.7437, 0.3103, 0.744, -0.9224, 0.1189, 0.996, 0.3262, -0.00991, 0.06085, 0.1416, 0.3108, -0.3464, -0.3296, -0.3594, -0.4722, -0.0007415, -0.1078, -0.03017, -0.0641, 0.0706, -0.7935, 0.207, -0.2888, 0.1453, -0.003918, 0.1425, -0.054, -0.4207, -0.2964, -0.007248, 1.058, 1.408, -0.2474, 0.07404, -0.6006, -0.472], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.05353, 0.554, 0.0853, 0.4062, 0.01456, -1.395, -0.007263, 0.1776, 0.3252, 0.4634, -0.205, 0.389, -0.5303, 0.4075, -0.2482, 0.258, 0.608, -0.2764, 0.483, 0.1628, 0.5176, 0.003187, -0.2338, -0.6025, 0.1677, -1.881, 0.3943, -0.1681, -0.3987, 0.08405, -0.1737, -0.129, -0.4348, 0.4675, 0.6455, 0.6934, -0.3354, -0.3823, -0.039, 0.37, -0.2737, 0.8423, 0.3096, 0.002054, -1.409, -0.209, 0.0535, 0.07306, 0.2427, -0.576], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.047, 0.02945, -0.04926, -0.03546, 0.007698, -0.0123, 0.0386, 0.02788, -0.0472, -0.01988, 0.04062, -0.01385, 0.0051, -0.003004, 0.04465, 0.006557, -0.04208, -0.01543, 0.02058, -0.00803, 0.015, 0.03017, -0.0367, -0.0644, 0.01782, 0.01659, 0.015396, -0.03665, -0.03357, 0.002125, 0.003494, -0.05347, 0.02136, 0.00661, 0.01475, 0.015114, -0.061, -0.01599, 0.02647, 0.0004766, 0.0211, 0.02365, -0.04572, 0.02893, 0.02109, -0.03314, 0.012024, -0.03235, -0.02312, -0.0253], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.611, -0.2861, -0.4788, 1.307, 1.296, 0.02888, 0.03488, -0.03062, -0.0944, -1.32, -0.756, -0.08374, 0.2102, 1.086, -1.8, -0.1699, -0.1066, 0.1306, 0.3713, 0.03232, -0.4521, 0.04138, -0.01872, -0.2019, -0.4119, 0.10754, -0.03903, 0.565, -0.348, -0.375, -0.1958, 0.567, 0.5015, -0.7354, -0.02786, 1.545, 0.1616, 0.2502, -0.03021, -1.067, -0.2925, 0.07806, 0.2495, -0.02179, -0.3457, 0.375, 0.2983, 0.007736, -0.00772, -0.127], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.611, -1.897, -0.3247, 1.621, 0.3406, 0.1354, 0.0467, -1.17, 0.2213, -1.543, 0.1345, 0.8594, -0.5083, -0.05768, 1.315, -0.2627, -1.342, 0.7563, 0.683, -1.021, 1.166, 0.02057, 0.00963, 1.156, -1.066, 0.6553, -0.0309, -0.2852, 0.3303, 0.47, -0.272, 0.1236, 0.7773, -1.15, -1.307, -0.6494, 0.9565, -0.2115, -0.0347, 0.289, 0.5317, 1.5, 0.8506, -0.01605, 1.186, -0.673, -0.08624, 0.05273, -0.1105, 0.7856], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.838, -0.5845, -0.06015, -1.546, 0.538, 0.4385, -0.00591, -4.42, -0.8823, -0.3293, -2.967, -0.978, 1.255, -1.613, -0.673, -1.279, -1.02, -1.483, -1.204, -0.449, 0.2727, 0.001491, -0.816, 0.3792, 1.102, 0.993, 0.6714, -0.425, -0.1664, 2.66, -1.434, -2.432, 0.8794, -1.842, 1.832, -0.4297, 0.3254, 2.201, 0.001359, -2.11, 0.4834, 0.5493, -3.584, -0.03119, -0.08655, 0.1415, -1.111, -0.03238, 0.6772, -0.278], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.8633, -1.577, 0.2324, 1.229, -0.02042, 0.396, -0.05762, 1.337, -0.955, -1.04, -4.42, 1.107, 0.008064, 0.2664, -3.363, 0.1836, 1.059, -0.7407, 0.294, -0.229, -0.11945, -0.0443, -0.2076, -0.4482, 0.168, 0.15, 0.833, -0.903, 0.2637, 3.139, -0.4717, 0.8, -0.2382, -0.768, -0.8457, 0.0377, 0.514, -0.3774, -0.00736, 0.782, 0.178, 1.756, -1.525, 0.04462, 0.537, 0.4956, -1.071, -0.1072, -0.3398, 0.3381], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4734, -0.4507, -0.4783, 0.1307, 0.33, 0.2734, 0.08685, 2.023, -0.2458, -0.7886, 1.466, -0.2805, -0.2856, -0.6016, -0.1912, 0.2296, -0.2622, 0.3643, 0.44, 0.375, 0.581, 0.012375, -0.2329, 0.12244, -0.3938, 0.3845, 0.4905, -0.1311, 0.6167, 1.886, -0.811, -0.926, -0.02531, 0.3398, -0.688, -0.923, 0.12103, -0.2969, -0.02022, -0.1561, -0.2522, -0.1697, -0.601, -0.03152, 0.606, -0.458, -0.2632, 0.0824, 0.185, -1.0625], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.81, 0.11365, -0.1056, -0.2164, -0.1, 1.753, 0.010475, 2.469, 1.483, -0.5264, 0.4006, 1.032, -0.007507, -0.2231, 2.06, -0.4946, -1.696, 1.071, 0.0907, 0.8486, -1.131, -0.0368, 1.085, -0.7715, -0.7837, 0.1053, -0.7764, -0.645, 0.11426, 0.8687, 0.6772, -0.2717, 0.561, -0.3372, -0.429, 0.1272, 0.2222, -0.43, 0.03784, 0.906, -0.261, 3.926, 0.4192, -0.013435, 0.614, 0.2656, -1.192, 0.03058, -1.32, 0.3523], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2622, 0.4128, -0.3198, 0.02458, -0.632, -0.2725, -0.06134, -0.258, -0.226, -1.155, -1.164, 0.5435, -0.3618, 0.4443, -1.216, 0.5366, 0.682, 0.5522, 0.2976, 0.692, 0.04526, -0.00843, -0.2986, -0.442, -0.01432, 0.4119, -0.0462, -0.759, 0.0885, -0.04385, -0.149, 0.2484, -0.05402, 0.3057, -0.3755, 0.479, -0.5396, -0.02869, 0.01004, -2.678, -0.2625, -0.3806, 1.82, -0.01674, 0.3743, 0.2144, 0.1968, -0.06506, 0.363, -0.3425], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0547, -0.06946, 0.435, -0.0673, 0.6533, -0.7896, -0.01032, -0.1539, 1.962, -0.704, -1.064, 1.318, 0.3706, 0.2245, 1.441, -0.01573, 0.2279, -0.9897, 0.6577, -0.7407, 0.5405, -0.0131, -0.1075, 0.176, 0.438, -0.2468, 0.2225, 0.1602, -1.118, -3.15, -0.2612, 0.2203, -0.1554, 0.4688, 0.805, 0.03174, 0.014305, 0.4248, -0.038, -1.781, -0.3916, -1.432, 0.3137, -0.03107, -0.97, 0.1077, -0.6934, 0.05542, -0.1656, -0.3806], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.206, -0.05026, 0.02731, -0.1934, -0.971, 0.1302, -0.02283, -1.27, -1.4, 1.046, -1.757, -0.03967, 0.6094, 0.3784, 0.1731, -0.8555, -0.413, 0.1686, -1.613, -0.2715, 0.0001818, 0.0041, -0.4292, -0.1098, 0.6235, 0.04852, 0.3367, -0.1866, -0.464, 1.502, -0.6743, 0.231, 0.597, -0.997, -0.5684, 0.389, 0.2654, 0.8354, -0.003056, 0.8477, 0.4177, 1.884, 0.5796, 0.0165, 0.4072, 0.5093, -0.503, -0.03345, 0.347, -1.256], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.04303, -0.05075, -0.03403, 0.01706, -0.02121, -0.02452, 0.0317, -0.02261, 0.02097, 0.00792, 0.012856, -0.02199, -0.03214, -0.0418, -0.03253, -0.0468, 0.00876, -0.03964, -0.03473, -0.03143, -0.03403, 0.002254, -0.02261, 0.02318, -0.01459, -0.03766, -0.001991, 0.01418, 0.00859, -0.0635, -0.0616, -0.0517, -0.0388, -0.03075, 0.02151, -0.03687, -0.03363, 0.03748, 0.00753, -0.04092, -0.03308, 0.00833, 0.03262, -0.01929, 0.01878, -0.014854, -0.015335, 0.02177, 0.05432, 0.01067], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.471, -0.1566, -0.04294, -0.773, -1.177, 0.2317, -0.0348, -0.6904, -0.001133, -0.2842, 0.026, 0.747, -0.0952, -0.03668, -0.3206, -0.27, -0.3125, -0.578, -0.309, 0.622, 0.0654, -0.02612, 0.02321, -0.05942, -0.0983, -0.0004308, -0.7827, -0.6934, 0.534, -0.3904, -0.4802, -0.06165, 0.1411, 0.2588, -0.3127, 0.3057, -0.479, -0.10364, 0.0086, 0.1738, -0.2217, 0.583, -0.4773, -0.0144, 0.419, -0.2214, 0.288, -0.01735, -0.0869, -0.119]] [-0.725588, -0.00307708, -0.0214729, -1.02263, 0.0132117, 0.254539, -0.0161837, 1.00489, 0.366733, 0.576586, -1.12231, -0.101106, 0.234992, 0.497892, 0.380083, -0.106264, -0.00875837, -0.217394, -0.0338691, 0.174241, 0.94051, -0.446787, -0.432205, -0.672141, -0.847108, -1.28102, -0.0116062, -0.0695951, 0.763553, -0.00961155, -0.455887, -0.883115, -0.155809, -0.264165, 1.15232, -0.00141853, -0.189275, 0.00461055, -0.0335549, -0.0259916, -0.620393, -0.587556, 0.25641, 0.323012, -0.339327, 0.0850243, -0.0925355, 0.110709, -0.00651723, 0.75789, -0.7256, -0.003077, -0.02147, -1.022, 0.013214, 0.2546, -0.01619, 1.005, 0.3667, 0.5767, -1.122, -0.10114, 0.235, 0.4978, 0.3801, -0.10626, -0.00876, -0.2174, -0.03387, 0.1742, 0.9404, -0.4468, -0.4321, -0.6724, -0.847, -1.281, -0.011604, -0.0696, 0.7637, -0.00961, -0.4558, -0.8833, -0.1558, -0.2642, 1.152, -0.001418, -0.1893, 0.004612, -0.03357, -0.02599, -0.6206, -0.5874, 0.2563, 0.323, -0.3394, 0.085, -0.0925, 0.1107, -0.006516, 0.758] ReLU [[0.811313, -0.0177385, -0.0014636, 0.0133059, -0.388109, 0.213835, 0.00453104, -0.776802, -0.137644, -0.0462726, -0.247041, 0.412123, -0.485391, -0.409135, -0.471061, 0.980002, -0.496437, -0.153921, 0.0410588, 0.328544, -0.445126, -0.801411, 0.836187, 0.430518, -0.0168299, 1.88084, -0.105027, -0.364653, -0.507144, -0.0275504, -0.958071, 0.438539, -0.246737, 0.557851, 0.599184, 0.122409, -0.214961, 1.24402, -0.0346459, -0.322664, -0.0936644, -0.353644, -0.0610976, 0.163154, -0.388433, 0.254114, -0.119902, 0.462745, 0.044751, -0.310097, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.100491, 0.0188655, -0.00925881, -0.55625, -0.617853, 0.379207, 0.0101598, -0.374003, 0.0827988, 0.237098, -0.0919097, 0.0163179, 0.438138, 0.142748, -0.0381825, -0.590176, 0.0746897, 0.509264, -0.0493225, -0.279967, -0.294505, 0.6982, -0.152568, -0.00870336, 0.0377771, 0.62479, 0.425313, 0.0494753, -0.691234, 0.0144461, 0.263372, 0.114303, 0.103521, -0.404182, -0.0170254, -0.368765, 0.150453, 0.129839, 0.033546, -0.0173307, 0.0806632, 0.206317, 0.0715441, 0.406903, -0.088828, -0.0545317, 0.175563, 0.0194402, -0.0401978, 0.0208675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.731301, -0.0109689, 0.00383127, -2.86657, -0.51331, 0.0050442, -0.0220147, 0.319144, 1.26684, -0.907023, -0.0375653, 0.80825, -0.724535, 1.22485, -0.0128222, -1.44214, 0.185645, -0.460607, 0.0113302, 1.4537, -0.226557, 0.822182, 0.73717, -0.362831, 0.613661, 4.63687, -0.476399, -0.396051, 1.10675, 0.011242, 0.700531, -0.517449, 0.39688, -0.430245, 0.0109719, 0.24185, 0.702614, 1.70956, -0.0282011, -0.504949, -0.310546, -1.39292, 0.352398, 0.100283, 0.45525, -0.285845, -1.01592, -0.88017, 0.0151465, 0.262648, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.963447, 0.0184756, 0.0524902, -3.39628, 0.201813, -0.586245, 0.00751359, 0.0629724, 1.02548, -1.18464, -1.52399, 0.353354, 0.634522, 2.49436, -1.10076, -2.10929, -0.155111, 1.20787, 0.040144, 0.3576, 0.317072, 0.160713, -1.90828, -1.18209, 0.456117, 1.83574, -0.188327, 0.719125, 1.55768, 0.038151, 0.673171, -3.72614, -0.631704, -0.787168, 0.0550641, 0.00567553, 1.62224, -0.272949, -0.0336407, -0.304505, 0.0651625, -1.23232, -0.177411, 0.206973, 0.858136, -0.179617, -0.390884, -1.42746, 0.00147773, 1.57758, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.519067, -0.0246169, -0.0110044, -0.425676, 1.16722, 2.1215, -0.00128834, 0.823633, -0.52011, -0.237305, 0.495048, 0.203697, 0.280611, 0.734181, 1.97413, 0.0370129, 0.746967, -0.024998, -0.0121088, -0.128827, 0.86027, 0.405586, 0.26779, -0.174814, -0.0518498, -0.0401906, 0.314804, 0.621194, -1.12817, -0.0184328, 0.308767, 2.49553, -1.04755, 1.06201, 0.036921, 0.0293827, 0.165621, 1.0866, -0.00971276, 0.744828, 0.0858684, 3.12814, -0.958666, 0.0508196, 0.739517, -0.516312, 0.47178, 0.403, 0.0451177, 0.306622, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-1.92815, 0.00107255, -0.0367574, -0.6403, 0.121902, -0.281761, 0.0137163, 0.287801, -0.523652, -0.651533, -0.38391, -0.46958, 0.251854, 1.52758, 0.713201, -0.904163, 1.29378, -3.50665, 0.0330222, -0.291146, 1.09246, -0.190694, -0.127036, 0.569781, 0.0717871, -1.08937, -0.356804, 0.964633, 2.14611, -0.00434954, 2.28744, 0.49767, -0.293071, -0.605983, 0.588775, -0.736287, -2.27631, 0.468967, -0.0131226, -0.615434, 0.288091, 1.29847, -0.357076, -1.0441, -0.233734, 0.159134, 0.260993, -0.774442, -0.0177385, 1.12959, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0600274, -0.0120029, -0.0498438, 1.05568, 0.774116, -0.648841, -0.0241602, 0.164155, 0.289611, 0.020502, -0.494944, -0.241698, 0.729365, -0.467453, -1.32305, -0.797542, -0.539319, 1.15863, -0.00385008, 0.276325, -0.0324962, 0.568388, -0.218214, 0.339411, -0.501625, -0.328049, -1.47908, 0.154547, -0.297043, -0.0335662, -0.783486, -0.553681, 0.983528, -0.586441, 0.336911, 0.668088, -0.647906, 0.147802, 0.0239194, -0.639321, -0.57444, 0.00224391, 0.488284, 0.709749, -1.3861, 0.855235, 0.894619, -0.112297, 0.0296955, 0.569047, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.05679, 0.0360732, -0.018255, -0.501725, 0.372611, 1.77157, -0.00233268, -0.665359, -0.484194, 1.53867, 0.329315, 0.0606779, 0.00841973, 0.0901827, 1.5512, -0.994703, 0.629109, 0.488129, -0.00941487, -0.250967, 0.57756, -0.679383, 0.0594881, 0.67746, -0.730104, 1.03187, 1.10984, 0.0440237, 1.50094, 0.0258131, 0.489309, 0.749803, 0.667329, -0.0625478, -0.270367, 0.479992, 1.45437, 0.676673, 0.0339755, -1.51184, 0.365476, 0.32379, -1.37074, 0.824769, -0.10203, -0.896035, 0.741514, 0.491357, 0.0470632, 1.42058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.423759, 0.0327952, -0.0262193, 0.401625, -0.10105, -0.65266, 0.000826148, -0.367487, 0.065482, -0.112798, 0.141655, 1.54594, -0.245872, 0.119747, -0.16871, -0.391303, -0.586213, -0.419382, -0.00395657, -0.428122, 0.339796, -0.541126, 0.829188, 0.129571, 0.130355, -0.386772, 0.107073, 0.231393, 0.139191, 0.00754007, -0.930162, -0.0512804, -0.89883, -0.0243509, 0.127727, -0.60996, 0.519975, 1.98351, -0.0252601, 0.216293, -0.0450776, -0.33975, -0.0588554, -0.407454, -0.175702, -0.262883, 0.264357, 0.0980844, -0.00164302, 0.7835, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.944394, -0.0118286, 0.0379274, -0.975407, -0.882533, 0.23147, -0.00487467, -1.13582, -0.417686, -1.03966, 0.196868, 0.862121, -0.667767, 0.737998, 0.320091, 0.958194, -0.26246, -0.736852, -0.0349438, -0.736819, 0.340736, -1.99614, 1.38675, 0.216967, -0.520038, 0.861486, 1.22213, 0.31378, 1.09245, -0.0463766, 1.65492, 0.287583, -0.325148, 0.0386103, 0.41679, 0.509949, 0.324421, 0.985516, 0.0260347, 1.16103, -0.220176, -0.0530351, 0.0363344, 0.330143, -0.135412, 0.0897156, 0.262688, -0.546898, 0.0215727, 0.295673, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.480417, 0.0023628, 0.0191803, -4.21252, 0.14837, 0.235711, -0.014872, 0.0683013, 0.596003, -0.11004, -0.272752, 0.393611, -0.860328, 0.194785, 0.322214, -0.969178, -1.00953, 0.522625, 0.067974, -0.299107, 0.117989, -0.706314, -0.583905, 0.264493, -0.458266, -0.609456, -0.5081, -0.547752, 0.434698, 0.0162448, -1.81796, -0.0776603, -0.230507, -0.455915, 0.0262963, 0.0405859, 0.122288, -1.82978, 0.0304973, 0.528785, 0.380744, 0.581266, 0.144232, 0.1151, -0.0440856, -0.484297, 0.535517, -0.463081, 0.0419933, 0.152452, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0709426, -0.0220233, 0.0437604, -0.0377328, -0.0276735, -0.03095, 0.0448819, 0.00269211, -0.00276687, -0.013933, -0.0436612, 0.0123269, 0.0181843, 0.0330683, -0.0219515, -0.00875586, -0.0146836, 0.0110944, 0.0341042, -0.0456183, -0.0422696, 0.0031869, -0.0596941, -0.0619811, -0.0441751, -0.000359246, 0.000366565, 0.016629, -0.0561777, -0.0302759, -0.0615107, -0.0252622, 0.0251009, -0.00760954, 0.0218715, -0.044191, 0.0217868, -0.0194391, -0.0312541, 0.0116615, -0.0209742, 0.0295111, -0.0450674, -0.0534241, -0.0407367, -0.0222713, 0.012751, -0.0592856, 0.0233099, 0.0210626, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.416636, 0.0293729, -0.0408676, 0.695739, 0.151289, 0.186248, -0.033982, 0.139941, -0.540407, -0.896141, -0.817135, 0.304356, -0.0229578, 1.24958, -0.157918, -0.434146, -0.850146, -1.36292, -0.0160607, -0.476017, -0.2953, -3.08645, -0.484768, -0.210179, -0.255941, -0.711761, -1.52519, -0.675345, -2.71473, -0.0262139, -0.0939162, -0.234008, -0.868482, -0.575072, 0.274914, -0.657096, -1.55423, -1.80045, 0.0078778, 1.32894, 1.19559, 1.767, 1.71488, -0.986932, 1.03454, 0.0818, -0.33332, 0.0394363, -0.0463089, -1.69761, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.472704, -0.0549676, -0.0462262, 1.12857, 0.495042, 0.910451, 0.033872, -0.0410703, 1.68722, -2.25592, 0.290531, -1.17759, 0.768398, -1.74616, 0.301216, -0.0334781, -0.336298, 1.88785, 0.0516685, 0.468893, 0.0831304, 0.322957, -0.102377, -0.50031, 0.143344, -3.42848, -3.03966, 0.0271334, -1.67207, 0.0488801, -6.78944, -1.81339, 0.845122, -0.196997, -0.0245759, -0.211604, -1.85894, -0.413863, -0.0153718, 0.319465, -0.731697, -1.46461, -0.273598, -0.974207, -0.396761, 0.959444, 0.152172, -0.994118, 0.0341299, 1.06346, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0870665, -0.0280953, 0.00581883, -0.713621, 0.491815, -0.069658, 0.0373594, -0.167977, -0.339393, -0.366378, 0.141672, 0.796677, -0.168069, 0.530639, 0.103447, 0.0210827, 0.639248, -0.781566, -0.000127343, 0.82031, 0.253545, 0.300487, -0.731732, -0.141477, 0.0501823, -0.696686, -2.18552, 0.237496, -1.26255, -0.0302104, 0.432764, 0.105244, 0.404788, -0.522077, 0.111734, -0.0190685, -2.19868, 0.175925, 0.044751, 0.238753, 0.220069, 0.165326, 0.227408, -0.27047, -0.0956266, 0.0273602, 0.34837, -0.414545, -0.0154651, 0.739651, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-1.32633, -0.00315071, -0.0279219, 0.363292, -0.18123, -0.461338, 0.00617613, -0.0865601, 0.197894, 0.271282, -0.692837, -0.430785, 0.411287, -0.44508, 1.68649, 0.174796, -0.0981218, 0.804314, 0.0238822, 0.50641, 0.346504, 0.627337, -0.152987, -0.645282, 0.336946, -1.23276, 0.331588, -0.1036, -0.710769, -0.0474171, -0.0266687, -0.0126977, 1.18906, 0.29812, 0.170107, 0.0752392, 0.355517, 0.478257, 0.0213874, -0.204202, 0.159414, -0.171194, -0.0522834, 0.260891, 0.12019, -0.118133, -0.112283, -0.0133419, -0.0333671, 0.537877, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.931318, -0.026699, -0.0430233, -8.42089, -0.410075, 0.91444, 0.00952195, -0.154176, -0.174947, 1.6879, -0.156479, 2.36038, 0.482181, -0.0162155, 0.218536, 0.577321, 1.46868, -0.464432, 0.0243973, 0.42825, -0.212455, -3.43695, 0.0553139, 0.596314, -0.407266, 1.58391, 0.0783116, 0.498192, 0.761551, 0.0353754, 0.606812, -0.727815, 0.762773, 0.276725, -0.366828, 0.56751, -0.1076, 0.872082, 0.0414551, -0.259794, 0.309054, 0.782681, 0.164771, 0.0421481, -0.577316, 0.241195, 0.00839003, 0.0720553, 0.01759, 0.721887, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.289778, 0.0274126, -0.0417219, -0.210994, -1.34888, -0.291793, -0.0384598, 0.152613, 0.00105761, -0.635325, -0.170119, -0.103042, 0.0609201, 1.49043, 0.687075, -0.165078, -0.652347, 0.790193, -0.00690178, -0.724236, 0.878917, -0.8014, 0.0368651, 0.250999, 0.272471, -0.384182, 0.234907, 0.0025715, 0.533011, -0.0295137, -0.0354768, 0.23174, -0.335175, 0.172125, 0.284949, -0.313607, 0.799504, -2.90934, -0.012615, -0.0933058, 0.311329, 0.659862, -0.29829, -0.759124, 0.522255, -0.268992, 0.205252, 0.522689, 0.0453698, 0.4594, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.13464, 0.0295944, 0.0245011, -2.28134, 0.109568, 0.388786, 0.0221704, -0.222947, 0.498451, 0.777401, -0.311282, 0.655988, 0.195293, -1.37558, 0.779089, -0.494402, 0.811202, -6.15231, -0.0258152, -1.8634, -0.164982, 1.95545, 1.30954, -0.576282, 0.0397479, 1.10488, 0.629502, 0.362247, -0.116913, -0.00158784, -1.39841, 0.30631, -0.279171, -0.254166, 0.0340864, 0.593448, 0.0665205, 0.306127, -0.0286695, 0.231519, 0.0366756, 0.260175, 0.0257343, 0.376348, -0.502748, -0.0482275, 0.00171808, -0.168766, -0.0400816, 1.2199, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.200642, -0.0033009, 0.0135852, -1.40954, 0.138612, -0.255865, 0.0360685, -0.703289, 0.584976, 0.482819, -0.442671, 0.430992, 0.22227, -0.584405, 0.634876, -0.459898, -0.034332, -0.183143, 0.0425568, 0.746816, 0.183466, 0.160072, -0.687299, 0.3428, -0.579981, 2.20816, -0.26821, 0.104586, -0.642631, 0.00962135, -0.585949, 1.3089, 0.312346, 0.0187367, -0.0870731, -0.471523, 0.6808, -0.697106, 0.0405859, -0.196089, -0.0256506, 0.512637, -0.550852, 0.316118, 0.82512, -0.932918, 0.0548054, -0.0691433, 0.00938467, -0.188773, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.06778, 0.0344189, -0.00222405, 0.0686246, -0.380264, 0.235947, 0.0190772, -0.48517, 0.247254, 1.22134, -0.19597, 0.513269, 0.476122, -0.352711, -0.125376, -0.216972, 0.51427, -0.312375, -0.0328808, 0.522547, -0.405417, 0.957507, 0.328888, -0.531307, 0.516941, 2.88329, 0.00693158, -0.201371, -0.268054, 0.0461242, -0.567902, 1.1836, 1.07446, 0.251978, 0.0705809, -1.13579, -0.812332, 1.41842, -0.0289873, 0.0660811, -0.0587564, 0.474422, 0.318032, -0.488681, -0.171418, 0.180129, 0.946826, 1.02109, 0.0101449, 0.744694, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.655075, 0.0164387, 0.0366246, 0.177964, 0.366021, 0.44641, 0.00680532, 0.626608, -0.64574, -1.94299, 0.336492, 1.22928, -0.450805, 0.53112, 0.515462, -0.793327, 0.294587, 0.797357, 0.0122763, -1.10604, 0.0327199, -0.0828126, -0.261638, -0.377329, 0.0791103, 2.51438, -1.75784, 0.606115, 0.834736, 0.0249963, 1.31886, 1.13386, -0.985015, -0.460914, 0.200869, 0.284671, 0.137742, 0.331948, 0.00896249, -0.123893, 0.26379, 0.714411, -0.697799, -0.134967, 0.0257488, 0.535767, 0.193502, -0.0636542, 0.0436053, -0.820588, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.00859, 0.00964938, -0.0260507, -1.97109, -0.178861, -0.0872287, 0.0258517, -0.0575296, -0.566175, -0.984028, 0.12646, 0.324272, -0.262476, 1.72576, 0.885657, 0.843804, 0.917316, 1.29201, -0.0231202, 0.254617, 1.09331, 2.29212, 1.58205, -0.206142, -0.479806, 0.94813, -0.474594, 0.169825, 0.371081, 0.00629849, -2.8414, -0.292976, -0.853772, 0.610063, 0.103738, 0.353901, 0.627537, 0.33616, 0.0525245, -0.687595, 0.991269, 0.367813, -0.152504, -0.0359097, 0.132177, 0.121041, 0.0685087, -0.12109, -0.0366684, 0.265422, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0382411, -0.0454778, 0.0279679, -1.87688, 0.585872, -0.48284, -0.0331704, -0.432949, 0.661612, 0.589162, 0.368233, -0.760537, -0.211078, -1.41428, -2.65694, -0.810495, -0.381588, -0.0200679, 0.000522581, -0.264054, 0.0231162, -0.960968, -1.29865, -0.872881, 0.200225, -4.13963, 0.886618, -0.873222, 0.192742, -0.00786447, -0.211825, 0.372305, 0.287954, 0.428078, -0.278429, 0.00887717, -1.06172, 0.303869, -0.0335036, 0.716549, 0.281811, 0.157619, -1.28207, 0.632141, -0.608236, -2.09721, -0.351585, -0.17695, 0.014541, 0.584467, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.428972, 0.0283061, 0.023512, -4.32271, -0.555818, 0.501647, -0.0130971, 0.156082, 0.344418, 0.716639, -0.168123, -0.0771917, -1.68225, 0.73003, -0.58561, -1.24731, 0.0453372, -5.21461, -0.0357975, -0.795874, -0.205325, -0.0340176, -0.160822, -1.19482, -0.0697359, -5.7038, 1.2089, 0.137693, -0.369307, 0.0170458, 0.494073, 1.55403, 0.263624, 0.455938, 0.0482342, 0.00503275, 0.772527, -0.93065, -0.00207728, -0.085989, 0.564283, -0.726747, -0.13993, 0.186751, 0.0541882, 0.531235, -0.307814, -0.193084, 0.0301065, 0.0452925, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.420354, 0.011102, -0.0100949, -2.7855, 0.444735, -0.341821, -0.0336035, -0.196111, 0.00688367, 0.0121731, -0.871266, 0.340184, 0.417717, -0.12782, -0.787633, -0.216453, 0.088588, -0.31274, 0.00872857, 0.36717, -0.444221, -0.601963, 0.0119677, -0.190108, 0.151363, -0.643591, 0.843356, 0.0949585, 0.32265, 0.0203074, 0.424942, -1.19022, -0.327875, 0.427815, 0.303704, 0.288988, 1.27872, -1.45, -0.00580711, -0.160407, -0.250804, 1.13876, 0.439097, 0.374644, 0.448239, -0.510803, 0.321372, -0.716122, -0.0405768, -0.601686, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0230765, 0.0425039, 0.00604485, 0.00866214, -0.0112167, -0.0208478, -0.000221185, -0.00334536, -0.040503, -0.0698407, -0.00654019, -0.00810153, 0.00852389, 0.0428863, -0.0472654, 0.0302426, -0.024082, -0.010352, 0.0117341, 0.0111874, 0.0311825, 0.016727, -0.0214917, -0.0412443, 0.0318757, 0.0443425, -0.0496544, 0.044432, -0.0334993, 0.0425624, -0.0435212, -0.00718994, -0.0216302, -0.0151579, -0.0435055, -0.0448481, -0.0141563, -0.0126352, -0.027484, -0.0224617, 0.00742873, -0.018015, 0.0329805, -0.0120797, -0.0326914, -0.0419061, 0.0149964, -0.00970029, 0.0268344, 0.0509176, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.134675, -0.0283421, 0.0325593, 0.568914, 0.311424, 0.0252139, 0.041917, 0.0746309, 0.0583415, 0.591764, -0.155039, 0.0785674, -0.269412, -0.18379, -0.201881, 0.139437, -0.161931, -0.209872, 0.018233, 0.57487, 0.0430545, 0.643033, 0.24406, -0.179074, 0.208049, 1.58078, 0.233516, 0.282132, -0.23157, -0.0321117, -0.78181, -0.0927894, 0.333846, 0.0575534, 0.0570362, -0.0261611, -0.175828, 0.218298, -0.0531317, -0.306272, -0.351634, 0.0479559, 0.0908989, 0.189459, -0.16834, -0.50422, 0.199647, 0.023206, -0.0268954, 0.273896, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.089832, -0.0058392, -0.0476836, -0.468711, 0.197222, 0.496236, -0.0363833, -0.397042, 0.201457, -0.753343, -0.18867, 1.51596, -0.223412, 0.953162, 1.23865, -2.63986, 0.157286, -1.00065, -0.045119, -0.757357, 0.193874, -1.20186, -1.65953, 0.157915, -0.433512, -0.284269, 0.112124, 0.792522, 2.10487, 0.0418095, -1.98397, 1.31459, -0.290935, 0.89202, 0.199035, -0.00662774, 0.798099, -0.968541, 0.0314963, -0.239914, 1.12785, -1.30672, -0.384953, -0.59819, 0.810036, 0.771004, -1.23762, -0.972403, 0.0320565, -0.322074, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.533056, 0.0301338, 0.000450955, -0.0169449, 0.394584, -0.213158, 0.0143484, 0.0312714, -0.718086, -0.873308, -0.175898, 0.277615, 0.106061, 0.416285, 0.280482, -0.0522649, 0.310982, -2.72787, 0.0211982, 0.134969, -0.57014, 0.191996, 0.199784, -0.29206, 0.0975938, 1.42406, -0.332286, -0.283385, 0.0532732, 0.0185434, -0.122626, 0.149549, 0.355473, -0.124114, -0.147041, -0.129311, 0.411871, -0.155746, -0.00935963, 0.410151, -0.840325, 0.162905, -0.0907317, -0.197543, -0.0673483, 0.440741, -0.172629, -0.0456312, -0.0171342, -0.252047, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0357318, 0.0450605, 0.0421839, -11.242, 0.266213, -0.637663, 0.0128606, -0.0945967, 0.120034, -0.56783, 0.222139, -0.986788, -0.301952, 1.27303, 1.09125, 0.269037, 0.771456, 0.620312, -0.032509, 0.74973, -0.115995, 1.07366, 0.489576, 0.2579, 0.200169, 0.348922, 0.293085, -0.128882, 0.648135, 0.0483273, -1.00878, -0.165187, 0.276639, -0.0615758, -0.190746, -0.240532, 0.704171, -1.39398, -0.0377028, -0.0766554, -0.446226, 0.317941, -0.248637, -0.773776, -0.141562, -0.421989, -0.634853, -1.35103, -0.0186773, -0.117341, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.946593, -0.0221957, 0.040491, 0.663431, 0.0909302, -0.224121, -0.0164189, -6.54241, -0.291494, -1.58872, -0.0752477, -0.995423, 0.558704, -0.313282, -0.256967, -0.409046, -0.164638, 0.0581523, -0.0245705, 0.380206, -0.225828, -0.869062, -0.887467, 0.74313, -0.454857, 0.587341, -0.288038, 0.0138775, -0.0542681, 0.0213342, 0.0704731, 0.528576, -0.0626746, -0.0102671, -3.9644, 0.0289203, 0.249151, -1.08364, -0.0295513, 1.00314, 0.577083, -0.065843, -0.411268, -0.678594, 1.0507, 0.998842, -0.597288, -0.0422921, 0.0455505, -1.02148, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.954327, 0.0266772, 0.0514533, 0.912429, -1.40858, -5.07143, 0.0532594, 0.387059, 1.07796, -1.24973, 0.676278, -1.00554, 0.202103, 1.86571, 0.467356, 1.18874, -4.70104, 0.884367, -0.0167872, -1.1408, -2.1699, -2.89044, 0.275337, 0.821742, 0.168856, -4.42739, -1.1772, 0.797766, -1.49599, 0.0382018, -2.53474, 0.17043, -3.23519, -1.15359, 0.060815, -0.302005, -0.650991, 0.112945, 0.0432233, -1.98592, -0.315874, 1.85365, -1.24812, -0.981022, -1.88318, -1.05639, 1.4989, 0.574752, 0.0166933, -3.49196, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.293382, 0.0115303, -0.0300807, -0.0263515, 1.36849, 0.193781, 0.012379, 0.519362, 0.267711, -0.563979, -0.476246, 0.65127, 0.914733, 0.501536, -0.12347, -1.56523, -0.311342, -2.20743, -0.0297588, -0.019627, 0.370306, -1.00903, -1.05096, -0.809662, -0.327455, -0.200574, -0.471705, -0.0114714, -1.04089, 0.0455044, 1.10211, 1.38408, -0.746379, -0.851029, 0.471854, -0.4508, -0.948197, -0.450125, 0.00110652, 1.46533, -0.811419, 0.99341, 0.139629, 0.398199, 0.0631665, 1.76213, -0.877674, 0.932817, -0.0113307, -0.311199, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.12783, -0.00919593, -0.0118468, 0.258667, -0.796779, -1.50908, -0.0295466, 0.788156, -0.50425, 0.652038, 0.266319, 0.473053, 0.577638, 0.609001, 0.0158412, 0.0907692, 1.13289, 1.10197, -0.0370423, 0.619267, 0.268206, 0.364352, 0.858178, 0.2932, -0.0821838, -0.755331, 0.661365, -1.70616, 0.864812, 0.00661227, -1.32318, 0.248612, -0.836806, 0.0883328, -0.339644, -1.36073, 0.486052, 0.989986, -0.0150513, 0.677363, 0.807683, -0.356108, -0.75579, 0.230967, 0.254993, -0.482836, -1.89509, 0.0913143, -0.00626889, 1.10661, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.38777, -0.00454229, 0.0497012, 1.0708, 0.19254, -0.0168642, 0.0477453, 0.0945038, -0.0359894, -0.0143644, -0.266836, 0.731572, 0.749883, 0.287955, -0.907636, 0.252374, 1.60382, -0.320988, 0.00604048, 0.572453, 0.199183, -0.796982, 0.207896, -0.0805822, 0.0117118, 0.989924, -2.7971, -5.28685, -0.00108187, -0.038542, -4.51399, -0.389183, -0.223448, -0.0801296, 0.151563, -0.19787, 0.581115, -0.291507, -0.00345056, 0.140115, 0.0257655, -0.196248, 0.029021, -0.359916, -0.203331, -0.10043, -2.25303, 0.289592, 0.0212118, -0.083148, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.771759, -0.0273428, 0.0196889, -0.577189, 0.197653, -0.965995, -0.0445225, -0.465324, 1.15957, 2.05721, -1.83507, 1.71085, 1.64233, 3.71569, -3.21709, -2.07053, -0.474854, 0.965559, -0.00606317, 2.5586, -0.113371, 1.17649, -0.85835, 0.0957424, -0.774141, 1.1047, -0.877691, -0.389167, 1.48849, -0.0130864, 0.989019, 0.39172, 1.89508, 1.64114, 0.216997, -0.00802008, 0.163388, -1.08442, -0.0414038, -0.347834, -0.940318, -2.59058, -0.0108722, 0.505758, -0.178299, 0.022653, -0.500763, -0.241365, 0.010683, 2.33838, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.138102, 0.00058958, 0.0283761, 0.549986, 0.0661433, -2.50239, -0.0469932, 0.352679, 0.0536239, -0.72213, 0.19088, -0.30828, 0.132972, -0.792769, 0.615765, 1.02873, -1.20273, -0.718913, 0.0201991, 0.252917, -0.681534, -0.227472, -0.557596, 0.041073, -0.270742, -3.20957, 0.187343, -0.0763597, -0.925862, -0.0241887, -0.437578, 0.346965, -0.090142, 0.214796, 0.081482, -0.725359, -0.733793, -0.545751, -0.0508016, 0.0250382, -0.19436, 0.364135, 0.0899854, -0.651392, 0.0199875, -0.534086, 0.301668, 0.323576, 0.0405854, -1.22383, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.3401, 0.0121334, -0.00800883, 1.4257, -0.365099, 0.378571, -0.00822665, -0.752624, -0.65972, 1.2278, -0.813437, 0.800513, 0.0313067, 0.91839, -0.518418, 1.1642, 0.430446, 1.60216, 0.0371016, 0.936469, -0.484686, 1.79936, 1.94012, -0.390006, 0.627778, 2.14924, 1.16332, 0.713161, 0.0173174, -0.0200927, 0.703903, 0.528863, -0.693374, 0.0185382, -0.17631, -0.366435, 1.79156, 1.2386, -0.0240505, -0.245714, 0.023033, 0.00377718, 0.252785, -0.903414, -0.173591, 0.349916, 0.362114, -2.15148, 0.0187364, 1.58117, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.50539, -0.0228517, 0.0416224, -0.409626, -1.64663, 1.34598, 0.0391681, -3.20157, 0.146062, 2.75871, -0.61292, 3.31265, -0.284479, 2.25395, -0.349595, 0.229642, 0.514632, 1.11528, 0.0287406, 0.105885, 0.677524, -2.17179, 1.86918, 0.45549, 2.12121, -0.571983, 2.58791, 0.531397, 0.144061, -0.0499785, 0.101364, 0.619147, -0.519203, -0.367891, -2.58595, -0.36753, 1.45037, 0.0938842, -0.0046505, 0.929458, 0.532295, 1.48385, 0.44598, 1.11539, -0.178974, 0.91566, 1.53495, 0.839349, -0.027788, 1.0096, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0590705, -0.00141676, 0.0119914, -1.69375, -0.0912304, 0.361036, -0.0072981, 0.140386, 0.198019, -0.0106635, 0.082318, 1.80503, -0.578689, -0.721823, -0.642943, 0.193089, 1.11686, 0.784666, 0.0411706, 0.370692, -0.142972, 0.434239, -0.362538, 0.226803, -0.0129982, 1.34117, 0.25939, -0.382362, 0.616974, 0.029159, 0.722447, -0.135499, 0.665274, -0.198023, -0.0363179, 0.113355, -0.969876, 1.52277, 0.0179129, 0.314434, -0.0420985, -0.945403, 0.297125, 1.00822, -0.192946, -0.772635, -0.234391, 0.0826652, 0.021268, 0.23637, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.101113, 0.0371734, 0.0107315, -0.126968, 0.0879583, -0.103949, 0.00541737, -0.0174191, -0.0527177, 0.390562, -0.693967, 0.632487, -0.798097, -1.52745, -0.744492, -1.4058, -0.0318744, -0.959487, 0.0495543, 0.625676, -0.035864, 0.133041, -0.448174, 0.154083, -0.199376, 2.24276, 0.999903, 0.281325, 0.537587, -0.0430699, 0.717528, 0.274869, 0.555, 0.556308, -0.0496878, -0.196055, 0.610387, 0.0106062, -0.0312864, 0.200599, 0.500662, -0.76813, 0.263402, -0.346404, 0.428867, -0.282818, -0.922678, -0.381409, -0.0455021, 0.714733, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.577698, -0.0369215, 0.0420604, -0.941128, 0.598361, 0.946358, -0.0342668, 0.22664, -0.219987, -1.649, 0.31793, -0.247147, 0.249903, -0.296621, 1.06243, -0.00103298, 0.729814, -0.359346, 0.0512736, -1.55571, 0.240059, 0.734834, -1.8309, 0.272621, 0.532336, -0.20266, -1.85707, -0.257893, -1.06486, 0.0220649, 1.53337, 1.53814, -0.398166, -0.0372271, 0.0353231, -0.0217013, -0.602596, 0.375331, 8.19982e-05, 0.454131, 0.302616, 0.826888, 0.305387, -0.873342, 0.660712, 0.565666, -0.0101074, -0.128374, -0.0338887, -1.03434, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.318596, -0.00186571, -0.0103086, -3.2705, -0.0248819, 1.22261, 0.00851778, 0.214473, -0.517481, -0.0425092, 1.06182, 0.181073, -1.32658, -2.43973, 0.674561, -0.163404, -0.453589, 0.0705861, 0.0385594, -0.97232, 1.02621, 0.332805, 0.704735, -0.572719, 0.646487, -2.39839, -0.662164, 1.04722, -0.412747, 0.0270702, -3.00255, 0.172178, -0.186008, 0.873544, 0.246415, -1.0094, 0.42461, -2.05485, -0.0294378, -0.345762, 0.66472, 2.01011, 0.131973, -1.45575, 0.336525, -2.73153, -0.760404, -0.342198, -0.049847, -1.75913, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.760214, -0.0408706, -0.0238836, -0.864504, 0.921205, -1.13125, -0.0333821, 0.378875, -0.537462, 0.361761, -0.64344, -0.000991932, 0.81196, 0.369736, -0.0395649, 0.438179, -0.340571, 0.107002, 0.0239568, -1.04195, -1.06163, -1.93315, 1.36499, 0.563536, -0.431078, -1.95502, -0.279297, -0.747956, -0.0736405, -0.0269252, -1.32509, -0.0424449, -1.05083, 0.447899, 0.210248, -0.599615, -2.01585, -1.10091, -0.00274574, 0.0887036, -0.0351324, 0.170155, -0.682618, 0.461644, 0.119972, -0.211176, 0.188575, 1.58981, 0.00499148, 0.22042, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.394744, 0.0451598, 0.00843855, -8.64305, 0.0505721, -0.432928, -0.00859871, -0.0498626, 0.528403, -0.265346, -1.01206, -0.213485, -0.944121, 0.719174, 0.906518, -0.280656, 0.144464, 2.40525, -0.0295381, 0.0668099, -0.398973, -1.82482, 0.377089, 0.0510083, -0.00770424, -0.847453, -1.56677, -0.469241, -0.15669, 0.0254073, -1.02425, -0.170599, -0.145966, -0.0945348, 0.251025, -0.299561, -1.26246, -3.19726, -0.0079116, 0.193228, -0.0570418, 1.14751, 0.0846883, 0.902416, -0.0520648, -0.946247, -0.815166, -0.292744, -0.0195672, -0.27404, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.205752, 0.0141348, 0.0238186, 0.0110625, -0.0780668, 0.804991, -0.00951888, 0.448299, -0.270209, 0.298123, -0.616803, 0.985479, 0.347499, 0.500774, 0.369662, 0.999876, 3.03668, 1.95676, 0.0129209, 0.608689, -1.11193, 1.16694, 0.783586, -0.529808, 0.0481731, 2.45282, -0.430251, -1.76543, 0.989718, -0.00255428, 2.8861, 0.20497, -0.827829, -0.490284, 0.036098, -0.0438288, 1.03597, 0.914541, -0.0392478, -0.0238381, 0.0536982, 0.116662, -0.0981768, -0.308972, -0.275115, 0.433435, -1.08495, -0.55384, -0.0431464, -0.591706, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.469939, -0.00428575, 0.0296289, 1.00469, -0.691086, -0.44241, -0.0465452, -0.302511, -0.264858, 0.0029502, 0.497938, 0.927781, 0.313907, 0.458113, -0.373221, 0.10398, 1.49416, -0.607689, 0.0202021, -0.103681, 1.36373, 1.50017, 1.01748, 0.69377, 0.85286, -0.0611901, 0.309808, -1.90695, -1.0428, -0.0243154, 0.251268, 0.0938104, 1.15704, 0.234515, -0.514147, 0.43469, 0.33847, 0.155534, -0.00486815, 0.423134, 0.0339721, -0.176598, -0.685949, 1.39892, 0.0502985, -1.1338, 0.420408, 0.0102128, 0.00810712, -0.620907, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.258992, 0.0390925, 0.0320232, -1.23515, -0.109423, -0.0440749, -0.020977, -0.0884084, 0.317673, 0.351339, -0.117655, -0.737693, 0.582759, -0.679441, -0.161368, 0.291509, -1.0132, -0.00896867, 0.0162354, 0.365794, 0.941431, 0.270007, 0.0137858, 0.26657, 0.135451, 0.542227, -0.511692, -0.845924, -0.153877, -0.0414075, 0.410176, 0.527841, -0.0751344, 0.109117, 0.440351, -0.504515, -0.061346, -1.34662, 0.0229068, 1.85892, 0.437179, -0.70837, 0.313044, -0.376874, 0.182559, -0.263453, 0.345296, -0.0866746, 0.0222974, -0.256489, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.248176, 0.0204616, -0.01597, -9.3133, -0.387316, 0.164584, -0.0267274, 0.706071, 0.201752, -1.44278, -0.0868364, 0.42155, -0.435936, -0.344492, 0.0589144, -1.08495, 0.0988594, -0.400791, -0.0295115, 0.580631, 0.227182, -0.0795563, -0.617337, 0.0921778, -0.389105, -1.07696, -0.441818, -0.135874, 1.02422, -0.0423222, -1.25833, 0.975295, -0.324869, -0.309133, 0.57203, 0.157027, -0.0483925, -1.16063, -0.0406848, -0.0519587, -0.63219, 0.864009, -0.314508, -0.133759, 0.147187, -0.663738, 0.434568, -1.24045, -0.00455045, -0.0194011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8115, -0.01775, -0.001464, 0.013306, -0.3882, 0.2139, 0.00453, -0.777, -0.1377, -0.04626, -0.2471, 0.412, -0.4854, -0.4092, -0.471, 0.98, -0.4963, -0.1539, 0.04105, 0.3286, -0.445, -0.8013, 0.8364, 0.4304, -0.01683, 1.881, -0.10504, -0.3647, -0.5073, -0.02756, -0.958, 0.4385, -0.2467, 0.5576, 0.599, 0.12244, -0.215, 1.244, -0.03464, -0.3228, -0.0937, -0.3538, -0.0611, 0.1632, -0.3884, 0.2542, -0.1199, 0.4626, 0.04474, -0.31], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.10046, 0.01886, -0.00926, -0.556, -0.6177, 0.3792, 0.01016, -0.374, 0.0828, 0.237, -0.0919, 0.01631, 0.4382, 0.1427, -0.03818, -0.5903, 0.0747, 0.5093, -0.04932, -0.28, -0.2944, 0.698, -0.1526, -0.008705, 0.03778, 0.625, 0.4253, 0.04947, -0.6914, 0.01444, 0.2634, 0.1143, 0.1035, -0.4043, -0.01703, -0.3687, 0.1505, 0.1299, 0.03354, -0.01733, 0.0807, 0.2063, 0.07153, 0.407, -0.0888, -0.05453, 0.1755, 0.01944, -0.0402, 0.02087], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.7314, -0.01097, 0.003832, -2.867, -0.513, 0.005043, -0.02202, 0.319, 1.267, -0.907, -0.03757, 0.808, -0.7246, 1.225, -0.012825, -1.442, 0.1857, -0.4607, 0.01133, 1.454, -0.2266, 0.8223, 0.7373, -0.3628, 0.614, 4.637, -0.4763, -0.396, 1.106, 0.011246, 0.7007, -0.5176, 0.397, -0.4302, 0.01097, 0.2418, 0.7026, 1.71, -0.0282, -0.505, -0.3105, -1.393, 0.3523, 0.1003, 0.4553, -0.286, -1.016, -0.8804, 0.015144, 0.2627], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9634, 0.01848, 0.0525, -3.396, 0.2018, -0.5864, 0.007515, 0.063, 1.025, -1.185, -1.524, 0.3533, 0.635, 2.494, -1.101, -2.11, -0.1552, 1.208, 0.04013, 0.3577, 0.3171, 0.1608, -1.908, -1.182, 0.456, 1.836, -0.1884, 0.719, 1.558, 0.03815, 0.6733, -3.727, -0.632, -0.787, 0.05505, 0.005676, 1.622, -0.273, -0.03363, -0.3044, 0.0652, -1.232, -0.1774, 0.207, 0.858, -0.1796, -0.3909, -1.428, 0.001478, 1.577], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.519, -0.02461, -0.011, -0.4258, 1.167, 2.121, -0.001288, 0.8237, -0.52, -0.2373, 0.495, 0.2037, 0.2805, 0.7344, 1.975, 0.03702, 0.747, -0.025, -0.01211, -0.1288, 0.8604, 0.4055, 0.2678, -0.1748, -0.05185, -0.0402, 0.3147, 0.621, -1.128, -0.01843, 0.3088, 2.496, -1.048, 1.062, 0.03693, 0.02939, 0.1656, 1.087, -0.00971, 0.7446, 0.0859, 3.129, -0.9585, 0.0508, 0.7397, -0.516, 0.4717, 0.403, 0.0451, 0.3066], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.928, 0.001073, -0.03674, -0.64, 0.1219, -0.2817, 0.01372, 0.2878, -0.5234, -0.6514, -0.3838, -0.4695, 0.252, 1.527, 0.7134, -0.9043, 1.294, -3.506, 0.03302, -0.2913, 1.093, -0.1907, -0.1271, 0.57, 0.0718, -1.09, -0.3567, 0.965, 2.146, -0.00435, 2.287, 0.4976, -0.293, -0.606, 0.589, -0.7363, -2.275, 0.469, -0.01312, -0.615, 0.288, 1.299, -0.3572, -1.044, -0.2338, 0.1592, 0.261, -0.7744, -0.01775, 1.13], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.06003, -0.012, -0.04984, 1.056, 0.774, -0.649, -0.02415, 0.1642, 0.2896, 0.02051, -0.4949, -0.2417, 0.7295, -0.4675, -1.323, -0.7974, -0.5396, 1.158, -0.00385, 0.2764, -0.0325, 0.5684, -0.2183, 0.3394, -0.5015, -0.3281, -1.4795, 0.1545, -0.297, -0.03357, -0.7837, -0.5537, 0.9834, -0.5864, 0.337, 0.668, -0.648, 0.1478, 0.02393, -0.639, -0.574, 0.002243, 0.4883, 0.71, -1.386, 0.8555, 0.8945, -0.1123, 0.0297, 0.569], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.057, 0.03607, -0.01825, -0.502, 0.3726, 1.771, -0.002333, -0.6655, -0.4841, 1.539, 0.3293, 0.06067, 0.00842, 0.0902, 1.551, -0.9946, 0.629, 0.488, -0.009415, -0.251, 0.5776, -0.679, 0.05948, 0.6772, -0.73, 1.032, 1.109, 0.04404, 1.501, 0.02582, 0.4893, 0.75, 0.6675, -0.06256, -0.2703, 0.48, 1.454, 0.677, 0.03397, -1.512, 0.3655, 0.3237, -1.371, 0.8247, -0.10205, -0.896, 0.7417, 0.4915, 0.04706, 1.421], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.4238, 0.0328, -0.02621, 0.4016, -0.1011, -0.653, 0.0008264, -0.3674, 0.0655, -0.1128, 0.1416, 1.546, -0.2458, 0.11975, -0.1687, -0.3914, -0.5864, -0.4194, -0.003956, -0.4282, 0.3398, -0.541, 0.829, 0.1295, 0.1304, -0.3867, 0.10706, 0.2314, 0.1392, 0.00754, -0.93, -0.05127, -0.899, -0.02435, 0.1277, -0.61, 0.52, 1.983, -0.02525, 0.2163, -0.04507, -0.3398, -0.05887, -0.4075, -0.1757, -0.263, 0.2644, 0.0981, -0.001643, 0.7837], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.9443, -0.011826, 0.03793, -0.9756, -0.8823, 0.2314, -0.004875, -1.136, -0.4177, -1.04, 0.1969, 0.8623, -0.668, 0.738, 0.32, 0.958, -0.2625, -0.737, -0.03494, -0.737, 0.3408, -1.996, 1.387, 0.2169, -0.52, 0.8613, 1.222, 0.3137, 1.093, -0.0464, 1.655, 0.2876, -0.3252, 0.0386, 0.4167, 0.51, 0.3245, 0.9854, 0.02603, 1.161, -0.2202, -0.05304, 0.03635, 0.33, -0.1354, 0.0897, 0.2627, -0.547, 0.02158, 0.2957], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4805, 0.002363, 0.01918, -4.21, 0.1483, 0.2357, -0.01487, 0.0683, 0.596, -0.11005, -0.2727, 0.3936, -0.8604, 0.1948, 0.3223, -0.969, -1.01, 0.5225, 0.068, -0.299, 0.118, -0.7065, -0.584, 0.2644, -0.4583, -0.6094, -0.5083, -0.548, 0.4348, 0.01625, -1.818, -0.07764, -0.2305, -0.4558, 0.02629, 0.0406, 0.1223, -1.83, 0.0305, 0.529, 0.3809, 0.581, 0.1443, 0.1151, -0.0441, -0.4844, 0.5356, -0.4631, 0.042, 0.1525], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0709, -0.02202, 0.04376, -0.03772, -0.02768, -0.03094, 0.0449, 0.002691, -0.002768, -0.01393, -0.04367, 0.01233, 0.01819, 0.03308, -0.02196, -0.00876, -0.01469, 0.01109, 0.03412, -0.04562, -0.04227, 0.003187, -0.0597, -0.06198, -0.0442, -0.0003593, 0.0003664, 0.01663, -0.05618, -0.03027, -0.06152, -0.02527, 0.0251, -0.00761, 0.02187, -0.0442, 0.02179, -0.01944, -0.03125, 0.01166, -0.02098, 0.02951, -0.04507, -0.05344, -0.04074, -0.02228, 0.01275, -0.0593, 0.02332, 0.02106], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4167, 0.02937, -0.04086, 0.696, 0.1512, 0.1863, -0.034, 0.1399, -0.5405, -0.896, -0.817, 0.3044, -0.02296, 1.25, -0.158, -0.434, -0.85, -1.363, -0.01607, -0.476, -0.2954, -3.086, -0.4849, -0.2102, -0.2559, -0.712, -1.525, -0.6753, -2.715, -0.02621, -0.09393, -0.234, -0.8687, -0.575, 0.275, -0.657, -1.555, -1.801, 0.00788, 1.329, 1.195, 1.767, 1.715, -0.987, 1.034, 0.0818, -0.3333, 0.03943, -0.0463, -1.697], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.4727, -0.05496, -0.04623, 1.129, 0.495, 0.9106, 0.03387, -0.04108, 1.6875, -2.256, 0.2905, -1.178, 0.7686, -1.746, 0.3013, -0.03348, -0.3362, 1.888, 0.05167, 0.469, 0.0831, 0.323, -0.10236, -0.5005, 0.1433, -3.428, -3.04, 0.02713, -1.672, 0.0489, -6.79, -1.813, 0.845, -0.197, -0.02458, -0.2115, -1.859, -0.4138, -0.01537, 0.3196, -0.732, -1.465, -0.2737, -0.974, -0.3967, 0.9595, 0.1522, -0.994, 0.03412, 1.063], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.08704, -0.02809, 0.005817, -0.7134, 0.4917, -0.06964, 0.03735, -0.168, -0.3394, -0.3665, 0.1417, 0.797, -0.1681, 0.531, 0.10345, 0.02109, 0.639, -0.7817, -0.0001273, 0.8203, 0.2537, 0.3005, -0.732, -0.1415, 0.05017, -0.697, -2.186, 0.2375, -1.263, -0.03021, 0.4329, 0.1052, 0.4048, -0.522, 0.11176, -0.01907, -2.2, 0.1759, 0.04474, 0.2388, 0.2201, 0.1653, 0.2274, -0.2705, -0.09564, 0.02736, 0.3484, -0.4146, -0.015465, 0.7397], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.326, -0.00315, -0.02792, 0.3633, -0.1813, -0.4614, 0.006176, -0.08655, 0.1979, 0.2712, -0.693, -0.4307, 0.4114, -0.445, 1.687, 0.1748, -0.09814, 0.804, 0.02388, 0.5063, 0.3464, 0.6274, -0.153, -0.6455, 0.337, -1.232, 0.3315, -0.1036, -0.711, -0.04742, -0.02667, -0.012695, 1.189, 0.298, 0.1702, 0.07526, 0.3555, 0.4783, 0.0214, -0.2042, 0.1594, -0.1711, -0.05228, 0.261, 0.1202, -0.1181, -0.1123, -0.01334, -0.03336, 0.538], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.931, -0.0267, -0.04303, -8.42, -0.4102, 0.9146, 0.00952, -0.1542, -0.1749, 1.6875, -0.1565, 2.361, 0.4822, -0.01622, 0.2185, 0.577, 1.469, -0.4644, 0.0244, 0.4282, -0.2124, -3.438, 0.05533, 0.596, -0.4072, 1.584, 0.0783, 0.4983, 0.7617, 0.03537, 0.607, -0.728, 0.7627, 0.2766, -0.367, 0.5674, -0.1076, 0.872, 0.04144, -0.2598, 0.309, 0.7827, 0.1648, 0.04214, -0.577, 0.2412, 0.00839, 0.0721, 0.0176, 0.7217], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2898, 0.02742, -0.04172, -0.2109, -1.349, -0.2917, -0.03845, 0.1526, 0.001058, -0.6353, -0.1702, -0.103, 0.0609, 1.49, 0.687, -0.165, -0.6523, 0.79, -0.0069, -0.724, 0.879, -0.8013, 0.03687, 0.251, 0.2725, -0.3843, 0.2349, 0.002571, 0.533, -0.02951, -0.0355, 0.2317, -0.3352, 0.1721, 0.285, -0.3137, 0.7993, -2.91, -0.01261, -0.0933, 0.3113, 0.6597, -0.2983, -0.7593, 0.5225, -0.269, 0.2052, 0.5225, 0.04538, 0.4595], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.135, 0.02959, 0.0245, -2.281, 0.10956, 0.3887, 0.02217, -0.2229, 0.4985, 0.7773, -0.3113, 0.656, 0.1953, -1.376, 0.7793, -0.4944, 0.811, -6.152, -0.02582, -1.863, -0.165, 1.955, 1.31, -0.576, 0.03973, 1.1045, 0.6294, 0.3623, -0.11694, -0.001588, -1.398, 0.3064, -0.279, -0.2542, 0.0341, 0.5933, 0.0665, 0.3062, -0.02867, 0.2316, 0.03668, 0.2603, 0.02574, 0.3765, -0.503, -0.04822, 0.0017185, -0.1688, -0.04007, 1.22], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.2007, -0.003302, 0.01359, -1.409, 0.1387, -0.2559, 0.03607, -0.703, 0.585, 0.483, -0.4426, 0.431, 0.2223, -0.5845, 0.635, -0.46, -0.03433, -0.1831, 0.04257, 0.7466, 0.1835, 0.16, -0.6875, 0.3428, -0.58, 2.209, -0.2683, 0.1046, -0.6426, 0.00962, -0.586, 1.309, 0.3123, 0.01874, -0.0871, -0.4714, 0.6807, -0.6973, 0.0406, -0.196, -0.02565, 0.5127, -0.551, 0.3162, 0.825, -0.933, 0.0548, -0.06915, 0.009384, -0.1887], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.067, 0.03442, -0.002224, 0.0686, -0.3804, 0.236, 0.01907, -0.485, 0.2473, 1.222, -0.1959, 0.513, 0.476, -0.3528, -0.1254, -0.2169, 0.514, -0.3123, -0.03287, 0.5225, -0.4055, 0.9575, 0.3289, -0.5312, 0.517, 2.883, 0.00693, -0.2014, -0.268, 0.0461, -0.568, 1.184, 1.074, 0.252, 0.07056, -1.136, -0.8125, 1.418, -0.02899, 0.0661, -0.05875, 0.4744, 0.318, -0.4888, -0.1714, 0.1802, 0.947, 1.021, 0.01015, 0.7446], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6553, 0.01643, 0.03662, 0.178, 0.366, 0.4463, 0.006805, 0.6265, -0.6455, -1.943, 0.3364, 1.2295, -0.4507, 0.5312, 0.5156, -0.7935, 0.2947, 0.7974, 0.012276, -1.106, 0.0327, -0.0828, -0.2617, -0.3774, 0.0791, 2.514, -1.758, 0.606, 0.835, 0.025, 1.319, 1.134, -0.985, -0.461, 0.2009, 0.2847, 0.1377, 0.332, 0.008965, -0.1239, 0.2637, 0.7144, -0.6978, -0.135, 0.02574, 0.5356, 0.1935, -0.06366, 0.0436, -0.821], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.009, 0.00965, -0.02605, -1.971, -0.1788, -0.0872, 0.02585, -0.05753, -0.5664, -0.984, 0.1265, 0.3242, -0.2625, 1.726, 0.8857, 0.8438, 0.9175, 1.292, -0.02312, 0.2546, 1.094, 2.293, 1.582, -0.2062, -0.4797, 0.948, -0.4746, 0.1698, 0.371, 0.006298, -2.842, -0.293, -0.854, 0.61, 0.10376, 0.354, 0.6274, 0.3362, 0.05252, -0.6875, 0.991, 0.368, -0.1525, -0.03592, 0.1322, 0.12103, 0.0685, -0.1211, -0.03668, 0.2654], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.03824, -0.04547, 0.02797, -1.877, 0.586, -0.483, -0.03317, -0.4329, 0.6616, 0.5894, 0.3682, -0.7607, -0.211, -1.414, -2.656, -0.8105, -0.3816, -0.02007, 0.0005226, -0.2642, 0.02312, -0.961, -1.299, -0.873, 0.2002, -4.14, 0.8867, -0.873, 0.1927, -0.007866, -0.2118, 0.3723, 0.2878, 0.428, -0.2783, 0.00888, -1.062, 0.304, -0.0335, 0.7163, 0.2817, 0.1576, -1.282, 0.6323, -0.6084, -2.098, -0.3516, -0.177, 0.01454, 0.5845], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.429, 0.0283, 0.02351, -4.324, -0.5557, 0.5015, -0.0131, 0.1561, 0.3445, 0.717, -0.1681, -0.0772, -1.683, 0.73, -0.5854, -1.247, 0.04535, -5.215, -0.0358, -0.796, -0.2053, -0.03403, -0.1608, -1.194, -0.06976, -5.703, 1.209, 0.1377, -0.3694, 0.01704, 0.4941, 1.554, 0.2637, 0.456, 0.04825, 0.00503, 0.7725, -0.9307, -0.002077, -0.086, 0.5645, -0.7266, -0.1399, 0.1868, 0.0542, 0.5312, -0.3079, -0.1931, 0.0301, 0.0453], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.4204, 0.0111, -0.01009, -2.785, 0.4448, -0.3418, -0.0336, -0.1962, 0.006886, 0.01218, -0.871, 0.34, 0.4177, -0.1278, -0.7876, -0.2164, 0.08856, -0.3127, 0.00873, 0.3672, -0.4443, -0.602, 0.01197, -0.1901, 0.1514, -0.6436, 0.8433, 0.095, 0.3228, 0.02031, 0.425, -1.19, -0.328, 0.4277, 0.3037, 0.289, 1.278, -1.45, -0.005806, -0.1604, -0.2507, 1.139, 0.4392, 0.3748, 0.4482, -0.5107, 0.3213, -0.7163, -0.0406, -0.6016], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.02307, 0.0425, 0.006046, 0.00866, -0.011215, -0.02084, -0.0002211, -0.003345, -0.0405, -0.0698, -0.00654, -0.0081, 0.00852, 0.04288, -0.04727, 0.03024, -0.02408, -0.01035, 0.011734, 0.011185, 0.03119, 0.01672, -0.02148, -0.04123, 0.0319, 0.04434, -0.04965, 0.04443, -0.0335, 0.04257, -0.04352, -0.00719, -0.02164, -0.01516, -0.04352, -0.04486, -0.01415, -0.012634, -0.02748, -0.02246, 0.007427, -0.01802, 0.033, -0.01208, -0.03268, -0.0419, 0.015, -0.0097, 0.02684, 0.0509], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1346, -0.02834, 0.03256, 0.569, 0.3115, 0.0252, 0.04193, 0.07465, 0.05835, 0.592, -0.155, 0.07855, -0.2695, -0.1838, -0.2019, 0.1394, -0.162, -0.2098, 0.01823, 0.5747, 0.04306, 0.643, 0.244, -0.1791, 0.208, 1.581, 0.2335, 0.2822, -0.2316, -0.0321, -0.7817, -0.0928, 0.3337, 0.05756, 0.05704, -0.02615, -0.1758, 0.2183, -0.05313, -0.3062, -0.3516, 0.04794, 0.0909, 0.1895, -0.1683, -0.5044, 0.1997, 0.02321, -0.0269, 0.274], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.08984, -0.00584, -0.04767, -0.4688, 0.1973, 0.4963, -0.03638, -0.397, 0.2014, -0.7534, -0.1887, 1.516, -0.2234, 0.953, 1.238, -2.64, 0.1572, -1.001, -0.0451, -0.7573, 0.1938, -1.202, -1.659, 0.158, -0.4336, -0.2842, 0.1121, 0.7925, 2.105, 0.0418, -1.984, 1.314, -0.291, 0.892, 0.199, -0.006626, 0.7983, -0.9688, 0.0315, -0.2399, 1.128, -1.307, -0.385, -0.598, 0.81, 0.771, -1.237, -0.972, 0.03204, -0.322], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.533, 0.03014, 0.0004508, -0.01695, 0.3945, -0.2131, 0.01435, 0.03128, -0.7183, -0.8735, -0.1759, 0.2776, 0.1061, 0.4163, 0.2805, -0.05228, 0.311, -2.729, 0.0212, 0.135, -0.5703, 0.192, 0.1998, -0.292, 0.0976, 1.424, -0.3323, -0.2834, 0.05328, 0.01854, -0.1226, 0.1495, 0.3555, -0.1241, -0.1471, -0.1293, 0.4119, -0.1558, -0.00936, 0.4102, -0.8403, 0.163, -0.09076, -0.1975, -0.0673, 0.4407, -0.1726, -0.04562, -0.01714, -0.252], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.03574, 0.04507, 0.04218, -11.24, 0.266, -0.6377, 0.01286, -0.0946, 0.12006, -0.568, 0.2222, -0.987, -0.302, 1.273, 1.091, 0.269, 0.7715, 0.62, -0.0325, 0.7495, -0.11597, 1.073, 0.4895, 0.2578, 0.2002, 0.3489, 0.293, -0.1289, 0.648, 0.04834, -1.009, -0.1652, 0.2766, -0.06158, -0.1908, -0.2405, 0.704, -1.394, -0.0377, -0.07666, -0.4463, 0.3179, -0.2487, -0.774, -0.1416, -0.4219, -0.635, -1.351, -0.01868, -0.1174], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.947, -0.0222, 0.0405, 0.6636, 0.09094, -0.2241, -0.01642, -6.543, -0.2915, -1.589, -0.07526, -0.9956, 0.5586, -0.3132, -0.257, -0.409, -0.1647, 0.05817, -0.02457, 0.3801, -0.2258, -0.869, -0.8877, 0.743, -0.4548, 0.5874, -0.288, 0.01388, -0.05426, 0.02133, 0.0705, 0.529, -0.0627, -0.01027, -3.965, 0.02892, 0.2491, -1.084, -0.02956, 1.003, 0.577, -0.06586, -0.4114, -0.6787, 1.051, 0.999, -0.597, -0.0423, 0.04556, -1.021], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.954, 0.02667, 0.05145, 0.9126, -1.408, -5.07, 0.05325, 0.387, 1.078, -1.25, 0.6763, -1.006, 0.2021, 1.865, 0.4673, 1.188, -4.7, 0.8843, -0.01678, -1.141, -2.17, -2.89, 0.2754, 0.822, 0.1688, -4.426, -1.177, 0.798, -1.496, 0.0382, -2.535, 0.1704, -3.234, -1.153, 0.06082, -0.302, -0.651, 0.1129, 0.0432, -1.986, -0.316, 1.854, -1.248, -0.981, -1.883, -1.057, 1.499, 0.5747, 0.0167, -3.492], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2935, 0.01153, -0.03008, -0.02635, 1.368, 0.1937, 0.01238, 0.5195, 0.2678, -0.564, -0.4763, 0.6514, 0.9146, 0.5015, -0.1235, -1.565, -0.3113, -2.207, -0.02975, -0.01962, 0.3704, -1.009, -1.051, -0.8096, -0.3274, -0.2006, -0.4717, -0.011475, -1.041, 0.0455, 1.103, 1.384, -0.7466, -0.851, 0.472, -0.4507, -0.948, -0.4502, 0.001106, 1.465, -0.8115, 0.9937, 0.1396, 0.3982, 0.0632, 1.762, -0.8774, 0.9326, -0.01133, -0.3113], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.128, -0.00919, -0.01185, 0.2588, -0.797, -1.509, -0.02954, 0.788, -0.5044, 0.652, 0.2664, 0.4731, 0.5776, 0.609, 0.01584, 0.09076, 1.133, 1.102, -0.03705, 0.619, 0.2683, 0.3643, 0.8584, 0.2932, -0.08215, -0.7554, 0.661, -1.706, 0.8647, 0.00661, -1.323, 0.2487, -0.837, 0.0883, -0.3396, -1.36, 0.486, 0.9897, -0.01505, 0.6772, 0.8076, -0.3562, -0.756, 0.231, 0.255, -0.483, -1.8955, 0.0913, -0.006268, 1.106], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.3877, -0.004543, 0.0497, 1.07, 0.1925, -0.01686, 0.04776, 0.0945, -0.03598, -0.014366, -0.2668, 0.7314, 0.75, 0.2878, -0.9077, 0.2524, 1.604, -0.321, 0.00604, 0.5723, 0.1992, -0.797, 0.2079, -0.08057, 0.01171, 0.9897, -2.797, -5.285, -0.001081, -0.03854, -4.516, -0.3892, -0.2234, -0.08014, 0.1516, -0.1979, 0.581, -0.2915, -0.00345, 0.1401, 0.02577, -0.1963, 0.02902, -0.3599, -0.2034, -0.1004, -2.254, 0.2896, 0.02121, -0.0831], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.772, -0.02734, 0.01968, -0.577, 0.1976, -0.966, -0.04453, -0.4653, 1.159, 2.057, -1.835, 1.711, 1.643, 3.715, -3.217, -2.07, -0.4749, 0.9653, -0.00606, 2.559, -0.11334, 1.177, -0.8584, 0.09576, -0.774, 1.1045, -0.878, -0.3892, 1.488, -0.013084, 0.9893, 0.3916, 1.8955, 1.642, 0.217, -0.00802, 0.1633, -1.084, -0.0414, -0.348, -0.9404, -2.59, -0.01087, 0.506, -0.1783, 0.02266, -0.501, -0.2413, 0.01068, 2.338], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1381, 0.0005894, 0.02838, 0.55, 0.06616, -2.502, -0.047, 0.3528, 0.05362, -0.722, 0.1909, -0.3083, 0.1329, -0.793, 0.6157, 1.028, -1.203, -0.7188, 0.0202, 0.253, -0.6816, -0.2274, -0.5576, 0.04108, -0.2708, -3.209, 0.1874, -0.07635, -0.926, -0.02419, -0.4375, 0.347, -0.09015, 0.2148, 0.0815, -0.7256, -0.734, -0.546, -0.0508, 0.02504, -0.1943, 0.364, 0.08997, -0.6514, 0.01999, -0.534, 0.3018, 0.3235, 0.0406, -1.224], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.34, 0.01213, -0.00801, 1.426, -0.365, 0.3787, -0.008224, -0.7524, -0.6597, 1.228, -0.8135, 0.8003, 0.0313, 0.9185, -0.5186, 1.164, 0.4304, 1.603, 0.0371, 0.9365, -0.4846, 1.8, 1.94, -0.39, 0.628, 2.148, 1.163, 0.7134, 0.01732, -0.0201, 0.704, 0.529, -0.6934, 0.01854, -0.1763, -0.3665, 1.792, 1.238, -0.02405, -0.2457, 0.02303, 0.003777, 0.2527, -0.9033, -0.1736, 0.3499, 0.362, -2.152, 0.01874, 1.581], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.506, -0.02286, 0.04163, -0.4097, -1.646, 1.346, 0.03915, -3.201, 0.1461, 2.758, -0.613, 3.312, -0.2844, 2.254, -0.3496, 0.2296, 0.5146, 1.115, 0.02875, 0.1059, 0.6777, -2.172, 1.869, 0.4556, 2.121, -0.572, 2.588, 0.5312, 0.144, -0.05, 0.1014, 0.619, -0.519, -0.368, -2.586, -0.3674, 1.45, 0.0939, -0.00465, 0.9297, 0.532, 1.483, 0.446, 1.115, -0.179, 0.9155, 1.535, 0.8394, -0.02779, 1.01], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.05908, -0.001417, 0.01199, -1.693, -0.09125, 0.361, -0.007298, 0.1404, 0.198, -0.010666, 0.08234, 1.805, -0.5786, -0.7217, -0.643, 0.1931, 1.117, 0.7847, 0.04117, 0.3706, -0.143, 0.4343, -0.3625, 0.2268, -0.013, 1.341, 0.2593, -0.3823, 0.617, 0.02916, 0.7227, -0.1355, 0.665, -0.198, -0.03632, 0.11334, -0.9697, 1.522, 0.01791, 0.3145, -0.04208, -0.9453, 0.297, 1.008, -0.193, -0.7725, -0.2344, 0.08264, 0.02127, 0.2363], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.10114, 0.03717, 0.010735, -0.127, 0.08795, -0.10394, 0.005417, -0.01743, -0.0527, 0.3906, -0.694, 0.6323, -0.7983, -1.527, -0.7446, -1.406, -0.03186, -0.9595, 0.04956, 0.6255, -0.03586, 0.133, -0.4482, 0.154, -0.1993, 2.242, 1.0, 0.2812, 0.5376, -0.04306, 0.7173, 0.275, 0.555, 0.556, -0.04968, -0.196, 0.6104, 0.010605, -0.03128, 0.2006, 0.5005, -0.768, 0.2634, -0.3464, 0.429, -0.2827, -0.923, -0.3813, -0.0455, 0.715], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5776, -0.03693, 0.04205, -0.941, 0.598, 0.9463, -0.03427, 0.2267, -0.22, -1.649, 0.3179, -0.2472, 0.2499, -0.2966, 1.0625, -0.001033, 0.73, -0.3594, 0.05127, -1.556, 0.2401, 0.735, -1.831, 0.2727, 0.532, -0.2026, -1.857, -0.2578, -1.064, 0.02206, 1.533, 1.538, -0.3982, -0.03723, 0.0353, -0.0217, -0.6025, 0.3752, 8.2e-05, 0.454, 0.3027, 0.8267, 0.3054, -0.8735, 0.6606, 0.5654, -0.01011, -0.1284, -0.03387, -1.034], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3186, -0.001865, -0.01031, -3.27, -0.02489, 1.223, 0.008514, 0.2145, -0.5176, -0.0425, 1.062, 0.181, -1.326, -2.44, 0.675, -0.1635, -0.4536, 0.07056, 0.03857, -0.972, 1.026, 0.3328, 0.7046, -0.5728, 0.6465, -2.398, -0.662, 1.047, -0.4128, 0.02707, -3.002, 0.1721, -0.186, 0.8735, 0.2465, -1.01, 0.4246, -2.055, -0.02943, -0.3457, 0.6646, 2.01, 0.132, -1.456, 0.3364, -2.732, -0.7603, -0.3423, -0.04984, -1.759], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7603, -0.04086, -0.02388, -0.8647, 0.9214, -1.131, -0.0334, 0.379, -0.5376, 0.3618, -0.6436, -0.000992, 0.812, 0.3696, -0.03955, 0.4382, -0.3406, 0.107, 0.02396, -1.042, -1.062, -1.934, 1.365, 0.5635, -0.4312, -1.955, -0.2793, -0.748, -0.07367, -0.02693, -1.325, -0.04245, -1.051, 0.448, 0.2102, -0.5996, -2.016, -1.101, -0.002747, 0.0887, -0.03513, 0.1702, -0.6826, 0.4617, 0.12, -0.2112, 0.1886, 1.59, 0.00499, 0.2205], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.3948, 0.04517, 0.00844, -8.64, 0.05057, -0.4329, -0.0086, -0.04987, 0.5283, -0.2654, -1.012, -0.2135, -0.9443, 0.719, 0.9067, -0.2808, 0.1444, 2.404, -0.02954, 0.06683, -0.399, -1.825, 0.3772, 0.051, -0.007706, -0.8477, -1.566, -0.4692, -0.1567, 0.0254, -1.024, -0.1707, -0.146, -0.09454, 0.251, -0.2996, -1.263, -3.197, -0.00791, 0.1932, -0.05704, 1.147, 0.0847, 0.9023, -0.05206, -0.9463, -0.815, -0.2927, -0.01956, -0.274], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2058, 0.01414, 0.02382, 0.01106, -0.07806, 0.805, -0.00952, 0.4482, -0.2703, 0.298, -0.6167, 0.9854, 0.3474, 0.501, 0.3696, 1.0, 3.037, 1.957, 0.012924, 0.609, -1.112, 1.167, 0.7837, -0.53, 0.0482, 2.453, -0.4302, -1.766, 0.9897, -0.002554, 2.887, 0.205, -0.8276, -0.4902, 0.0361, -0.04382, 1.036, 0.9146, -0.03925, -0.02383, 0.0537, 0.11664, -0.0982, -0.309, -0.2751, 0.4333, -1.085, -0.5537, -0.04315, -0.592], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.47, -0.004284, 0.02963, 1.005, -0.691, -0.4424, -0.04654, -0.3025, -0.265, 0.00295, 0.498, 0.9277, 0.314, 0.458, -0.3733, 0.104, 1.494, -0.608, 0.0202, -0.1037, 1.363, 1.5, 1.018, 0.694, 0.853, -0.0612, 0.3098, -1.907, -1.043, -0.02432, 0.2512, 0.0938, 1.157, 0.2345, -0.514, 0.4346, 0.3384, 0.1555, -0.004868, 0.423, 0.03397, -0.1766, -0.686, 1.398, 0.0503, -1.134, 0.4204, 0.010216, 0.00811, -0.621], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.259, 0.0391, 0.032, -1.235, -0.10944, -0.04407, -0.02098, -0.0884, 0.3176, 0.3513, -0.1177, -0.738, 0.5825, -0.679, -0.1614, 0.2915, -1.014, -0.00897, 0.01624, 0.3657, 0.9414, 0.27, 0.01379, 0.2666, 0.1355, 0.542, -0.5117, -0.8457, -0.1539, -0.0414, 0.4102, 0.528, -0.07513, 0.10913, 0.4404, -0.5044, -0.06134, -1.347, 0.0229, 1.859, 0.4373, -0.7085, 0.313, -0.377, 0.1826, -0.2634, 0.3452, -0.0867, 0.0223, -0.2566], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2482, 0.02046, -0.01598, -9.31, -0.3872, 0.1646, -0.02673, 0.706, 0.2018, -1.442, -0.08685, 0.4216, -0.436, -0.3445, 0.05893, -1.085, 0.0989, -0.401, -0.02951, 0.5806, 0.2272, -0.0795, -0.617, 0.09216, -0.3892, -1.077, -0.442, -0.1359, 1.024, -0.04233, -1.259, 0.975, -0.325, -0.309, 0.5723, 0.157, -0.0484, -1.16, -0.04068, -0.05197, -0.6323, 0.864, -0.3145, -0.1338, 0.1472, -0.6636, 0.4346, -1.24, -0.00455, -0.0194]] [1.21833, 0.375853, -0.499518, 0.229708, -0.230561, 0.604014, -0.126404, -1.15477, 0.925198, 0.391276, -0.392373, -0.0485303, 0.661184, -0.258817, -0.262143, -0.421345, -2.23233, -0.402541, -1.27036, 0.626348, -1.40018, -0.981155, -1.5832, 0.0644774, 0.26938, -0.363033, -0.00779845, -0.555079, 0.856432, 0.244071, -0.340949, 1.81262, 0.861881, 0.702678, -2.12008, -0.474719, 0.736491, -0.191585, -0.996563, -1.29823, -0.374973, 0.355833, 0.466743, 0.195897, -0.209863, 1.4417, -1.92691, -1.33186, -0.608108, -0.0552489, 1.219, 0.3757, -0.4995, 0.2297, -0.2306, 0.604, -0.1265, -1.154, 0.9253, 0.3914, -0.3923, -0.04852, 0.661, -0.2588, -0.2622, -0.4214, -2.232, -0.4026, -1.2705, 0.6265, -1.4, -0.981, -1.583, 0.06445, 0.2693, -0.363, -0.007797, -0.555, 0.8564, 0.244, -0.341, 1.8125, 0.862, 0.7026, -2.12, -0.4746, 0.7363, -0.1915, -0.9966, -1.298, -0.375, 0.3557, 0.4668, 0.1959, -0.2098, 1.441, -1.927, -1.332, -0.608, -0.05524] ReLU [[-0.284275, 1.26682, 0.227606, -0.430687, 0.175256, -2.90409, -0.354323, -0.105499, -0.065354, -0.0687478, 0.929486, -0.0042842, -0.268191, -0.0775385, -0.0606558, 0.358629, -0.485917, 0.80015, 1.47266, 0.535073, 0.276766, 0.180479, -0.379851, 0.839968, -0.145853, 0.0502979, -0.0383403, 0.747112, 0.162377, 1.13293, 0.529236, 0.0734345, 0.545077, -0.0099485, -1.18784, -0.334543, 0.172153, -0.183255, -0.288845, -0.299769, -0.558723, -0.12049, -0.570181, -0.179259, -0.918069, -0.563468, 0.986531, 0.613763, 0.652368, 0.261866, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.358022, 0.54326, -0.633674, -0.0359051, 0.0108844, 1.26203, 0.259117, -0.627013, 0.14828, -0.0526315, -0.343257, 0.00637939, -1.40376, 0.785337, -1.11938, -1.36114, 1.4982, -0.0355828, 0.25936, 0.328618, 1.26909, 1.43333, -0.253105, -0.929219, -1.39051, -0.793451, -0.0487595, -2.08604, -0.0650096, 1.00569, 0.380984, -0.5136, -2.82662, -0.333894, 1.88868, 2.62377, 0.217485, 0.553979, 1.27434, 0.54456, 1.02915, 0.280127, -2.99456, 0.192758, -1.0324, 0.62225, -0.803031, 0.827546, -0.31556, 1.48484, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0234489, -2.49712, 0.114682, -0.0691118, -0.167092, -0.789033, 0.618592, 0.536524, -0.0168831, -0.251218, -0.302744, 0.0406662, -0.129925, -0.14334, -0.41705, -0.00382989, 0.0486284, 0.640536, 0.862996, -0.0287041, -0.707495, -0.560642, -1.00281, -1.49474, -0.199561, -0.142404, 0.0264394, 0.79126, 0.446107, 0.311888, -0.131916, -0.249532, 0.309585, -0.0229734, -1.31602, -0.685365, 0.356939, 0.590178, -0.556481, -0.738531, 0.0429873, -0.386154, 0.227895, -0.0901392, -0.0226938, 0.418468, -0.017173, 0.127852, -0.270323, 0.716056, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.999008, -0.790326, 1.29958, 0.979057, 0.373025, 0.338804, -1.03814, 2.0916, -1.15365, 0.08589, -0.49122, -0.0200842, 0.13314, -1.29883, 0.70453, -2.16993, 1.12447, 1.67437, -1.50205, 0.792417, 0.380403, 1.86452, -2.14393, -0.173538, 0.999718, -0.343665, -0.00649479, -3.68844, 2.40128, -4.86179, 0.96024, 3.34568, 0.865946, -0.820488, -0.672079, -4.45719, 1.10764, 2.02691, 0.170413, 1.74066, -0.755223, -0.184888, 0.977805, 1.82849, 1.69045, 0.040112, -0.0915305, 2.3925, 0.643472, -1.14999, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0989006, 0.636087, -0.109757, -0.363131, -0.405639, 0.225736, 0.0618267, 0.183641, -0.392262, 0.566138, 0.806953, -0.0366909, 0.0871751, -0.850149, 0.225613, -0.262845, 0.430769, 1.04423, 0.866763, -1.42558, -0.422137, 0.490498, -0.466843, 0.210958, 0.398031, 0.300621, -0.00867315, -0.222954, 0.867751, 1.28645, 0.289921, -0.249705, -0.155034, 0.0458982, 0.15685, -0.203462, 0.140095, 0.692386, 0.0357768, 0.101185, -0.790539, -0.607616, 0.859083, 0.0816745, -0.0577447, -0.3711, 0.700928, 0.556247, -0.105712, 0.064958, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0968768, 0.197811, -0.593796, 0.263431, 0.205889, 0.0438197, -0.34953, -0.26315, 0.115324, -0.733997, -0.069615, 0.0311429, -0.0165353, -0.257602, -0.439022, -0.0481829, -0.505084, -0.0825689, -0.673385, -0.136646, 0.395274, -0.066023, -0.0319243, -1.21569, -0.228519, 0.680479, -0.0407958, 0.436588, 0.297282, -1.17586, 1.08094, -0.609057, -0.377546, -0.127441, -0.942879, -0.202809, 0.00364328, -0.739644, -1.49826, -0.418332, -0.214507, 1.06285, 0.50224, -0.234087, 0.321819, 0.0761167, -0.79505, 0.451784, 0.00834747, -0.150586, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.17728, 0.636085, -0.31551, -0.526668, -0.2318, 0.389489, 0.130099, 0.816966, -0.498103, -0.0886652, 0.460415, -0.0459181, 0.544465, 0.4648, -1.22266, -0.114208, -0.504829, -0.0293829, 0.0404724, 0.352464, 0.183928, -0.225708, 0.27759, -0.800456, 0.286067, 0.469946, 0.0456233, 0.545792, -0.130885, 1.45746, 0.650535, 0.0299198, 0.104971, 0.21923, 1.24524, -0.180106, -0.10135, 0.41107, 0.836492, -0.384781, 0.269002, -0.0295044, 0.128104, -0.0357706, -0.305127, -0.0325722, 0.884248, -0.320268, 0.0681919, 0.0784178, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.331806, -1.47116, 2.26557, 2.13391, 2.1977, 0.191304, 1.89413, 1.98131, -0.338592, 0.52804, 2.32016, 0.0136311, 1.43462, 0.819731, -2.64089, 0.482388, 0.369577, 1.29431, 2.0276, -0.061871, 0.182129, 0.568901, -0.0377707, 3.74893, 3.54831, 3.0322, 0.0302618, 3.75942, 0.453959, 0.897862, 2.9929, 0.0743171, 0.00879006, 0.37894, 0.900206, -1.80212, 0.810043, 3.0446, 1.15883, 0.44744, 1.31883, 1.93384, 1.35284, 1.19071, 2.06927, 0.938871, 0.90322, 1.66429, 2.07684, 1.28258, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.170405, 0.757803, -0.863912, 0.533469, -0.457795, 0.794137, 0.154619, 0.749436, 0.478885, 0.0874074, 0.518791, 0.0302184, 0.281403, 0.290648, -0.75424, 0.298071, -0.606848, -0.809644, 2.30369, -0.424082, -0.543999, 1.12735, 1.35418, 1.67151, 0.344811, -0.383678, -0.0418203, 1.39311, -0.630503, 0.901349, 0.187012, -0.0236141, -0.736971, -0.0638097, 1.14611, 1.89217, -0.159583, -1.55756, -4.41633, -0.112932, -0.364376, 0.704721, 0.121647, -0.79191, 0.545391, 0.577472, -0.566425, 0.64269, 0.0666288, 0.274511, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.379563, 0.734132, -0.687718, -0.103808, -0.0923686, 0.406493, 0.354254, 0.770176, -0.275157, -0.35677, -0.295576, -0.0454949, 0.133424, 0.103903, 1.14149, 0.949794, 1.04933, -0.224756, 0.311279, -0.442522, 0.797567, -0.442438, -0.427441, 0.32383, 0.136742, 0.619006, -0.0134779, -1.7229, -0.417007, 1.24927, 1.65082, -0.200069, 0.101421, 0.275574, 1.05537, 2.20239, -0.0301719, 1.32931, 0.34738, -0.0842973, 0.441186, -1.19089, -0.817613, -0.313352, 0.285404, 0.120433, 0.76657, -0.0445124, -0.0960039, 0.344398, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.145773, 1.25871, 0.171849, -0.0309215, -0.222246, 0.231912, 0.115675, 0.387131, -0.281555, -0.346492, 0.281663, 0.0139388, -0.0684206, 0.108411, -1.06896, 0.516769, -0.105826, 0.0190393, 0.415898, -0.249917, 0.148061, -0.202719, 0.13185, -0.687329, 0.1984, 0.342041, 0.0281302, -0.229348, 0.243042, 0.505675, -0.0135984, -0.101475, -0.0593905, 0.422999, 0.0221473, -0.042166, -0.186206, 0.507236, 0.541827, -0.482505, 0.0665278, -0.0198526, -0.460283, -0.865302, -0.579521, 0.156849, -0.0493468, -0.0690224, -0.192243, -0.187144, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.254234, -0.0759313, -0.21641, 0.0328228, 0.145663, 0.225521, -0.831283, 1.23902, 0.667077, -0.0542318, 0.337806, -0.0362097, -0.322588, 0.550372, -2.15276, -0.113621, 0.887147, 0.510452, -1.24905, -1.58582, -0.198863, 0.222578, -0.0766427, 0.184219, 1.06669, -0.980706, 0.0306799, 1.56745, -0.266377, 0.529986, -0.109913, 3.34233, -0.202272, -0.00740836, 1.41592, 0.519171, 0.0180143, 0.766378, 0.899749, 0.275515, 0.941362, -0.118229, 0.00180934, -0.208087, -0.20434, 0.176194, -0.819042, -0.19917, -0.0872376, 1.09437, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.328399, -0.806561, -0.233259, 0.199122, 0.0449956, -0.0516724, -0.868875, -0.545921, -0.186834, -0.37872, -2.50364, 0.0398915, -0.552926, 0.912888, -1.75948, -3.48989, 0.988646, -0.75722, -3.03757, -1.04781, -1.05044, 1.26576, 0.295852, -1.05146, 1.93959, 0.225418, -0.0694098, -0.864691, 0.542975, 0.444565, -1.32108, 2.29713, -0.191647, 0.244704, 0.312488, -1.37784, 0.00346581, 0.284705, 0.941921, 1.14781, 0.784581, -0.398951, 0.676804, -0.614706, -0.294457, -0.249609, -0.278088, -0.182958, 0.22915, -1.69271, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.162578, 1.76015, -0.810007, -3.75192, 0.577104, -0.0096827, -2.33598, -2.63967, -0.716967, 1.09646, -0.252697, 0.0378908, -1.34643, 1.2857, -0.592113, 0.140995, -3.23995, -1.47998, -5.03117, 1.1152, -0.556227, 0.0160079, 0.0194186, -1.75963, -0.74427, -0.636786, 0.0086819, -2.11797, -1.79077, -6.27138, -7.8958, 0.464458, -0.37865, 0.322548, -1.84493, -4.51041, -0.172198, 0.286625, -0.0687048, -0.0550956, -2.12365, -2.3063, -0.0208289, 0.563104, 0.582748, 1.69888, -1.17363, -1.20752, 0.406209, 0.0471435, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.650169, 2.05707, -0.198745, -0.210305, -0.154496, -0.427423, 0.0675001, 1.24475, 1.26031, 0.642608, 0.214276, 0.02566, -0.337905, 0.485601, 0.0864803, -0.661595, -0.249406, 0.7232, -0.538731, 0.206816, 0.495378, 0.722987, 0.799123, -0.418978, -0.535888, -0.144878, 0.0240383, 0.182735, -0.264767, -1.14296, 0.188878, 0.0446619, -0.140152, 0.425719, 0.674493, -0.337529, -0.277865, -0.820357, 0.781545, -0.275523, 0.434514, -0.549617, -0.308188, -0.406416, -0.340522, 0.140798, -0.00634322, 0.0281688, 0.338502, -0.332175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.31412, 1.95941, -1.12863, -0.278226, -0.819963, 0.207142, -1.01198, 1.44693, 0.798008, -0.153769, -0.885878, -0.0489694, 0.775227, 0.115457, 0.734768, 2.02726, 0.469568, -0.221043, 1.29198, -0.311321, 1.26446, 0.127162, 2.04824, 0.126897, -0.301804, 0.468216, -0.00413409, 2.462, -0.180891, 0.324568, 2.00382, 0.503514, 0.749987, 0.984184, -0.344942, -1.80611, -0.158834, -0.163554, -0.378898, 0.36995, 0.135367, 0.459618, -0.863998, 0.34127, -0.692251, -0.841918, 1.2, 0.0700292, -0.840236, -0.402418, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.00377343, 1.49689, -2.0712, 1.50132, 0.232392, -0.871307, -1.90945, -0.0195531, -1.88687, -0.667356, 0.22901, 0.00299684, -0.20972, -1.77553, -1.08054, 1.5485, 1.39181, -0.0435803, -2.37731, -1.07081, -0.224445, -0.819183, -3.52851, -0.395608, 1.15439, -0.498944, -0.000630277, -1.94409, 3.15953, 0.0451801, 0.182467, -0.0349953, 0.458244, 0.328345, 0.104601, 1.34702, 0.165526, 0.129263, 0.0622065, -0.213281, -0.341571, 0.142802, 0.855909, 0.0818853, 0.900619, -0.4285, 0.371865, 0.848814, 0.286174, 0.221217, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.268186, 1.24137, -0.0312714, 0.435598, 0.177536, -0.326452, -0.946285, -0.281469, -0.227357, 0.151322, -0.269015, 0.00785447, 0.0910949, 0.0930259, -0.971911, -0.580382, -0.736818, 0.521062, 0.290421, 0.256289, -0.138516, -0.272388, -0.310447, 0.0340162, 0.384415, 0.48963, -0.0214476, 1.76603, 0.28767, -1.49288, 0.948355, -0.925331, 0.0546952, -0.411163, -0.891105, -0.885179, 0.165505, -0.348402, -0.335606, 0.0695606, -0.222304, 0.470472, 0.608533, -0.342523, -0.118527, 0.0832469, -0.291898, -0.0663922, 0.391779, 0.0113011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.332611, 1.52356, 0.0904958, 1.06989, -0.255592, 1.19391, 1.20917, 0.59269, -0.887591, -0.306957, 0.193141, -0.0133169, 0.583804, 1.44802, -0.0323222, -0.69325, 3.04729, 0.737624, -3.51079, 1.08586, -0.00746613, -0.089289, 1.21751, 2.90606, 1.23159, -0.57073, -0.0250933, -0.889267, 0.389452, 2.52855, 0.16386, 0.0176434, 0.431767, -1.05188, 0.101002, 0.219061, -0.564139, 3.01826, 1.79934, -0.416807, -0.076716, -0.605331, 0.747534, 0.328707, -0.927759, -0.304006, 0.472812, 0.0830999, 0.215846, -0.594885, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0562114, -0.48633, 0.675919, 0.726934, 0.100005, -0.688669, -1.07123, 0.533984, -0.598761, 0.308611, 0.735271, 0.0124962, 0.0664155, 1.18192, -6.78514, -0.230588, 0.329212, -1.18258, -2.17538, -0.0115188, -4.61563, 0.168153, 0.0338641, 0.434331, -0.0131463, 0.101472, 0.00271732, -0.332126, -1.22241, 0.135337, 0.537247, 0.0610676, 1.01261, -0.601829, 2.16877, 1.65994, 0.188487, -2.2646, -0.870499, 0.172487, 0.115779, 1.12822, -0.10302, -1.99338, -0.385347, 0.0636825, 0.459609, 0.402605, -0.0932862, 0.631031, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.012778, -0.0272505, -0.0352487, -0.0295281, -0.0253257, 0.0191541, -0.00621281, -0.0415315, -0.00945223, 0.0358585, 0.0287837, -0.0497906, 0.00349082, -0.0112679, 0.0129249, -0.00668162, -0.0149547, 0.0237895, -0.0448949, 0.00539067, 0.037409, 0.0377003, -0.00466664, -0.00604354, -0.0360271, 0.0225744, -0.0307482, -0.0236538, -0.0347687, -0.0305213, -0.0130423, 0.0120021, -0.0488348, 0.0165546, -0.0327422, 0.0155539, -0.0178501, 0.0161265, -0.0216025, -0.0125374, -0.0432994, 0.00172066, -0.0178518, 0.00435269, -0.028389, -0.0455606, -0.0271542, -0.0339995, -0.0493311, -0.0138799, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.13098, -2.41854, -1.43525, -1.06749, 1.15255, 1.56461, -4.07561, -3.80718, 0.224617, -1.56527, -2.38962, 0.0291377, 0.449633, -5.35687, -1.98628, -9.2135, -1.49784, 1.27404, -1.18072, -1.01527, -0.620695, -1.07378, -1.73776, -1.76963, -2.22717, -1.24896, 0.0482713, -4.21331, 0.457737, -1.95539, -4.6641, -1.07585, 0.295743, -0.95307, -1.60651, -3.56269, -0.898775, -1.77992, 3.97808, 0.244878, -1.07307, -0.451742, 1.22102, 1.70229, -0.613326, 0.448902, -1.93906, 1.03113, -1.07723, 1.14332, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.313883, 0.169055, 0.0693451, 0.646804, 0.145751, -0.0962563, -1.63167, -0.488794, 0.474343, 0.0367232, -0.679209, 0.0369163, 0.212365, 0.969158, 0.0583536, -0.0952241, -1.23294, -0.418228, -0.339132, -0.14558, -0.0553567, 0.973366, -0.716211, -1.96829, 0.638094, -0.239422, -0.0677582, 0.416926, 0.212179, -1.34756, -0.528417, 0.0408894, 0.216852, -0.209786, -0.277045, -0.00699132, 0.430529, -0.367817, -0.102752, -0.195002, -0.220348, 0.786963, 0.502953, -0.499865, -1.05651, -0.328473, -1.02438, 0.355192, -0.333116, 0.279846, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.184484, 0.262424, 0.488954, -0.314003, -0.0804898, 0.00754351, 1.55459, 0.203896, 0.256019, 1.24919, -0.160849, -0.0130543, 0.331459, -0.778835, -0.884474, -0.0982978, 1.2265, 1.21316, -0.963929, 0.0525874, 0.252194, -0.369714, 0.347875, -0.855459, -0.330919, -0.344962, 0.0355463, -0.298102, 1.18565, 2.96705, -0.626469, 1.28156, -0.162213, 0.0852958, -0.28715, 1.58073, -0.215764, 0.860316, 1.54086, -0.164125, 0.220463, -0.687521, -0.357919, 0.541786, 0.700625, -0.652462, 0.319895, -0.656363, 0.228626, -0.012567, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.114098, 1.69226, 0.0411432, 0.640336, 0.454028, -0.371369, 1.56985, 1.80124, -0.687147, 0.0362648, 2.51554, 0.0175732, 0.0244624, 0.579202, -1.08378, 0.748737, -0.49071, 0.34689, 0.0328943, 0.244265, -1.03868, -0.18534, -0.203502, -0.192562, 0.0783449, 0.290319, -0.0224043, -0.145377, 0.19808, -0.0369191, 0.954906, 0.450173, 0.608103, -0.141527, 1.79435, -0.169488, 0.34406, 0.124211, 0.551751, 0.00287159, -0.105683, -0.684328, -0.346716, 0.26342, 0.349299, 0.243327, 0.51744, -0.0786158, -0.246908, -0.852789, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.306984, -2.88885, 0.820868, -1.1691, -0.645425, 0.659574, 0.620928, 0.914789, -0.380586, 0.653304, -1.30222, -0.0138448, 0.672416, 2.13761, 0.722731, 0.595021, 3.00366, 1.63084, 0.386863, 0.61162, 0.226447, 0.403856, 1.12581, 1.48901, 1.11141, 0.887769, -0.0388975, 2.4718, 0.0878332, 2.48974, -1.0884, 0.487133, 1.03251, -0.366449, 2.3258, 3.98911, -0.938098, 0.367399, 0.737401, -0.671277, 0.170576, 0.788092, 0.397106, 0.393602, 0.993614, -0.406408, 1.16868, -1.8853, -0.949831, 0.190619, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-1.0532, 0.812997, -0.0525606, -0.235053, -1.04217, -0.261044, 0.662683, 0.649432, 0.118334, -1.06859, 0.257147, 0.0229514, 0.577841, 1.17237, 1.44452, -0.0333943, 0.758348, 0.750978, 0.106588, -0.144782, 1.26728, -2.13705, -0.617745, -0.272711, -0.180695, -0.730183, -0.0393454, 0.749283, 0.412666, 2.08826, 2.16505, 0.811117, 0.0209224, 0.0619245, 1.16128, 4.05457, 0.27127, 1.34022, 1.31923, -0.480744, -0.553332, -0.39955, 1.69846, 2.30849, 1.06255, 0.0351151, -2.67225, 1.38479, -1.2118, -1.98709, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.322331, -1.53862, 0.789563, -0.527051, -0.253044, -0.119786, 0.531984, -0.610566, 0.354823, -0.749754, 1.77799, 0.0159274, 1.25937, 1.25386, 1.91068, 0.63536, -0.264885, 1.6047, 1.76722, 1.07923, -0.962823, 2.58385, -1.06186, 1.25926, 0.632296, 0.26415, 0.0399243, 1.93756, -0.836932, 2.73931, 0.0175712, -0.11787, -0.76016, -1.40027, 0.71932, 0.761819, 0.124984, 2.69124, 1.03144, 0.30401, 0.708613, 0.0308694, -0.471297, 0.376353, 1.31747, -1.68635, 0.212399, 0.894313, -0.34297, -0.339031, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.699171, 2.00548, -0.411671, 0.149516, -0.441447, 1.54196, 0.694866, 0.630184, 0.404716, 0.25343, -0.494987, 0.0229202, -1.50392, 1.7854, 0.967333, -0.268374, 2.98121, 1.25746, 1.08943, 0.740836, 0.967602, -0.0788312, 1.17115, 2.2943, 0.496295, 0.567636, 0.0398041, -0.671812, 0.376256, 1.84502, 0.918443, 0.107981, -0.296414, -0.837359, 1.66907, 1.92712, -0.347531, 2.1598, 0.0241494, -0.806388, -0.85464, 0.274417, 0.222605, -0.154209, 1.03067, 0.808865, 1.55303, 0.816903, -0.511125, 0.268956, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0192611, 1.79656, 0.551384, 0.159408, -0.0687317, -0.12259, 0.49486, -0.557924, -0.266792, 0.56198, 0.154324, -0.0187898, 0.261679, 0.0928194, 0.221043, -0.555954, 0.641607, 0.559963, 0.944821, 0.0973636, -1.30986, -1.48869, 0.813371, -0.899002, 0.250217, -0.57487, -0.0267058, -0.857023, 0.220931, 1.39376, -2.01034, -0.275653, 0.286628, -0.165247, -0.608814, -0.868963, 0.288176, 1.09796, 0.284953, -0.272322, 0.104043, -1.84853, -0.110347, 0.252881, 0.166985, 0.154492, 0.41363, -0.459985, -0.116676, 0.183026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.403155, 3.58094, -0.0684845, 0.312943, 0.121371, -0.586346, -0.252782, -0.714082, 0.469945, 1.11993, 0.630787, 0.0172489, -0.703879, 0.154944, 2.67781, -0.0067704, 1.20004, -0.169173, 1.47658, -0.496227, 0.9496, -1.67541, -0.42254, 1.40841, 0.442921, -0.257257, -0.037838, 2.53684, 0.0574775, -2.21297, 1.58881, 0.506287, -1.23114, -0.649889, -0.0978173, 3.01143, -0.554836, -5.23069, 2.67389, -0.491398, -0.529609, -0.451351, 0.086119, 0.970209, 0.578646, 0.441398, 1.307, 0.967332, 0.697648, 0.23256, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.816338, -0.974669, 0.141914, -0.457434, 0.451895, 0.585282, -2.63146, -0.0527888, 0.228212, 0.567048, 0.583511, 0.0235531, -0.0661345, -0.282686, 2.91354, -0.47136, 0.0289292, 1.42143, -0.623908, -0.0960318, -0.313375, 0.557292, -0.379237, -0.0762243, 0.65277, 0.278464, -0.0276976, -1.23381, -1.36198, 0.162014, -3.42446, 0.00705659, -1.55472, 0.454882, -1.76812, -2.47277, -0.699334, -0.402984, 0.289787, 0.396324, -1.55657, 1.58907, -0.0908736, 0.122109, -1.72773, -0.536403, 0.671964, 0.262161, -0.110674, 0.164407, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0659705, 0.489986, -0.351049, 0.494412, -0.611202, -0.112238, 0.423225, 0.100006, 0.318215, -0.0163176, 1.21514, -0.00330576, 0.0560548, 0.920715, -0.880536, -0.303963, -0.236743, 0.813473, 0.976658, -0.210659, 0.333913, 1.22307, -0.21073, 0.715377, 1.38374, -0.609727, 0.0362775, 1.94526, -0.194261, 0.921757, 1.61522, -0.25421, 0.296928, 0.122845, 1.28446, -0.854302, -0.274163, 0.776896, 0.354005, 0.180336, 0.0951353, 0.486428, 0.575516, 0.00132232, 0.10317, 0.82646, 1.09443, 0.269363, -0.179425, -1.84294, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.900838, 2.57703, -0.69438, -0.736769, -1.00233, 0.0123685, -0.580937, 0.434144, 1.39883, 0.404135, 0.18097, -0.0365661, -0.491884, -1.25644, 0.857004, 0.146387, 0.895446, -0.0373804, -0.0994301, -0.804365, 0.745899, -0.011521, 1.46374, 3.24868, -1.01716, -0.196318, -0.0285723, 1.76171, -0.295487, 1.93959, 0.390272, 0.269372, -0.505943, 0.32369, 0.795021, -0.471801, -0.750619, 0.326403, -0.313848, 0.30256, 0.53201, -0.713615, -0.703975, -0.765731, -0.639235, -0.383566, 0.801341, -0.314607, 0.471662, -0.00616915, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.16323, 0.639406, 0.467339, -0.217598, -0.0924136, 0.22057, 0.740826, 0.426803, -0.974908, 0.214078, 1.10627, -0.0307786, -0.129054, 0.222244, 1.07914, 0.290719, 0.378242, 0.212707, 0.00320677, -0.255423, 0.0197094, -0.549325, 0.308789, 1.17322, 0.102338, -0.647064, -0.0208384, 1.85923, 0.00174391, 0.211018, -1.05418, 0.0584622, 0.192502, 0.723319, 0.180405, 1.35758, -0.214581, 0.0465302, 0.76632, -0.223966, 0.0427998, -0.339725, -0.778413, 0.453984, 0.697748, -0.558328, 0.345718, -0.0880078, -0.468329, -0.266022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0528794, -0.0590655, 0.0304756, 0.213052, -0.0490519, 0.174651, 0.554494, -0.247633, 0.541209, -0.49833, 0.530083, -0.0415282, -0.301584, -1.17886, -3.57353, -0.673111, -0.552272, -0.357391, -0.142143, 0.365101, -0.165831, -0.798298, 0.527799, 0.342829, -0.0651988, -0.231023, 0.0511668, 1.8323, -0.00117606, 0.824258, -0.031021, 0.0634864, 0.347937, -0.389773, -0.571805, -1.05956, -0.0903921, -0.628903, 0.343957, -0.369439, -0.121596, 0.304264, 0.129098, 0.280402, 0.23922, 0.0732357, 1.41502, -0.0482111, 0.252375, -0.240341, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.48439, -0.46696, 0.537086, 0.0474083, 0.123195, 0.446715, -0.373878, 0.555024, -0.322277, -1.14056, -0.15141, 0.0276609, 0.391802, -0.128161, 0.0458416, 0.0400307, 0.10564, 0.763896, -0.47619, 0.483539, -0.16839, -0.01803, 0.0819146, 1.65726, 0.984789, 1.25194, 0.00399742, -1.59733, -0.184337, 1.1679, -1.16908, 0.612382, -0.193892, -0.440123, -0.0111288, -0.5446, -0.154512, -0.82155, 0.336127, -0.220392, -0.55122, -0.901624, -0.527955, -0.124108, 0.41872, -0.0141801, 0.437667, 1.0107, -0.517759, 0.670925, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.579823, 2.71946, -0.623132, 0.240218, -0.562435, 0.0747131, -0.11062, -1.95323, 0.405431, -0.296137, 1.41539, -0.0135745, -0.275769, 0.466078, 1.20972, 0.047969, 1.58726, 0.438355, -0.0530462, -0.340863, 0.711998, -0.271177, -0.346202, 2.22079, 1.84675, -0.771861, 0.0190983, 1.0816, -0.262031, 0.829304, -0.696025, -0.338908, 0.772854, -0.479626, -0.924252, 1.64185, -0.105003, -1.33625, 0.498782, 0.497039, -1.87295, 1.23388, 0.982982, -0.335519, 0.688252, 0.528904, -1.15255, 1.30328, -1.07958, 1.4042, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.755867, -2.53303, 0.690429, -0.253648, 0.11748, -0.529559, -0.407754, -2.20808, -0.0775436, 0.649543, 0.739101, 0.00485108, -0.471483, 0.350401, -1.3485, -0.481856, -1.5941, -1.05749, 1.26743, 1.68422, 0.152759, -2.06597, -0.234037, 0.642807, -0.0558574, -1.0353, 0.00759321, -0.510127, -0.156694, -1.85019, 2.34259, 0.139293, 0.453054, 0.426664, 0.444405, -1.75199, -0.231615, -1.21987, -1.7393, 0.0866174, 1.14908, 0.87026, 0.432537, -1.11913, -1.17699, -0.0786995, -0.733229, -1.19072, -0.37595, 0.350341, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0063073, -0.158148, -0.0833554, -0.0669555, -0.149701, -0.105554, 0.0129294, -0.0758146, -0.0287561, -0.0159452, 0.0370317, -0.00852738, 0.0701864, 0.0218395, -0.0250278, -0.0918062, -0.0167299, -0.141578, -0.0305547, 0.0894717, -0.265901, -0.00535277, 0.0598256, 0.0738661, -0.0956868, -0.0357707, 0.00793329, 0.00571656, 0.0747351, 0.0618329, 0.0111991, 0.178964, 0.026524, 0.036347, -0.251097, 0.0554032, 0.00741218, -0.0368947, -0.0707146, -0.0306597, -0.0214918, 0.117009, 0.077938, -0.155216, -0.0924666, 0.0591293, -0.0704943, -0.124119, 0.0410801, 0.0276152, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.00829052, 0.815607, 0.201056, -0.535283, -0.267006, 0.0332216, 0.622024, 0.731398, 0.285498, -0.322606, -0.238372, 0.0113493, -0.369413, 1.03725, -1.83024, -1.02129, -0.886929, 0.712246, -0.682769, -0.566121, 0.346827, 0.283019, -0.103928, 0.180462, 0.636335, 0.192885, -0.0485103, 1.43154, 0.342994, 1.51508, 0.263403, 0.126477, -0.0670699, -0.414532, 0.966859, 1.09097, -0.738341, 0.765486, 0.31896, 0.14129, 0.603468, 0.355562, -0.0997661, 0.114375, -0.315162, 0.638402, 0.55027, -0.573287, -0.184097, 0.0206618, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.106844, -3.71086, -0.552019, -0.612014, 0.99349, -0.443409, -2.6565, -1.25468, -1.94897, 0.0468946, -1.43641, 0.0384962, -0.488, -1.18082, 0.298491, -13.4291, 3.33805, -0.0885898, -1.78852, -2.68771, -4.02096, 1.39928, -0.342676, -2.84981, 0.223106, -0.547787, 0.00425122, -4.10294, 0.640137, 1.73471, 2.10137, -0.268978, 0.454505, -2.46765, -4.59062, -8.36669, 0.331325, -1.42121, -2.9716, -0.836467, -1.58039, -1.79906, 1.20955, 0.394612, -0.543273, -0.660232, -2.55132, 0.329211, -0.656977, 1.05109, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0723871, 0.580505, 0.29645, 0.21891, -0.258054, -0.0174203, -0.394323, -1.65597, 0.0302437, 0.0130167, -3.54187, -0.0359448, 0.428615, -0.010924, -0.190289, 1.23068, 1.09834, -0.11198, 0.918908, -0.265518, 0.343377, 0.96992, 0.503064, 1.03536, -0.348981, 0.272094, 0.0092088, 2.98221, 0.736067, 1.13716, 0.505523, 0.202451, 0.349912, -0.218073, 0.650273, -2.44091, -0.169996, 0.78373, -0.838336, -0.383846, -0.442223, -0.505687, -0.136395, -0.142265, 0.972397, -0.29331, -3.17109, -0.759627, 0.279491, -0.500538, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.12236, 0.426088, -0.316444, -0.434342, -0.494173, 0.73156, -0.440819, 0.029812, 0.78854, -0.252462, 0.678571, -0.0411198, -0.539202, -0.701557, 1.14747, -0.482863, 1.65548, 0.268428, -0.833923, -0.872314, 0.161458, -0.666464, 0.743855, 2.51191, 0.324225, -0.621616, 0.0167678, -0.0916108, 0.0212643, 2.67912, -0.391477, 0.419872, -0.525817, -0.126785, 0.231581, 0.201953, -0.513373, 0.0985635, 0.537365, 0.413361, 0.580884, -0.107579, 0.0914069, 0.140279, 0.0291187, 0.205933, 0.588687, -0.23258, 0.281435, 1.1293, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0586664, -0.806584, -0.0765156, 0.182652, 0.0983031, -0.131669, 0.096281, -0.0310456, 0.52573, 0.759204, -0.542016, 0.0197133, 0.419307, -0.759262, -1.23573, 0.0689432, 0.335936, 0.00699886, 0.0644176, -0.160764, -0.00317411, -0.386552, 0.285078, -0.284247, 0.0554896, 0.0101737, -0.0271135, -0.0709641, 0.00449068, 0.449197, 0.0479091, 0.162362, -0.341255, 0.0758764, -0.254116, -1.78187, 0.241849, 0.511203, 0.0122546, 0.189284, 0.583504, -0.189127, -0.0894164, 0.38615, 0.091116, 0.035632, 0.0126621, -0.245792, 0.384396, 0.214631, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.240622, -2.21794, 0.253197, 0.100278, -0.23129, -0.723861, -0.128824, 0.457958, 0.243213, 0.325193, 0.511448, -0.00771262, -0.923622, 0.181761, 1.3402, 0.623447, 0.783559, -0.222595, 0.0427555, -0.0487431, -0.208418, -0.179052, 0.219971, 0.667823, 0.271573, 0.0818551, 0.0105107, 0.693074, 0.0419809, 0.805912, -0.0689762, -0.0682103, -0.529693, 0.0908128, 0.232833, 0.443013, -0.621185, 0.898635, -0.826145, -0.0430814, -0.0355935, 0.171585, 0.252858, 0.212211, 0.448188, 0.122546, 0.0302043, 1.14366, 0.237843, 0.361547, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-1.35751, -3.88019, -0.613062, -0.942671, 0.301746, 0.106906, 0.984956, -3.66305, 0.0188413, 0.854888, -1.40868, -0.0442855, -0.69085, -0.137974, 1.80443, -0.610102, 0.0283075, -1.30331, -0.411488, 1.72937, 0.521437, -0.830002, -1.16802, -4.2889, -1.5794, -2.78957, -0.00818726, -1.73344, 0.270378, -6.00068, 1.61027, 2.9489, 0.767939, 0.518549, 0.712006, -3.37045, 0.241456, -3.6613, 2.58931, -0.309675, -2.00334, -0.3577, 0.00207665, -0.20407, 0.0560358, 0.653713, -1.41749, -0.282993, 0.425683, -1.80554, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.105657, -1.2411, 0.097486, -0.0732571, 0.135073, 0.697984, -0.31206, 0.338973, 0.160884, -0.308835, -0.15801, -0.0199675, -0.237758, 0.531561, 0.122127, -0.069766, 0.552214, -1.16987, -0.557575, 0.342957, -0.282554, 0.0966528, 0.202975, 0.578097, 0.394102, 0.00282032, 0.00721883, -0.109211, -0.100114, 0.17035, -0.686516, -0.530799, -0.316579, 0.0779676, -1.26615, -0.0880863, 0.103119, -0.190706, -1.12426, 0.221176, 0.00238201, -0.721319, 0.405173, -0.173616, 0.0936056, 0.0124885, -0.318126, -1.39959, 0.126646, -0.229249, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0544387, 0.0318407, -0.00494751, -0.0453473, 0.00486177, 0.0273195, -0.00308243, 0.0315614, 0.0195515, -0.0497246, 0.0232228, 0.0297023, 0.000146404, -0.00510103, 0.0201175, -0.0101679, -0.0336553, 0.022804, -0.00202287, -0.0491653, -0.0155629, -0.0472109, 0.0116035, 0.0184606, -0.0554498, -0.0466292, -0.0265829, -0.0145717, -0.0625577, 0.0213534, 0.0305276, -0.00148679, -0.045615, 0.000178186, 0.0431409, -0.0256723, -0.0522248, 0.0225956, 0.0218752, -0.00685589, 0.0153951, 0.0158764, 0.000904041, -0.0560237, -0.0658094, -0.0484432, -0.0203288, -0.0437119, -0.00964187, -0.0312889, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-1.24653, -1.90103, 0.518482, 0.638194, 0.936413, -0.981042, -0.182626, -0.423077, -0.890909, -0.233012, -0.725546, 0.0127101, 0.36068, 0.617299, -0.283685, 0.430569, -0.650614, 0.722261, -0.70136, -0.317811, -0.290717, 0.0144176, -0.916125, -0.473655, 0.658821, -0.127603, 0.021195, -3.74292, 0.352904, -3.05259, -0.250116, 1.01783, 0.364797, -0.200665, -0.764628, -0.50688, 0.455734, -0.527596, -0.197679, -0.65848, -0.591984, 0.409957, 0.059913, 0.547452, 0.0361255, 0.313067, -1.11724, 0.517463, 0.23901, 0.93731, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.2842, 1.267, 0.2277, -0.4307, 0.1753, -2.904, -0.3542, -0.10547, -0.06537, -0.0687, 0.9297, -0.004284, -0.2683, -0.0775, -0.06067, 0.3586, -0.4858, 0.8003, 1.473, 0.535, 0.2769, 0.1804, -0.38, 0.84, -0.1459, 0.0503, -0.03833, 0.747, 0.1624, 1.133, 0.5293, 0.0734, 0.545, -0.00995, -1.1875, -0.3345, 0.1721, -0.1832, -0.2888, -0.2998, -0.5586, -0.1205, -0.5703, -0.1792, -0.918, -0.5635, 0.9863, 0.614, 0.6523, 0.262], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.358, 0.5435, -0.634, -0.03592, 0.01089, 1.262, 0.259, -0.627, 0.1483, -0.05264, -0.3433, 0.00638, -1.403, 0.785, -1.119, -1.361, 1.498, -0.03558, 0.2593, 0.3286, 1.27, 1.434, -0.2532, -0.929, -1.391, -0.7935, -0.04877, -2.086, -0.065, 1.006, 0.381, -0.5137, -2.826, -0.334, 1.889, 2.623, 0.2175, 0.554, 1.274, 0.5444, 1.029, 0.28, -2.994, 0.1927, -1.032, 0.622, -0.803, 0.8276, -0.3157, 1.484], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.02345, -2.498, 0.1147, -0.0691, -0.1671, -0.789, 0.6187, 0.5366, -0.01688, -0.2512, -0.3027, 0.04068, -0.1299, -0.1433, -0.417, -0.00383, 0.0486, 0.6406, 0.863, -0.0287, -0.7075, -0.5605, -1.003, -1.495, -0.1996, -0.1425, 0.02644, 0.7915, 0.446, 0.3118, -0.132, -0.2495, 0.3096, -0.02298, -1.316, -0.6855, 0.357, 0.5903, -0.5566, -0.739, 0.043, -0.3862, 0.2279, -0.09015, -0.02269, 0.4185, -0.01717, 0.1278, -0.2703, 0.716], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.999, -0.7905, 1.3, 0.979, 0.373, 0.3389, -1.038, 2.092, -1.153, 0.0859, -0.4912, -0.02008, 0.1332, -1.299, 0.7046, -2.17, 1.124, 1.675, -1.502, 0.7925, 0.3804, 1.864, -2.145, -0.1736, 0.9995, -0.3438, -0.006496, -3.688, 2.4, -4.863, 0.9604, 3.346, 0.8657, -0.8203, -0.672, -4.457, 1.107, 2.027, 0.1704, 1.74, -0.7554, -0.1849, 0.978, 1.828, 1.69, 0.0401, -0.09155, 2.393, 0.6436, -1.15], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0989, 0.636, -0.10974, -0.363, -0.4055, 0.2257, 0.06183, 0.1836, -0.3923, 0.566, 0.807, -0.03668, 0.08716, -0.85, 0.2256, -0.263, 0.4307, 1.044, 0.8667, -1.426, -0.422, 0.4905, -0.4668, 0.2109, 0.398, 0.3005, -0.008675, -0.2229, 0.8677, 1.286, 0.29, -0.2498, -0.155, 0.0459, 0.1569, -0.2035, 0.1401, 0.6924, 0.03577, 0.1012, -0.7905, -0.6074, 0.859, 0.08167, -0.05774, -0.371, 0.701, 0.556, -0.1057, 0.06494], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.09686, 0.1978, -0.5938, 0.2634, 0.2059, 0.04382, -0.3496, -0.2632, 0.1153, -0.734, -0.06964, 0.03114, -0.01654, -0.2576, -0.439, -0.0482, -0.505, -0.0826, -0.6733, -0.1366, 0.3953, -0.06604, -0.03192, -1.216, -0.2285, 0.6807, -0.0408, 0.4365, 0.2974, -1.176, 1.081, -0.609, -0.3774, -0.1274, -0.943, -0.2028, 0.003643, -0.7397, -1.498, -0.4182, -0.2145, 1.0625, 0.5024, -0.2341, 0.3218, 0.0761, -0.795, 0.452, 0.00835, -0.1506], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1772, 0.636, -0.3154, -0.527, -0.2318, 0.3894, 0.1301, 0.817, -0.498, -0.0887, 0.4604, -0.04593, 0.5444, 0.4648, -1.223, -0.1142, -0.505, -0.02939, 0.04047, 0.3525, 0.184, -0.2257, 0.2776, -0.8003, 0.2861, 0.47, 0.04562, 0.546, -0.1309, 1.457, 0.6504, 0.02992, 0.105, 0.2192, 1.245, -0.18, -0.1014, 0.4111, 0.8364, -0.3848, 0.269, -0.02951, 0.128, -0.03577, -0.3052, -0.03256, 0.8843, -0.3203, 0.0682, 0.0784], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3318, -1.471, 2.266, 2.135, 2.197, 0.1913, 1.895, 1.981, -0.3386, 0.528, 2.32, 0.01363, 1.435, 0.82, -2.64, 0.4824, 0.3696, 1.294, 2.027, -0.06186, 0.1821, 0.569, -0.03778, 3.748, 3.549, 3.031, 0.03026, 3.76, 0.4539, 0.898, 2.992, 0.07434, 0.00879, 0.379, 0.9004, -1.802, 0.81, 3.045, 1.159, 0.4475, 1.318, 1.934, 1.353, 1.19, 2.068, 0.939, 0.9033, 1.664, 2.076, 1.282], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1704, 0.758, -0.864, 0.5337, -0.4578, 0.794, 0.1547, 0.7495, 0.479, 0.0874, 0.5186, 0.03021, 0.2815, 0.2905, -0.7544, 0.298, -0.607, -0.8096, 2.303, -0.424, -0.544, 1.127, 1.3545, 1.672, 0.3447, -0.3838, -0.0418, 1.394, -0.6304, 0.9014, 0.187, -0.02362, -0.737, -0.0638, 1.146, 1.893, -0.1595, -1.558, -4.418, -0.1129, -0.3643, 0.7046, 0.12164, -0.792, 0.5454, 0.5776, -0.5664, 0.6426, 0.06665, 0.2744], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3796, 0.7344, -0.6875, -0.1038, -0.09235, 0.4065, 0.3542, 0.77, -0.2751, -0.3567, -0.2957, -0.0455, 0.1334, 0.1039, 1.142, 0.9497, 1.05, -0.2247, 0.3113, -0.4426, 0.7974, -0.4424, -0.4275, 0.3237, 0.1367, 0.619, -0.01348, -1.723, -0.417, 1.249, 1.65, -0.2001, 0.10144, 0.2756, 1.056, 2.203, -0.03017, 1.329, 0.3474, -0.0843, 0.4412, -1.19, -0.8174, -0.3132, 0.2854, 0.1204, 0.7666, -0.04453, -0.096, 0.3445], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1458, 1.259, 0.1719, -0.03091, -0.2223, 0.2319, 0.11566, 0.3872, -0.2815, -0.3464, 0.2817, 0.01394, -0.0684, 0.1084, -1.069, 0.5166, -0.10583, 0.01904, 0.416, -0.2499, 0.1481, -0.2028, 0.1318, -0.6875, 0.1984, 0.342, 0.02814, -0.2294, 0.243, 0.506, -0.013596, -0.1015, -0.0594, 0.423, 0.02214, -0.04218, -0.1862, 0.5073, 0.542, -0.4824, 0.0665, -0.01985, -0.4602, -0.865, -0.5796, 0.1569, -0.04935, -0.06903, -0.1923, -0.1871], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.2542, -0.0759, -0.2164, 0.03284, 0.1456, 0.2255, -0.831, 1.239, 0.667, -0.05423, 0.338, -0.03622, -0.3225, 0.5503, -2.152, -0.11365, 0.887, 0.5103, -1.249, -1.586, -0.1989, 0.2225, -0.07666, 0.1842, 1.066, -0.9805, 0.03069, 1.567, -0.2664, 0.53, -0.1099, 3.342, -0.2023, -0.00741, 1.416, 0.519, 0.01802, 0.7666, 0.9, 0.2756, 0.9414, -0.1182, 0.001809, -0.2081, -0.2043, 0.1761, -0.819, -0.1992, -0.0872, 1.095], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3284, -0.8066, -0.2333, 0.1991, 0.04498, -0.05167, -0.8687, -0.546, -0.1869, -0.3787, -2.504, 0.0399, -0.5527, 0.913, -1.76, -3.49, 0.989, -0.7573, -3.037, -1.048, -1.051, 1.266, 0.296, -1.052, 1.939, 0.2255, -0.0694, -0.8647, 0.543, 0.4446, -1.321, 2.297, -0.1917, 0.2448, 0.3125, -1.378, 0.003466, 0.2847, 0.942, 1.147, 0.7847, -0.399, 0.677, -0.6147, -0.2944, -0.2496, -0.278, -0.183, 0.2291, -1.692], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1626, 1.76, -0.81, -3.752, 0.577, -0.00968, -2.336, -2.64, -0.717, 1.097, -0.2527, 0.0379, -1.347, 1.286, -0.5923, 0.141, -3.24, -1.4795, -5.03, 1.115, -0.556, 0.016, 0.01942, -1.76, -0.744, -0.6367, 0.00868, -2.117, -1.791, -6.27, -7.895, 0.4644, -0.3787, 0.3225, -1.845, -4.51, -0.1722, 0.2866, -0.0687, -0.05508, -2.123, -2.307, -0.02083, 0.563, 0.5825, 1.699, -1.174, -1.208, 0.4062, 0.04715], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6504, 2.057, -0.1987, -0.2103, -0.1545, -0.4275, 0.0675, 1.245, 1.261, 0.6426, 0.2142, 0.02567, -0.338, 0.4856, 0.0865, -0.6616, -0.2494, 0.723, -0.5386, 0.2068, 0.4954, 0.723, 0.7993, -0.419, -0.5356, -0.1449, 0.02403, 0.1827, -0.2646, -1.143, 0.1888, 0.04465, -0.1401, 0.4258, 0.6743, -0.3376, -0.2778, -0.8203, 0.7817, -0.2756, 0.4346, -0.55, -0.308, -0.4065, -0.3406, 0.1407, -0.006344, 0.02817, 0.3386, -0.3323], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.314, 1.959, -1.129, -0.2783, -0.82, 0.2072, -1.012, 1.447, 0.798, -0.1538, -0.8857, -0.04898, 0.7754, 0.1155, 0.735, 2.027, 0.4695, -0.2211, 1.292, -0.3113, 1.265, 0.1272, 2.049, 0.127, -0.3018, 0.4683, -0.004135, 2.463, -0.1809, 0.3245, 2.004, 0.5034, 0.75, 0.9844, -0.345, -1.806, -0.1588, -0.1636, -0.379, 0.3699, 0.1354, 0.4597, -0.864, 0.3413, -0.6924, -0.842, 1.2, 0.07, -0.8403, -0.4023], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.003773, 1.497, -2.07, 1.501, 0.2324, -0.871, -1.909, -0.01955, -1.887, -0.6675, 0.229, 0.002996, -0.2097, -1.775, -1.08, 1.549, 1.392, -0.04358, -2.377, -1.071, -0.2245, -0.8193, -3.53, -0.3955, 1.154, -0.499, -0.0006304, -1.944, 3.16, 0.04517, 0.1825, -0.035, 0.4583, 0.3284, 0.1046, 1.347, 0.1655, 0.1293, 0.0622, -0.2133, -0.3416, 0.1428, 0.856, 0.0819, 0.9004, -0.4285, 0.3718, 0.8486, 0.2861, 0.2212], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.268, 1.241, -0.03128, 0.4355, 0.1775, -0.3264, -0.9463, -0.2815, -0.2274, 0.1514, -0.269, 0.00786, 0.09106, 0.093, -0.9717, -0.5806, -0.737, 0.521, 0.2905, 0.2563, -0.1385, -0.2725, -0.3105, 0.03403, 0.3845, 0.4897, -0.02145, 1.766, 0.2876, -1.493, 0.948, -0.9253, 0.0547, -0.4111, -0.891, -0.8853, 0.1655, -0.3484, -0.3357, 0.0696, -0.2223, 0.4705, 0.6084, -0.3425, -0.1185, 0.08325, -0.292, -0.0664, 0.3918, 0.0113], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.3325, 1.523, 0.0905, 1.07, -0.2556, 1.194, 1.209, 0.593, -0.8877, -0.307, 0.1931, -0.01331, 0.584, 1.448, -0.03232, -0.6934, 3.047, 0.738, -3.512, 1.086, -0.007465, -0.0893, 1.218, 2.906, 1.231, -0.571, -0.0251, -0.889, 0.3894, 2.53, 0.1638, 0.01764, 0.432, -1.052, 0.101, 0.2191, -0.564, 3.018, 1.8, -0.4167, -0.0767, -0.6055, 0.7476, 0.3286, -0.9277, -0.304, 0.473, 0.0831, 0.2158, -0.5947], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0562, -0.4863, 0.676, 0.727, 0.1, -0.6885, -1.071, 0.534, -0.5986, 0.3086, 0.7354, 0.0125, 0.0664, 1.182, -6.785, -0.2306, 0.329, -1.183, -2.176, -0.01152, -4.617, 0.1682, 0.03387, 0.4343, -0.013145, 0.1015, 0.002718, -0.332, -1.223, 0.1354, 0.537, 0.06107, 1.013, -0.602, 2.168, 1.66, 0.1885, -2.264, -0.8706, 0.1725, 0.1158, 1.128, -0.103, -1.993, -0.3853, 0.06366, 0.4597, 0.4026, -0.09326, 0.631], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.01278, -0.02725, -0.03525, -0.02953, -0.02533, 0.01915, -0.006214, -0.04153, -0.00945, 0.03586, 0.02878, -0.0498, 0.00349, -0.01127, 0.012924, -0.006683, -0.01495, 0.02379, -0.0449, 0.00539, 0.0374, 0.0377, -0.004665, -0.006042, -0.03604, 0.02257, -0.03075, -0.02365, -0.03476, -0.03052, -0.01304, 0.012, -0.04883, 0.01656, -0.03275, 0.01556, -0.01785, 0.01613, -0.0216, -0.012535, -0.0433, 0.00172, -0.01785, 0.004353, -0.0284, -0.04556, -0.02716, -0.034, -0.04932, -0.01388], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.131, -2.418, -1.436, -1.067, 1.152, 1.564, -4.074, -3.807, 0.2246, -1.565, -2.389, 0.02914, 0.4497, -5.355, -1.986, -9.21, -1.498, 1.274, -1.181, -1.016, -0.6206, -1.074, -1.737, -1.77, -2.227, -1.249, 0.04828, -4.215, 0.4578, -1.955, -4.664, -1.076, 0.2957, -0.953, -1.606, -3.562, -0.899, -1.78, 3.979, 0.2449, -1.073, -0.4517, 1.221, 1.702, -0.6133, 0.449, -1.939, 1.031, -1.077, 1.144], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.314, 0.1691, 0.06934, 0.647, 0.1458, -0.09625, -1.632, -0.4888, 0.4744, 0.0367, -0.679, 0.03693, 0.2124, 0.969, 0.05835, -0.0952, -1.233, -0.4182, -0.339, -0.1456, -0.05536, 0.973, -0.7163, -1.969, 0.638, -0.2394, -0.06775, 0.417, 0.2122, -1.348, -0.5283, 0.0409, 0.2168, -0.2098, -0.277, -0.006992, 0.4304, -0.368, -0.1027, -0.195, -0.2203, 0.787, 0.503, -0.4998, -1.057, -0.3284, -1.024, 0.3552, -0.333, 0.2798], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1844, 0.2625, 0.489, -0.314, -0.0805, 0.00754, 1.555, 0.2039, 0.256, 1.249, -0.1609, -0.013054, 0.3315, -0.779, -0.8843, -0.0983, 1.227, 1.213, -0.964, 0.05258, 0.2522, -0.3696, 0.348, -0.8555, -0.3308, -0.345, 0.03555, -0.298, 1.186, 2.967, -0.6265, 1.281, -0.1622, 0.08527, -0.287, 1.581, -0.2158, 0.8604, 1.541, -0.1642, 0.2205, -0.6875, -0.358, 0.542, 0.7007, -0.6523, 0.3198, -0.6562, 0.2286, -0.012566], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1141, 1.692, 0.04114, 0.64, 0.454, -0.3713, 1.57, 1.801, -0.687, 0.03625, 2.516, 0.01758, 0.02446, 0.579, -1.084, 0.7485, -0.4907, 0.347, 0.0329, 0.2443, -1.039, -0.1853, -0.2035, -0.1925, 0.07837, 0.2903, -0.0224, -0.1454, 0.1981, -0.03693, 0.955, 0.4502, 0.608, -0.1415, 1.794, -0.1694, 0.344, 0.1242, 0.552, 0.002872, -0.1057, -0.6846, -0.3467, 0.2634, 0.3494, 0.2433, 0.5176, -0.0786, -0.247, -0.853], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.307, -2.889, 0.821, -1.169, -0.6455, 0.6597, 0.621, 0.9146, -0.3806, 0.6533, -1.302, -0.01385, 0.6724, 2.137, 0.7227, 0.595, 3.004, 1.631, 0.387, 0.612, 0.2264, 0.4038, 1.126, 1.489, 1.111, 0.8877, -0.0389, 2.473, 0.0878, 2.49, -1.089, 0.487, 1.032, -0.3665, 2.326, 3.988, -0.938, 0.3674, 0.7373, -0.6714, 0.1705, 0.788, 0.3972, 0.3936, 0.9937, -0.4065, 1.169, -1.886, -0.9497, 0.1907], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.053, 0.813, -0.05255, -0.2351, -1.042, -0.261, 0.6626, 0.6494, 0.11835, -1.068, 0.257, 0.02295, 0.5776, 1.173, 1.444, -0.0334, 0.7583, 0.751, 0.10657, -0.1448, 1.268, -2.137, -0.6177, -0.2727, -0.1807, -0.73, -0.03934, 0.7495, 0.4126, 2.088, 2.166, 0.811, 0.02092, 0.06192, 1.161, 4.055, 0.2712, 1.34, 1.319, -0.4807, -0.553, -0.3997, 1.698, 2.309, 1.0625, 0.03513, -2.672, 1.385, -1.212, -1.987], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3223, -1.539, 0.7896, -0.527, -0.253, -0.1198, 0.532, -0.6104, 0.3547, -0.7495, 1.778, 0.01593, 1.26, 1.254, 1.911, 0.6353, -0.265, 1.6045, 1.768, 1.079, -0.963, 2.584, -1.062, 1.259, 0.6323, 0.2642, 0.03992, 1.9375, -0.837, 2.74, 0.01758, -0.11786, -0.7603, -1.4, 0.719, 0.7617, 0.125, 2.691, 1.031, 0.304, 0.7085, 0.03087, -0.4712, 0.3765, 1.317, -1.687, 0.2124, 0.8945, -0.343, -0.339], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.699, 2.006, -0.4116, 0.1495, -0.4414, 1.542, 0.695, 0.6304, 0.4048, 0.2534, -0.4949, 0.02292, -1.504, 1.785, 0.9673, -0.2683, 2.98, 1.258, 1.09, 0.7407, 0.968, -0.07886, 1.171, 2.295, 0.4963, 0.568, 0.0398, -0.672, 0.3762, 1.845, 0.9185, 0.108, -0.2964, -0.8374, 1.669, 1.927, -0.3474, 2.16, 0.02415, -0.806, -0.8545, 0.2744, 0.2227, -0.1542, 1.03, 0.809, 1.553, 0.817, -0.511, 0.269], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.01926, 1.797, 0.5513, 0.1594, -0.0687, -0.1226, 0.4949, -0.558, -0.2668, 0.562, 0.1543, -0.01878, 0.2617, 0.09283, 0.2211, -0.556, 0.6416, 0.56, 0.945, 0.09735, -1.31, -1.488, 0.8135, -0.899, 0.2502, -0.5747, -0.0267, -0.857, 0.221, 1.394, -2.01, -0.2756, 0.2866, -0.1653, -0.609, -0.869, 0.288, 1.098, 0.285, -0.2722, 0.10406, -1.849, -0.11035, 0.253, 0.167, 0.1545, 0.4136, -0.46, -0.1167, 0.183], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.403, 3.58, -0.0685, 0.313, 0.1214, -0.5864, -0.2527, -0.714, 0.47, 1.12, 0.631, 0.01724, -0.704, 0.1549, 2.678, -0.00677, 1.2, -0.1692, 1.477, -0.4963, 0.9497, -1.676, -0.4226, 1.408, 0.4429, -0.2573, -0.03784, 2.537, 0.05746, -2.213, 1.589, 0.5063, -1.231, -0.65, -0.09784, 3.012, -0.5547, -5.23, 2.674, -0.4915, -0.53, -0.4514, 0.0861, 0.97, 0.5786, 0.4414, 1.307, 0.9673, 0.6978, 0.2325], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8164, -0.9746, 0.142, -0.4575, 0.452, 0.5854, -2.63, -0.0528, 0.2283, 0.567, 0.5835, 0.02356, -0.06616, -0.2827, 2.914, -0.4714, 0.02893, 1.422, -0.624, -0.096, -0.3135, 0.557, -0.3792, -0.07623, 0.653, 0.2786, -0.0277, -1.233, -1.362, 0.162, -3.424, 0.007057, -1.555, 0.4548, -1.769, -2.473, -0.699, -0.403, 0.2898, 0.3962, -1.557, 1.589, -0.0909, 0.12213, -1.728, -0.5366, 0.672, 0.2622, -0.11066, 0.1644], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.066, 0.49, -0.351, 0.4944, -0.6113, -0.11224, 0.4233, 0.1, 0.318, -0.01631, 1.215, -0.003305, 0.05606, 0.921, -0.8804, -0.304, -0.2367, 0.8135, 0.9766, -0.2107, 0.334, 1.223, -0.2107, 0.7153, 1.384, -0.61, 0.0363, 1.945, -0.1942, 0.922, 1.615, -0.2542, 0.2969, 0.12286, 1.284, -0.8545, -0.2742, 0.777, 0.354, 0.1803, 0.09515, 0.4863, 0.5757, 0.001323, 0.10315, 0.8267, 1.095, 0.2693, -0.1794, -1.843], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.901, 2.576, -0.6943, -0.737, -1.002, 0.01237, -0.581, 0.434, 1.398, 0.404, 0.181, -0.03656, -0.492, -1.257, 0.857, 0.1464, 0.8955, -0.03738, -0.0994, -0.804, 0.746, -0.01152, 1.464, 3.248, -1.018, -0.1963, -0.02858, 1.762, -0.2954, 1.939, 0.3904, 0.2693, -0.506, 0.3237, 0.795, -0.4717, -0.7505, 0.3264, -0.314, 0.3025, 0.532, -0.7134, -0.704, -0.7656, -0.639, -0.3835, 0.8013, -0.3147, 0.4717, -0.00617], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1632, 0.6396, 0.4673, -0.2177, -0.0924, 0.2206, 0.7407, 0.4268, -0.975, 0.2141, 1.106, -0.03078, -0.129, 0.2223, 1.079, 0.2908, 0.3782, 0.2126, 0.003206, -0.2554, 0.01971, -0.5493, 0.3088, 1.173, 0.10236, -0.647, -0.02084, 1.859, 0.001744, 0.211, -1.054, 0.05847, 0.1925, 0.723, 0.1804, 1.357, -0.2146, 0.04654, 0.766, -0.224, 0.0428, -0.3398, -0.7783, 0.454, 0.6978, -0.558, 0.3457, -0.088, -0.4683, -0.266], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0529, -0.05905, 0.03047, 0.213, -0.04904, 0.1747, 0.5547, -0.2477, 0.541, -0.4983, 0.5303, -0.04153, -0.3015, -1.179, -3.574, -0.6733, -0.5522, -0.3574, -0.1421, 0.365, -0.1658, -0.7983, 0.528, 0.3428, -0.0652, -0.2311, 0.05118, 1.832, -0.001176, 0.824, -0.03102, 0.0635, 0.348, -0.39, -0.572, -1.06, -0.0904, -0.629, 0.344, -0.3694, -0.1216, 0.3042, 0.1292, 0.2805, 0.2393, 0.07324, 1.415, -0.04822, 0.2524, -0.2404], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.484, -0.467, 0.537, 0.0474, 0.12317, 0.4468, -0.3738, 0.555, -0.3223, -1.141, -0.1514, 0.02766, 0.3918, -0.1282, 0.04584, 0.04004, 0.10565, 0.7637, -0.476, 0.4836, -0.1683, -0.01804, 0.0819, 1.657, 0.985, 1.252, 0.003998, -1.598, -0.1843, 1.168, -1.169, 0.6123, -0.1938, -0.4402, -0.01113, -0.5444, -0.1545, -0.822, 0.3362, -0.2203, -0.5513, -0.902, -0.528, -0.1241, 0.4187, -0.01418, 0.4377, 1.011, -0.5176, 0.671], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5796, 2.719, -0.623, 0.2402, -0.5625, 0.0747, -0.1106, -1.953, 0.4055, -0.2961, 1.415, -0.01357, -0.276, 0.466, 1.21, 0.04797, 1.587, 0.4385, -0.05304, -0.3408, 0.712, -0.2712, -0.3462, 2.22, 1.847, -0.772, 0.0191, 1.082, -0.262, 0.829, -0.696, -0.3389, 0.773, -0.4797, -0.9243, 1.642, -0.105, -1.336, 0.4988, 0.497, -1.873, 1.233, 0.983, -0.3354, 0.6885, 0.529, -1.152, 1.304, -1.079, 1.404], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.756, -2.533, 0.6904, -0.2537, 0.1175, -0.53, -0.4077, -2.209, -0.0775, 0.6494, 0.7393, 0.004852, -0.4714, 0.3503, -1.349, -0.482, -1.594, -1.058, 1.268, 1.685, 0.1527, -2.066, -0.234, 0.6426, -0.05585, -1.035, 0.007595, -0.5103, -0.1567, -1.851, 2.342, 0.1393, 0.4531, 0.4268, 0.4443, -1.752, -0.2316, -1.22, -1.739, 0.0866, 1.149, 0.87, 0.4326, -1.119, -1.177, -0.0787, -0.7334, -1.19, -0.376, 0.3503], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.006306, -0.1582, -0.0834, -0.06696, -0.1497, -0.1055, 0.01293, -0.0758, -0.02876, -0.01595, 0.03702, -0.00853, 0.0702, 0.02184, -0.02502, -0.0918, -0.01672, -0.1416, -0.03055, 0.0895, -0.2659, -0.005352, 0.0598, 0.07385, -0.0957, -0.03577, 0.007935, 0.00572, 0.0747, 0.06183, 0.0112, 0.179, 0.02652, 0.03635, -0.251, 0.0554, 0.007412, -0.0369, -0.07074, -0.03065, -0.02148, 0.117, 0.07794, -0.1553, -0.09247, 0.05914, -0.0705, -0.12415, 0.04108, 0.02762], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.00829, 0.8154, 0.201, -0.535, -0.267, 0.03323, 0.622, 0.7314, 0.2854, -0.3225, -0.2384, 0.01135, -0.3694, 1.037, -1.83, -1.021, -0.8867, 0.7124, -0.6826, -0.566, 0.347, 0.283, -0.10394, 0.1804, 0.636, 0.1929, -0.04852, 1.432, 0.343, 1.515, 0.2634, 0.1265, -0.0671, -0.4146, 0.967, 1.091, -0.7383, 0.7656, 0.3188, 0.1412, 0.6035, 0.3555, -0.0998, 0.1144, -0.3152, 0.638, 0.5503, -0.573, -0.1841, 0.02066], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1069, -3.71, -0.5522, -0.612, 0.9937, -0.4434, -2.656, -1.255, -1.949, 0.0469, -1.437, 0.03848, -0.488, -1.181, 0.2986, -13.43, 3.338, -0.08856, -1.788, -2.688, -4.02, 1.399, -0.3428, -2.85, 0.2231, -0.548, 0.00425, -4.1, 0.64, 1.734, 2.102, -0.269, 0.4546, -2.467, -4.59, -8.37, 0.3313, -1.421, -2.97, -0.8364, -1.58, -1.799, 1.21, 0.3945, -0.5435, -0.66, -2.55, 0.329, -0.6567, 1.051], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0724, 0.5806, 0.2964, 0.2189, -0.258, -0.01743, -0.3943, -1.656, 0.03024, 0.013016, -3.541, -0.03595, 0.4287, -0.010925, -0.1903, 1.23, 1.099, -0.112, 0.919, -0.2656, 0.3433, 0.9697, 0.503, 1.035, -0.3489, 0.272, 0.00921, 2.982, 0.736, 1.137, 0.5054, 0.2024, 0.3499, -0.218, 0.6504, -2.441, -0.17, 0.7837, -0.8384, -0.3838, -0.4421, -0.506, -0.1364, -0.1422, 0.972, -0.2932, -3.172, -0.76, 0.2795, -0.5005], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.122, 0.426, -0.3164, -0.4343, -0.4941, 0.7314, -0.441, 0.02982, 0.7886, -0.2524, 0.6787, -0.0411, -0.539, -0.7017, 1.147, -0.483, 1.655, 0.2683, -0.834, -0.872, 0.1615, -0.6665, 0.7437, 2.512, 0.3242, -0.6216, 0.01677, -0.0916, 0.02127, 2.68, -0.3914, 0.42, -0.526, -0.1268, 0.2316, 0.2019, -0.513, 0.0986, 0.5376, 0.4133, 0.581, -0.1076, 0.09143, 0.1403, 0.02911, 0.2059, 0.589, -0.2325, 0.2815, 1.129], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.05865, -0.8066, -0.07654, 0.1826, 0.0983, -0.1317, 0.09625, -0.03105, 0.526, 0.7593, -0.542, 0.01971, 0.4192, -0.7593, -1.235, 0.069, 0.336, 0.007, 0.0644, -0.1608, -0.003174, -0.3865, 0.2852, -0.2842, 0.05548, 0.01017, -0.02711, -0.071, 0.00449, 0.4492, 0.0479, 0.1624, -0.3413, 0.07587, -0.2542, -1.782, 0.2418, 0.511, 0.01225, 0.1893, 0.5835, -0.1891, -0.0894, 0.3862, 0.0911, 0.03564, 0.012665, -0.2458, 0.3843, 0.2146], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.2406, -2.219, 0.2532, 0.1003, -0.2313, -0.7236, -0.1288, 0.458, 0.2432, 0.3252, 0.511, -0.007713, -0.924, 0.1818, 1.34, 0.6235, 0.7837, -0.2225, 0.04276, -0.04874, -0.2084, -0.1791, 0.22, 0.668, 0.2715, 0.08185, 0.01051, 0.693, 0.042, 0.806, -0.069, -0.06824, -0.53, 0.0908, 0.2328, 0.443, -0.621, 0.8984, -0.826, -0.0431, -0.03558, 0.1716, 0.253, 0.2122, 0.4482, 0.12256, 0.0302, 1.144, 0.2378, 0.3616], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.357, -3.88, -0.6133, -0.943, 0.3018, 0.10693, 0.985, -3.662, 0.01884, 0.855, -1.408, -0.04428, -0.691, -0.138, 1.805, -0.61, 0.0283, -1.304, -0.4114, 1.7295, 0.5215, -0.83, -1.168, -4.29, -1.579, -2.79, -0.00819, -1.733, 0.2703, -6.0, 1.61, 2.95, 0.768, 0.5186, 0.712, -3.371, 0.2415, -3.662, 2.59, -0.3096, -2.004, -0.3577, 0.002077, -0.2041, 0.05603, 0.654, -1.418, -0.283, 0.4258, -1.806], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.10565, -1.241, 0.0975, -0.07324, 0.1351, 0.6978, -0.312, 0.3389, 0.1609, -0.3088, -0.158, -0.01997, -0.2378, 0.5317, 0.12213, -0.06976, 0.5522, -1.17, -0.5576, 0.343, -0.2825, 0.0967, 0.203, 0.578, 0.394, 0.002821, 0.007217, -0.1092, -0.1001, 0.1704, -0.6865, -0.531, -0.3167, 0.07794, -1.267, -0.0881, 0.10315, -0.1907, -1.124, 0.2212, 0.002382, -0.721, 0.4053, -0.1736, 0.0936, 0.01249, -0.318, -1.399, 0.1266, -0.2292], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.05444, 0.03183, -0.004948, -0.04535, 0.00486, 0.02731, -0.003082, 0.03156, 0.01955, -0.0497, 0.02322, 0.02971, 0.0001464, -0.0051, 0.02011, -0.01017, -0.03366, 0.0228, -0.002024, -0.04916, -0.015564, -0.0472, 0.011604, 0.01846, -0.05545, -0.04663, -0.02658, -0.01457, -0.06256, 0.02135, 0.03053, -0.001487, -0.04562, 0.0001782, 0.04315, -0.02567, -0.05222, 0.0226, 0.02188, -0.006855, 0.015396, 0.01587, 0.000904, -0.05603, -0.0658, -0.04843, -0.02032, -0.0437, -0.00964, -0.03128], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.246, -1.901, 0.5186, 0.638, 0.9365, -0.981, -0.1826, -0.423, -0.891, -0.233, -0.7256, 0.01271, 0.3606, 0.617, -0.2837, 0.4307, -0.6504, 0.722, -0.701, -0.3179, -0.2908, 0.01442, -0.916, -0.4736, 0.6587, -0.1276, 0.0212, -3.742, 0.3528, -3.053, -0.25, 1.018, 0.3647, -0.2007, -0.7646, -0.507, 0.4558, -0.528, -0.1976, -0.6587, -0.592, 0.41, 0.0599, 0.5474, 0.03613, 0.313, -1.117, 0.5176, 0.239, 0.9375]] [-1.13694, -1.44306, -0.460143, -0.0907356, 0.241528, -0.192749, -0.630641, 0.83967, -1.39985, 0.082259, 0.644486, 0.346046, -1.37318, 1.91771, 1.3785, 1.09443, 1.95282, 0.144738, -2.01362, 0.333593, -0.0129631, 1.17558, 0.0723718, -1.05965, -0.980818, -3.80623, -2.06844, -3.40776, -1.97707, 0.542041, -2.08537, -2.55494, -1.27271, 1.88521, 0.417992, -1.00457, 4.05678, -1.40696, -1.27322, 0.00521946, -0.0646865, -0.114161, -0.786448, 1.2535, -1.50742, -0.242032, 1.32623, 0.192411, -0.0200379, -1.84077, -1.137, -1.443, -0.4602, -0.09076, 0.2416, -0.1927, -0.631, 0.84, -1.399, 0.0823, 0.6445, 0.346, -1.373, 1.918, 1.379, 1.095, 1.953, 0.1448, -2.014, 0.3335, -0.01296, 1.176, 0.0724, -1.06, -0.981, -3.807, -2.068, -3.408, -1.978, 0.542, -2.086, -2.555, -1.272, 1.885, 0.418, -1.005, 4.06, -1.407, -1.273, 0.00522, -0.0647, -0.11414, -0.7866, 1.254, -1.508, -0.2421, 1.326, 0.1924, -0.02003, -1.841] ReLU [[1.91712, 1.71162, -0.865643, -0.675245, 0.115941, 2.32312, 3.05575, -0.747302, 1.67603, 0.975563, 0.564508, -0.0432727, 0.183743, 1.14732, -0.697722, 0.0304389, 0.23617, 2.28116, 0.292969, 1.0325, 0.0052107, 0.150817, -0.296688, -0.734047, -0.970466, -1.02466, -1.95234, -0.302053, 2.16229, -0.413084, -0.191811, 1.05415, -0.877535, -0.535528, 1.53689, 3.56275, 1.68807, -0.663738, -1.15793, 0.0718926, 2.29661, 0.441948, 1.89711, 0.283074, 0.579396, 1.91301, 1.43407, 2.17167, -0.0212174, -0.132761, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.511885, -0.0767139, 0.491689, -0.0108316, 0.0897383, 0.974227, 0.378149, 0.0534572, 0.557518, 0.0204455, -0.180858, -0.110056, 0.193279, -0.0232134, -0.0913468, 0.0269763, -0.180257, -0.0521417, -0.566472, -0.702262, -0.021886, 0.0725328, -0.393673, -0.816566, -0.237276, 1.32254, -0.63123, 0.0403561, 0.537984, -0.307434, -0.345897, 0.178237, -0.247145, -0.0277611, 0.520469, 0.592441, -0.158881, 0.158281, 0.0784012, 0.198765, 1.08976, -0.205987, -0.394705, 0.0155505, -0.307528, 0.18805, -0.365387, -0.0860726, -0.000783143, -0.106214, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.15809, 1.43388, -1.70614, 0.490871, 0.619629, -0.761357, 3.0245, -0.460518, 0.471794, 0.811151, 2.80187, -0.716187, -0.709324, 0.831012, 1.55071, 0.309172, 0.414338, 1.88793, 0.0976581, 0.0923488, -0.0283241, 1.09326, 0.546906, 0.224145, 0.14408, 0.905952, 0.569351, 0.0685678, -0.0426106, 0.455127, -1.24424, -0.318337, 0.612047, -1.6823, -0.582092, 0.525577, -0.158654, -1.00207, 0.293126, 0.0275447, 1.13869, 0.113317, 0.837703, -0.128874, -0.0143548, 1.94327, 0.919907, -1.36505, -0.0302694, -3.55898, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-10.7355, -2.7117, 1.80391, 0.704075, -1.51594, 0.414581, -5.72295, 0.269293, -2.23951, 0.698959, -4.19903, 0.498813, -0.880595, 1.76379, -3.53834, -2.90121, -0.653859, -5.0771, -6.43003, 2.18339, -0.0239953, -1.00178, -4.36339, 0.622437, -1.0414, 0.835835, -0.984032, -5.48161, 0.464009, 2.22127, -4.91612, -5.92431, -0.549394, -8.9769, 1.6629, -3.34649, 0.477715, -7.60442, -3.68671, -0.0460745, -7.38571, -6.35704, -1.17726, -0.848007, -1.71212, -0.843698, 0.179575, -2.11558, 0.0436363, -1.45966, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.552737, 0.13978, -0.259721, 0.0640417, 0.126201, -0.631158, 1.07787, -0.162214, 0.953216, -0.413434, -0.376972, 0.369627, -0.521863, 0.330081, 0.284313, 0.302964, 0.115025, 0.520219, -0.0332342, 0.19487, 0.00844482, 0.0918271, -0.135156, 0.0598809, -0.141126, 0.393872, 0.16736, -0.399845, 0.188245, 0.169207, -0.177598, -0.106557, 0.0283852, -0.259799, 0.291491, 0.701346, -0.110449, -0.583393, -0.0382966, -0.0871158, 0.0184207, -0.140817, -0.370554, 0.171824, 0.504698, 1.7089, -0.0915694, 0.408827, 0.0348522, -0.684088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.678645, 0.320827, -0.0329934, 0.0206529, -0.800709, -0.3005, 0.297557, 0.000602132, 0.209416, 0.11998, -0.0518605, 0.104073, -0.11021, -0.109815, 0.137246, 0.342793, 0.0420746, -0.689631, -0.065184, 0.0591423, 0.0188984, -0.138839, -0.32296, 0.131949, -0.286667, 0.482397, -0.2337, 0.200393, 0.257033, 0.393775, -0.345341, 0.103059, 0.179499, -0.517728, -0.346749, -0.219303, -0.0748764, 0.37663, -0.764253, 0.326106, -0.097163, -0.460619, -0.163553, 0.126914, -0.60604, -0.0083236, 0.161305, -0.0711626, 0.0258663, -0.176122, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.154423, -0.184876, 0.676482, -0.518649, -0.226214, 1.6974, 2.14903, -0.115889, 1.34666, -0.311675, -0.325693, -0.0259666, -2.60941, 0.118797, 0.00855245, 0.0539266, -0.143575, -0.68242, -1.79669, -0.365907, 0.0345975, 0.0534712, 0.222552, -0.973017, 0.946482, 1.80979, -0.675757, 0.683928, 0.908395, -0.763, 1.24009, -1.04741, 0.37122, -0.265263, 0.28091, 0.707673, 0.204208, 0.0842126, 0.0359913, 0.0578004, 1.57185, 0.361434, 2.13398, -0.205666, -0.850041, 0.971494, 0.165585, 0.376338, 0.0274625, 0.484636, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.421618, -0.577935, -2.57969, 0.159878, -1.72743, -1.18363, -0.0528655, 0.184875, -0.105082, -1.44534, -1.27054, 0.147633, -0.187499, 0.472118, 0.153236, -0.581519, 0.2734, -0.533803, 0.356548, 0.935337, -0.0434167, -0.0924407, 0.504217, -0.149616, -1.26756, 0.796002, -0.894053, -1.56002, -0.57756, -0.271953, 0.934183, -0.536031, -2.15551, 1.745, -0.14105, -2.20062, 0.215269, -1.48737, 0.0649911, 0.00285381, -1.27889, -0.715458, 1.46693, -1.19699, 0.408613, -5.31594, -0.0418879, -2.87653, 0.0250052, 0.0617122, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.514072, 0.327233, -0.00981564, -0.116392, 0.504435, -0.745757, -0.162663, -0.133179, -0.534504, -0.349923, -0.0624029, -0.26671, -1.12464, 0.212271, 0.522141, 0.333069, 0.269884, 0.411604, 0.295257, 0.15998, -0.0434317, 0.0522157, -0.101218, -0.16441, -0.110891, 0.507246, 0.0949839, -0.497723, 0.586129, 0.128865, 0.0895804, -0.244465, 0.4655, -1.96421, 0.740496, -0.389826, -0.0521907, -0.536302, 0.187216, 0.0376125, -0.251669, 0.0645537, 0.496586, 0.447798, 0.825577, 0.961549, -0.437757, 0.168252, 0.015049, -0.062453, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.25903, -4.35994, -0.0242797, 0.00122929, -0.988552, 0.0179451, 2.04668, 0.165142, -1.30936, 0.237697, -1.74057, -0.47532, -0.193784, -0.634988, -0.149848, -1.04578, 0.54523, -1.72987, 0.420936, -0.328957, 0.0389816, -0.239948, -0.268676, -0.534677, -0.893524, -1.18489, -1.21558, -0.907032, 1.29602, 0.0977193, 0.228051, -0.062076, 0.382351, 0.244349, -0.43492, -1.02728, -0.514502, -0.167342, -0.12987, 0.00945495, -0.827564, -1.84606, -1.83094, -0.294193, 1.37959, -2.63303, 0.590345, -0.784309, -0.037683, -0.418117, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0127623, 1.05367, -0.224202, 0.0880751, -0.985404, -0.692736, -0.558033, 0.199422, -0.237565, -0.959567, 0.554293, 0.834746, -1.06609, -0.0854266, -0.0574848, -0.674232, 0.179759, -0.95015, 0.0426577, 0.328533, 0.0419038, -0.110795, 0.15657, 0.317776, -0.113263, -2.78285, -0.983517, -0.23402, -1.02372, 0.304592, -3.4675, 0.440216, -0.211656, 0.553338, -0.283765, -1.84443, 0.499184, -1.00219, -1.33203, 0.00675693, -3.51345, 0.368218, 0.395715, -1.11827, -3.00483, -1.17875, 0.301781, -1.74068, -0.0281057, -0.454104, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.333629, -0.134096, 0.0510493, -0.110478, -0.2409, 0.291257, -0.295583, -0.0124777, 1.06057, 0.121604, 0.413187, -0.0575497, -0.128701, -0.300497, 0.278075, -0.0867591, 0.208179, 0.0960076, -0.655412, 0.0516505, 0.0340488, 0.188721, -0.908219, 0.0378959, -0.345057, 0.703942, -0.33609, 0.810449, 0.631295, -0.174017, -0.839905, -0.342376, 0.499504, -0.764807, -0.39025, 0.303579, 0.127894, -0.0856524, 0.131001, 0.0797702, -0.166391, 0.0551976, -0.802472, 0.105714, 0.0393627, 1.45538, 0.324215, -0.200576, 0.0050708, -0.0582809, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.633388, 1.18574, -0.536048, -0.0367929, 0.825529, 0.731993, -0.165754, -0.261811, -0.919853, -0.368611, 0.626913, 0.186512, -0.473765, -0.144225, -0.156459, 0.246941, -0.0566372, 0.266293, -0.655531, -0.10602, 0.0360664, 0.0810416, -0.412147, 0.421756, 0.0205085, 0.821387, 0.193235, -0.538725, -0.00545372, -0.448016, -0.116526, 0.31939, 0.602741, -0.563266, 0.312381, -0.173902, 0.659759, -0.735931, 0.403339, 0.0813476, 0.432647, -0.278227, -0.955094, -0.027798, -0.122885, 0.58645, -0.0611259, 0.614879, -0.0069432, 0.52531, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.501689, 0.428264, -1.8517, 0.0790751, -1.59471, -4.73294, -0.995209, -0.195087, -2.58104, 0.151301, -0.861892, -0.41962, 0.0884628, -0.0834321, 0.115524, 0.0419715, -1.4353, -4.64687, 0.402835, 0.467766, 0.0198912, -2.18622, -1.41894, 0.269951, -0.00511751, -0.9988, -2.89426, 0.0991447, -2.45378, 0.101561, 0.228963, -1.21439, -4.13197, 0.0623575, -0.403075, -0.086739, 0.334211, -0.355396, -0.501651, 0.0572387, -0.334952, -2.63386, -4.44855, -0.0725033, -2.63508, -1.36703, 0.190635, -0.415348, -0.020003, -0.959318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-1.06666, -0.00138137, 0.259013, 0.185393, 0.42114, 0.735207, 1.56337, -0.317628, 0.157875, -0.140705, -0.0264516, -0.0405823, -0.483974, 0.0262971, 0.166615, 0.171001, -0.22016, -0.0492614, 0.179707, -0.114736, -0.0137644, 0.100879, 0.642598, -0.0649007, 0.716152, 0.0432913, 0.102389, 0.474268, 0.129447, -0.387093, -0.409192, -0.336681, 0.243377, -0.247517, -0.314925, 1.59852, 0.52025, 0.0548716, 0.234407, -0.0491135, -1.00914, -0.4633, -0.631077, 0.662509, -0.550906, -1.5312, 0.114553, 1.07295, -0.0354227, -0.106565, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-3.42461, 0.145398, -0.166352, -0.479109, 0.58619, -4.26314, -6.22248, 0.197141, -1.62099, -1.50533, -6.12655, -0.929334, -0.121396, 0.318499, 1.53963, -0.476752, -1.02618, -2.13584, 0.204332, -0.618249, 0.0299843, 0.402251, 0.329847, -0.658481, 0.00739732, -1.72248, -1.54722, -0.537421, -2.39717, 0.228401, -2.13451, -2.74056, 0.465607, -0.274214, 0.310293, -5.72711, -0.596145, 0.15236, -1.54746, -0.0444491, 1.43683, -2.99107, -5.32851, 1.14701, -3.11924, -7.29255, 2.14531, -0.181313, 0.00976695, -0.735231, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0312858, -0.189998, 0.206731, -0.0168996, -0.314712, -0.60103, 0.363858, -0.117104, 0.566539, 0.0853194, -0.564412, -0.110615, -0.0196459, -0.0166243, -0.0587605, 0.117953, -0.115682, -0.315487, 0.800873, -0.106791, -0.00110899, -0.0159747, 0.424374, -0.421534, -0.110642, -0.448161, -0.49785, 0.26553, -0.395676, 0.0492655, 0.35118, 0.0168678, -0.648119, -0.0653526, -0.218361, 0.978838, 0.289934, 0.223694, -0.18991, -0.0614019, 0.241294, 0.012051, 0.0411264, 0.0763655, -0.14855, 0.798905, 0.199827, -0.40519, -0.0153657, 0.0585707, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-1.20229, 0.150965, 0.393742, -0.157481, 0.703598, 0.061929, -0.0958538, -0.16509, 2.1833, 0.269137, -2.05737, -1.29966, 0.969014, 0.469707, -0.707684, 0.118814, -0.440834, 0.130534, 0.426366, 0.227163, 0.0192284, -0.0634732, 1.25228, 0.617602, -0.954509, -0.891125, 0.353045, -0.364344, 0.669082, -0.022483, -0.219272, -0.284838, 2.04686, -3.18259, 0.368327, 2.0564, 0.331647, -0.0454942, -0.510217, 0.0746629, 0.722942, -0.21508, 1.2932, 0.00892973, 0.33864, 1.49436, 0.0705549, 0.505335, 0.0164396, 1.02629, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.332287, -0.0535548, -0.321523, -0.0272509, -0.310716, -0.370799, -0.423994, -0.0973717, -0.359633, -0.138224, 0.322568, -0.217488, 0.157781, 0.132792, 0.0517267, 0.0544634, 0.056331, -0.0885758, 0.252928, -0.218829, 0.0343139, -0.00647533, -0.226071, 0.00280077, -0.0309699, -0.231365, 0.317673, 0.00763083, 0.189551, 0.0268982, -0.0498405, -0.0973081, 0.238955, -0.13083, -0.0750735, 0.292524, 0.4104, 0.128405, 0.0761928, 0.251511, 0.480047, -0.184331, 0.0374049, 0.369565, -0.382634, -0.142326, 0.010095, -0.302128, -0.0275802, 0.175322, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.826842, 2.98769, 1.74675, -0.398763, 0.889264, 2.3168, 3.81331, -0.672105, 2.05499, -0.61313, 2.87353, -0.042223, 1.16475, 2.30289, 0.537443, 1.31919, 0.260084, -4.7967, 1.35878, 2.69035, -0.0224819, 1.35689, 3.35947, -1.21891, -1.16432, 2.55645, 1.79308, 2.96198, -1.53845, 2.11829, 1.36533, 4.31415, 0.421217, -1.76249, 2.14783, 4.33867, 0.120958, -1.19661, -1.04992, 0.00262566, 4.66828, 1.04306, -0.619637, -1.53328, 1.40752, 0.958499, -0.0566043, 0.0954647, -0.0293897, -1.40567, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.132304, 0.242379, -0.620396, -0.483752, 1.70543, 2.33056, 3.42543, -0.54799, 2.33107, 0.00386605, -3.36514, 0.0596789, 0.485138, -0.862918, -0.642043, -0.930825, 0.586046, 0.288891, -0.334595, 0.77451, 0.0239161, 0.762076, -0.592911, 0.00114896, 0.179033, -0.0159361, -0.193175, 0.803423, 0.366085, 1.02254, 0.240719, -0.250938, -1.14406, -1.50733, 1.80845, -0.266419, 0.608748, 2.36271, 2.19127, 0.0665568, 1.50208, 0.564936, 1.31454, -0.2381, 1.99219, 3.59141, -0.0171759, 1.8582, -0.0346115, -0.115635, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.024051, 0.118412, -0.560764, 0.0723003, -0.0991343, 0.14212, 0.109928, -0.182503, 0.103564, 0.416107, 0.736439, 0.438152, 0.0420692, 0.32384, -0.0934079, 0.080456, -0.0517526, -0.0967182, 0.0388146, -0.0441661, 0.0257788, -0.12309, 0.312738, 0.3013, 0.161526, 0.0834254, -0.0938487, 0.232697, 0.0974572, -0.184441, -0.106618, 0.350473, 0.276201, -0.0599967, 0.0722878, 1.11315, 0.290759, 0.151777, 0.125921, -0.0568421, 0.731155, 0.026802, 0.13536, -1.15777, 0.00302849, 0.043818, 0.115833, -0.0218743, -0.0314066, 0.210947, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.235692, 0.0996545, 0.0648054, -0.102595, -0.277918, -0.2415, -0.0144835, 0.0075418, 0.377218, 0.0200296, 0.60864, -0.311493, 0.0961392, -0.974341, -0.0771421, 0.0707816, -0.0314403, -0.316013, -0.208247, -0.0717996, -0.00610772, -0.189746, 0.205266, -0.0201452, 0.136382, 0.507522, 0.289519, -0.552322, 0.0890912, 0.0129174, 0.100449, -0.87412, 0.0490558, -0.666659, -0.186977, -0.255366, 0.214103, -0.0207163, 0.227192, 0.0276348, 0.236468, -0.273472, 0.837772, -0.0557081, -0.211265, 0.000850257, -0.242358, -0.0364585, -0.0199523, -0.113188, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.438543, 0.379397, 0.358304, -0.0773801, -0.366158, 0.0490463, 0.686302, 0.0225138, 0.340097, -0.530462, 0.173969, -0.0348445, -0.013868, 0.215796, 0.156245, 0.26339, 0.103678, -0.557911, -0.602355, 0.19108, -0.0319093, 0.034938, -0.119517, -0.496942, -0.486192, 0.403654, -0.222121, 0.282228, 0.59265, 0.0654504, 0.170625, -0.723298, 0.293512, 0.103814, -0.362937, 0.38495, 0.0220563, -0.165686, -0.304847, 0.00335465, 0.830609, 0.148706, -0.179289, -0.223589, -0.199016, 0.725526, 0.0766948, 0.0418838, -0.0131586, -0.221591, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-1.02514, -0.00147425, 0.819559, -0.188289, 0.251381, -1.40641, -0.134107, 0.0197203, 0.18866, -0.0377162, -1.36462, -0.049471, -0.0124661, 0.408771, -0.448087, 0.0150934, -0.503457, 0.632273, -0.0855894, -0.834034, -0.00577917, -0.150065, 1.01127, -0.256626, -0.0641272, -0.238138, -1.55339, 0.264853, -0.903478, -0.67357, 0.471612, -0.364006, 0.39642, 0.162383, -0.332569, 0.507864, 0.303014, -0.134571, -0.0622213, 0.0388267, -2.01987, 0.122426, 0.64298, 0.0499628, 0.144692, -2.33893, 0.291967, 0.248189, -0.0424526, 0.183213, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.19524, 1.25074, -1.60454, 0.167853, 2.47896, 1.75434, -1.10612, -0.0898483, 0.0267287, -3.56518, 2.06019, 0.27837, -0.889831, 0.783546, 0.684408, 0.275141, -0.134263, -1.58225, 0.723689, 0.258237, 0.0358474, -0.389908, 0.0452969, -1.61825, -1.26175, -2.56158, -5.83188, -0.234059, -0.45978, -0.948524, -0.503194, -0.740925, 1.79708, -0.802708, -1.55122, 2.88848, 0.0855585, -0.203855, 0.16253, -0.0173154, -1.24526, 0.00333169, -0.347336, 0.646906, -0.0661931, -0.87145, 0.430522, 0.0615745, -0.0462951, 0.813804, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.396811, -0.224406, -0.899274, -0.195209, 0.802173, -2.1913, -2.03764, 0.104574, -1.69013, 0.261342, -0.976442, -0.121631, 0.927417, -0.864794, -0.981916, -0.335791, 0.0871111, -0.588874, 0.261057, -0.120918, 0.01083, -0.252138, -0.33334, 0.83345, -0.245787, -0.768666, 0.190394, -0.0126325, 0.0374215, 1.09515, -0.548997, 0.802324, 1.77733, -0.0253681, -0.191419, -1.21135, -0.530847, 1.03401, -0.788644, -0.017306, -0.448833, -0.0494631, 0.400144, -0.317647, -0.578369, 1.20942, 0.166916, -0.435287, -0.0364604, 0.063089, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.0861, 1.31345, -0.688635, -0.222775, 1.36332, -1.30729, 0.358346, -0.0501927, 0.157224, -0.344743, 0.328955, -0.163658, 0.561576, -0.560357, 1.93429, 0.667374, 0.0705984, -1.25166, 1.11659, 0.0947537, 0.00102608, -0.819772, -1.67931, -1.1809, -1.12206, -0.523163, -0.236623, 1.04603, 1.34674, -0.242429, -0.0460118, -0.798652, 0.398762, -2.53205, -0.523379, 0.782301, 0.290683, 1.93613, -0.243884, -0.00341457, -0.0865853, -0.797451, -0.28323, 0.663569, 0.483375, 1.59037, 0.0689928, -0.468233, 0.0109797, -0.402003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00617666, -0.00626907, -0.0364087, -0.033766, -0.0420393, -0.0173827, -0.0251857, -0.0265295, 0.00369311, 0.0205826, -0.00826092, -0.0405211, -0.0296416, 0.0037617, -0.0222573, -0.0215694, -0.0364583, -0.0430819, 0.0204683, 0.0181259, 0.0482162, 0.00835882, -0.016463, 0.0143153, -0.0109554, -0.015299, -0.0394956, -0.0128708, 0.0372357, 0.0161543, -0.0171729, -0.00234245, 0.0262538, 0.0375109, -0.0364627, 0.0170497, -0.0342193, -0.0145733, 0.0014113, -0.00196946, -0.0290391, 0.0186284, 0.00284599, -0.0316734, -0.0449425, -0.0139637, -0.0165479, 0.00591352, 0.0413902, -0.0100204, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-3.8171, -8.82756, -3.47401, 0.159373, 1.82747, -3.54952, 0.905804, 0.734157, -8.94325, -2.97076, -13.0414, -4.75728, 1.65942, -1.76639, -2.23584, 0.510225, -0.895899, -0.864878, -1.6592, 1.06701, 0.0237621, -0.721575, -1.89576, -1.70837, -1.61175, -8.8923, -6.83752, -4.18233, -4.74016, -0.672735, -5.52467, 1.11037, -3.79067, -4.61597, 0.318559, -8.57426, -1.43702, -10.499, -2.38969, -0.0639587, -0.0288864, -5.83034, -4.57014, -0.491869, 1.03637, -13.0836, -4.07073, -0.858079, -0.044583, -0.953208, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.336489, 0.470317, 1.12115, -0.110559, 0.172742, 0.663962, 0.717662, 0.00207668, 1.87062, 0.0966886, 0.927672, 0.147204, -0.180531, 0.628024, -0.382055, -0.0942685, 0.171731, 0.550981, 0.293362, 0.41302, 0.0432035, 0.670419, 1.00073, 0.168903, 0.105111, 0.992534, 0.158492, 0.498977, 0.39512, 0.484066, 0.149968, 1.10138, 0.436477, 0.259648, 0.757776, 2.38998, 0.531197, 0.204843, 0.889504, 0.0559832, -0.0524716, 0.78483, 0.9652, -0.612299, 0.00635633, 0.445725, 0.5117, 1.09911, -0.0324919, 0.430204, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.664628, 0.508629, -0.399036, -0.265941, -0.383114, 0.329273, 0.597569, -0.122218, -0.0317256, -0.0888315, 0.00982428, 0.438555, -0.60241, 0.164894, 0.0454583, -0.313243, -0.238712, 0.630362, 0.320989, -0.0497018, -0.00770173, -0.222201, 0.00806423, -0.274415, -0.669787, 0.86598, -0.191612, 0.657269, 0.0662044, 0.0362145, 0.626445, 0.54692, 0.908383, -0.598341, 0.46131, 0.924829, 0.421478, 0.450122, -0.547269, 0.0461089, 0.0360318, -0.518128, -0.765577, -0.0670621, 0.540337, -0.16555, 0.3016, 1.34515, 0.0356433, 0.491279, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.650161, 0.181347, 0.0271655, -0.054744, -0.124775, -0.175194, 0.934573, -0.22091, 1.04258, -0.154343, 0.306732, 0.0565732, -0.20738, 0.115912, 0.114182, 0.200939, 0.193945, -0.170099, -0.475163, 0.169361, 0.0354498, -0.0728376, -0.274711, -0.407099, -0.123224, 0.106888, -0.237148, 0.495832, 0.353033, 0.110958, 0.150733, 0.177381, -0.203811, -0.231482, -0.0913728, 1.36505, 0.497377, 0.232687, 0.147419, -0.057873, 0.976346, 0.146604, -0.464932, 0.13809, -0.0995222, 0.389619, -0.0439576, -0.383882, 0.0130817, 0.478197, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.71966, 0.437323, 1.5435, 0.234833, 0.606325, 0.382558, 3.209, -0.484546, 0.88344, -1.64797, 1.1776, 0.730343, -0.0620317, 0.981793, 0.754917, 0.754142, 0.358443, -1.92046, 0.0262496, 1.02511, -0.00655277, -0.323363, 1.11758, -0.308324, -0.369623, 0.64024, 1.36653, 2.30861, 1.3116, 0.420355, 0.907235, 0.195808, 0.226531, -2.60767, 1.36523, 3.78456, -0.0955614, 1.123, 0.388804, -0.0171665, 0.94292, 0.336499, 1.26241, 0.192017, 1.73986, -0.289057, 0.392934, 0.0972322, -0.0229843, -1.52806, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.12822, -4.61335, 0.334411, -0.223552, -0.533639, 0.237696, -4.22561, -0.0369685, 1.31524, -2.80042, 1.77855, 0.539336, -1.20894, -0.130237, 0.0369446, -0.237485, -0.134144, 1.40924, -6.05523, -0.423303, 0.00637672, 0.912645, -2.09701, -1.71502, -0.363672, -7.25835, 1.88759, 0.346979, -4.63624, -0.10238, -0.994474, -0.345391, -0.819466, -0.622513, 0.550018, -0.0685538, 0.539643, 1.80407, -0.51752, 0.00786489, 1.18734, -0.0389075, 0.611614, -0.821523, 2.18883, -0.655104, 0.562751, 0.0965078, -0.0294369, -0.0252464, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.541082, -0.0574228, -0.498636, -0.271276, 0.0412878, -1.30808, 1.99276, 0.0258941, -0.274217, -0.0340979, 0.20175, 0.514585, -0.404963, 0.033708, 0.026217, -0.0490579, 0.462941, -0.76646, 1.05147, 0.739627, 0.0128172, -0.0508563, -0.37103, -0.477017, -0.408518, -1.05894, 0.0636573, 1.32278, 0.462368, 0.636759, -0.178947, 0.564367, -0.681844, -0.270084, -1.17195, -1.5698, 0.649325, 0.81723, -1.99037, -0.0162347, -2.70606, -0.343818, -1.02138, -0.740587, 0.484682, -0.0801058, 0.265655, -0.485425, -0.0195206, -0.426221, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.508212, 1.1464, 2.32947, -0.473903, 2.19511, 1.40564, 1.69702, -0.224658, 1.80718, -0.268146, -1.89817, -0.935125, 0.590961, 0.821486, -0.911711, 0.62626, 0.149034, -1.14198, 1.21882, 0.68591, 0.0480892, -0.289662, 0.492446, -0.598976, 0.278667, -2.15104, 0.175778, 0.797284, 1.02212, -1.14863, -0.199179, -0.464598, -0.294116, 0.37971, -0.943043, 1.38938, 0.478286, 0.41418, 0.10092, -0.0516024, 2.17457, 0.724207, 0.331201, 0.14082, -0.182164, 0.760291, 1.09014, 0.64034, -0.0318314, 0.245731, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-1.93351, -0.26478, -1.50677, -0.0762895, 1.48221, -0.471432, -1.7039, 0.186494, -0.631412, -2.56819, -0.0150673, 1.02278, -0.463305, 0.462328, 0.179834, 0.865842, -0.0159018, 0.846736, -2.01613, 0.0741399, -0.0313217, -0.220396, -0.364432, -1.20149, 0.520672, -0.957294, -1.5062, 0.320809, 0.0531439, -0.459631, -0.788573, -1.23157, 0.631036, -0.72682, -1.76117, 0.198421, -0.406299, -0.285017, 0.642325, -0.0537078, -1.05429, -0.103756, 0.43556, 1.53806, -0.430252, -1.58501, -0.361288, -0.644875, 0.0335687, 0.296034, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.143234, 0.805157, -3.43675, -0.256007, -0.684648, 0.322951, -6.63001, 0.0994218, -2.03302, -2.22722, -3.27212, 0.63611, -0.427303, 0.338124, 0.583842, -0.209801, 0.585102, -1.46159, -0.364896, 0.79232, -0.0365294, 0.223671, 0.868018, 0.259206, -1.92537, -5.25459, -0.870115, 0.885208, 1.62484, -3.04068, -2.93796, -0.796098, -0.873136, 0.465928, -1.93092, -3.7572, 0.0448381, 0.3741, -0.371281, 0.0347686, -0.693255, -2.47542, -6.09506, -0.473078, -1.6278, -1.01258, 0.269942, -0.989684, -0.0107711, 1.01346, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [2.56769, 0.744101, 0.989803, 0.0707506, -0.520404, 2.94337, 1.52542, -0.436462, -0.152241, 0.473186, 2.30593, 0.601026, -0.294752, 1.6882, -1.80861, 0.12187, 1.06868, 1.03169, -0.521453, 2.39687, 0.0271559, 0.591481, 1.39257, -0.114476, 0.949464, 0.619214, 1.1171, 0.777771, 1.02623, 0.878573, 0.700519, 1.49759, 0.803343, -5.67363, -0.919278, 4.59986, -3.4536, 3.80278, 1.14795, 0.08343, 1.9374, 1.92968, 1.3674, -0.324621, 1.08074, 1.82274, 0.230967, 4.50858, 0.00230818, -4.87846, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-2.62122, -1.67697, -2.86036, 0.480993, -3.23796, -0.774589, -8.37259, -0.129986, -1.82142, -0.0607685, 0.300123, -0.187689, 0.233994, -0.0528228, -1.91802, -1.24263, -0.539895, -0.261955, -0.104127, -0.381465, -0.00168384, 0.439824, 0.271703, 0.796839, 0.665268, -1.10783, 1.13961, 0.839985, 0.257796, -0.906412, -0.411282, -1.36393, -1.26215, 2.22821, -0.111279, 1.32085, 1.26886, -1.11578, -0.284895, -0.00708048, 0.782819, -0.47918, 0.605261, -0.484601, -8.74234, -0.223438, -0.654625, 0.332457, -0.0114348, -0.268094, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.737548, -0.369773, -0.434994, -0.00732519, 0.892852, -0.79207, -2.6346, 0.361574, -0.253152, -1.8007, 0.774046, 0.316907, -0.0881974, -0.0740688, 1.53028, 0.552037, 0.116041, -0.377559, 0.439152, 0.21733, -0.0150386, -1.00063, -1.1742, -1.71331, -2.05431, -5.49996, 0.86411, -0.273745, -0.97708, -0.69289, -0.167838, -1.07094, -2.27169, -0.247436, -2.86493, -2.41488, 0.0187518, 0.448256, -0.385792, -0.119733, -1.60489, -2.48982, -5.22746, -1.08503, -0.939354, 0.643298, -0.238835, -2.48517, 0.00434891, -0.745752, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.887993, 1.35304, -2.0372, -0.351248, -1.89712, -2.27889, -1.00346, 0.338931, -6.4065, 1.81178, -4.82734, -2.89919, 4.31782, -0.523837, -0.490207, -2.10909, 0.249502, 0.742935, -5.27501, 0.0152689, -0.0383177, -0.213618, -1.51338, -1.10458, 0.33724, -4.00357, -0.500083, -4.26617, -5.47747, -0.31178, -8.51335, -5.16476, -4.23693, 1.11972, 1.02968, -7.32771, -0.25778, -3.72624, -4.78895, -0.0334224, 1.29404, 1.33438, -1.8207, -0.35076, 1.10421, -5.20823, 0.912287, -0.664811, 0.0241254, -2.19034, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-1.2159, -0.497496, -2.77635, -0.100781, 1.24434, -0.882615, 0.319811, 0.241552, -2.13253, -2.44541, -1.57685, 0.0476498, 0.124343, 0.353094, 0.381108, 0.645647, 0.230561, -0.206339, -0.3218, -0.0740437, -0.00212909, -0.344081, -0.737089, -1.23983, -0.536651, -1.61429, -1.63248, -1.34848, -0.444604, -1.38086, 0.288191, -0.34087, -1.97843, 0.000137315, -1.9814, 0.0793025, 0.200219, -0.808826, 0.206289, -0.0540589, -0.191055, 0.14805, 0.76055, -0.0341562, -2.34695, -0.447044, 0.248762, -0.595182, -0.0441508, -0.286075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.399186, 2.69237, 3.90135, 0.0765419, -1.6987, 0.0298567, 1.47378, -1.24091, 3.73473, 0.748788, 3.13239, -1.59199, 0.760351, 0.458254, 2.00967, -0.476311, 0.641691, 2.58396, 0.253238, 2.14008, -0.00557312, 0.480056, -0.489584, 0.241186, -0.556425, 4.13503, 0.560299, 0.936778, 0.406733, 2.65752, 2.33011, 2.98882, 3.016, -2.92358, -2.32449, -1.775, 2.3066, -3.86118, 1.75869, -0.0417082, 1.58795, 2.29032, 0.892855, -0.340113, 0.440077, 1.53466, 1.47796, -0.435286, 0.00234656, -0.352568, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.05023, -0.580693, 0.766014, -0.782152, 3.3483, 1.04234, 1.01239, -0.429834, 0.176673, -0.152083, 2.54015, -0.25205, 0.105111, -1.1695, 1.51777, -0.0411696, -0.591313, 1.80215, 0.371952, 0.0718412, -0.0417704, 0.0322501, 0.303579, -1.30516, -0.0795092, 1.8509, 0.187329, 0.0233616, -0.156261, -0.863168, -1.13653, 2.02608, -0.0883863, -3.79393, 1.03553, 4.00753, 0.5675, 3.06878, -1.1049, 0.122296, -1.07553, -0.818809, 0.15298, 1.06571, -2.05583, 1.15742, 1.38218, 1.26986, 0.036645, 1.98061, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.481297, 0.133977, -0.497157, 0.0299331, -0.364031, -0.620503, -1.93325, -0.0349921, 1.21408, -0.849517, -1.59409, -0.146117, 0.160829, -0.0778031, -0.172807, -0.0379369, 0.0176435, -0.187005, 0.197025, -0.157459, 0.0356228, -0.069798, 0.069154, 0.0517078, 0.252481, 0.315408, -0.183811, -0.488509, -0.673494, -0.144855, 0.13437, -0.303346, -0.237923, 0.181182, -0.66149, 0.655801, 0.863319, -0.227904, 0.22541, -0.0840926, -0.203309, 0.05607, -0.49629, -0.524626, -1.2011, -0.405481, -0.0595285, -1.38604, 0.0146923, -0.421471, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.807671, -0.965712, 0.576834, -0.538454, 0.508279, 0.207324, -0.265654, -0.291125, 0.546935, 0.490871, 0.830914, -0.203819, 1.50337, 0.101228, 0.664359, -0.252667, 0.263581, -0.171374, 0.266583, 0.733759, 0.0175978, 0.224798, 0.232579, -0.643046, 0.476411, -1.00198, -1.60174, 0.667806, 1.54203, 0.195639, 0.276368, -0.850228, 1.05409, -0.687725, 0.45548, 0.121774, -0.11682, 0.508349, 0.115207, 0.055741, -0.832324, 0.086683, -0.262984, 0.568829, 0.692504, 1.34025, -0.761174, 1.26134, -0.0157362, 1.05428, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-2.22863, -2.68154, -9.4645, 1.99582, -2.60804, -3.80318, -3.75667, 0.361697, -0.642802, -4.501, -3.21963, -1.70966, -1.82915, -3.76644, -5.70789, -4.36876, -0.723356, -1.78269, 1.04735, -1.77779, -0.0127646, -3.21105, -1.24122, 1.14503, -0.0864939, -0.513903, 1.57612, -3.75914, -1.87035, -2.60641, 0.943033, -8.34706, -3.16288, 4.32521, -3.57267, -0.307046, -1.63156, -3.28743, -2.81827, -0.0260408, -0.451872, -10.8739, -1.25341, -3.77436, -0.235106, -7.36822, -0.406326, -3.42473, 0.0329931, -0.733651, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.876422, -1.5178, 0.947764, -0.189072, -0.170776, -1.7697, 1.17711, -0.214164, 2.07722, -0.213864, 2.30325, -0.0470967, 0.170056, 0.279734, -0.0108658, 0.272024, -0.243922, 0.809523, -0.532046, 0.163675, 0.0166525, 0.271867, 0.639669, -0.126689, -0.253285, 1.08108, -3.01555, 0.623307, -1.57968, -0.180409, -0.27128, 0.161183, 0.190635, -0.875921, -0.539196, 2.53405, 0.0526957, -2.45461, -0.202574, -0.0419357, 0.523818, 0.0463655, -1.03312, 0.238402, 1.36291, 0.942575, -0.582631, -0.00566493, 0.0121031, 0.894566, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.917, 1.712, -0.8657, -0.6753, 0.11597, 2.322, 3.057, -0.747, 1.676, 0.9756, 0.5645, -0.04327, 0.1837, 1.147, -0.6978, 0.03044, 0.2362, 2.281, 0.293, 1.032, 0.00521, 0.1508, -0.2966, -0.734, -0.9707, -1.024, -1.952, -0.302, 2.162, -0.413, -0.1918, 1.054, -0.8774, -0.5356, 1.537, 3.562, 1.688, -0.6636, -1.158, 0.0719, 2.297, 0.442, 1.897, 0.283, 0.5796, 1.913, 1.434, 2.172, -0.02122, -0.1328], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5117, -0.0767, 0.4917, -0.01083, 0.0897, 0.974, 0.3782, 0.05347, 0.5576, 0.02045, -0.1809, -0.11005, 0.1932, -0.02321, -0.0914, 0.02698, -0.1803, -0.05215, -0.5664, -0.702, -0.02188, 0.0725, -0.3936, -0.8164, -0.2373, 1.322, -0.6313, 0.04034, 0.538, -0.3074, -0.346, 0.1782, -0.2472, -0.02776, 0.5205, 0.5923, -0.1589, 0.1583, 0.0784, 0.1987, 1.09, -0.2059, -0.3948, 0.01555, -0.3076, 0.1881, -0.3655, -0.08606, -0.000783, -0.1062], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.158, 1.434, -1.706, 0.491, 0.6196, -0.761, 3.025, -0.4604, 0.4717, 0.811, 2.803, -0.7163, -0.7095, 0.831, 1.551, 0.309, 0.4143, 1.888, 0.09766, 0.09235, -0.02832, 1.093, 0.547, 0.2241, 0.144, 0.906, 0.5693, 0.06854, -0.0426, 0.455, -1.244, -0.3184, 0.612, -1.683, -0.582, 0.5254, -0.1587, -1.002, 0.2932, 0.02754, 1.139, 0.11334, 0.838, -0.1289, -0.01436, 1.943, 0.92, -1.365, -0.03027, -3.559], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -10.734, -2.71, 1.804, 0.704, -1.516, 0.4146, -5.723, 0.2693, -2.24, 0.6987, -4.2, 0.4988, -0.8804, 1.764, -3.54, -2.9, -0.654, -5.08, -6.43, 2.184, -0.024, -1.002, -4.363, 0.6226, -1.041, 0.836, -0.984, -5.48, 0.464, 2.22, -4.918, -5.926, -0.5493, -8.98, 1.663, -3.346, 0.4778, -7.605, -3.688, -0.04608, -7.387, -6.355, -1.178, -0.848, -1.712, -0.8438, 0.1796, -2.115, 0.04364, -1.46], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5527, 0.1398, -0.2598, 0.064, 0.1262, -0.6313, 1.078, -0.1622, 0.953, -0.4133, -0.377, 0.3696, -0.522, 0.33, 0.2844, 0.303, 0.11505, 0.52, -0.03323, 0.1948, 0.008446, 0.0918, -0.1351, 0.05988, -0.1411, 0.3938, 0.1674, -0.4, 0.1882, 0.1692, -0.1776, -0.10657, 0.02838, -0.2598, 0.2915, 0.701, -0.1105, -0.5835, -0.0383, -0.0871, 0.01842, -0.1409, -0.3706, 0.1719, 0.505, 1.709, -0.09155, 0.409, 0.03485, -0.684], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6787, 0.3208, -0.033, 0.02066, -0.801, -0.3005, 0.2976, 0.0006022, 0.2095, 0.12, -0.05185, 0.10406, -0.1102, -0.1098, 0.1372, 0.3428, 0.04208, -0.6895, -0.0652, 0.05914, 0.0189, -0.1388, -0.323, 0.132, -0.2866, 0.4824, -0.2336, 0.2004, 0.257, 0.3938, -0.3455, 0.1031, 0.1794, -0.5176, -0.3467, -0.2194, -0.0749, 0.3767, -0.764, 0.3262, -0.09717, -0.4607, -0.1636, 0.127, -0.606, -0.00832, 0.1613, -0.07117, 0.02586, -0.1761], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1544, -0.1849, 0.6763, -0.5186, -0.2262, 1.697, 2.148, -0.1159, 1.347, -0.3118, -0.3257, -0.02597, -2.61, 0.1188, 0.00855, 0.05392, -0.1436, -0.6826, -1.797, -0.366, 0.0346, 0.05347, 0.2225, -0.973, 0.9463, 1.81, -0.676, 0.684, 0.908, -0.763, 1.24, -1.048, 0.3713, -0.2654, 0.281, 0.7075, 0.2042, 0.0842, 0.03598, 0.0578, 1.572, 0.3613, 2.135, -0.2057, -0.85, 0.9717, 0.1655, 0.3762, 0.02747, 0.4846], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.4216, -0.578, -2.58, 0.1599, -1.728, -1.184, -0.05286, 0.1848, -0.1051, -1.445, -1.2705, 0.1476, -0.1875, 0.4722, 0.1532, -0.5815, 0.2734, -0.5337, 0.3564, 0.9355, -0.04343, -0.09247, 0.5044, -0.1497, -1.268, 0.796, -0.894, -1.56, -0.5776, -0.272, 0.934, -0.536, -2.156, 1.745, -0.141, -2.201, 0.2152, -1.487, 0.065, 0.002853, -1.279, -0.7153, 1.467, -1.197, 0.4087, -5.316, -0.0419, -2.877, 0.02501, 0.0617], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.514, 0.3271, -0.00982, -0.1164, 0.5044, -0.7456, -0.1627, -0.1332, -0.5347, -0.3499, -0.0624, -0.2666, -1.125, 0.2123, 0.522, 0.333, 0.2698, 0.4116, 0.2952, 0.16, -0.04343, 0.05222, -0.1012, -0.1644, -0.1109, 0.5073, 0.095, -0.4978, 0.586, 0.1289, 0.0896, -0.2445, 0.4656, -1.964, 0.7407, -0.39, -0.0522, -0.536, 0.1873, 0.0376, -0.2517, 0.0646, 0.4966, 0.4478, 0.8257, 0.9614, -0.4377, 0.1682, 0.01505, -0.06244], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.259, -4.36, -0.02428, 0.001229, -0.989, 0.01794, 2.047, 0.1652, -1.31, 0.2377, -1.74, -0.4753, -0.1937, -0.635, -0.1499, -1.046, 0.5454, -1.7295, 0.421, -0.3289, 0.03897, -0.24, -0.2686, -0.5347, -0.8936, -1.185, -1.216, -0.907, 1.296, 0.0977, 0.228, -0.06207, 0.3823, 0.2444, -0.4348, -1.027, -0.5146, -0.1674, -0.1299, 0.00945, -0.8276, -1.846, -1.831, -0.2942, 1.38, -2.633, 0.5903, -0.784, -0.0377, -0.4182], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.012764, 1.054, -0.2242, 0.0881, -0.9854, -0.693, -0.558, 0.1995, -0.2375, -0.9595, 0.554, 0.835, -1.066, -0.08545, -0.0575, -0.6743, 0.1798, -0.95, 0.04266, 0.3286, 0.0419, -0.1108, 0.1566, 0.3179, -0.1133, -2.783, -0.9834, -0.234, -1.023, 0.3047, -3.467, 0.4402, -0.2117, 0.553, -0.2837, -1.845, 0.4993, -1.002, -1.332, 0.006756, -3.514, 0.3682, 0.3958, -1.118, -3.004, -1.179, 0.3018, -1.74, -0.0281, -0.454], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3337, -0.1342, 0.05106, -0.1105, -0.2408, 0.2913, -0.2957, -0.012474, 1.061, 0.1216, 0.413, -0.05756, -0.1287, -0.3005, 0.278, -0.08673, 0.2081, 0.096, -0.6553, 0.05164, 0.03406, 0.1887, -0.908, 0.0379, -0.345, 0.704, -0.3362, 0.8105, 0.6313, -0.1741, -0.84, -0.3423, 0.4995, -0.7646, -0.3901, 0.3035, 0.1279, -0.08563, 0.131, 0.0798, -0.1664, 0.0552, -0.8022, 0.1057, 0.03937, 1.455, 0.3242, -0.2006, 0.00507, -0.0583], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6333, 1.186, -0.536, -0.0368, 0.8257, 0.732, -0.1658, -0.2617, -0.92, -0.3687, 0.627, 0.1865, -0.4739, -0.1442, -0.1565, 0.247, -0.05664, 0.2664, -0.656, -0.106, 0.03607, 0.08105, -0.412, 0.4219, 0.02051, 0.8213, 0.1932, -0.5386, -0.005455, -0.448, -0.1165, 0.3193, 0.6025, -0.5635, 0.3125, -0.174, 0.6597, -0.736, 0.4033, 0.08136, 0.4326, -0.2783, -0.955, -0.0278, -0.12286, 0.5864, -0.06113, 0.6147, -0.006943, 0.5254], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5015, 0.4282, -1.852, 0.0791, -1.595, -4.734, -0.995, -0.1951, -2.58, 0.1512, -0.862, -0.4197, 0.08844, -0.08344, 0.11554, 0.04196, -1.436, -4.65, 0.4028, 0.4678, 0.0199, -2.186, -1.419, 0.27, -0.00512, -0.999, -2.895, 0.0991, -2.453, 0.10156, 0.229, -1.215, -4.133, 0.06235, -0.403, -0.08673, 0.3342, -0.3555, -0.5015, 0.05725, -0.335, -2.635, -4.45, -0.0725, -2.635, -1.367, 0.1907, -0.4153, -0.02, -0.9595], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.066, -0.001381, 0.259, 0.1854, 0.4211, 0.7354, 1.563, -0.3176, 0.1578, -0.1407, -0.02646, -0.0406, -0.484, 0.02629, 0.1666, 0.171, -0.2202, -0.04926, 0.1797, -0.11475, -0.01376, 0.1009, 0.6426, -0.0649, 0.7163, 0.0433, 0.1024, 0.4744, 0.1294, -0.3872, -0.4092, -0.3367, 0.2434, -0.2476, -0.315, 1.599, 0.52, 0.05487, 0.2344, -0.0491, -1.009, -0.4634, -0.631, 0.6626, -0.551, -1.531, 0.11456, 1.073, -0.03543, -0.10657], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -3.424, 0.1454, -0.1664, -0.479, 0.5864, -4.26, -6.223, 0.1971, -1.621, -1.505, -6.125, -0.929, -0.1214, 0.3186, 1.54, -0.4768, -1.026, -2.137, 0.2043, -0.618, 0.02998, 0.4023, 0.3298, -0.6587, 0.007397, -1.723, -1.547, -0.5376, -2.396, 0.2284, -2.135, -2.74, 0.4656, -0.2742, 0.3103, -5.727, -0.596, 0.1523, -1.548, -0.04446, 1.437, -2.99, -5.33, 1.147, -3.12, -7.293, 2.145, -0.1813, 0.009766, -0.7354], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.03128, -0.19, 0.2068, -0.0169, -0.3147, -0.601, 0.3638, -0.1171, 0.5664, 0.0853, -0.5645, -0.1106, -0.01965, -0.01662, -0.05875, 0.118, -0.11566, -0.3154, 0.801, -0.1068, -0.001109, -0.01598, 0.4243, -0.4216, -0.11066, -0.4482, -0.4978, 0.2656, -0.3958, 0.04926, 0.351, 0.01686, -0.648, -0.06537, -0.2184, 0.979, 0.29, 0.2238, -0.19, -0.0614, 0.2413, 0.012054, 0.04114, 0.07635, -0.1486, 0.799, 0.1998, -0.4053, -0.015366, 0.05856], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.202, 0.151, 0.3938, -0.1575, 0.7036, 0.06192, -0.0958, -0.165, 2.184, 0.269, -2.057, -1.3, 0.969, 0.4697, -0.7075, 0.11884, -0.441, 0.1305, 0.4263, 0.2272, 0.01923, -0.0635, 1.252, 0.6177, -0.9546, -0.891, 0.353, -0.3643, 0.669, -0.02248, -0.2192, -0.285, 2.047, -3.182, 0.3684, 2.057, 0.3315, -0.0455, -0.5103, 0.07465, 0.723, -0.2151, 1.293, 0.00893, 0.3386, 1.494, 0.07056, 0.5054, 0.01643, 1.026], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3323, -0.05356, -0.3215, -0.02725, -0.3108, -0.3708, -0.424, -0.09735, -0.3596, -0.1382, 0.3225, -0.2175, 0.1578, 0.1328, 0.05173, 0.05447, 0.05634, -0.08856, 0.253, -0.2189, 0.0343, -0.006474, -0.2261, 0.0028, -0.03098, -0.2313, 0.3176, 0.00763, 0.1896, 0.0269, -0.04984, -0.0973, 0.239, -0.1309, -0.0751, 0.2925, 0.4104, 0.1284, 0.0762, 0.2515, 0.48, -0.1843, 0.0374, 0.3696, -0.3826, -0.1423, 0.01009, -0.3022, -0.02757, 0.1753], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8267, 2.988, 1.747, -0.3987, 0.889, 2.316, 3.812, -0.672, 2.055, -0.6133, 2.873, -0.04224, 1.165, 2.303, 0.5376, 1.319, 0.26, -4.797, 1.358, 2.69, -0.02248, 1.356, 3.36, -1.219, -1.164, 2.557, 1.793, 2.963, -1.538, 2.12, 1.365, 4.312, 0.4211, -1.763, 2.148, 4.34, 0.121, -1.196, -1.05, 0.002626, 4.668, 1.043, -0.6196, -1.533, 1.407, 0.9585, -0.0566, 0.09546, -0.02939, -1.405], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1323, 0.2424, -0.6206, -0.4836, 1.705, 2.33, 3.426, -0.548, 2.332, 0.003866, -3.365, 0.0597, 0.485, -0.863, -0.642, -0.9307, 0.586, 0.2888, -0.3347, 0.7744, 0.02391, 0.762, -0.593, 0.001149, 0.1791, -0.01593, -0.1931, 0.803, 0.366, 1.022, 0.2407, -0.251, -1.145, -1.508, 1.809, -0.2664, 0.609, 2.363, 2.191, 0.0665, 1.502, 0.565, 1.314, -0.2382, 1.992, 3.592, -0.01718, 1.858, -0.0346, -0.11566], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02405, 0.1184, -0.5605, 0.0723, -0.0991, 0.1421, 0.1099, -0.1825, 0.1036, 0.416, 0.7363, 0.4382, 0.04208, 0.3237, -0.0934, 0.08044, -0.05176, -0.09674, 0.03882, -0.04416, 0.02577, -0.1231, 0.3127, 0.3013, 0.1615, 0.08344, -0.0939, 0.2327, 0.0975, -0.1844, -0.1066, 0.3506, 0.2761, -0.06, 0.07227, 1.113, 0.2908, 0.1517, 0.126, -0.05685, 0.731, 0.0268, 0.1354, -1.158, 0.003029, 0.04382, 0.11584, -0.02188, -0.0314, 0.2109], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.2357, 0.0997, 0.0648, -0.1026, -0.2778, -0.2415, -0.01448, 0.00754, 0.3772, 0.02003, 0.6084, -0.3115, 0.0961, -0.974, -0.07715, 0.0708, -0.03143, -0.316, -0.2083, -0.0718, -0.006107, -0.1897, 0.2053, -0.02014, 0.1364, 0.5073, 0.2896, -0.5522, 0.0891, 0.01292, 0.10046, -0.874, 0.04904, -0.6665, -0.187, -0.2554, 0.2141, -0.02072, 0.2272, 0.02763, 0.2365, -0.2734, 0.838, -0.0557, -0.2113, 0.00085, -0.2423, -0.03647, -0.01996, -0.11316], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4385, 0.3794, 0.3584, -0.0774, -0.3662, 0.04904, 0.6865, 0.0225, 0.34, -0.5303, 0.174, -0.03485, -0.01387, 0.2158, 0.1562, 0.2634, 0.1037, -0.558, -0.6025, 0.191, -0.03192, 0.03494, -0.1195, -0.4968, -0.486, 0.4036, -0.2222, 0.2822, 0.593, 0.0654, 0.1707, -0.723, 0.2935, 0.1038, -0.363, 0.385, 0.02205, -0.1656, -0.305, 0.003355, 0.8306, 0.1487, -0.1793, -0.2236, -0.199, 0.7256, 0.0767, 0.04187, -0.01316, -0.2216], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.025, -0.001474, 0.8193, -0.1882, 0.2515, -1.406, -0.1342, 0.01971, 0.1887, -0.03772, -1.364, -0.04947, -0.01247, 0.4087, -0.448, 0.01509, -0.5034, 0.6323, -0.0856, -0.834, -0.00578, -0.15, 1.012, -0.2566, -0.06415, -0.2382, -1.554, 0.265, -0.9033, -0.6733, 0.4717, -0.364, 0.3965, 0.1624, -0.3325, 0.508, 0.303, -0.1345, -0.06223, 0.03882, -2.02, 0.12244, 0.643, 0.04996, 0.1447, -2.34, 0.292, 0.2482, -0.04245, 0.1832], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.195, 1.251, -1.6045, 0.1678, 2.479, 1.754, -1.106, -0.08984, 0.02673, -3.564, 2.06, 0.2783, -0.8896, 0.7837, 0.6846, 0.2751, -0.1343, -1.582, 0.7236, 0.2583, 0.03586, -0.39, 0.0453, -1.618, -1.262, -2.562, -5.832, -0.234, -0.4597, -0.9487, -0.5034, -0.7407, 1.797, -0.8027, -1.551, 2.889, 0.0856, -0.2039, 0.1625, -0.01732, -1.245, 0.003332, -0.3474, 0.647, -0.0662, -0.8716, 0.4304, 0.06158, -0.0463, 0.814], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3967, -0.2244, -0.8994, -0.1952, 0.8022, -2.191, -2.037, 0.10455, -1.69, 0.2612, -0.9766, -0.12164, 0.9272, -0.8647, -0.982, -0.3357, 0.0871, -0.589, 0.261, -0.1209, 0.01083, -0.2522, -0.3333, 0.8335, -0.2457, -0.7686, 0.1904, -0.012634, 0.0374, 1.095, -0.549, 0.8022, 1.777, -0.02538, -0.1914, -1.211, -0.531, 1.034, -0.7886, -0.0173, -0.4487, -0.04947, 0.4001, -0.3176, -0.578, 1.209, 0.1669, -0.4353, -0.03647, 0.0631], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.086, 1.313, -0.6885, -0.2228, 1.363, -1.308, 0.3584, -0.0502, 0.1572, -0.3447, 0.3289, -0.1637, 0.5615, -0.5605, 1.935, 0.6675, 0.0706, -1.252, 1.116, 0.0947, 0.001026, -0.82, -1.68, -1.181, -1.122, -0.523, -0.2366, 1.046, 1.347, -0.2424, -0.04602, -0.799, 0.3987, -2.531, -0.5234, 0.782, 0.2908, 1.937, -0.2439, -0.003414, -0.0866, -0.7974, -0.2832, 0.6636, 0.4834, 1.591, 0.069, -0.4683, 0.01098, -0.402], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.006176, -0.006268, -0.0364, -0.03375, -0.04205, -0.01738, -0.02519, -0.02654, 0.003693, 0.02058, -0.00826, -0.04053, -0.02965, 0.003761, -0.02226, -0.02158, -0.03647, -0.0431, 0.02046, 0.01813, 0.04822, 0.00836, -0.01646, 0.01431, -0.010956, -0.0153, -0.0395, -0.01287, 0.03723, 0.01616, -0.01717, -0.002342, 0.02626, 0.0375, -0.03647, 0.01704, -0.0342, -0.01457, 0.001411, -0.00197, -0.02904, 0.01863, 0.002846, -0.03168, -0.04495, -0.01396, -0.01654, 0.005913, 0.04138, -0.01002], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -3.816, -8.83, -3.475, 0.1594, 1.827, -3.549, 0.906, 0.7344, -8.945, -2.97, -13.04, -4.758, 1.659, -1.767, -2.236, 0.5103, -0.896, -0.8647, -1.659, 1.067, 0.02376, -0.7217, -1.8955, -1.708, -1.611, -8.89, -6.836, -4.184, -4.74, -0.673, -5.523, 1.11, -3.791, -4.617, 0.3186, -8.58, -1.4375, -10.5, -2.39, -0.06396, -0.02888, -5.832, -4.57, -0.492, 1.036, -13.086, -4.07, -0.858, -0.0446, -0.953], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3364, 0.4702, 1.121, -0.11053, 0.1727, 0.664, 0.718, 0.002077, 1.871, 0.0967, 0.9277, 0.1472, -0.1805, 0.628, -0.382, -0.09424, 0.1718, 0.551, 0.2935, 0.413, 0.0432, 0.6704, 1.001, 0.169, 0.1051, 0.9927, 0.1584, 0.499, 0.395, 0.4841, 0.15, 1.102, 0.4365, 0.2598, 0.758, 2.39, 0.5312, 0.2048, 0.8896, 0.05597, -0.05246, 0.7847, 0.9653, -0.6123, 0.006355, 0.4458, 0.5117, 1.099, -0.0325, 0.4302], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6646, 0.509, -0.399, -0.2659, -0.383, 0.3293, 0.5977, -0.1222, -0.03174, -0.0888, 0.00983, 0.4385, -0.6025, 0.1649, 0.04547, -0.3132, -0.2388, 0.6304, 0.321, -0.0497, -0.0077, -0.2222, 0.008064, -0.2744, -0.67, 0.866, -0.1917, 0.657, 0.0662, 0.03622, 0.6265, 0.547, 0.908, -0.598, 0.4614, 0.925, 0.4214, 0.4502, -0.5474, 0.0461, 0.03604, -0.518, -0.7656, -0.0671, 0.5405, -0.1655, 0.3015, 1.345, 0.03564, 0.4912], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6504, 0.1814, 0.02716, -0.05475, -0.12476, -0.1752, 0.9346, -0.221, 1.043, -0.1543, 0.3066, 0.05658, -0.2074, 0.1159, 0.1142, 0.2009, 0.194, -0.17, -0.475, 0.1693, 0.03546, -0.0728, -0.2747, -0.407, -0.1232, 0.1069, -0.2372, 0.4958, 0.353, 0.11096, 0.1508, 0.1774, -0.2039, -0.2314, -0.0914, 1.365, 0.4973, 0.2327, 0.1475, -0.05786, 0.9766, 0.1466, -0.4648, 0.1381, -0.09955, 0.3896, -0.04395, -0.3838, 0.013084, 0.4783], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.72, 0.4373, 1.544, 0.2349, 0.6064, 0.3826, 3.209, -0.4846, 0.8833, -1.648, 1.178, 0.7305, -0.06204, 0.982, 0.755, 0.754, 0.3584, -1.921, 0.02625, 1.025, -0.006554, -0.3232, 1.117, -0.3083, -0.3696, 0.64, 1.366, 2.309, 1.312, 0.4204, 0.907, 0.1958, 0.2266, -2.607, 1.365, 3.785, -0.0956, 1.123, 0.389, -0.01717, 0.943, 0.3364, 1.263, 0.192, 1.74, -0.289, 0.3928, 0.0972, -0.02298, -1.528], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.128, -4.613, 0.3345, -0.2235, -0.5337, 0.2377, -4.227, -0.03696, 1.315, -2.8, 1.778, 0.5396, -1.209, -0.1302, 0.03696, -0.2374, -0.1342, 1.409, -6.055, -0.4233, 0.00638, 0.9126, -2.098, -1.715, -0.3638, -7.258, 1.888, 0.347, -4.637, -0.10236, -0.9946, -0.3455, -0.8193, -0.6226, 0.55, -0.06854, 0.5396, 1.804, -0.5176, 0.007866, 1.1875, -0.0389, 0.612, -0.8213, 2.19, -0.6553, 0.563, 0.0965, -0.02943, -0.02525], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.541, -0.05743, -0.4985, -0.2712, 0.0413, -1.308, 1.993, 0.0259, -0.2742, -0.0341, 0.2018, 0.5146, -0.405, 0.03372, 0.02621, -0.04907, 0.463, -0.7666, 1.052, 0.7397, 0.01282, -0.05084, -0.371, -0.477, -0.4084, -1.059, 0.06366, 1.323, 0.4624, 0.6367, -0.179, 0.5645, -0.6816, -0.27, -1.172, -1.569, 0.6494, 0.8174, -1.99, -0.01624, -2.707, -0.3438, -1.021, -0.7407, 0.4846, -0.0801, 0.2656, -0.4854, -0.01952, -0.4263], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5083, 1.146, 2.33, -0.4739, 2.195, 1.405, 1.697, -0.2246, 1.808, -0.268, -1.898, -0.935, 0.591, 0.8213, -0.9116, 0.6265, 0.149, -1.142, 1.219, 0.686, 0.0481, -0.2896, 0.4924, -0.599, 0.2786, -2.15, 0.1758, 0.7974, 1.022, -1.148, -0.1992, -0.4646, -0.2942, 0.3796, -0.943, 1.39, 0.4783, 0.414, 0.1009, -0.0516, 2.174, 0.724, 0.3313, 0.1409, -0.1821, 0.7603, 1.09, 0.64, -0.03183, 0.2457], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.934, -0.265, -1.507, -0.0763, 1.482, -0.4714, -1.704, 0.1865, -0.6313, -2.568, -0.01507, 1.022, -0.4634, 0.4624, 0.1798, 0.8657, -0.0159, 0.8467, -2.016, 0.07416, -0.0313, -0.2203, -0.3645, -1.201, 0.5205, -0.9575, -1.506, 0.3208, 0.05313, -0.4597, -0.7886, -1.231, 0.631, -0.727, -1.761, 0.1984, -0.4062, -0.285, 0.642, -0.0537, -1.055, -0.10376, 0.4355, 1.538, -0.4302, -1.585, -0.3613, -0.645, 0.03357, 0.2961], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1432, 0.805, -3.438, -0.256, -0.6846, 0.323, -6.63, 0.0994, -2.033, -2.227, -3.271, 0.636, -0.4272, 0.3381, 0.584, -0.2098, 0.585, -1.462, -0.365, 0.7925, -0.03653, 0.2236, 0.868, 0.2593, -1.926, -5.254, -0.87, 0.8853, 1.625, -3.041, -2.938, -0.796, -0.873, 0.4658, -1.931, -3.758, 0.04483, 0.374, -0.3713, 0.03476, -0.6934, -2.475, -6.094, -0.4731, -1.628, -1.013, 0.27, -0.9897, -0.01077, 1.014], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.568, 0.744, 0.9897, 0.07074, -0.5205, 2.943, 1.525, -0.4365, -0.1522, 0.4731, 2.307, 0.601, -0.2947, 1.688, -1.809, 0.1219, 1.068, 1.031, -0.5215, 2.396, 0.02716, 0.5913, 1.393, -0.1145, 0.9497, 0.619, 1.117, 0.778, 1.026, 0.8784, 0.7007, 1.498, 0.803, -5.67, -0.9194, 4.6, -3.453, 3.803, 1.148, 0.08344, 1.9375, 1.93, 1.367, -0.3247, 1.081, 1.822, 0.231, 4.508, 0.002308, -4.88], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -2.621, -1.677, -2.861, 0.481, -3.238, -0.7744, -8.375, -0.13, -1.821, -0.06076, 0.3, -0.1877, 0.234, -0.05283, -1.918, -1.242, -0.54, -0.262, -0.1041, -0.3813, -0.001684, 0.44, 0.2717, 0.797, 0.665, -1.107, 1.14, 0.84, 0.2578, -0.9062, -0.4114, -1.364, -1.262, 2.229, -0.11127, 1.321, 1.269, -1.116, -0.285, -0.00708, 0.7827, -0.4792, 0.6055, -0.4846, -8.74, -0.2234, -0.655, 0.3325, -0.01144, -0.268], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.7373, -0.3699, -0.435, -0.007324, 0.893, -0.792, -2.635, 0.3616, -0.2532, -1.801, 0.774, 0.317, -0.0882, -0.0741, 1.53, 0.5522, 0.116, -0.3774, 0.4392, 0.2173, -0.01504, -1.001, -1.174, -1.713, -2.055, -5.5, 0.8643, -0.2737, -0.977, -0.693, -0.1678, -1.071, -2.271, -0.2474, -2.865, -2.414, 0.01875, 0.4482, -0.3857, -0.11975, -1.6045, -2.49, -5.227, -1.085, -0.9395, 0.643, -0.2389, -2.484, 0.00435, -0.7456], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.888, 1.354, -2.037, -0.3513, -1.897, -2.28, -1.004, 0.3389, -6.406, 1.812, -4.83, -2.898, 4.316, -0.524, -0.4902, -2.11, 0.2495, 0.743, -5.273, 0.01527, -0.03833, -0.2136, -1.514, -1.1045, 0.3372, -4.004, -0.5, -4.266, -5.477, -0.3118, -8.516, -5.164, -4.24, 1.12, 1.029, -7.33, -0.2578, -3.727, -4.79, -0.03342, 1.294, 1.334, -1.82, -0.3508, 1.1045, -5.207, 0.912, -0.665, 0.02412, -2.19], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.216, -0.4976, -2.775, -0.10077, 1.244, -0.883, 0.3198, 0.2416, -2.133, -2.445, -1.577, 0.04764, 0.1243, 0.353, 0.381, 0.6455, 0.2306, -0.2063, -0.3218, -0.07404, -0.002129, -0.344, -0.7373, -1.24, -0.5366, -1.614, -1.633, -1.349, -0.4446, -1.381, 0.288, -0.3408, -1.979, 0.0001373, -1.981, 0.0793, 0.2002, -0.8086, 0.2063, -0.05405, -0.191, 0.1481, 0.7607, -0.03415, -2.348, -0.447, 0.2488, -0.595, -0.04416, -0.2861], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3992, 2.691, 3.9, 0.07654, -1.698, 0.02986, 1.474, -1.241, 3.734, 0.749, 3.133, -1.592, 0.7603, 0.4583, 2.01, -0.4763, 0.6416, 2.584, 0.2532, 2.14, -0.005573, 0.48, -0.4895, 0.2412, -0.5566, 4.137, 0.56, 0.937, 0.4067, 2.658, 2.33, 2.988, 3.016, -2.924, -2.324, -1.775, 2.307, -3.861, 1.759, -0.04172, 1.588, 2.291, 0.893, -0.34, 0.4402, 1.534, 1.478, -0.4353, 0.002346, -0.3525], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.05, -0.5806, 0.766, -0.782, 3.348, 1.042, 1.013, -0.43, 0.1766, -0.1521, 2.541, -0.252, 0.1051, -1.17, 1.518, -0.04117, -0.5913, 1.802, 0.372, 0.07184, -0.04178, 0.03226, 0.3035, -1.305, -0.0795, 1.851, 0.1874, 0.02336, -0.1562, -0.8633, -1.137, 2.025, -0.0884, -3.793, 1.035, 4.008, 0.5674, 3.068, -1.1045, 0.1223, -1.075, -0.819, 0.153, 1.065, -2.057, 1.157, 1.382, 1.27, 0.03665, 1.98], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.4812, 0.134, -0.497, 0.02994, -0.364, -0.6206, -1.934, -0.035, 1.214, -0.8496, -1.594, -0.1461, 0.1609, -0.0778, -0.1729, -0.03793, 0.01764, -0.187, 0.197, -0.1575, 0.0356, -0.0698, 0.06915, 0.0517, 0.2524, 0.3154, -0.1838, -0.4885, -0.6733, -0.1449, 0.1344, -0.3035, -0.2379, 0.1812, -0.6616, 0.656, 0.8633, -0.2279, 0.2255, -0.0841, -0.2034, 0.05606, -0.4963, -0.5244, -1.201, -0.4055, -0.05954, -1.386, 0.014694, -0.4214], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8076, -0.966, 0.5767, -0.5386, 0.5083, 0.2073, -0.2656, -0.291, 0.547, 0.491, 0.831, -0.2039, 1.503, 0.10126, 0.6646, -0.2527, 0.2637, -0.1714, 0.2666, 0.734, 0.0176, 0.2249, 0.2325, -0.643, 0.4763, -1.002, -1.602, 0.668, 1.542, 0.1957, 0.2764, -0.85, 1.054, -0.6875, 0.4556, 0.12177, -0.1168, 0.5083, 0.11523, 0.05576, -0.8325, 0.0867, -0.263, 0.569, 0.6924, 1.34, -0.761, 1.262, -0.01573, 1.055], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -2.229, -2.682, -9.46, 1.996, -2.607, -3.803, -3.756, 0.3618, -0.6426, -4.5, -3.219, -1.71, -1.829, -3.766, -5.707, -4.367, -0.723, -1.782, 1.047, -1.777, -0.012764, -3.21, -1.241, 1.1455, -0.0865, -0.5137, 1.576, -3.76, -1.87, -2.605, 0.943, -8.34, -3.162, 4.324, -3.572, -0.3071, -1.632, -3.287, -2.818, -0.02605, -0.452, -10.875, -1.253, -3.773, -0.2351, -7.367, -0.4062, -3.424, 0.033, -0.734], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8765, -1.518, 0.9478, -0.1891, -0.1708, -1.77, 1.177, -0.2141, 2.078, -0.2139, 2.303, -0.0471, 0.17, 0.2798, -0.010864, 0.272, -0.2439, 0.8096, -0.532, 0.1637, 0.01665, 0.272, 0.6396, -0.1267, -0.2532, 1.081, -3.016, 0.6235, -1.58, -0.1804, -0.2712, 0.1611, 0.1907, -0.876, -0.539, 2.533, 0.0527, -2.455, -0.2025, -0.04193, 0.524, 0.04636, -1.033, 0.2384, 1.363, 0.9424, -0.5825, -0.005665, 0.0121, 0.8945]] [-0.00531489, 1.09042, 2.14067, 1.00862, 2.09616, 2.17111, 0.608048, -0.45753, 2.19102, -1.64808, -0.499766, 0.853452, 2.00846, -0.0260503, 2.18324, 0.265655, 0.952091, 0.539105, 3.45282, 0.661719, -0.812026, -0.662646, -0.0381569, 3.08199, 0.259077, 0.567328, 0.115133, 4.59682, 0.0, -1.00437, -2.51176, 0.59332, 1.17463, 0.49534, -1.84365, 2.80205, -0.397106, -0.168564, 1.71175, 1.19615, 1.29271, 2.49076, -0.33568, 1.20101, 0.984225, 0.926552, 3.37819, 1.09261, -1.20169, 0.121169, -0.005314, 1.091, 2.14, 1.009, 2.096, 2.172, 0.608, -0.4575, 2.191, -1.648, -0.4998, 0.8535, 2.008, -0.02605, 2.184, 0.2656, 0.952, 0.539, 3.453, 0.6616, -0.812, -0.6626, -0.03815, 3.082, 0.259, 0.5674, 0.1151, 4.598, 0.0, -1.004, -2.512, 0.5933, 1.175, 0.4954, -1.844, 2.803, -0.3972, -0.1686, 1.712, 1.196, 1.293, 2.49, -0.3357, 1.201, 0.9844, 0.927, 3.379, 1.093, -1.202, 0.12115] ReLU [[0.0309351, 0.018066, -0.015908, -0.0050587, 0.110306, 0.00142164, -0.104527, 0.0157008, -0.123083, 0.025456, 0.0125262, 0.0278131, 0.00571411, 1.6049, -0.0105878, 0.0220079, 0.128387, -0.0105834, 0.0853231, -4.99155e-05, 0.00558305, 0.22781, -0.0874578, 0.0191829, -0.0369042, 0.0194176, 0.010549, 0.0125647, 0.0440927, -0.0427327, -0.034355, 0.0570962, 0.15388, 0.0205593, -0.075037, -0.0156852, -0.0446344, -0.00381369, -0.0130292, 0.00590512, 0.0206849, -0.0125329, -0.0207889, -0.0478776, 0.00670024, -0.00510712, -0.00411626, 0.026292, -0.000404464, -0.00930195, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0947937, 0.0378741, 0.0376514, -0.0172005, 0.0129996, -0.0312773, 0.0513173, 0.00963456, 0.0507877, -0.0204445, 0.00777349, 0.0393754, 0.058835, -1.07172, 0.0212838, -0.0223187, -0.0826702, 0.0548555, 0.0433634, 0.0214364, 0.0226821, 0.0112825, -0.0783626, 0.0107729, 0.0556142, 0.0153335, 0.0147153, 0.0327069, 0.0319434, -0.0168213, -0.0901462, 0.0912605, 0.0487227, -0.0176531, -0.0144453, 0.0113559, 0.0801996, -0.0130964, -0.0253788, 0.0238591, -0.00273918, -0.0274435, -0.0268253, -0.0155129, 0.0188467, 0.0283852, 0.00381021, -0.0060986, -0.0157776, 0.0151329, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.236667, 0.0217327, 0.0961016, -0.0860911, -0.0538118, -0.0940888, 0.0118218, -0.0158617, -0.167394, -0.458569, -0.00165716, 0.0787979, -0.105609, -0.0498574, 0.198722, 0.0830129, -0.404822, 0.0507795, 0.0145466, 0.00343944, 0.0718483, 0.155001, -0.0757487, -0.218226, 0.175006, 0.0501895, 0.0599304, -0.0864215, 0.000209375, -0.0585608, -0.283413, 0.124071, -0.139772, -0.0324328, -2.49922, 0.381085, -0.0812795, -0.00127184, -0.131931, -0.167437, -0.0952938, 0.00102788, -0.0629529, 0.0526138, -0.431546, -0.0469713, 0.192164, -0.108329, 0.05167, 0.10709, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.912842, -1.93439, -0.755438, -1.18454, -0.899518, -1.44267, 0.0763976, -0.29454, -0.899745, -0.582776, 0.462914, -0.0989079, -4.12109, 0.448558, 0.120589, 0.605945, 1.76974, -3.12317, -0.811643, 0.307298, -0.391524, 0.0475524, -0.603239, -0.0660639, -1.46889, -1.18127, -2.56329, -0.289555, -0.0366659, 0.234657, -0.832153, 0.689344, 1.77372, -0.548878, -0.589327, 0.635358, -1.69571, 0.133208, -2.1331, -1.88766, -0.488661, -1.018, -0.798981, 0.471432, 0.140066, -3.63333, 0.419544, -2.30035, -0.0963147, -1.34624, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0244775, -0.0187852, -0.00413599, -0.00393064, -0.0112805, 0.0511191, -0.00409766, -0.00828047, -0.00509975, 0.00258534, 0.00570281, 0.0272436, 0.0255486, -0.158767, 0.0832071, -0.000476821, -0.0605735, -0.00226249, 0.0958247, 0.00916384, 0.00264474, 0.0338204, -0.0523577, 0.0495072, -0.000348247, -0.00144428, -0.0154884, 0.00767292, 0.0148814, -0.0132412, -0.0157956, -0.0225658, 0.158025, -0.00248878, 0.00692398, 0.00679627, -0.0268579, -0.00465732, 0.000176073, -0.00352727, 0.000611897, 0.000756007, -0.00685694, 0.00045702, 0.00276794, 0.0123411, 0.0604515, 0.00587464, -0.00309287, 0.000387732, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0153319, -0.0761142, 0.0153552, -0.0705958, 0.000382962, 0.283185, -0.0808563, 0.16745, -0.0669273, -0.33577, 0.00123483, 0.456922, 0.174457, -1.12356, -0.266133, 0.0480015, 0.981271, 0.164536, 0.195804, 0.145682, 0.178577, -0.0691009, -0.031794, -0.15365, 0.0816411, 0.113618, -0.397702, -0.237545, -0.0169165, -0.0624405, -0.176585, 0.322811, -0.116773, -0.107211, 0.0323974, 0.252949, 0.184957, 0.0645982, 0.00692965, 0.0256673, 0.191273, -0.0999088, 0.00129849, 0.109724, -0.118934, 0.0182882, 0.0126665, -0.248069, -0.39128, -0.167833, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.311409, 1.21654, -1.56223, -0.779191, -0.319205, -1.81302, 0.490326, -1.14337, 0.93568, 1.05753, -0.728093, 0.0831378, 0.618117, -0.0458155, 0.790801, -1.99609, -0.389011, 0.378418, -0.264313, 0.268159, 0.668754, -0.404622, 0.287599, -0.556831, 1.54464, -2.00819, -2.55612, -2.6061, 0.0220928, -0.285784, -1.31475, 0.941117, 2.59923, 0.386473, 0.711182, -0.328683, 0.846011, -1.24178, 0.822046, 0.570562, 0.899135, 0.0358904, -0.933297, -0.109469, 0.221186, -0.81945, 0.0878435, 1.41974, -0.762075, 0.741666, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.164016, -0.218194, 0.0044117, 0.0350279, -0.055459, 0.138164, -0.218066, 0.0154572, 0.0829462, 0.0293349, 0.0589587, -0.00404776, 0.031788, -1.76091, 0.0865706, -1.24957, -0.45736, -0.142706, -0.252384, -0.0677601, 0.0492024, -0.040515, 0.195312, 0.22967, 0.0164208, -0.128295, -0.0288299, -0.032432, -0.0185707, 0.00646946, -0.0303664, -0.12358, 0.552547, -0.0283874, 0.150632, 0.0250886, -0.38092, 0.04155, -0.060001, -0.00441836, 0.0841029, -0.0472774, 2.33923e-06, -0.053133, -0.0394548, 0.0509593, -0.0376707, -0.0959278, 0.0209807, 0.0810693, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0340645, 0.129567, -0.254698, -0.0360564, -0.0232624, -0.116346, 0.0484182, -0.108228, 0.0843986, 0.0711714, -0.0377304, 0.0332786, 0.055055, 1.63855, 0.032545, -0.119091, 0.00352319, 0.0430024, -0.0154465, 0.0391224, 0.0611402, 0.0827748, 0.012589, -0.00675787, 0.137884, -0.0789687, -0.20825, -0.280488, 0.0132607, -0.0312786, -0.153903, 0.0894347, 0.224941, 0.0303358, 0.018816, -0.062106, 0.116807, -0.066618, 0.0426308, 0.043809, 0.0535386, -0.0786438, -0.0793168, 0.00985263, 0.0326819, -0.0106666, 0.00537743, 0.115842, -0.634412, 0.0865105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.134169, -0.131721, -0.127073, -0.0183548, -0.806306, 0.577847, 0.453213, 0.0146746, -0.192321, -0.963922, -0.900389, -0.306895, -0.884472, -1.23919, 0.454021, 0.0605787, -4.5777, 0.527298, -0.375371, 0.257885, -0.0701051, -0.306694, -0.0822203, 0.27757, 0.139682, 0.3198, 0.161103, -0.481797, -0.00984522, 0.054756, -0.503911, 0.828075, 1.09586, -0.823629, 0.546283, 0.209662, 0.0813088, -0.356954, -0.234332, 0.264416, 0.373524, 0.138263, -0.196298, -0.0862998, -1.18769, 0.143746, 0.354115, 0.3471, -0.0315256, -0.408445, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0333344, -0.142113, 0.0545333, -0.054725, -0.100239, -0.235062, 0.0114255, -0.0140442, -0.0831892, -0.333998, 0.0398908, 0.137394, 0.211497, -0.147731, -0.0205809, -0.0071075, 0.362035, 0.0837296, 0.102061, -0.0181184, -0.0573538, 0.222999, 0.0356619, 0.143972, 0.0272016, -0.0353422, -0.154718, 0.0339213, 0.00597503, 0.00379215, -0.0693494, 0.0523165, 0.0277668, -0.517671, -0.0973582, 0.0776056, 0.0149324, -0.014229, -0.0269256, -0.535525, -0.0270749, -0.0114139, 0.0419661, -0.0336658, 0.0138358, -0.0180215, -0.153756, 0.0176288, -1.40741, 0.0569768, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-4.36414, 0.232655, -0.933917, -0.336884, -0.241696, -0.0511536, 0.199848, 0.000140902, 1.06298, -0.426417, 0.619423, 1.24314, 0.75808, -0.190621, -0.550444, 1.15712, -7.44772, 1.79592, 0.490897, -0.395391, -2.10494, 1.02347, 0.25312, 0.630596, -0.48113, 0.647416, -0.703596, -0.977305, 0.0411539, 0.134335, -0.980724, 1.55857, -8.57259, 0.706988, 0.684759, 0.387611, -2.60371, -0.663775, -0.444831, 0.0149362, 0.928222, 0.533671, -0.113454, 0.258219, -7.48532, 0.177657, -4.71002, 0.951732, -0.52047, -0.0863061, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0154108, 0.0781994, -0.0110771, 0.0351249, -0.0566218, 0.0216918, -0.123121, -0.0179859, -0.176101, 0.0561789, 0.00279031, 0.157558, 0.0557174, 0.968038, 0.105367, 0.0521196, 0.3252, -0.0107507, 0.153844, 0.0697811, 0.0682607, 0.271895, 0.0245924, 0.0394035, -0.128342, 0.0357865, -0.0942249, -0.0175665, -0.0261822, 0.0301137, -0.0595658, 0.0780462, 0.166889, -0.0687616, -0.165216, 0.0351968, 0.0301228, 0.0713989, -0.0158115, -0.00166718, -0.0625997, 0.0508779, -0.130264, -0.0396914, 0.00648072, -0.0232784, 0.167893, 0.0257187, -0.0224845, 0.155146, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00543683, -0.279402, -0.0149697, 0.00660854, -0.0959905, -0.00956715, -0.064029, 0.0105886, 0.104578, -0.0430467, 0.0210722, -0.0252195, 0.13722, -0.250355, 0.191811, 0.0286778, -0.0254097, 0.0441613, 0.0346253, -0.0112783, -0.0303964, 0.037594, 0.00958984, 0.134612, -0.0698438, -0.115054, -0.00953476, -0.019705, 0.0156583, -1.90453, -0.0443359, -0.0772139, 0.107798, 0.0300511, 0.00359712, 0.0271675, -0.0373775, -0.0232039, -0.0624459, 0.00527232, 0.00503453, -0.0254295, 0.0316107, 0.0356706, -0.0101497, -0.0138443, 0.161677, -0.044059, 0.00168178, 0.152129, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.670166, 1.12357, -0.378797, -0.171346, 0.481274, -1.19534, 0.894133, -0.682925, 0.869895, 1.83885, 1.44477, 1.97564, 0.363368, -0.382683, 0.989072, 0.233388, -4.9559, 1.5792, -1.06955, 1.19496, 2.05282, -0.623286, 0.784238, -2.09322, 1.72642, -0.24295, -0.42756, -1.59541, -0.0122853, 0.601019, -2.02735, 2.59981, 3.34246, -6.18645, 0.250166, -0.66818, 1.9778, 0.258024, 0.657789, -0.686895, 0.667627, -0.441963, -0.137112, 1.20824, -1.89438, 0.300553, -0.917798, 1.4502, 0.520096, 0.518662, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0948205, -0.441589, -0.0500001, 0.0211725, -0.597599, 0.13788, -0.0297396, 0.0388057, -0.14679, 0.0772723, 0.0638456, -0.0971806, -0.146301, 1.65785, -0.107101, 0.0283756, -1.07285, -0.0778035, 0.0363209, -0.0796365, 0.175635, 0.13938, -0.389816, 0.385684, 0.012902, 0.00694645, -0.203212, -0.140741, -0.000219947, -0.0021842, -0.0615142, -0.116907, 0.0308523, 0.0439695, 0.198099, -0.077479, 0.0859085, -0.0061486, 0.0170556, -0.0230142, 0.0415396, 0.067818, 0.0324175, -0.141866, -0.00333263, 0.0608921, 0.0702907, -0.0636471, -0.182517, 0.12709, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0584585, 0.104036, 0.0688731, -0.0266464, 0.0441542, 0.0125827, 0.0941346, 0.0277657, 0.0708956, -0.0203524, -0.0522283, 0.0934733, 0.160782, -0.312079, -0.00820623, -0.047884, 0.23385, 0.107443, 0.0193554, 0.0489908, 0.0371176, 0.0443423, -0.00793252, -0.00961495, 0.118854, 0.0590874, 0.0309531, 0.0724503, 0.0332306, -0.0330579, -0.18493, 0.112929, 0.0429623, 0.0412911, -0.0772363, 0.0334547, 0.0535856, -0.0362087, -0.0652333, 0.0520815, -0.122204, -0.0552548, -0.0453773, -0.0323922, 0.0453782, 0.0620116, 0.0575762, 0.0490232, -0.0354093, 0.0666633, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.272064, 0.0050209, 0.12547, 0.0545317, -0.115638, 0.123417, -2.35972, -0.10114, -0.274696, 0.177977, 0.161416, -0.0508446, 0.00954908, -1.73837, 0.00829101, -0.015852, -0.00511574, 0.474278, 0.352744, -0.0675566, 0.181888, 0.336612, -0.0423793, 0.181862, -0.0124973, -0.042285, -0.147827, -0.0526162, -0.0459354, -0.455611, -0.233299, -0.187242, -0.416631, 0.0119479, -0.0653088, 0.117289, 0.0242018, 0.0676456, 0.06114, -0.0225303, -0.490337, 0.201653, -0.173913, 0.0482663, -0.0255633, 0.0305105, -0.13838, 0.368778, -1.48773, 0.324353, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.182821, 0.348526, -0.0618761, -0.145008, -0.0247096, 0.223244, -0.0530427, -0.295013, 0.0685783, 0.0425703, 0.0302481, -0.0140249, 0.110783, 0.91447, 0.0805797, 0.00548485, -0.731067, 0.137952, 0.113618, 0.0461002, 0.1465, 0.0409918, -1.10832, 0.258314, -0.401459, 0.113778, -0.0627072, -0.105111, -0.0438661, -0.0465584, -0.276299, 0.500353, 0.132738, 0.0687608, -0.0590173, -0.0502332, -0.205429, -0.0806843, -0.0992292, -0.576503, -0.0292142, -0.101149, -0.0461852, -0.070056, -0.234652, -0.00712008, 0.175677, 0.0340669, 0.01039, -0.955353, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00574534, 0.0174505, 0.00823736, -0.0205825, -0.025444, -0.0636697, 0.0135763, -0.0162142, -0.00920626, 0.021179, -0.0355348, -0.0221683, -0.0186349, -0.0260795, -0.0273032, 0.019215, 0.0155749, -0.0458928, -0.0123694, -0.0476085, -0.0427274, -0.0603579, 0.0432385, -0.0500227, 0.0120433, 0.0150069, -0.00575103, -0.0505779, -0.00538401, -0.0211709, -0.0835034, -0.0210836, -0.00579467, -0.010618, 0.00691491, -0.0582471, -0.0321992, -0.0463144, 0.0166432, -0.0106154, -0.0494861, 0.00707492, -0.00164387, -0.0361766, -0.0273302, -0.000779469, -0.0179518, -0.0925022, 0.012932, -0.0095603, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.36531, 0.501902, -0.245464, -0.121591, -0.922377, -0.270389, 0.277503, -0.526656, 0.263144, -0.705467, 0.774439, 0.14827, 0.839278, -0.0393303, 0.56872, -2.33639, -3.20442, 2.19548, -0.490325, 0.177987, 0.724249, -3.01126, -0.0648737, -0.450932, -0.248917, -0.448852, -3.93942, -0.481624, -0.0317077, -1.15767, -1.51555, 0.473277, 2.40339, -2.84543, -0.34916, 0.90346, -2.17828, 0.47529, 0.35041, -1.29863, -0.335606, -0.252818, 0.389997, 0.173538, -1.58891, -0.271877, -1.18747, -0.787887, -0.0487669, 1.12385, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0466498, -0.0790913, 0.00322579, -0.0192459, -0.0701031, 0.140652, -0.00777316, -0.00164592, 0.0129095, -0.0200882, -0.045406, 0.0513314, 0.0258271, 0.592618, 0.0213045, 0.000583976, 0.0299037, 0.0570453, 0.124826, 0.0216232, 0.00754163, -0.0399979, 0.0915789, -0.0551116, -0.217124, 0.0304989, -0.0699134, -0.0425094, 0.00438888, -0.0340779, -0.042548, -0.025483, 0.00746704, -0.0159298, -0.0470671, 0.0293712, -0.123123, -0.0289644, -0.0905544, 0.00364703, -0.0411031, -0.0693569, 0.0145095, -0.0891062, 0.00155143, 0.00651407, 0.00484864, 0.0825966, -2.4424, 0.057812, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-1.73714, -0.294682, -0.079328, -0.0294241, -1.43671, 0.00239785, -0.592491, -0.0845896, 0.232373, 0.0279705, -0.0215978, -0.370185, -0.318121, 0.201554, -0.239868, -0.808664, -6.01583, -0.341997, 0.207962, 0.0167317, 0.0620036, 0.0764778, 0.30327, 0.0169994, 0.030579, 0.037268, -0.0966652, -0.435034, -0.0237068, -0.0907104, -0.0525368, 0.053248, 0.395733, -0.373671, 0.195629, 0.0116096, 0.137841, -0.0875781, 0.0347446, -0.00601306, -0.0723557, -0.21912, -0.0472595, -0.0332816, -0.049932, -0.190827, 0.234995, -0.414175, 0.0215693, -0.0300216, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-1.57971, -0.141799, 0.122533, -0.266208, -3.55728, -2.229, 0.217454, -0.475642, -0.611795, -0.222564, 0.114433, 0.38599, -5.05669, -0.0197712, -2.20136, -1.40236, 0.0472978, -0.684547, 1.99329, -2.42195, -3.53269, -1.43803, 0.334979, -0.0176636, -0.659068, -0.597323, -1.73066, -0.929035, -0.0285235, -0.0374966, -0.494183, 1.31442, -0.798022, -0.778086, 0.63873, 0.438119, 0.326959, -0.169519, 0.258997, 0.428836, -0.636027, -0.0311057, -0.33552, 0.0271565, -2.10682, -2.04409, -2.15375, -0.604533, -1.02672, -0.0158975, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.105565, -0.20163, 0.0367913, -0.186291, -0.119046, -0.189649, -0.427981, -0.070253, -0.125724, -0.884951, -0.00475639, 0.133016, 0.0578366, 0.0843263, 0.168571, -0.00353073, -0.0343956, 0.147231, 0.0103426, 0.00247469, 0.0421845, 0.102744, 0.176968, 0.332263, 0.00109935, 0.0523672, -0.770292, -0.0363813, -0.0166153, -0.275199, -0.21096, 0.266486, -0.250248, 0.0447803, -0.0732872, 0.0436498, 0.224171, -0.0255253, -0.0533559, 0.0415497, -0.0793143, 0.0955697, -0.302971, 0.130419, -0.0375034, 0.0704915, 0.0875236, -0.0143581, -0.568048, -0.384479, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.104783, 0.0551895, 0.0183107, -0.237466, -0.13146, -0.0889406, -0.0824353, 0.00712216, -0.067343, -0.114315, -0.019112, 0.0569511, 0.139005, -0.488838, 0.161824, -0.0514162, -2.26975, -0.010342, 0.0679362, 0.026138, -0.071463, -0.84675, 0.0693023, 0.233992, 0.0458268, 0.0394858, -0.830281, 0.00161283, 0.00475367, -2.49622, -0.020545, -0.0619091, -1.10106, 0.0283019, -0.136847, 0.027672, -0.0299334, 0.0270566, -0.0033933, 0.0222381, -0.0287313, 0.0234348, -0.876697, -0.00803294, -0.0193395, -0.0312091, -0.037166, -0.130647, -0.635582, 0.0388194, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0177645, 0.119796, 0.0506167, 0.00391343, -0.0928419, -0.150754, 0.07399, 0.0160851, 0.000451114, -1.61242, -0.0091665, 0.0159249, 0.164908, 0.0626971, -0.0656443, 0.0537075, 0.271716, -0.0663914, 0.249078, 0.0227344, 0.0791285, 0.214198, -0.265653, 0.0650767, -0.145491, -0.0652902, -0.0900602, 0.0178419, 0.00854897, 0.0651934, -0.0660416, 0.039284, 0.183361, -0.0525257, -0.1138, 0.136156, -0.397772, 0.0258236, 0.0744765, -0.691637, -0.150065, -0.055096, -1.41295, -0.0989956, -0.0258025, -0.00438213, 0.093249, 0.129894, -0.068694, 0.0279002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.145194, 0.267471, 0.177856, -0.066636, 0.114681, 0.0398737, 0.228763, 0.0748215, 0.182467, -0.0458531, -0.144412, 0.235518, 0.407207, -0.0405057, -0.0143461, -0.125645, 0.667515, 0.27151, 0.0625998, 0.127747, 0.0986974, 0.097163, 0.0420122, -0.0193354, 0.283089, 0.151582, 0.0782278, 0.189919, 0.0317566, -0.0816408, -0.478307, 0.2603, 0.15232, 0.116898, -0.225699, 0.0900437, 0.110918, -0.0920472, -0.169074, 0.138655, -0.372722, -0.144585, -0.112974, -0.0989958, 0.118094, 0.154203, 0.197078, 0.130284, -0.110066, 0.187751, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-1.91803, -0.291365, -0.0287233, -2.2854, -0.447402, -0.549387, 0.121527, -0.128481, -0.0620184, 0.278666, -0.0556456, -0.352386, 0.386545, 2.05106, 0.0764744, -0.338989, 0.812821, 0.099188, -0.250088, -0.246655, -0.135953, 0.181045, -0.16561, 0.154134, 0.0893089, -0.225041, -0.541031, -0.0657395, 0.00224399, -0.0425039, -0.12099, -0.285287, -1.58296, 0.00972699, -0.533882, -0.197989, -0.116033, 0.0051144, 0.0938912, -2.78848, 0.0661115, -0.133502, -1.08657, 0.124644, 0.00923678, 0.0297015, 0.123444, -0.416493, -3.26088, 0.26748, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.197836, 0.737045, -4.3746, -0.452796, 0.534183, -1.18605, 0.708202, -0.610886, -0.105039, 0.92585, 0.937828, -1.21831, 2.01152, -1.44793, -1.63183, 1.31674, -9.29117, 1.83469, 1.15199, 0.310973, 1.07918, 3.37113, 0.611127, -0.150202, -0.772395, 0.225136, -1.12697, -1.50766, -0.0275733, 0.308928, -1.70322, 1.70757, 0.283941, -3.81543, 0.0177448, 0.663176, -0.444753, -0.26624, 0.103405, 0.377903, 0.184203, 0.647216, -0.324064, -0.838146, 0.33503, -0.974943, -0.0491812, 1.08616, -0.546284, 0.23297, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0978169, 0.081665, 0.00859469, -0.13403, -0.0311976, -0.024116, -0.151476, -0.0872239, 0.00662188, -0.184653, -0.0543021, 0.128318, 0.12193, 0.373107, 0.0269641, 0.00824512, 0.0744901, 0.227296, 0.0309162, 0.0352381, -0.0137325, -0.18835, 0.303082, -0.0129443, -0.0354542, -0.0842245, -0.202739, -0.0603496, 0.0405794, -0.503064, -0.0936106, -0.0574276, 0.398186, 0.0105767, -0.00119496, -0.0557166, 0.0492075, 0.0420602, -0.100275, -2.19383, 0.0421416, -0.0332658, -2.22122, -0.0113205, -0.0379569, -0.0195882, 0.0141159, -0.111314, -0.840987, -0.0404652, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0332601, -0.215001, -0.0502811, -0.044491, 0.0919335, 0.0929356, -0.312031, -0.0430778, -0.144701, -0.254587, 0.00684034, 0.0118517, 0.132503, -0.182531, 0.141691, 0.0216497, 0.328844, 0.0017829, 0.118445, -0.030153, 0.077549, 0.293852, -0.124419, -0.122, -0.307025, -0.0826321, -0.276638, -0.0131884, 0.00718599, -0.0613894, -0.0351163, -0.161896, 0.210465, 0.00254536, 0.180567, 0.069311, 0.0450809, -0.0575776, 0.0605707, 0.00110596, 0.0411386, 0.103275, 0.120026, -0.00409792, -0.00622104, 0.00462257, 0.0631818, -0.0461031, -0.0596653, -1.22522, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-3.30339, 0.583762, -1.10553, 0.0297347, -0.544593, -1.10016, 1.40809, -0.970653, 1.05416, 1.88998, 1.38357, -0.860655, -0.153546, -0.535423, -1.76496, 0.423575, -2.38337, -0.562742, 0.0433839, 1.1559, -1.26841, -5.70335, 0.793956, -0.238739, 0.185553, 0.705871, 0.154658, -1.41127, -0.00208014, -0.476258, -2.37085, 0.870228, 2.92451, 0.204499, -0.553834, 0.0599711, 0.785814, 0.00824317, -0.157475, 0.0840446, 0.679572, 1.06451, -0.110567, 0.5669, -2.14796, 0.118534, 1.30551, 2.08083, -0.0383141, 0.14121, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0668234, -0.237088, 0.0359558, 0.0905643, -0.812542, -0.255138, -0.508653, -0.0564773, -0.305087, -0.0880428, -0.0201616, 0.220241, 0.031309, 0.0142881, 0.141246, 0.169191, -4.41984, -0.176963, -0.152251, 0.0395917, -0.0444679, -0.430282, 0.197598, 0.556579, -0.189045, 0.0416484, -1.15496, -0.205892, 0.0113956, -1.15997, -0.0338692, 0.181409, 0.21014, -0.0212761, -0.127548, 0.0622072, 0.105738, 0.0633277, -0.00768166, 0.0164492, -0.184875, 0.10833, -1.28848, 0.0422734, -0.172085, 0.0358351, 0.244614, -0.0101336, -0.115372, -0.307832, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0469681, -0.0482588, -0.00622907, 0.00897092, -0.177337, -0.0364372, -0.0596747, -0.0429863, 0.0375607, 0.015212, -0.0556293, 0.0717938, 0.0209079, -1.8904, 0.108925, -0.0449854, -0.541152, 0.0547433, -0.0172261, 0.0323758, 0.0586542, -0.0479659, 0.0890952, 0.196503, 0.0237353, 0.00611113, -0.0519805, -0.00612833, 0.00479463, -0.00151377, -0.106623, 0.0811336, -0.111309, 0.00236022, -0.0370781, 0.00883038, 0.0203212, -0.0227826, -0.01635, 0.0257681, -0.144318, -0.00370385, -0.0294718, -0.0149897, 0.0137506, 0.0412701, 0.086646, 0.0517121, -0.533206, 0.0259859, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0131071, -0.0977562, -0.00472974, -0.00347089, -0.0773172, 0.0325706, -0.030344, -0.0640302, -0.025346, 0.0393096, -0.037748, -0.0806879, 0.0347824, -0.0667865, 0.0326808, -0.00451392, -0.1511, -0.023217, 0.166083, 0.0159795, 0.0044698, -0.0866026, -0.142498, 0.111886, -0.171382, -0.0535259, -0.0330108, 0.00280808, -0.0341349, -0.00671037, -0.0250026, 0.0230989, 0.0880759, -0.0171817, 0.0325878, 0.0132058, 0.0678575, 0.0196903, -0.0170916, -0.00269929, -0.0477977, -0.0453852, 0.00179979, -0.0556421, -0.00967321, 0.000713364, 0.134009, 0.0173581, -1.0055, -0.363184, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.17131, -0.08458, -0.0418596, -0.0352089, 0.0780991, 0.0298368, -0.00174063, -0.0259883, -0.0581726, -0.0334867, -0.0417741, -0.011197, 0.0588903, -0.0475893, 0.144323, -0.00538225, 0.17206, -0.0411194, -0.0105379, -0.0354084, 0.0322185, -0.172957, -0.115803, 0.110878, 0.0821978, -0.0494375, -0.0380648, 0.0420068, 0.00784141, 0.00489288, -0.0468657, 0.0805272, -0.28738, 0.0026959, 0.0316654, 0.0160083, -0.116599, -0.0302253, -0.0731876, -0.0198668, -0.0557603, 0.00521864, -0.0260671, 0.0528269, -0.00355989, -0.0126928, -0.0337587, 0.0147573, -1.16125, -0.0355815, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [1.29968, 1.61381, -5.61527, 0.169657, 0.0572476, -0.55676, 0.136106, -1.11525, 0.682704, 0.749697, 0.657964, 0.503884, -0.354155, -0.965878, -1.011, -0.464147, 0.537073, -0.0161356, -0.449256, 0.832111, 0.445588, 0.296039, 0.352398, 0.627724, 1.27756, -2.00556, -1.19676, -3.4114, -0.0412708, -0.248279, -1.47082, 0.516119, 2.60467, 0.207507, 0.312017, -2.43294, 1.48706, 0.073449, 0.439093, 0.228571, 0.60875, -2.08336, -0.57264, 0.10202, 0.489493, 0.516368, 0.152291, 0.793884, -0.163586, 1.47555, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00553502, -0.0245234, 0.0141801, -0.0165301, 0.0448721, 0.101895, -0.12619, -0.00570562, -0.0722891, 0.0457881, 0.0185793, 0.0179171, 0.0623294, 0.336159, -0.00732771, 0.0124065, 0.249372, 0.139755, 0.165522, 0.0157896, -0.0166547, -0.0424483, 0.0993118, 0.065964, 0.0885008, 0.0397192, -0.0792015, -0.0309825, 0.0145761, -0.0028326, -0.0658539, 0.0198885, 0.12359, 0.0138702, 0.0216207, 0.0193196, -0.0325875, -0.0130412, -0.0123963, -0.0534388, -0.0836718, 0.0459641, 0.0175946, 0.0268082, 0.0160494, 0.0157401, 0.0158919, 0.105273, -0.541376, -0.0217315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.2075, -0.375012, -0.0343038, -0.00157732, 0.148836, 0.0493773, -0.583362, -0.0257827, -0.215347, -0.0101018, -0.143252, 0.101234, 0.0418974, 0.164639, -0.0417583, 0.0254606, -0.305052, 0.0125695, 0.0588049, -0.00918611, 0.0377718, -0.0168373, 0.456512, 0.0995877, -0.121592, -0.0048513, -0.0304011, 0.0451062, -0.0135199, 0.0151827, -0.106533, 0.158518, 0.0982386, 0.0248091, -0.977317, 0.00585554, -0.375783, -0.0384439, -0.07957, 0.0400931, -0.283112, -0.028536, -0.0604227, -0.0226889, 0.0190849, -0.0953438, -0.0941874, 0.0339419, -0.170713, -0.0692725, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0556457, -0.130285, 0.0410483, -0.010125, -0.0695211, -0.137962, -0.0668256, -0.0251664, 0.0243701, -0.0107999, -0.0290782, 0.0347083, 0.0568238, 1.23306, 0.0394104, -0.0308587, 0.146249, 0.027713, 0.0561028, -0.0210745, 0.0493129, -0.0626726, -0.136062, 0.171223, 0.0984693, 0.00586778, -0.13606, -0.0347207, -6.67597e-05, -0.0566174, -0.0436823, 0.0968129, -0.0301952, 0.0221049, -0.0482821, 0.027801, 0.0830409, 0.0284331, 0.0105205, 0.000862171, -0.0461196, 0.033594, 0.00510617, 0.0499842, -0.0208329, 0.0226163, 0.100216, -0.021521, -1.43353, -0.0096646, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.069031, 0.179743, -0.015564, -0.0144464, 0.106863, -0.0466807, -0.531641, 0.02039, -0.0278886, 0.0781126, 0.0134981, -0.0312746, -0.0315292, 1.17197, -0.0452076, 0.0137876, 0.450858, -0.00422906, -0.0186547, 0.00928347, -0.0184217, 0.248236, -0.0229766, 0.00395466, 0.0157622, 0.0349091, 0.0149215, 0.0137575, -0.0428298, -0.0345099, -0.0398913, -0.10934, 0.0674287, 0.0248883, -0.156223, -0.0310667, -0.245621, 0.0082392, -0.0221347, 0.010755, -0.0278086, 0.0122943, -0.0362756, -0.0023555, 0.0056806, -0.0392459, -0.0589829, -0.0485623, -0.00153612, 0.108168, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0380369, -0.580266, 0.011483, -0.0143166, 0.0290425, -0.00566892, -0.544955, 0.0107963, -0.0902663, 0.000936195, -0.340911, 0.0505111, -0.0105287, -0.0433341, -0.0896619, -0.0234929, -0.605726, 0.0317302, 0.0242908, 0.0146868, 0.0386746, -0.0211301, -0.0538678, 0.0563051, -0.0420617, 0.00420177, 0.0071399, 0.0135405, 0.0499374, -0.0292703, -0.0456727, 0.0194885, 0.261688, -0.00394304, -1.97821, -0.00341347, 0.0560567, 0.0105465, 0.000465311, 0.0165253, -0.0450004, -0.0360439, -0.0242854, -0.022221, 0.0101647, 0.0169255, -0.0488017, -0.0881409, -0.00344577, 0.049271, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.478399, 1.11213, 0.0555435, -0.247925, -0.317403, -0.4399, -0.113443, 0.163131, 0.435437, -2.40153, -0.085367, 0.238746, -0.43988, -1.57704, -0.528578, 1.09933, -2.10832, 0.709644, -0.908777, 0.172288, 0.012581, 1.36782, 0.0609381, -0.0516084, -1.14676, -0.221348, 0.357058, -0.952722, -0.00321124, 0.042836, -0.937659, 0.480657, 1.62654, -0.699657, 0.628552, 1.43311, 0.586832, -0.156685, -0.448598, -2.13141, 0.729117, -0.303936, -0.0355377, 0.372791, 0.144561, 0.103603, 0.786449, 0.807925, -2.07225, 0.230852, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0371963, 0.660953, -0.42978, -0.0241507, -0.100381, -0.0968207, -0.264351, -0.14703, 0.563504, 0.0742931, 0.0939806, 1.04325, 0.36283, -4.19494, -0.66932, 0.153644, 0.0598868, 0.567599, 0.313719, -0.431178, -0.41652, 1.58172, -0.118457, -0.278152, 0.570539, -0.69249, -0.0426958, -0.895395, 0.0332382, 0.176845, -0.850942, -1.24184, 1.39626, -0.0289744, 0.149766, 0.400705, 0.976197, -0.174827, -0.0649834, -0.828533, -0.166292, 0.167116, -0.0350803, 0.465406, -0.0439736, -0.177513, 0.36893, 0.925106, 0.0673907, 0.439352, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0186377, -0.996702, 0.064135, 0.0409475, -0.983195, 0.44996, 0.691132, 0.17436, 0.439962, -0.913194, -0.107193, 0.513493, 0.606698, 0.940793, -0.0909874, 0.279058, -0.3825, 0.793571, -0.0682184, 0.0348774, 0.272343, -0.0688781, 0.291176, 0.472839, 0.0774415, -0.204483, 0.172016, -0.449679, 0.0224675, -1.15251, -0.69154, 0.505536, 0.619775, 0.0358183, 0.523416, -0.26602, -0.374945, -0.0267528, -0.505425, -1.66025, 0.426467, 0.00182986, -2.2084, 0.341686, 0.104655, -0.465889, 0.324731, 0.690344, -0.169488, 0.335948, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0558881, -0.195573, -0.0212637, 0.00418723, -0.0155424, -0.0598023, -0.191016, 0.0233098, -0.12664, -2.45246, 0.109031, 0.296543, 0.117737, 2.27797, 0.0959276, 0.0859297, 0.543081, 0.181389, 0.260317, 0.0842646, -0.124854, 0.290568, 0.179738, 0.0267668, -2.28973, -1.44629, -0.00538957, -0.0476232, -0.0408108, -2.5635, -0.121463, 0.00281452, 0.316743, -0.0449353, -0.216359, 0.029123, 0.17077, -0.0404921, -0.26613, -3.00846, -0.0879433, 0.0122444, -0.097148, -1.46536, 0.0176542, -0.0239015, 0.0417313, 0.010873, 0.00340917, -0.00784347, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0247632, -0.106122, -0.0346297, -0.342825, -0.41731, -0.427519, -0.334916, -0.130929, 0.131995, -1.27981, 0.118321, -0.0456248, 0.364887, 1.70257, 0.0679688, -0.00716185, 0.43781, -0.134613, -0.0282014, -0.0735231, 0.0173761, 0.431666, 0.0126955, 0.569945, -0.0103389, -0.171156, 0.0590178, 0.00283023, -0.0288109, -0.0958176, -0.161364, 0.36612, 0.329281, 0.0449298, -0.121514, 0.00193557, 0.317925, 0.121165, -0.116266, -1.05946, -0.0193103, -0.00693385, -0.0130499, 0.0197165, 0.0180292, 0.0580752, -0.100067, 0.0193245, -0.492618, -0.314515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.0239041, 0.00795744, 0.00209678, -0.0113519, -0.0416126, 0.0599743, 0.00394191, -0.0211539, 0.000619299, 0.00779789, -0.00346354, 0.0294715, -0.000978749, 0.268564, 0.0422202, 0.000435541, -0.137534, 0.00595717, 0.0271909, 0.00730356, 0.0024782, 0.0265516, -0.0271277, 0.0329048, -0.0113405, -0.0887782, -0.00641681, 0.012123, 0.0443226, -0.00185712, -0.0246771, 0.00991751, -0.0242694, -0.00427057, 0.012446, 0.00376881, 0.00462286, -0.0321166, -0.0614338, -0.00501834, -0.0243886, -0.0322684, -0.00739006, -0.119823, 0.00256954, 0.0115151, -0.00459238, 0.00686865, 0.00174597, -0.0144685, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-2.98325, -0.327786, -0.385298, 0.504421, -0.0536664, -0.465205, 1.80169, -1.52517, 1.68196, -0.276319, 0.608534, 0.435637, -2.64781, -0.390487, -2.93494, -0.0715481, -5.78253, 1.00365, 0.985976, 0.730504, 1.11946, -1.22295, 0.542494, 0.187622, 0.695906, 0.540859, 0.028504, -0.718279, 0.0113387, 0.00439653, -1.94349, 0.622207, -3.23432, -1.11367, 1.13216, -1.28693, 2.44503, 0.488007, 0.946854, -2.18063, 1.5155, 0.262788, 0.182595, -0.531642, -4.5861, 0.978881, -0.589485, 0.152665, 0.0901683, 2.65604, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.03093, 0.01807, -0.01591, -0.00506, 0.1103, 0.001422, -0.10455, 0.0157, -0.1231, 0.02545, 0.01253, 0.02782, 0.005714, 1.6045, -0.01059, 0.022, 0.1284, -0.01058, 0.0853, -4.99e-05, 0.005585, 0.2278, -0.08746, 0.01918, -0.0369, 0.01942, 0.01055, 0.012566, 0.0441, -0.04272, -0.03436, 0.0571, 0.1539, 0.02055, -0.075, -0.01569, -0.04465, -0.003813, -0.01303, 0.005905, 0.02069, -0.012535, -0.02078, -0.04788, 0.0067, -0.005108, -0.004116, 0.02629, -0.0004044, -0.0093], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0948, 0.03787, 0.03766, -0.0172, 0.013, -0.03128, 0.05133, 0.009636, 0.05078, -0.02045, 0.007774, 0.03937, 0.05884, -1.071, 0.02129, -0.02232, -0.08264, 0.05487, 0.04337, 0.02144, 0.02267, 0.011284, -0.07837, 0.01077, 0.0556, 0.015335, 0.01472, 0.0327, 0.03195, -0.01682, -0.09015, 0.09125, 0.04874, -0.01765, -0.01444, 0.01135, 0.0802, -0.0131, -0.02538, 0.02386, -0.002739, -0.02745, -0.02682, -0.01551, 0.01884, 0.02838, 0.00381, -0.0061, -0.01578, 0.01513], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2367, 0.02173, 0.0961, -0.0861, -0.0538, -0.0941, 0.011826, -0.01587, -0.1674, -0.4585, -0.0016575, 0.0788, -0.1056, -0.04987, 0.1987, 0.083, -0.4048, 0.05078, 0.01455, 0.003439, 0.07184, 0.155, -0.07574, -0.2183, 0.175, 0.0502, 0.05994, -0.0864, 0.0002093, -0.05856, -0.2834, 0.1241, -0.1398, -0.03244, -2.5, 0.381, -0.0813, -0.001272, -0.132, -0.1675, -0.0953, 0.001028, -0.0629, 0.0526, -0.4316, -0.04697, 0.1921, -0.10834, 0.05167, 0.1071], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.913, -1.935, -0.7554, -1.185, -0.8994, -1.442, 0.0764, -0.2944, -0.9, -0.583, 0.463, -0.09894, -4.12, 0.4485, 0.1206, 0.606, 1.77, -3.123, -0.8115, 0.3074, -0.3916, 0.04755, -0.603, -0.06604, -1.469, -1.182, -2.562, -0.2896, -0.03665, 0.2346, -0.832, 0.6895, 1.773, -0.549, -0.5894, 0.6353, -1.695, 0.1332, -2.133, -1.888, -0.4888, -1.018, -0.799, 0.4714, 0.14, -3.633, 0.4194, -2.3, -0.0963, -1.347], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02448, -0.01878, -0.004135, -0.00393, -0.011284, 0.05112, -0.004097, -0.00828, -0.0051, 0.002584, 0.005703, 0.02724, 0.02554, -0.1588, 0.0832, -0.0004768, -0.06058, -0.002262, 0.0958, 0.00916, 0.002645, 0.0338, -0.05237, 0.0495, -0.0003483, -0.001444, -0.01549, 0.00767, 0.014885, -0.013245, -0.0158, -0.02257, 0.1581, -0.00249, 0.006924, 0.006798, -0.02686, -0.004658, 0.0001761, -0.003527, 0.000612, 0.000756, -0.00686, 0.000457, 0.002768, 0.012344, 0.06046, 0.005875, -0.003094, 0.0003877], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.015335, -0.0761, 0.01536, -0.0706, 0.000383, 0.2832, -0.0809, 0.1675, -0.06696, -0.3357, 0.001235, 0.457, 0.1744, -1.124, -0.266, 0.048, 0.9814, 0.1646, 0.1958, 0.1456, 0.1786, -0.0691, -0.0318, -0.1537, 0.08167, 0.11365, -0.3977, -0.2375, -0.01692, -0.06244, -0.1766, 0.3228, -0.11676, -0.10724, 0.0324, 0.253, 0.1849, 0.0646, 0.00693, 0.02567, 0.1913, -0.0999, 0.001299, 0.10974, -0.11896, 0.0183, 0.012665, -0.248, -0.3914, -0.1678], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.3115, 1.217, -1.5625, -0.7793, -0.319, -1.813, 0.4902, -1.144, 0.9355, 1.058, -0.728, 0.0831, 0.618, -0.0458, 0.791, -1.996, -0.389, 0.3784, -0.2644, 0.268, 0.669, -0.4045, 0.2876, -0.5566, 1.545, -2.008, -2.557, -2.605, 0.0221, -0.286, -1.314, 0.941, 2.6, 0.3865, 0.7114, -0.3286, 0.846, -1.242, 0.8223, 0.571, 0.899, 0.0359, -0.933, -0.1095, 0.2212, -0.8193, 0.0878, 1.42, -0.762, 0.7417], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.1641, -0.2181, 0.004414, 0.03503, -0.05545, 0.1382, -0.218, 0.01546, 0.08295, 0.02933, 0.05896, -0.004047, 0.0318, -1.761, 0.08655, -1.25, -0.4573, -0.1427, -0.2524, -0.06775, 0.0492, -0.04053, 0.1953, 0.2296, 0.01642, -0.1283, -0.02882, -0.03244, -0.01857, 0.00647, -0.03036, -0.1236, 0.5527, -0.02838, 0.1506, 0.02509, -0.3809, 0.04156, -0.06, -0.004417, 0.0841, -0.04727, 2.3e-06, -0.05313, -0.03946, 0.05096, -0.03766, -0.09595, 0.02098, 0.08105], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.03406, 0.1295, -0.2546, -0.03604, -0.02327, -0.11633, 0.04843, -0.1082, 0.0844, 0.07117, -0.03772, 0.03326, 0.05505, 1.639, 0.03253, -0.1191, 0.003523, 0.043, -0.01545, 0.03912, 0.06113, 0.08276, 0.01259, -0.00676, 0.138, -0.079, -0.2083, -0.2805, 0.01326, -0.03128, -0.1539, 0.0894, 0.225, 0.03033, 0.01881, -0.0621, 0.1168, -0.0666, 0.04263, 0.04382, 0.05353, -0.0787, -0.07935, 0.00985, 0.03268, -0.010666, 0.00538, 0.11584, -0.6343, 0.0865], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1342, -0.1317, -0.1271, -0.01836, -0.806, 0.5776, 0.4531, 0.01467, -0.1923, -0.964, -0.9004, -0.307, -0.8843, -1.239, 0.454, 0.06058, -4.58, 0.5273, -0.3755, 0.2578, -0.0701, -0.3066, -0.0822, 0.2776, 0.1396, 0.3198, 0.1611, -0.4817, -0.00984, 0.05475, -0.504, 0.828, 1.096, -0.8237, 0.5464, 0.2097, 0.0813, -0.357, -0.2344, 0.2644, 0.3735, 0.1383, -0.1963, -0.0863, -1.1875, 0.1438, 0.354, 0.3472, -0.03152, -0.4084], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.03333, -0.1421, 0.05453, -0.05472, -0.1002, -0.2351, 0.01143, -0.014046, -0.0832, -0.334, 0.0399, 0.1375, 0.2115, -0.1477, -0.02058, -0.007107, 0.362, 0.08374, 0.10205, -0.01811, -0.05734, 0.223, 0.03568, 0.1439, 0.0272, -0.03534, -0.1547, 0.03394, 0.005974, 0.003792, -0.06934, 0.0523, 0.02777, -0.5176, -0.09735, 0.0776, 0.01493, -0.01423, -0.02693, -0.5356, -0.02707, -0.01141, 0.04196, -0.03366, 0.01383, -0.01802, -0.1538, 0.01762, -1.407, 0.05698], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -4.363, 0.2327, -0.934, -0.337, -0.2417, -0.05115, 0.1998, 0.0001409, 1.0625, -0.4265, 0.6196, 1.243, 0.7583, -0.1907, -0.5503, 1.157, -7.45, 1.796, 0.491, -0.3955, -2.105, 1.023, 0.2532, 0.6304, -0.4812, 0.6475, -0.7036, -0.9775, 0.04117, 0.1343, -0.981, 1.559, -8.57, 0.707, 0.6846, 0.3877, -2.604, -0.6636, -0.4448, 0.01494, 0.928, 0.5337, -0.11346, 0.2583, -7.484, 0.1776, -4.71, 0.9517, -0.5205, -0.0863], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.01541, 0.0782, -0.01108, 0.03513, -0.0566, 0.0217, -0.1231, -0.01799, -0.1761, 0.05618, 0.00279, 0.1576, 0.05573, 0.9683, 0.10535, 0.05212, 0.3252, -0.01075, 0.1538, 0.06976, 0.06824, 0.272, 0.0246, 0.0394, -0.1283, 0.0358, -0.09424, -0.01756, -0.02618, 0.03012, -0.05957, 0.07806, 0.1669, -0.0688, -0.1652, 0.0352, 0.03012, 0.0714, -0.01581, -0.001667, -0.0626, 0.05087, -0.1302, -0.0397, 0.00648, -0.02328, 0.1678, 0.02573, -0.02249, 0.1552], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.005436, -0.2793, -0.01497, 0.006607, -0.096, -0.00957, -0.064, 0.01059, 0.10455, -0.04306, 0.02107, -0.02522, 0.1372, -0.2502, 0.1918, 0.02867, -0.0254, 0.04416, 0.03464, -0.01128, -0.0304, 0.0376, 0.00959, 0.1346, -0.0698, -0.11505, -0.00954, -0.0197, 0.01566, -1.904, -0.04434, -0.0772, 0.1078, 0.03004, 0.003597, 0.02716, -0.03738, -0.02321, -0.06244, 0.005272, 0.005035, -0.02544, 0.03162, 0.03568, -0.01015, -0.01385, 0.1616, -0.04407, 0.001681, 0.1521], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.67, 1.124, -0.379, -0.1714, 0.4812, -1.195, 0.894, -0.683, 0.87, 1.839, 1.444, 1.976, 0.3633, -0.3826, 0.9893, 0.2334, -4.957, 1.579, -1.069, 1.195, 2.053, -0.623, 0.784, -2.094, 1.727, -0.2429, -0.4275, -1.596, -0.01228, 0.601, -2.027, 2.6, 3.342, -6.188, 0.2502, -0.668, 1.978, 0.258, 0.6577, -0.687, 0.6675, -0.442, -0.1371, 1.208, -1.895, 0.3005, -0.918, 1.45, 0.52, 0.5186], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.09485, -0.4417, -0.05, 0.02118, -0.5977, 0.138, -0.02974, 0.03882, -0.1469, 0.0773, 0.06384, -0.09717, -0.1462, 1.658, -0.1071, 0.02838, -1.073, -0.0778, 0.03632, -0.07965, 0.1757, 0.1394, -0.39, 0.3857, 0.0129, 0.006947, -0.2032, -0.1407, -0.00022, -0.002184, -0.06152, -0.1169, 0.03085, 0.04398, 0.1981, -0.07745, 0.08594, -0.00615, 0.01706, -0.02301, 0.04153, 0.0678, 0.0324, -0.1418, -0.003332, 0.06088, 0.0703, -0.06366, -0.1825, 0.1271], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.05847, 0.10406, 0.06885, -0.02664, 0.04416, 0.01258, 0.0941, 0.02777, 0.0709, -0.02036, -0.05222, 0.09344, 0.1608, -0.312, -0.00821, -0.04788, 0.2339, 0.1074, 0.01935, 0.04898, 0.0371, 0.04434, -0.007935, -0.00961, 0.11884, 0.05908, 0.03096, 0.07245, 0.03323, -0.03305, -0.1849, 0.1129, 0.04297, 0.0413, -0.0772, 0.03345, 0.0536, -0.0362, -0.06525, 0.0521, -0.1222, -0.05527, -0.04538, -0.03238, 0.04538, 0.062, 0.0576, 0.049, -0.0354, 0.06665], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.272, 0.00502, 0.1255, 0.05453, -0.11566, 0.1234, -2.36, -0.10114, -0.2747, 0.178, 0.1614, -0.05084, 0.00955, -1.738, 0.00829, -0.01585, -0.005116, 0.4744, 0.3528, -0.06757, 0.1819, 0.3367, -0.0424, 0.1819, -0.0125, -0.0423, -0.1478, -0.0526, -0.04593, -0.4556, -0.2333, -0.1873, -0.4167, 0.01195, -0.0653, 0.1173, 0.0242, 0.0676, 0.06113, -0.02254, -0.4902, 0.2017, -0.174, 0.04828, -0.02556, 0.03052, -0.1384, 0.369, -1.487, 0.3245], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1829, 0.3486, -0.0619, -0.145, -0.0247, 0.2233, -0.05304, -0.295, 0.0686, 0.04257, 0.03024, -0.01402, 0.1108, 0.9146, 0.08057, 0.005486, -0.731, 0.138, 0.11365, 0.0461, 0.1465, 0.041, -1.108, 0.2583, -0.4014, 0.1138, -0.0627, -0.1051, -0.04385, -0.04657, -0.2764, 0.5005, 0.1327, 0.0688, -0.05902, -0.05023, -0.2054, -0.0807, -0.09924, -0.5767, -0.02922, -0.10114, -0.04617, -0.07007, -0.2346, -0.00712, 0.1757, 0.03406, 0.01039, -0.9556], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.005745, 0.01746, 0.00824, -0.02058, -0.02544, -0.06366, 0.01357, -0.01622, -0.00921, 0.02118, -0.03552, -0.02217, -0.01863, -0.02608, -0.0273, 0.01921, 0.01557, -0.0459, -0.01237, -0.0476, -0.04272, -0.06036, 0.04324, -0.05002, 0.01205, 0.01501, -0.005753, -0.05057, -0.005383, -0.02116, -0.0835, -0.02109, -0.005795, -0.01062, 0.006916, -0.05826, -0.0322, -0.04633, 0.01665, -0.01061, -0.0495, 0.007076, -0.001644, -0.03616, -0.02733, -0.0007796, -0.01794, -0.0925, 0.01293, -0.00956], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3652, 0.502, -0.2455, -0.1216, -0.9224, -0.2705, 0.2776, -0.527, 0.2632, -0.7056, 0.7744, 0.1483, 0.8394, -0.03934, 0.569, -2.336, -3.205, 2.195, -0.4902, 0.178, 0.724, -3.012, -0.0649, -0.451, -0.2489, -0.4487, -3.94, -0.4817, -0.0317, -1.157, -1.516, 0.4734, 2.404, -2.846, -0.349, 0.9033, -2.178, 0.4753, 0.3503, -1.299, -0.3357, -0.253, 0.39, 0.1736, -1.589, -0.272, -1.1875, -0.788, -0.04877, 1.124], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.04666, -0.0791, 0.003225, -0.01924, -0.0701, 0.1406, -0.007774, -0.001646, 0.01291, -0.0201, -0.0454, 0.05133, 0.02583, 0.593, 0.0213, 0.000584, 0.0299, 0.05704, 0.1248, 0.02162, 0.00754, -0.04, 0.09155, -0.0551, -0.2172, 0.0305, -0.0699, -0.0425, 0.00439, -0.0341, -0.04254, -0.02548, 0.007465, -0.01593, -0.04706, 0.02937, -0.1231, -0.02896, -0.0906, 0.003647, -0.0411, -0.06934, 0.01451, -0.0891, 0.001552, 0.006516, 0.00485, 0.0826, -2.443, 0.0578], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.737, -0.2947, -0.07935, -0.02942, -1.437, 0.002398, -0.5923, -0.0846, 0.2324, 0.02797, -0.02159, -0.37, -0.318, 0.2015, -0.2399, -0.8086, -6.016, -0.342, 0.208, 0.01674, 0.062, 0.0765, 0.3032, 0.017, 0.03058, 0.03726, -0.0967, -0.435, -0.02371, -0.0907, -0.05255, 0.05325, 0.3958, -0.3738, 0.1957, 0.01161, 0.1378, -0.0876, 0.03476, -0.006012, -0.0723, -0.2191, -0.04727, -0.0333, -0.04993, -0.1908, 0.235, -0.414, 0.02158, -0.03001], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.58, -0.1418, 0.12256, -0.266, -3.557, -2.229, 0.2174, -0.4756, -0.612, -0.2225, 0.11444, 0.386, -5.06, -0.01978, -2.201, -1.402, 0.0473, -0.6846, 1.993, -2.422, -3.533, -1.438, 0.335, -0.01767, -0.659, -0.597, -1.73, -0.929, -0.02852, -0.0375, -0.4941, 1.314, -0.798, -0.7783, 0.6387, 0.4382, 0.327, -0.1696, 0.259, 0.429, -0.636, -0.03111, -0.3354, 0.02716, -2.107, -2.045, -2.154, -0.6045, -1.026, -0.0159], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1056, -0.2017, 0.0368, -0.1863, -0.119, -0.1897, -0.428, -0.07025, -0.1257, -0.885, -0.004757, 0.133, 0.05783, 0.08435, 0.1686, -0.00353, -0.0344, 0.1472, 0.010345, 0.002474, 0.04218, 0.1027, 0.177, 0.3323, 0.0011, 0.05237, -0.7705, -0.03638, -0.01662, -0.2751, -0.2109, 0.2666, -0.2502, 0.04477, -0.0733, 0.04364, 0.2241, -0.02553, -0.05334, 0.04156, -0.0793, 0.0956, -0.303, 0.1304, -0.0375, 0.0705, 0.0875, -0.01436, -0.568, -0.3845], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1048, 0.05518, 0.01831, -0.2374, -0.1315, -0.0889, -0.08246, 0.007122, -0.0673, -0.1143, -0.01912, 0.05695, 0.139, -0.4888, 0.1619, -0.05142, -2.27, -0.010345, 0.06793, 0.02614, -0.0715, -0.8467, 0.0693, 0.234, 0.04584, 0.0395, -0.83, 0.001613, 0.004753, -2.496, -0.02054, -0.06192, -1.101, 0.0283, -0.1368, 0.02768, -0.02994, 0.02705, -0.003393, 0.02223, -0.02873, 0.02344, -0.8765, -0.00803, -0.01933, -0.0312, -0.03717, -0.1306, -0.6357, 0.03882], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.01776, 0.1198, 0.05063, 0.003914, -0.09283, -0.1508, 0.074, 0.01608, 0.000451, -1.612, -0.00916, 0.01593, 0.1649, 0.0627, -0.0657, 0.0537, 0.2717, -0.0664, 0.249, 0.02274, 0.0791, 0.2142, -0.2656, 0.06506, -0.1455, -0.0653, -0.0901, 0.01784, 0.00855, 0.0652, -0.06604, 0.03928, 0.1833, -0.05252, -0.1138, 0.1361, -0.3977, 0.02582, 0.07446, -0.6914, -0.15, -0.05508, -1.413, -0.099, -0.0258, -0.004383, 0.09326, 0.1299, -0.06866, 0.0279], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1451, 0.2676, 0.1779, -0.06665, 0.1147, 0.0399, 0.2288, 0.0748, 0.1825, -0.04587, -0.1444, 0.2355, 0.4072, -0.0405, -0.01434, -0.1256, 0.6675, 0.2715, 0.0626, 0.1278, 0.0987, 0.09717, 0.04202, -0.01933, 0.2832, 0.1516, 0.07825, 0.19, 0.03177, -0.08167, -0.4783, 0.2603, 0.1523, 0.1169, -0.2257, 0.09, 0.1109, -0.09204, -0.1691, 0.1387, -0.3728, -0.1445, -0.113, -0.099, 0.1181, 0.1542, 0.197, 0.1302, -0.11005, 0.1877], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.918, -0.2913, -0.02872, -2.285, -0.4475, -0.5493, 0.1215, -0.1285, -0.062, 0.2786, -0.05563, -0.3523, 0.3865, 2.05, 0.0765, -0.3389, 0.813, 0.0992, -0.25, -0.2467, -0.136, 0.181, -0.1656, 0.1542, 0.0893, -0.2251, -0.541, -0.06573, 0.002243, -0.0425, -0.121, -0.2854, -1.583, 0.00973, -0.5337, -0.198, -0.116, 0.005116, 0.0939, -2.79, 0.0661, -0.1335, -1.087, 0.12463, 0.00924, 0.02971, 0.1235, -0.4165, -3.262, 0.2676], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1979, 0.737, -4.375, -0.453, 0.534, -1.187, 0.708, -0.611, -0.10504, 0.926, 0.938, -1.219, 2.012, -1.448, -1.632, 1.316, -9.29, 1.835, 1.152, 0.311, 1.079, 3.371, 0.6113, -0.1501, -0.7725, 0.2251, -1.127, -1.508, -0.02757, 0.3088, -1.703, 1.708, 0.284, -3.816, 0.01775, 0.663, -0.4448, -0.2664, 0.1034, 0.378, 0.1842, 0.647, -0.324, -0.8384, 0.335, -0.975, -0.0492, 1.086, -0.5464, 0.2329], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.09784, 0.08167, 0.0086, -0.134, -0.0312, -0.02411, -0.1515, -0.0872, 0.006622, -0.1847, -0.0543, 0.1283, 0.12195, 0.373, 0.02696, 0.00825, 0.07446, 0.2273, 0.03091, 0.03525, -0.01373, -0.1884, 0.303, -0.01295, -0.03546, -0.0842, -0.2028, -0.06036, 0.0406, -0.503, -0.0936, -0.05743, 0.3982, 0.010574, -0.001195, -0.05573, 0.0492, 0.04205, -0.1003, -2.193, 0.04214, -0.03326, -2.22, -0.01132, -0.03796, -0.01959, 0.014114, -0.1113, -0.841, -0.04047], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.03326, -0.215, -0.0503, -0.0445, 0.0919, 0.09296, -0.312, -0.0431, -0.1447, -0.2546, 0.00684, 0.01185, 0.1324, -0.1825, 0.1417, 0.02165, 0.3289, 0.001783, 0.11847, -0.03015, 0.0776, 0.294, -0.1244, -0.122, -0.3071, -0.08264, -0.2766, -0.01319, 0.007187, -0.0614, -0.03513, -0.1619, 0.2104, 0.002546, 0.1805, 0.06934, 0.04507, -0.0576, 0.06058, 0.001106, 0.04114, 0.1033, 0.12006, -0.004097, -0.00622, 0.004623, 0.0632, -0.0461, -0.05966, -1.226], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -3.303, 0.584, -1.105, 0.02974, -0.5444, -1.101, 1.408, -0.9707, 1.054, 1.89, 1.384, -0.861, -0.1536, -0.5356, -1.765, 0.4236, -2.383, -0.5625, 0.0434, 1.156, -1.269, -5.703, 0.794, -0.2388, 0.1855, 0.706, 0.1547, -1.411, -0.00208, -0.4763, -2.371, 0.87, 2.924, 0.2045, -0.5537, 0.05997, 0.7856, 0.00824, -0.1575, 0.08405, 0.6797, 1.064, -0.1106, 0.567, -2.148, 0.1185, 1.306, 2.08, -0.0383, 0.1412], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.06683, -0.237, 0.03595, 0.0906, -0.8125, -0.2551, -0.509, -0.0565, -0.3052, -0.088, -0.02016, 0.2202, 0.0313, 0.01429, 0.1412, 0.1692, -4.418, -0.177, -0.1522, 0.03958, -0.04446, -0.4302, 0.1976, 0.5566, -0.1891, 0.04166, -1.155, -0.2059, 0.0114, -1.16, -0.03387, 0.1814, 0.2101, -0.02127, -0.1276, 0.0622, 0.1057, 0.06335, -0.007683, 0.01645, -0.1848, 0.10834, -1.288, 0.04227, -0.1721, 0.03583, 0.2446, -0.01013, -0.11536, -0.3079], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.04697, -0.04825, -0.00623, 0.00897, -0.1774, -0.03644, -0.05966, -0.043, 0.03757, 0.01521, -0.05563, 0.0718, 0.0209, -1.891, 0.10895, -0.04498, -0.541, 0.05475, -0.01723, 0.03238, 0.05865, -0.04797, 0.0891, 0.1965, 0.02374, 0.00611, -0.05197, -0.00613, 0.004795, -0.0015135, -0.1066, 0.0811, -0.1113, 0.00236, -0.03708, 0.00883, 0.02032, -0.02278, -0.01636, 0.02577, -0.1443, -0.003704, -0.02946, -0.01499, 0.01375, 0.04126, 0.0867, 0.05173, -0.533, 0.02599], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.01311, -0.0978, -0.00473, -0.003471, -0.07733, 0.03256, -0.03035, -0.064, -0.02534, 0.0393, -0.03775, -0.0807, 0.0348, -0.0668, 0.03268, -0.004513, -0.1511, -0.02322, 0.1661, 0.01598, 0.00447, -0.0866, -0.1425, 0.1119, -0.1714, -0.05353, -0.03302, 0.002808, -0.03415, -0.00671, -0.02501, 0.0231, 0.0881, -0.01718, 0.0326, 0.01321, 0.0679, 0.01968, -0.01709, -0.002699, -0.0478, -0.04538, 0.0018, -0.05563, -0.009674, 0.0007133, 0.134, 0.01736, -1.006, -0.3633], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1713, -0.0846, -0.04187, -0.03522, 0.0781, 0.02983, -0.00174, -0.02599, -0.05817, -0.03348, -0.04178, -0.0112, 0.0589, -0.04758, 0.1443, -0.005383, 0.1721, -0.0411, -0.01054, -0.0354, 0.03223, -0.173, -0.1158, 0.1109, 0.0822, -0.04944, -0.03806, 0.042, 0.00784, 0.004894, -0.04688, 0.0805, -0.2874, 0.002695, 0.03168, 0.016, -0.1166, -0.03023, -0.0732, -0.01987, -0.05576, 0.00522, -0.02606, 0.05283, -0.00356, -0.012695, -0.03375, 0.014755, -1.161, -0.03558], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3, 1.614, -5.617, 0.1697, 0.05725, -0.5566, 0.1361, -1.115, 0.6826, 0.7495, 0.658, 0.504, -0.3542, -0.966, -1.011, -0.464, 0.537, -0.01613, -0.4492, 0.832, 0.4456, 0.2961, 0.3523, 0.628, 1.277, -2.006, -1.196, -3.412, -0.04126, -0.2483, -1.471, 0.516, 2.605, 0.2075, 0.312, -2.434, 1.487, 0.0734, 0.4392, 0.2285, 0.609, -2.084, -0.5728, 0.102, 0.4895, 0.5166, 0.1523, 0.794, -0.1636, 1.476], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.005535, -0.02452, 0.01418, -0.01653, 0.04486, 0.10187, -0.1262, -0.005707, -0.07227, 0.04578, 0.01859, 0.01791, 0.06232, 0.3362, -0.007328, 0.012405, 0.2494, 0.1398, 0.1655, 0.0158, -0.01665, -0.04245, 0.0993, 0.066, 0.0885, 0.03973, -0.0792, -0.03098, 0.01458, -0.002832, -0.06586, 0.01988, 0.1236, 0.01387, 0.02162, 0.01932, -0.0326, -0.01304, -0.0124, -0.05344, -0.0837, 0.04596, 0.0176, 0.02681, 0.01605, 0.01575, 0.01588, 0.1053, -0.5415, -0.02173], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2075, -0.375, -0.0343, -0.001577, 0.1488, 0.04938, -0.5835, -0.02579, -0.2153, -0.0101, -0.1433, 0.10126, 0.0419, 0.1647, -0.04175, 0.02547, -0.305, 0.01257, 0.0588, -0.009186, 0.03778, -0.01683, 0.4565, 0.0996, -0.1216, -0.004852, -0.0304, 0.0451, -0.01352, 0.01518, -0.1065, 0.1586, 0.09827, 0.02481, -0.9775, 0.005856, -0.3757, -0.03845, -0.0796, 0.0401, -0.2832, -0.02853, -0.06042, -0.02269, 0.01909, -0.09534, -0.0942, 0.03394, -0.1707, -0.0693], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.05563, -0.1302, 0.04105, -0.010124, -0.0695, -0.138, -0.06683, -0.02516, 0.02437, -0.0108, -0.02908, 0.0347, 0.05682, 1.233, 0.0394, -0.03085, 0.1462, 0.02771, 0.0561, -0.02107, 0.04932, -0.0627, -0.1361, 0.1713, 0.09845, 0.005867, -0.1361, -0.03473, -6.676e-05, -0.0566, -0.04367, 0.0968, -0.0302, 0.02211, -0.04828, 0.0278, 0.08307, 0.02843, 0.01052, 0.000862, -0.0461, 0.0336, 0.005108, 0.05, -0.02083, 0.02261, 0.1002, -0.02151, -1.434, -0.00967], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.06903, 0.1797, -0.015564, -0.01445, 0.1069, -0.0467, -0.5317, 0.02039, -0.0279, 0.0781, 0.0135, -0.03128, -0.03152, 1.172, -0.0452, 0.01379, 0.451, -0.00423, -0.01866, 0.009285, -0.01842, 0.2483, -0.02298, 0.003956, 0.01576, 0.0349, 0.01492, 0.013756, -0.04282, -0.03452, -0.0399, -0.1093, 0.06744, 0.02489, -0.1562, -0.03107, -0.2456, 0.00824, -0.02214, 0.01076, -0.0278, 0.01229, -0.0363, -0.002356, 0.00568, -0.03925, -0.059, -0.04855, -0.001536, 0.10815], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.03802, -0.58, 0.01148, -0.01432, 0.02904, -0.00567, -0.545, 0.010796, -0.0903, 0.000936, -0.3408, 0.0505, -0.01053, -0.04333, -0.08966, -0.0235, -0.606, 0.03174, 0.02429, 0.01469, 0.03867, -0.02113, -0.05386, 0.0563, -0.04205, 0.0042, 0.00714, 0.01354, 0.04993, -0.02927, -0.0457, 0.01949, 0.2617, -0.003944, -1.979, -0.003414, 0.05606, 0.010544, 0.0004654, 0.01653, -0.045, -0.03604, -0.02429, -0.02222, 0.01016, 0.01692, -0.0488, -0.08813, -0.003447, 0.0493], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.4785, 1.112, 0.05554, -0.2479, -0.3174, -0.44, -0.11346, 0.1631, 0.4355, -2.402, -0.0854, 0.2388, -0.44, -1.577, -0.529, 1.1, -2.107, 0.7095, -0.9087, 0.1722, 0.01258, 1.368, 0.06094, -0.0516, -1.146, -0.2213, 0.3572, -0.9526, -0.003212, 0.04285, -0.9375, 0.4807, 1.627, -0.6997, 0.6284, 1.434, 0.587, -0.1567, -0.4485, -2.13, 0.729, -0.304, -0.03552, 0.3728, 0.1445, 0.1036, 0.7866, 0.808, -2.072, 0.2308], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0372, 0.661, -0.4297, -0.02415, -0.1004, -0.0968, -0.2644, -0.147, 0.5635, 0.0743, 0.094, 1.043, 0.3628, -4.195, -0.6694, 0.1537, 0.05988, 0.5674, 0.3137, -0.4312, -0.4165, 1.582, -0.11847, -0.278, 0.5703, -0.6924, -0.0427, -0.8955, 0.03323, 0.1769, -0.851, -1.242, 1.396, -0.02898, 0.1498, 0.4006, 0.976, -0.1748, -0.065, -0.8286, -0.1663, 0.1671, -0.0351, 0.4653, -0.04398, -0.1775, 0.369, 0.9253, 0.0674, 0.4395], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.01863, -0.9966, 0.06415, 0.04095, -0.9834, 0.45, 0.691, 0.1743, 0.44, -0.913, -0.1072, 0.5137, 0.607, 0.941, -0.091, 0.279, -0.3826, 0.7935, -0.06824, 0.03488, 0.2725, -0.06885, 0.2913, 0.473, 0.07745, -0.2045, 0.172, -0.4497, 0.02246, -1.152, -0.6914, 0.5054, 0.6196, 0.03583, 0.5234, -0.266, -0.375, -0.02675, -0.5054, -1.66, 0.4265, 0.00183, -2.209, 0.3418, 0.1047, -0.4658, 0.3247, 0.6904, -0.1694, 0.336], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.05588, -0.1956, -0.02127, 0.00419, -0.01554, -0.0598, -0.191, 0.02332, -0.1266, -2.453, 0.109, 0.2966, 0.11774, 2.277, 0.09595, 0.08594, 0.543, 0.1814, 0.2603, 0.0843, -0.1249, 0.2905, 0.1797, 0.02676, -2.29, -1.446, -0.00539, -0.04764, -0.0408, -2.564, -0.12146, 0.002815, 0.3167, -0.04492, -0.2163, 0.02913, 0.1708, -0.0405, -0.266, -3.008, -0.08795, 0.012245, -0.09717, -1.466, 0.01765, -0.0239, 0.04172, 0.01087, 0.003408, -0.00784], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.02477, -0.10614, -0.03464, -0.3428, -0.4172, -0.4275, -0.335, -0.131, 0.132, -1.28, 0.11835, -0.04562, 0.365, 1.702, 0.068, -0.00716, 0.4377, -0.1346, -0.0282, -0.07355, 0.01738, 0.4316, 0.012695, 0.57, -0.01034, -0.1711, 0.05902, 0.00283, -0.02881, -0.0958, -0.1614, 0.3662, 0.3293, 0.04492, -0.1215, 0.001936, 0.3179, 0.12115, -0.1163, -1.06, -0.01932, -0.006935, -0.01305, 0.01971, 0.01804, 0.05807, -0.10004, 0.01932, -0.4927, -0.3145], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.02391, 0.00796, 0.002096, -0.01135, -0.04163, 0.05997, 0.00394, -0.02115, 0.0006194, 0.007797, -0.003464, 0.02946, -0.000978, 0.2686, 0.0422, 0.0004356, -0.1376, 0.00596, 0.02719, 0.007305, 0.002478, 0.02655, -0.02713, 0.0329, -0.01134, -0.0888, -0.006416, 0.01212, 0.0443, -0.001857, -0.02467, 0.00992, -0.02428, -0.004272, 0.01244, 0.003769, 0.004623, -0.0321, -0.06143, -0.00502, -0.02438, -0.03226, -0.00739, -0.1198, 0.00257, 0.01151, -0.004593, 0.00687, 0.001746, -0.014465], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -2.982, -0.328, -0.3853, 0.5044, -0.05368, -0.465, 1.802, -1.525, 1.682, -0.2764, 0.6084, 0.4355, -2.648, -0.3904, -2.936, -0.07153, -5.78, 1.004, 0.986, 0.7305, 1.119, -1.223, 0.5425, 0.1876, 0.696, 0.541, 0.0285, -0.7183, 0.01134, 0.0044, -1.943, 0.622, -3.234, -1.113, 1.132, -1.287, 2.445, 0.488, 0.947, -2.18, 1.516, 0.2627, 0.1826, -0.5317, -4.586, 0.979, -0.5894, 0.1527, 0.09015, 2.656]] [0.225979, 0.641137, -1.12203, -0.258403, 0.279404, -3.15813, 3.81989, -0.838817, 0.337129, 1.48143, -0.387311, -4.85249, -1.46318, -0.622097, -5.73916, -0.539505, 0.355817, -3.20894, -0.669792, -0.0532718, -1.07259, 0.233222, 0.540133, 0.0347038, -1.80848, -1.00167, -1.97158, 1.99375, 0.667326, -2.41988, -0.262248, -2.32239, -6.11991, -2.56012, 0.243932, -0.225704, -0.123976, 1.85484, -0.492205, -0.572575, -0.530786, -0.593049, 0.0029525, -3.16795, -0.806849, -3.26406, -0.874765, -2.21406, 0.29674, -5.66597, 0.226, 0.641, -1.122, -0.2583, 0.2793, -3.158, 3.82, -0.839, 0.3372, 1.481, -0.3872, -4.85, -1.463, -0.622, -5.74, -0.5396, 0.3557, -3.209, -0.67, -0.05328, -1.072, 0.2333, 0.54, 0.0347, -1.809, -1.002, -1.972, 1.994, 0.6675, -2.42, -0.2622, -2.322, -6.12, -2.56, 0.2439, -0.2257, -0.12396, 1.8545, -0.4922, -0.5728, -0.531, -0.5933, 0.002953, -3.168, -0.8066, -3.264, -0.875, -2.215, 0.2966, -5.664] Affine [[0.0122767, 0.011308, 0.00802413, -0.0218188, 0.00319675, 0.0125322, 0.0114257, -0.00255323, -0.19602, 0.00588624, 0.0146445, 0.00852873, 0.0055578, 0.016655, 0.00837751, -0.00579741, -0.0923604, 0.000827512, -0.00723109, -0.0148582, 0.00993681, 0.0029669, -0.00786654, -0.00905188, -0.00637787, 0.000188001, 0.029826, 0.0348445, -0.0105056, 0.0074786, 0.0299888, 0.0272654, 0.00631335, -0.00640395, 0.0034457, 0.0128381, 0.00504764, 0.00753466, 0.00460818, -0.00852125, -0.000186634, -0.00705426, -0.00513893, 0.0143603, 0.00520082, 0.00872262, 0.00605885, 0.00447079, 0.00265729, 0.00543699, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0137882, -0.00240659, 0.0177903, 9.71692e-05, 0.0130397, 0.0161613, 0.000524016, 0.0158962, 0.00381941, -0.00114972, 0.0159186, 0.000975197, 0.0143296, 0.0128481, 0.000375721, 0.0085622, 0.00389359, 0.00386216, -0.00843075, -0.0210459, -0.00070852, -0.00328687, 0.000999868, 0.000684317, -0.0272917, 0.0206021, 0.00664966, -0.00121418, 0.00564371, 0.000300641, 0.0159826, 0.0235862, -0.000208657, -0.0149683, 0.0144311, 0.013267, 0.0152384, 0.000171705, 0.019005, -0.0149771, 0.00489971, -0.0116472, 0.00766545, 0.000158434, 0.00067949, 0.00173288, 0.00474157, 0.00660135, -0.00545564, -0.000239328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0110372, 0.00325833, 0.00660415, -0.00219831, 0.0134385, -0.000334552, 0.000347947, 0.0136776, -0.0107638, 0.000426412, 0.0159823, 0.00114102, 0.0108758, 0.0144529, -0.000471512, -0.0013555, -0.000176958, -0.00353982, -0.0117788, -0.0143221, 0.00372341, 0.0382456, -0.000723518, -0.000346702, 0.00178803, -0.00408429, 0.0250151, -0.000140875, -0.000234128, 0.00134603, 0.0193501, 0.022014, 0.000635926, 0.00649425, -0.00514869, 0.01712, 0.00346974, -0.000444044, -0.00269448, -0.00523957, -0.00385362, -0.00908819, -0.00306574, 0.00141819, 0.00506691, 0.0105807, 0.00550354, 0.000320443, 0.0138631, 0.000129755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [-0.000427794, 0.00247098, 0.00318599, -0.000931611, 0.0187611, 0.0262813, -0.000246228, 0.000796719, 0.00444284, -0.000487216, -0.000408966, -0.000453513, 0.021514, 0.0113723, 0.000618181, 0.00972581, -5.62241e-05, 0.0137408, 0.00469408, 0.0203374, -0.00636208, -0.00314665, -0.000494459, -6.86316e-05, -0.0289031, 0.0087665, 0.0191301, -0.000599625, 0.00975496, -0.000393373, 0.0178813, 0.0216552, -0.00198573, -0.0172266, -0.0052339, 0.0100204, -0.00216445, -0.000529878, 0.00426757, -0.00261175, 0.0227263, 0.000517605, -0.00684216, 5.97784e-05, -0.000151559, 0.0126098, -0.0109503, 0.0197202, -0.0130717, -0.000811515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.00589371, 0.0030568, 0.00255281, -0.00229315, 0.0151719, -0.00273326, 0.000961601, 0.0124695, -0.0116233, 0.00251327, 0.00636245, -0.000334227, -0.00662235, 0.0122744, 0.000325531, -0.000874993, 0.000850324, -0.00292568, -0.00776242, -0.00608874, 0.00444306, 0.04261, 0.000312545, -0.000660786, 0.00672582, 0.00305449, 0.0344578, -8.23427e-05, 0.00252333, 0.00147089, 0.0331118, 0.0295184, -0.000225769, 0.00357071, -0.00942575, 0.0151026, -0.00040097, -0.000141207, -0.00308233, -0.00190664, -0.00485058, -0.00449136, -0.00714107, 0.00235382, 0.00533209, 0.00984751, 0.0165893, -0.00793129, 0.00953482, 0.00126345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.012276, 0.01131, 0.008026, -0.02182, 0.003197, 0.012535, 0.01143, -0.002554, -0.196, 0.005886, 0.01464, 0.00853, 0.005558, 0.01666, 0.00838, -0.0058, -0.09235, 0.0008273, -0.007233, -0.014854, 0.00993, 0.002968, -0.007866, -0.00905, -0.00638, 0.000188, 0.02983, 0.03485, -0.010506, 0.007477, 0.02998, 0.02727, 0.006313, -0.006405, 0.003447, 0.01284, 0.005047, 0.007534, 0.00461, -0.00852, -0.0001867, -0.007053, -0.00514, 0.01436, 0.0052, 0.00872, 0.006058, 0.00447, 0.002657, 0.005436], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.01379, -0.002407, 0.01779, 9.716e-05, 0.01304, 0.01616, 0.000524, 0.0159, 0.003819, -0.00115, 0.01591, 0.000975, 0.01433, 0.01285, 0.0003757, 0.00856, 0.003893, 0.003862, -0.00843, -0.02104, -0.0007086, -0.003286, 0.000999, 0.0006843, -0.0273, 0.0206, 0.00665, -0.001214, 0.005642, 0.0003006, 0.01598, 0.02359, -0.0002086, -0.01497, 0.014435, 0.01327, 0.015236, 0.0001717, 0.01901, -0.01498, 0.004898, -0.01165, 0.007664, 0.0001584, 0.0006795, 0.001733, 0.00474, 0.006603, -0.005455, -0.0002394], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.01104, 0.003258, 0.006603, -0.0022, 0.013435, -0.0003345, 0.0003479, 0.01368, -0.010765, 0.0004265, 0.01598, 0.001141, 0.01088, 0.01445, -0.0004716, -0.001355, -0.0001769, -0.00354, -0.01178, -0.01432, 0.003723, 0.03824, -0.0007234, -0.0003467, 0.001788, -0.004086, 0.02501, -0.0001409, -0.0002341, 0.001346, 0.01935, 0.02202, 0.000636, 0.006493, -0.00515, 0.01712, 0.00347, -0.000444, -0.002695, -0.00524, -0.003853, -0.00909, -0.003065, 0.001418, 0.005066, 0.01058, 0.005505, 0.0003204, 0.01386, 0.0001297], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0004277, 0.002472, 0.003185, -0.0009317, 0.01877, 0.02628, -0.0002463, 0.000797, 0.004444, -0.0004873, -0.000409, -0.0004535, 0.02151, 0.011375, 0.000618, 0.00973, -5.62e-05, 0.01374, 0.004696, 0.02034, -0.006363, -0.003147, -0.0004945, -6.86e-05, -0.0289, 0.008766, 0.01913, -0.0006, 0.00976, -0.0003934, 0.01788, 0.02165, -0.001986, -0.01723, -0.005234, 0.01002, -0.002165, -0.00053, 0.00427, -0.002611, 0.02272, 0.0005174, -0.006844, 5.98e-05, -0.0001515, 0.01261, -0.01095, 0.01971, -0.01307, -0.0008116], [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.005894, 0.003057, 0.002552, -0.002293, 0.015175, -0.002733, 0.000962, 0.01247, -0.01162, 0.002514, 0.006363, -0.0003343, -0.006622, 0.012276, 0.0003254, -0.000875, 0.00085, -0.002926, -0.007763, -0.00609, 0.004444, 0.0426, 0.0003126, -0.000661, 0.006725, 0.003054, 0.03445, -8.23e-05, 0.002523, 0.001471, 0.0331, 0.02953, -0.0002258, 0.00357, -0.00942, 0.01511, -0.000401, -0.0001413, -0.003082, -0.001906, -0.004852, -0.00449, -0.00714, 0.002354, 0.005333, 0.00985, 0.01659, -0.007935, 0.00954, 0.001264]] [-0.0206515, -0.0190316, 0.0181379, -0.0184323, 0.018364, -0.02065, -0.01903, 0.01814, -0.01843, 0.01837]
from gpiozero import MCP3008 import time adc = MCP3008(channel=1, device=0) while True: print(adc.value) time.sleep(1)
# Try to make process close together and short the method name # # I DON'T WANT BELOW THESE TRASH UNLESS NECESSARY # # # If you do hope use three double quotes(why?), # # try replace " by &dq&, for example: """ -> &dq&&dq&&dq& # myString.replace("&dq&", '"') # # # To show symbol directly, break each & with &/, # # they will be remove to keep symbol together # # For example: &nl& but don't want a line break -> &/ + &nl + &/ + & -> &/&nl&/& # myString = myString.replace("&/", "") def _preprocess_message_string(myString): # .ini config doesn't support space at end of the line, # they will cap by three double quotes # '""" """' -> ' ' # &nl& is next line, refer to \n in python CODE # '&nl&' -> '\n' return myString.strip('"""').replace("&nl&", "\n") # get_preprocessed_message def get_preprocessed_message(message_config): for group_name in message_config.sections(): for key_name in message_config[group_name]: message_config[group_name][key_name] = _preprocess_message_string( message_config[group_name][key_name]) return message_config
from django.conf import settings from django.conf.urls import include, url from django.conf.urls.static import static from django.contrib import admin admin.autodiscover() urlpatterns = [ url(r'^', include(('misc.urls', 'misc'), namespace='misc')), url(r'^', include(('meetups.urls', 'meetups'), namespace='meetups')), url(r'^admin/', admin.site.urls), ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
from django.shortcuts import render from django.http import HttpResponse from django.contrib import auth import pandas as pd import re from .forms import getFile,getMessage from users.models import UsersDB from Classifiers.QuotientFilter import QuotientFilter from Classifiers.LSH import LSH from Classifiers.Classifier4 import pipeline def handle_uploaded_file(file): predictions = [] with file.open() as f: for line in f: prediction = pipeline.predict([line.decode('utf-8')]) predictions.append([line.decode('utf-8'),prediction[0]]) return predictions def predictSH(tweet,qf_urls,lsh,qf_users,qf_words): # user,url,message = tweet[0],tweet[1],tweet[2] user = tweet[0] message = tweet[1] urls_message = re.findall('https?://(?:[-\w.]|(?:%[\da-fA-F]{2}))+',message) # user = user.split(':')[1] predictions = [] p1 = "Ham" for url in urls_message: if qf_urls.lookup(url) == "Spam": p1 = "Spam" p2 = lsh.query(message) p3 = qf_users.lookup(user) hamW = 0 spamW = 0 for word in message.split(" "): if qf_words.lookup(word) == "Ham": hamW += 1 else: spamW += 1 if hamW > spamW: p4 = "Ham" else: p4 = "Spam" p5 = pipeline.predict(message)[0] predictions.append(p1) predictions.append(p2) predictions.append(p3) predictions.append(p4) predictions.append(p5) hp,sp = 0,0 for p in predictions: if p == 'Ham': hp += 1 else: sp += 1 if hp > sp: prediction = "Ham" else: prediction = "Spam" return prediction # Create your views here. def classify_spam_ham(request): f_form = getFile() m_form = getMessage() return render(request,"classify/classify_spam_ham.html",{'f_form':f_form,'m_form':m_form}) def ResultView(request): spam_urls = pd.read_csv('media/SpamUrls.csv') hsClusters = pd.read_csv('media/Ham_Spam_Clusters.csv') spammy_words_users = pd.read_csv('media/SpammyWordsUsers.csv') qf_urls = QuotientFilter() lsh = LSH() qf_words = QuotientFilter() qf_users = QuotientFilter() if request.user.is_authenticated: user_id = auth.models.User.objects.filter(username=request.user)[0] if UsersDB.objects.filter(user=user_id)[0].spamurl_user: spamurls_file = UsersDB.objects.filter(user=user_id)[0].spamurl_user spam_urls = pd.read_csv(spamurls_file) if UsersDB.objects.filter(user=user_id)[0].hamspamtweets_user: hstweets_file = UsersDB.objects.filter(user=user_id)[0].hamspamtweets_user hsClusters = pd.read_csv(hstweets_file) if UsersDB.objects.filter(user=user_id)[0].spammywordsusers_user: spammy_wu_file = UsersDB.objects.filter(user=user_id)[0].spammywordsusers_user spammy_words_users = pd.read_csv(spammy_wu_file) for u in spam_urls['url'][:1000]: qf_urls.addKey(u) hamCl = list(hsClusters['Ham']) spamCl = list(hsClusters['Spam']) lsh.update(hamCl,spamCl) spam_words = list(spammy_words_users['spam_words']) spam_users = list(spammy_words_users['spam_users']) for w in spam_words[:1000]: qf_words.addKey(w) for u in spam_users[:1000]: qf_users.addKey(u) form = getFile() m_form = getMessage(); if request.method == 'POST': form = getFile(request.POST,request.FILES) print(form.is_valid()) if form.is_valid(): if 'file' in request.FILES: inp_file = request.FILES['file'] predictions = [] tweets_file = pd.read_csv(inp_file) for i in range(len(tweets_file)): tweet = [tweets_file.iloc[i]['Username'],tweets_file.iloc[i]['Tweet']] # print(tweet) prediction = predictSH(tweet,qf_urls,lsh,qf_users,qf_words) predictions.append(['\n'.join(tweet),prediction]) return render(request,"classify/result.html",context={'predictions':predictions}) else: tweet = request.POST['message'].split('\n') predictions = [] prediction = predictSH(tweet,qf_urls,lsh,qf_users,qf_words) predictions.append(['\n'.join(tweet),prediction]) print(tweet) return render(request,"classify/result.html",context={'predictions':predictions}) # else: # print("Here") # form = getFile() # m_form = getMessage() # print(form.errors) return render(request,"classify/classify_spam_ham.html",{'f_form':form,'m_form':m_form})
"""Test the LADRegressor.""" import numpy as np import pytest from sklearn.utils.estimator_checks import check_estimator from .. import LADRegression, QuantileRegression, ImbalancedLinearRegression, LinearRegression test_batch = [ (np.array([0, 0, 3, 0, 6]), 3), (np.array([1, 0, -2, 0, 4, 0, -5, 0, 6]), 2), (np.array([4, -4]), 0), (np.array([0.1]), 1000), ] def _create_dataset(coefs, intercept, noise=0.0): np.random.seed(0) X = np.random.randn(1000, coefs.shape[0]) y = X @ coefs + intercept + noise * np.random.randn(1000) return X, y @pytest.mark.parametrize("coefs, intercept", test_batch) @pytest.mark.parametrize( "model", [LADRegression, QuantileRegression, ImbalancedLinearRegression, LinearRegression] ) def test_coefs_and_intercept__no_noise(coefs, intercept, model): """Regression problems without noise.""" X, y = _create_dataset(coefs, intercept) regressor = model() regressor.fit(X, y) assert regressor.score(X, y) > 0.99 @pytest.mark.parametrize("coefs, intercept", test_batch) @pytest.mark.parametrize( "model", [LADRegression, QuantileRegression, ImbalancedLinearRegression, LinearRegression] ) def test_score(coefs, intercept, model): """Tests with noise on an easy problem. Parameter reconstruction should be possible.""" X, y = _create_dataset(coefs, intercept, noise=1.0) regressor = model() regressor.fit(X, y) np.testing.assert_almost_equal(regressor.coef_, coefs, decimal=1) np.testing.assert_almost_equal(regressor.intercept_, intercept, decimal=1) @pytest.mark.parametrize("coefs, intercept", test_batch) @pytest.mark.parametrize( "model", [LADRegression, QuantileRegression, ImbalancedLinearRegression, LinearRegression] ) def test_coefs_and_intercept__no_noise_positive(coefs, intercept, model): """Test with only positive coefficients.""" X, y = _create_dataset(coefs, intercept, noise=0.0) regressor = model(positive=True) regressor.fit(X, y) assert all(regressor.coef_ >= 0) assert regressor.score(X, y) > 0.3 @pytest.mark.parametrize("coefs, intercept", test_batch) @pytest.mark.parametrize( "model", [LADRegression, QuantileRegression, ImbalancedLinearRegression, LinearRegression] ) def test_fit_intercept_and_copy(coefs, intercept, model): """Test if fit_intercept and copy_X work.""" X, y = _create_dataset(coefs, intercept, noise=2.0) regressor = model(fit_intercept=False, copy_X=False) regressor.fit(X, y) assert regressor.intercept_ == 0.0 @pytest.mark.parametrize( "model", [LADRegression, QuantileRegression, ImbalancedLinearRegression, LinearRegression] ) def test_check_estimator(model): """Conduct all scikit-learn estimator tests.""" regressor = model() check_estimator(regressor)
# Generated by Django 3.2.7 on 2021-10-13 14:36 from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ("okr", "0074_auto_20210915_1024"), ] operations = [ migrations.AddField( model_name="podcast", name="ard_audiothek_id", field=models.CharField( help_text="ARD Audiothek ID, falls vorhanden", max_length=32, null=True, verbose_name="ARD Audiothek ID", ), ), migrations.AddField( model_name="podcastepisode", name="ard_audiothek_id", field=models.CharField( help_text="ARD Audiothek ID, falls vorhanden", max_length=32, null=True, verbose_name="ARD Audiothek ID", ), ), migrations.CreateModel( name="PodcastEpisodeDataArdAudiothekPerformance", fields=[ ( "id", models.AutoField( auto_created=True, primary_key=True, serialize=False, verbose_name="ID", ), ), ( "date", models.DateField( help_text="Datum der Performance-Daten", verbose_name="Datum" ), ), ( "starts", models.IntegerField( help_text="Wiedergaben der Episode", verbose_name="Wiedergaben" ), ), ( "playback_time", models.DurationField( help_text="Abspieldauer der Episode (HH:MM:SS)", verbose_name="Spieldauer", ), ), ( "last_updated", models.DateTimeField( auto_now=True, help_text="Zeitpunkt der Datenaktualisierung", verbose_name="Zuletzt upgedated", ), ), ( "episode", models.ForeignKey( help_text="Globale ID der Episode", on_delete=django.db.models.deletion.CASCADE, related_name="data_ard_audiothek_performance", related_query_name="data_ard_audiothek_performance", to="okr.podcastepisode", verbose_name="Episode", ), ), ], options={ "verbose_name": "Podcast-Episoden-Performance (ARD Audiothek)", "verbose_name_plural": "Podcast-Episoden-Performance (ARD Audiothek)", "db_table": "podcast_episode_data_ard_audiothek_performance", "ordering": ["-date", "episode"], "unique_together": {("date", "episode")}, }, ), ]
from pywick.optimizers.lookahead import * from torch.optim import SGD class LookaheadSGD(Lookahead): def __init__(self, params, lr, alpha=0.5, k=6, momentum=0.9, dampening=0, weight_decay=0.0001, nesterov=False): """ Combination of SGD + LookAhead :param params: :param lr: :param alpha: :param k: :param momentum: :param dampening: :param weight_decay: :param nesterov: """ sgd = SGD(params, lr=lr, momentum=momentum, dampening=dampening, weight_decay=weight_decay, nesterov=nesterov) super().__init__(sgd, alpha, k)
from file_convert import convert_file convert_file('代码整洁之道.md', '代码整洁之道')
from django import forms from .models import MasterField, Source class SourceDataImportForm(forms.ModelForm): # source_name = forms.CharField(max_length=255) # source_file = forms.FileField( # label="Upload a CSV file containing source data") # delimiter = forms.CharField(max_length=255, label='CSV delimiter') class Meta: model = Source fields = ['name', 'description', 'reference', 'source_file', 'delimiter'] labels = { 'name': "Source name", 'description': "Description", 'reference': "Reference", 'source_file': "Upload a CSV file containing source data", 'delimiter': "CSV delimiter", } class MasterFieldForm(forms.ModelForm): class Meta: model = MasterField fields = ['name', 'description', 'primary_key']
from cw_eval.evalfunctions import calculate_iou, process_iou from cw_eval import data from shapely.geometry import Polygon class TestEvalFuncs(object): def test_overlap(self): gt_gdf = data.gt_gdf() pred_poly = Polygon(((736348.0, 3722762.5), (736353.0, 3722762.0), (736354.0, 3722759.0), (736352.0, 3722755.5), (736348.5, 3722755.5), (736346.0, 3722757.5), (736348.0, 3722762.5))) overlap_pred_gdf = calculate_iou(pred_poly, gt_gdf) assert overlap_pred_gdf.index[0] == 27 assert overlap_pred_gdf.iou_score.iloc[0] == 0.073499798744833519 def test_process_iou(self): gt_gdf = data.gt_gdf() pred_poly = Polygon(((736414.0, 3722573.0), (736417.5, 3722572.5), (736420.0, 3722568.0), (736421.0, 3722556.0), (736418.5, 3722538.0), (736424.0, 3722532.5), (736424.0, 3722527.0), (736422.5, 3722525.5), (736412.0, 3722524.0), (736410.5, 3722521.5), (736407.0, 3722520.5), (736383.5, 3722521.0), (736376.5, 3722528.5), (736378.0, 3722532.5), (736402.0, 3722532.0), (736410.0, 3722539.0), (736411.0, 3722544.0), (736408.5, 3722553.5), (736409.0, 3722569.0), (736414.0, 3722573.0))) assert 21 in gt_gdf.index process_iou(pred_poly, gt_gdf) assert 21 not in gt_gdf.index